Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Object/
H A DSymbolSize.cpp94 unsigned NextI = I + 1; in computeSymbolSizes() local
95 while (NextI < N && Addresses[NextI].Address == P.Address) in computeSymbolSizes()
96 ++NextI; in computeSymbolSizes()
98 uint64_t Size = Addresses[NextI].Address - P.Address; in computeSymbolSizes()
/openbsd/gnu/llvm/llvm/lib/Target/BPF/
H A DBPFMISimplifyPatchable.cpp180 decltype(End) NextI; in processCandidate() local
181 for (auto I = Begin; I != End; I = NextI) { in processCandidate()
182 NextI = std::next(I); in processCandidate()
207 decltype(End) NextI; in processDstReg() local
208 for (auto I = Begin; I != End; I = NextI) { in processDstReg()
209 NextI = std::next(I); in processDstReg()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1515 PathPieces::iterator NextI = I; ++NextI; in simplifySimpleBranches() local
1516 if (NextI == E) in simplifySimpleBranches()
1522 if (NextI == E) in simplifySimpleBranches()
1530 ++NextI; in simplifySimpleBranches()
1635 PathPieces::iterator NextI = I; ++NextI; in removeContextCycles() local
1636 if (NextI == E) in removeContextCycles()
1644 ++NextI; in removeContextCycles()
1747 PathPieces::iterator NextI = I; ++NextI; in removeIdenticalEvents() local
1748 if (NextI == E) in removeIdenticalEvents()
1798 PathPieces::iterator NextI = I; ++NextI; in optimizeEdges() local
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp234 BasicBlock::iterator I = std::prev(B->end()), NextI, Begin = B->begin(); in visitBlock() local
240 NextI = std::prev(I); in visitBlock()
248 I = NextI; in visitBlock()
H A DHexagonEarlyIfConv.cpp765 MachineBasicBlock::iterator I, NextI; in predicateBlockNB() local
767 for (I = FromB->begin(); I != End; I = NextI) { in predicateBlockNB()
769 NextI = std::next(I); in predicateBlockNB()
986 MachineBasicBlock::iterator I, NextI, NonPHI = B->getFirstNonPHI(); in eliminatePhis() local
987 for (I = B->begin(); I != NonPHI; I = NextI) { in eliminatePhis()
988 NextI = std::next(I); in eliminatePhis()
H A DHexagonExpandCondsets.cpp342 auto NextI = std::next(I); in updateKillFlags() local
343 if (NextI != E && NextI->start.isRegister()) { in updateKillFlags()
344 MachineInstr *DefI = LIS->getInstructionFromIndex(NextI->start); in updateKillFlags()
H A DHexagonBitSimplify.cpp388 decltype(End) NextI; in replaceReg() local
389 for (auto I = Begin; I != End; I = NextI) { in replaceReg()
390 NextI = std::next(I); in replaceReg()
404 decltype(End) NextI; in replaceRegWithSub() local
405 for (auto I = Begin; I != End; I = NextI) { in replaceRegWithSub()
406 NextI = std::next(I); in replaceRegWithSub()
421 decltype(End) NextI; in replaceSubWithSub() local
422 for (auto I = Begin; I != End; I = NextI) { in replaceSubWithSub()
423 NextI = std::next(I); in replaceSubWithSub()
H A DHexagonFrameLowering.cpp2038 MachineBasicBlock::iterator NextI; in expandSpillMacros() local
2039 for (auto I = B.begin(), E = B.end(); I != E; I = NextI) { in expandSpillMacros()
2041 NextI = std::next(I); in expandSpillMacros()
H A DHexagonConstPropagation.cpp848 MachineFunction::const_iterator NextI = std::next(BI); in computeBlockSuccessors() local
849 if (NextI != MB->getParent()->end()) in computeBlockSuccessors()
850 Targets.insert(&*NextI); in computeBlockSuccessors()
/openbsd/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp733 if (NextI == MergeMI) in mergeNarrowZeroStores()
734 NextI = next_nodbg(NextI, E); in mergeNarrowZeroStores()
788 return NextI; in mergeNarrowZeroStores()
838 if (NextI == Paired) in mergePairedInsns()
839 NextI = next_nodbg(NextI, E); in mergePairedInsns()
1064 return NextI; in mergePairedInsns()
1100 return NextI; in promoteLoadFromStore()
1114 return NextI; in promoteLoadFromStore()
1184 return NextI; in promoteLoadFromStore()
1803 NextI = next_nodbg(NextI, E); in mergeUpdateInsn()
[all …]
H A DAArch64FrameLowering.cpp3673 MachineBasicBlock::iterator NextI = ++II; in tryMergeAdjacentSTG() local
3685 NextI != E && Count < kScanLimit; ++NextI) { in tryMergeAdjacentSTG()
3686 MachineInstr &MI = *NextI; in tryMergeAdjacentSTG()
3729 return NextI; in tryMergeAdjacentSTG()
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp242 range_iterator NextI = I; in addRange() local
243 while (++NextI != Ranges.end() && End >= NextI->Start) { in addRange()
245 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange()
246 if (NextI->End > I->End) in addRange()
247 I->End = NextI->End; in addRange()
248 Ranges.erase(NextI); in addRange()
249 NextI = I; in addRange()
/openbsd/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp355 auto NextI = std::next(MachineBasicBlock::const_iterator(DefI)); in isSafeToMove() local
356 for (auto E = MBB->end(); NextI != E && NextI->isDebugInstr(); ++NextI) in isSafeToMove()
358 if (NextI == Insert) in isSafeToMove()
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DSparseMultiSet.h472 iterator NextI = unlink(Dense[I.Idx]); in erase() local
477 return NextI; in erase()
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.cpp473 const MCInst &NextI = *(I+1)->getInst(); in getFixupNoBits() local
474 const MCInstrDesc &NextD = HexagonMCInstrInfo::getDesc(MCII, NextI); in getFixupNoBits()
476 HexagonMCInstrInfo::getType(MCII, NextI) == HexagonII::TypeCR) in getFixupNoBits()
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DMIRPrinter.cpp648 MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); in canPredictSuccessors() local
649 if (NextI != MF.end()) { in canPredictSuccessors()
650 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); in canPredictSuccessors()
H A DRDFGraph.cpp999 for (auto I = DefM.begin(), E = DefM.end(), NextI = I; I != E; I = NextI) { in releaseBlock() local
1000 NextI = std::next(I); in releaseBlock()
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp1164 auto NextI = std::next(EndMI->getIterator()); in prepareInsertion() local
1165 if (NextI == MBB.end()) in prepareInsertion()
1167 SlotIndex Next = LIS->getInstructionIndex(*NextI); in prepareInsertion()
/openbsd/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DVarLocBasedImpl.cpp1705 auto NextI = std::next(MI.getIterator()); in isLocationSpill() local
1707 if (MI.getParent()->end() == NextI) in isLocationSpill()
1710 for (const MachineOperand &MONext : NextI->operands()) { in isLocationSpill()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1610 if (Instruction *NextI = NewDirtyVal.getInst()) in removeInstruction() local
1611 ReverseDepsToAdd.push_back(std::make_pair(NextI, I)); in removeInstruction()
/openbsd/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVInstructionSelector.cpp1442 const MachineInstr *NextI = I.getNextNode(); in selectBranchCond() local
1444 if (NextI != nullptr && NextI->getOpcode() == SPIRV::OpBranchConditional) in selectBranchCond()
/openbsd/gnu/llvm/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp272 goto NextI; in findLowestOffset()
277 NextI:; in findLowestOffset()
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp606 const auto &NextI = std::next(I); in emitDeclaration() local
608 if (NextI != E) { in emitDeclaration()
609 if (NextI->EmitStr == "" && in emitDeclaration()
610 NextI->Flags == MatchTableRecord::MTRF_LineBreakFollows) in emitDeclaration()