Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDProfileSummaryInfo.cpp252 ColdCountThreshold = ColdEntry.MinCount; in computeThresholds()
254 ColdCountThreshold = ProfileSummaryColdCount; in computeThresholds()
255 assert(ColdCountThreshold <= HotCountThreshold && in computeThresholds()
297 if (!ColdCountThreshold) in isColdCount()
299 return ColdCountThreshold && C <= ColdCountThreshold.getValue(); in isColdCount()
314 if (!ColdCountThreshold) in getOrCompColdCountThreshold()
316 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0; in getOrCompColdCountThreshold()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDProfileSummaryInfo.h50 Optional<uint64_t> HotCountThreshold, ColdCountThreshold; variable
154 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0; in getColdCountThreshold()