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

/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DBasicBlock.cpp102 /// insert it into the function that MovePos lives in, right before MovePos.
103 void BasicBlock::moveBefore(BasicBlock *MovePos) { argument
104 MovePos->getParent()->getBasicBlockList().splice(
105 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator());
109 /// insert it into the function that MovePos lives in, right after MovePos.
110 void BasicBlock::moveAfter(BasicBlock *MovePos) { argument
111 MovePos->getParent()->getBasicBlockList().splice(
112 ++MovePos
[all...]
H A DInstruction.cpp93 /// basic block that MovePos lives in, right before MovePos.
94 void Instruction::moveBefore(Instruction *MovePos) { argument
95 MovePos->getParent()->getInstList().splice(
96 MovePos->getIterator(), getParent()->getInstList(), getIterator());
H A DCore.cpp1958 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1959 unwrap(BB)->moveBefore(unwrap(MovePos));
1962 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1963 unwrap(BB)->moveAfter(unwrap(MovePos));
/freebsd-11.0-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.h96 /// insert it into the basic block that MovePos lives in, right before
97 /// MovePos.
98 void moveBefore(Instruction *MovePos);
/freebsd-11.0-release/contrib/llvm/include/llvm-c/
H A DCore.h2241 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2248 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

Completed in 80 milliseconds