Home
last modified time | relevance | path

Searched refs:kDirect (Results 1 – 19 of 19) sorted by relevance

/art/libdexfile/dex/
Dinvoke_type.h26 kDirect, // <<direct>> enumerator
Dclass_accessor.h125 return (GetAccessFlags() & kAccStatic) != 0 ? kStatic : kDirect; in GetDirectMethodInvokeType()
/art/dexlayout/
Dcompact_dex_writer.cc47 kDirect, in WriteDebugInfoOffsetTable()
58 for (auto& method : *(invoke_type == InvokeType::kDirect in WriteDebugInfoOffsetTable()
235 kDirect, in SortDebugInfosByMethodIndex()
246 for (auto& method : *(invoke_type == InvokeType::kDirect in SortDebugInfosByMethodIndex()
333 kDirect, in CanGenerateCompactDex()
346 for (auto& method : *(invoke_type == InvokeType::kDirect in CanGenerateCompactDex()
Ddexlayout.cc1733 kDirect, in LayoutCodeItems()
1751 for (auto& method : *(invoke_type == InvokeType::kDirect in LayoutCodeItems()
/art/runtime/jni/
Dcheck_jni.cc2277 CallMethodA(__FUNCTION__, env, obj, c, mid, vargs, Primitive::kPrimVoid, kDirect); in CallNonvirtualVoidMethodA()
2290 CallMethodV(__FUNCTION__, env, obj, c, mid, vargs, Primitive::kPrimVoid, kDirect); in CallNonvirtualVoidMethodV()
2307 CallMethodV(__FUNCTION__, env, obj, c, mid, vargs, Primitive::kPrimVoid, kDirect); in CallNonvirtualVoidMethod()
2325 return CallMethodA(__FUNCTION__, env, obj, c, mid, vargs, ptype, kDirect).shorty; \
2338 return CallMethodV(__FUNCTION__, env, obj, c, mid, vargs, ptype, kDirect).shorty; \
2359 CallMethodV(__FUNCTION__, env, obj, c, mid, vargs, ptype, kDirect).shorty; \
3053 case kDirect: { in CheckCallArgs()
3090 case kDirect: in CallMethodA()
3106 case kDirect: in CallMethodA()
3122 case kDirect: in CallMethodA()
[all …]
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h450 case kDirect: in FindMethodToCall()
598 EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kDirect);
667 } else if (type == kStatic || type == kDirect) { in FindMethodFast()
/art/runtime/interpreter/mterp/
Dnterp.cc167 invoke_type = kDirect; in NterpGetMethod()
196 invoke_type = kDirect; in NterpGetMethod()
Dmterp.cc203 return DoInvoke<kDirect, /*is_range=*/ false, /*do_access_check=*/ false, /*is_mterp=*/ true>( in MterpInvokeDirect()
280 return DoInvoke<kDirect, /*is_range=*/ true, /*do_access_check=*/ false, /*is_mterp=*/ true>( in MterpInvokeDirectRange()
/art/runtime/
Dart_method-inl.h108 case kDirect: in CheckIncompatibleClassChange()
Dcommon_throws.cc590 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_35c(), kDirect); in ThrowNullPointerExceptionFromDexPC()
593 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_3rc(), kDirect); in ThrowNullPointerExceptionFromDexPC()
Dintrinsics_list.h232 …V(ReferenceGetReferent, kDirect, kNeedsEnvironmentOrCache, kAllSideEffects, kCanThrow, "Ljava/lang…
Dclass_linker-inl.h245 case kDirect: in CheckInvokeClassMismatch()
Dart_method.cc169 return kDirect; in GetInvokeType()
Dclass_linker.cc9362 InvokeType::kDirect); in ResolveMethodHandleForMethod()
9387 InvokeType::kDirect); in ResolveMethodHandleForMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1251 invoke_type = kDirect; in artQuickResolutionTrampoline()
1255 invoke_type = kDirect; in artQuickResolutionTrampoline()
2318 EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kDirect, false);
2319 EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kDirect, true);
2336 return artInvokeCommon<kDirect, true>(method_idx, this_object, self, sp); in artInvokeDirectTrampolineWithAccessCheck()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h1176 return HandleInvoke<kDirect, /*is_range=*/ false>(); in INVOKE_DIRECT()
1180 return HandleInvoke<kDirect, /*is_range=*/ true>(); in INVOKE_DIRECT_RANGE()
/art/compiler/optimizing/
Dinstruction_builder.cc451 InvokeType invoke_type = dex_compilation_unit_->IsStatic() ? kStatic : kDirect; in BuildIntrinsic()
809 return kDirect; in GetInvokeTypeFromOpCode()
927 if (*invoke_type == kDirect || *invoke_type == kStatic || *invoke_type == kSuper) { in ResolveMethod()
1030 if (invoke_type == kDirect || invoke_type == kStatic || invoke_type == kSuper) { in BuildInvoke()
Dcode_generator.cc588 case kDirect: in GenerateInvokeStaticOrDirectRuntimeCall()
613 case kDirect: in GenerateInvokeUnresolvedRuntimeCall()
Dreference_type_propagation.cc525 dex_method_index, dex_cache, loader, /* referrer= */ nullptr, kDirect); in SetClassAsTypeInfo()