diff options
Diffstat (limited to 'runtime/method_handles.h')
-rw-r--r-- | runtime/method_handles.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/method_handles.h b/runtime/method_handles.h index b6e31345e1..a098bc6783 100644 --- a/runtime/method_handles.h +++ b/runtime/method_handles.h @@ -127,6 +127,13 @@ bool PerformConversions(Thread* self, int32_t start_index, int32_t end_index) REQUIRES_SHARED(Locks::mutator_lock_); +template <typename G, typename S> +bool CopyArguments(Thread* self, + Handle<mirror::MethodType> method_type, + Handle<mirror::MethodType> callee_type, + G* getter, + S* setter) REQUIRES_SHARED(Locks::mutator_lock_); + bool MethodHandleInvoke(Thread* self, ShadowFrame& shadow_frame, Handle<mirror::MethodHandle> method_handle, |