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