/external/llvm-project/llvm/unittests/Analysis/ |
D | ProfileSummaryInfoTest.cpp | 213 EXPECT_TRUE(PSI.isHotBlockNthPercentile(990000, &BB0, &BFI)); in TEST_F() 214 EXPECT_TRUE(PSI.isHotBlockNthPercentile(990000, BB1, &BFI)); in TEST_F() 215 EXPECT_FALSE(PSI.isHotBlockNthPercentile(990000, BB2, &BFI)); in TEST_F() 216 EXPECT_TRUE(PSI.isHotBlockNthPercentile(990000, BB3, &BFI)); in TEST_F() 223 EXPECT_TRUE(PSI.isHotBlockNthPercentile(999900, &BB0, &BFI)); in TEST_F() 224 EXPECT_TRUE(PSI.isHotBlockNthPercentile(999900, BB1, &BFI)); in TEST_F() 225 EXPECT_TRUE(PSI.isHotBlockNthPercentile(999900, BB2, &BFI)); in TEST_F() 226 EXPECT_TRUE(PSI.isHotBlockNthPercentile(999900, BB3, &BFI)); in TEST_F() 233 EXPECT_FALSE(PSI.isHotBlockNthPercentile(10000, &BB0, &BFI)); in TEST_F() 234 EXPECT_FALSE(PSI.isHotBlockNthPercentile(10000, BB1, &BFI)); in TEST_F() [all …]
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | MachineSizeOpts.cpp | 46 static bool isHotBlockNthPercentile(int PercentileCutoff, in isHotBlockNthPercentile() function 54 static bool isHotBlockNthPercentile(int PercentileCutoff, in isHotBlockNthPercentile() function 105 if (isHotBlockNthPercentile(PercentileCutoff, &MBB, PSI, &MBFI)) in isFunctionHotInCallGraphNthPercentile() 154 static bool isHotBlockNthPercentile(int CutOff, in isHotBlockNthPercentile() function 158 return machine_size_opts_detail::isHotBlockNthPercentile( in isHotBlockNthPercentile() 161 static bool isHotBlockNthPercentile(int CutOff, in isHotBlockNthPercentile() function 165 return machine_size_opts_detail::isHotBlockNthPercentile( in isHotBlockNthPercentile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineSizeOpts.cpp | 37 static bool isHotBlockNthPercentile(int PercentileCutoff, in isHotBlockNthPercentile() function 72 if (isHotBlockNthPercentile(PercentileCutoff, &MBB, PSI, &MBFI)) in isFunctionHotInCallGraphNthPercentile() 98 static bool isHotBlockNthPercentile(int CutOff, in isHotBlockNthPercentile() function 102 return machine_size_opts_detail::isHotBlockNthPercentile( in isHotBlockNthPercentile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | SizeOpts.cpp | 68 static bool isHotBlockNthPercentile(int CutOff, in isHotBlockNthPercentile() function 72 return PSI->isHotBlockNthPercentile(CutOff, BB, BFI); in isHotBlockNthPercentile()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | SizeOpts.cpp | 84 static bool isHotBlockNthPercentile(int CutOff, in isHotBlockNthPercentile() function 88 return PSI->isHotBlockNthPercentile(CutOff, BB, BFI); in isHotBlockNthPercentile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | SizeOpts.h | 86 return !AdapterT::isHotBlockNthPercentile( in shouldOptimizeForSizeImpl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ProfileSummaryInfo.cpp | 218 if (isHotBlockNthPercentile(PercentileCutoff, &BB, &BFI)) in isFunctionHotInCallGraphNthPercentile() 330 bool ProfileSummaryInfo::isHotBlockNthPercentile(int PercentileCutoff, in isHotBlockNthPercentile() function in ProfileSummaryInfo
|
/external/llvm-project/llvm/include/llvm/Transforms/Utils/ |
D | SizeOpts.h | 89 return !AdapterT::isHotBlockNthPercentile(PgsoCutoffInstrProf, BBOrBlockFreq, in shouldOptimizeForSizeImpl()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | ProfileSummaryInfo.cpp | 234 if (isHot && isHotBlockNthPercentile(PercentileCutoff, &BB, &BFI)) in isFunctionHotOrColdInCallGraphNthPercentile() 388 bool ProfileSummaryInfo::isHotBlockNthPercentile( in isHotBlockNthPercentile() function in ProfileSummaryInfo
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ProfileSummaryInfo.h | 136 bool isHotBlockNthPercentile(int PercentileCutoff,
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | ProfileSummaryInfo.h | 148 bool isHotBlockNthPercentile(int PercentileCutoff, const BasicBlock *BB,
|