Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp241 HotCountThreshold = in computeThresholds()
245 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
291 return HotCountThreshold && C >= HotCountThreshold.getValue(); in isHotCount()
319 return HotCountThreshold ? HotCountThreshold.getValue() : UINT64_MAX; in getOrCompHotCountThreshold()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h45 Optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
165 return HotCountThreshold ? HotCountThreshold.getValue() : 0; in getHotCountThreshold()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp160 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold() local
162 HotCountThreshold = ProfileSummaryHotCount; in getHotCountThreshold()
163 return HotCountThreshold; in getHotCountThreshold()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1723 uint64_t HotCountThreshold, in verifyFuncBFI() argument
1748 bool rawIsHot = CountValue >= HotCountThreshold; in verifyFuncBFI()
1749 bool BFIIsHot = BFICountValue >= HotCountThreshold; in verifyFuncBFI()
1930 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0; in annotateAllFunctions() local
1932 HotCountThreshold = PSI->getOrCompHotCountThreshold(); in annotateAllFunctions()
1935 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold); in annotateAllFunctions()