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.cpp120 HotCountThreshold = in computeThresholds()
124 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
169 return HotCountThreshold && C >= *HotCountThreshold; in isHotCount()
197 return HotCountThreshold.value_or(UINT64_MAX); in getOrCompHotCountThreshold()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp178 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold() local
180 HotCountThreshold = ProfileSummaryHotCount; in getHotCountThreshold()
181 return HotCountThreshold; in getHotCountThreshold()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h48 std::optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
262 return HotCountThreshold.value_or(0); in getHotCountThreshold()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp2081 uint64_t HotCountThreshold, in verifyFuncBFI() argument
2107 bool rawIsHot = CountValue >= HotCountThreshold; in verifyFuncBFI()
2108 bool BFIIsHot = BFICountValue >= HotCountThreshold; in verifyFuncBFI()
2323 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0; in annotateAllFunctions() local
2325 HotCountThreshold = PSI->getOrCompHotCountThreshold(); in annotateAllFunctions()
2328 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold); in annotateAllFunctions()