Lines Matching defs:exitMBB

6027   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
6030 MF->insert(It, exitMBB);
6032 // Transfer the remainder of BB and its successor edges to exitMBB.
6033 exitMBB->splice(exitMBB->begin(), BB,
6036 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6046 // bne exitMBB
6055 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
6057 BB->addSuccessor(exitMBB);
6073 BB->addSuccessor(exitMBB);
6075 // exitMBB:
6077 BB = exitMBB;
6125 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
6127 MF->insert(It, exitMBB);
6129 // Transfer the remainder of BB and its successor edges to exitMBB.
6130 exitMBB->splice(exitMBB->begin(), BB,
6133 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6152 // fallthrough --> exitMBB
6178 BB->addSuccessor(exitMBB);
6180 // exitMBB:
6182 BB = exitMBB;
6236 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
6238 MF->insert(It, exitMBB);
6240 // Transfer the remainder of BB and its successor edges to exitMBB.
6241 exitMBB->splice(exitMBB->begin(), BB,
6244 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6265 // fallthrough --> exitMBB
6296 BB->addSuccessor(exitMBB);
6298 // exitMBB:
6300 BB = exitMBB;
6341 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
6346 MF->insert(It, exitMBB);
6348 // Transfer the remainder of BB and its successor edges to exitMBB.
6349 exitMBB->splice(exitMBB->begin(), BB,
6352 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6371 // fallthrough --> exitMBB
6400 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
6401 BB->addSuccessor(exitMBB);
6430 .addMBB(exitMBB).addImm(CC).addReg(ARM::CPSR);
6431 BB->addSuccessor(exitMBB);
6468 BB->addSuccessor(exitMBB);
6470 // exitMBB:
6472 BB = exitMBB;
7162 // fallthrough --> exitMBB
7163 // exitMBB:
7168 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7170 MF->insert(It, exitMBB);
7172 // Transfer the remainder of BB and its successor edges to exitMBB.
7173 exitMBB->splice(exitMBB->begin(), BB,
7176 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7268 // loopMBB can loop back to loopMBB or fall through to exitMBB.
7270 BB->addSuccessor(exitMBB);
7273 BB = exitMBB;
7274 MachineInstr *StartOfExit = exitMBB->begin();
7582 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
7584 std::swap(destMBB, exitMBB);
7589 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
7591 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);