Searched refs:callsite_type (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | method_handles.cc | 194 Handle<mirror::MethodType> callsite_type, in ConvertJValueCommon() argument 223 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 255 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 261 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 266 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 290 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 301 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 336 Handle<mirror::MethodType> callsite_type, in ConvertAndCopyArgumentsFromCallerFrame() argument 343 ObjPtr<mirror::ObjectArray<mirror::Class>> from_types(callsite_type->GetPTypes()); in ConvertAndCopyArgumentsFromCallerFrame() 348 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertAndCopyArgumentsFromCallerFrame() [all …]
|
D | var_handles.cc | 33 Handle<mirror::MethodType> callsite_type, in VarHandleInvokeAccessorWithConversions() argument 48 if (!PerformConversions(self, callsite_type, accessor_type, &getter, &setter, num_params)) { in VarHandleInvokeAccessorWithConversions() 56 return ConvertReturnValue(callsite_type, accessor_type, result); in VarHandleInvokeAccessorWithConversions() 64 Handle<mirror::MethodType> callsite_type, in VarHandleInvokeAccessor() argument 79 var_handle->GetMethodTypeMatchForAccessMode(access_mode, callsite_type.Get()); in VarHandleInvokeAccessor() 86 callsite_type, in VarHandleInvokeAccessor() 93 callsite_type->PrettyDescriptor()); in VarHandleInvokeAccessor()
|
D | method_handles-inl.h | 108 inline bool ConvertArgumentValue(Handle<mirror::MethodType> callsite_type, in ConvertArgumentValue() argument 121 if (ConvertJValueCommon(callsite_type, callee_type, from_class, to_class, value)) { in ConvertArgumentValue() 131 inline bool ConvertArgumentValue(Handle<mirror::MethodType> callsite_type, in ConvertArgumentValue() argument 135 return ConvertArgumentValue(callsite_type, in ConvertArgumentValue() 137 callsite_type->GetPTypes()->GetWithoutChecks(index), in ConvertArgumentValue() 142 inline bool ConvertReturnValue(Handle<mirror::MethodType> callsite_type, in ConvertReturnValue() argument 146 ObjPtr<mirror::Class> to_class(callsite_type->GetRType()); in ConvertReturnValue() 155 if (ConvertJValueCommon(callsite_type, callee_type, from_class, to_class, value)) { in ConvertReturnValue() 167 Handle<mirror::MethodType> callsite_type, in PerformConversions() argument 174 Handle<mirror::ObjectArray<mirror::Class>> from_types(hs.NewHandle(callsite_type->GetPTypes())); in PerformConversions() [all …]
|
D | method_handles.h | 50 bool ConvertJValueCommon(Handle<mirror::MethodType> callsite_type, 61 ALWAYS_INLINE bool ConvertArgumentValue(Handle<mirror::MethodType> callsite_type, 72 ALWAYS_INLINE bool ConvertReturnValue(Handle<mirror::MethodType> callsite_type, 123 Handle<mirror::MethodType> callsite_type, 133 Handle<mirror::MethodType> callsite_type, 141 Handle<mirror::MethodType> callsite_type,
|
D | var_handles.h | 27 Handle<mirror::MethodType> callsite_type,
|
D | common_throws.h | 275 ObjPtr<mirror::MethodType> callsite_type)
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 691 Handle<mirror::MethodType> callsite_type(hs.NewHandle( in DoMethodHandleInvokeCommon() local 695 if (UNLIKELY(callsite_type == nullptr)) { in DoMethodHandleInvokeCommon() 712 callsite_type, in DoMethodHandleInvokeCommon() 719 callsite_type, in DoMethodHandleInvokeCommon() 735 callsite_type, in DoMethodHandleInvokeCommon() 742 callsite_type, in DoMethodHandleInvokeCommon() 799 Handle<mirror::MethodType> callsite_type(hs.NewHandle( in DoVarHandleInvokeCommon() local 802 if (UNLIKELY(callsite_type == nullptr)) { in DoVarHandleInvokeCommon() 818 callsite_type, in DoVarHandleInvokeCommon() 828 callsite_type, in DoVarHandleInvokeCommon()
|