HomeSort by: relevance | last modified time | path
    Searched refs:HotThreshold (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
CSPreInliner.h 70 CSPreInliner(StringMap<FunctionSamples> &Profiles, uint64_t HotThreshold,
CSPreInliner.cpp 39 uint64_t HotThreshold, uint64_t ColdThreshold)
41 HotCountThreshold(HotThreshold), ColdCountThreshold(ColdThreshold) {}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 1128 uint64_t HotThreshold) {
1133 if (Sample >= HotThreshold)
1139 getFuncSampleStats(F.second, FuncStats, HotThreshold);
1146 uint64_t HotThreshold) {
1148 // HotThreshold to get an approximate determination on hot functions.
1149 return (FuncStats.MaxSample >= HotThreshold);
1256 uint64_t HotThreshold) const;
1360 StringMap<FuncSampleStats> &HotFunc, uint64_t HotThreshold) const {
1362 if (isFunctionHot(F.second, HotThreshold))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 3275 uint64_t HotThreshold = PSI->getOrCompHotCountThreshold();
3276 if (HotThreshold != UINT64_MAX) {
3278 DupThreshold = HotThreshold * TailDupProfilePercentThreshold / 100;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 1876 uint64_t HotThreshold = PSI->getHotCountThreshold();
1877 if (HotThreshold)
1879 ProfileCount(HotThreshold * MultiplyFactor, Function::PCT_Real));

Completed in 26 milliseconds