Home
last modified time | relevance | path

Searched refs:dex_method_idx (Results 1 – 15 of 15) sorted by relevance

/art/runtime/
Dart_method-inl.h167 uint32_t dex_method_idx = GetDexMethodIndex(); in GetDeclaringClassDescriptor() local
168 if (UNLIKELY(dex_method_idx == dex::kDexNoIndex)) { in GetDeclaringClassDescriptor()
173 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx)); in GetDeclaringClassDescriptor()
188 uint32_t dex_method_idx = GetDexMethodIndex(); in GetSignature() local
189 if (dex_method_idx != dex::kDexNoIndex) { in GetSignature()
192 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx)); in GetSignature()
198 uint32_t dex_method_idx = GetDexMethodIndex(); in GetName() local
199 if (LIKELY(dex_method_idx != dex::kDexNoIndex)) { in GetName()
202 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in GetName()
208 uint32_t dex_method_idx = GetDexMethodIndex(); in GetNameView() local
[all …]
Dart_method.cc246 const uint32_t dex_method_idx = GetDexMethodIndex(); in FindDexMethodIndexInOtherDexFile() local
247 const dex::MethodId& mid = dexfile->GetMethodId(dex_method_idx); in FindDexMethodIndexInOtherDexFile()
252 return dex_method_idx; in FindDexMethodIndexInOtherDexFile()
Dclass_linker.cc3775 const uint32_t dex_method_idx = method.GetIndex(); in LoadMethod() local
3776 const dex::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); in LoadMethod()
3780 dst->SetDexMethodIndex(dex_method_idx); in LoadMethod()
3823 dex_file, dst->GetClassDef(), dex_method_idx); in LoadMethod()
/art/test/661-oat-writer-layout/
Dparse_oatdump_offsets.sh29 if [[ $line == *dex_method_idx=* ]]; then
/art/profman/
Dprofman.cc797 uint16_t dex_method_idx) { in GetInlineCacheLine() argument
799 profile_info.GetMethodHotness(MethodReference(dex_file, dex_method_idx)); in GetInlineCacheLine()
814 dex_method_idx))); in GetInlineCacheLine()
881 for (uint16_t dex_method_idx : combined_methods) { in GetClassNamesAndMethods() local
882 const dex::MethodId& id = dex_file->GetMethodId(dex_method_idx); in GetClassNamesAndMethods()
887 if (hot_methods.find(dex_method_idx) != hot_methods.end()) { in GetClassNamesAndMethods()
890 if (startup_methods.find(dex_method_idx) != startup_methods.end()) { in GetClassNamesAndMethods()
893 if (post_startup_methods.find(dex_method_idx) != post_startup_methods.end()) { in GetClassNamesAndMethods()
897 GetInlineCacheLine(profile_info, id, dex_file.get(), dex_method_idx); in GetClassNamesAndMethods()
/art/dexlayout/
Ddexlayout.h186 void DumpCFG(const DexFile* dex_file, uint32_t dex_method_idx, const dex::CodeItem* code);
/art/libdexfile/dex/
Ddex_file.cc241 uint32_t dex_method_idx) const { in FindCodeItemOffset()
242 std::optional<uint32_t> val = GetCodeItemOffset(class_def, dex_method_idx); in FindCodeItemOffset()
243 CHECK(val.has_value()) << "Unable to find method " << dex_method_idx; in FindCodeItemOffset()
Ddex_file.h340 uint32_t dex_method_idx) const;
345 uint32_t dex_method_idx) const;
/art/runtime/verifier/
Dmethod_verifier.h231 uint32_t dex_method_idx,
Dmethod_verifier.cc3816 uint32_t dex_method_idx, MethodType method_type) { in ResolveMethodAndCheckAccess() argument
3817 const dex::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx); in ResolveMethodAndCheckAccess()
3832 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx); in ResolveMethodAndCheckAccess()
3835 klass, dex_cache_.Get(), class_loader_.Get(), dex_method_idx); in ResolveMethodAndCheckAccess()
3849 klass, dex_cache_.Get(), class_loader_.Get(), dex_method_idx); in ResolveMethodAndCheckAccess()
3888 << "non-interface method " << dex_file_->PrettyMethod(dex_method_idx) in ResolveMethodAndCheckAccess()
3895 << "interface method " << dex_file_->PrettyMethod(dex_method_idx) in ResolveMethodAndCheckAccess()
5001 uint32_t dex_method_idx, in MethodVerifier() argument
5012 dex_method_idx_(dex_method_idx), in MethodVerifier()
5320 uint32_t dex_method_idx, in VerifyMethodAndDump() argument
[all …]
/art/runtime/mirror/
Dclass.cc584 uint32_t dex_method_idx, in FindInterfaceMethod() argument
588 const dex::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); in FindInterfaceMethod()
697 uint32_t dex_method_idx, in FindClassMethod() argument
706 DCHECK_EQ(dex_type_idx_, GetDexFile().GetMethodId(dex_method_idx).class_idx_.index_); in FindClassMethod()
708 if (method.GetDexMethodIndex() == dex_method_idx) { in FindClassMethod()
715 const dex::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); in FindClassMethod()
Dclass.h927 uint32_t dex_method_idx,
972 uint32_t dex_method_idx,
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2305 uint32_t dex_method_idx; in artInvokeInterfaceTrampoline() local
2313 dex_method_idx = instr.VRegB_35c(); in artInvokeInterfaceTrampoline()
2316 dex_method_idx = instr.VRegB_3rc(); in artInvokeInterfaceTrampoline()
2321 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(dex_method_idx), in artInvokeInterfaceTrampoline()
2330 self, dex_method_idx, caller_method, kInterface); in artInvokeInterfaceTrampoline()
2338 MaybeUpdateBssMethodEntry(interface_method, MethodReference(&dex_file, dex_method_idx)); in artInvokeInterfaceTrampoline()
/art/oatdump/
Doatdump.cc1088 uint32_t dex_method_idx, in DumpOatMethod() argument
1097 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); in DumpOatMethod()
1102 std::string pretty_method = dex_file.PrettyMethod(dex_method_idx, true); in DumpOatMethod()
1105 dex_method_idx); in DumpOatMethod()
1151 dex_method_idx, &dex_file, class_def, code_item, in DumpOatMethod()
1478 uint32_t dex_method_idx, in DumpVerifier() argument
1491 dex_method_idx, dex_cache, *options_.class_loader_); in DumpVerifier()
1497 soa.Self(), vios, dex_method_idx, dex_file, dex_cache, *options_.class_loader_, in DumpVerifier()
/art/openjdkjvmti/
Dti_redefine.cc2584 uint32_t dex_method_idx = dex_file_->GetIndexForMethodId(*method_id); in UpdateMethods() local
2585 method.SetDexMethodIndex(dex_method_idx); in UpdateMethods()
2589 dex_file_->GetCodeItem(dex_file_->FindCodeItemOffset(class_def, dex_method_idx))); in UpdateMethods()