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