reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/MachineBlockPlacement.cpp
 2074     BlockChain &Chain = *BlockToChain[MBB];
 2077     if (MBB != *std::prev(Chain.end()))
 2087     for (MachineBasicBlock *Succ : MBB->successors()) {
 2090       if (Succ == MBB)
 2095         LLVM_DEBUG(dbgs() << "    exiting: " << getBlockName(MBB) << " -> "
 2100       auto SuccProb = MBPI->getEdgeProbability(MBB, Succ);
 2102         LLVM_DEBUG(dbgs() << "    looping: " << getBlockName(MBB) << " -> "
 2112           BlocksExitingToOuterLoop.insert(MBB);
 2115       BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(MBB) * SuccProb;
 2116       LLVM_DEBUG(dbgs() << "    exiting: " << getBlockName(MBB) << " -> "
 2127           (MBB->isLayoutSuccessor(Succ) &&
 2130         ExitingBB = MBB;