Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1517 const Instruction *BeforeInst = Inst; in SelectAllBasicBlocks() local
1518 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()