Lines Matching defs:NMBB
1159 MachineBasicBlock *NMBB = MF->CreateMachineBasicBlock();
1160 NMBB->setCallFrameSize(Succ->getCallFrameSize());
1167 MJTI.ReplaceMBBInJumpTable(JTI, Succ, NMBB);
1171 MF->insert(std::next(MachineFunction::iterator(this)), NMBB);
1173 << " -- " << printMBBReference(*NMBB) << " -- "
1179 LIS->insertMBBInMaps(NMBB);
1181 Indexes->insertMBBInMaps(NMBB);
1220 ReplaceUsesOfBlockWith(Succ, NMBB);
1222 // Since we replaced all uses of Succ with NMBB, that should also be treated
1225 PrevFallthrough = NMBB;
1232 // Insert unconditional "jump Succ" instruction in NMBB if necessary.
1233 NMBB->addSuccessor(Succ);
1234 if (!NMBB->isLayoutSuccessor(Succ)) {
1247 TII->insertBranch(*NMBB, Succ, nullptr, Cond, DL);
1250 // Fix PHI nodes in Succ so they refer to NMBB instead of this.
1251 Succ->replacePhiUsesWith(this, NMBB);
1255 NMBB->addLiveIn(LI);
1274 LV->addNewBlock(NMBB, this, Succ, *LiveInSets);
1276 LV->addNewBlock(NMBB, this, Succ);
1288 std::next(MachineFunction::iterator(NMBB)) == getParent()->end();
1292 SlotIndex EndIndex = Indexes->getMBBEndIdx(NMBB);
1294 // Find the registers used from NMBB in PHIs in Succ.
1300 if (I->getOperand(ni+1).getMBB() == NMBB) {
1352 MDTU->splitCriticalEdge(this, Succ, NMBB);
1360 // Both in the same loop, the NMBB joins loop.
1361 DestLoop->addBasicBlockToLoop(NMBB, *MLI);
1364 TIL->addBasicBlockToLoop(NMBB, *MLI);
1367 DestLoop->addBasicBlockToLoop(NMBB, *MLI);
1376 P->addBasicBlockToLoop(NMBB, *MLI);
1381 return NMBB;