Searched refs:BeforeInst (Results 1 – 1 of 1) sorted by relevance
1470 const Instruction *BeforeInst = Inst; in SelectAllBasicBlocks() local1471 while (BeforeInst != &*Begin) { in SelectAllBasicBlocks()1472 BeforeInst = &*std::prev(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()1473 if (!isFoldedOrDeadInstruction(BeforeInst, *FuncInfo)) in SelectAllBasicBlocks()1476 if (BeforeInst != Inst && isa<LoadInst>(BeforeInst) && in SelectAllBasicBlocks()1477 BeforeInst->hasOneUse() && in SelectAllBasicBlocks()1478 FastIS->tryToFoldLoad(cast<LoadInst>(BeforeInst), Inst)) { in SelectAllBasicBlocks()1481 << "FastISel folded load: " << *BeforeInst << "\n"); in SelectAllBasicBlocks()1482 BI = std::next(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()