Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp1255 const Instruction *BeforeInst = Inst; in SelectAllBasicBlocks() local
1256 while (BeforeInst != &*Begin) { in SelectAllBasicBlocks()
1257 BeforeInst = &*std::prev(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()
1258 if (!isFoldedOrDeadInstruction(BeforeInst, FuncInfo)) in SelectAllBasicBlocks()
1261 if (BeforeInst != Inst && isa<LoadInst>(BeforeInst) && in SelectAllBasicBlocks()
1262 BeforeInst->hasOneUse() && in SelectAllBasicBlocks()
1263 FastIS->tryToFoldLoad(cast<LoadInst>(BeforeInst), Inst)) { in SelectAllBasicBlocks()
1265 BI = std::next(BasicBlock::const_iterator(BeforeInst)); in SelectAllBasicBlocks()