Lines Matching refs:callee
61 ArtMethod* callee, in SharpenLoadMethod() argument
67 DCHECK(callee != nullptr); in SharpenLoadMethod()
68 DCHECK(!callee->IsStringConstructor()); in SharpenLoadMethod()
89 if (callee == codegen->GetGraph()->GetArtMethod() && in SharpenLoadMethod()
95 (!for_interface_call || !callee->IsDefault())) { in SharpenLoadMethod()
103 } else if (IsInBootImage(callee)) { in SharpenLoadMethod()
106 } else if (BootImageAOTCanEmbedMethod(callee, compiler_options)) { in SharpenLoadMethod()
111 DCHECK(!callee->IsCopied()); in SharpenLoadMethod()
119 callee, in SharpenLoadMethod()
122 method_load_data = reinterpret_cast<uintptr_t>(callee); in SharpenLoadMethod()
129 } else if (IsInBootImage(callee)) { in SharpenLoadMethod()
137 DCHECK(!callee->IsCopied()); in SharpenLoadMethod()
143 if (method_load_kind != MethodLoadKind::kRuntimeCall && callee->IsCriticalNative()) { in SharpenLoadMethod()
145 DCHECK(callee->IsStatic()); in SharpenLoadMethod()
158 return codegen->GetSupportedInvokeStaticOrDirectDispatch(desired_dispatch_info, callee); in SharpenLoadMethod()