Home
last modified time | relevance | path

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

/art/test/661-oat-writer-layout/
Dparse_oatdump_offsets.sh29 if [[ $line == *dex_method_idx=* ]]; then
/art/runtime/
Dart_method-inl.h413 uint32_t dex_method_idx = GetDexMethodIndex();
414 if (dex_method_idx != dex::kDexNoIndex) {
417 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
423 uint32_t dex_method_idx = GetDexMethodIndex();
424 if (LIKELY(dex_method_idx != dex::kDexNoIndex)) {
427 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
433 uint32_t dex_method_idx = GetDexMethodIndex();
434 if (LIKELY(dex_method_idx != dex::kDexNoIndex)) {
437 return dex_file->GetMethodNameView(dex_method_idx);
Dart_method.cc297 const uint32_t dex_method_idx = GetDexMethodIndex(); in FindDexMethodIndexInOtherDexFile() local
298 const dex::MethodId& mid = dexfile->GetMethodId(dex_method_idx); in FindDexMethodIndexInOtherDexFile()
303 return dex_method_idx; in FindDexMethodIndexInOtherDexFile()
Dclass_linker.cc4081 const uint32_t dex_method_idx = method.GetIndex(); in LoadMethod() local
4082 const dex::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); in LoadMethod()
4088 dst->SetDexMethodIndex(dex_method_idx); in LoadMethod()
4127 const dex::MethodAnnotationsItem* method_annotations = mai->AdvanceTo(dex_method_idx); in LoadMethod()
4148 const dex::MethodAnnotationsItem* method_annotations = mai->AdvanceTo(dex_method_idx); in LoadMethod()
/art/profman/
Dprofman.cc811 uint16_t dex_method_idx) { in GetInlineCacheLine() argument
813 profile_info.GetMethodHotness(MethodReference(dex_file, dex_method_idx)); in GetInlineCacheLine()
832 *dex_file, dex_file->GetCodeItem(dex_file->FindCodeItemOffset(*class_def, dex_method_idx))); in GetInlineCacheLine()
904 for (uint16_t dex_method_idx : combined_methods) { in GetClassNamesAndMethods() local
905 const dex::MethodId& id = dex_file->GetMethodId(dex_method_idx); in GetClassNamesAndMethods()
910 if (hot_methods.find(dex_method_idx) != hot_methods.end()) { in GetClassNamesAndMethods()
913 if (startup_methods.find(dex_method_idx) != startup_methods.end()) { in GetClassNamesAndMethods()
916 if (post_startup_methods.find(dex_method_idx) != post_startup_methods.end()) { in GetClassNamesAndMethods()
920 GetInlineCacheLine(profile_info, id, dex_file.get(), dex_method_idx); in GetClassNamesAndMethods()
/art/runtime/verifier/
Dmethod_verifier.h205 uint32_t dex_method_idx,
Dmethod_verifier.cc3736 uint32_t dex_method_idx, MethodType method_type) { in ResolveMethodAndCheckAccess() argument
3737 const dex::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx); in ResolveMethodAndCheckAccess()
3752 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx); in ResolveMethodAndCheckAccess()
3755 klass, dex_cache_.Get(), class_loader_.Get(), dex_method_idx); in ResolveMethodAndCheckAccess()
3769 klass, dex_cache_.Get(), class_loader_.Get(), dex_method_idx); in ResolveMethodAndCheckAccess()
3808 << "non-interface method " << dex_file_->PrettyMethod(dex_method_idx) in ResolveMethodAndCheckAccess()
3815 << "interface method " << dex_file_->PrettyMethod(dex_method_idx) in ResolveMethodAndCheckAccess()
4939 uint32_t dex_method_idx, in MethodVerifier() argument
4949 dex_method_idx_(dex_method_idx), in MethodVerifier()
5198 uint32_t dex_method_idx, in VerifyMethodAndDump() argument
[all …]
/art/libdexfile/dex/
Ddex_file.cc361 uint32_t dex_method_idx) const { in FindCodeItemOffset()
362 std::optional<uint32_t> val = GetCodeItemOffset(class_def, dex_method_idx); in FindCodeItemOffset()
363 CHECK(val.has_value()) << "Unable to find method " << dex_method_idx; in FindCodeItemOffset()
Ddex_file.h423 uint32_t dex_method_idx) const;
428 uint32_t dex_method_idx) const;
/art/oatdump/
Doatdump.cc708 uint32_t dex_method_idx = method.GetIndex(); in DumpMethodAndOffsetAsJson() local
709 std::string method_name = dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx)); in DumpMethodAndOffsetAsJson()
714 std::string pretty_method = dex_file->PrettyMethod(dex_method_idx, true); in DumpMethodAndOffsetAsJson()
1112 uint32_t dex_method_idx, in DumpOatMethod() argument
1121 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); in DumpOatMethod()
1126 std::string pretty_method = dex_file.PrettyMethod(dex_method_idx, true); in DumpOatMethod()
1129 dex_method_idx); in DumpOatMethod()
1178 dex_method_idx, in DumpOatMethod()
1488 uint32_t dex_method_idx, in DumpVerifier() argument
1501 dex_method_idx, dex_cache, *options_.class_loader_); in DumpVerifier()
[all …]
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc2228 uint32_t dex_method_idx; in artInvokeInterfaceTrampoline() local
2235 dex_method_idx = instr.VRegB_35c(); in artInvokeInterfaceTrampoline()
2238 dex_method_idx = instr.VRegB_3rc(); in artInvokeInterfaceTrampoline()
2243 dex_file.GetMethodShortyView(dex_file.GetMethodId(dex_method_idx)); in artInvokeInterfaceTrampoline()
2251 self, dex_method_idx, caller_method, kInterface); in artInvokeInterfaceTrampoline()
2261 interface_method, MethodReference(&dex_file, dex_method_idx), outer_method); in artInvokeInterfaceTrampoline()
/art/runtime/mirror/
Dclass.cc571 uint32_t dex_method_idx, in FindInterfaceMethod() argument
575 const dex::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); in FindInterfaceMethod()
831 uint32_t dex_method_idx, in FindClassMethod() argument
840 DCHECK_EQ(dex_type_idx_, GetDexFile().GetMethodId(dex_method_idx).class_idx_.index_); in FindClassMethod()
842 if (method.GetDexMethodIndex() == dex_method_idx) { in FindClassMethod()
850 const dex::MethodId& method_id = dex_file.GetMethodId(dex_method_idx); in FindClassMethod()
Dclass.h941 uint32_t dex_method_idx,
986 uint32_t dex_method_idx,
/art/openjdkjvmti/
Dti_redefine.cc2575 uint32_t dex_method_idx = dex_file_->GetIndexForMethodId(*method_id); in UpdateMethods() local
2576 method.SetDexMethodIndex(dex_method_idx); in UpdateMethods()
2580 dex_file_->GetCodeItem(dex_file_->FindCodeItemOffset(class_def, dex_method_idx)), in UpdateMethods()