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

  /art/runtime/interpreter/
interpreter_common.h 141 bool DoCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
148 bool DoLambdaCall(ArtMethod* called_method, Thread* self, ShadowFrame& shadow_frame,
158 static inline bool IsValidLambdaTargetOrThrow(ArtMethod* called_method)
162 if (UNLIKELY(called_method == nullptr)) {
164 } else if (UNLIKELY(!called_method->IsInvokable())) {
165 called_method->ThrowInvocationTimeError();
169 } else if (UNLIKELY(called_method->GetCodeItem() == nullptr)) {
229 ArtMethod* const called_method = FindMethodFromCode<kStatic, do_access_check>( local
234 if (UNLIKELY(!IsValidLambdaTargetOrThrow(called_method))) {
283 new (uninitialized_lambda_method) ArtLambdaMethod(called_method,
619 ArtMethod* const called_method = lambda_closure->GetTargetMethod(); local
634 ArtMethod* const called_method = FindMethodFromCode<type, do_access_check>( local
683 ArtMethod* const called_method = receiver->GetClass()->GetEmbeddedVTableEntry( local
    [all...]
interpreter_common.cc 497 static inline bool DoCallCommon(ArtMethod* called_method,
570 static inline bool DoCallCommon(ArtMethod* called_method,
579 if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass()
580 && called_method->IsConstructor())) {
582 jmethodID mid = soa.EncodeMethod(called_method);
583 called_method = soa.DecodeMethod(WellKnownClasses::StringInitToStringFactoryMethodID(mid));
588 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
596 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
618 DCHECK(called_method->IsNative() || called_method->IsProxyMethod())
    [all...]
  /art/compiler/driver/
compiler_driver-inl.h 386 ArtMethod* called_method; local
389 called_method = class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
395 called_method = class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
399 CHECK(called_method != nullptr);
400 CHECK(called_method->IsInvokable());
405 referrer_class, called_method,
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]
  /art/runtime/verifier/
method_verifier.cc 2839 ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range); local
2872 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range); local
2951 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range); local
3316 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range); local
    [all...]

Completed in 446 milliseconds