Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp212 ColdCountThreshold = ColdEntry.MinCount; in computeThresholds()
214 ColdCountThreshold = ProfileSummaryColdCount; in computeThresholds()
215 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
234 if (!ColdCountThreshold) in isColdCount()
236 return ColdCountThreshold && C <= ColdCountThreshold.getValue(); in isColdCount()
246 if (!ColdCountThreshold) in getOrCompColdCountThreshold()
248 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0; in getOrCompColdCountThreshold()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h51 Optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
125 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0; in getColdCountThreshold()