Lines Matching refs:Prob

2015     BranchProbability Prob,  in findWasmUnwindDestinations()  argument
2022 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findWasmUnwindDestinations()
2029 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); in findWasmUnwindDestinations()
2049 BranchProbability Prob, in findUnwindDestinations() argument
2060 findWasmUnwindDestinations(FuncInfo, EHPadBB, Prob, UnwindDests); in findUnwindDestinations()
2071 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
2076 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); in findUnwindDestinations()
2083 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); in findUnwindDestinations()
2097 Prob *= BPI->getEdgeProbability(EHPadBB, NewEHPadBB); in findUnwindDestinations()
2368 BranchProbability Prob) { in addSuccessorWithProb() argument
2372 if (Prob.isUnknown()) in addSuccessorWithProb()
2373 Prob = getEdgeProbability(Src, Dst); in addSuccessorWithProb()
2374 Src->addSuccessor(Dst, Prob); in addSuccessorWithProb()
3044 addSuccessorWithProb(SwitchBB, MBB, B.Prob); in visitBitTestHeader()
11446 addSuccessorWithProb(SwitchMBB, Small.MBB, Small.Prob + Big.Prob); in lowerWorkItem()
11476 return a.Prob != b.Prob ? in lowerWorkItem()
11477 a.Prob > b.Prob : in lowerWorkItem()
11485 if (I->Prob > W.LastCluster->Prob) in lowerWorkItem()
11498 UnhandledProbs += I->Prob; in lowerWorkItem()
11515 UnhandledProbs -= I->Prob; in lowerWorkItem()
11527 auto JumpProb = I->Prob; in lowerWorkItem()
11606 BTB->Prob += DefaultProb / 2; in lowerWorkItem()
11643 getCurSDLoc(), I->Prob, UnhandledProbs); in lowerWorkItem()
11760 if (CC.Prob < TopCaseProb) in peelDominantCaseCluster()
11762 TopCaseProb = CC.Prob; in peelDominantCaseCluster()
11789 << CC.Prob << "\n"); in peelDominantCaseCluster()
11790 CC.Prob = scaleCaseProbality(CC.Prob, TopCaseProb); in peelDominantCaseCluster()
11791 LLVM_DEBUG(dbgs() << "After scaling: " << CC.Prob << "\n"); in peelDominantCaseCluster()
11805 BranchProbability Prob = in visitSwitch() local
11808 Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob)); in visitSwitch()