Lines Matching defs:MBB1
129 /// and MBB1 to CandidateBB.
131 MachineBasicBlock *MBB, MachineBasicBlock *MBB1);
837 auto *MBB1 = It->second;
839 !DT->properlyDominates(MBB, MBB1) &&
840 "MBB cannot properly dominate MBB1 while DFS through dominators tree!");
841 auto CMBB = DT->findNearestCommonDominator(MBB, MBB1);
845 if (!isProfitableToHoistInto(CMBB, MBB, MBB1))
850 if (CMBB != MBB1) {
851 auto BB = MBB->getBasicBlock(), BB1 = MBB1->getBasicBlock();
925 MachineBasicBlock *MBB1) {
929 assert(DT->dominates(CandidateBB, MBB1) &&
930 "CandidateBB should dominate MBB1");
932 MBFI->getBlockFreq(MBB) + MBFI->getBlockFreq(MBB1);