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