Home
last modified time | relevance | path

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

/aosp12/art/compiler/optimizing/
H A Dinliner.cc462 ArtMethod* actual_method = invoke_instruction->IsInvokeStaticOrDirect() in TryInline() local
466 if (actual_method != nullptr) { in TryInline()
469 actual_method, in TryInline()
476 if (TryDevirtualize(invoke_instruction, actual_method, &invoke_to_analyze)) { in TryInline()
485 if (AlwaysThrows(codegen_->GetCompilerOptions(), actual_method)) { in TryInline()
1085 ArtMethod* actual_method = nullptr; in TryInlinePolymorphicCallToSameTarget() local
1111 if (actual_method == nullptr) { in TryInlinePolymorphicCallToSameTarget()
1112 actual_method = new_method; in TryInlinePolymorphicCallToSameTarget()
1113 } else if (actual_method != new_method) { in TryInlinePolymorphicCallToSameTarget()
1125 actual_method, in TryInlinePolymorphicCallToSameTarget()
[all …]
H A Dinstruction_builder.cc940 ArtMethod* actual_method; in ResolveMethod() local
942 actual_method = referenced_class->FindVirtualMethodForInterfaceSuper( in ResolveMethod()
951 actual_method = compiling_class->GetSuperClass()->GetVTableEntry( in ResolveMethod()
954 if (!actual_method->IsInvokable()) { in ResolveMethod()
961 resolved_method = actual_method->GetCanonicalMethod(class_linker->GetImagePointerSize()); in ResolveMethod()