Home
last modified time | relevance | path

Searched refs:HotCountThreshold (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp115 HotCountThreshold = in isFunctionEntryCold()
119 assert(ColdCountThreshold <= HotCountThreshold &&
165 return HotCountThreshold && C >= *HotCountThreshold;
193 return HotCountThreshold.value_or(UINT64_MAX); in isHotCountNthPercentile()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp169 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold() local
171 HotCountThreshold = ProfileSummaryHotCount; in getHotCountThreshold()
172 return HotCountThreshold; in getHotCountThreshold()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h48 std::optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
250 /// Returns HotCountThreshold if set. Recompute HotCountThreshold
253 /// Returns ColdCountThreshold if set. Recompute HotCountThreshold
256 /// Returns HotCountThreshold if set.
258 return HotCountThreshold.value_or(0); in getHotCountThreshold()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1979 uint64_t HotCountThreshold, in verifyFuncBFI() argument
2003 bool rawIsHot = CountValue >= HotCountThreshold; in verifyFuncBFI()
2004 bool BFIIsHot = BFICountValue >= HotCountThreshold; in verifyFuncBFI()
2212 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0; in annotateAllFunctions() local
2214 HotCountThreshold = PSI->getOrCompHotCountThreshold(); in annotateAllFunctions()
2217 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold); in annotateAllFunctions()