Home
last modified time | relevance | path

Searched refs:dex_method_index (Results 1 – 18 of 18) 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.h276 uint32_t GetDebugInfoOffset(uint32_t dex_method_index) const { in GetDebugInfoOffset() argument
277 return debug_info_offsets_.GetOffset(dex_method_index); in GetDebugInfoOffset()
/art/compiler/debug/
Dmethod_debug_info.h33 uint32_t dex_method_index; member
Delf_symtab_writer.h90 std::string name = info.dex_file->PrettyMethod(info.dex_method_index, !mini_debug_info); in WriteDebugSymbols()
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.cc204 uint32_t dex_method_index = method->GetDexMethodIndex(); in BeginInlineInfoEntry() local
205 entry[InlineInfo::kMethodInfoIndex] = method_infos_.Dedup({dex_method_index}); in BeginInlineInfoEntry()
Dreference_type_propagation.cc519 uint32_t dex_method_index = invoke->GetTargetMethod().index; in SetClassAsTypeInfo() local
525 dex_method_index, dex_cache, loader, /* referrer= */ nullptr, kDirect); in SetClassAsTypeInfo()
Dinliner.cc1369 uint32_t dex_method_index = FindMethodIndexIn( in TryInlineAndReplace() local
1371 if (dex_method_index == dex::kDexNoIndex) { in TryInlineAndReplace()
1379 dex_method_index, in TryInlineAndReplace()
Doptimizing_compiler.cc1270 info.dex_method_index = method_idx; in JitCompile()
1378 info.dex_method_index = method_idx; in JitCompile()
Dnodes.h4444 uint32_t dex_method_index, in HInvoke() argument
4456 dex_method_index_(dex_method_index), in HInvoke()
4483 uint32_t dex_method_index, in HInvokeUnresolved() argument
4491 dex_method_index, in HInvokeUnresolved()
4510 uint32_t dex_method_index, in HInvokePolymorphic() argument
4521 dex_method_index, in HInvokePolymorphic()
4858 uint32_t dex_method_index, in HInvokeVirtual() argument
4867 dex_method_index, in HInvokeVirtual()
4920 uint32_t dex_method_index, in HInvokeInterface() argument
4929 dex_method_index, in HInvokeInterface()
/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/runtime/verifier/
Dverifier_deps.cc147 uint32_t dex_method_index, in GetMethodDeclaringClassStringId() argument
155 dex_file.GetMethodId(dex_method_index).class_idx_, in GetMethodDeclaringClassStringId()
/art/libprofile/profile/
Dprofile_compilation_info.h656 MethodHotness GetHotnessInfo(uint32_t dex_method_index) const;
Dprofile_compilation_info.cc2054 uint32_t dex_method_index) const { in GetHotnessInfo()
2064 static_cast<MethodHotness::Flag>(flag), dex_method_index))) { in GetHotnessInfo()
2068 auto it = method_map.find(dex_method_index); in GetHotnessInfo()
/art/oatdump/
Doatdump.cc287 uint32_t dex_method_index, in WalkOatMethod() argument
309 info.dex_method_index = dex_method_index; in WalkOatMethod()
/art/dex2oat/linker/
Doat_writer.cc1387 info.dex_method_index = method_ref.index; in VisitMethod()