Lines Matching defs:InsertPt
103 BasicBlock::iterator InsertPt;
105 InsertPt = ++I.getIterator();
107 for (; isa<PHINode>(InsertPt) || InsertPt->isEHPad(); ++InsertPt)
108 if (isa<CatchSwitchInst>(InsertPt))
110 if (isa<CatchSwitchInst>(InsertPt)) {
111 for (BasicBlock *Handler : successors(&*InsertPt))
116 InsertPt = II->getNormalDest()->getFirstInsertionPt();
125 new StoreInst(&I, Slot, InsertPt);
163 BasicBlock::iterator InsertPt = P->getIterator();
165 for (; isa<PHINode>(InsertPt) || InsertPt->isEHPad(); ++InsertPt)
166 if (isa<CatchSwitchInst>(InsertPt))
168 if (isa<CatchSwitchInst>(InsertPt)) {
182 new LoadInst(P->getType(), Slot, P->getName() + ".reload", InsertPt);