Searched refs:BeforeInst (Results 1 – 1 of 1) sorted by relevance
1517 const Instruction *BeforeInst = Inst; in SelectAllBasicBlocks() local1518 while (BeforeInst != &*Begin) { in SelectAllBasicBlocks()1519 BeforeInst = &*std::prev(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()1520 if (!isFoldedOrDeadInstruction(BeforeInst, *FuncInfo)) in SelectAllBasicBlocks()1523 if (BeforeInst != Inst && isa<LoadInst>(BeforeInst) && in SelectAllBasicBlocks()1524 BeforeInst->hasOneUse() && in SelectAllBasicBlocks()1525 FastIS->tryToFoldLoad(cast<LoadInst>(BeforeInst), Inst)) { in SelectAllBasicBlocks()1528 << "FastISel folded load: " << *BeforeInst << "\n"); in SelectAllBasicBlocks()1529 BI = std::next(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()