Home
last modified time | relevance | path

Searched refs:hot (Results 1 – 5 of 5) sorted by relevance

/art/test/081-hot-exceptions/
Dinfo.txt1 Make a hot exception-throwing path to stress test how the trace builder handles
/art/libartbase/base/
Dmacros.h88 #define HOT_ATTR __attribute__ ((hot))
/art/runtime/jit/
Dprofile_saver.h54 static bool HasSeenMethod(const std::string& profile, bool hot, MethodReference ref)
Dprofile_saver.cc928 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/
Dprofile_compilation_info_test.cc1380 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()