Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info.h122 dex_profile_index(dex_profile_idx), type_index(type_idx) {} in ClassReference()
125 return dex_profile_index == other.dex_profile_index && type_index == other.type_index;
128 return dex_profile_index == other.dex_profile_index
130 : dex_profile_index < other.dex_profile_index;
133 uint8_t dex_profile_index; // the index of the owning dex in the profile info member
Dprofile_compilation_info.cc578 uint8_t dex_profile_index = dex_it.first; in AddInlineCacheToBuffer() local
581 AddUintToBuffer(buffer, dex_profile_index); in AddInlineCacheToBuffer()
618 auto dex_it = dex_to_classes_map->FindOrAdd(classes_it.dex_profile_index); in GroupClassesByDex()
753 const DexReference& dex_ref = pmi.dex_references[class_ref.dex_profile_index]; in AddMethod()
843 uint8_t dex_profile_index; in ReadInlineCache() local
845 READ_UINT(uint8_t, buffer, dex_profile_index, error); in ReadInlineCache()
847 if (dex_profile_index >= number_of_dex_files) { in ReadInlineCache()
849 *error += std::to_string(dex_profile_index) + " " + std::to_string(number_of_dex_files); in ReadInlineCache()
855 auto it = dex_profile_index_remap.find(dex_profile_index); in ReadInlineCache()
1244 uint8_t dex_profile_index = dex_it.first; in VerifyProfileData() local
[all …]
/art/runtime/jit/
Dprofiling_info_test.cc202 uint8_t dex_profile_index = dex_map.FindOrAdd(const_cast<DexFile*>(class_ref.dex_file), in ConvertProfileMethodInfo() local
204 dex_pc_data.AddClass(dex_profile_index, class_ref.TypeIndex()); in ConvertProfileMethodInfo()
205 if (dex_profile_index >= offline_pmi.dex_references.size()) { in ConvertProfileMethodInfo()
/art/profman/
Dprofile_assistant_test.cc367 pmi->dex_references[class_ref.dex_profile_index]; in AssertInlineCaches()
/art/compiler/optimizing/
Dinliner.cc762 dex_profile_index_to_dex_cache[class_ref.dex_profile_index]; in ExtractClassesFromOfflineProfile()