Merge pull request #1857 from slluis/fix-assembly-resolver
[mono.git] / mono / metadata / class-internals.h
1 /* 
2  * Copyright 2012 Xamarin Inc
3  */
4 #ifndef __MONO_METADATA_CLASS_INTERBALS_H__
5 #define __MONO_METADATA_CLASS_INTERBALS_H__
6
7 #include <mono/metadata/class.h>
8 #include <mono/metadata/object.h>
9 #include <mono/metadata/mempool.h>
10 #include <mono/metadata/metadata-internals.h>
11 #include <mono/io-layer/io-layer.h>
12 #include "mono/utils/mono-compiler.h"
13 #include "mono/utils/mono-error.h"
14
15 #define MONO_CLASS_IS_ARRAY(c) ((c)->rank)
16
17 #define MONO_CLASS_HAS_STATIC_METADATA(klass) ((klass)->type_token && !(klass)->image->dynamic && !(klass)->generic_class)
18
19 #define MONO_DEFAULT_SUPERTABLE_SIZE 6
20
21 extern gboolean mono_print_vtable;
22 extern gboolean mono_align_small_structs;
23
24 typedef struct _MonoMethodWrapper MonoMethodWrapper;
25 typedef struct _MonoMethodInflated MonoMethodInflated;
26 typedef struct _MonoMethodPInvoke MonoMethodPInvoke;
27
28 /* Properties that applies to a group of structs should better use a higher number
29  * to avoid colision with type specific properties.
30  * 
31  * This prop applies to class, method, property, event, assembly and image.
32  */
33 #define MONO_PROP_DYNAMIC_CATTR 0x1000
34
35 #ifdef ENABLE_ICALL_EXPORT
36 #pragma GCC diagnostic ignored "-Wmissing-prototypes"
37 #define ICALL_EXPORT MONO_API
38 #else
39 #define ICALL_EXPORT static
40 #endif
41
42 typedef enum {
43 #define WRAPPER(e,n) MONO_WRAPPER_ ## e,
44 #include "wrapper-types.h"
45 #undef WRAPPER
46         MONO_WRAPPER_NUM
47 } MonoWrapperType;
48
49 typedef enum {
50         MONO_TYPE_NAME_FORMAT_IL,
51         MONO_TYPE_NAME_FORMAT_REFLECTION,
52         MONO_TYPE_NAME_FORMAT_FULL_NAME,
53         MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED
54 } MonoTypeNameFormat;
55
56 typedef enum {
57         MONO_REMOTING_TARGET_UNKNOWN,
58         MONO_REMOTING_TARGET_APPDOMAIN,
59         MONO_REMOTING_TARGET_COMINTEROP
60 } MonoRemotingTarget;
61
62 #define MONO_METHOD_PROP_GENERIC_CONTAINER 0
63
64 struct _MonoMethod {
65         guint16 flags;  /* method flags */
66         guint16 iflags; /* method implementation flags */
67         guint32 token;
68         MonoClass *klass;
69         MonoMethodSignature *signature;
70         /* name is useful mostly for debugging */
71         const char *name;
72         /* this is used by the inlining algorithm */
73         unsigned int inline_info:1;
74         unsigned int inline_failure:1;
75         unsigned int wrapper_type:5;
76         unsigned int string_ctor:1;
77         unsigned int save_lmf:1;
78         unsigned int dynamic:1; /* created & destroyed during runtime */
79         unsigned int sre_method:1; /* created at runtime using Reflection.Emit */
80         unsigned int is_generic:1; /* whenever this is a generic method definition */
81         unsigned int is_inflated:1; /* whether we're a MonoMethodInflated */
82         unsigned int skip_visibility:1; /* whenever to skip JIT visibility checks */
83         unsigned int verification_success:1; /* whether this method has been verified successfully.*/
84         /* TODO we MUST get rid of this field, it's an ugly hack nobody is proud of. */
85         unsigned int is_mb_open : 1;            /* This is the fully open instantiation of a generic method_builder. Worse than is_tb_open, but it's temporary */
86         signed int slot : 16;
87
88         /*
89          * If is_generic is TRUE, the generic_container is stored in image->property_hash, 
90          * using the key MONO_METHOD_PROP_GENERIC_CONTAINER.
91          */
92 };
93
94 struct _MonoMethodWrapper {
95         MonoMethod method;
96         MonoMethodHeader *header;
97         void *method_data;
98 };
99
100 struct _MonoMethodPInvoke {
101         MonoMethod method;
102         gpointer addr;
103         /* add marshal info */
104         guint16 piflags;  /* pinvoke flags */
105         guint16 implmap_idx;  /* index into IMPLMAP */
106 };
107
108 /* 
109  * Stores the default value / RVA of fields.
110  * This information is rarely needed, so it is stored separately from 
111  * MonoClassField.
112  */
113 typedef struct MonoFieldDefaultValue {
114         /*
115          * If the field is constant, pointer to the metadata constant
116          * value.
117          * If the field has an RVA flag, pointer to the data.
118          * Else, invalid.
119          */
120         const char      *data;
121
122         /* If the field is constant, the type of the constant. */
123         MonoTypeEnum     def_type;
124 } MonoFieldDefaultValue;
125
126 /*
127  * MonoClassField is just a runtime representation of the metadata for
128  * field, it doesn't contain the data directly.  Static fields are
129  * stored in MonoVTable->data.  Instance fields are allocated in the
130  * objects after the object header.
131  */
132 struct _MonoClassField {
133         /* Type of the field */
134         MonoType        *type;
135
136         const char      *name;
137
138         /* Type where the field was defined */
139         MonoClass       *parent;
140
141         /*
142          * Offset where this field is stored; if it is an instance
143          * field, it's the offset from the start of the object, if
144          * it's static, it's from the start of the memory chunk
145          * allocated for statics for the class.
146          * For special static fields, this is set to -1 during vtable construction.
147          */
148         int              offset;
149 };
150
151 /* a field is ignored if it's named "_Deleted" and it has the specialname and rtspecialname flags set */
152 #define mono_field_is_deleted(field) (((field)->type->attrs & (FIELD_ATTRIBUTE_SPECIAL_NAME | FIELD_ATTRIBUTE_RT_SPECIAL_NAME)) \
153                                       && (strcmp (mono_field_get_name (field), "_Deleted") == 0))
154
155 /* a field is ignored if it's named "_Deleted" and it has the specialname and rtspecialname flags set */
156 /* Try to avoid loading the field's type */
157 #define mono_field_is_deleted_with_flags(field, flags) (((flags) & (FIELD_ATTRIBUTE_SPECIAL_NAME | FIELD_ATTRIBUTE_RT_SPECIAL_NAME)) \
158                                       && (strcmp (mono_field_get_name (field), "_Deleted") == 0))
159
160 typedef struct {
161         MonoClassField *field;
162         guint32 offset;
163         MonoMarshalSpec *mspec;
164 } MonoMarshalField;
165
166 typedef struct {
167         guint32 native_size, min_align;
168         guint32 num_fields;
169         MonoMethod *ptr_to_str;
170         MonoMethod *str_to_ptr;
171         MonoMarshalField fields [MONO_ZERO_LEN_ARRAY];
172 } MonoMarshalType;
173
174 #define MONO_SIZEOF_MARSHAL_TYPE (offsetof (MonoMarshalType, fields))
175
176 struct _MonoProperty {
177         MonoClass *parent;
178         const char *name;
179         MonoMethod *get;
180         MonoMethod *set;
181         guint32 attrs;
182 };
183
184 struct _MonoEvent {
185         MonoClass *parent;
186         const char *name;
187         MonoMethod *add;
188         MonoMethod *remove;
189         MonoMethod *raise;
190 #ifndef MONO_SMALL_CONFIG
191         MonoMethod **other;
192 #endif
193         guint32 attrs;
194 };
195
196 /* type of exception being "on hold" for later processing (see exception_type) */
197 enum {
198         MONO_EXCEPTION_NONE = 0,
199         MONO_EXCEPTION_INVALID_PROGRAM = 3,
200         MONO_EXCEPTION_UNVERIFIABLE_IL = 4,
201         MONO_EXCEPTION_MISSING_METHOD = 5,
202         MONO_EXCEPTION_MISSING_FIELD = 6,
203         MONO_EXCEPTION_TYPE_LOAD = 7,
204         MONO_EXCEPTION_FILE_NOT_FOUND = 8,
205         MONO_EXCEPTION_METHOD_ACCESS = 9,
206         MONO_EXCEPTION_FIELD_ACCESS = 10,
207         MONO_EXCEPTION_GENERIC_SHARING_FAILED = 11,
208         MONO_EXCEPTION_BAD_IMAGE = 12,
209         MONO_EXCEPTION_OBJECT_SUPPLIED = 13, /*The exception object is already created.*/
210         MONO_EXCEPTION_OUT_OF_MEMORY = 14,
211         MONO_EXCEPTION_INLINE_FAILED = 15,
212         MONO_EXCEPTION_MONO_ERROR = 16,
213         /* add other exception type */
214 };
215
216 /* This struct collects the info needed for the runtime use of a class,
217  * like the vtables for a domain, the GC descriptor, etc.
218  */
219 typedef struct {
220         guint16 max_domain;
221         /* domain_vtables is indexed by the domain id and the size is max_domain + 1 */
222         MonoVTable *domain_vtables [MONO_ZERO_LEN_ARRAY];
223 } MonoClassRuntimeInfo;
224
225 #define MONO_SIZEOF_CLASS_RUNTIME_INFO (sizeof (MonoClassRuntimeInfo) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
226
227 #define MONO_CLASS_PROP_EXCEPTION_DATA 0
228
229 /* 
230  * This structure contains the rarely used fields of MonoClass
231  * Since using just one field causes the whole structure to be allocated, it should
232  * be used for fields which are only used in like 5% of all classes.
233  */
234 typedef struct {
235         struct {
236 #if MONO_SMALL_CONFIG
237                 guint16 first, count;
238 #else
239                 guint32 first, count;
240 #endif
241         } property, event;
242
243         /* Initialized by a call to mono_class_setup_properties () */
244         MonoProperty *properties;
245
246         /* Initialized by a call to mono_class_setup_events () */
247         MonoEvent *events;
248
249         guint32    declsec_flags;       /* declarative security attributes flags */
250
251         /* Default values/RVA for fields and properties */
252         /* Accessed using mono_class_get_field_default_value () / mono_field_get_data () */
253         MonoFieldDefaultValue *field_def_values;
254         MonoFieldDefaultValue *prop_def_values;
255
256         GList      *nested_classes;
257 } MonoClassExt;
258
259 struct _MonoClass {
260         /* element class for arrays and enum basetype for enums */
261         MonoClass *element_class; 
262         /* used for subtype checks */
263         MonoClass *cast_class; 
264
265         /* for fast subtype checks */
266         MonoClass **supertypes;
267         guint16     idepth;
268
269         /* array dimension */
270         guint8     rank;          
271
272         int        instance_size; /* object instance size */
273
274         guint inited          : 1;
275         /* We use init_pending to detect cyclic calls to mono_class_init */
276         guint init_pending    : 1;
277
278         /* A class contains static and non static data. Static data can be
279          * of the same type as the class itselfs, but it does not influence
280          * the instance size of the class. To avoid cyclic calls to 
281          * mono_class_init (from mono_class_instance_size ()) we first 
282          * initialise all non static fields. After that we set size_inited 
283          * to 1, because we know the instance size now. After that we 
284          * initialise all static fields.
285          */
286         /* size_inited is accessed without locks, so it needs a memory barrier */
287         guint size_inited     : 1;
288         guint valuetype       : 1; /* derives from System.ValueType */
289         guint enumtype        : 1; /* derives from System.Enum */
290         guint blittable       : 1; /* class is blittable */
291         guint unicode         : 1; /* class uses unicode char when marshalled */
292         guint wastypebuilder  : 1; /* class was created at runtime from a TypeBuilder */
293         /* next byte */
294         guint8 min_align;
295
296         /* next byte */
297         guint packing_size    : 4;
298         guint ghcimpl         : 1; /* class has its own GetHashCode impl */ 
299         guint has_finalize    : 1; /* class has its own Finalize impl */ 
300 #ifndef DISABLE_REMOTING
301         guint marshalbyref    : 1; /* class is a MarshalByRefObject */
302         guint contextbound    : 1; /* class is a ContextBoundObject */
303 #endif
304         /* next byte */
305         guint delegate        : 1; /* class is a Delegate */
306         guint gc_descr_inited : 1; /* gc_descr is initialized */
307         guint has_cctor       : 1; /* class has a cctor */
308         guint has_references  : 1; /* it has GC-tracked references in the instance */
309         guint has_static_refs : 1; /* it has static fields that are GC-tracked */
310         guint no_special_static_fields : 1; /* has no thread/context static fields */
311         /* directly or indirectly derives from ComImport attributed class.
312          * this means we need to create a proxy for instances of this class
313          * for COM Interop. set this flag on loading so all we need is a quick check
314          * during object creation rather than having to traverse supertypes
315          */
316         guint is_com_object : 1; 
317         guint nested_classes_inited : 1; /* Whenever nested_class is initialized */
318
319         /* next byte*/
320         guint interfaces_inited : 1; /* interfaces is initialized */
321         guint simd_type : 1; /* class is a simd intrinsic type */
322         guint is_generic : 1; /* class is a generic type definition */
323         guint is_inflated : 1; /* class is a generic instance */
324         guint has_finalize_inited    : 1; /* has_finalize is initialized */
325         guint fields_inited : 1; /* fields is initialized */
326         guint setup_fields_called : 1; /* to prevent infinite loops in setup_fields */
327
328         guint8     exception_type;      /* MONO_EXCEPTION_* */
329
330         /* Additional information about the exception */
331         /* Stored as property MONO_CLASS_PROP_EXCEPTION_DATA */
332         //void       *exception_data;
333
334         MonoClass  *parent;
335         MonoClass  *nested_in;
336
337         MonoImage *image;
338         const char *name;
339         const char *name_space;
340
341         guint32    type_token;
342         int        vtable_size; /* number of slots */
343
344         guint16     interface_count;
345         guint16     interface_id;        /* unique inderface id (for interfaces) */
346         guint16     max_interface_id;
347         
348         guint16     interface_offsets_count;
349         MonoClass **interfaces_packed;
350         guint16    *interface_offsets_packed;
351 /* enabled only with small config for now: we might want to do it unconditionally */
352 #ifdef MONO_SMALL_CONFIG
353 #define COMPRESSED_INTERFACE_BITMAP 1
354 #endif
355         guint8     *interface_bitmap;
356
357         MonoClass **interfaces;
358
359         union {
360                 int class_size; /* size of area for static fields */
361                 int element_size; /* for array types */
362                 int generic_param_token; /* for generic param types, both var and mvar */
363         } sizes;
364
365         /*
366          * From the TypeDef table
367          */
368         guint32    flags;
369         struct {
370 #if MONO_SMALL_CONFIG
371                 guint16 first, count;
372 #else
373                 guint32 first, count;
374 #endif
375         } field, method;
376
377         /* A GC handle pointing to the corresponding type builder/generic param builder */
378         guint32 ref_info_handle;
379
380         /* loaded on demand */
381         MonoMarshalType *marshal_info;
382
383         /*
384          * Field information: Type and location from object base
385          */
386         MonoClassField *fields;
387
388         MonoMethod **methods;
389
390         /* used as the type of the this argument and when passing the arg by value */
391         MonoType this_arg;
392         MonoType byval_arg;
393
394         MonoGenericClass *generic_class;
395         MonoGenericContainer *generic_container;
396
397         void *gc_descr;
398
399         MonoClassRuntimeInfo *runtime_info;
400
401         /* next element in the class_cache hash list (in MonoImage) */
402         MonoClass *next_class_cache;
403
404         /* Generic vtable. Initialized by a call to mono_class_setup_vtable () */
405         MonoMethod **vtable;
406
407         /* Rarely used fields of classes */
408         MonoClassExt *ext;
409 };
410
411 #ifdef COMPRESSED_INTERFACE_BITMAP
412 int mono_compress_bitmap (uint8_t *dest, const uint8_t *bitmap, int size);
413 int mono_class_interface_match (const uint8_t *bitmap, int id);
414 #else
415 #define mono_class_interface_match(bmap,uiid) ((bmap) [(uiid) >> 3] & (1 << ((uiid)&7)))
416 #endif
417
418 #define MONO_CLASS_IMPLEMENTS_INTERFACE(k,uiid) (((uiid) <= (k)->max_interface_id) && mono_class_interface_match ((k)->interface_bitmap, (uiid)))
419
420 #define MONO_VTABLE_AVAILABLE_GC_BITS 4
421
422 #ifdef DISABLE_REMOTING
423 #define mono_class_is_marshalbyref(klass) (FALSE)
424 #define mono_class_is_contextbound(klass) (FALSE)
425 #define mono_vtable_is_remote(vtable) (FALSE)
426 #define mono_vtable_set_is_remote(vtable,enable) do {} while (0)
427 #else
428 #define mono_class_is_marshalbyref(klass) ((klass)->marshalbyref)
429 #define mono_class_is_contextbound(klass) ((klass)->contextbound)
430 #define mono_vtable_is_remote(vtable) ((vtable)->remote)
431 #define mono_vtable_set_is_remote(vtable,enable) do { (vtable)->remote = enable ? 1 : 0; } while (0)
432 #endif
433
434 #ifdef DISABLE_COM
435 #define mono_class_is_com_object(klass) (FALSE)
436 #define mono_class_set_is_com_object(klass) do {} while (0)
437 #else
438 #define mono_class_is_com_object(klass) ((klass)->is_com_object)
439 #define mono_class_set_is_com_object(klass) do { (klass)->is_com_object = 1; } while (0)
440 #endif
441
442
443 MONO_API int mono_class_interface_offset (MonoClass *klass, MonoClass *itf);
444 int mono_class_interface_offset_with_variance (MonoClass *klass, MonoClass *itf, gboolean *non_exact_match);
445
446 typedef gpointer MonoRuntimeGenericContext;
447
448 /* the interface_offsets array is stored in memory before this struct */
449 struct MonoVTable {
450         MonoClass  *klass;
451          /*
452          * According to comments in gc_gcj.h, this should be the second word in
453          * the vtable.
454          */
455         void *gc_descr;         
456         MonoDomain *domain;  /* each object/vtable belongs to exactly one domain */
457         gpointer    type; /* System.Type type for klass */
458         guint8     *interface_bitmap;
459         guint16     max_interface_id;
460         guint8      rank;
461         guint remote          : 1; /* class is remotely activated */
462         guint initialized     : 1; /* cctor has been run */
463         guint init_failed     : 1; /* cctor execution failed */
464         guint has_static_fields : 1; /* pointer to the data stored at the end of the vtable array */
465         guint gc_bits         : MONO_VTABLE_AVAILABLE_GC_BITS; /* Those bits are reserved for the usaged of the GC */
466
467         guint32     imt_collisions_bitmap;
468         MonoRuntimeGenericContext *runtime_generic_context;
469         /* do not add any fields after vtable, the structure is dynamically extended */
470         /* vtable contains function pointers to methods or their trampolines, at the
471          end there may be a slot containing the pointer to the static fields */
472         gpointer    vtable [MONO_ZERO_LEN_ARRAY];       
473 };
474
475 #define MONO_SIZEOF_VTABLE (sizeof (MonoVTable) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
476
477 #define MONO_VTABLE_IMPLEMENTS_INTERFACE(vt,uiid) (((uiid) <= (vt)->max_interface_id) && mono_class_interface_match ((vt)->interface_bitmap, (uiid)))
478
479 /*
480  * Generic instantiation data type encoding.
481  */
482
483 /*
484  * A particular generic instantiation:
485  *
486  * All instantiations are cached and we don't distinguish between class and method
487  * instantiations here.
488  */
489 struct _MonoGenericInst {
490 #ifndef MONO_SMALL_CONFIG
491         guint id;                       /* unique ID for debugging */
492 #endif
493         guint type_argc    : 22;        /* number of type arguments */
494         guint is_open      :  1;        /* if this is an open type */
495         MonoType *type_argv [MONO_ZERO_LEN_ARRAY];
496 };
497
498 #define MONO_SIZEOF_GENERIC_INST (sizeof (MonoGenericInst) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
499 /*
500  * The generic context: an instantiation of a set of class and method generic parameters.
501  *
502  * NOTE: Never allocate this directly on the heap.  It have to be either allocated on the stack,
503  *       or embedded within other objects.  Don't store pointers to this, because it may be on the stack.
504  *       If you really have to, ensure you store a pointer to the embedding object along with it.
505  */
506 struct _MonoGenericContext {
507         /* The instantiation corresponding to the class generic parameters */
508         MonoGenericInst *class_inst;
509         /* The instantiation corresponding to the method generic parameters */
510         MonoGenericInst *method_inst;
511 };
512
513 /*
514  * Inflated generic method.
515  */
516 struct _MonoMethodInflated {
517         union {
518                 MonoMethod method;
519                 MonoMethodPInvoke pinvoke;
520         } method;
521         MonoMethodHeader *header;
522         MonoMethod *declaring;          /* the generic method definition. */
523         MonoGenericContext context;     /* The current instantiation */
524 };
525
526 /*
527  * A particular instantiation of a generic type.
528  */
529 struct _MonoGenericClass {
530         MonoClass *container_class;     /* the generic type definition */
531         MonoGenericContext context;     /* a context that contains the type instantiation doesn't contain any method instantiation */
532         guint is_dynamic  : 1;          /* We're a MonoDynamicGenericClass */
533         guint is_tb_open  : 1;          /* This is the fully open instantiation for a type_builder. Quite ugly, but it's temporary.*/
534         MonoClass *cached_class;        /* if present, the MonoClass corresponding to the instantiation.  */
535
536         /* 
537          * The image set which owns this generic class. Memory owned by the generic class
538          * including cached_class should be allocated from the mempool of the image set,
539          * so it is easy to free.
540          */
541         MonoImageSet *owner;
542 };
543
544 /*
545  * This is used when instantiating a generic type definition which is
546  * a TypeBuilder.
547  */
548 struct _MonoDynamicGenericClass {
549         MonoGenericClass generic_class;
550         int count_fields;
551         MonoClassField *fields;
552         guint initialized;
553         /* The non-inflated types of the fields */
554         MonoType **field_generic_types;
555         /* The managed objects representing the fields */
556         MonoObject **field_objects;
557 };
558
559 /*
560  * A type parameter.
561  */
562 struct _MonoGenericParam {
563         /*
564          * Type or method this parameter was defined in.
565          */
566         MonoGenericContainer *owner;
567         guint16 num;
568         /*
569          * If != NULL, this is a generated generic param used by the JIT to implement generic
570          * sharing.
571          */
572         MonoType *gshared_constraint;
573         /* 
574          * If owner is NULL, or owner is 'owned' by this gparam,
575          * then this is the image whose mempool this struct was allocated from.
576          * The second case happens for gparams created in
577          * mono_reflection_initialize_generic_parameter ().
578          */
579         MonoImage *image;
580 };
581
582 /* Additional details about a MonoGenericParam */
583 typedef struct {
584         MonoClass *pklass;              /* The corresponding `MonoClass'. */
585         const char *name;
586         guint16 flags;
587         guint32 token;
588         MonoClass** constraints; /* NULL means end of list */
589 } MonoGenericParamInfo;
590
591 typedef struct {
592         MonoGenericParam param;
593         MonoGenericParamInfo info;
594 } MonoGenericParamFull;
595
596 /*
597  * The generic container.
598  *
599  * Stores the type parameters of a generic type definition or a generic method definition.
600  */
601 struct _MonoGenericContainer {
602         MonoGenericContext context;
603         /* If we're a generic method definition in a generic type definition,
604            the generic container of the containing class. */
605         MonoGenericContainer *parent;
606         /* the generic type definition or the generic method definition corresponding to this container */
607         union {
608                 MonoClass *klass;
609                 MonoMethod *method;
610         } owner;
611         int type_argc    : 31;
612         /* If true, we're a generic method, otherwise a generic type definition. */
613         /* Invariant: parent != NULL => is_method */
614         int is_method    : 1;
615         /* Our type parameters. */
616         MonoGenericParamFull *type_params;
617
618         /* 
619          * For owner-less containers created by SRE, the image the container was
620          * allocated from.
621          */
622         MonoImage *image;
623 };
624
625 #define mono_generic_container_get_param(gc, i) ((MonoGenericParam *) ((gc)->type_params + (i)))
626 #define mono_generic_container_get_param_info(gc, i) (&((gc)->type_params + (i))->info)
627
628 #define mono_generic_param_owner(p)             ((p)->owner)
629 #define mono_generic_param_num(p)               ((p)->num)
630 #define mono_generic_param_info(p)              (mono_generic_param_owner (p) ? &((MonoGenericParamFull *) p)->info : NULL)
631 #define mono_generic_param_name(p)              (((mono_generic_param_owner (p) || (p)->gshared_constraint)) ? ((MonoGenericParamFull *) p)->info.name : NULL)
632 #define mono_type_get_generic_param_owner(t)    (mono_generic_param_owner ((t)->data.generic_param))
633 #define mono_type_get_generic_param_num(t)      (mono_generic_param_num   ((t)->data.generic_param))
634
635 /*
636  * Class information which might be cached by the runtime in the AOT file for
637  * example. Caching this allows us to avoid computing a generic vtable
638  * (class->vtable) in most cases, saving time and avoiding creation of lots of
639  * MonoMethod structures.
640  */
641 typedef struct MonoCachedClassInfo {
642         guint32 vtable_size;
643         guint has_finalize : 1;
644         guint ghcimpl : 1;
645         guint has_cctor : 1;
646         guint has_nested_classes : 1;
647         guint blittable : 1;
648         guint has_references : 1;
649         guint has_static_refs : 1;
650         guint no_special_static_fields : 1;
651         guint is_generic_container : 1;
652         guint32 cctor_token;
653         MonoImage *finalize_image;
654         guint32 finalize_token;
655         guint32 instance_size;
656         guint32 class_size;
657         guint32 packing_size;
658         guint32 min_align;
659 } MonoCachedClassInfo;
660
661 typedef struct {
662         const char *name;
663         gconstpointer func;
664         gconstpointer wrapper;
665         gconstpointer trampoline;
666         MonoMethodSignature *sig;
667         const char *c_symbol;
668         MonoMethod *wrapper_method;
669         gboolean no_raise;
670 } MonoJitICallInfo;
671
672 typedef struct {
673         guint8 exception_type;
674         char *class_name; /* If kind == TYPE */
675         char *assembly_name; /* If kind == TYPE or ASSEMBLY */
676         MonoClass *klass; /* If kind != TYPE */
677         const char *member_name; /* If kind != TYPE */
678         gboolean ref_only; /* If kind == ASSEMBLY */
679         char *msg; /* If kind == BAD_IMAGE */
680 } MonoLoaderError;
681
682 void
683 mono_class_setup_supertypes (MonoClass *klass);
684
685 void
686 mono_class_setup_fields_locking (MonoClass *klass);
687
688 /* WARNING
689  * Only call this function if you can ensure both @klass and @parent
690  * have supertype information initialized.
691  * This can be accomplished by mono_class_setup_supertypes or mono_class_init.
692  * If unsure, use mono_class_has_parent.
693  */
694 static inline gboolean
695 mono_class_has_parent_fast (MonoClass *klass, MonoClass *parent)
696 {
697         return (klass->idepth >= parent->idepth) && (klass->supertypes [parent->idepth - 1] == parent);
698 }
699
700 static inline gboolean
701 mono_class_has_parent (MonoClass *klass, MonoClass *parent)
702 {
703         if (G_UNLIKELY (!klass->supertypes))
704                 mono_class_setup_supertypes (klass);
705
706         if (G_UNLIKELY (!parent->supertypes))
707                 mono_class_setup_supertypes (parent);
708
709         return mono_class_has_parent_fast (klass, parent);
710 }
711
712 typedef struct {
713         MonoVTable *default_vtable;
714         MonoVTable *xdomain_vtable;
715         MonoClass *proxy_class;
716         char* proxy_class_name;
717         uint32_t interface_count;
718         MonoClass *interfaces [MONO_ZERO_LEN_ARRAY];
719 } MonoRemoteClass;
720
721 #define MONO_SIZEOF_REMOTE_CLASS (sizeof (MonoRemoteClass) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
722
723 typedef struct {
724         guint64 new_object_count;
725         size_t initialized_class_count;
726         size_t generic_vtable_count;
727         size_t used_class_count;
728         size_t method_count;
729         size_t class_vtable_size;
730         size_t class_static_data_size;
731         size_t generic_instance_count;
732         size_t generic_class_count;
733         size_t inflated_method_count;
734         size_t inflated_method_count_2;
735         size_t inflated_type_count;
736         size_t generics_metadata_size;
737         size_t delegate_creations;
738         size_t imt_tables_size;
739         size_t imt_number_of_tables;
740         size_t imt_number_of_methods;
741         size_t imt_used_slots;
742         size_t imt_slots_with_collisions;
743         size_t imt_max_collisions_in_slot;
744         size_t imt_method_count_when_max_collisions;
745         size_t imt_thunks_size;
746         size_t jit_info_table_insert_count;
747         size_t jit_info_table_remove_count;
748         size_t jit_info_table_lookup_count;
749         size_t generics_sharable_methods;
750         size_t generics_unsharable_methods;
751         size_t generics_shared_methods;
752         size_t gsharedvt_methods;
753         size_t minor_gc_count;
754         size_t major_gc_count;
755         size_t minor_gc_time_usecs;
756         size_t major_gc_time_usecs;
757         gboolean enabled;
758 } MonoStats;
759
760 /* 
761  * new structure to hold performace counters values that are exported
762  * to managed code.
763  * Note: never remove fields from this structure and only add them to the end.
764  * Size of fields and type should not be changed as well.
765  */
766 typedef struct {
767         /* JIT category */
768         guint32 jit_methods;
769         guint32 jit_bytes;
770         guint32 jit_time;
771         guint32 jit_failures;
772         /* Exceptions category */
773         guint32 exceptions_thrown;
774         guint32 exceptions_filters;
775         guint32 exceptions_finallys;
776         guint32 exceptions_depth;
777         guint32 aspnet_requests_queued;
778         guint32 aspnet_requests;
779         /* Memory category */
780         guint32 gc_collections0;
781         guint32 gc_collections1;
782         guint32 gc_collections2;
783         guint32 gc_promotions0;
784         guint32 gc_promotions1;
785         guint32 gc_promotion_finalizers;
786         guint32 gc_gen0size;
787         guint32 gc_gen1size;
788         guint32 gc_gen2size;
789         guint32 gc_lossize;
790         guint32 gc_fin_survivors;
791         guint32 gc_num_handles;
792         guint32 gc_allocated;
793         guint32 gc_induced;
794         guint32 gc_time;
795         guint32 gc_total_bytes;
796         guint32 gc_committed_bytes;
797         guint32 gc_reserved_bytes;
798         guint32 gc_num_pinned;
799         guint32 gc_sync_blocks;
800         /* Remoting category */
801         guint32 remoting_calls;
802         guint32 remoting_channels;
803         guint32 remoting_proxies;
804         guint32 remoting_classes;
805         guint32 remoting_objects;
806         guint32 remoting_contexts;
807         /* Loader category */
808         guint32 loader_classes;
809         guint32 loader_total_classes;
810         guint32 loader_appdomains;
811         guint32 loader_total_appdomains;
812         guint32 loader_assemblies;
813         guint32 loader_total_assemblies;
814         guint32 loader_failures;
815         guint32 loader_bytes;
816         guint32 loader_appdomains_uloaded;
817         /* Threads and Locks category  */
818         guint32 thread_contentions;
819         guint32 thread_queue_len;
820         guint32 thread_queue_max;
821         guint32 thread_num_logical;
822         guint32 thread_num_physical;
823         guint32 thread_cur_recognized;
824         guint32 thread_num_recognized;
825         /* Interop category */
826         guint32 interop_num_ccw;
827         guint32 interop_num_stubs;
828         guint32 interop_num_marshals;
829         /* Security category */
830         guint32 security_num_checks;
831         guint32 security_num_link_checks;
832         guint32 security_time;
833         guint32 security_depth;
834         guint32 unused;
835         /* Threadpool */
836         guint64 threadpool_workitems;
837         guint64 threadpool_ioworkitems;
838         guint threadpool_threads;
839         guint threadpool_iothreads;
840 } MonoPerfCounters;
841
842 extern MonoPerfCounters *mono_perfcounters;
843
844 MONO_API void mono_perfcounters_init (void);
845
846 /*
847  * The definition of the first field in SafeHandle,
848  * Keep in sync with SafeHandle.cs, this is only used
849  * to access the `handle' parameter.
850  */
851 typedef struct {
852         MonoObject  base;
853         void       *handle;
854 } MonoSafeHandle;
855
856 /*
857  * Keep in sync with HandleRef.cs
858  */
859 typedef struct {
860         MonoObject *wrapper;
861         void       *handle;
862 } MonoHandleRef;
863
864 enum {
865         MONO_GENERIC_SHARING_NONE,
866         MONO_GENERIC_SHARING_COLLECTIONS,
867         MONO_GENERIC_SHARING_CORLIB,
868         MONO_GENERIC_SHARING_ALL
869 };
870
871 /*
872  * Flags for which contexts were used in inflating a generic.
873  */
874 enum {
875         MONO_GENERIC_CONTEXT_USED_CLASS = 1,
876         MONO_GENERIC_CONTEXT_USED_METHOD = 2
877 };
878
879 #define MONO_GENERIC_CONTEXT_USED_BOTH          (MONO_GENERIC_CONTEXT_USED_CLASS | MONO_GENERIC_CONTEXT_USED_METHOD)
880
881 extern MonoStats mono_stats;
882
883 typedef gpointer (*MonoTrampoline)       (MonoMethod *method);
884 typedef gpointer (*MonoJumpTrampoline)       (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
885 typedef gpointer (*MonoRemotingTrampoline)       (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target);
886 typedef gpointer (*MonoDelegateTrampoline)       (MonoDomain *domain, MonoClass *klass);
887
888 typedef gpointer (*MonoLookupDynamicToken) (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context);
889
890 typedef gboolean (*MonoGetCachedClassInfo) (MonoClass *klass, MonoCachedClassInfo *res);
891
892 typedef gboolean (*MonoGetClassFromName) (MonoImage *image, const char *name_space, const char *name, MonoClass **res);
893
894 static inline gboolean
895 method_is_dynamic (MonoMethod *method)
896 {
897 #ifdef DISABLE_REFLECTION_EMIT
898         return FALSE;
899 #else
900         return method->dynamic;
901 #endif
902 }
903
904 void
905 mono_classes_init (void);
906
907 void
908 mono_classes_cleanup (void);
909
910 void
911 mono_class_layout_fields   (MonoClass *klass);
912
913 void
914 mono_class_setup_interface_offsets (MonoClass *klass);
915
916 void
917 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup);
918
919 void
920 mono_class_setup_vtable (MonoClass *klass);
921
922 void
923 mono_class_setup_methods (MonoClass *klass);
924
925 void
926 mono_class_setup_mono_type (MonoClass *klass);
927
928 void
929 mono_class_setup_parent    (MonoClass *klass, MonoClass *parent);
930
931 MonoMethod*
932 mono_class_get_method_by_index (MonoClass *klass, int index);
933
934 MonoMethod*
935 mono_class_get_inflated_method (MonoClass *klass, MonoMethod *method);
936
937 MonoMethod*
938 mono_class_get_vtable_entry (MonoClass *klass, int offset);
939
940 GPtrArray*
941 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error);
942
943 int
944 mono_class_get_vtable_size (MonoClass *klass);
945
946 gboolean
947 mono_class_is_open_constructed_type (MonoType *t);
948
949 gboolean
950 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
951                                MonoGenericContext *generic_context);
952
953 MonoMethod*
954 mono_class_get_cctor (MonoClass *klass);
955
956 MonoMethod*
957 mono_class_get_finalizer (MonoClass *klass);
958
959 gboolean
960 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller);
961
962 gboolean
963 mono_class_field_is_special_static (MonoClassField *field);
964
965 guint32
966 mono_class_field_get_special_static_type (MonoClassField *field);
967
968 gboolean
969 mono_class_has_special_static_fields (MonoClass *klass);
970
971 const char*
972 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type);
973
974 const char*
975 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type);
976
977 void
978 mono_install_trampoline (MonoTrampoline func);
979
980 void
981 mono_install_jump_trampoline (MonoJumpTrampoline func);
982
983 void
984 mono_install_delegate_trampoline (MonoDelegateTrampoline func);
985
986 gpointer
987 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context);
988
989 gpointer
990 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean check_token, MonoClass **handle_class, MonoGenericContext *context);
991
992 void
993 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func);
994
995 gpointer
996 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
997
998 gpointer
999 mono_runtime_create_delegate_trampoline (MonoClass *klass);
1000
1001 void
1002 mono_install_get_cached_class_info (MonoGetCachedClassInfo func);
1003
1004 void
1005 mono_install_get_class_from_name (MonoGetClassFromName func);
1006
1007 MonoGenericContext*
1008 mono_class_get_context (MonoClass *klass);
1009
1010 MonoMethodSignature*
1011 mono_method_signature_checked (MonoMethod *m, MonoError *err);
1012
1013 MonoGenericContext*
1014 mono_method_get_context_general (MonoMethod *method, gboolean uninflated);
1015
1016 MonoGenericContext*
1017 mono_method_get_context (MonoMethod *method);
1018
1019 /* Used by monodis, thus cannot be MONO_INTERNAL */
1020 MONO_API MonoGenericContainer*
1021 mono_method_get_generic_container (MonoMethod *method);
1022
1023 MonoGenericContext*
1024 mono_generic_class_get_context (MonoGenericClass *gclass);
1025
1026 MonoClass*
1027 mono_generic_class_get_class (MonoGenericClass *gclass);
1028
1029 void
1030 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container);
1031
1032 MonoMethod*
1033 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context);
1034
1035 MonoMethod*
1036 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error);
1037
1038 MonoMethod *
1039 mono_class_inflate_generic_method_checked (MonoMethod *method, MonoGenericContext *context, MonoError *error);
1040
1041 MonoMethodInflated*
1042 mono_method_inflated_lookup (MonoMethodInflated* method, gboolean cache);
1043
1044 MONO_API MonoMethodSignature *
1045 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context);
1046
1047 MonoType*
1048 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error);
1049
1050 MonoClass*
1051 mono_class_inflate_generic_class (MonoClass *gklass, MonoGenericContext *context);
1052
1053 MonoType*
1054 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error);
1055
1056 MONO_API void
1057 mono_metadata_free_inflated_signature (MonoMethodSignature *sig);
1058
1059 MonoMethodSignature*
1060 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error);
1061
1062 typedef struct {
1063         MonoImage *corlib;
1064         MonoClass *object_class;
1065         MonoClass *byte_class;
1066         MonoClass *void_class;
1067         MonoClass *boolean_class;
1068         MonoClass *sbyte_class;
1069         MonoClass *int16_class;
1070         MonoClass *uint16_class;
1071         MonoClass *int32_class;
1072         MonoClass *uint32_class;
1073         MonoClass *int_class;
1074         MonoClass *uint_class;
1075         MonoClass *int64_class;
1076         MonoClass *uint64_class;
1077         MonoClass *single_class;
1078         MonoClass *double_class;
1079         MonoClass *char_class;
1080         MonoClass *string_class;
1081         MonoClass *enum_class;
1082         MonoClass *array_class;
1083         MonoClass *delegate_class;
1084         MonoClass *multicastdelegate_class;
1085         MonoClass *asyncresult_class;
1086         MonoClass *manualresetevent_class;
1087         MonoClass *typehandle_class;
1088         MonoClass *fieldhandle_class;
1089         MonoClass *methodhandle_class;
1090         MonoClass *systemtype_class;
1091         MonoClass *monotype_class;
1092         MonoClass *runtimetype_class;
1093         MonoClass *exception_class;
1094         MonoClass *threadabortexception_class;
1095         MonoClass *thread_class;
1096         MonoClass *internal_thread_class;
1097 #ifndef DISABLE_REMOTING
1098         MonoClass *transparent_proxy_class;
1099         MonoClass *real_proxy_class;
1100         MonoClass *marshalbyrefobject_class;
1101         MonoClass *iremotingtypeinfo_class;
1102 #endif
1103         MonoClass *mono_method_message_class;
1104         MonoClass *appdomain_class;
1105         MonoClass *field_info_class;
1106         MonoClass *method_info_class;
1107         MonoClass *stringbuilder_class;
1108         MonoClass *math_class;
1109         MonoClass *stack_frame_class;
1110         MonoClass *stack_trace_class;
1111         MonoClass *marshal_class;
1112         MonoClass *typed_reference_class;
1113         MonoClass *argumenthandle_class;
1114         MonoClass *monitor_class;
1115         MonoClass *runtimesecurityframe_class;
1116         MonoClass *executioncontext_class;
1117         MonoClass *internals_visible_class;
1118         MonoClass *generic_ilist_class;
1119         MonoClass *generic_nullable_class;
1120         MonoClass *safehandle_class;
1121         MonoClass *handleref_class;
1122         MonoClass *attribute_class;
1123         MonoClass *customattribute_data_class;
1124         MonoClass *critical_finalizer_object;
1125         MonoClass *generic_ireadonlylist_class;
1126 } MonoDefaults;
1127
1128 #ifdef DISABLE_REMOTING
1129 #define mono_class_is_transparent_proxy(klass) (FALSE)
1130 #define mono_class_is_real_proxy(klass) (FALSE)
1131 #define mono_object_is_transparent_proxy(object) (FALSE)
1132 #else
1133 MonoRemoteClass*
1134 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class);
1135
1136 void
1137 mono_install_remoting_trampoline (MonoRemotingTrampoline func);
1138
1139 #define mono_class_is_transparent_proxy(klass) ((klass) == mono_defaults.transparent_proxy_class)
1140 #define mono_class_is_real_proxy(klass) ((klass) == mono_defaults.real_proxy_class)
1141 #define mono_object_is_transparent_proxy(object) (((MonoObject*)object)->vtable->klass == mono_defaults.transparent_proxy_class)
1142 #endif
1143
1144
1145 #define GENERATE_GET_CLASS_WITH_CACHE_DECL(shortname) \
1146 MonoClass* mono_class_get_##shortname##_class (void);
1147
1148 #define GENERATE_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1149 MonoClass*      \
1150 mono_class_get_##shortname##_class (void)       \
1151 {       \
1152         static MonoClass *tmp_class;    \
1153         MonoClass *class = tmp_class;   \
1154         if (!class) {   \
1155                 class = mono_class_from_name (mono_defaults.corlib, #namespace, #name); \
1156                 g_assert (class);       \
1157                 mono_memory_barrier (); \
1158                 tmp_class = class;      \
1159         }       \
1160         return class;   \
1161 }
1162
1163 #define GENERATE_STATIC_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1164 static GENERATE_GET_CLASS_WITH_CACHE (shortname,namespace,name)
1165
1166
1167 #ifndef DISABLE_COM
1168
1169 GENERATE_GET_CLASS_WITH_CACHE_DECL (interop_proxy)
1170 GENERATE_GET_CLASS_WITH_CACHE_DECL (idispatch)
1171 GENERATE_GET_CLASS_WITH_CACHE_DECL (iunknown)
1172 GENERATE_GET_CLASS_WITH_CACHE_DECL (com_object)
1173 GENERATE_GET_CLASS_WITH_CACHE_DECL (variant)
1174
1175 #endif
1176
1177 extern MonoDefaults mono_defaults;
1178
1179 void
1180 mono_loader_init           (void);
1181
1182 void
1183 mono_loader_cleanup        (void);
1184
1185 void
1186 mono_loader_lock           (void) MONO_LLVM_INTERNAL;
1187
1188 void
1189 mono_loader_unlock         (void) MONO_LLVM_INTERNAL;
1190
1191 void
1192 mono_loader_lock_track_ownership (gboolean track);
1193
1194 gboolean
1195 mono_loader_lock_is_owned_by_self (void);
1196
1197 void
1198 mono_loader_lock_if_inited (void);
1199
1200 void
1201 mono_loader_unlock_if_inited (void);
1202
1203 void
1204 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only);
1205
1206 void
1207 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name);
1208
1209 void
1210 mono_loader_set_error_method_load (const char *class_name, const char *member_name);
1211
1212 void
1213 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name);
1214 void
1215 mono_loader_set_error_bad_image (char *msg);
1216
1217 MonoException *
1218 mono_loader_error_prepare_exception (MonoLoaderError *error);
1219
1220 MonoLoaderError *
1221 mono_loader_get_last_error (void);
1222
1223 void
1224 mono_loader_clear_error    (void);
1225
1226 void
1227 mono_reflection_init       (void);
1228
1229 void
1230 mono_icall_init            (void);
1231
1232 void
1233 mono_icall_cleanup         (void);
1234
1235 gpointer
1236 mono_method_get_wrapper_data (MonoMethod *method, guint32 id);
1237
1238 gboolean
1239 mono_metadata_has_generic_params (MonoImage *image, guint32 token);
1240
1241 MONO_API MonoGenericContainer *
1242 mono_metadata_load_generic_params (MonoImage *image, guint32 token,
1243                                    MonoGenericContainer *parent_container);
1244
1245 MONO_API gboolean
1246 mono_metadata_load_generic_param_constraints_checked (MonoImage *image, guint32 token,
1247                                               MonoGenericContainer *container, MonoError *error);
1248
1249 MonoMethodSignature*
1250 mono_create_icall_signature (const char *sigstr);
1251
1252 MonoJitICallInfo *
1253 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save);
1254
1255 MonoJitICallInfo *
1256 mono_register_jit_icall_full (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save, gboolean no_raise, const char *c_symbol);
1257
1258 void
1259 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper);
1260
1261 MonoJitICallInfo *
1262 mono_find_jit_icall_by_name (const char *name) MONO_LLVM_INTERNAL;
1263
1264 MonoJitICallInfo *
1265 mono_find_jit_icall_by_addr (gconstpointer addr) MONO_LLVM_INTERNAL;
1266
1267 GHashTable*
1268 mono_get_jit_icall_info (void);
1269
1270 const char*
1271 mono_lookup_jit_icall_symbol (const char *name);
1272
1273 gboolean
1274 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data);
1275
1276 gpointer
1277 mono_class_get_exception_data (MonoClass *klass);
1278
1279 MonoException*
1280 mono_class_get_exception_for_failure (MonoClass *klass);
1281
1282 char*
1283 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format);
1284
1285 char*
1286 mono_type_get_full_name (MonoClass *klass);
1287
1288 char *
1289 mono_method_get_name_full (MonoMethod *method, gboolean signature, MonoTypeNameFormat format);
1290
1291 MonoArrayType *mono_dup_array_type (MonoImage *image, MonoArrayType *a);
1292 MonoMethodSignature *mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig);
1293
1294 MONO_API void
1295 mono_image_init_name_cache (MonoImage *image);
1296
1297 gboolean mono_class_is_nullable (MonoClass *klass);
1298 MonoClass *mono_class_get_nullable_param (MonoClass *klass);
1299
1300 /* object debugging functions, for use inside gdb */
1301 MONO_API void mono_object_describe        (MonoObject *obj);
1302 MONO_API void mono_object_describe_fields (MonoObject *obj);
1303 MONO_API void mono_value_describe_fields  (MonoClass* klass, const char* addr);
1304 MONO_API void mono_class_describe_statics (MonoClass* klass);
1305
1306 /* method debugging functions, for use inside gdb */
1307 MONO_API void mono_method_print_code (MonoMethod *method);
1308
1309 /*Enum validation related functions*/
1310 MONO_API gboolean
1311 mono_type_is_valid_enum_basetype (MonoType * type);
1312
1313 MONO_API gboolean
1314 mono_class_is_valid_enum (MonoClass *klass);
1315
1316 MonoType *
1317 mono_type_get_checked        (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1318
1319 gboolean
1320 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass);
1321
1322 MonoMethod*
1323 mono_class_get_method_generic (MonoClass *klass, MonoMethod *method);
1324
1325 MonoType*
1326 mono_type_get_basic_type_from_generic (MonoType *type);
1327
1328 gboolean
1329 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass);
1330
1331 gboolean
1332 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass);
1333
1334 gboolean
1335 mono_class_can_access_class (MonoClass *access_class, MonoClass *target_class);
1336
1337 MonoClass *
1338 mono_class_get_generic_type_definition (MonoClass *klass);
1339
1340 gboolean
1341 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent);
1342
1343 int
1344 mono_method_get_vtable_slot (MonoMethod *method);
1345
1346 int
1347 mono_method_get_vtable_index (MonoMethod *method);
1348
1349 MonoMethod*
1350 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig);
1351
1352 void
1353 mono_class_setup_interface_id (MonoClass *klass);
1354
1355 MonoGenericContainer*
1356 mono_class_get_generic_container (MonoClass *klass);
1357
1358 MonoGenericClass*
1359 mono_class_get_generic_class (MonoClass *klass);
1360
1361 void
1362 mono_class_alloc_ext (MonoClass *klass);
1363
1364 void
1365 mono_class_setup_interfaces (MonoClass *klass, MonoError *error);
1366
1367 MonoClassField*
1368 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type);
1369
1370 MonoVTable*
1371 mono_class_vtable_full (MonoDomain *domain, MonoClass *klass, gboolean raise_on_error);
1372
1373 gboolean
1374 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate);
1375
1376 gboolean
1377 mono_class_has_variant_generic_params (MonoClass *klass);
1378
1379 gboolean
1380 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv);
1381
1382 gboolean mono_is_corlib_image (MonoImage *image);
1383
1384 MonoType*
1385 mono_field_get_type_checked (MonoClassField *field, MonoError *error);
1386
1387 MonoClassField*
1388 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter);
1389
1390 gboolean
1391 mono_class_check_vtable_constraints (MonoClass *klass, GList *in_setup);
1392
1393 gboolean
1394 mono_class_has_finalizer (MonoClass *klass);
1395
1396 void
1397 mono_unload_interface_id (MonoClass *klass);
1398
1399 GPtrArray*
1400 mono_class_get_methods_by_name (MonoClass *klass, const char *name, guint32 bflags, gboolean ignore_case, gboolean allow_ctors, MonoException **ex);
1401
1402 char*
1403 mono_class_full_name (MonoClass *klass);
1404
1405 MonoClass*
1406 mono_class_inflate_generic_class_checked (MonoClass *gklass, MonoGenericContext *context, MonoError *error);
1407
1408 MonoClass *
1409 mono_class_get_checked (MonoImage *image, guint32 type_token, MonoError *error);
1410
1411 MonoClass *
1412 mono_class_get_and_inflate_typespec_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1413
1414 MonoClass *
1415 mono_class_from_name_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1416
1417 MonoClass *
1418 mono_class_from_name_case_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1419
1420 MonoClassField*
1421 mono_field_from_token_checked (MonoImage *image, uint32_t token, MonoClass **retklass, MonoGenericContext *context, MonoError *error);
1422
1423 gpointer
1424 mono_ldtoken_checked (MonoImage *image, guint32 token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1425
1426 #endif /* __MONO_METADATA_CLASS_INTERBALS_H__ */