Lines Matching refs:NewBB

254     void updateForInsertedWaterBlock(MachineBasicBlock *NewBB);
972 void ARMConstantIslands::updateForInsertedWaterBlock(MachineBasicBlock *NewBB) { in updateForInsertedWaterBlock() argument
974 NewBB->getParent()->RenumberBlocks(NewBB); in updateForInsertedWaterBlock()
978 BBUtils->insert(NewBB->getNumber(), BasicBlockInfo()); in updateForInsertedWaterBlock()
982 water_iterator IP = llvm::lower_bound(WaterList, NewBB, CompareMBBNumbers); in updateForInsertedWaterBlock()
983 WaterList.insert(IP, NewBB); in updateForInsertedWaterBlock()
1000 MachineBasicBlock *NewBB = in splitBlockBeforeInstr() local
1003 MF->insert(MBBI, NewBB); in splitBlockBeforeInstr()
1006 NewBB->splice(NewBB->end(), OrigBB, MI, OrigBB->end()); in splitBlockBeforeInstr()
1014 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB); in splitBlockBeforeInstr()
1017 .addMBB(NewBB) in splitBlockBeforeInstr()
1022 NewBB->transferSuccessors(OrigBB); in splitBlockBeforeInstr()
1025 OrigBB->addSuccessor(NewBB); in splitBlockBeforeInstr()
1031 NewBB->addLiveIn(L); in splitBlockBeforeInstr()
1036 MF->RenumberBlocks(NewBB); in splitBlockBeforeInstr()
1040 BBUtils->insert(NewBB->getNumber(), BasicBlockInfo()); in splitBlockBeforeInstr()
1049 WaterList.insert(std::next(IP), NewBB); in splitBlockBeforeInstr()
1063 BBUtils->computeBlockSize(NewBB); in splitBlockBeforeInstr()
1068 return NewBB; in splitBlockBeforeInstr()
2450 MachineBasicBlock *NewBB = in reorderThumb2JumpTables() local
2452 if (NewBB) in reorderThumb2JumpTables()
2453 MJTI->ReplaceMBBInJumpTable(JTI, MBB, NewBB); in reorderThumb2JumpTables()
2493 MachineBasicBlock *NewBB = in adjustJTTargetBlockForward() local
2496 MF->insert(MBBI, NewBB); in adjustJTTargetBlockForward()
2500 NewBB->addLiveIn(RegMaskPair); in adjustJTTargetBlockForward()
2506 BuildMI(NewBB, DebugLoc(), TII->get(ARM::t2B)) in adjustJTTargetBlockForward()
2510 BuildMI(NewBB, DebugLoc(), TII->get(ARM::tB)) in adjustJTTargetBlockForward()
2515 MF->RenumberBlocks(NewBB); in adjustJTTargetBlockForward()
2518 NewBB->addSuccessor(BB); in adjustJTTargetBlockForward()
2519 JTBB->replaceSuccessor(BB, NewBB); in adjustJTTargetBlockForward()
2522 return NewBB; in adjustJTTargetBlockForward()