Searched refs:kDirect (Results 1 – 17 of 17) sorted by relevance
/art/libdexfile/dex/ |
D | invoke_type.h | 26 kDirect, // <<direct>> enumerator
|
D | class_accessor.h | 125 return (GetAccessFlags() & kAccStatic) != 0 ? kStatic : kDirect; in GetDirectMethodInvokeType()
|
/art/dexlayout/ |
D | compact_dex_writer.cc | 47 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()
|
D | dexlayout.cc | 1730 kDirect, in LayoutCodeItems() 1748 for (auto& method : *(invoke_type == InvokeType::kDirect in LayoutCodeItems()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 450 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/ |
D | nterp.cc | 138 invoke_type = kDirect; in NterpGetMethod() 167 invoke_type = kDirect; in NterpGetMethod()
|
D | mterp.cc | 204 return DoInvoke<kDirect, /*is_range=*/ false, /*do_access_check=*/ false, /*is_mterp=*/ true>( in MterpInvokeDirect() 281 return DoInvoke<kDirect, /*is_range=*/ true, /*do_access_check=*/ false, /*is_mterp=*/ true>( in MterpInvokeDirectRange()
|
/art/runtime/ |
D | art_method-inl.h | 108 case kDirect: in CheckIncompatibleClassChange()
|
D | common_throws.cc | 590 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_35c(), kDirect); in ThrowNullPointerExceptionFromDexPC() 593 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_3rc(), kDirect); in ThrowNullPointerExceptionFromDexPC()
|
D | class_linker-inl.h | 244 case kDirect: in CheckInvokeClassMismatch()
|
D | intrinsics_list.h | 231 …V(ReferenceGetReferent, kDirect, kNeedsEnvironmentOrCache, kAllSideEffects, kCanThrow, "Ljava/lang…
|
D | art_method.cc | 169 return kDirect; in GetInvokeType()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 1252 invoke_type = kDirect; in artQuickResolutionTrampoline() 1256 invoke_type = kDirect; in artQuickResolutionTrampoline() 2344 EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kDirect, false); 2345 EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kDirect, true); 2362 return artInvokeCommon<kDirect, true>(method_idx, this_object, self, sp); in artInvokeDirectTrampolineWithAccessCheck()
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 1176 return HandleInvoke<kDirect, /*is_range=*/ false>(); in INVOKE_DIRECT() 1180 return HandleInvoke<kDirect, /*is_range=*/ true>(); in INVOKE_DIRECT_RANGE()
|
/art/compiler/optimizing/ |
D | code_generator.cc | 537 case kDirect: in GenerateInvokeStaticOrDirectRuntimeCall() 562 case kDirect: in GenerateInvokeUnresolvedRuntimeCall()
|
D | reference_type_propagation.cc | 564 dex_method_index, dex_cache, loader, /* referrer= */ nullptr, kDirect); in SetClassAsTypeInfo()
|
D | instruction_builder.cc | 440 InvokeType invoke_type = dex_compilation_unit_->IsStatic() ? kStatic : kDirect; in BuildIntrinsic() 798 return kDirect; in GetInvokeTypeFromOpCode() 963 if (invoke_type == kDirect || invoke_type == kStatic || invoke_type == kSuper) { in BuildInvoke()
|