Home
last modified time | relevance | path

Searched refs:GetInlineCacheMap (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/art/libprofile/profile/
H A Dprofile_test_helper.h100 CHECK(actual_hotness.GetInlineCacheMap() != nullptr); in EqualInlineCaches()
101 const ProfileCompilationInfo::InlineCacheMap& actual = *actual_hotness.GetInlineCacheMap(); in EqualInlineCaches()
H A Dprofile_compilation_info_test.cc680 const ProfileCompilationInfo::InlineCacheMap* inline_cache_map = hotness.GetInlineCacheMap(); in TEST_F()
1515 ASSERT_EQ(hot_hotness.GetInlineCacheMap()->size(), 1u); in TEST_F()
1516 ASSERT_TRUE(hot_hotness.GetInlineCacheMap()->Get(0).is_missing_types); in TEST_F()
1770 EXPECT_EQ(loaded_ic_12.GetInlineCacheMap()->size(), expected.size()); in TEST_F()
H A Dprofile_compilation_info.cc3071 DCHECK(!hotness.IsHot() || hotness.GetInlineCacheMap() != nullptr); in ExtractInlineCacheInfo()
3072 if (!hotness.IsHot() || hotness.GetInlineCacheMap()->empty()) { in ExtractInlineCacheInfo()
3076 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in ExtractInlineCacheInfo()
H A Dprofile_compilation_info.h243 const InlineCacheMap* GetInlineCacheMap() const { in GetInlineCacheMap() function
/aosp_15_r20/art/profman/
H A Dprofile_assistant_test.cc351 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in AssertInlineCaches()
369 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in AssertInlineCaches()
1341 ASSERT_TRUE(hotness_no_inline_cache.GetInlineCacheMap()->empty()); in TEST_F()
1481 ASSERT_TRUE(hotness_no_inline_cache.GetInlineCacheMap()->empty()); in TEST_F()
1558 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness_super.GetInlineCacheMap(); in TEST_F()
1576 ASSERT_EQ(hotness_sub.GetInlineCacheMap()->size(), 0u); in TEST_F()
/aosp_15_r20/art/test/common/
H A Druntime_state.cc567 if (hotness.GetInlineCacheMap() == nullptr) { in Java_Main_hasInlineCacheInProfile()
573 for (const auto& [dex_pc, dex_pc_data] : *hotness.GetInlineCacheMap()) { in Java_Main_hasInlineCacheInProfile()
/aosp_15_r20/art/compiler/optimizing/
H A Dinliner.cc757 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in GetInlineCacheAOT()