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

  /art/runtime/interpreter/
interpreter_common.h 97 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
109 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>( local
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( local
144 if (UNLIKELY(called_method == nullptr)) {
148 } else if (UNLIKELY(called_method->IsAbstract())) {
149 ThrowAbstractMethodError(called_method);
    [all...]
interpreter_common.cc 481 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
485 if (called_method->GetDeclaringClass()->IsStringClass() && called_method->IsConstructor()) {
487 jmethodID mid = soa.EncodeMethod(called_method);
488 called_method = soa.DecodeMethod(WellKnownClasses::StringInitToStringFactoryMethodID(mid));
493 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
500 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
511 ShadowFrame* new_shadow_frame(ShadowFrame::Create(num_regs, &shadow_frame, called_method, 0,
    [all...]
  /art/compiler/driver/
compiler_driver-inl.h 365 ArtMethod* called_method; local
368 called_method = class_linker->ResolveMethod(
374 called_method = class_linker->ResolveMethod(
378 CHECK(called_method != nullptr);
379 CHECK(!called_method->IsAbstract());
384 referrer_class, called_method,
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]
  /art/runtime/verifier/
method_verifier.cc 2404 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL, is_range, is_super); local
2436 ArtMethod* called_method = VerifyInvocationArgs(inst, local
2519 ArtMethod* called_method = VerifyInvocationArgs(inst, local
2883 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range); local
    [all...]

Completed in 354 milliseconds