Home
last modified time | relevance | path

Searched refs:HotThreshold (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1228 uint64_t HotThreshold) { in getFuncSampleStats() argument
1233 if (Sample >= HotThreshold) in getFuncSampleStats()
1239 getFuncSampleStats(F.second, FuncStats, HotThreshold); in getFuncSampleStats()
1246 uint64_t HotThreshold) { in isFunctionHot() argument
1249 return (FuncStats.MaxSample >= HotThreshold); in isFunctionHot()
1359 uint64_t HotThreshold) const;
1463 uint64_t HotThreshold) const { in getHotFunctions()
1465 if (isFunctionHot(F.second, HotThreshold)) in getHotFunctions()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1828 uint64_t HotThreshold = PSI->getHotCountThreshold(); in annotateAllFunctions() local
1829 if (HotThreshold) in annotateAllFunctions()
1831 ProfileCount(HotThreshold * MultiplyFactor, Function::PCT_Real)); in annotateAllFunctions()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp3310 uint64_t HotThreshold = PSI->getOrCompHotCountThreshold(); in initDupThreshold() local
3311 if (HotThreshold != UINT64_MAX) { in initDupThreshold()
3313 DupThreshold = HotThreshold * TailDupProfilePercentThreshold / 100; in initDupThreshold()
/llvm-project-15.0.7/bolt/lib/Passes/
H A DBinaryPasses.cpp1549 const uint64_t HotThreshold = in runOnFunctions() local
1553 if (!HotSeen && BB->getKnownExecutionCount() > HotThreshold) { in runOnFunctions()