Home
last modified time | relevance | path

Searched refs:GetMethodType (Results 1 – 4 of 4) sorted by relevance

/art/runtime/mirror/
Dmethod_handle_impl-inl.h28 inline ObjPtr<mirror::MethodType> MethodHandle::GetMethodType() { in GetMethodType() function
Dmethod_handle_impl.h73 ALWAYS_INLINE ObjPtr<mirror::MethodType> GetMethodType() REQUIRES_SHARED(Locks::mutator_lock_);
/art/runtime/
Dmethod_handles.cc724 Handle<mirror::MethodType> handle_type(hs.NewHandle(method_handle->GetMethodType())); in DoInvokePolymorphicMethod()
907 Handle<mirror::MethodType> handle_type(hs.NewHandle(method_handle->GetMethodType())); in MethodHandleFieldAccess()
1025 if (UNLIKELY(!callsite_type->IsConvertible(method_handle->GetMethodType()))) { in DoVarHandleInvokeTranslation()
1026 ThrowWrongMethodTypeException(method_handle->GetMethodType(), callsite_type.Get()); in DoVarHandleInvokeTranslation()
1038 mh_ptypes(hs.NewHandle(method_handle->GetMethodType()->GetPTypes())); in DoVarHandleInvokeTranslation()
1044 ThrowWrongMethodTypeException(method_handle->GetMethodType(), callsite_type.Get()); in DoVarHandleInvokeTranslation()
1067 mirror::MethodType::CloneWithoutLeadingParameter(self, method_handle->GetMethodType())); in DoVarHandleInvokeTranslation()
1105 ObjPtr<mirror::MethodType> handle_type(method_handle->GetMethodType()); in MethodHandleInvokeInternal()
1146 Handle<mirror::MethodType> method_handle_type(hs.NewHandle(method_handle->GetMethodType())); in MethodHandleInvokeExactInternal()
1250 if (UNLIKELY(callsite_type->IsExactMatch(method_handle->GetMethodType()))) { in MethodHandleInvoke()
[all …]
/art/runtime/interpreter/
Dinterpreter_common.cc949 int number_of_bsm_parameters = bsm->GetMethodType()->GetNumberOfPTypes(); in InvokeBootstrapMethod()
955 hs.NewHandle(bsm->GetMethodType()->GetPTypes()->Get(number_of_bsm_parameters - 1)); in InvokeBootstrapMethod()
964 ThrowWrongMethodTypeException(bsm->GetMethodType(), call_site_type.Get()); in InvokeBootstrapMethod()
991 if (call_site_type->GetNumberOfPTypes() != bsm->GetMethodType()->GetNumberOfPTypes()) { in InvokeBootstrapMethod()
992 ThrowWrongMethodTypeException(bsm->GetMethodType(), call_site_type.Get()); in InvokeBootstrapMethod()
1002 ObjPtr<mirror::Class> to = bsm->GetMethodType()->GetPTypes()->Get(i); in InvokeBootstrapMethod()
1008 if (!IsReturnTypeConvertible(call_site_type->GetRType(), bsm->GetMethodType()->GetRType())) { in InvokeBootstrapMethod()
1009 ThrowClassCastException(bsm->GetMethodType()->GetRType(), call_site_type->GetRType()); in InvokeBootstrapMethod()
1152 Handle<mirror::MethodType> target_method_type = hs.NewHandle(target->GetMethodType()); in DoInvokeCustom()