Lines Matching defs:NewMBB
2166 MachineBasicBlock *NewMBB = MF.CreateMachineBasicBlock(MBB->getBasicBlock());
2167 MF.insert(std::next(MachineFunction::iterator(MBB)), NewMBB);
2168 return NewMBB;
2173 MachineBasicBlock *NewMBB = emitBlockAfter(MBB);
2174 NewMBB->splice(NewMBB->begin(), MBB,
2176 NewMBB->transferSuccessorsAndUpdatePHIs(MBB);
2177 return NewMBB;
2182 MachineBasicBlock *NewMBB = emitBlockAfter(MBB);
2183 NewMBB->splice(NewMBB->begin(), MBB, MI, MBB->end());
2184 NewMBB->transferSuccessorsAndUpdatePHIs(MBB);
2185 return NewMBB;