Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DProfileSummaryInfo.cpp243 HotCountThreshold = in computeThresholds()
247 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
293 return HotCountThreshold && C >= *HotCountThreshold; in isHotCount()
321 return HotCountThreshold.value_or(UINT64_MAX); in getOrCompHotCountThreshold()
/openbsd/src/gnu/llvm/llvm/lib/ProfileData/
DProfileSummaryBuilder.cpp169 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold() local
171 HotCountThreshold = ProfileSummaryHotCount; in getHotCountThreshold()
172 return HotCountThreshold; in getHotCountThreshold()
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
DProfileSummaryInfo.h46 std::optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
174 return HotCountThreshold.value_or(0); in getHotCountThreshold()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp1988 uint64_t HotCountThreshold, in verifyFuncBFI() argument
2013 bool rawIsHot = CountValue >= HotCountThreshold; in verifyFuncBFI()
2014 bool BFIIsHot = BFICountValue >= HotCountThreshold; in verifyFuncBFI()
2215 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0; in annotateAllFunctions() local
2217 HotCountThreshold = PSI->getOrCompHotCountThreshold(); in annotateAllFunctions()
2220 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold); in annotateAllFunctions()