Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp207 HotCountThreshold = HotEntry.MinCount; in computeThresholds()
209 HotCountThreshold = ProfileSummaryHotCount; in computeThresholds()
215 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
228 if (!HotCountThreshold) in isHotCount()
230 return HotCountThreshold && C >= HotCountThreshold.getValue(); in isHotCount()
240 if (!HotCountThreshold) in getOrCompHotCountThreshold()
242 return HotCountThreshold ? HotCountThreshold.getValue() : UINT64_MAX; in getOrCompHotCountThreshold()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h51 Optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
121 return HotCountThreshold ? HotCountThreshold.getValue() : 0; in getHotCountThreshold()