Lines Matching defs:TestMBB
13005 // +--->+ TestMBB +---+
13016 // In TestMBB, test if sp is equal to final stack pointer, if so, jump to
13017 // TailMBB. In BlockMBB, update the sp atomically and jump back to TestMBB.
13019 MachineBasicBlock *TestMBB = MF->CreateMachineBasicBlock(ProbedBB);
13024 MF->insert(MBBIter, TestMBB);
13103 BuildMI(TestMBB, DL, TII->get(isPPC64 ? PPC::CMPD : PPC::CMPW), CmpResult)
13106 BuildMI(TestMBB, DL, TII->get(PPC::BCC))
13110 TestMBB->addSuccessor(BlockMBB);
13111 TestMBB->addSuccessor(TailMBB);
13121 BuildMI(BlockMBB, DL, TII->get(PPC::B)).addMBB(TestMBB);
13122 BlockMBB->addSuccessor(TestMBB);
13142 MBB->addSuccessor(TestMBB);