Lines Matching refs:InsertPos
97 void Instruction::insertBefore(Instruction *InsertPos) { in insertBefore() argument
98 insertBefore(InsertPos->getIterator()); in insertBefore()
103 void Instruction::insertBefore(BasicBlock::iterator InsertPos) { in insertBefore() argument
104 insertBefore(*InsertPos->getParent(), InsertPos); in insertBefore()
109 void Instruction::insertAfter(Instruction *InsertPos) { in insertAfter() argument
110 BasicBlock *DestParent = InsertPos->getParent(); in insertAfter()
112 DestParent->getInstList().insertAfter(InsertPos->getIterator(), this); in insertAfter()
127 InstListType::iterator InsertPos) { in insertBefore() argument
130 BB.getInstList().insert(InsertPos, this); in insertBefore()
138 bool InsertAtHead = InsertPos.getHeadBit(); in insertBefore()
140 DbgMarker *SrcMarker = BB.getMarker(InsertPos); in insertBefore()
154 adoptDbgRecords(&BB, InsertPos, false); in insertBefore()