Home
last modified time | relevance | path

Searched refs:BeforeInst (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1470 const Instruction *BeforeInst = Inst; in SelectAllBasicBlocks() local
1471 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()