Lines Matching defs:ExitMBB
10015 MachineBasicBlock *ExitMBB = MF.CreateMachineBasicBlock(MBB.getBasicBlock());
10016 MF.insert(MBBInsertPoint, ExitMBB);
10036 .addMBB(ExitMBB)
10053 BuildMI(*ExitMBB, ExitMBB->end(), DL, TII->get(AArch64::ADDXri), AArch64::SP)
10060 BuildMI(*ExitMBB, ExitMBB->end(), DL, TII->get(AArch64::LDRXui))
10066 ExitMBB->splice(ExitMBB->end(), &MBB, std::next(MBBI), MBB.end());
10067 ExitMBB->transferSuccessorsAndUpdatePHIs(&MBB);
10069 LoopTestMBB->addSuccessor(ExitMBB);
10076 fullyRecomputeLiveIns({ExitMBB, LoopBodyMBB, LoopTestMBB});
10078 return ExitMBB->begin();