Searched defs:FirstUse (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
H A DIceTargetLowering.cpp600 Inst *FirstUse = nullptr; member in struct:Ice::UseInfo
621 if (Info.FirstUse == nullptr && !llvm::isa<InstPhi>(Instr)) {
622 Info.FirstUse = Instr;
638 if (!Info.FirstUse && !Info.LastDef) {
698 assert(Info.FirstUse != Info.LastDef);
699 assert(Info.FirstUse || Info.LastDef);
702 if (Info.FirstUse != nullptr) {
705 Node->getInsts().insert(instToIterator(Info.FirstUse), NewInst);
/external/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp708 BasicBlock::iterator FirstUse = B->end(), BEnd = B->end(); local
725 if (std::distance(FirstUse, BEnd) < std::distance(It, BEnd))
726 FirstUse = It;
728 return FirstUse;
1204 BasicBlock::iterator FirstUse = first_use_of_in_block(Urs, LastB); local
1205 if (FirstUse != LastB->end())
1206 InsertAt = FirstUse;

Completed in 301 milliseconds