Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:MII

43     for (MachineBasicBlock::instr_iterator MII = MBB->instr_begin(),
44 MIE = MBB->instr_end(); MII != MIE; ) {
45 MachineInstr *MI = &*MII;
50 while (++MII != MIE && MII->isBundledWithPred()) {
51 MII->unbundleFromPred();
52 for (unsigned i = 0, e = MII->getNumOperands(); i != e; ++i) {
53 MachineOperand &MO = MII->getOperand(i);
64 ++MII;
227 MachineBasicBlock::instr_iterator MII = MBB.instr_begin();
229 if (MII == MIE)
231 assert(!MII->isInsideBundle() &&
234 for (++MII; MII != MIE; ) {
235 if (!MII->isInsideBundle())
236 ++MII;
238 MII = finalizeBundle(MBB, llvm::prior(MII));