Lines Matching defs:NewMBB
2171 MachineBasicBlock *NewMBB = MF.CreateMachineBasicBlock(MBB->getBasicBlock());
2172 MF.insert(std::next(MachineFunction::iterator(MBB)), NewMBB);
2173 return NewMBB;
2178 MachineBasicBlock *NewMBB = emitBlockAfter(MBB);
2179 NewMBB->splice(NewMBB->begin(), MBB,
2181 NewMBB->transferSuccessorsAndUpdatePHIs(MBB);
2182 return NewMBB;
2187 MachineBasicBlock *NewMBB = emitBlockAfter(MBB);
2188 NewMBB->splice(NewMBB->begin(), MBB, MI, MBB->end());
2189 NewMBB->transferSuccessorsAndUpdatePHIs(MBB);
2190 return NewMBB;