Merge pull request #649 from DavidS/feature/implement-additional-reference-path
[mono.git] / mono / metadata / marshal.h
1
2 /*
3  * marshal.h: Routines for marshaling complex types in P/Invoke methods.
4  * 
5  * Author:
6  *   Paolo Molaro (lupus@ximian.com)
7  *
8  * (C) 2002 Ximian, Inc.  http://www.ximian.com
9  *
10  */
11
12 #ifndef __MONO_MARSHAL_H__
13 #define __MONO_MARSHAL_H__
14
15 #include <mono/metadata/class.h>
16 #include <mono/metadata/object-internals.h>
17 #include <mono/metadata/class-internals.h>
18 #include <mono/metadata/opcodes.h>
19 #include <mono/metadata/reflection.h>
20 #include <mono/metadata/method-builder.h>
21
22 #define mono_marshal_find_bitfield_offset(type, elem, byte_offset, bitmask) \
23         do { \
24                 type tmp; \
25                 memset (&tmp, 0, sizeof (tmp)); \
26                 tmp.elem = 1; \
27                 mono_marshal_find_nonzero_bit_offset ((guint8*)&tmp, sizeof (tmp), (byte_offset), (bitmask)); \
28         } while (0)
29
30 /*
31  * This structure holds the state kept by the emit_ marshalling functions.
32  * This is exported so it can be used by cominterop.c.
33  */
34 typedef struct {
35         MonoMethodBuilder *mb;
36         MonoMethodSignature *sig;
37         MonoMethodPInvoke *piinfo;
38         int *orig_conv_args; /* Locals containing the original values of byref args */
39         int retobj_var;
40         MonoClass *retobj_class;
41         MonoMethodSignature *csig; /* Might need to be changed due to MarshalAs directives */
42         MonoImage *image; /* The image to use for looking up custom marshallers */
43 } EmitMarshalContext;
44
45 typedef enum {
46         /*
47          * This is invoked to convert arguments from the current types to
48          * the underlying types expected by the platform routine.  If required,
49          * the methods create a temporary variable with the proper type, and return
50          * the location for it (either the passed argument, or the newly allocated
51          * local slot).
52          */
53         MARSHAL_ACTION_CONV_IN,
54
55         /*
56          * This operation is called to push the actual value that was optionally
57          * converted on the first stage
58          */
59         MARSHAL_ACTION_PUSH,
60
61         /*
62          * Convert byref arguments back or free resources allocated during the
63          * CONV_IN stage
64          */
65         MARSHAL_ACTION_CONV_OUT,
66
67         /*
68          * The result from the unmanaged call is at the top of the stack when
69          * this action is invoked.    The result should be stored in the
70          * third local variable slot. 
71          */
72         MARSHAL_ACTION_CONV_RESULT,
73
74         MARSHAL_ACTION_MANAGED_CONV_IN,
75         MARSHAL_ACTION_MANAGED_CONV_OUT,
76         MARSHAL_ACTION_MANAGED_CONV_RESULT
77 } MarshalAction;
78
79 /*
80  * This is an extension of the MONO_WRAPPER_ enum to avoid adding more elements to that
81  * enum.
82  */
83 typedef enum {
84         WRAPPER_SUBTYPE_NONE,
85         /* Subtypes of MONO_WRAPPER_MANAGED_TO_MANAGED */
86         WRAPPER_SUBTYPE_ELEMENT_ADDR,
87         WRAPPER_SUBTYPE_STRING_CTOR,
88         /* Subtypes of MONO_WRAPPER_STELEMREF */
89         WRAPPER_SUBTYPE_VIRTUAL_STELEMREF,
90         /* Subtypes of MONO_WRAPPER_UNKNOWN */
91         WRAPPER_SUBTYPE_FAST_MONITOR_ENTER,
92         WRAPPER_SUBTYPE_FAST_MONITOR_ENTER_V4,
93         WRAPPER_SUBTYPE_FAST_MONITOR_EXIT,
94         WRAPPER_SUBTYPE_PTR_TO_STRUCTURE,
95         WRAPPER_SUBTYPE_STRUCTURE_TO_PTR,
96         /* Subtypes of MONO_WRAPPER_CASTCLASS */
97         WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE,
98         WRAPPER_SUBTYPE_ISINST_WITH_CACHE,
99         /* Subtypes of MONO_WRAPPER_RUNTIME_INVOKE */
100         WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL,
101         WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC,
102         WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT,
103         WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL,
104         /* Subtypes of MONO_WRAPPER_MANAGED_TO_NATIVE */
105         WRAPPER_SUBTYPE_ICALL_WRAPPER,
106         WRAPPER_SUBTYPE_NATIVE_FUNC_AOT,
107         /* Subtypes of MONO_WRAPPER_UNKNOWN */
108         WRAPPER_SUBTYPE_SYNCHRONIZED_INNER,
109         WRAPPER_SUBTYPE_GSHAREDVT_IN,
110         WRAPPER_SUBTYPE_GSHAREDVT_OUT,
111         /* Subtypes of MONO_WRAPPER_MANAGED_TO_MANAGED */
112         WRAPPER_SUBTYPE_GENERIC_ARRAY_HELPER
113 } WrapperSubtype;
114
115 typedef struct {
116         MonoMethod *method;
117         MonoClass *klass;
118 } NativeToManagedWrapperInfo;
119
120 typedef struct {
121         MonoMethod *method;
122 } StringCtorWrapperInfo;
123
124 typedef struct {
125         int kind;
126 } VirtualStelemrefWrapperInfo;
127
128 typedef struct {
129         guint32 rank, elem_size;
130 } ElementAddrWrapperInfo;
131
132 typedef struct {
133         MonoMethod *method;
134         /* For WRAPPER_SUBTYPE_RUNTIME_INVOKE_NORMAL */
135         MonoMethodSignature *sig;
136 } RuntimeInvokeWrapperInfo;
137
138 typedef struct {
139         MonoMethod *method;
140 } ManagedToNativeWrapperInfo;
141
142 typedef struct {
143         MonoMethod *method;
144 } SynchronizedInnerWrapperInfo;
145
146 typedef struct {
147         MonoMethod *method;
148 } GenericArrayHelperWrapperInfo;
149
150 typedef struct {
151         gpointer func;
152 } ICallWrapperInfo;
153
154 /*
155  * This structure contains additional information to uniquely identify a given wrapper
156  * method. It can be retrieved by mono_marshal_get_wrapper_info () for certain types
157  * of wrappers, i.e. ones which do not have a 1-1 association with a method/class.
158  */
159 typedef struct {
160         WrapperSubtype subtype;
161         union {
162                 /* RUNTIME_INVOKE_... */
163                 RuntimeInvokeWrapperInfo runtime_invoke;
164                 /* STRING_CTOR */
165                 StringCtorWrapperInfo string_ctor;
166                 /* ELEMENT_ADDR */
167                 ElementAddrWrapperInfo element_addr;
168                 /* VIRTUAL_STELEMREF */
169                 VirtualStelemrefWrapperInfo virtual_stelemref;
170                 /* MONO_WRAPPER_NATIVE_TO_MANAGED */
171                 NativeToManagedWrapperInfo native_to_managed;
172                 /* MONO_WRAPPER_MANAGED_TO_NATIVE */
173                 ManagedToNativeWrapperInfo managed_to_native;
174                 /* SYNCHRONIZED_INNER */
175                 SynchronizedInnerWrapperInfo synchronized_inner;
176                 /* GENERIC_ARRAY_HELPER */
177                 GenericArrayHelperWrapperInfo generic_array_helper;
178                 /* ICALL_WRAPPER */
179                 ICallWrapperInfo icall;
180         } d;
181 } WrapperInfo;
182
183 G_BEGIN_DECLS
184
185 /*type of the function pointer of methods returned by mono_marshal_get_runtime_invoke*/
186 typedef MonoObject *(*RuntimeInvokeFunction) (MonoObject *this, void **params, MonoObject **exc, void* compiled_method);
187
188 typedef void (*RuntimeInvokeDynamicFunction) (void *args, MonoObject **exc, void* compiled_method);
189
190 /* marshaling helper functions */
191
192 void
193 mono_marshal_init (void) MONO_INTERNAL;
194
195 void
196 mono_marshal_init_tls (void) MONO_INTERNAL;
197
198 void
199 mono_marshal_cleanup (void) MONO_INTERNAL;
200
201 gint32
202 mono_class_native_size (MonoClass *klass, guint32 *align) MONO_INTERNAL;
203
204 MonoMarshalType *
205 mono_marshal_load_type_info (MonoClass* klass) MONO_INTERNAL;
206
207 gint32
208 mono_marshal_type_size (MonoType *type, MonoMarshalSpec *mspec, guint32 *align,
209                         gboolean as_field, gboolean unicode) MONO_INTERNAL;
210
211 int            
212 mono_type_native_stack_size (MonoType *type, guint32 *alignment) MONO_INTERNAL;
213
214 gpointer
215 mono_array_to_savearray (MonoArray *array) MONO_INTERNAL;
216
217 gpointer
218 mono_array_to_lparray (MonoArray *array) MONO_INTERNAL;
219
220 void
221 mono_free_lparray (MonoArray *array, gpointer* nativeArray) MONO_INTERNAL;
222
223 void
224 mono_string_utf8_to_builder (MonoStringBuilder *sb, char *text) MONO_INTERNAL;
225
226 void
227 mono_string_utf16_to_builder (MonoStringBuilder *sb, gunichar2 *text) MONO_INTERNAL;
228
229 gpointer
230 mono_string_builder_to_utf8 (MonoStringBuilder *sb) MONO_INTERNAL;
231
232 gpointer
233 mono_string_builder_to_utf16 (MonoStringBuilder *sb) MONO_INTERNAL;
234
235 gpointer
236 mono_string_to_ansibstr (MonoString *string_obj) MONO_INTERNAL;
237
238 gpointer
239 mono_string_to_bstr (MonoString *string_obj) MONO_INTERNAL;
240
241 void
242 mono_string_to_byvalstr (gpointer dst, MonoString *src, int size) MONO_INTERNAL;
243
244 void
245 mono_string_to_byvalwstr (gpointer dst, MonoString *src, int size) MONO_INTERNAL;
246
247 gpointer
248 mono_delegate_to_ftnptr (MonoDelegate *delegate) MONO_INTERNAL;
249
250 MonoDelegate*
251 mono_ftnptr_to_delegate (MonoClass *klass, gpointer ftn) MONO_INTERNAL;
252
253 void mono_delegate_free_ftnptr (MonoDelegate *delegate) MONO_INTERNAL;
254
255 void
256 mono_marshal_set_last_error (void) MONO_INTERNAL;
257
258 gpointer
259 mono_marshal_asany (MonoObject *obj, MonoMarshalNative string_encoding, int param_attrs) MONO_INTERNAL;
260
261 void
262 mono_marshal_free_asany (MonoObject *o, gpointer ptr, MonoMarshalNative string_encoding, int param_attrs) MONO_INTERNAL;
263
264 guint
265 mono_type_to_ldind (MonoType *type) MONO_INTERNAL;
266
267 guint
268 mono_type_to_stind (MonoType *type) MONO_INTERNAL;
269
270 /* functions to create various architecture independent helper functions */
271
272 MonoMethod *
273 mono_marshal_method_from_wrapper (MonoMethod *wrapper) MONO_INTERNAL;
274
275 void
276 mono_marshal_set_wrapper_info (MonoMethod *method, gpointer data) MONO_INTERNAL;
277
278 gpointer
279 mono_marshal_get_wrapper_info (MonoMethod *wrapper) MONO_INTERNAL;
280
281 MonoMethod *
282 mono_marshal_get_delegate_begin_invoke (MonoMethod *method) MONO_INTERNAL;
283
284 MonoMethod *
285 mono_marshal_get_delegate_end_invoke (MonoMethod *method) MONO_INTERNAL;
286
287 MonoMethod *
288 mono_marshal_get_delegate_invoke (MonoMethod *method, MonoDelegate *del) MONO_INTERNAL;
289
290 MonoMethod *
291 mono_marshal_get_runtime_invoke (MonoMethod *method, gboolean virtual) MONO_INTERNAL;
292
293 MonoMethod*
294 mono_marshal_get_runtime_invoke_dynamic (void) MONO_INTERNAL;
295
296 MonoMethodSignature*
297 mono_marshal_get_string_ctor_signature (MonoMethod *method) MONO_INTERNAL;
298
299 MonoMethod *
300 mono_marshal_get_managed_wrapper (MonoMethod *method, MonoClass *delegate_klass, uint32_t this_loc) MONO_INTERNAL;
301
302 gpointer
303 mono_marshal_get_vtfixup_ftnptr (MonoImage *image, guint32 token, guint16 type) MONO_INTERNAL;
304
305 MonoMethod *
306 mono_marshal_get_icall_wrapper (MonoMethodSignature *sig, const char *name, gconstpointer func, gboolean check_exceptions) MONO_INTERNAL;
307
308 MonoMethod *
309 mono_marshal_get_native_wrapper (MonoMethod *method, gboolean check_exceptions, gboolean aot) MONO_INTERNAL;
310
311 MonoMethod *
312 mono_marshal_get_native_func_wrapper (MonoImage *image, MonoMethodSignature *sig, MonoMethodPInvoke *piinfo, MonoMarshalSpec **mspecs, gpointer func) MONO_INTERNAL;
313
314 MonoMethod*
315 mono_marshal_get_native_func_wrapper_aot (MonoClass *klass) MONO_INTERNAL;
316
317 MonoMethod *
318 mono_marshal_get_struct_to_ptr (MonoClass *klass) MONO_INTERNAL;
319
320 MonoMethod *
321 mono_marshal_get_ptr_to_struct (MonoClass *klass) MONO_INTERNAL;
322
323 MonoMethod *
324 mono_marshal_get_synchronized_wrapper (MonoMethod *method) MONO_INTERNAL;
325
326 MonoMethod *
327 mono_marshal_get_synchronized_inner_wrapper (MonoMethod *method) MONO_INTERNAL;
328
329 MonoMethod *
330 mono_marshal_get_unbox_wrapper (MonoMethod *method) MONO_INTERNAL;
331
332 MonoMethod *
333 mono_marshal_get_castclass_with_cache (void) MONO_INTERNAL;
334
335 MonoMethod *
336 mono_marshal_get_isinst_with_cache (void) MONO_INTERNAL;
337
338 MonoMethod *
339 mono_marshal_get_isinst (MonoClass *klass) MONO_INTERNAL;
340
341 MonoMethod *
342 mono_marshal_get_castclass (MonoClass *klass) MONO_INTERNAL;
343
344 MonoMethod *
345 mono_marshal_get_stelemref (void) MONO_INTERNAL;
346
347 MonoMethod*
348 mono_marshal_get_virtual_stelemref (MonoClass *array_class) MONO_INTERNAL;
349
350 MonoMethod**
351 mono_marshal_get_virtual_stelemref_wrappers (int *nwrappers) MONO_INTERNAL;
352
353 MonoMethod*
354 mono_marshal_get_array_address (int rank, int elem_size) MONO_INTERNAL;
355
356 MonoMethod *
357 mono_marshal_get_generic_array_helper (MonoClass *class, MonoClass *iface,
358                                        gchar *name, MonoMethod *method) MONO_INTERNAL;
359
360 MonoMethod *
361 mono_marshal_get_thunk_invoke_wrapper (MonoMethod *method) MONO_INTERNAL;
362
363 MonoMethod*
364 mono_marshal_get_gsharedvt_in_wrapper (void) MONO_INTERNAL;
365
366 MonoMethod*
367 mono_marshal_get_gsharedvt_out_wrapper (void) MONO_INTERNAL;
368
369 void
370 mono_marshal_free_dynamic_wrappers (MonoMethod *method) MONO_INTERNAL;
371
372 void
373 mono_marshal_free_inflated_wrappers (MonoMethod *method) MONO_INTERNAL;
374
375 /* marshaling internal calls */
376
377 void * 
378 mono_marshal_alloc (gulong size) MONO_INTERNAL;
379
380 void 
381 mono_marshal_free (gpointer ptr) MONO_INTERNAL;
382
383 void
384 mono_marshal_free_array (gpointer *ptr, int size) MONO_INTERNAL;
385
386 gboolean 
387 mono_marshal_free_ccw (MonoObject* obj) MONO_INTERNAL;
388
389 void
390 cominterop_release_all_rcws (void) MONO_INTERNAL; 
391
392 void
393 ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged (MonoArray *src, gint32 start_index,
394                                                                     gpointer dest, gint32 length) MONO_INTERNAL;
395
396 void
397 ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged (gpointer src, gint32 start_index,
398                                                                       MonoArray *dest, gint32 length) MONO_INTERNAL;
399
400 MonoString *
401 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi (char *ptr) MONO_INTERNAL;
402
403 MonoString *
404 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len (char *ptr, gint32 len) MONO_INTERNAL;
405
406 MonoString *
407 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni (guint16 *ptr) MONO_INTERNAL;
408
409 MonoString *
410 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni_len (guint16 *ptr, gint32 len) MONO_INTERNAL;
411
412 MonoString *
413 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringBSTR (gpointer ptr) MONO_INTERNAL;
414
415 guint32
416 ves_icall_System_Runtime_InteropServices_Marshal_GetComSlotForMethodInfoInternal (MonoReflectionMethod *m) MONO_INTERNAL;
417
418 guint32 
419 ves_icall_System_Runtime_InteropServices_Marshal_GetLastWin32Error (void) MONO_INTERNAL;
420
421 guint32 
422 ves_icall_System_Runtime_InteropServices_Marshal_SizeOf (MonoReflectionType *rtype) MONO_INTERNAL;
423
424 void
425 ves_icall_System_Runtime_InteropServices_Marshal_StructureToPtr (MonoObject *obj, gpointer dst, MonoBoolean delete_old) MONO_INTERNAL;
426
427 void
428 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure (gpointer src, MonoObject *dst) MONO_INTERNAL;
429
430 MonoObject *
431 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type (gpointer src, MonoReflectionType *type) MONO_INTERNAL;
432
433 int
434 ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf (MonoReflectionType *type, MonoString *field_name) MONO_INTERNAL;
435
436 gpointer
437 ves_icall_System_Runtime_InteropServices_Marshal_StringToBSTR (MonoString *string) MONO_INTERNAL;
438
439 gpointer
440 ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi (MonoString *string) MONO_INTERNAL;
441
442 gpointer
443 ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni (MonoString *string) MONO_INTERNAL;
444
445 void
446 ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure (gpointer src, MonoReflectionType *type) MONO_INTERNAL;
447
448 void*
449 ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem (int size) MONO_INTERNAL;
450
451 void
452 ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem (void *ptr) MONO_INTERNAL;
453
454 gpointer 
455 ves_icall_System_Runtime_InteropServices_Marshal_ReAllocCoTaskMem (gpointer ptr, int size) MONO_INTERNAL;
456
457 void*
458 ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal (int size) MONO_INTERNAL;
459
460 gpointer 
461 ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal (gpointer ptr, int size) MONO_INTERNAL;
462
463 void
464 ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal (void *ptr) MONO_INTERNAL;
465
466 void
467 ves_icall_System_Runtime_InteropServices_Marshal_FreeBSTR (void *ptr) MONO_INTERNAL;
468
469 void*
470 ves_icall_System_Runtime_InteropServices_Marshal_UnsafeAddrOfPinnedArrayElement (MonoArray *arrayobj, int index) MONO_INTERNAL;
471
472 MonoDelegate*
473 ves_icall_System_Runtime_InteropServices_Marshal_GetDelegateForFunctionPointerInternal (void *ftn, MonoReflectionType *type) MONO_INTERNAL;
474
475 int
476 ves_icall_System_Runtime_InteropServices_Marshal_AddRefInternal (gpointer pUnk) MONO_INTERNAL;
477
478 int
479 ves_icall_System_Runtime_InteropServices_Marshal_QueryInterfaceInternal (gpointer pUnk, gpointer riid, gpointer* ppv) MONO_INTERNAL;
480
481 int
482 ves_icall_System_Runtime_InteropServices_Marshal_ReleaseInternal (gpointer pUnk) MONO_INTERNAL;
483
484 void*
485 ves_icall_System_Runtime_InteropServices_Marshal_GetIUnknownForObjectInternal (MonoObject* object) MONO_INTERNAL;
486
487 MonoObject*
488 ves_icall_System_Runtime_InteropServices_Marshal_GetObjectForCCW (void* pUnk) MONO_INTERNAL;
489
490 void*
491 ves_icall_System_Runtime_InteropServices_Marshal_GetIDispatchForObjectInternal (MonoObject* object) MONO_INTERNAL;
492
493 void*
494 ves_icall_System_Runtime_InteropServices_Marshal_GetCCW (MonoObject* object, MonoReflectionType* type) MONO_INTERNAL;
495
496 MonoBoolean
497 ves_icall_System_Runtime_InteropServices_Marshal_IsComObject (MonoObject* object) MONO_INTERNAL;
498
499 gint32
500 ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal (MonoObject* object) MONO_INTERNAL;
501
502 MonoObject *
503 ves_icall_System_ComObject_CreateRCW (MonoReflectionType *type) MONO_INTERNAL;
504
505 void
506 ves_icall_System_ComObject_ReleaseInterfaces(MonoComObject* obj) MONO_INTERNAL;
507
508 gpointer
509 ves_icall_System_ComObject_GetInterfaceInternal (MonoComObject* obj, MonoReflectionType* type, MonoBoolean throw_exception) MONO_INTERNAL;
510
511 void
512 ves_icall_Mono_Interop_ComInteropProxy_AddProxy (gpointer pUnk, MonoComInteropProxy* proxy) MONO_INTERNAL;
513
514 MonoComInteropProxy*
515 ves_icall_Mono_Interop_ComInteropProxy_FindProxy (gpointer pUnk) MONO_INTERNAL;
516
517 void
518 mono_win32_compat_CopyMemory (gpointer dest, gconstpointer source, gsize length);
519
520 void
521 mono_win32_compat_FillMemory (gpointer dest, gsize length, guchar fill);
522
523 void
524 mono_win32_compat_MoveMemory (gpointer dest, gconstpointer source, gsize length);
525
526 void
527 mono_win32_compat_ZeroMemory (gpointer dest, gsize length);
528
529 void
530 mono_marshal_find_nonzero_bit_offset (guint8 *buf, int len, int *byte_offset, guint8 *bitmask) MONO_INTERNAL;
531
532 MonoMethodSignature*
533 mono_signature_no_pinvoke (MonoMethod *method) MONO_INTERNAL;
534
535 /* Called from cominterop.c */
536
537 void
538 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;
539
540 void
541 mono_marshal_emit_managed_wrapper (MonoMethodBuilder *mb, MonoMethodSignature *invoke_sig, MonoMarshalSpec **mspecs, EmitMarshalContext* m, MonoMethod *method, uint32_t target_handle) MONO_INTERNAL;
542
543 GHashTable*
544 mono_marshal_get_cache (GHashTable **var, GHashFunc hash_func, GCompareFunc equal_func) MONO_INTERNAL;
545
546 MonoMethod*
547 mono_marshal_find_in_cache (GHashTable *cache, gpointer key) MONO_INTERNAL;
548
549 MonoMethod*
550 mono_mb_create_and_cache (GHashTable *cache, gpointer key,
551                                                   MonoMethodBuilder *mb, MonoMethodSignature *sig,
552                                                   int max_stack) MONO_INTERNAL;
553 void
554 mono_marshal_emit_thread_interrupt_checkpoint (MonoMethodBuilder *mb) MONO_INTERNAL;
555
556 void
557 mono_marshal_use_aot_wrappers (gboolean use) MONO_INTERNAL;
558
559 MonoObject *
560 mono_marshal_xdomain_copy_value (MonoObject *val) MONO_INTERNAL;
561
562
563 #ifndef DISABLE_REMOTING
564
565 MonoMethod *
566 mono_marshal_get_remoting_invoke (MonoMethod *method) MONO_INTERNAL;
567
568 MonoMethod *
569 mono_marshal_get_xappdomain_invoke (MonoMethod *method) MONO_INTERNAL;
570
571 MonoMethod *
572 mono_marshal_get_remoting_invoke_for_target (MonoMethod *method, MonoRemotingTarget target_type) MONO_INTERNAL;
573
574 MonoMethod *
575 mono_marshal_get_remoting_invoke_with_check (MonoMethod *method) MONO_INTERNAL;
576
577 MonoMethod *
578 mono_marshal_get_stfld_wrapper (MonoType *type) MONO_INTERNAL;
579
580 MonoMethod *
581 mono_marshal_get_ldfld_wrapper (MonoType *type) MONO_INTERNAL;
582
583 MonoMethod *
584 mono_marshal_get_ldflda_wrapper (MonoType *type) MONO_INTERNAL;
585
586 MonoMethod *
587 mono_marshal_get_ldfld_remote_wrapper (MonoClass *klass) MONO_INTERNAL;
588
589 MonoMethod *
590 mono_marshal_get_stfld_remote_wrapper (MonoClass *klass) MONO_INTERNAL;
591
592 MonoMethod *
593 mono_marshal_get_proxy_cancast (MonoClass *klass) MONO_INTERNAL;
594
595 #endif
596
597 G_END_DECLS
598
599 #endif /* __MONO_MARSHAL_H__ */
600
601