Searched defs:MovePos (Results 1 - 3 of 3) 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));

Completed in 140 milliseconds