| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFMISimplifyPatchable.cpp | 101 decltype(End) NextI; in checkADDrr() local 102 for (auto I = Begin; I != End; I = NextI) { in checkADDrr() 103 NextI = std::next(I); in checkADDrr() 171 decltype(End) NextI; in processCandidate() local 172 for (auto I = Begin; I != End; I = NextI) { in processCandidate() 173 NextI = std::next(I); in processCandidate() 198 decltype(End) NextI; in processDstReg() local 199 for (auto I = Begin; I != End; I = NextI) { in processDstReg() 200 NextI = std::next(I); in processDstReg()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | SymbolSize.cpp | 90 unsigned NextI = I + 1; in computeSymbolSizes() local 91 while (NextI < N && Addresses[NextI].Address == P.Address) in computeSymbolSizes() 92 ++NextI; in computeSymbolSizes() 94 uint64_t Size = Addresses[NextI].Address - P.Address; in computeSymbolSizes()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 1507 PathPieces::iterator NextI = I; ++NextI; in simplifySimpleBranches() local 1508 if (NextI == E) in simplifySimpleBranches() 1514 if (NextI == E) in simplifySimpleBranches() 1517 const auto *EV = dyn_cast<PathDiagnosticEventPiece>(NextI->get()); in simplifySimpleBranches() 1522 ++NextI; in simplifySimpleBranches() 1528 PieceNextI = dyn_cast<PathDiagnosticControlFlowPiece>(NextI->get()); in simplifySimpleBranches() 1627 PathPieces::iterator NextI = I; ++NextI; in removeContextCycles() local 1628 if (NextI == E) in removeContextCycles() 1632 dyn_cast<PathDiagnosticControlFlowPiece>(NextI->get()); in removeContextCycles() 1635 if (isa<PathDiagnosticEventPiece>(NextI->get())) { in removeContextCycles() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64LoadStoreOptimizer.cpp | 747 MachineBasicBlock::iterator NextI = next_nodbg(I, E); in mergeNarrowZeroStores() local 752 if (NextI == MergeMI) in mergeNarrowZeroStores() 753 NextI = next_nodbg(NextI, E); in mergeNarrowZeroStores() 806 return NextI; in mergeNarrowZeroStores() 851 MachineBasicBlock::iterator NextI = next_nodbg(I, E); in mergePairedInsns() local 856 if (NextI == Paired) in mergePairedInsns() 857 NextI = next_nodbg(NextI, E); in mergePairedInsns() 1080 return NextI; in mergePairedInsns() 1086 MachineBasicBlock::iterator NextI = in promoteLoadFromStore() local 1116 return NextI; in promoteLoadFromStore() [all …]
|
| H A D | AArch64FrameLowering.cpp | 3405 MachineBasicBlock::iterator NextI = ++II; in tryMergeAdjacentSTG() local 3417 NextI != E && Count < kScanLimit; ++NextI) { in tryMergeAdjacentSTG() 3418 MachineInstr &MI = *NextI; in tryMergeAdjacentSTG() 3461 return NextI; in tryMergeAdjacentSTG()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonGenExtract.cpp | 234 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 D | HexagonPeephole.cpp | 130 for (auto I = MBB->begin(), E = MBB->end(), NextI = I; I != E; I = NextI) { in runOnMachineFunction() local 131 NextI = std::next(I); in runOnMachineFunction()
|
| H A D | HexagonGenMux.cpp | 235 MachineBasicBlock::iterator NextI, End = B.end(); in genMuxInBlock() local 236 for (MachineBasicBlock::iterator I = B.begin(); I != End; I = NextI) { in genMuxInBlock() 238 NextI = std::next(I); in genMuxInBlock()
|
| H A D | HexagonEarlyIfConv.cpp | 765 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 D | HexagonExpandCondsets.cpp | 341 auto NextI = std::next(I); in updateKillFlags() local 342 if (NextI != E && NextI->start.isRegister()) { in updateKillFlags() 343 MachineInstr *DefI = LIS->getInstructionFromIndex(NextI->start); in updateKillFlags() 1073 MachineBasicBlock::iterator I, E, NextI; in predicateInBlock() local 1074 for (I = B.begin(), E = B.end(); I != E; I = NextI) { in predicateInBlock() 1075 NextI = std::next(I); in predicateInBlock()
|
| H A D | HexagonBitSimplify.cpp | 360 decltype(End) NextI; in replaceReg() local 361 for (auto I = Begin; I != End; I = NextI) { in replaceReg() 362 NextI = std::next(I); in replaceReg() 376 decltype(End) NextI; in replaceRegWithSub() local 377 for (auto I = Begin; I != End; I = NextI) { in replaceRegWithSub() 378 NextI = std::next(I); in replaceRegWithSub() 393 decltype(End) NextI; in replaceSubWithSub() local 394 for (auto I = Begin; I != End; I = NextI) { in replaceSubWithSub() 395 NextI = std::next(I); in replaceSubWithSub() 1308 for (auto I = B.begin(), E = B.end(), NextI = I; I != E; ++I) { in processBlock() local [all …]
|
| H A D | HexagonVLIWPacketizer.cpp | 236 auto NextI = std::next(MI); in runOnMachineFunction() local 241 MI = NextI; in runOnMachineFunction() 1159 MachineBasicBlock::instr_iterator NextI; in unpacketizeSoloInstrs() local 1160 for (auto I = B.instr_begin(), E = B.instr_end(); I != E; I = NextI) { in unpacketizeSoloInstrs() 1161 NextI = std::next(I); in unpacketizeSoloInstrs()
|
| H A D | HexagonFrameLowering.cpp | 2087 MachineBasicBlock::iterator NextI; in expandSpillMacros() local 2088 for (auto I = B.begin(), E = B.end(); I != E; I = NextI) { in expandSpillMacros() 2090 NextI = std::next(I); in expandSpillMacros()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | MemCpyOptimizer.cpp | 246 range_iterator NextI = I; in addRange() local 247 while (++NextI != Ranges.end() && End >= NextI->Start) { in addRange() 249 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange() 250 if (NextI->End > I->End) in addRange() 251 I->End = NextI->End; in addRange() 252 Ranges.erase(NextI); in addRange() 253 NextI = I; in addRange()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyRegStackify.cpp | 351 auto NextI = std::next(MachineBasicBlock::const_iterator(DefI)); in isSafeToMove() local 352 for (auto E = MBB->end(); NextI != E && NextI->isDebugInstr(); ++NextI) in isSafeToMove() 354 if (NextI == Insert) in isSafeToMove()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | SparseMultiSet.h | 472 iterator NextI = unlink(Dense[I.Idx]); in erase() local 477 return NextI; in erase()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-param-util.h | 836 constexpr size_t NextI = ThisI - (ThisI != 0); in AdvanceIfEnd() local 838 ++std::get<NextI>(current_); in AdvanceIfEnd() 839 AdvanceIfEnd<NextI>(); in AdvanceIfEnd()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MIRPrinter.cpp | 620 MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); in canPredictSuccessors() local 621 if (NextI != MF.end()) { in canPredictSuccessors() 622 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); in canPredictSuccessors()
|
| H A D | RDFGraph.cpp | 1010 for (auto I = DefM.begin(), E = DefM.end(), NextI = I; I != E; I = NextI) { in releaseBlock() local 1011 NextI = std::next(I); in releaseBlock()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCCodeEmitter.cpp | 476 const MCInst &NextI = *(I+1)->getInst(); in getFixupNoBits() local 477 const MCInstrDesc &NextD = HexagonMCInstrInfo::getDesc(MCII, NextI); in getFixupNoBits() 479 HexagonMCInstrInfo::getType(MCII, NextI) == HexagonII::TypeCR) in getFixupNoBits()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | SIWholeQuadMode.cpp | 1099 auto NextI = std::next(EndMI->getIterator()); in prepareInsertion() local 1100 if (NextI == MBB.end()) in prepareInsertion() 1102 SlotIndex Next = LIS->getInstructionIndex(*NextI); in prepareInsertion()
|
| H A D | SIInsertWaitcnts.cpp | 817 for (auto II = OldWaitcntInstr.getIterator(), NextI = std::next(II); in applyPreexistingWaitcnt() local 818 &*II != MI; II = NextI, ++NextI) { in applyPreexistingWaitcnt()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | VarLocBasedImpl.cpp | 1561 auto NextI = std::next(MI.getIterator()); in isLocationSpill() local 1563 if (MI.getParent()->end() == NextI) in isLocationSpill() 1566 for (const MachineOperand &MONext : NextI->operands()) { in isLocationSpill()
|
| H A D | InstrRefBasedImpl.cpp | 1897 auto NextI = std::next(MI.getIterator()); in isLocationSpill() local 1899 if (MI.getParent()->end() == NextI) in isLocationSpill() 1902 for (const MachineOperand &MONext : NextI->operands()) { in isLocationSpill()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | MemoryDependenceAnalysis.cpp | 1619 if (Instruction *NextI = NewDirtyVal.getInst()) in removeInstruction() local 1620 ReverseDepsToAdd.push_back(std::make_pair(NextI, I)); in removeInstruction()
|