Lines Matching refs:SuccProb
426 BranchProbability SuccProb; in selectBestSuccessor() local
430 SuccProb = BranchProbability::getOne(); in selectBestSuccessor()
432 SuccProb = BranchProbability(SuccProbN, SuccProbD); in selectBestSuccessor()
437 if (OutlineOptionalBranches && SuccProb > HotProb.getCompl() && in selectBestSuccessor()
462 if (SuccProb < HotProb) { in selectBestSuccessor()
463 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> " << SuccProb in selectBestSuccessor()
486 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> " << SuccProb in selectBestSuccessor()
492 DEBUG(dbgs() << " " << getBlockName(Succ) << " -> " << SuccProb in selectBestSuccessor()
496 if (BestSucc && BestProb >= SuccProb) in selectBestSuccessor()
499 BestProb = SuccProb; in selectBestSuccessor()
741 auto SuccProb = MBPI->getEdgeProbability(MBB, Succ); in findBestLoopExit() local
744 << getBlockName(Succ) << " (" << SuccProb << ")\n"); in findBestLoopExit()
756 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(MBB) * SuccProb; in findBestLoopExit()
903 auto SuccProb = MBPI->getEdgeProbability(BB, Succ); in rotateLoopWithProfile() local
904 LargestExitEdgeProb = std::max(LargestExitEdgeProb, SuccProb); in rotateLoopWithProfile()