Searched refs:kSuper (Results 1 – 13 of 13) sorted by relevance
/art/libdexfile/dex/ |
D | invoke_type.h | 28 kSuper, // <<super>> enumerator
|
D | class_accessor.h | 133 return kSuper; in GetVirtualMethodInvokeType()
|
/art/runtime/interpreter/mterp/ |
D | nterp.cc | 185 invoke_type = kSuper; in NterpGetMethod() 214 invoke_type = kSuper; in NterpGetMethod() 241 if (invoke_type == kSuper) { in NterpGetMethod()
|
D | mterp.cc | 181 return DoInvoke<kSuper, /*is_range=*/ false, /*do_access_check=*/ false, /*is_mterp=*/ true>( in MterpInvokeSuper() 258 return DoInvoke<kSuper, /*is_range=*/ true, /*do_access_check=*/ false, /*is_mterp=*/ true>( in MterpInvokeSuperRange()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 466 case kSuper: { in FindMethodToCall() 600 EXPLICIT_FIND_METHOD_FROM_CODE_TYPED_TEMPLATE_DECL(kSuper); 669 } else if (type == kSuper) { in FindMethodFast()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 1267 invoke_type = kSuper; in artQuickResolutionTrampoline() 1271 invoke_type = kSuper; in artQuickResolutionTrampoline() 1331 if (virtual_or_interface || invoke_type == kSuper) { in artQuickResolutionTrampoline() 1342 DCHECK_EQ(invoke_type, kSuper); in artQuickResolutionTrampoline() 2322 EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kSuper, false); 2323 EXPLICIT_INVOKE_COMMON_TEMPLATE_DECL(kSuper, true); 2352 return artInvokeCommon<kSuper, true>(method_idx, this_object, self, sp); in artInvokeSuperTrampolineWithAccessCheck()
|
/art/runtime/ |
D | art_method-inl.h | 116 case kSuper: in CheckIncompatibleClassChange()
|
D | common_throws.cc | 602 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_35c(), kSuper); in ThrowNullPointerExceptionFromDexPC() 605 ThrowNullPointerExceptionForMethodAccess(instr.VRegB_3rc(), kSuper); in ThrowNullPointerExceptionFromDexPC()
|
D | class_linker-inl.h | 228 case kSuper: in CheckInvokeClassMismatch()
|
D | class_linker.cc | 9393 InvokeType::kSuper); in ResolveMethodHandleForMethod()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 820 return kSuper; in GetInvokeTypeFromOpCode() 871 if (*invoke_type == kSuper) { in ResolveMethod() 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() 1031 if (invoke_type == kSuper) { in BuildInvoke()
|
D | code_generator.cc | 591 case kSuper: in GenerateInvokeStaticOrDirectRuntimeCall() 619 case kSuper: in GenerateInvokeUnresolvedRuntimeCall()
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 1168 return HandleInvoke<kSuper, /*is_range=*/ false>(); in INVOKE_SUPER() 1172 return HandleInvoke<kSuper, /*is_range=*/ true>(); in INVOKE_SUPER_RANGE()
|