Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp39 uint64_t HotThreshold, uint64_t ColdThreshold) in CSPreInliner() argument
41 HotCountThreshold(HotThreshold), ColdCountThreshold(ColdThreshold) {} in CSPreInliner()
H A DCSPreInliner.h70 CSPreInliner(StringMap<FunctionSamples> &Profiles, uint64_t HotThreshold,
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1128 uint64_t HotThreshold) { in getFuncSampleStats() argument
1133 if (Sample >= HotThreshold) in getFuncSampleStats()
1139 getFuncSampleStats(F.second, FuncStats, HotThreshold); in getFuncSampleStats()
1146 uint64_t HotThreshold) { in isFunctionHot() argument
1149 return (FuncStats.MaxSample >= HotThreshold); in isFunctionHot()
1256 uint64_t HotThreshold) const;
1360 StringMap<FuncSampleStats> &HotFunc, uint64_t HotThreshold) const { in getHotFunctions()
1362 if (isFunctionHot(F.second, HotThreshold)) in getHotFunctions()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1876 uint64_t HotThreshold = PSI->getHotCountThreshold(); in annotateAllFunctions() local
1877 if (HotThreshold) in annotateAllFunctions()
1879 ProfileCount(HotThreshold * MultiplyFactor, Function::PCT_Real)); in annotateAllFunctions()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp3275 uint64_t HotThreshold = PSI->getOrCompHotCountThreshold(); in initDupThreshold() local
3276 if (HotThreshold != UINT64_MAX) { in initDupThreshold()
3278 DupThreshold = HotThreshold * TailDupProfilePercentThreshold / 100; in initDupThreshold()