HomeSort by: relevance | last modified time | path
    Searched defs:NextMII (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 1066 MachineBasicBlock::instr_iterator NextMII;
1067 for (; MII != E; MII = NextMII) {
1068 NextMII = std::next(MII);
1080 // Does NextMII belong to the same bundle as MI?
1081 bool NextInSameBundle = NextMII != E && NextMII->isBundledWithPred();
1085 MachineBasicBlock::instr_iterator I = std::prev(NextMII);
1089 if (NextInSameBundle && !NextMII->isBundledWithPred())
1090 NextMII->bundleWithPred();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MicroMipsSizeReduction.cpp 126 &NextMII; // Iterator to next instruction in block
130 : MI(argMI), Entry(argEntry), NextMII(argNextMII) {}
155 MachineBasicBlock::instr_iterator &NextMII);
415 MachineBasicBlock::instr_iterator &NextMII) {
433 ReduceEntryFunArgs Arguments(&(*MII), *Entry, NextMII);
457 MachineBasicBlock::instr_iterator &NextMII = Arguments->NextMII;
461 if (NextMII == E)
465 MachineInstr *MI2 = &*NextMII;
490 NextMII = std::next(NextMII)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineLICM.cpp 766 MachineBasicBlock::iterator NextMII = MII; ++NextMII;
772 MII = NextMII;

Completed in 48 milliseconds