reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Analysis/ProfileSummaryInfo.h
  124   bool isHotCount(uint64_t C);

References

lib/Analysis/ModuleSummaryAnalysis.cpp
  129   if (PSI->isHotCount(ProfileCount))
lib/Analysis/ProfileSummaryInfo.cpp
  135   return FunctionCount && isHotCount(FunctionCount.getCount());
  148     if (isHotCount(FunctionCount.getCount()))
  158     if (isHotCount(TotalCallCount))
  319   return Count && isHotCount(*Count);
  338   return C && isHotCount(*C);
lib/Transforms/IPO/SampleProfile.cpp
  504     return PSI->isHotCount(CallsiteTotalSamples);
lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
  360         (PSI && PSI->hasProfileSummary() && !PSI->isHotCount(TotalCount)))
lib/Transforms/Instrumentation/PGOInstrumentation.cpp
 1052     if (PSI->isHotCount(EntryCount))
unittests/Analysis/ProfileSummaryInfoTest.cpp
  108   EXPECT_FALSE(PSI.isHotCount(1000));
  109   EXPECT_FALSE(PSI.isHotCount(0));
  135   EXPECT_TRUE(PSI.isHotCount(400));
  138   EXPECT_FALSE(PSI.isHotCount(100));