Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:MBB

59 void ilist_traits<MachineBasicBlock>::deleteNode(MachineBasicBlock *MBB) {
60 MBB->getParent()->DeleteMachineBasicBlock(MBB);
163 /// This guarantees that the MBB numbers are sequential, dense, and match the
166 void MachineFunction::RenumberBlocks(MachineBasicBlock *MBB) {
169 if (MBB == nullptr)
172 MBBI = MBB->getIterator();
184 "MBB number mismatch!");
245 MachineFunction::DeleteMachineBasicBlock(MachineBasicBlock *MBB) {
246 assert(MBB->getParent() == this && "MBB parent mismatch!");
247 MBB->~MachineBasicBlock();
248 BasicBlockRecycler.Deallocate(Allocator, MBB);