Lines Matching defs:BeforeInst
1782 const Instruction *BeforeInst = Inst;
1783 while (BeforeInst != &*Begin) {
1784 BeforeInst = &*std::prev(BasicBlock::const_iterator(BeforeInst));
1785 if (!isFoldedOrDeadInstruction(BeforeInst, *FuncInfo))
1788 if (BeforeInst != Inst && isa<LoadInst>(BeforeInst) &&
1789 BeforeInst->hasOneUse() &&
1790 FastIS->tryToFoldLoad(cast<LoadInst>(BeforeInst), Inst)) {
1793 << "FastISel folded load: " << *BeforeInst << "\n");
1794 FastIS->handleDbgInfo(BeforeInst);
1795 BI = std::next(BasicBlock::const_iterator(BeforeInst));