Searched refs:HotCountThreshold (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | ProfileSummaryInfo.cpp | 241 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 D | ProfileSummaryInfo.h | 45 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 D | ProfileSummaryBuilder.cpp | 162 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 D | CSPreInliner.cpp | 41 HotCountThreshold(HotThreshold), ColdCountThreshold(ColdThreshold) {} in CSPreInliner() 111 if (Candidate.CallsiteCount > HotCountThreshold) in shouldInline()
|
H A D | CSPreInliner.h | 85 uint64_t HotCountThreshold; variable
|
H A D | ProfileGenerator.h | 190 uint64_t HotCountThreshold; variable
|
H A D | ProfileGenerator.cpp | 404 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 D | PGOInstrumentation.cpp | 1723 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()
|