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