Lines Matching defs:called_method

120 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
139 ArtMethod* const called_method = FindMethodFromCode<type, false>(
142 if (UNLIKELY(called_method == nullptr)) {
146 } else if (UNLIKELY(!called_method->IsInvokable())) {
147 called_method->ThrowInvocationTimeError();
153 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
155 if (called_method->IsIntrinsic()) {
156 if (MterpHandleIntrinsic(&shadow_frame, called_method, inst, inst_data,
161 return DoCall<false, false>(called_method, self, shadow_frame, inst, inst_data, result);
182 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>(
185 if (UNLIKELY(called_method == nullptr)) {
189 } else if (UNLIKELY(!called_method->IsInvokable())) {
190 called_method->ThrowInvocationTimeError();
196 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
203 self, receiver.Ptr(), sf_method, shadow_frame.GetDexPC(), called_method);
206 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data,
270 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry(
272 if (UNLIKELY(called_method == nullptr)) {
276 } else if (UNLIKELY(!called_method->IsInvokable())) {
277 called_method->ThrowInvocationTimeError();
284 receiver, shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method);
291 self, receiver.Ptr(), shadow_frame.GetMethod(), shadow_frame.GetDexPC(), called_method);
294 return DoCall<is_range, false>(called_method, self, shadow_frame, inst, inst_data, result);