Lines Matching defs:NewMBB
261 MachineBasicBlock *&NewMBB);
980 // Next, update WaterList. Specifically, we need to add NewMBB as having
1061 // Figure out how large the NewMBB is. As the second half of the original
1365 /// unconditional branch around it. In either case NewMBB is set to a
1370 MachineBasicBlock *&NewMBB) {
1392 NewMBB = &*++UserMBB->getIterator();
1400 BuildMI(UserMBB, DebugLoc(), TII->get(UncondBr)).addMBB(NewMBB);
1403 .addMBB(NewMBB)
1543 NewMBB = splitBlockBeforeInstr(&*MI);
1572 MachineBasicBlock *NewMBB;
1584 // The new CPE goes before the following block (NewMBB).
1585 NewMBB = &*++WaterBB->getIterator();
1589 createNewWater(CPUserIndex, UserOffset, NewMBB);
1596 MachineBasicBlock *WaterBB = &*--NewMBB->getIterator();
1605 // bytes. Be careful not to decrease the existing alignment, e.g. NewMBB may
1608 if (NewMBB->getAlignment() < Alignment)
1609 NewMBB->setAlignment(Alignment);
1618 // Okay, we know we can put an island before NewMBB now, do it!
1619 MF->insert(NewMBB->getIterator(), NewIsland);