Home
last modified time | relevance | path

Searched refs:GetResolvedMethod (Results 1 – 22 of 22) sorted by relevance

/art/compiler/optimizing/
Dprofiling_info_builder.cc89 << invoke->GetResolvedMethod()->PrettyMethod(); in HandleInvoke()
116 if (invoke->GetResolvedMethod() != nullptr) { in IsInlineCacheUseful()
118 if (invoke->GetResolvedMethod()->IsFinal() || in IsInlineCacheUseful()
119 invoke->GetResolvedMethod()->GetDeclaringClass()->IsFinal()) { in IsInlineCacheUseful()
Dinliner.cc243 ArtMethod* resolved_method = invoke->GetResolvedMethod(); in FindVirtualOrInterfaceTarget()
469 ArtMethod* resolved_method = invoke_instruction->GetResolvedMethod(); in TryInline()
480 actual_method = invoke_instruction->GetResolvedMethod(); in TryInline()
502 actual_method = invoke_instruction->GetResolvedMethod(); in TryInline()
574 ArtMethod* method = FindMethodFromCHA(invoke_instruction->GetResolvedMethod()); in TryInlineFromCHA()
594 outermost_graph_->AddCHASingleImplementationDependency(invoke_instruction->GetResolvedMethod()); in TryInlineFromCHA()
820 ArtMethod* resolved_method = invoke_instruction->GetResolvedMethod(); in ResolveMethodFromInlineCache()
863 << "Call to " << ArtMethod::PrettyMethod(invoke_instruction->GetResolvedMethod()) in TryInlineMonomorphicCall()
1591 if (invoke_instruction->GetResolvedMethod() != method && in TryBuildAndInline()
Dcode_generator.cc498 DCHECK(invoke->GetResolvedMethod()->IsCriticalNative()); in GetCriticalNativeShorty()
499 return invoke->GetResolvedMethod()->GetShortyView(); in GetCriticalNativeShorty()
858 ArtMethod* method = invoke->GetResolvedMethod(); in GetBootImageOffset()
873 ArtMethod* method = invoke->GetResolvedMethod(); in GetBootImageOffsetOfIntrinsicDeclaringClass()
Dinstruction_simplifier.cc2600 ObjPtr<mirror::Class> system = invoke->GetResolvedMethod()->GetDeclaringClass(); in SimplifySystemArrayCopy()
2771 return user->AsInvokeStaticOrDirect()->GetResolvedMethod() != nullptr && in NoEscapeForStringBufferReference()
2772 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference()
2914 user->AsInvokeStaticOrDirect()->GetResolvedMethod() != nullptr && in TryReplaceStringBuilderAppend()
2915 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in TryReplaceStringBuilderAppend()
Dgraph_visualizer.cc504 ArtMethod* method = invoke->GetResolvedMethod(); in VisitInvoke()
Dreference_type_propagation.cc861 ArtMethod* method = instr->GetResolvedMethod(); in VisitInvoke()
Dnodes.h4802 ArtMethod* GetResolvedMethod() const { return resolved_method_; }
Dcode_generator_arm64.cc4902 reinterpret_cast<uint64_t>(invoke->GetResolvedMethod()))); in LoadMethod()
Dcode_generator_riscv64.cc6834 reinterpret_cast<uint64_t>(invoke->GetResolvedMethod())); in LoadMethod()
Dcode_generator_x86_64.cc1154 reinterpret_cast<int64_t>(invoke->GetResolvedMethod())); in LoadMethod()
Dcode_generator_x86.cc5517 Immediate(reinterpret_cast32<uint32_t>(invoke->GetResolvedMethod()))); in LoadMethod()
Dcode_generator_arm_vixl.cc9514 __ Mov(RegisterFrom(temp), Operand::From(invoke->GetResolvedMethod())); in LoadMethod()
/art/runtime/
Dclass_linker-inl.h277 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); in LookupResolvedMethod()
300 ArtMethod* resolved_method = referrer->GetDexCache()->GetResolvedMethod(method_idx); in ResolveMethod()
329 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); in ResolveMethod()
365 resolved = dex_cache->GetResolvedMethod(method_idx); in ResolveMethod()
Dstack.cc112 return GetResolvedMethod(*GetCurrentQuickFrame(), *code_info, current_inline_frames_); in GetMethod()
Dclass_linker.cc10117 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx); in ResolveMethodWithoutInvokeType()
/art/runtime/entrypoints/jni/
Djni_entrypoints.cc172 inline_infos.empty() ? method : GetResolvedMethod(method, code_info, inline_infos); in artCriticalNativeFrameSize()
/art/runtime/mirror/
Ddex_cache-inl.h252 inline ArtMethod* DexCache::GetResolvedMethod(uint32_t method_idx) { in GetResolvedMethod() function
Ddex_cache.h332 ALWAYS_INLINE ArtMethod* GetResolvedMethod(uint32_t method_idx)
/art/runtime/entrypoints/
Dentrypoint_utils.cc229 caller = GetResolvedMethod(outer_method, code_info, inline_infos); in DoGetCalleeSaveMethodCallerAndDexPc()
Dentrypoint_utils-inl.h103 inline ArtMethod* GetResolvedMethod(ArtMethod* outer_method, in GetResolvedMethod() function
/art/dex2oat/driver/
Dcompiler_driver_test.cc144 ArtMethod* method = dex_cache->GetResolvedMethod(i); in TEST_F()
/art/runtime/verifier/
Dmethod_verifier.cc3752 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx); in ResolveMethodAndCheckAccess()