Searched refs:GetMethodIndex (Results 1 – 16 of 16) sorted by relevance
/aosp12/art/runtime/interpreter/mterp/ |
H A D | nterp.cc | 356 uint16_t vtable_index = resolved_method->GetMethodIndex(); in NterpGetMethod() 378 DCHECK_LT(resolved_method->GetMethodIndex(), 0x10000); in NterpGetMethod() 379 result = (resolved_method->GetMethodIndex() << 16) | 1U; in NterpGetMethod() 404 UpdateCache(self, dex_pc_ptr, resolved_method->GetMethodIndex()); in NterpGetMethod() 405 return resolved_method->GetMethodIndex(); in NterpGetMethod()
|
/aosp12/art/runtime/entrypoints/ |
H A D | entrypoint_utils-inl.h | 454 uint16_t vtable_index = resolved_method->GetMethodIndex(); in FindMethodToCall() 491 uint16_t vtable_index = resolved_method->GetMethodIndex(); in FindMethodToCall() 684 if (resolved_method->GetMethodIndex() >= super_class->GetVTableLength()) { in FindMethodFast() 688 return super_class->GetVTableEntry(resolved_method->GetMethodIndex(), kRuntimePointerSize); in FindMethodFast() 696 resolved_method->GetMethodIndex(), kRuntimePointerSize); in FindMethodFast()
|
/aosp12/art/runtime/ |
H A D | imtable-inl.h | 91 return method->GetMethodIndex() & (ImTable::kSizeTruncToPowerOfTwo - 1); in GetImtIndex()
|
H A D | art_method.cc | 90 return &GetDeclaringClass()->GetDirectMethodsSlice(kRuntimePointerSize)[GetMethodIndex()]; in GetNonObsoleteMethod() 92 return GetDeclaringClass()->GetVTableEntry(GetMethodIndex(), kRuntimePointerSize); in GetNonObsoleteMethod() 213 uint16_t method_index = GetMethodIndex(); in FindOverriddenMethod() 484 oat_method_index = method->GetMethodIndex(); in FindOatMethodFor()
|
H A D | cha.cc | 366 method_in_super->GetMethodIndex(), in CheckVirtualMethodSingleImplementationInfo() 371 uint16_t method_index = method_in_super->GetMethodIndex(); in CheckVirtualMethodSingleImplementationInfo()
|
H A D | art_method.h | 418 uint16_t GetMethodIndex() REQUIRES_SHARED(Locks::mutator_lock_); 424 return GetMethodIndex(); in GetVtableIndex()
|
H A D | art_method-inl.h | 81 inline uint16_t ArtMethod::GetMethodIndex() { in GetMethodIndex() function
|
H A D | stack_map.h | 364 return method_infos_.GetRow(inline_info.GetMethodInfoIndex()).GetMethodIndex(); in GetMethodIndexOf()
|
H A D | method_handles.cc | 704 uint16_t vtable_index = target_method->GetMethodIndex(); in RefineTargetMethod()
|
/aosp12/art/runtime/mirror/ |
H A D | class-inl.h | 633 method->GetMethodIndex(), pointer_size); in FindVirtualMethodForInterface() 644 return GetVTableEntry(method->GetMethodIndex(), pointer_size); in FindVirtualMethodForVirtual() 649 return GetSuperClass()->GetVTableEntry(method->GetMethodIndex(), pointer_size); in FindVirtualMethodForSuper()
|
/aosp12/art/compiler/optimizing/ |
H A D | graph_visualizer.cc | 505 StartAttributeStream("method_index") << method->GetMethodIndex(); in VisitInvoke()
|
H A D | inliner.cc | 1426 method->GetMethodIndex()); in TryBuildAndInline()
|
H A D | instruction_builder.cc | 945 uint16_t vtable_index = resolved_method->GetMethodIndex(); in ResolveMethod()
|
/aosp12/art/runtime/entrypoints/quick/ |
H A D | quick_trampoline_entrypoints.cc | 1345 called->GetMethodIndex(), kRuntimePointerSize); in artQuickResolutionTrampoline()
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 740 oat_method_index = m->GetMethodIndex(); in GetQuickOatCode()
|
/aosp12/art/runtime/verifier/ |
H A D | method_verifier.cc | 4246 (res_method->GetMethodIndex() >= super.GetClass()->GetVTableLength())) { in VerifyInvocationArgs()
|