Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:MII

51     for (MachineBasicBlock::instr_iterator MII = MBB->instr_begin(),
52 MIE = MBB->instr_end(); MII != MIE; ) {
53 MachineInstr *MI = &*MII;
58 while (++MII != MIE && MII->isBundledWithPred()) {
59 MII->unbundleFromPred();
60 for (unsigned i = 0, e = MII->getNumOperands(); i != e; ++i) {
61 MachineOperand &MO = MII->getOperand(i);
72 ++MII;
239 MachineBasicBlock::instr_iterator MII = MBB.instr_begin();
241 if (MII == MIE)
243 assert(!MII->isInsideBundle() &&
246 for (++MII; MII != MIE; ) {
247 if (!MII->isInsideBundle())
248 ++MII;
250 MII = finalizeBundle(MBB, std::prev(MII));