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

/external/llvm/lib/VMCore/
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.cpp88 /// insert it into the basic block that MovePos lives in, right before
89 /// MovePos.
90 void Instruction::moveBefore(Instruction *MovePos) { argument
91 MovePos->getParent()->getInstList().splice(MovePos,getParent()->getInstList(),
H A DCore.cpp1566 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1567 unwrap(BB)->moveBefore(unwrap(MovePos));
1570 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) { argument
1571 unwrap(BB)->moveAfter(unwrap(MovePos));
/external/llvm/include/llvm/
H A DBasicBlock.h161 /// insert it into the function that MovePos lives in, right before MovePos.
162 void moveBefore(BasicBlock *MovePos);
165 /// insert it into the function that MovePos lives in, right after MovePos.
166 void moveAfter(BasicBlock *MovePos);
H A DInstruction.h73 /// insert it into the basic block that MovePos lives in, right before
74 /// MovePos.
75 void moveBefore(Instruction *MovePos);
/external/llvm/include/llvm-c/
H A DCore.h2040 void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2047 void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);

Completed in 500 milliseconds