Lines Matching refs:Prob
2054 BranchProbability Prob, in findWasmUnwindDestinations() argument
2061 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findWasmUnwindDestinations()
2068 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); in findWasmUnwindDestinations()
2088 BranchProbability Prob, in findUnwindDestinations() argument
2099 findWasmUnwindDestinations(FuncInfo, EHPadBB, Prob, UnwindDests); in findUnwindDestinations()
2110 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
2115 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
2122 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); in findUnwindDestinations()
2136 Prob *= BPI->getEdgeProbability(EHPadBB, NewEHPadBB); in findUnwindDestinations()
2409 BranchProbability Prob) { in addSuccessorWithProb() argument
2413 if (Prob.isUnknown()) in addSuccessorWithProb()
2414 Prob = getEdgeProbability(Src, Dst); in addSuccessorWithProb()
2415 Src->addSuccessor(Dst, Prob); in addSuccessorWithProb()
3237 addSuccessorWithProb(SwitchBB, MBB, B.Prob); in visitBitTestHeader()
11966 addSuccessorWithProb(SwitchMBB, Small.MBB, Small.Prob + Big.Prob); in lowerWorkItem()
11996 return a.Prob != b.Prob ? in lowerWorkItem()
11997 a.Prob > b.Prob : in lowerWorkItem()
12005 if (I->Prob > W.LastCluster->Prob) in lowerWorkItem()
12018 UnhandledProbs += I->Prob; in lowerWorkItem()
12035 UnhandledProbs -= I->Prob; in lowerWorkItem()
12047 auto JumpProb = I->Prob; in lowerWorkItem()
12116 BTB->Prob += DefaultProb / 2; in lowerWorkItem()
12153 getCurSDLoc(), I->Prob, UnhandledProbs); in lowerWorkItem()
12270 if (CC.Prob < TopCaseProb) in peelDominantCaseCluster()
12272 TopCaseProb = CC.Prob; in peelDominantCaseCluster()
12299 << CC.Prob << "\n"); in peelDominantCaseCluster()
12300 CC.Prob = scaleCaseProbality(CC.Prob, TopCaseProb); in peelDominantCaseCluster()
12301 LLVM_DEBUG(dbgs() << "After scaling: " << CC.Prob << "\n"); in peelDominantCaseCluster()
12315 BranchProbability Prob = in visitSwitch() local
12318 Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob)); in visitSwitch()