Lines Matching refs:InsertionPoint
184 InstList::iterator InsertionPoint = Insts.end(); in placePhiStores() local
188 assert(InsertionPoint != Insts.begin()); in placePhiStores()
189 --InsertionPoint; in placePhiStores()
193 (void)InsertionPoint->getTerminatorEdges(); in placePhiStores()
232 InstList::iterator SafeInsertionPoint = InsertionPoint; in placePhiStores()
241 if (auto *Branch = llvm::dyn_cast<InstBr>(InsertionPoint)) { in placePhiStores()
243 if (InsertionPoint != Insts.begin()) { in placePhiStores()
244 --InsertionPoint; in placePhiStores()
245 if (llvm::isa<InstIcmp>(InsertionPoint) || in placePhiStores()
246 llvm::isa<InstFcmp>(InsertionPoint)) { in placePhiStores()
247 CmpInstDest = InsertionPoint->getDest(); in placePhiStores()
249 ++InsertionPoint; in placePhiStores()
268 Insts.insert(InsertionPoint, NewInst); in placePhiStores()