Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1185 MachineBasicBlock::iterator LastI = LastMBB->getFirstTerminator(); in convertToHardwareLoop() local
1186 if (LastI == LastMBB->end()) in convertToHardwareLoop()
1276 DebugLoc LastIDL = LastI->getDebugLoc(); in convertToHardwareLoop()
1277 BuildMI(*LastMBB, LastI, LastIDL, TII->get(ENDLOOP)).addMBB(LoopStart); in convertToHardwareLoop()
1282 if (LastI->getOpcode() == Hexagon::J2_jumpt || in convertToHardwareLoop()
1283 LastI->getOpcode() == Hexagon::J2_jumpf) { in convertToHardwareLoop()
1285 MachineBasicBlock *BranchTarget = LastI->getOperand(1).getMBB(); in convertToHardwareLoop()
1286 LastI = LastMBB->erase(LastI); in convertToHardwareLoop()
1288 if (LastI != LastMBB->end()) in convertToHardwareLoop()
1289 LastI = LastMBB->erase(LastI); in convertToHardwareLoop()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp249 auto *LastI = cast<VPInstruction>(Last); in getBest() local
251 if (areConsecutiveOrMatch(LastI, CandidateI, IAI)) { in getBest()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp1201 MachineBasicBlock::iterator LastI = MBB.getFirstTerminator(); in shouldCombineCSRLocalStackBumpInEpilogue() local
1203 while (LastI != Begin) { in shouldCombineCSRLocalStackBumpInEpilogue()
1204 --LastI; in shouldCombineCSRLocalStackBumpInEpilogue()
1205 if (LastI->isTransient()) in shouldCombineCSRLocalStackBumpInEpilogue()
1207 if (!LastI->getFlag(MachineInstr::FrameDestroy)) in shouldCombineCSRLocalStackBumpInEpilogue()
1210 switch (LastI->getOpcode()) { in shouldCombineCSRLocalStackBumpInEpilogue()
4234 MachineInstr *LastI = nullptr; in emitUnrolled() local
4250 LastI = I; in emitUnrolled()
4255 if (LastI) in emitUnrolled()
4256 MBB->splice(InsertI, MBB, LastI); in emitUnrolled()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp2243 IdentifierResolver::iterator LastI = I; in LookupName() local
2244 for (++LastI; LastI != IEnd; ++LastI) { in LookupName()
2247 if (!S->isDeclScope(*LastI)) in LookupName()
2252 = (*LastI)->getDeclContext()->getRedeclContext(); in LookupName()
2258 if (NamedDecl *LastD = R.getAcceptableDecl(*LastI)) in LookupName()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h364 auto LastI = llvm::unique(Symbols); in removeDuplicates() local
365 Symbols.erase(LastI, Symbols.end()); in removeDuplicates()