Searched refs:callsite_type (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | method_handles.cc | 195 Handle<mirror::MethodType> callsite_type, in ConvertJValueCommon() argument 224 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 256 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 262 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 267 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 291 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 302 ThrowWrongMethodTypeException(callee_type.Get(), callsite_type.Get()); in ConvertJValueCommon() 337 Handle<mirror::MethodType> callsite_type, in ConvertAndCopyArgumentsFromCallerFrame() argument 344 ObjPtr<mirror::ObjectArray<mirror::Class>> from_types(callsite_type->GetPTypes()); in ConvertAndCopyArgumentsFromCallerFrame() 349 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 | 278 ObjPtr<mirror::MethodType> callsite_type)
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 366 Handle<mirror::MethodType> callsite_type(hs.NewHandle( in DoMethodHandleInvokeCommon() local 370 if (UNLIKELY(callsite_type == nullptr)) { in DoMethodHandleInvokeCommon() 387 callsite_type, in DoMethodHandleInvokeCommon() 394 callsite_type, in DoMethodHandleInvokeCommon() 410 callsite_type, in DoMethodHandleInvokeCommon() 417 callsite_type, in DoMethodHandleInvokeCommon() 474 Handle<mirror::MethodType> callsite_type(hs.NewHandle( in DoVarHandleInvokeCommon() local 477 if (UNLIKELY(callsite_type == nullptr)) { in DoVarHandleInvokeCommon() 493 callsite_type, in DoVarHandleInvokeCommon() 503 callsite_type, in DoVarHandleInvokeCommon()
|