reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
124 bool isHotCount(uint64_t C);
129 if (PSI->isHotCount(ProfileCount))
lib/Analysis/ProfileSummaryInfo.cpp135 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.cpp108 EXPECT_FALSE(PSI.isHotCount(1000)); 109 EXPECT_FALSE(PSI.isHotCount(0)); 135 EXPECT_TRUE(PSI.isHotCount(400)); 138 EXPECT_FALSE(PSI.isHotCount(100));