/aosp12/art/runtime/ |
H A D | class_linker-inl.h | 291 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); in LookupResolvedMethod() 304 inline ArtMethod* ClassLinker::GetResolvedMethod(uint32_t method_idx, ArtMethod* referrer) { in GetResolvedMethod() function 312 ArtMethod* resolved_method = referrer->GetDexCache<kWithoutReadBarrier>()->GetResolvedMethod( in GetResolvedMethod() 365 ArtMethod* resolved_method = referrer->GetDexCache<kWithoutReadBarrier>()->GetResolvedMethod( in ResolveMethod()
|
H A D | stack.cc | 111 return GetResolvedMethod(*GetCurrentQuickFrame(), *code_info, current_inline_frames_); in GetMethod()
|
H A D | class_linker.h | 363 ArtMethod* GetResolvedMethod(uint32_t method_idx, ArtMethod* referrer)
|
H A D | class_linker.cc | 9132 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); in ResolveMethod() 9222 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); in ResolveMethodWithoutInvokeType()
|
/aosp12/art/compiler/optimizing/ |
H A D | inliner.cc | 214 ArtMethod* resolved_method = invoke->GetResolvedMethod(); in FindVirtualOrInterfaceTarget() 454 ArtMethod* resolved_method = invoke_instruction->GetResolvedMethod(); in TryInline() 463 ? invoke_instruction->GetResolvedMethod() in TryInline() 501 ArtMethod* method = FindMethodFromCHA(invoke_instruction->GetResolvedMethod()); in TryInlineFromCHA() 519 outermost_graph_->AddCHASingleImplementationDependency(invoke_instruction->GetResolvedMethod()); in TryInlineFromCHA() 715 ArtMethod* resolved_method = invoke_instruction->GetResolvedMethod(); in ResolveMethodFromInlineCache() 751 << "Call to " << ArtMethod::PrettyMethod(invoke_instruction->GetResolvedMethod()) in TryInlineMonomorphicCall() 1414 if (invoke_instruction->GetResolvedMethod() != method && method->IsIntrinsic()) { in TryBuildAndInline()
|
H A D | code_generator.cc | 571 DCHECK(invoke->GetResolvedMethod()->IsCriticalNative()); in GetCriticalNativeShorty() 572 return invoke->GetResolvedMethod()->GetShorty(shorty_len); in GetCriticalNativeShorty() 931 ArtMethod* method = invoke->GetResolvedMethod(); in GetBootImageOffset() 946 ArtMethod* method = invoke->GetResolvedMethod(); in GetBootImageOffsetOfIntrinsicDeclaringClass()
|
H A D | instruction_simplifier.cc | 2367 ObjPtr<mirror::Class> system = invoke->GetResolvedMethod()->GetDeclaringClass(); in SimplifySystemArrayCopy() 2538 return user->AsInvokeStaticOrDirect()->GetResolvedMethod() != nullptr && in NoEscapeForStringBufferReference() 2539 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference() 2676 user->AsInvokeStaticOrDirect()->GetResolvedMethod() != nullptr && in TryReplaceStringBuilderAppend() 2677 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in TryReplaceStringBuilderAppend()
|
H A D | intrinsics.cc | 299 ObjPtr<mirror::Class> integer_class = invoke->GetResolvedMethod()->GetDeclaringClass(); in ComputeIntegerValueOfInfo()
|
H A D | graph_visualizer.cc | 491 ArtMethod* method = invoke->GetResolvedMethod(); in VisitInvoke()
|
H A D | reference_type_propagation.cc | 908 ArtMethod* method = instr->GetResolvedMethod(); in VisitInvoke()
|
H A D | nodes.h | 4675 ArtMethod* GetResolvedMethod() const { return resolved_method_; }
|
H A D | code_generator_arm64.cc | 4572 DeduplicateUint64Literal(reinterpret_cast<uint64_t>(invoke->GetResolvedMethod()))); in LoadMethod()
|
H A D | code_generator_x86_64.cc | 1031 reinterpret_cast<int64_t>(invoke->GetResolvedMethod())); in LoadMethod()
|
H A D | code_generator_arm_vixl.cc | 9194 __ Mov(RegisterFrom(temp), Operand::From(invoke->GetResolvedMethod())); in LoadMethod()
|
H A D | code_generator_x86.cc | 5237 Immediate(reinterpret_cast32<uint32_t>(invoke->GetResolvedMethod()))); in LoadMethod()
|
/aosp12/art/runtime/entrypoints/jni/ |
H A D | jni_entrypoints.cc | 166 inline_infos.empty() ? method : GetResolvedMethod(method, code_info, inline_infos); in artCriticalNativeFrameSize()
|
/aosp12/art/runtime/entrypoints/ |
H A D | entrypoint_utils-inl.h | 50 inline ArtMethod* GetResolvedMethod(ArtMethod* outer_method, in GetResolvedMethod() function 659 ArtMethod* resolved_method = linker->GetResolvedMethod<type, resolve_mode>(method_idx, referrer); in FindMethodFast()
|
H A D | entrypoint_utils.cc | 216 caller = GetResolvedMethod(outer_method, code_info, inline_infos); in DoGetCalleeSaveMethodCaller()
|
/aosp12/art/dex2oat/driver/ |
H A D | compiler_driver_test.cc | 142 ArtMethod* method = dex_cache->GetResolvedMethod(i); in TEST_F()
|
/aosp12/art/runtime/mirror/ |
H A D | dex_cache-inl.h | 264 inline ArtMethod* DexCache::GetResolvedMethod(uint32_t method_idx) { in GetResolvedMethod() function
|
H A D | dex_cache.h | 302 ALWAYS_INLINE ArtMethod* GetResolvedMethod(uint32_t method_idx)
|
/aosp12/art/runtime/verifier/ |
H A D | method_verifier.cc | 3832 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx); in ResolveMethodAndCheckAccess()
|