Lines Matching defs:TestMBB
12711 // +--->+ TestMBB +---+
12722 // In TestMBB, test if sp is equal to final stack pointer, if so, jump to
12723 // TailMBB. In BlockMBB, update the sp atomically and jump back to TestMBB.
12725 MachineBasicBlock *TestMBB = MF->CreateMachineBasicBlock(ProbedBB);
12730 MF->insert(MBBIter, TestMBB);
12809 BuildMI(TestMBB, DL, TII->get(isPPC64 ? PPC::CMPD : PPC::CMPW), CmpResult)
12812 BuildMI(TestMBB, DL, TII->get(PPC::BCC))
12816 TestMBB->addSuccessor(BlockMBB);
12817 TestMBB->addSuccessor(TailMBB);
12827 BuildMI(BlockMBB, DL, TII->get(PPC::B)).addMBB(TestMBB);
12828 BlockMBB->addSuccessor(TestMBB);
12848 MBB->addSuccessor(TestMBB);