Home | History | Annotate | Download | only in Mips

Lines Matching defs:OrigBB

860   MachineBasicBlock *OrigBB = MI.getParent();
862 // Create a new MBB for the code after the OrigBB.
864 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock());
865 MachineFunction::iterator MBBI = ++OrigBB->getIterator();
869 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end());
871 // Add an unconditional branch from OrigBB to NewBB.
875 BuildMI(OrigBB, DebugLoc(), TII->get(Mips::Bimm16)).addMBB(NewBB);
878 // Update the CFG. All succs of OrigBB are now succs of NewBB.
879 NewBB->transferSuccessors(OrigBB);
881 // OrigBB branches to NewBB.
882 OrigBB->addSuccessor(NewBB);
886 // the Water goes after OrigBB, not NewBB.
898 std::lower_bound(WaterList.begin(), WaterList.end(), OrigBB,
901 if (WaterBB == OrigBB)
904 WaterList.insert(IP, OrigBB);
905 NewWaterList.insert(OrigBB);
907 // Figure out how large the OrigBB is. As the first half of the original
912 computeBlockSize(OrigBB);
919 adjustBBOffsetsAfter(OrigBB);