Home
last modified time | relevance | path

Searched refs:dex_method_index (Results 1 – 17 of 17) sorted by relevance

/art/libdexfile/dex/
Dcode_item_accessors.h150 uint32_t dex_method_index) { in CodeItemDebugInfoAccessor() argument
151 Init(dex_file, code_item, dex_method_index); in CodeItemDebugInfoAccessor()
156 uint32_t dex_method_index);
181 ALWAYS_INLINE void Init(const DexFileCodeItemType& code_item, uint32_t dex_method_index);
Dcode_item_accessors-inl.h173 uint32_t dex_method_index) {
175 dex_method_index);
182 uint32_t dex_method_index ATTRIBUTE_UNUSED) {
189 uint32_t dex_method_index) { in Init() argument
195 Init(down_cast<const CompactDexFile::CodeItem&>(*code_item), dex_method_index); in Init()
198 Init(down_cast<const StandardDexFile::CodeItem&>(*code_item), dex_method_index); in Init()
Dcompact_dex_file.h294 uint32_t GetDebugInfoOffset(uint32_t dex_method_index) const { in GetDebugInfoOffset() argument
295 return debug_info_offsets_.GetOffset(dex_method_index); in GetDebugInfoOffset()
/art/compiler/debug/
Delf_symtab_writer.h64 return strcmp(mi->dex_file->GetMethodName(mi->dex_method_index), in GetDedupedName()
65 first->dex_file->GetMethodName(first->dex_method_index)) == 0; in GetDedupedName()
80 *out += first->dex_file->GetMethodName(first->dex_method_index); in GetDedupedName()
143 std::string name = info.dex_file->PrettyMethod(info.dex_method_index, !mini_debug_info); in WriteDebugSymbols()
Dmethod_debug_info.h33 uint32_t dex_method_index; member
Delf_debug_info_writer.h48 CodeItemDebugInfoAccessor accessor(*mi->dex_file, mi->code_item, mi->dex_method_index); in GetParamNames()
150 CodeItemDebugInfoAccessor accessor(*dex, mi->code_item, mi->dex_method_index); in Write()
151 const dex::MethodId& dex_method = dex->GetMethodId(mi->dex_method_index); in Write()
246 mi->dex_method_index, in Write()
Delf_debug_line_writer.h152 CodeItemDebugInfoAccessor accessor(*dex, mi->code_item, mi->dex_method_index); in WriteCompilationUnit()
/art/compiler/optimizing/
Dstack_map_stream.cc218 uint32_t dex_method_index = method->GetDexMethodIndex(); in BeginInlineInfoEntry() local
219 entry[InlineInfo::kMethodInfoIndex] = method_infos_.Dedup({dex_method_index}); in BeginInlineInfoEntry()
Dreference_type_propagation.cc546 uint32_t dex_method_index = invoke->GetResolvedMethodReference().index; in SetClassAsTypeInfo() local
552 dex_method_index, dex_cache, loader, /* referrer= */ nullptr, kDirect); in SetClassAsTypeInfo()
Dinliner.cc1224 uint32_t dex_method_index = FindMethodIndexIn( in TryDevirtualize() local
1228 if (dex_method_index == dex::kDexNoIndex) { in TryDevirtualize()
1250 MethodReference(invoke_instruction->GetMethodReference().dex_file, dex_method_index), in TryDevirtualize()
Doptimizing_compiler.cc1288 info.dex_method_index = method_idx; in JitCompile()
1396 info.dex_method_index = method_idx; in JitCompile()
Dinstruction_builder.cc1079 uint32_t dex_method_index = method_reference.index; in BuildInvoke() local
1084 dex_method_index = resolved_method_reference.index; in BuildInvoke()
1088 dex_method_index = resolved_method->FindDexMethodIndexInOtherDexFile( in BuildInvoke()
1091 if (dex_method_index == dex::kDexNoIndex) { in BuildInvoke()
1094 method_reference.index = dex_method_index; in BuildInvoke()
/art/dexlayout/
Ddex_ir_builder.cc169 uint32_t dex_method_index);
792 uint32_t dex_method_index) { in DedupeOrCreateCodeItem() argument
796 CodeItemDebugInfoAccessor accessor(dex_file, disk_code_item, dex_method_index); in DedupeOrCreateCodeItem()
/art/libprofile/profile/
Dprofile_compilation_info.h783 MethodHotness GetHotnessInfo(uint32_t dex_method_index) const;
Dprofile_compilation_info.cc2293 uint32_t dex_method_index) const { in GetHotnessInfo()
2297 static_cast<MethodHotness::Flag>(flag), dex_method_index))) { in GetHotnessInfo()
2301 auto it = method_map.find(dex_method_index); in GetHotnessInfo()
/art/oatdump/
Doatdump.cc288 uint32_t dex_method_index, in WalkOatMethod() argument
310 info.dex_method_index = dex_method_index; in WalkOatMethod()
/art/dex2oat/linker/
Doat_writer.cc1395 info.dex_method_index = method_ref.index; in VisitMethod()