Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:mbb

108     /// CopyCoalesceInMBB - Coalesce copies in the specified MBB, putting
110 void CopyCoalesceInMBB(MachineBasicBlock *MBB,
711 MachineBasicBlock *MBB = DefMI->getParent();
721 MBB->insert(DefMI, NewMI);
722 MBB->erase(DefMI);
836 MachineBasicBlock *MBB = CopyMI->getParent();
839 TII->reMaterialize(*MBB, MII, DstReg, 0, DefMI, *TRI);
1674 // depth of the basic block (the unsigned), and then on the MBB number.
1695 void RegisterCoalescer::CopyCoalesceInMBB(MachineBasicBlock *MBB,
1697 DEBUG(dbgs() << MBB->getName() << ":\n");
1702 for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
1765 // there may be more MBB's than BB's. Collect MBB's for sorting.
1771 MachineBasicBlock *MBB = I;
1772 MBBs.push_back(std::make_pair(Loops->getLoopDepth(MBB), I));
1848 MachineBasicBlock* mbb = mbbi;
1849 for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();