Searched refs:isHotCountNthPercentile (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/llvm/unittests/Analysis/ |
D | ProfileSummaryInfoTest.cpp | 166 EXPECT_TRUE(PSI.isHotCountNthPercentile(990000, 400)); in TEST_F() 167 EXPECT_FALSE(PSI.isHotCountNthPercentile(990000, 100)); in TEST_F() 168 EXPECT_FALSE(PSI.isHotCountNthPercentile(990000, 2)); in TEST_F() 174 EXPECT_TRUE(PSI.isHotCountNthPercentile(999999, 400)); in TEST_F() 175 EXPECT_TRUE(PSI.isHotCountNthPercentile(999999, 100)); in TEST_F() 176 EXPECT_FALSE(PSI.isHotCountNthPercentile(999999, 2)); in TEST_F() 182 EXPECT_FALSE(PSI.isHotCountNthPercentile(10000, 400)); in TEST_F() 183 EXPECT_FALSE(PSI.isHotCountNthPercentile(10000, 100)); in TEST_F() 184 EXPECT_FALSE(PSI.isHotCountNthPercentile(10000, 2)); in TEST_F()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineSizeOpts.cpp | 51 return Count && PSI->isHotCountNthPercentile(PercentileCutoff, *Count); in isHotBlockNthPercentile() 59 return Count && PSI->isHotCountNthPercentile(PercentileCutoff, *Count); in isHotBlockNthPercentile() 101 if (PSI->isHotCountNthPercentile(PercentileCutoff, in isFunctionHotInCallGraphNthPercentile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ProfileSummaryInfo.cpp | 204 if (isHotCountNthPercentile(PercentileCutoff, FunctionCount.getCount())) in isFunctionHotInCallGraphNthPercentile() 214 if (isHotCountNthPercentile(PercentileCutoff, TotalCallCount)) in isFunctionHotInCallGraphNthPercentile() 302 bool ProfileSummaryInfo::isHotCountNthPercentile(int PercentileCutoff, uint64_t C) { in isHotCountNthPercentile() function in ProfileSummaryInfo 334 return Count && isHotCountNthPercentile(PercentileCutoff, *Count); in isHotBlockNthPercentile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineSizeOpts.cpp | 42 return Count && PSI->isHotCountNthPercentile(PercentileCutoff, *Count); in isHotBlockNthPercentile() 68 if (PSI->isHotCountNthPercentile(PercentileCutoff, in isFunctionHotInCallGraphNthPercentile()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | ProfileSummaryInfo.cpp | 215 isHotCountNthPercentile(PercentileCutoff, FunctionCount.getCount())) in isFunctionHotOrColdInCallGraphNthPercentile() 228 if (isHot && isHotCountNthPercentile(PercentileCutoff, TotalCallCount)) in isFunctionHotOrColdInCallGraphNthPercentile() 348 bool ProfileSummaryInfo::isHotCountNthPercentile(int PercentileCutoff, in isHotCountNthPercentile() function in ProfileSummaryInfo 383 return Count && isHotCountNthPercentile(PercentileCutoff, *Count); in isHotOrColdBlockNthPercentile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ProfileSummaryInfo.h | 129 bool isHotCountNthPercentile(int PercentileCutoff, uint64_t C);
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | ProfileSummaryInfo.h | 138 bool isHotCountNthPercentile(int PercentileCutoff, uint64_t C) const;
|