Home
last modified time | relevance | path

Searched refs:type_ref (Results 1 – 4 of 4) sorted by relevance

/art/libprofile/profile/
Dprofile_test_helper.h132 [&](const TypeReference& type_ref) { in EqualInlineCaches()
133 if (type_ref.dex_file == dex_file) { in EqualInlineCaches()
134 return type_index == type_ref.TypeIndex(); in EqualInlineCaches()
137 type_ref.dex_file->StringByTypeIdx(type_ref.TypeIndex()); in EqualInlineCaches()
Dprofile_compilation_info_test.cc110 TypeReference type_ref(dex1, dex::TypeIndex(k++)); in MakeMegamorphic() local
111 if (std::find(cache.classes.begin(), cache.classes.end(), type_ref) == in MakeMegamorphic()
113 const_cast<std::vector<TypeReference>*>(&cache.classes)->push_back(type_ref); in MakeMegamorphic()
/art/profman/
Dboot_image_profile.cc176 static bool IncludeClassInProfile(const TypeReference& type_ref, in IncludeClassInProfile() argument
180 uint32_t threshold = MaybeIsClassClean(type_ref) in IncludeClassInProfile()
242 const TypeReference& type_ref = it.first; in GenerateBootImageProfile() local
244 if (IncludeClassInProfile(type_ref, in GenerateBootImageProfile()
Dprofile_assistant_test.cc389 for (const TypeReference& type_ref : expected_clases) { in AssertInlineCaches() local
390 if (type_ref.dex_file == dex_file) { in AssertInlineCaches()
391 CHECK_LT(type_ref.TypeIndex().index_, dex_file->NumTypeIds()); in AssertInlineCaches()
394 if (type_ref.TypeIndex() == type_index) { in AssertInlineCaches()
400 const char* expected_descriptor = type_ref.dex_file->StringByTypeIdx(type_ref.TypeIndex()); in AssertInlineCaches()