Home
last modified time | relevance | path

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

/art/runtime/
Dclass_linker-inl.h292 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx, pointer_size); in LookupResolvedMethod()
305 inline ArtMethod* ClassLinker::GetResolvedMethod(uint32_t method_idx, ArtMethod* referrer) { in GetResolvedMethod() function
313 ArtMethod* resolved_method = referrer->GetDexCache<kWithoutReadBarrier>()->GetResolvedMethod( in GetResolvedMethod()
356 ArtMethod* resolved_method = referrer->GetDexCache<kWithoutReadBarrier>()->GetResolvedMethod( in ResolveMethod()
Dstack.cc111 return GetResolvedMethod(*GetCurrentQuickFrame(), *code_info, current_inline_frames_); in GetMethod()
Dclass_linker.h353 ArtMethod* GetResolvedMethod(uint32_t method_idx, ArtMethod* referrer)
Dclass_linker.cc8869 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx, pointer_size); in ResolveMethod()
8959 ArtMethod* resolved = dex_cache->GetResolvedMethod(method_idx, image_pointer_size_); in ResolveMethodWithoutInvokeType()
/art/runtime/entrypoints/jni/
Djni_entrypoints.cc163 inline_infos.empty() ? method : GetResolvedMethod(method, code_info, inline_infos); in artCriticalNativeFrameSize()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h50 inline ArtMethod* GetResolvedMethod(ArtMethod* outer_method, in GetResolvedMethod() function
660 ArtMethod* resolved_method = linker->GetResolvedMethod<type, resolve_mode>(method_idx, referrer); in FindMethodFast()
Dentrypoint_utils.cc216 caller = GetResolvedMethod(outer_method, code_info, inline_infos); in DoGetCalleeSaveMethodCaller()
/art/dex2oat/driver/
Dcompiler_driver_test.cc144 ArtMethod* method = dex_cache->GetResolvedMethod(i, pointer_size); in TEST_F()
/art/compiler/optimizing/
Dinstruction_simplifier.cc2275 ObjPtr<mirror::Class> system = invoke->GetResolvedMethod()->GetDeclaringClass(); in SimplifySystemArrayCopy()
2442 return user->AsInvokeStaticOrDirect()->GetResolvedMethod() != nullptr && in NoEscapeForStringBufferReference()
2443 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference()
2580 user->AsInvokeStaticOrDirect()->GetResolvedMethod() != nullptr && in TryReplaceStringBuilderAppend()
2581 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in TryReplaceStringBuilderAppend()
Dcode_generator.cc570 DCHECK(invoke->GetResolvedMethod()->IsCriticalNative()); in GetCriticalNativeShorty()
571 return invoke->GetResolvedMethod()->GetShorty(shorty_len); in GetCriticalNativeShorty()
925 ArtMethod* method = invoke->GetResolvedMethod(); in GetBootImageOffset()
Dinliner.cc468 ArtMethod* resolved_method = invoke_instruction->GetResolvedMethod(); in FindActualCallTarget()
512 ArtMethod* resolved_method = invoke_instruction->GetResolvedMethod(); in TryInline()
1320 if (invoke_instruction->GetResolvedMethod() != method && method->IsIntrinsic()) { in TryInlineAndReplace()
Dgraph_visualizer.cc460 ArtMethod* method = invoke->GetResolvedMethod(); in VisitInvoke()
Dreference_type_propagation.cc874 ArtMethod* method = instr->GetResolvedMethod(); in VisitInvoke()
Dnodes.h4423 ArtMethod* GetResolvedMethod() const { return resolved_method_; } in GetResolvedMethod() function
/art/runtime/mirror/
Ddex_cache-inl.h279 inline ArtMethod* DexCache::GetResolvedMethod(uint32_t method_idx, PointerSize ptr_size) { in GetResolvedMethod() function
Ddex_cache.h301 ALWAYS_INLINE ArtMethod* GetResolvedMethod(uint32_t method_idx, PointerSize ptr_size)
/art/dex2oat/linker/
Dimage_writer.cc1314 DCHECK(method == nullptr || dex_cache->GetResolvedMethod(i, target_ptr_size_) == method); in PreloadDexCache()
/art/runtime/verifier/
Dmethod_verifier.cc3891 ArtMethod* res_method = dex_cache_->GetResolvedMethod(dex_method_idx, pointer_size); in ResolveMethodAndCheckAccess()