Home
last modified time | relevance | path

Searched refs:NextI (Results 1 - 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
H A DBPFMISimplifyPatchable.cpp98 decltype(End) NextI; in checkADDrr()
99 for (auto I = Begin; I != End; I = NextI) { in checkADDrr()
100 NextI = std::next(I); in checkADDrr()
156 decltype(End) NextI; in processCandidate()
157 for (auto I = Begin; I != End; I = NextI) { in processCandidate()
158 NextI = std::next(I); in processCandidate()
182 decltype(End) NextI; in processDstReg()
183 for (auto I = Begin; I != End; I = NextI) { in processDstReg()
184 NextI = std::next(I); in processDstReg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DSymbolSize.cpp81 unsigned NextI = I + 1; in computeSymbolSizes() local
82 while (NextI < N && Addresses[NextI].Address == P.Address) in computeSymbolSizes()
83 ++NextI; in computeSymbolSizes()
85 uint64_t Size = Addresses[NextI].Address - P.Address; in computeSymbolSizes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp680 MachineBasicBlock::iterator NextI = I;
681 ++NextI;
682 // If NextI is the second of the two instructions to be merged, we need
686 if (NextI == MergeMI)
687 ++NextI;
740 return NextI;
785 MachineBasicBlock::iterator NextI = I;
786 ++NextI;
787 // If NextI is the second of the two instructions to be merged, we need
791 if (NextI
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonGenExtract.cpp233 BasicBlock::iterator I = std::prev(B->end()), NextI, Begin = B->begin(); in visitBlock() local
239 NextI = std::prev(I); in visitBlock()
247 I = NextI; in visitBlock()
H A DHexagonPeephole.cpp130 for (auto I = MBB->begin(), E = MBB->end(), NextI = I; I != E; I = NextI) { in runOnMachineFunction()
131 NextI = std::next(I); in runOnMachineFunction()
H A DHexagonExpandCondsets.cpp340 auto NextI = std::next(I); in updateKillFlags() local
341 if (NextI != E && NextI->start.isRegister()) { in updateKillFlags()
342 MachineInstr *DefI = LIS->getInstructionFromIndex(NextI->start); in updateKillFlags()
1072 MachineBasicBlock::iterator I, E, NextI; in predicateInBlock() local
1073 for (I = B.begin(), E = B.end(); I != E; I = NextI) { in predicateInBlock()
1074 NextI = std::next(I); in predicateInBlock()
H A DHexagonGenMux.cpp235 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 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 DHexagonBitSimplify.cpp360 decltype(End) NextI;
361 for (auto I = Begin; I != End; I = NextI) {
362 NextI = std::next(I);
375 decltype(End) NextI;
376 for (auto I = Begin; I != End; I = NextI) {
377 NextI = std::next(I);
391 decltype(End) NextI;
392 for (auto I = Begin; I != End; I = NextI) {
393 NextI = std::next(I);
1307 for (auto I = B.begin(), E = B.end(), NextI
[all...]
H A DHexagonVLIWPacketizer.cpp236 auto NextI = std::next(MI); in runOnMachineFunction() local
241 MI = NextI; in runOnMachineFunction()
1152 MachineBasicBlock::instr_iterator NextI; in unpacketizeSoloInstrs() local
1153 for (auto I = B.instr_begin(), E = B.instr_end(); I != E; I = NextI) { in unpacketizeSoloInstrs()
1154 NextI = std::next(I); in unpacketizeSoloInstrs()
H A DRDFGraph.cpp1013 for (auto I = DefM.begin(), E = DefM.end(), NextI = I; I != E; I = NextI) { in releaseBlock()
1014 NextI = std::next(I); in releaseBlock()
H A DHexagonFrameLowering.cpp1938 MachineBasicBlock::iterator NextI; in expandSpillMacros() local
1939 for (auto I = B.begin(), E = B.end(); I != E; I = NextI) { in expandSpillMacros()
1941 NextI = std::next(I); in expandSpillMacros()
H A DHexagonConstPropagation.cpp843 MachineFunction::const_iterator NextI = std::next(BI); in computeBlockSuccessors() local
844 if (NextI != MB->getParent()->end()) in computeBlockSuccessors()
845 Targets.insert(&*NextI); in computeBlockSuccessors()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp239 range_iterator NextI = I; in addRange() local
240 while (++NextI != Ranges.end() && End >= NextI->Start) { in addRange()
242 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange()
243 if (NextI->End > I->End) in addRange()
244 I->End = NextI->End; in addRange()
245 Ranges.erase(NextI); in addRange()
246 NextI = I; in addRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp325 auto NextI = std::next(MachineBasicBlock::const_iterator(Def)); in isSafeToMove() local
326 for (auto E = MBB->end(); NextI != E && NextI->isDebugInstr(); ++NextI) in isSafeToMove()
328 if (NextI != Insert) in isSafeToMove()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseMultiSet.h472 iterator NextI = unlink(Dense[I.Idx]);
477 return NextI;
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h912 constexpr size_t NextI = ThisI - (ThisI != 0); in AdvanceIfEnd() local
914 ++std::get<NextI>(current_); in AdvanceIfEnd()
915 AdvanceIfEnd<NextI>(); in AdvanceIfEnd()
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h836 constexpr size_t NextI = ThisI - (ThisI != 0); in AdvanceIfEnd() local
838 ++std::get<NextI>(current_); in AdvanceIfEnd()
839 AdvanceIfEnd<NextI>(); in AdvanceIfEnd()
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-param-util.h909 constexpr size_t NextI = ThisI - (ThisI != 0); in AdvanceIfEnd() local
911 ++std::get<NextI>(current_); in AdvanceIfEnd()
912 AdvanceIfEnd<NextI>(); in AdvanceIfEnd()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp1081 for (auto II = OldWaitcntInstr->getIterator(), NextI = std::next(II); in generateWaitcntInstBefore()
1082 &*II != &MI; II = NextI, ++NextI) { in generateWaitcntInstBefore()
1122 for (auto II = OldWaitcntInstr->getIterator(), NextI = std::next(II); in generateWaitcntInstBefore()
1123 &*II != &MI; II = NextI, NextI++) { in generateWaitcntInstBefore()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DLiveDebugValues.cpp998 auto NextI = std::next(MI.getIterator()); in isLocationSpill() local
1000 if (MI.getParent()->end() == NextI) in isLocationSpill()
1003 for (const MachineOperand &MONext : NextI->operands()) { in isLocationSpill()
1005 // previous spill instruction that is killed in NextI. in isLocationSpill()
H A DMIRPrinter.cpp593 MachineFunction::const_iterator NextI = std::next(MBB.getIterator()); in canPredictSuccessors() local
594 if (NextI != MF.end()) { in canPredictSuccessors()
595 MachineBasicBlock *Next = const_cast<MachineBasicBlock*>(&*NextI); in canPredictSuccessors()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCCodeEmitter.cpp482 const MCInst &NextI = *(I+1)->getInst(); in getFixupNoBits() local
483 const MCInstrDesc &NextD = HexagonMCInstrInfo::getDesc(MCII, NextI); in getFixupNoBits()
485 HexagonMCInstrInfo::getType(MCII, NextI) == HexagonII::TypeCR) in getFixupNoBits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1636 if (Instruction *NextI = NewDirtyVal.getInst()) in removeInstruction()
1637 ReverseDepsToAdd.push_back(std::make_pair(NextI, I)); in removeInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp204 goto NextI; in findLowestOffset()
209 NextI:; in findLowestOffset()

Completed in 45 milliseconds