Searched refs:ColdCountThreshold (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ProfileSummaryInfo.cpp | 243 ColdCountThreshold = in computeThresholds() 245 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds() 295 return ColdCountThreshold && C <= ColdCountThreshold.getValue(); in isColdCount() 323 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0; in getOrCompColdCountThreshold()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ProfileSummaryInfo.h | 45 Optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable 169 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0; in getColdCountThreshold()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | ProfileSummaryBuilder.cpp | 169 uint64_t ColdCountThreshold = ColdEntry.MinCount; in getColdCountThreshold() local 171 ColdCountThreshold = ProfileSummaryColdCount; in getColdCountThreshold() 172 return ColdCountThreshold; in getColdCountThreshold()
|
| H A D | SampleProf.cpp | 318 uint64_t ColdCountThreshold, bool TrimColdContext, bool MergeColdContext, in trimAndMergeColdContextProfiles() argument 324 if (ColdCountThreshold == 0) in trimAndMergeColdContextProfiles() 332 if (FunctionProfile.getTotalSamples() >= ColdCountThreshold) in trimAndMergeColdContextProfiles() 355 if (TrimColdContext && I.second.getTotalSamples() < ColdCountThreshold && in trimAndMergeColdContextProfiles()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineFunctionSplitter.cpp | 56 static cl::opt<unsigned> ColdCountThreshold( variable 91 return (*Count < ColdCountThreshold); in isColdBlock()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | PGOInstrumentation.cpp | 1724 uint64_t ColdCountThreshold) { in verifyFuncBFI() argument 1750 bool rawIsCold = CountValue <= ColdCountThreshold; in verifyFuncBFI() 1930 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0; in annotateAllFunctions() local 1933 ColdCountThreshold = PSI->getOrCompColdCountThreshold(); in annotateAllFunctions() 1935 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold); in annotateAllFunctions()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | SampleProf.h | 995 void trimAndMergeColdContextProfiles(uint64_t ColdCountThreshold,
|