[sre] Remove MonoDynamicImage:handleref_managed field
[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 *tokens;
507         GHashTable *blob_cache;
508         GHashTable *standalonesig_cache;
509         GList *array_methods;
510         GPtrArray *gen_params;
511         MonoGHashTable *token_fixups;
512         GHashTable *method_to_table_idx;
513         GHashTable *field_to_table_idx;
514         GHashTable *method_aux_hash;
515         GHashTable *vararg_aux_hash;
516         MonoGHashTable *generic_def_objects;
517         /*
518          * Maps final token values to the object they describe.
519          */
520         MonoGHashTable *remapped_tokens;
521         gboolean run;
522         gboolean save;
523         gboolean initial_image;
524         guint32 pe_kind, machine;
525         char *strong_name;
526         guint32 strong_name_size;
527         char *win32_res;
528         guint32 win32_res_size;
529         guint8 *public_key;
530         int public_key_len;
531         MonoDynamicStream sheap;
532         MonoDynamicStream code; /* used to store method headers and bytecode */
533         MonoDynamicStream resources; /* managed embedded resources */
534         MonoDynamicStream us;
535         MonoDynamicStream blob;
536         MonoDynamicStream tstream;
537         MonoDynamicStream guid;
538         MonoDynamicTable tables [MONO_TABLE_NUM];
539         MonoClass *wrappers_type; /*wrappers are bound to this type instead of <Module>*/
540 };
541
542 /* Contains information about assembly binding */
543 typedef struct _MonoAssemblyBindingInfo {
544         char *name;
545         char *culture;
546         guchar public_key_token [MONO_PUBLIC_KEY_TOKEN_LENGTH];
547         int major;
548         int minor;
549         AssemblyVersionSet old_version_bottom;
550         AssemblyVersionSet old_version_top;
551         AssemblyVersionSet new_version;
552         guint has_old_version_bottom : 1;
553         guint has_old_version_top : 1;
554         guint has_new_version : 1;
555         guint is_valid : 1;
556         gint32 domain_id; /*Needed to unload per-domain binding*/
557 } MonoAssemblyBindingInfo;
558
559 struct _MonoMethodHeader {
560         const unsigned char  *code;
561 #ifdef MONO_SMALL_CONFIG
562         guint16      code_size;
563 #else
564         guint32      code_size;
565 #endif
566         guint16      max_stack   : 15;
567         unsigned int is_transient: 1; /* mono_metadata_free_mh () will actually free this header */
568         unsigned int num_clauses : 15;
569         /* if num_locals != 0, then the following apply: */
570         unsigned int init_locals : 1;
571         guint16      num_locals;
572         MonoExceptionClause *clauses;
573         MonoType    *locals [MONO_ZERO_LEN_ARRAY];
574 };
575
576 typedef struct {
577         guint32      code_size;
578         gboolean     has_clauses;
579 } MonoMethodHeaderSummary;
580
581 #define MONO_SIZEOF_METHOD_HEADER (sizeof (struct _MonoMethodHeader) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
582
583 struct _MonoMethodSignature {
584         MonoType     *ret;
585 #ifdef MONO_SMALL_CONFIG
586         guint8        param_count;
587         gint8         sentinelpos;
588         unsigned int  generic_param_count : 5;
589 #else
590         guint16       param_count;
591         gint16        sentinelpos;
592         unsigned int  generic_param_count : 16;
593 #endif
594         unsigned int  call_convention     : 6;
595         unsigned int  hasthis             : 1;
596         unsigned int  explicit_this       : 1;
597         unsigned int  pinvoke             : 1;
598         unsigned int  is_inflated         : 1;
599         unsigned int  has_type_parameters : 1;
600         MonoType     *params [MONO_ZERO_LEN_ARRAY];
601 };
602
603 /*
604  * AOT cache configuration loaded from config files.
605  * Doesn't really belong here.
606  */
607 typedef struct {
608         /*
609          * Enable aot caching for applications whose main assemblies are in
610          * this list.
611          */
612         GSList *apps;
613         GSList *assemblies;
614         char *aot_options;
615 } MonoAotCacheConfig;
616
617 #define MONO_SIZEOF_METHOD_SIGNATURE (sizeof (struct _MonoMethodSignature) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
618
619 static inline gboolean
620 image_is_dynamic (MonoImage *image)
621 {
622 #ifdef DISABLE_REFLECTION_EMIT
623         return FALSE;
624 #else
625         return image->dynamic;
626 #endif
627 }
628
629 static inline gboolean
630 assembly_is_dynamic (MonoAssembly *assembly)
631 {
632 #ifdef DISABLE_REFLECTION_EMIT
633         return FALSE;
634 #else
635         return assembly->dynamic;
636 #endif
637 }
638
639 /* for use with allocated memory blocks (assumes alignment is to 8 bytes) */
640 guint mono_aligned_addr_hash (gconstpointer ptr);
641
642 void
643 mono_image_check_for_module_cctor (MonoImage *image);
644
645 gpointer
646 mono_image_alloc  (MonoImage *image, guint size);
647
648 gpointer
649 mono_image_alloc0 (MonoImage *image, guint size);
650
651 #define mono_image_new0(image,type,size) ((type *) mono_image_alloc0 (image, sizeof (type)* (size)))
652
653 char*
654 mono_image_strdup (MonoImage *image, const char *s);
655
656 char*
657 mono_image_strdup_vprintf (MonoImage *image, const char *format, va_list args);
658
659 char*
660 mono_image_strdup_printf (MonoImage *image, const char *format, ...) MONO_ATTR_FORMAT_PRINTF(2,3);;
661
662 GList*
663 g_list_prepend_image (MonoImage *image, GList *list, gpointer data);
664
665 GSList*
666 g_slist_append_image (MonoImage *image, GSList *list, gpointer data);
667
668 void
669 mono_image_lock (MonoImage *image);
670
671 void
672 mono_image_unlock (MonoImage *image);
673
674 gpointer
675 mono_image_property_lookup (MonoImage *image, gpointer subject, guint32 property);
676
677 void
678 mono_image_property_insert (MonoImage *image, gpointer subject, guint32 property, gpointer value);
679
680 void
681 mono_image_property_remove (MonoImage *image, gpointer subject);
682
683 gboolean
684 mono_image_close_except_pools (MonoImage *image);
685
686 void
687 mono_image_close_finish (MonoImage *image);
688
689 typedef void  (*MonoImageUnloadFunc) (MonoImage *image, gpointer user_data);
690
691 void
692 mono_install_image_unload_hook (MonoImageUnloadFunc func, gpointer user_data);
693
694 void
695 mono_remove_image_unload_hook (MonoImageUnloadFunc func, gpointer user_data);
696
697 void
698 mono_install_image_loader (const MonoImageLoader *loader);
699
700 void
701 mono_image_append_class_to_reflection_info_set (MonoClass *klass);
702
703 gpointer
704 mono_image_set_alloc  (MonoImageSet *set, guint size);
705
706 gpointer
707 mono_image_set_alloc0 (MonoImageSet *set, guint size);
708
709 void
710 mono_image_set_lock (MonoImageSet *set);
711
712 void
713 mono_image_set_unlock (MonoImageSet *set);
714
715 char*
716 mono_image_set_strdup (MonoImageSet *set, const char *s);
717
718 #define mono_image_set_new0(image,type,size) ((type *) mono_image_set_alloc0 (image, sizeof (type)* (size)))
719
720 gboolean
721 mono_image_load_cli_header (MonoImage *image, MonoCLIImageInfo *iinfo);
722
723 gboolean
724 mono_image_load_metadata (MonoImage *image, MonoCLIImageInfo *iinfo);
725
726 MonoType*
727 mono_metadata_get_shared_type (MonoType *type);
728
729 void
730 mono_metadata_clean_for_image (MonoImage *image);
731
732 void
733 mono_metadata_clean_generic_classes_for_image (MonoImage *image);
734
735 MONO_API void
736 mono_metadata_cleanup (void);
737
738 const char *   mono_meta_table_name              (int table);
739 void           mono_metadata_compute_table_bases (MonoImage *meta);
740
741 gboolean
742 mono_metadata_interfaces_from_typedef_full  (MonoImage             *image,
743                                                                                          guint32                table_index,
744                                                                                          MonoClass           ***interfaces,
745                                                                                          guint                 *count,
746                                                                                          gboolean               heap_alloc_result,
747                                                                                          MonoGenericContext    *context,
748                                                                                          MonoError *error);
749
750 MONO_API MonoMethodSignature *
751 mono_metadata_parse_method_signature_full   (MonoImage             *image,
752                                              MonoGenericContainer  *generic_container,
753                                              int                     def,
754                                              const char             *ptr,
755                                              const char            **rptr,
756                                              MonoError *error);
757
758 MONO_API MonoMethodHeader *
759 mono_metadata_parse_mh_full                 (MonoImage             *image,
760                                              MonoGenericContainer  *container,
761                                              const char            *ptr,
762                                                  MonoError *error);
763
764 MonoMethodSignature  *mono_metadata_parse_signature_checked (MonoImage *image, 
765                                                              uint32_t    token,
766                                                              MonoError *error);
767
768 gboolean
769 mono_method_get_header_summary (MonoMethod *method, MonoMethodHeaderSummary *summary);
770
771 int* mono_metadata_get_param_attrs          (MonoImage *m, int def, int param_count);
772 gboolean mono_metadata_method_has_param_attrs (MonoImage *m, int def);
773
774 guint
775 mono_metadata_generic_context_hash          (const MonoGenericContext *context);
776
777 gboolean
778 mono_metadata_generic_context_equal         (const MonoGenericContext *g1,
779                                              const MonoGenericContext *g2);
780
781 MonoGenericInst *
782 mono_metadata_parse_generic_inst            (MonoImage             *image,
783                                              MonoGenericContainer  *container,
784                                              int                    count,
785                                              const char            *ptr,
786                                              const char           **rptr,
787                                                  MonoError *error);
788
789 MonoGenericInst *
790 mono_metadata_get_generic_inst              (int                    type_argc,
791                                              MonoType             **type_argv);
792
793 MonoGenericInst *
794 mono_metadata_get_canonical_generic_inst    (MonoGenericInst *candidate);
795
796 MonoGenericClass *
797 mono_metadata_lookup_generic_class          (MonoClass             *gclass,
798                                              MonoGenericInst       *inst,
799                                              gboolean               is_dynamic);
800
801 MonoGenericInst * mono_metadata_inflate_generic_inst  (MonoGenericInst *ginst, MonoGenericContext *context, MonoError *error);
802
803 guint
804 mono_metadata_generic_param_hash (MonoGenericParam *p);
805
806 gboolean
807 mono_metadata_generic_param_equal (MonoGenericParam *p1, MonoGenericParam *p2);
808
809 void mono_dynamic_stream_reset  (MonoDynamicStream* stream);
810 MONO_API void mono_assembly_addref       (MonoAssembly *assembly);
811 void mono_assembly_load_friends (MonoAssembly* ass);
812 gboolean mono_assembly_has_skip_verification (MonoAssembly* ass);
813
814 void mono_assembly_release_gc_roots (MonoAssembly *assembly);
815 gboolean mono_assembly_close_except_image_pools (MonoAssembly *assembly);
816 void mono_assembly_close_finish (MonoAssembly *assembly);
817
818
819 gboolean mono_public_tokens_are_equal (const unsigned char *pubt1, const unsigned char *pubt2);
820
821 void mono_config_parse_publisher_policy (const char *filename, MonoAssemblyBindingInfo *binding_info);
822 void mono_config_parse_assembly_bindings (const char *filename, int major, int minor, void *user_data,
823                                           void (*infocb)(MonoAssemblyBindingInfo *info, void *user_data));
824
825 gboolean
826 mono_assembly_name_parse_full                (const char           *name,
827                                               MonoAssemblyName     *aname,
828                                               gboolean save_public_key,
829                                               gboolean *is_version_defined,
830                                                   gboolean *is_token_defined);
831
832 gboolean
833 mono_assembly_fill_assembly_name_full (MonoImage *image, MonoAssemblyName *aname, gboolean copyBlobs);
834
835
836 MONO_API guint32 mono_metadata_get_generic_param_row (MonoImage *image, guint32 token, guint32 *owner);
837
838 void mono_unload_interface_ids (MonoBitSet *bitset);
839
840
841 MonoType *mono_metadata_type_dup (MonoImage *image, const MonoType *original);
842 MonoMethodSignature  *mono_metadata_signature_dup_full (MonoImage *image,MonoMethodSignature *sig);
843 MonoMethodSignature  *mono_metadata_signature_dup_mempool (MonoMemPool *mp, MonoMethodSignature *sig);
844 MonoMethodSignature  *mono_metadata_signature_dup_add_this (MonoImage *image, MonoMethodSignature *sig, MonoClass *klass);
845
846 MonoGenericInst *
847 mono_get_shared_generic_inst (MonoGenericContainer *container);
848
849 int
850 mono_type_stack_size_internal (MonoType *t, int *align, gboolean allow_open);
851
852 MONO_API void            mono_type_get_desc (GString *res, MonoType *type, mono_bool include_namespace);
853
854 gboolean
855 mono_metadata_type_equal_full (MonoType *t1, MonoType *t2, gboolean signature_only);
856
857 MonoMarshalSpec *
858 mono_metadata_parse_marshal_spec_full (MonoImage *image, MonoImage *parent_image, const char *ptr);
859
860 guint          mono_metadata_generic_inst_hash (gconstpointer data);
861 gboolean       mono_metadata_generic_inst_equal (gconstpointer ka, gconstpointer kb);
862
863 MONO_API void
864 mono_metadata_field_info_with_mempool (
865                                           MonoImage *meta, 
866                                       guint32       table_index,
867                                       guint32      *offset,
868                                       guint32      *rva,
869                                       MonoMarshalSpec **marshal_spec);
870
871 MonoClassField*
872 mono_metadata_get_corresponding_field_from_generic_type_definition (MonoClassField *field);
873
874 MonoEvent*
875 mono_metadata_get_corresponding_event_from_generic_type_definition (MonoEvent *event);
876
877 MonoProperty*
878 mono_metadata_get_corresponding_property_from_generic_type_definition (MonoProperty *property);
879
880 guint32
881 mono_metadata_signature_size (MonoMethodSignature *sig);
882
883 guint mono_metadata_str_hash (gconstpointer v1);
884
885 gboolean mono_image_load_pe_data (MonoImage *image);
886
887 gboolean mono_image_load_cli_data (MonoImage *image);
888
889 void mono_image_load_names (MonoImage *image);
890
891 MonoImage *mono_image_open_raw (const char *fname, MonoImageOpenStatus *status);
892
893 MonoImage *mono_image_open_metadata_only (const char *fname, MonoImageOpenStatus *status);
894
895 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);
896
897 MonoException *mono_get_exception_field_access_msg (const char *msg);
898
899 MonoException *mono_get_exception_method_access_msg (const char *msg);
900
901 MonoMethod* method_from_method_def_or_ref (MonoImage *m, guint32 tok, MonoGenericContext *context, MonoError *error);
902
903 MonoMethod *mono_get_method_constrained_with_method (MonoImage *image, MonoMethod *method, MonoClass *constrained_class, MonoGenericContext *context, MonoError *error);
904 MonoMethod *mono_get_method_constrained_checked (MonoImage *image, guint32 token, MonoClass *constrained_class, MonoGenericContext *context, MonoMethod **cil_method, MonoError *error);
905
906 void mono_type_set_alignment (MonoTypeEnum type, int align);
907
908 MonoAotCacheConfig *mono_get_aot_cache_config (void);
909 MonoType *
910 mono_type_create_from_typespec_checked (MonoImage *image, guint32 type_spec, MonoError *error);
911
912 MonoMethodSignature*
913 mono_method_get_signature_checked (MonoMethod *method, MonoImage *image, guint32 token, MonoGenericContext *context, MonoError *error);
914         
915 MonoMethod *
916 mono_get_method_checked (MonoImage *image, guint32 token, MonoClass *klass, MonoGenericContext *context, MonoError *error);
917
918 guint32
919 mono_metadata_localscope_from_methoddef (MonoImage *meta, guint32 index);
920
921 void
922 mono_wrapper_caches_free (MonoWrapperCaches *cache);
923
924 MonoWrapperCaches*
925 mono_method_get_wrapper_cache (MonoMethod *method);
926
927 MonoWrapperCaches*
928 mono_method_get_wrapper_cache (MonoMethod *method);
929
930 MonoType*
931 mono_metadata_parse_type_checked (MonoImage *m, MonoGenericContainer *container, short opt_attrs, gboolean transient, const char *ptr, const char **rptr, MonoError *error);
932
933 MonoGenericContainer *
934 get_anonymous_container_for_image (MonoImage *image, gboolean is_mvar);
935
936 char *
937 mono_image_set_description (MonoImageSet *);
938
939 MonoImageSet *
940 mono_find_image_set_owner (void *ptr);
941
942 MONO_API void
943 mono_loader_register_module (const char *name, MonoDl *module);
944
945 gboolean
946 mono_assembly_is_problematic_version (const char *name, guint16 major, guint16 minor, guint16 build, guint16 revision);
947
948 void
949 mono_ginst_get_desc (GString *str, MonoGenericInst *ginst);
950
951 void
952 mono_loader_set_strict_strong_names (gboolean enabled);
953
954 gboolean
955 mono_loader_get_strict_strong_names (void);
956
957 #endif /* __MONO_METADATA_INTERNALS_H__ */
958