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