Lines Matching refs:TailMBB
18405 // TailMBB
18478 MachineBasicBlock *TailMBB = F->CreateMachineBasicBlock(LLVM_BB);
18482 F->insert(I, TailMBB);
18487 TailMBB->setCallFrameSize(CallFrameSize);
18489 // Transfer debug instructions associated with the selects to TailMBB.
18491 TailMBB->push_back(DebugInstr->removeFromParent());
18494 // Move all instructions after the sequence to TailMBB.
18495 TailMBB->splice(TailMBB->end(), HeadMBB,
18499 TailMBB->transferSuccessorsAndUpdatePHIs(HeadMBB);
18502 HeadMBB->addSuccessor(TailMBB);
18509 .addMBB(TailMBB);
18514 .addMBB(TailMBB);
18516 // IfFalseMBB just falls through to TailMBB.
18517 IfFalseMBB->addSuccessor(TailMBB);
18522 auto InsertionPoint = TailMBB->begin();
18527 BuildMI(*TailMBB, InsertionPoint, SelectMBBI->getDebugLoc(),
18539 return TailMBB;