HomeSort by relevance Sort by last modified time
    Searched refs:isHotCount (Results 1 - 9 of 9) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ProfileSummaryInfo.cpp 114 // convenience method that calls isHotCount.
115 return FunctionCount && isHotCount(FunctionCount.getCount());
128 if (isHotCount(FunctionCount.getCount()))
138 if (isHotCount(TotalCallCount))
189 // convenience method that calls isHotCount.
214 bool ProfileSummaryInfo::isHotCount(uint64_t C) {
240 return Count && isHotCount(*Count);
252 return C && isHotCount(*C);
ModuleSummaryAnalysis.cpp 125 if (PSI->isHotCount(ProfileCount))
  /external/llvm/include/llvm/Analysis/
ProfileSummaryInfo.h 34 /// (program-level) profile information. The main APIs are isHotCount and
47 // Count thresholds to answer isHotCount and isColdCount queries.
59 bool isHotCount(uint64_t C);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
ProfileSummaryInfoTest.cpp 109 EXPECT_FALSE(PSI.isHotCount(1000));
110 EXPECT_FALSE(PSI.isHotCount(0));
136 EXPECT_TRUE(PSI.isHotCount(400));
139 EXPECT_FALSE(PSI.isHotCount(100));
  /external/llvm/lib/Analysis/
ProfileSummaryInfo.cpp 76 // convenience method that calls isHotCount.
97 // convenience method that calls isHotCount.
116 bool ProfileSummaryInfo::isHotCount(uint64_t C) {
149 // isHotCount and isColdCount calls.
InlineCost.cpp 639 PSI->isHotCount(TotalWeight))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ProfileSummaryInfo.h 37 /// (program-level) profile information. The main APIs are isHotCount and
50 // Count thresholds to answer isHotCount and isColdCount queries.
102 bool isHotCount(uint64_t C);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
IndirectCallPromotion.cpp 360 (PSI && PSI->hasProfileSummary() && !PSI->isHotCount(TotalCount)))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
SampleProfile.cpp 366 return PSI->isHotCount(CallsiteTotalSamples);
    [all...]

Completed in 928 milliseconds