Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/lib/IR/
DBasicBlock.cpp106 void BasicBlock::moveBefore(BasicBlock *MovePos) { in moveBefore() argument
107 MovePos->getParent()->getBasicBlockList().splice(MovePos, in moveBefore()
113 void BasicBlock::moveAfter(BasicBlock *MovePos) { in moveAfter() argument
114 Function::iterator I = MovePos; in moveAfter()
115 MovePos->getParent()->getBasicBlockList().splice(++I, in moveAfter()
DInstruction.cpp91 void Instruction::moveBefore(Instruction *MovePos) { in moveBefore() argument
92 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(), in moveBefore()
DCore.cpp1720 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockBefore() argument
1721 unwrap(BB)->moveBefore(unwrap(MovePos)); in LLVMMoveBasicBlockBefore()
1724 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { in LLVMMoveBasicBlockAfter() argument
1725 unwrap(BB)->moveAfter(unwrap(MovePos)); in LLVMMoveBasicBlockAfter()
/freebsd-10-stable/contrib/llvm/include/llvm/IR/
DBasicBlock.h166 void moveBefore(BasicBlock *MovePos);
170 void moveAfter(BasicBlock *MovePos);
DInstruction.h76 void moveBefore(Instruction *MovePos);
/freebsd-10-stable/contrib/llvm/include/llvm-c/
DCore.h2213 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2220 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);