Searched refs:BeforeInst (Results 1 – 1 of 1) sorted by relevance
1256 const Instruction *BeforeInst = Inst; in SelectAllBasicBlocks() local1257 while (BeforeInst != Begin) { in SelectAllBasicBlocks()1258 BeforeInst = std::prev(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()1259 if (!isFoldedOrDeadInstruction(BeforeInst, FuncInfo)) in SelectAllBasicBlocks()1262 if (BeforeInst != Inst && isa<LoadInst>(BeforeInst) && in SelectAllBasicBlocks()1263 BeforeInst->hasOneUse() && in SelectAllBasicBlocks()1264 FastIS->tryToFoldLoad(cast<LoadInst>(BeforeInst), Inst)) { in SelectAllBasicBlocks()1266 BI = std::next(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()