Searched refs:MovePos (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DBasicBlock.cpp105 /// insert it into the function that MovePos lives in, right before MovePos.
106 void BasicBlock::moveBefore(BasicBlock *MovePos) { argument
107 MovePos->getParent()->getBasicBlockList().splice(MovePos,
112 /// insert it into the function that MovePos lives in, right after MovePos.
113 void BasicBlock::moveAfter(BasicBlock *MovePos) { argument
114 Function::iterator I = MovePos;
115 MovePos
[all...]
H A DInstruction.cpp89 /// insert it into the basic block that MovePos lives in, right before
90 /// MovePos.
91 void Instruction::moveBefore(Instruction *MovePos) { argument
92 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
H A DCore.cpp1720 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1721 unwrap(BB)->moveBefore(unwrap(MovePos));
1724 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1725 unwrap(BB)->moveAfter(unwrap(MovePos));
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DBasicBlock.h165 /// into the function that \p MovePos lives in, right before \p MovePos.
166 void moveBefore(BasicBlock *MovePos);
169 /// right after \p MovePos in the function \p MovePos lives in.
170 void moveAfter(BasicBlock *MovePos);
H A DInstruction.h74 /// insert it into the basic block that MovePos lives in, right before
75 /// MovePos.
76 void moveBefore(Instruction *MovePos);
/freebsd-9.3-release/contrib/llvm/include/llvm-c/
H A DCore.h2213 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2220 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

Completed in 179 milliseconds