Home
last modified time | relevance | path

Searched refs:is_missing_types (Results 1 – 8 of 8) sorted by relevance

/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.h55 is_missing_types(missing_types),
60 const bool is_missing_types; member
139 : is_missing_types(false), in DexPcData()
144 if (is_missing_types) return; in SetIsMegamorphic()
150 is_missing_types = true; in SetIsMissingTypes()
155 is_missing_types == other.is_missing_types &&
162 bool is_missing_types; member
H A Dprofile_test_helper.h113 if (dex_pc_data.is_missing_types != expected_it->is_missing_types) { in EqualInlineCaches()
115 } else if (dex_pc_data.is_missing_types) { in EqualInlineCaches()
H A Dprofile_compilation_info.cc575 if (is_megamorphic || is_missing_types) { in AddClass()
1250 if (cache.is_missing_types) { in AddMethod()
1260 if (dex_pc_data->is_missing_types || dex_pc_data->is_megamorphic) { in AddMethod()
1335 if (dex_pc_data.is_missing_types || dex_pc_data.is_megamorphic) { in VerifyProfileData()
1911 if (other_ic_it.second.is_missing_types) { in MergeWith()
2031 if (inline_cache_it.second.is_missing_types) { in DumpInfo()
2656 if (dex_pc_data.is_missing_types) { in WriteMethods()
H A Dprofile_compilation_info_test.cc121 *(const_cast<bool*>(&(cache.is_missing_types))) = true; in SetIsMissingTypes()
673 ASSERT_FALSE(dex_pc_data.is_missing_types); in TEST_F()
1442 ASSERT_TRUE(hot_hotness.GetInlineCacheMap()->Get(0).is_missing_types); in TEST_F()
/aosp12/art/profman/
H A Dprofile_assistant_test.cc344 bool is_missing_types) in AssertInlineCaches() argument
356 is_missing_types); in AssertInlineCaches()
362 bool is_missing_types) in AssertInlineCaches() argument
374 is_missing_types); in AssertInlineCaches()
382 bool is_missing_types) in AssertInlineCaches() argument
385 ASSERT_EQ(dex_pc_data.is_missing_types, is_missing_types); in AssertInlineCaches()
H A Dprofman.cc818 if (ic_data.classes.empty() && !ic_data.is_megamorphic && !ic_data.is_missing_types) { in GetInlineCacheLine()
828 if (ic_data.is_missing_types) { in GetInlineCacheLine()
/aosp12/art/runtime/jit/
H A Djit_code_cache.cc1517 bool is_missing_types = false; in GetProfiledMethods() local
1529 is_missing_types = true; in GetProfiledMethods()
1549 is_missing_types = true; in GetProfiledMethods()
1558 is_missing_types = true; in GetProfiledMethods()
1563 cache.dex_pc_, is_missing_types, profile_classes); in GetProfiledMethods()
/aosp12/art/compiler/optimizing/
H A Dinliner.cc661 if (dex_pc_data.is_missing_types) { in GetInlineCacheAOT()