Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DEnvironment.cpp252 BindingsTy::iterator LastI = ExprBindings.end(); in printJson() local
267 LastI = I; in printJson()
285 if (I != LastI) in printJson()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp1183 MachineBasicBlock::iterator LastI = LastMBB->getFirstTerminator(); in convertToHardwareLoop() local
1184 if (LastI == LastMBB->end()) in convertToHardwareLoop()
1279 DebugLoc LastIDL = LastI->getDebugLoc(); in convertToHardwareLoop()
1280 BuildMI(*LastMBB, LastI, LastIDL, TII->get(ENDLOOP)).addMBB(LoopStart); in convertToHardwareLoop()
1285 if (LastI->getOpcode() == Hexagon::J2_jumpt || in convertToHardwareLoop()
1286 LastI->getOpcode() == Hexagon::J2_jumpf) { in convertToHardwareLoop()
1288 MachineBasicBlock *BranchTarget = LastI->getOperand(1).getMBB(); in convertToHardwareLoop()
1289 LastI = LastMBB->erase(LastI); in convertToHardwareLoop()
1291 if (LastI != LastMBB->end()) in convertToHardwareLoop()
1292 LastI = LastMBB->erase(LastI); in convertToHardwareLoop()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DVPlanSLP.cpp257 auto *LastI = cast<VPInstruction>(Last); in getBest() local
259 if (areConsecutiveOrMatch(LastI, CandidateI, IAI)) { in getBest()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64FrameLowering.cpp714 MachineBasicBlock::iterator LastI = MBB.getFirstTerminator(); in shouldCombineCSRLocalStackBumpInEpilogue() local
716 while (LastI != Begin) { in shouldCombineCSRLocalStackBumpInEpilogue()
717 --LastI; in shouldCombineCSRLocalStackBumpInEpilogue()
718 if (LastI->isTransient()) in shouldCombineCSRLocalStackBumpInEpilogue()
720 if (!LastI->getFlag(MachineInstr::FrameDestroy)) in shouldCombineCSRLocalStackBumpInEpilogue()
723 switch (LastI->getOpcode()) { in shouldCombineCSRLocalStackBumpInEpilogue()
3185 MachineInstr *LastI = nullptr; in emitUnrolled() local
3200 LastI = I; in emitUnrolled()
3205 if (LastI) in emitUnrolled()
3206 MBB->splice(InsertI, MBB, LastI); in emitUnrolled()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DConstantFold.cpp2126 gep_type_iterator LastI = gep_type_end(GEP); in foldGEPOfGEP() local
2129 LastI = I; in foldGEPOfGEP()
2149 if (!LastI.isSequential()) in foldGEPOfGEP()
2154 if (LastI.isBoundedSequential() && in foldGEPOfGEP()
2155 !isIndexInRangeOfArrayType(LastI.getSequentialNumElements(), CI)) in foldGEPOfGEP()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
DCommonArgs.cpp159 llvm::StringMap<unsigned>::iterator LastI = LastOpt.find(Name.drop_front(1)); in unifyTargetFeatures() local
160 assert(LastI != LastOpt.end()); in unifyTargetFeatures()
161 unsigned Last = LastI->second; in unifyTargetFeatures()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaLookup.cpp1980 IdentifierResolver::iterator LastI = I; in LookupName() local
1981 for (++LastI; LastI != IEnd; ++LastI) { in LookupName()
1984 if (!S->isDeclScope(*LastI)) in LookupName()
1989 = (*LastI)->getDeclContext()->getRedeclContext(); in LookupName()
1995 if (NamedDecl *LastD = R.getAcceptableDecl(*LastI)) in LookupName()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DCore.h360 auto LastI = std::unique(Symbols.begin(), Symbols.end()); in removeDuplicates() local
361 Symbols.erase(LastI, Symbols.end()); in removeDuplicates()