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,
680 MachineBasicBlock *MBB = DefMI->getParent();
691 MBB->insert(Pos, NewMI);
692 MBB->erase(DefMI);
803 MachineBasicBlock *MBB = CopyMI->getParent();
806 TII->reMaterialize(*MBB, MII, DstReg, 0, DefMI, *TRI);
1660 // depth of the basic block (the unsigned), and then on the MBB number.
1681 void RegisterCoalescer::CopyCoalesceInMBB(MachineBasicBlock *MBB,
1683 DEBUG(dbgs() << MBB->getName() << ":\n");
1688 for (MachineBasicBlock::iterator MII = MBB->begin(), E = MBB->end();
1751 // there may be more MBB's than BB's. Collect MBB's for sorting.
1757 MachineBasicBlock *MBB = I;
1758 MBBs.push_back(std::make_pair(Loops->getLoopDepth(MBB), I));
1834 MachineBasicBlock* mbb = mbbi;
1835 for (MachineBasicBlock::iterator mii = mbb->begin(), mie = mbb->end();