Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp243 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 DProfileSummaryInfo.h45 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 DProfileSummaryBuilder.cpp169 uint64_t ColdCountThreshold = ColdEntry.MinCount; in getColdCountThreshold() local
171 ColdCountThreshold = ProfileSummaryColdCount; in getColdCountThreshold()
172 return ColdCountThreshold; in getColdCountThreshold()
H A DSampleProf.cpp318 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 DMachineFunctionSplitter.cpp56 static cl::opt<unsigned> ColdCountThreshold( variable
91 return (*Count < ColdCountThreshold); in isColdBlock()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1724 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 DSampleProf.h995 void trimAndMergeColdContextProfiles(uint64_t ColdCountThreshold,