Lines Matching refs:InsertPos
98 void Instruction::insertBefore(Instruction *InsertPos) { in insertBefore() argument
99 insertBefore(InsertPos->getIterator()); in insertBefore()
104 void Instruction::insertBefore(BasicBlock::iterator InsertPos) { in insertBefore() argument
105 insertBefore(*InsertPos->getParent(), InsertPos); in insertBefore()
110 void Instruction::insertAfter(Instruction *InsertPos) { in insertAfter() argument
111 BasicBlock *DestParent = InsertPos->getParent(); in insertAfter()
113 DestParent->getInstList().insertAfter(InsertPos->getIterator(), this); in insertAfter()
133 InstListType::iterator InsertPos) { in insertBefore() argument
136 BB.getInstList().insert(InsertPos, this); in insertBefore()
146 bool InsertAtHead = InsertPos.getHeadBit(); in insertBefore()
148 DPMarker *SrcMarker = BB.getMarker(InsertPos); in insertBefore()