Home
last modified time | relevance | path

Searched refs:actual_method (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinliner.cc402 ArtMethod* actual_method = nullptr; in TryInline() local
405 actual_method = resolved_method; in TryInline()
408 actual_method = FindVirtualOrInterfaceTarget(invoke_instruction, resolved_method); in TryInline()
412 if (actual_method == nullptr) { in TryInline()
416 actual_method = method; in TryInline()
417 LOG_NOTE() << "Try CHA-based inlining of " << actual_method->PrettyMethod(); in TryInline()
421 if (actual_method != nullptr) { in TryInline()
423 actual_method, in TryInline()
1086 ArtMethod* actual_method = nullptr; in TryInlinePolymorphicCallToSameTarget() local
1111 if (actual_method == nullptr) { in TryInlinePolymorphicCallToSameTarget()
[all …]
Dinstruction_builder.cc740 ArtMethod* actual_method; in ResolveMethod() local
742 actual_method = methods_class->FindVirtualMethodForInterfaceSuper( in ResolveMethod()
746 actual_method = compiling_class->GetSuperClass()->GetVTableEntry( in ResolveMethod()
749 if (actual_method != resolved_method && in ResolveMethod()
750 !IsSameDexFile(*actual_method->GetDexFile(), *dex_compilation_unit_->GetDexFile())) { in ResolveMethod()
761 if (!actual_method->IsInvokable()) { in ResolveMethod()
766 resolved_method = actual_method; in ResolveMethod()
/art/runtime/
Ddebugger.cc4094 ArtMethod* actual_method = in ExecuteMethodWithoutPendingException() local
4096 if (actual_method != m) { in ExecuteMethodWithoutPendingException()
4098 << " to " << ArtMethod::PrettyMethod(actual_method); in ExecuteMethodWithoutPendingException()
4099 m = actual_method; in ExecuteMethodWithoutPendingException()