HomeSort by relevance Sort by last modified time
    Searched refs:called_method (Results 1 - 8 of 8) sorted by null

  /art/runtime/interpreter/
interpreter_intrinsics.h 33 ArtMethod* const called_method,
interpreter_common.h 112 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
131 ArtMethod* const called_method = FindMethodFromCode<type, false>( local
134 if (UNLIKELY(called_method == nullptr)) {
138 } else if (UNLIKELY(!called_method->IsInvokable())) {
139 called_method->ThrowInvocationTimeError();
146 jit->InvokeVirtualOrInterface(receiver, sf_method, shadow_frame.GetDexPC(), called_method);
150 if (called_method->IsIntrinsic()) {
151 if (MterpHandleIntrinsic(&shadow_frame, called_method, inst, inst_data,
156 return DoCall<false, false>(called_method, self, shadow_frame, inst, inst_data, result);
172 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check> local
243 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
    [all...]
interpreter_common.cc 457 static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method,
    [all...]
interpreter_intrinsics.cc 338 ArtMethod* const called_method,
343 Intrinsics intrinsic = static_cast<Intrinsics>(called_method->GetIntrinsic());
  /art/runtime/
method_handles.cc 419 static inline bool DoCallPolymorphic(ArtMethod* called_method,
429 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
448 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
449 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method);
455 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
518 called_method, called_method->GetEntryPointFromQuickCompiledCode());
555 static inline bool DoCallTransform(ArtMethod* called_method,
576 const DexFile::CodeItem* code_item = called_method->GetCodeItem()
732 ArtMethod* called_method = RefineTargetMethod(self, local
1062 ArtMethod* called_method = RefineTargetMethod(self, local
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]
  /art/runtime/interpreter/mterp/
mterp.cc 275 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
277 if ((called_method != nullptr) && called_method->IsIntrinsic()) {
278 if (MterpHandleIntrinsic(shadow_frame, called_method, inst, inst_data, result_register)) {
282 receiver, shadow_frame->GetMethod(), shadow_frame->GetDexPC(), called_method);
    [all...]
  /art/runtime/verifier/
method_verifier.cc 2899 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range); local
2931 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range); local
3009 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range); local
3087 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range); local
3445 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range); local
    [all...]

Completed in 391 milliseconds