Searched refs:hot (Results 1 – 5 of 5) sorted by relevance
/art/test/081-hot-exceptions/ |
D | info.txt | 1 Make a hot exception-throwing path to stress test how the trace builder handles
|
/art/libartbase/base/ |
D | macros.h | 88 #define HOT_ATTR __attribute__ ((hot))
|
/art/runtime/jit/ |
D | profile_saver.h | 54 static bool HasSeenMethod(const std::string& profile, bool hot, MethodReference ref)
|
D | profile_saver.cc | 928 bool ProfileSaver::HasSeenMethod(const std::string& profile, bool hot, MethodReference ref) { in HasSeenMethod() argument 936 return hot ? hotness.IsHot() : hotness.IsInProfile(); in HasSeenMethod()
|
/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 1380 MethodReference hot(dex.get(), 0); in TEST_F() local 1385 ASSERT_TRUE(info.AddMethod(ProfileMethodInfo(hot), Hotness::kFlagHot)); in TEST_F() 1392 EXPECT_TRUE(info.GetMethodHotness(hot).IsInProfile()); in TEST_F() 1393 EXPECT_EQ(info.GetMethodHotness(hot).GetFlags(), Hotness::kFlagHot); in TEST_F() 1406 MethodReference hot(dex1, 0); in TEST_F() local 1413 info.AddMethod(ProfileMethodInfo(hot, inline_caches), Hotness::kFlagHot); in TEST_F() 1418 GetMethod(info, dex1, hot.index); in TEST_F() 1431 MethodReference hot(dex1, 0); in TEST_F() local 1434 std::vector<ProfileMethodInfo> pmis = {ProfileMethodInfo(hot), ProfileMethodInfo(bad_ref)}; in TEST_F()
|