Home
last modified time | relevance | path

Searched refs:ColdCountThreshold (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp122 ColdCountThreshold = in computeThresholds()
124 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
173 return ColdCountThreshold && C <= *ColdCountThreshold; in isColdCount()
201 return ColdCountThreshold.value_or(0); in getOrCompColdCountThreshold()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp188 uint64_t ColdCountThreshold = ColdEntry.MinCount; in getColdCountThreshold() local
190 ColdCountThreshold = ProfileSummaryColdCount; in getColdCountThreshold()
191 return ColdCountThreshold; in getColdCountThreshold()
H A DSampleProf.cpp376 uint64_t ColdCountThreshold, bool TrimColdContext, bool MergeColdContext, in trimAndMergeColdContextProfiles() argument
382 if (ColdCountThreshold == 0) in trimAndMergeColdContextProfiles()
397 if (FunctionProfile.getTotalSamples() < ColdCountThreshold && in trimAndMergeColdContextProfiles()
420 if (TrimColdContext && I.second.getTotalSamples() < ColdCountThreshold && in trimAndMergeColdContextProfiles()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunctionSplitter.cpp59 static cl::opt<unsigned> ColdCountThreshold( variable
128 return (*Count < ColdCountThreshold); in isColdBlock()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h48 std::optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
266 return ColdCountThreshold.value_or(0); in getColdCountThreshold()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp2082 uint64_t ColdCountThreshold) { in verifyFuncBFI() argument
2109 bool rawIsCold = CountValue <= ColdCountThreshold; in verifyFuncBFI()
2323 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0; in annotateAllFunctions() local
2326 ColdCountThreshold = PSI->getOrCompColdCountThreshold(); in annotateAllFunctions()
2328 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold); in annotateAllFunctions()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h1398 LLVM_ABI void trimAndMergeColdContextProfiles(uint64_t ColdCountThreshold,