Home
last modified time | relevance | path

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

/art/runtime/jit/
Dprofile_compilation_info.h121 dex_profile_index(dex_profile_idx), type_index(type_idx) {} in ClassReference()
124 return dex_profile_index == other.dex_profile_index && type_index == other.type_index;
127 return dex_profile_index == other.dex_profile_index
129 : dex_profile_index < other.dex_profile_index;
132 uint8_t dex_profile_index; // the index of the owning dex in the profile info member
Dprofile_compilation_info.cc377 uint8_t dex_profile_index = dex_it.first; in AddInlineCacheToBuffer() local
380 AddUintToBuffer(buffer, dex_profile_index); in AddInlineCacheToBuffer()
417 auto dex_it = dex_to_classes_map->FindOrAdd(classes_it.dex_profile_index); in GroupClassesByDex()
524 const DexReference& dex_ref = pmi.dex_references[class_ref.dex_profile_index]; in AddMethod()
610 uint8_t dex_profile_index; in ReadInlineCache() local
612 READ_UINT(uint8_t, buffer, dex_profile_index, error); in ReadInlineCache()
614 if (dex_profile_index >= number_of_dex_files) { in ReadInlineCache()
616 *error += std::to_string(dex_profile_index) + " " + std::to_string(number_of_dex_files); in ReadInlineCache()
622 dex_pc_data->AddClass(dex_profile_index, dex::TypeIndex(type_index)); in ReadInlineCache()
963 class_it.dex_profile_index), class_it.type_index); in MergeWith()
[all …]
Dprofile_compilation_info_test.cc185 uint8_t dex_profile_index = dex_map.FindOrAdd(const_cast<DexFile*>(class_ref.dex_file), in ConvertProfileMethodInfo() local
187 dex_pc_data.AddClass(dex_profile_index, class_ref.type_index); in ConvertProfileMethodInfo()
188 if (dex_profile_index >= offline_pmi.dex_references.size()) { in ConvertProfileMethodInfo()
/art/profman/
Dprofile_assistant_test.cc279 pmi->dex_references[class_ref.dex_profile_index]; in AssertInlineCaches()
/art/compiler/optimizing/
Dinliner.cc665 dex_profile_index_to_dex_cache[class_ref.dex_profile_index]; in ExtractClassesFromOfflineProfile()