Changed TryPeek to handle race condition with Dequeue.
[mono.git] / mono / metadata / metadata-internals.h
1
2 #ifndef __MONO_METADATA_INTERNALS_H__
3 #define __MONO_METADATA_INTERNALS_H__
4
5 #include "mono/metadata/image.h"
6 #include "mono/metadata/blob.h"
7 #include "mono/metadata/mempool.h"
8 #include "mono/metadata/domain-internals.h"
9 #include "mono/metadata/mono-hash.h"
10 #include "mono/utils/mono-compiler.h"
11 #include "mono/utils/mono-dl.h"
12 #include "mono/utils/monobitset.h"
13 #include "mono/utils/mono-property-hash.h"
14 #include "mono/utils/mono-value-hash.h"
15 #include <mono/utils/mono-error.h>
16
17 struct _MonoType {
18         union {
19                 MonoClass *klass; /* for VALUETYPE and CLASS */
20                 MonoType *type;   /* for PTR */
21                 MonoArrayType *array; /* for ARRAY */
22                 MonoMethodSignature *method;
23                 MonoGenericParam *generic_param; /* for VAR and MVAR */
24                 MonoGenericClass *generic_class; /* for GENERICINST */
25         } data;
26         unsigned int attrs    : 16; /* param attributes or field flags */
27         MonoTypeEnum type     : 8;
28         unsigned int num_mods : 6;  /* max 64 modifiers follow at the end */
29         unsigned int byref    : 1;
30         unsigned int pinned   : 1;  /* valid when included in a local var signature */
31         MonoCustomMod modifiers [MONO_ZERO_LEN_ARRAY]; /* this may grow */
32 };
33
34 #define MONO_SIZEOF_TYPE (offsetof (struct _MonoType, modifiers))
35
36 #define MONO_SECMAN_FLAG_INIT(x)                (x & 0x2)
37 #define MONO_SECMAN_FLAG_GET_VALUE(x)           (x & 0x1)
38 #define MONO_SECMAN_FLAG_SET_VALUE(x,y)         do { x = ((y) ? 0x3 : 0x2); } while (0)
39
40 #define MONO_PUBLIC_KEY_TOKEN_LENGTH    17
41
42 #define MONO_PROCESSOR_ARCHITECTURE_NONE 0
43 #define MONO_PROCESSOR_ARCHITECTURE_MSIL 1
44 #define MONO_PROCESSOR_ARCHITECTURE_X86 2
45 #define MONO_PROCESSOR_ARCHITECTURE_IA64 3
46 #define MONO_PROCESSOR_ARCHITECTURE_AMD64 4
47 #define MONO_PROCESSOR_ARCHITECTURE_ARM 5
48
49 struct _MonoAssemblyName {
50         const char *name;
51         const char *culture;
52         const char *hash_value;
53         const mono_byte* public_key;
54         // string of 16 hex chars + 1 NULL
55         mono_byte public_key_token [MONO_PUBLIC_KEY_TOKEN_LENGTH];
56         uint32_t hash_alg;
57         uint32_t hash_len;
58         uint32_t flags;
59         uint16_t major, minor, build, revision, arch;
60 };
61
62 struct MonoTypeNameParse {
63         char *name_space;
64         char *name;
65         MonoAssemblyName assembly;
66         GList *modifiers; /* 0 -> byref, -1 -> pointer, > 0 -> array rank */
67         GPtrArray *type_arguments;
68         GList *nested;
69 };
70
71 struct _MonoAssembly {
72         /* 
73          * The number of appdomains which have this assembly loaded plus the number of 
74          * assemblies referencing this assembly through an entry in their image->references
75          * arrays. The later is needed because entries in the image->references array
76          * might point to assemblies which are only loaded in some appdomains, and without
77          * the additional reference, they can be freed at any time.
78          * The ref_count is initially 0.
79          */
80         int ref_count; /* use atomic operations only */
81         char *basedir;
82         MonoAssemblyName aname;
83         MonoImage *image;
84         GSList *friend_assembly_names; /* Computed by mono_assembly_load_friends () */
85         guint8 friend_assembly_names_inited;
86         guint8 in_gac;
87         guint8 dynamic;
88         guint8 corlib_internal;
89         gboolean ref_only;
90         guint8 wrap_non_exception_throws;
91         guint8 wrap_non_exception_throws_inited;
92         guint8 jit_optimizer_disabled;
93         guint8 jit_optimizer_disabled_inited;
94         /* security manager flags (one bit is for lazy initialization) */
95         guint32 ecma:2;         /* Has the ECMA key */
96         guint32 aptc:2;         /* Has the [AllowPartiallyTrustedCallers] attributes */
97         guint32 fulltrust:2;    /* Has FullTrust permission */
98         guint32 unmanaged:2;    /* Has SecurityPermissionFlag.UnmanagedCode permission */
99         guint32 skipverification:2;     /* Has SecurityPermissionFlag.SkipVerification permission */
100 };
101
102 typedef struct {
103         const char* data;
104         guint32  size;
105 } MonoStreamHeader;
106
107 struct _MonoTableInfo {
108         const char *base;
109         guint       rows     : 24;
110         guint       row_size : 8;
111
112         /*
113          * Tables contain up to 9 columns and the possible sizes of the
114          * fields in the documentation are 1, 2 and 4 bytes.  So we
115          * can encode in 2 bits the size.
116          *
117          * A 32 bit value can encode the resulting size
118          *
119          * The top eight bits encode the number of columns in the table.
120          * we only need 4, but 8 is aligned no shift required. 
121          */
122         guint32   size_bitfield;
123 };
124
125 #define REFERENCE_MISSING ((gpointer) -1)
126
127 typedef struct _MonoDllMap MonoDllMap;
128
129 struct _MonoImage {
130         /*
131          * The number of assemblies which reference this MonoImage though their 'image'
132          * field plus the number of images which reference this MonoImage through their 
133          * 'modules' field, plus the number of threads holding temporary references to
134          * this image between calls of mono_image_open () and mono_image_close ().
135          */
136         int   ref_count;
137         void *raw_data_handle;
138         char *raw_data;
139         guint32 raw_data_len;
140         guint8 raw_buffer_used    : 1;
141         guint8 raw_data_allocated : 1;
142         guint8 fileio_used : 1;
143
144 #ifdef HOST_WIN32
145         /* Module was loaded using LoadLibrary. */
146         guint8 is_module_handle : 1;
147
148         /* Module entry point is _CorDllMain. */
149         guint8 has_entry_point : 1;
150 #endif
151
152         /* Whenever this is a dynamically emitted module */
153         guint8 dynamic : 1;
154
155         /* Whenever this is a reflection only image */
156         guint8 ref_only : 1;
157
158         /* Whenever this image contains uncompressed metadata */
159         guint8 uncompressed_metadata : 1;
160
161         guint8 checked_module_cctor : 1;
162         guint8 has_module_cctor : 1;
163
164         guint8 idx_string_wide : 1;
165         guint8 idx_guid_wide : 1;
166         guint8 idx_blob_wide : 1;
167
168         /* Whenever this image is considered as platform code for the CoreCLR security model */
169         guint8 core_clr_platform_code : 1;
170                             
171         char *name;
172         const char *assembly_name;
173         const char *module_name;
174         char *version;
175         gint16 md_version_major, md_version_minor;
176         char *guid;
177         void *image_info;
178         MonoMemPool         *mempool; /*protected by the image lock*/
179
180         char                *raw_metadata;
181                             
182         MonoStreamHeader     heap_strings;
183         MonoStreamHeader     heap_us;
184         MonoStreamHeader     heap_blob;
185         MonoStreamHeader     heap_guid;
186         MonoStreamHeader     heap_tables;
187                             
188         const char          *tables_base;
189
190         /**/
191         MonoTableInfo        tables [MONO_TABLE_NUM];
192
193         /*
194          * references is initialized only by using the mono_assembly_open
195          * function, and not by using the lowlevel mono_image_open.
196          *
197          * It is NULL terminated.
198          */
199         MonoAssembly **references;
200         int nreferences;
201
202         MonoImage **modules;
203         guint32 module_count;
204         gboolean *modules_loaded;
205
206         MonoImage **files;
207
208         gpointer aot_module;
209
210         /*
211          * The Assembly this image was loaded from.
212          */
213         MonoAssembly *assembly;
214
215         /*
216          * Indexed by method tokens and typedef tokens.
217          */
218         GHashTable *method_cache; /*protected by the image lock*/
219         MonoInternalHashTable class_cache;
220
221         /* Indexed by memberref + methodspec tokens */
222         GHashTable *methodref_cache; /*protected by the image lock*/
223
224         /*
225          * Indexed by fielddef and memberref tokens
226          */
227         GHashTable *field_cache; /*protected by the image lock*/
228
229         /* indexed by typespec tokens. */
230         GHashTable *typespec_cache;
231         /* indexed by token */
232         GHashTable *memberref_signatures;
233         GHashTable *helper_signatures;
234
235         /* Indexed by blob heap indexes */
236         GHashTable *method_signatures;
237
238         /*
239          * Indexes namespaces to hash tables that map class name to typedef token.
240          */
241         GHashTable *name_cache;  /*protected by the image lock*/
242
243         /*
244          * Indexed by MonoClass
245          */
246         GHashTable *array_cache;
247         GHashTable *ptr_cache;
248
249         GHashTable *szarray_cache;
250         /* This has a separate lock to improve scalability */
251         CRITICAL_SECTION szarray_cache_lock;
252
253         /*
254          * indexed by MonoMethodSignature 
255          */
256         GHashTable *delegate_begin_invoke_cache;
257         GHashTable *delegate_end_invoke_cache;
258         GHashTable *delegate_invoke_cache;
259         GHashTable *runtime_invoke_cache;
260         GHashTable *runtime_invoke_vtype_cache;
261
262         /*
263          * indexed by SignatureMethodPair
264          */
265         GHashTable *delegate_abstract_invoke_cache;
266
267         /*
268          * indexed by SignatureMethodPair
269          */
270         GHashTable *delegate_bound_static_invoke_cache;
271         /*
272          * indexed by MonoMethod pointers 
273          */
274         GHashTable *runtime_invoke_direct_cache;
275         GHashTable *runtime_invoke_vcall_cache;
276         GHashTable *managed_wrapper_cache;
277         GHashTable *native_wrapper_cache;
278         GHashTable *native_wrapper_aot_cache;
279         GHashTable *native_func_wrapper_aot_cache;
280         GHashTable *remoting_invoke_cache;
281         GHashTable *synchronized_cache;
282         GHashTable *unbox_wrapper_cache;
283         GHashTable *cominterop_invoke_cache;
284         GHashTable *cominterop_wrapper_cache; /* LOCKING: marshal lock */
285         GHashTable *thunk_invoke_cache;
286         GHashTable *wrapper_param_names;
287         GHashTable *synchronized_generic_cache;
288         GHashTable *array_accessor_cache;
289
290         /*
291          * indexed by MonoClass pointers
292          */
293         GHashTable *ldfld_wrapper_cache;
294         GHashTable *ldflda_wrapper_cache;
295         GHashTable *stfld_wrapper_cache;
296         GHashTable *isinst_cache;
297         GHashTable *castclass_cache;
298         GHashTable *proxy_isinst_cache;
299         GHashTable *rgctx_template_hash; /* LOCKING: templates lock */
300         GHashTable *delegate_invoke_generic_cache;
301         GHashTable *delegate_begin_invoke_generic_cache;
302         GHashTable *delegate_end_invoke_generic_cache;
303
304         /* Contains rarely used fields of runtime structures belonging to this image */
305         MonoPropertyHash *property_hash;
306
307         void *reflection_info;
308
309         /*
310          * user_info is a public field and is not touched by the
311          * metadata engine
312          */
313         void *user_info;
314
315         /* dll map entries */
316         MonoDllMap *dll_map;
317
318         /* interfaces IDs from this image */
319         MonoBitSet *interface_bitset;
320
321         /* when the image is being closed, this is abused as a list of
322            malloc'ed regions to be freed. */
323         GSList *reflection_info_unregister_classes;
324
325         /* List of image sets containing this image */
326         /* Protected by image_sets_lock */
327         GSList *image_sets;
328
329         /* Caches for MonoClass-es representing anon generic params */
330         MonoClass **var_cache_fast;
331         MonoClass **mvar_cache_fast;
332         GHashTable *var_cache_slow;
333         GHashTable *mvar_cache_slow;
334
335         /* Maps malloc-ed char* pinvoke scope -> MonoDl* */
336         GHashTable *pinvoke_scopes;
337
338         /* Maps malloc-ed char* pinvoke scope -> malloced-ed char* filename */
339         GHashTable *pinvoke_scope_filenames;
340
341         /* Indexed by MonoGenericParam pointers */
342         GHashTable *gsharedvt_types;
343
344         /*
345          * No other runtime locks must be taken while holding this lock.
346          * It's meant to be used only to mutate and query structures part of this image.
347          */
348         CRITICAL_SECTION    lock;
349 };
350
351 /*
352  * Generic instances depend on many images, and they need to be deleted if one
353  * of the images they depend on is unloaded. For example,
354  * List<Foo> depends on both List's image and Foo's image.
355  * A MonoImageSet is the owner of all generic instances depending on the same set of
356  * images.
357  */
358 typedef struct {
359         int nimages;
360         MonoImage **images;
361
362         GHashTable *gclass_cache, *ginst_cache, *gmethod_cache, *gsignature_cache;
363
364         CRITICAL_SECTION    lock;
365
366         /*
367          * Memory for generic instances owned by this image set should be allocated from
368          * this mempool, using the mono_image_set_alloc family of functions.
369          */
370         MonoMemPool         *mempool;
371 } MonoImageSet;
372
373 enum {
374         MONO_SECTION_TEXT,
375         MONO_SECTION_RSRC,
376         MONO_SECTION_RELOC,
377         MONO_SECTION_MAX
378 };
379
380 typedef struct {
381         GHashTable *hash;
382         char *data;
383         guint32 alloc_size; /* malloced bytes */
384         guint32 index;
385         guint32 offset; /* from start of metadata */
386 } MonoDynamicStream;
387
388 typedef struct {
389         guint32 alloc_rows;
390         guint32 rows;
391         guint8  row_size; /*  calculated later with column_sizes */
392         guint8  columns;
393         guint32 next_idx;
394         guint32 *values; /* rows * columns */
395 } MonoDynamicTable;
396
397 struct _MonoDynamicAssembly {
398         MonoAssembly assembly;
399         char *strong_name;
400         guint32 strong_name_size;
401         guint8 run;
402         guint8 save;
403         MonoDomain *domain;
404 };
405
406 struct _MonoDynamicImage {
407         MonoImage image;
408         guint32 meta_size;
409         guint32 text_rva;
410         guint32 metadata_rva;
411         guint32 image_base;
412         guint32 cli_header_offset;
413         guint32 iat_offset;
414         guint32 idt_offset;
415         guint32 ilt_offset;
416         guint32 imp_names_offset;
417         struct {
418                 guint32 rva;
419                 guint32 size;
420                 guint32 offset;
421                 guint32 attrs;
422         } sections [MONO_SECTION_MAX];
423         GHashTable *typespec;
424         GHashTable *typeref;
425         GHashTable *handleref;
426         MonoGHashTable *handleref_managed;
427         MonoGHashTable *tokens;
428         GHashTable *blob_cache;
429         GHashTable *standalonesig_cache;
430         GList *array_methods;
431         GPtrArray *gen_params;
432         MonoGHashTable *token_fixups;
433         GHashTable *method_to_table_idx;
434         GHashTable *field_to_table_idx;
435         GHashTable *method_aux_hash;
436         GHashTable *vararg_aux_hash;
437         MonoGHashTable *generic_def_objects;
438         MonoGHashTable *methodspec;
439         /*
440          * Maps final token values to the object they describe.
441          */
442         MonoGHashTable *remapped_tokens;
443         gboolean run;
444         gboolean save;
445         gboolean initial_image;
446         guint32 pe_kind, machine;
447         char *strong_name;
448         guint32 strong_name_size;
449         char *win32_res;
450         guint32 win32_res_size;
451         guint8 *public_key;
452         int public_key_len;
453         MonoDynamicStream sheap;
454         MonoDynamicStream code; /* used to store method headers and bytecode */
455         MonoDynamicStream resources; /* managed embedded resources */
456         MonoDynamicStream us;
457         MonoDynamicStream blob;
458         MonoDynamicStream tstream;
459         MonoDynamicStream guid;
460         MonoDynamicTable tables [MONO_TABLE_NUM];
461         MonoClass *wrappers_type; /*wrappers are bound to this type instead of <Module>*/
462 };
463
464 /* Contains information about assembly binding */
465 typedef struct _MonoAssemblyBindingInfo {
466         char *name;
467         char *culture;
468         guchar public_key_token [MONO_PUBLIC_KEY_TOKEN_LENGTH];
469         int major;
470         int minor;
471         AssemblyVersionSet old_version_bottom;
472         AssemblyVersionSet old_version_top;
473         AssemblyVersionSet new_version;
474         guint has_old_version_bottom : 1;
475         guint has_old_version_top : 1;
476         guint has_new_version : 1;
477         guint is_valid : 1;
478         gint32 domain_id; /*Needed to unload per-domain binding*/
479 } MonoAssemblyBindingInfo;
480
481 struct _MonoMethodHeader {
482         const unsigned char  *code;
483 #ifdef MONO_SMALL_CONFIG
484         guint16      code_size;
485 #else
486         guint32      code_size;
487 #endif
488         guint16      max_stack   : 15;
489         unsigned int is_transient: 1; /* mono_metadata_free_mh () will actually free this header */
490         unsigned int num_clauses : 15;
491         /* if num_locals != 0, then the following apply: */
492         unsigned int init_locals : 1;
493         guint16      num_locals;
494         MonoExceptionClause *clauses;
495         MonoType    *locals [MONO_ZERO_LEN_ARRAY];
496 };
497
498 typedef struct {
499         guint32      code_size;
500         gboolean     has_clauses;
501 } MonoMethodHeaderSummary;
502
503 #define MONO_SIZEOF_METHOD_HEADER (sizeof (struct _MonoMethodHeader) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
504
505 struct _MonoMethodSignature {
506         MonoType     *ret;
507 #ifdef MONO_SMALL_CONFIG
508         guint8        param_count;
509         gint8         sentinelpos;
510         unsigned int  generic_param_count : 5;
511 #else
512         guint16       param_count;
513         gint16        sentinelpos;
514         unsigned int  generic_param_count : 16;
515 #endif
516         unsigned int  call_convention     : 6;
517         unsigned int  hasthis             : 1;
518         unsigned int  explicit_this       : 1;
519         unsigned int  pinvoke             : 1;
520         unsigned int  is_inflated         : 1;
521         unsigned int  has_type_parameters : 1;
522         MonoType     *params [MONO_ZERO_LEN_ARRAY];
523 };
524
525 #define MONO_SIZEOF_METHOD_SIGNATURE (sizeof (struct _MonoMethodSignature) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
526
527 /* for use with allocated memory blocks (assumes alignment is to 8 bytes) */
528 guint mono_aligned_addr_hash (gconstpointer ptr) MONO_INTERNAL;
529
530 void
531 mono_image_check_for_module_cctor (MonoImage *image) MONO_INTERNAL;
532
533 gpointer
534 mono_image_alloc  (MonoImage *image, guint size) MONO_INTERNAL;
535
536 gpointer
537 mono_image_alloc0 (MonoImage *image, guint size) MONO_INTERNAL;
538
539 #define mono_image_new0(image,type,size) ((type *) mono_image_alloc0 (image, sizeof (type)* (size)))
540
541 char*
542 mono_image_strdup (MonoImage *image, const char *s) MONO_INTERNAL;
543
544 GList*
545 g_list_prepend_image (MonoImage *image, GList *list, gpointer data) MONO_INTERNAL;
546
547 GSList*
548 g_slist_append_image (MonoImage *image, GSList *list, gpointer data) MONO_INTERNAL;
549
550 void
551 mono_image_lock (MonoImage *image) MONO_INTERNAL;
552
553 void
554 mono_image_unlock (MonoImage *image) MONO_INTERNAL;
555
556 gpointer
557 mono_image_property_lookup (MonoImage *image, gpointer subject, guint32 property) MONO_INTERNAL;
558
559 void
560 mono_image_property_insert (MonoImage *image, gpointer subject, guint32 property, gpointer value) MONO_INTERNAL;
561
562 void
563 mono_image_property_remove (MonoImage *image, gpointer subject) MONO_INTERNAL;
564
565 gboolean
566 mono_image_close_except_pools (MonoImage *image) MONO_INTERNAL;
567
568 void
569 mono_image_close_finish (MonoImage *image) MONO_INTERNAL;
570
571 typedef void  (*MonoImageUnloadFunc) (MonoImage *image, gpointer user_data);
572
573 void
574 mono_install_image_unload_hook (MonoImageUnloadFunc func, gpointer user_data) MONO_INTERNAL;
575
576 void
577 mono_remove_image_unload_hook (MonoImageUnloadFunc func, gpointer user_data) MONO_INTERNAL;
578
579 void
580 mono_image_append_class_to_reflection_info_set (MonoClass *class) MONO_INTERNAL;
581
582 gpointer
583 mono_image_set_alloc  (MonoImageSet *set, guint size) MONO_INTERNAL;
584
585 gpointer
586 mono_image_set_alloc0 (MonoImageSet *set, guint size) MONO_INTERNAL;
587
588 char*
589 mono_image_set_strdup (MonoImageSet *set, const char *s) MONO_INTERNAL;
590
591 #define mono_image_set_new0(image,type,size) ((type *) mono_image_set_alloc0 (image, sizeof (type)* (size)))
592
593 MonoType*
594 mono_metadata_get_shared_type (MonoType *type) MONO_INTERNAL;
595
596 void
597 mono_metadata_clean_for_image (MonoImage *image) MONO_INTERNAL;
598
599 void
600 mono_metadata_clean_generic_classes_for_image (MonoImage *image) MONO_INTERNAL;
601
602 MONO_API void
603 mono_metadata_cleanup (void);
604
605 const char *   mono_meta_table_name              (int table) MONO_INTERNAL;
606 void           mono_metadata_compute_table_bases (MonoImage *meta) MONO_INTERNAL;
607
608 gboolean
609 mono_metadata_interfaces_from_typedef_full  (MonoImage             *image,
610                                                                                          guint32                table_index,
611                                                                                          MonoClass           ***interfaces,
612                                                                                          guint                 *count,
613                                                                                          gboolean               heap_alloc_result,
614                                                                                          MonoGenericContext    *context) MONO_INTERNAL;
615
616 MonoArrayType *
617 mono_metadata_parse_array_full              (MonoImage             *image,
618                                              MonoGenericContainer  *container,
619                                              const char            *ptr,
620                                              const char           **rptr) MONO_INTERNAL;
621
622 MONO_API MonoType *
623 mono_metadata_parse_type_full               (MonoImage             *image,
624                                              MonoGenericContainer  *container,
625                                              MonoParseTypeMode      mode,
626                                              short                  opt_attrs,
627                                              const char            *ptr,
628                                              const char           **rptr);
629
630 MonoMethodSignature *
631 mono_metadata_parse_signature_full          (MonoImage             *image,
632                                              MonoGenericContainer  *generic_container,
633                                              guint32                token) MONO_INTERNAL;
634
635 MONO_API MonoMethodSignature *
636 mono_metadata_parse_method_signature_full   (MonoImage             *image,
637                                              MonoGenericContainer  *generic_container,
638                                              int                     def,
639                                              const char             *ptr,
640                                              const char            **rptr);
641
642 MONO_API MonoMethodHeader *
643 mono_metadata_parse_mh_full                 (MonoImage             *image,
644                                              MonoGenericContainer  *container,
645                                              const char            *ptr);
646
647 gboolean
648 mono_method_get_header_summary (MonoMethod *method, MonoMethodHeaderSummary *summary) MONO_INTERNAL;
649
650 int* mono_metadata_get_param_attrs          (MonoImage *m, int def, int param_count) MONO_INTERNAL;
651 gboolean mono_metadata_method_has_param_attrs (MonoImage *m, int def) MONO_INTERNAL;
652
653 guint
654 mono_metadata_generic_context_hash          (const MonoGenericContext *context) MONO_INTERNAL;
655
656 gboolean
657 mono_metadata_generic_context_equal         (const MonoGenericContext *g1,
658                                              const MonoGenericContext *g2) MONO_INTERNAL;
659
660 MonoGenericInst *
661 mono_metadata_parse_generic_inst            (MonoImage             *image,
662                                              MonoGenericContainer  *container,
663                                              int                    count,
664                                              const char            *ptr,
665                                              const char           **rptr) MONO_INTERNAL;
666
667 MonoGenericInst *
668 mono_metadata_get_generic_inst              (int                    type_argc,
669                                              MonoType             **type_argv) MONO_INTERNAL;
670
671 MonoGenericClass *
672 mono_metadata_lookup_generic_class          (MonoClass             *gclass,
673                                              MonoGenericInst       *inst,
674                                              gboolean               is_dynamic) MONO_INTERNAL;
675
676 MonoGenericInst * mono_metadata_inflate_generic_inst  (MonoGenericInst *ginst, MonoGenericContext *context, MonoError *error) MONO_INTERNAL;
677
678 void mono_dynamic_stream_reset  (MonoDynamicStream* stream) MONO_INTERNAL;
679 void mono_assembly_addref       (MonoAssembly *assembly) MONO_INTERNAL;
680 void mono_assembly_load_friends (MonoAssembly* ass) MONO_INTERNAL;
681 gboolean mono_assembly_has_skip_verification (MonoAssembly* ass) MONO_INTERNAL;
682
683 void mono_assembly_release_gc_roots (MonoAssembly *assembly) MONO_INTERNAL;
684 gboolean mono_assembly_close_except_image_pools (MonoAssembly *assembly) MONO_INTERNAL;
685 void mono_assembly_close_finish (MonoAssembly *assembly) MONO_INTERNAL;
686
687
688 gboolean mono_public_tokens_are_equal (const unsigned char *pubt1, const unsigned char *pubt2) MONO_INTERNAL;
689
690 void mono_config_parse_publisher_policy (const char *filename, MonoAssemblyBindingInfo *binding_info) MONO_INTERNAL;
691 void mono_config_parse_assembly_bindings (const char *filename, int major, int minor, void *user_data,
692                                           void (*infocb)(MonoAssemblyBindingInfo *info, void *user_data)) MONO_INTERNAL;
693
694 gboolean
695 mono_assembly_name_parse_full                (const char           *name,
696                                               MonoAssemblyName     *aname,
697                                               gboolean save_public_key,
698                                               gboolean *is_version_defined,
699                                                   gboolean *is_token_defined) MONO_INTERNAL;
700
701 MONO_API guint32 mono_metadata_get_generic_param_row (MonoImage *image, guint32 token, guint32 *owner);
702
703 void mono_unload_interface_ids (MonoBitSet *bitset) MONO_INTERNAL;
704
705
706 MonoType *mono_metadata_type_dup (MonoImage *image, const MonoType *original) MONO_INTERNAL;
707 MonoMethodSignature  *mono_metadata_signature_dup_full (MonoImage *image,MonoMethodSignature *sig) MONO_INTERNAL;
708 MonoMethodSignature  *mono_metadata_signature_dup_mempool (MonoMemPool *mp, MonoMethodSignature *sig) MONO_INTERNAL;
709
710 MonoGenericInst *
711 mono_get_shared_generic_inst (MonoGenericContainer *container) MONO_INTERNAL;
712
713 int
714 mono_type_stack_size_internal (MonoType *t, int *align, gboolean allow_open) MONO_INTERNAL;
715
716 MONO_API void            mono_type_get_desc (GString *res, MonoType *type, mono_bool include_namespace);
717
718 gboolean
719 mono_metadata_type_equal_full (MonoType *t1, MonoType *t2, gboolean signature_only) MONO_INTERNAL;
720
721 MonoMarshalSpec *
722 mono_metadata_parse_marshal_spec_full (MonoImage *image, const char *ptr) MONO_INTERNAL;
723
724 guint          mono_metadata_generic_inst_hash (gconstpointer data) MONO_INTERNAL;
725 gboolean       mono_metadata_generic_inst_equal (gconstpointer ka, gconstpointer kb) MONO_INTERNAL;
726
727 MONO_API void
728 mono_metadata_field_info_with_mempool (
729                                           MonoImage *meta, 
730                                       guint32       table_index,
731                                       guint32      *offset,
732                                       guint32      *rva,
733                                       MonoMarshalSpec **marshal_spec);
734
735 MonoClassField*
736 mono_metadata_get_corresponding_field_from_generic_type_definition (MonoClassField *field) MONO_INTERNAL;
737
738 MonoEvent*
739 mono_metadata_get_corresponding_event_from_generic_type_definition (MonoEvent *event) MONO_INTERNAL;
740
741 MonoProperty*
742 mono_metadata_get_corresponding_property_from_generic_type_definition (MonoProperty *property) MONO_INTERNAL;
743
744 guint32
745 mono_metadata_signature_size (MonoMethodSignature *sig) MONO_INTERNAL;
746
747 guint mono_metadata_str_hash (gconstpointer v1) MONO_INTERNAL;
748
749 gboolean mono_image_load_pe_data (MonoImage *image) MONO_INTERNAL;
750
751 gboolean mono_image_load_cli_data (MonoImage *image) MONO_INTERNAL;
752
753 void mono_image_load_names (MonoImage *image) MONO_INTERNAL;
754
755 MonoImage *mono_image_open_raw (const char *fname, MonoImageOpenStatus *status) MONO_INTERNAL;
756
757 MonoException *mono_get_exception_field_access_msg (const char *msg) MONO_INTERNAL;
758
759 MonoException *mono_get_exception_method_access_msg (const char *msg) MONO_INTERNAL;
760
761 MonoMethod* method_from_method_def_or_ref (MonoImage *m, guint32 tok, MonoGenericContext *context) MONO_INTERNAL;
762
763 MonoMethod *mono_get_method_constrained_with_method (MonoImage *image, MonoMethod *method, MonoClass *constrained_class, MonoGenericContext *context) MONO_INTERNAL;
764
765 #endif /* __MONO_METADATA_INTERNALS_H__ */
766