Merge pull request #607 from maksimenko/master
[mono.git] / mono / metadata / marshal.h
index dd7f1175faf154c4c458c8a05f196b159cbd7fe5..3a99ac60bd70a39c93de836470411ce8cab0925e 100644 (file)
@@ -76,10 +76,110 @@ typedef enum {
        MARSHAL_ACTION_MANAGED_CONV_RESULT
 } MarshalAction;
 
+/*
+ * This is an extension of the MONO_WRAPPER_ enum to avoid adding more elements to that
+ * enum.
+ */
+typedef enum {
+       WRAPPER_SUBTYPE_NONE,
+       /* Subtypes of MONO_WRAPPER_MANAGED_TO_MANAGED */
+       WRAPPER_SUBTYPE_ELEMENT_ADDR,
+       WRAPPER_SUBTYPE_STRING_CTOR,
+       /* Subtypes of MONO_WRAPPER_STELEMREF */
+       WRAPPER_SUBTYPE_VIRTUAL_STELEMREF,
+       /* Subtypes of MONO_WRAPPER_UNKNOWN */
+       WRAPPER_SUBTYPE_FAST_MONITOR_ENTER,
+       WRAPPER_SUBTYPE_FAST_MONITOR_ENTER_V4,
+       WRAPPER_SUBTYPE_FAST_MONITOR_EXIT,
+       WRAPPER_SUBTYPE_PTR_TO_STRUCTURE,
+       WRAPPER_SUBTYPE_STRUCTURE_TO_PTR,
+       /* Subtypes of MONO_WRAPPER_CASTCLASS */
+       WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE,
+       WRAPPER_SUBTYPE_ISINST_WITH_CACHE,
+       /* Subtypes of MONO_WRAPPER_RUNTIME_INVOKE */
+       WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL,
+       WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC,
+       WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT,
+       WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL,
+       /* Subtypes of MONO_WRAPPER_MANAGED_TO_NATIVE */
+       WRAPPER_SUBTYPE_ICALL_WRAPPER,
+       WRAPPER_SUBTYPE_NATIVE_FUNC_AOT,
+       /* Subtypes of MONO_WRAPPER_UNKNOWN */
+       WRAPPER_SUBTYPE_SYNCHRONIZED_INNER,
+       WRAPPER_SUBTYPE_GSHAREDVT_IN,
+       WRAPPER_SUBTYPE_GSHAREDVT_OUT,
+       /* Subtypes of MONO_WRAPPER_MANAGED_TO_MANAGED */
+       WRAPPER_SUBTYPE_GENERIC_ARRAY_HELPER
+} WrapperSubtype;
+
+typedef struct {
+       MonoMethod *method;
+       MonoClass *klass;
+} NativeToManagedWrapperInfo;
+
+typedef struct {
+       MonoMethod *method;
+} StringCtorWrapperInfo;
+
+typedef struct {
+       int kind;
+} VirtualStelemrefWrapperInfo;
+
 typedef struct {
        guint32 rank, elem_size;
 } ElementAddrWrapperInfo;
 
+typedef struct {
+       MonoMethod *method;
+       /* For WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL */
+       MonoMethodSignature *sig;
+} RuntimeInvokeWrapperInfo;
+
+typedef struct {
+       MonoMethod *method;
+} ManagedToNativeWrapperInfo;
+
+typedef struct {
+       MonoMethod *method;
+} SynchronizedInnerWrapperInfo;
+
+typedef struct {
+       MonoMethod *method;
+} GenericArrayHelperWrapperInfo;
+
+typedef struct {
+       gpointer func;
+} ICallWrapperInfo;
+
+/*
+ * This structure contains additional information to uniquely identify a given wrapper
+ * method. It can be retrieved by mono_marshal_get_wrapper_info () for certain types
+ * of wrappers, i.e. ones which do not have a 1-1 association with a method/class.
+ */
+typedef struct {
+       WrapperSubtype subtype;
+       union {
+               /* RUNTIME_INVOKE_... */
+               RuntimeInvokeWrapperInfo runtime_invoke;
+               /* STRING_CTOR */
+               StringCtorWrapperInfo string_ctor;
+               /* ELEMENT_ADDR */
+               ElementAddrWrapperInfo element_addr;
+               /* VIRTUAL_STELEMREF */
+               VirtualStelemrefWrapperInfo virtual_stelemref;
+               /* MONO_WRAPPER_NATIVE_TO_MANAGED */
+               NativeToManagedWrapperInfo native_to_managed;
+               /* MONO_WRAPPER_MANAGED_TO_NATIVE */
+               ManagedToNativeWrapperInfo managed_to_native;
+               /* SYNCHRONIZED_INNER */
+               SynchronizedInnerWrapperInfo synchronized_inner;
+               /* GENERIC_ARRAY_HELPER */
+               GenericArrayHelperWrapperInfo generic_array_helper;
+               /* ICALL_WRAPPER */
+               ICallWrapperInfo icall;
+       } d;
+} WrapperInfo;
+
 G_BEGIN_DECLS
 
 /*type of the function pointer of methods returned by mono_marshal_get_runtime_invoke*/
@@ -175,18 +275,6 @@ mono_marshal_set_wrapper_info (MonoMethod *method, gpointer data) MONO_INTERNAL;
 gpointer
 mono_marshal_get_wrapper_info (MonoMethod *wrapper) MONO_INTERNAL;
 
-MonoMethod *
-mono_marshal_get_remoting_invoke (MonoMethod *method) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_xappdomain_invoke (MonoMethod *method) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_remoting_invoke_for_target (MonoMethod *method, MonoRemotingTarget target_type) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_remoting_invoke_with_check (MonoMethod *method) MONO_INTERNAL;
-
 MonoMethod *
 mono_marshal_get_delegate_begin_invoke (MonoMethod *method) MONO_INTERNAL;
 
@@ -220,6 +308,9 @@ mono_marshal_get_native_wrapper (MonoMethod *method, gboolean check_exceptions,
 MonoMethod *
 mono_marshal_get_native_func_wrapper (MonoImage *image, MonoMethodSignature *sig, MonoMethodPInvoke *piinfo, MonoMarshalSpec **mspecs, gpointer func) MONO_INTERNAL;
 
+MonoMethod*
+mono_marshal_get_native_func_wrapper_aot (MonoClass *klass) MONO_INTERNAL;
+
 MonoMethod *
 mono_marshal_get_struct_to_ptr (MonoClass *klass) MONO_INTERNAL;
 
@@ -227,22 +318,10 @@ MonoMethod *
 mono_marshal_get_ptr_to_struct (MonoClass *klass) MONO_INTERNAL;
 
 MonoMethod *
-mono_marshal_get_stfld_wrapper (MonoType *type) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_ldfld_wrapper (MonoType *type) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_ldflda_wrapper (MonoType *type) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_ldfld_remote_wrapper (MonoClass *klass) MONO_INTERNAL;
-
-MonoMethod *
-mono_marshal_get_stfld_remote_wrapper (MonoClass *klass) MONO_INTERNAL;
+mono_marshal_get_synchronized_wrapper (MonoMethod *method) MONO_INTERNAL;
 
 MonoMethod *
-mono_marshal_get_synchronized_wrapper (MonoMethod *method) MONO_INTERNAL;
+mono_marshal_get_synchronized_inner_wrapper (MonoMethod *method) MONO_INTERNAL;
 
 MonoMethod *
 mono_marshal_get_unbox_wrapper (MonoMethod *method) MONO_INTERNAL;
@@ -259,12 +338,15 @@ mono_marshal_get_isinst (MonoClass *klass) MONO_INTERNAL;
 MonoMethod *
 mono_marshal_get_castclass (MonoClass *klass) MONO_INTERNAL;
 
-MonoMethod *
-mono_marshal_get_proxy_cancast (MonoClass *klass) MONO_INTERNAL;
-
 MonoMethod *
 mono_marshal_get_stelemref (void) MONO_INTERNAL;
 
+MonoMethod*
+mono_marshal_get_virtual_stelemref (MonoClass *array_class) MONO_INTERNAL;
+
+MonoMethod**
+mono_marshal_get_virtual_stelemref_wrappers (int *nwrappers) MONO_INTERNAL;
+
 MonoMethod*
 mono_marshal_get_array_address (int rank, int elem_size) MONO_INTERNAL;
 
@@ -275,6 +357,12 @@ mono_marshal_get_generic_array_helper (MonoClass *class, MonoClass *iface,
 MonoMethod *
 mono_marshal_get_thunk_invoke_wrapper (MonoMethod *method) MONO_INTERNAL;
 
+MonoMethod*
+mono_marshal_get_gsharedvt_in_wrapper (void) MONO_INTERNAL;
+
+MonoMethod*
+mono_marshal_get_gsharedvt_out_wrapper (void) MONO_INTERNAL;
+
 void
 mono_marshal_free_dynamic_wrappers (MonoMethod *method) MONO_INTERNAL;
 
@@ -295,9 +383,6 @@ mono_marshal_free_array (gpointer *ptr, int size) MONO_INTERNAL;
 gboolean 
 mono_marshal_free_ccw (MonoObject* obj) MONO_INTERNAL;
 
-MonoObject *
-mono_marshal_xdomain_copy_value (MonoObject *val) MONO_INTERNAL;
-
 void
 cominterop_release_all_rcws (void) MONO_INTERNAL; 
 
@@ -309,36 +394,6 @@ void
 ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged (gpointer src, gint32 start_index,
                                                                      MonoArray *dest, gint32 length) MONO_INTERNAL;
 
-gpointer
-ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr (gpointer ptr, gint32 offset) MONO_INTERNAL;
-
-unsigned char
-ves_icall_System_Runtime_InteropServices_Marshal_ReadByte (gpointer ptr, gint32 offset) MONO_INTERNAL;
-
-gint16
-ves_icall_System_Runtime_InteropServices_Marshal_ReadInt16 (gpointer ptr, gint32 offset) MONO_INTERNAL;
-
-gint32
-ves_icall_System_Runtime_InteropServices_Marshal_ReadInt32 (gpointer ptr, gint32 offset) MONO_INTERNAL;
-
-gint64
-ves_icall_System_Runtime_InteropServices_Marshal_ReadInt64 (gpointer ptr, gint32 offset) MONO_INTERNAL;
-
-void
-ves_icall_System_Runtime_InteropServices_Marshal_WriteByte (gpointer ptr, gint32 offset, unsigned char val) MONO_INTERNAL;
-
-void
-ves_icall_System_Runtime_InteropServices_Marshal_WriteIntPtr (gpointer ptr, gint32 offset, gpointer val) MONO_INTERNAL;
-
-void
-ves_icall_System_Runtime_InteropServices_Marshal_WriteInt16 (gpointer ptr, gint32 offset, gint16 val) MONO_INTERNAL;
-
-void
-ves_icall_System_Runtime_InteropServices_Marshal_WriteInt32 (gpointer ptr, gint32 offset, gint32 val) MONO_INTERNAL;
-
-void
-ves_icall_System_Runtime_InteropServices_Marshal_WriteInt64 (gpointer ptr, gint32 offset, gint64 val) MONO_INTERNAL;
-
 MonoString *
 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi (char *ptr) MONO_INTERNAL;
 
@@ -477,7 +532,7 @@ mono_signature_no_pinvoke (MonoMethod *method) MONO_INTERNAL;
 /* Called from cominterop.c */
 
 void
-mono_marshal_emit_native_wrapper (MonoImage *image, MonoMethodBuilder *mb, MonoMethodSignature *sig, MonoMethodPInvoke *piinfo, MonoMarshalSpec **mspecs, gpointer func, gboolean aot, gboolean check_exceptions) MONO_INTERNAL;
+mono_marshal_emit_native_wrapper (MonoImage *image, MonoMethodBuilder *mb, MonoMethodSignature *sig, MonoMethodPInvoke *piinfo, MonoMarshalSpec **mspecs, gpointer func, gboolean aot, gboolean check_exceptions, gboolean func_param) MONO_INTERNAL;
 
 void
 mono_marshal_emit_managed_wrapper (MonoMethodBuilder *mb, MonoMethodSignature *invoke_sig, MonoMarshalSpec **mspecs, EmitMarshalContext* m, MonoMethod *method, uint32_t target_handle) MONO_INTERNAL;
@@ -495,6 +550,47 @@ mono_mb_create_and_cache (GHashTable *cache, gpointer key,
 void
 mono_marshal_emit_thread_interrupt_checkpoint (MonoMethodBuilder *mb) MONO_INTERNAL;
 
+void
+mono_marshal_use_aot_wrappers (gboolean use) MONO_INTERNAL;
+
+MonoObject *
+mono_marshal_xdomain_copy_value (MonoObject *val) MONO_INTERNAL;
+
+
+#ifndef DISABLE_REMOTING
+
+MonoMethod *
+mono_marshal_get_remoting_invoke (MonoMethod *method) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_xappdomain_invoke (MonoMethod *method) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_remoting_invoke_for_target (MonoMethod *method, MonoRemotingTarget target_type) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_remoting_invoke_with_check (MonoMethod *method) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_stfld_wrapper (MonoType *type) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_ldfld_wrapper (MonoType *type) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_ldflda_wrapper (MonoType *type) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_ldfld_remote_wrapper (MonoClass *klass) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_stfld_remote_wrapper (MonoClass *klass) MONO_INTERNAL;
+
+MonoMethod *
+mono_marshal_get_proxy_cancast (MonoClass *klass) MONO_INTERNAL;
+
+#endif
+
 G_END_DECLS
 
 #endif /* __MONO_MARSHAL_H__ */