Lines Matching defs:TailMBB
19484 // TailMBB
19557 MachineBasicBlock *TailMBB = F->CreateMachineBasicBlock(LLVM_BB);
19561 F->insert(I, TailMBB);
19566 TailMBB->setCallFrameSize(CallFrameSize);
19568 // Transfer debug instructions associated with the selects to TailMBB.
19570 TailMBB->push_back(DebugInstr->removeFromParent());
19573 // Move all instructions after the sequence to TailMBB.
19574 TailMBB->splice(TailMBB->end(), HeadMBB,
19578 TailMBB->transferSuccessorsAndUpdatePHIs(HeadMBB);
19581 HeadMBB->addSuccessor(TailMBB);
19588 .addMBB(TailMBB);
19593 .addMBB(TailMBB);
19595 // IfFalseMBB just falls through to TailMBB.
19596 IfFalseMBB->addSuccessor(TailMBB);
19601 auto InsertionPoint = TailMBB->begin();
19606 BuildMI(*TailMBB, InsertionPoint, SelectMBBI->getDebugLoc(),
19618 return TailMBB;