Home
last modified time | relevance | path

Searched refs:NextMII (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DVirtRegRewriter.cpp1282 MachineBasicBlock::iterator NextMII = llvm::next(MII); in OptimizeByUnfold2() local
1284 while (NextMII != MBB->end() && NextMII->isDebugValue()) in OptimizeByUnfold2()
1285 NextMII = llvm::next(NextMII); in OptimizeByUnfold2()
1286 if (NextMII == MBB->end()) in OptimizeByUnfold2()
1308 if (!FoldsStackSlotModRef(*NextMII, SS, PhysReg, TII, TRI, *VRM)) in OptimizeByUnfold2()
1336 MachineInstr &NextMI = *NextMII; in OptimizeByUnfold2()
1337 NextMII = llvm::next(NextMII); in OptimizeByUnfold2()
1344 MBB->insert(NextMII, NewMIs[0]); in OptimizeByUnfold2()
1349 while (NextMII != MBB->end() && NextMII->isDebugValue()) in OptimizeByUnfold2()
1350 NextMII = llvm::next(NextMII); in OptimizeByUnfold2()
[all …]
DMachineLICM.cpp642 MachineBasicBlock::iterator NextMII = MII; ++NextMII; in HoistRegion() local
646 MII = NextMII; in HoistRegion()
/external/llvm/lib/Target/ARM/
DThumb2SizeReduction.cpp1007 MachineBasicBlock::instr_iterator NextMII; in ReduceMBB() local
1008 for (; MII != E; MII = NextMII) { in ReduceMBB()
1009 NextMII = std::next(MII); in ReduceMBB()
1022 bool NextInSameBundle = NextMII != E && NextMII->isBundledWithPred(); in ReduceMBB()
1026 MachineBasicBlock::instr_iterator I = std::prev(NextMII); in ReduceMBB()
1030 if (NextInSameBundle && !NextMII->isBundledWithPred()) in ReduceMBB()
1031 NextMII->bundleWithPred(); in ReduceMBB()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DThumb2SizeReduction.cpp822 MachineBasicBlock::iterator NextMII; in ReduceMBB() local
823 for (; MII != E; MII = NextMII) { in ReduceMBB()
824 NextMII = llvm::next(MII); in ReduceMBB()
837 MachineBasicBlock::iterator I = prior(NextMII); in ReduceMBB()
847 MachineBasicBlock::iterator I = prior(NextMII); in ReduceMBB()
856 MachineBasicBlock::iterator I = prior(NextMII); in ReduceMBB()
/external/llvm/lib/Target/Hexagon/
DHexagonVLIWPacketizer.cpp1165 MachineBasicBlock::iterator NextMII = I; in isLegalToPacketizeTogether() local
1166 ++NextMII; in isLegalToPacketizeTogether()
1167 if (NextMII != I->getParent()->end() && HII->isNewValueJump(&*NextMII)) { in isLegalToPacketizeTogether()
1168 MachineInstr &NextMI = *NextMII; in isLegalToPacketizeTogether()
/external/llvm/lib/CodeGen/
DMachineLICM.cpp688 MachineBasicBlock::iterator NextMII = MII; ++NextMII; in HoistOutOfLoop() local
692 MII = NextMII; in HoistOutOfLoop()