• Home
  • Raw
  • Download

Lines Matching refs:called_method

129 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
270 ArtMethod* called_method; in DoInvoke() local
271 called_method = FindMethodToCall<type, do_access_check>( in DoInvoke()
273 if (UNLIKELY(called_method == nullptr)) { in DoInvoke()
278 if (UNLIKELY(!called_method->IsInvokable())) { in DoInvoke()
279 called_method->ThrowInvocationTimeError(); in DoInvoke()
285 if (is_mterp && !is_range && called_method->IsIntrinsic()) { in DoInvoke()
286 if (MterpHandleIntrinsic(&shadow_frame, called_method, inst, inst_data, in DoInvoke()
300 use_fast_path = called_method->UseFastInterpreterToInterpreterInvoke(); in DoInvoke()
302 use_fast_path = UseFastInterpreterToInterpreterInvoke(called_method); in DoInvoke()
304 called_method->SetFastInterpreterToInterpreterInvokeFlag(); in DoInvoke()
312 DCHECK(called_method->SkipAccessChecks()); in DoInvoke()
313 DCHECK(!called_method->IsNative()); in DoInvoke()
314 DCHECK(!called_method->IsProxyMethod()); in DoInvoke()
315 DCHECK(!called_method->IsIntrinsic()); in DoInvoke()
316 DCHECK(!(called_method->GetDeclaringClass()->IsStringClass() && in DoInvoke()
317 called_method->IsConstructor())); in DoInvoke()
318 DCHECK(type != kStatic || called_method->GetDeclaringClass()->IsVisiblyInitialized()); in DoInvoke()
322 CodeItemDataAccessor accessor(called_method->DexInstructionData()); in DoInvoke()
333 jit->AddSamples(self, called_method, 1, /* with_backedges */false); in DoInvoke()
339 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0); in DoInvoke()
358 VLOG(interpreter) << "Interpreting " << called_method->PrettyMethod(); in DoInvoke()
360 DCheckStaticState(self, called_method); in DoInvoke()
383 return DoCall<is_range, do_access_check>(called_method, self, shadow_frame, inst, inst_data, in DoInvoke()