Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinliner.cc488 ArtMethod* actual_method = nullptr; in TryInline() local
491 actual_method = resolved_method; in TryInline()
494 actual_method = FindVirtualOrInterfaceTarget(invoke_instruction, resolved_method); in TryInline()
498 if (actual_method == nullptr) { in TryInline()
502 actual_method = method; in TryInline()
503 LOG_NOTE() << "Try CHA-based inlining of " << actual_method->PrettyMethod(); in TryInline()
507 if (actual_method != nullptr) { in TryInline()
510 actual_method, in TryInline()
526 } else if (!cha_devirtualize && AlwaysThrows(codegen_->GetCompilerOptions(), actual_method)) { in TryInline()
1183 ArtMethod* actual_method = nullptr; in TryInlinePolymorphicCallToSameTarget() local
[all …]
Dinstruction_builder.cc866 ArtMethod* actual_method; in ResolveMethod() local
868 actual_method = referenced_class->FindVirtualMethodForInterfaceSuper( in ResolveMethod()
872 actual_method = compiling_class->GetSuperClass()->GetVTableEntry( in ResolveMethod()
875 if (actual_method != resolved_method && in ResolveMethod()
876 !IsSameDexFile(*actual_method->GetDexFile(), *dex_compilation_unit_->GetDexFile())) { in ResolveMethod()
887 if (!actual_method->IsInvokable()) { in ResolveMethod()
892 resolved_method = actual_method; in ResolveMethod()
/art/runtime/
Ddebugger.cc4039 ArtMethod* actual_method = in ExecuteMethodWithoutPendingException() local
4041 if (actual_method != m) { in ExecuteMethodWithoutPendingException()
4043 << " to " << ArtMethod::PrettyMethod(actual_method); in ExecuteMethodWithoutPendingException()
4044 m = actual_method; in ExecuteMethodWithoutPendingException()