Home | History | Annotate | Download | only in interpreter

Lines Matching full:called_method

97 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
109 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>(
112 if (UNLIKELY(called_method == nullptr)) {
116 } else if (UNLIKELY(called_method->IsAbstract())) {
117 ThrowAbstractMethodError(called_method);
121 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
142 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry(
144 if (UNLIKELY(called_method == nullptr)) {
148 } else if (UNLIKELY(called_method->IsAbstract())) {
149 ThrowAbstractMethodError(called_method);
154 return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result);