Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h45 Optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
165 return HotCountThreshold ? HotCountThreshold.getValue() : 0; in getHotCountThreshold()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp162 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold() local
164 HotCountThreshold = ProfileSummaryHotCount; in getHotCountThreshold()
165 return HotCountThreshold; in getHotCountThreshold()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp41 HotCountThreshold(HotThreshold), ColdCountThreshold(ColdThreshold) {} in CSPreInliner()
111 if (Candidate.CallsiteCount > HotCountThreshold) in shouldInline()
H A DCSPreInliner.h85 uint64_t HotCountThreshold; variable
H A DProfileGenerator.h190 uint64_t HotCountThreshold; variable
H A DProfileGenerator.cpp404 CSPreInliner(ProfileMap, HotCountThreshold, ColdCountThreshold).run(); in postProcessProfiles()
415 HotCountThreshold = ProfileSummaryBuilder::getHotCountThreshold( in computeSummaryAndThreshold()
/netbsd-src/external/apache2/llvm/dist/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()