Lines Matching refs:OrigBB
876 MachineBasicBlock *OrigBB = MI->getParent(); in splitBlockBeforeInstr() local
880 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock()); in splitBlockBeforeInstr()
881 MachineFunction::iterator MBBI = OrigBB; ++MBBI; in splitBlockBeforeInstr()
885 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end()); in splitBlockBeforeInstr()
893 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB); in splitBlockBeforeInstr()
895 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB) in splitBlockBeforeInstr()
900 NewBB->transferSuccessors(OrigBB); in splitBlockBeforeInstr()
903 OrigBB->addSuccessor(NewBB); in splitBlockBeforeInstr()
919 std::lower_bound(WaterList.begin(), WaterList.end(), OrigBB, in splitBlockBeforeInstr()
922 if (WaterBB == OrigBB) in splitBlockBeforeInstr()
925 WaterList.insert(IP, OrigBB); in splitBlockBeforeInstr()
926 NewWaterList.insert(OrigBB); in splitBlockBeforeInstr()
933 computeBlockSize(OrigBB); in splitBlockBeforeInstr()
940 adjustBBOffsetsAfter(OrigBB); in splitBlockBeforeInstr()