[runtime] Move MonoClass::generic_class to MonoClassGenericInst.
[mono.git] / mono / metadata / class-internals.h
1 /* 
2  * Copyright 2012 Xamarin Inc
3  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
4  */
5 #ifndef __MONO_METADATA_CLASS_INTERNALS_H__
6 #define __MONO_METADATA_CLASS_INTERNALS_H__
7
8 #include <mono/metadata/class.h>
9 #include <mono/metadata/object.h>
10 #include <mono/metadata/mempool.h>
11 #include <mono/metadata/metadata-internals.h>
12 #include <mono/io-layer/io-layer.h>
13 #include "mono/utils/mono-compiler.h"
14 #include "mono/utils/mono-error.h"
15 #include "mono/sgen/gc-internal-agnostic.h"
16
17 #define MONO_CLASS_IS_ARRAY(c) ((c)->rank)
18
19 #define MONO_CLASS_HAS_STATIC_METADATA(klass) ((klass)->type_token && !(klass)->image->dynamic && !mono_class_is_ginst (klass))
20
21 #define MONO_DEFAULT_SUPERTABLE_SIZE 6
22
23 extern gboolean mono_print_vtable;
24 extern gboolean mono_align_small_structs;
25
26 typedef struct _MonoMethodWrapper MonoMethodWrapper;
27 typedef struct _MonoMethodInflated MonoMethodInflated;
28 typedef struct _MonoMethodPInvoke MonoMethodPInvoke;
29
30 /* Properties that applies to a group of structs should better use a higher number
31  * to avoid colision with type specific properties.
32  * 
33  * This prop applies to class, method, property, event, assembly and image.
34  */
35 #define MONO_PROP_DYNAMIC_CATTR 0x1000
36
37 #ifdef ENABLE_ICALL_EXPORT
38 #pragma GCC diagnostic ignored "-Wmissing-prototypes"
39 #define ICALL_EXPORT MONO_API
40 #else
41 #define ICALL_EXPORT static
42 #endif
43
44 typedef enum {
45 #define WRAPPER(e,n) MONO_WRAPPER_ ## e,
46 #include "wrapper-types.h"
47 #undef WRAPPER
48         MONO_WRAPPER_NUM
49 } MonoWrapperType;
50
51 typedef enum {
52         MONO_TYPE_NAME_FORMAT_IL,
53         MONO_TYPE_NAME_FORMAT_REFLECTION,
54         MONO_TYPE_NAME_FORMAT_FULL_NAME,
55         MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED
56 } MonoTypeNameFormat;
57
58 typedef enum {
59         MONO_REMOTING_TARGET_UNKNOWN,
60         MONO_REMOTING_TARGET_APPDOMAIN,
61         MONO_REMOTING_TARGET_COMINTEROP
62 } MonoRemotingTarget;
63
64 #define MONO_METHOD_PROP_GENERIC_CONTAINER 0
65
66 struct _MonoMethod {
67         guint16 flags;  /* method flags */
68         guint16 iflags; /* method implementation flags */
69         guint32 token;
70         MonoClass *klass; /* To what class does this method belong */
71         MonoMethodSignature *signature;
72         /* name is useful mostly for debugging */
73         const char *name;
74         /* this is used by the inlining algorithm */
75         unsigned int inline_info:1;
76         unsigned int inline_failure:1;
77         unsigned int wrapper_type:5;
78         unsigned int string_ctor:1;
79         unsigned int save_lmf:1;
80         unsigned int dynamic:1; /* created & destroyed during runtime */
81         unsigned int sre_method:1; /* created at runtime using Reflection.Emit */
82         unsigned int is_generic:1; /* whenever this is a generic method definition */
83         unsigned int is_inflated:1; /* whether we're a MonoMethodInflated */
84         unsigned int skip_visibility:1; /* whenever to skip JIT visibility checks */
85         unsigned int verification_success:1; /* whether this method has been verified successfully.*/
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 typedef 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 } MonoExceptionType;
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 typedef enum {
260         MONO_CLASS_DEF = 1, /* non-generic type */
261         MONO_CLASS_GTD, /* generic type definition */
262         MONO_CLASS_GINST, /* generic instantiation */
263         MONO_CLASS_GPARAM, /* generic parameter */
264         MONO_CLASS_ARRAY, /* vector or array, bounded or not */
265         MONO_CLASS_POINTER, /* pointer of function pointer*/
266 } MonoTypeKind;
267
268 struct _MonoClass {
269         /* element class for arrays and enum basetype for enums */
270         MonoClass *element_class; 
271         /* used for subtype checks */
272         MonoClass *cast_class; 
273
274         /* for fast subtype checks */
275         MonoClass **supertypes;
276         guint16     idepth;
277
278         /* array dimension */
279         guint8     rank;          
280
281         int        instance_size; /* object instance size */
282
283         guint inited          : 1;
284
285         /* A class contains static and non static data. Static data can be
286          * of the same type as the class itselfs, but it does not influence
287          * the instance size of the class. To avoid cyclic calls to 
288          * mono_class_init (from mono_class_instance_size ()) we first 
289          * initialise all non static fields. After that we set size_inited 
290          * to 1, because we know the instance size now. After that we 
291          * initialise all static fields.
292          */
293         /* size_inited is accessed without locks, so it needs a memory barrier */
294         guint size_inited     : 1;
295         guint valuetype       : 1; /* derives from System.ValueType */
296         guint enumtype        : 1; /* derives from System.Enum */
297         guint blittable       : 1; /* class is blittable */
298         guint unicode         : 1; /* class uses unicode char when marshalled */
299         guint wastypebuilder  : 1; /* class was created at runtime from a TypeBuilder */
300         /* next byte */
301         guint8 min_align;
302
303         /* next byte */
304         guint packing_size    : 4;
305         guint ghcimpl         : 1; /* class has its own GetHashCode impl */ 
306         guint has_finalize    : 1; /* class has its own Finalize impl */ 
307 #ifndef DISABLE_REMOTING
308         guint marshalbyref    : 1; /* class is a MarshalByRefObject */
309         guint contextbound    : 1; /* class is a ContextBoundObject */
310 #endif
311         /* next byte */
312         guint delegate        : 1; /* class is a Delegate */
313         guint gc_descr_inited : 1; /* gc_descr is initialized */
314         guint has_cctor       : 1; /* class has a cctor */
315         guint has_references  : 1; /* it has GC-tracked references in the instance */
316         guint has_static_refs : 1; /* it has static fields that are GC-tracked */
317         guint no_special_static_fields : 1; /* has no thread/context static fields */
318         /* directly or indirectly derives from ComImport attributed class.
319          * this means we need to create a proxy for instances of this class
320          * for COM Interop. set this flag on loading so all we need is a quick check
321          * during object creation rather than having to traverse supertypes
322          */
323         guint is_com_object : 1; 
324         guint nested_classes_inited : 1; /* Whenever nested_class is initialized */
325
326         /* next byte*/
327         guint class_kind : 3; /* One of the values from MonoTypeKind */
328         guint interfaces_inited : 1; /* interfaces is initialized */
329         guint simd_type : 1; /* class is a simd intrinsic type */
330         guint has_finalize_inited    : 1; /* has_finalize is initialized */
331         guint fields_inited : 1; /* setup_fields () has finished */
332         guint has_failure : 1; /* See MONO_CLASS_PROP_EXCEPTION_DATA for a MonoErrorBoxed with the details */
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         MonoGenericContainer *generic_container;
395
396         MonoGCDescriptor gc_descr;
397
398         MonoClassRuntimeInfo *runtime_info;
399
400         /* next element in the class_cache hash list (in MonoImage) */
401         MonoClass *next_class_cache;
402
403         /* Generic vtable. Initialized by a call to mono_class_setup_vtable () */
404         MonoMethod **vtable;
405
406         /* Rarely used fields of classes */
407         MonoClassExt *ext;
408 };
409
410 typedef struct {
411         MonoClass class;
412 } MonoClassDef;
413
414 typedef struct {
415         MonoClass class;
416 } MonoClassGtd;
417
418 typedef struct {
419         MonoClass class;
420         MonoGenericClass *generic_class;
421 } MonoClassGenericInst;
422
423 typedef struct {
424         MonoClass class;
425 } MonoClassGenericParam;
426
427 typedef struct {
428         MonoClass class;
429 } MonoClassArray;
430
431 typedef struct {
432         MonoClass class;
433 } MonoClassPointer;
434
435 #ifdef COMPRESSED_INTERFACE_BITMAP
436 int mono_compress_bitmap (uint8_t *dest, const uint8_t *bitmap, int size);
437 int mono_class_interface_match (const uint8_t *bitmap, int id);
438 #else
439 #define mono_class_interface_match(bmap,uiid) ((bmap) [(uiid) >> 3] & (1 << ((uiid)&7)))
440 #endif
441
442 #define MONO_CLASS_IMPLEMENTS_INTERFACE(k,uiid) (((uiid) <= (k)->max_interface_id) && mono_class_interface_match ((k)->interface_bitmap, (uiid)))
443
444 #define MONO_VTABLE_AVAILABLE_GC_BITS 4
445
446 #ifdef DISABLE_REMOTING
447 #define mono_class_is_marshalbyref(klass) (FALSE)
448 #define mono_class_is_contextbound(klass) (FALSE)
449 #define mono_vtable_is_remote(vtable) (FALSE)
450 #define mono_vtable_set_is_remote(vtable,enable) do {} while (0)
451 #else
452 #define mono_class_is_marshalbyref(klass) ((klass)->marshalbyref)
453 #define mono_class_is_contextbound(klass) ((klass)->contextbound)
454 #define mono_vtable_is_remote(vtable) ((vtable)->remote)
455 #define mono_vtable_set_is_remote(vtable,enable) do { (vtable)->remote = enable ? 1 : 0; } while (0)
456 #endif
457
458 #ifdef DISABLE_COM
459 #define mono_class_is_com_object(klass) (FALSE)
460 #define mono_class_set_is_com_object(klass) do {} while (0)
461 #else
462 #define mono_class_is_com_object(klass) ((klass)->is_com_object)
463 #define mono_class_set_is_com_object(klass) do { (klass)->is_com_object = 1; } while (0)
464 #endif
465
466
467 MONO_API int mono_class_interface_offset (MonoClass *klass, MonoClass *itf);
468 int mono_class_interface_offset_with_variance (MonoClass *klass, MonoClass *itf, gboolean *non_exact_match);
469
470 typedef gpointer MonoRuntimeGenericContext;
471
472 /* the interface_offsets array is stored in memory before this struct */
473 struct MonoVTable {
474         MonoClass  *klass;
475          /*
476          * According to comments in gc_gcj.h, this should be the second word in
477          * the vtable.
478          */
479         MonoGCDescriptor gc_descr;
480         MonoDomain *domain;  /* each object/vtable belongs to exactly one domain */
481         gpointer    type; /* System.Type type for klass */
482         guint8     *interface_bitmap;
483         guint16     max_interface_id;
484         guint8      rank;
485         guint remote          : 1; /* class is remotely activated */
486         guint initialized     : 1; /* cctor has been run */
487         guint init_failed     : 1; /* cctor execution failed */
488         guint has_static_fields : 1; /* pointer to the data stored at the end of the vtable array */
489         guint gc_bits         : MONO_VTABLE_AVAILABLE_GC_BITS; /* Those bits are reserved for the usaged of the GC */
490
491         guint32     imt_collisions_bitmap;
492         MonoRuntimeGenericContext *runtime_generic_context;
493         /* do not add any fields after vtable, the structure is dynamically extended */
494         /* vtable contains function pointers to methods or their trampolines, at the
495          end there may be a slot containing the pointer to the static fields */
496         gpointer    vtable [MONO_ZERO_LEN_ARRAY];       
497 };
498
499 #define MONO_SIZEOF_VTABLE (sizeof (MonoVTable) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
500
501 #define MONO_VTABLE_IMPLEMENTS_INTERFACE(vt,uiid) (((uiid) <= (vt)->max_interface_id) && mono_class_interface_match ((vt)->interface_bitmap, (uiid)))
502
503 /*
504  * Generic instantiation data type encoding.
505  */
506
507 /*
508  * A particular generic instantiation:
509  *
510  * All instantiations are cached and we don't distinguish between class and method
511  * instantiations here.
512  */
513 struct _MonoGenericInst {
514 #ifndef MONO_SMALL_CONFIG
515         guint id;                       /* unique ID for debugging */
516 #endif
517         guint type_argc    : 22;        /* number of type arguments */
518         guint is_open      :  1;        /* if this is an open type */
519         MonoType *type_argv [MONO_ZERO_LEN_ARRAY];
520 };
521
522 #define MONO_SIZEOF_GENERIC_INST (sizeof (MonoGenericInst) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
523 /*
524  * The generic context: an instantiation of a set of class and method generic parameters.
525  *
526  * NOTE: Never allocate this directly on the heap.  It have to be either allocated on the stack,
527  *       or embedded within other objects.  Don't store pointers to this, because it may be on the stack.
528  *       If you really have to, ensure you store a pointer to the embedding object along with it.
529  */
530 struct _MonoGenericContext {
531         /* The instantiation corresponding to the class generic parameters */
532         MonoGenericInst *class_inst;
533         /* The instantiation corresponding to the method generic parameters */
534         MonoGenericInst *method_inst;
535 };
536
537 /*
538  * Inflated generic method.
539  */
540 struct _MonoMethodInflated {
541         union {
542                 MonoMethod method;
543                 MonoMethodPInvoke pinvoke;
544         } method;
545         MonoMethod *declaring;          /* the generic method definition. */
546         MonoGenericContext context;     /* The current instantiation */
547         MonoImageSet *owner; /* The image set that the inflated method belongs to. */
548 };
549
550 /*
551  * A particular instantiation of a generic type.
552  */
553 struct _MonoGenericClass {
554         MonoClass *container_class;     /* the generic type definition */
555         MonoGenericContext context;     /* a context that contains the type instantiation doesn't contain any method instantiation */ /* FIXME: Only the class_inst member of "context" is ever used, so this field could be replaced with just a monogenericinst */
556         guint is_dynamic  : 1;          /* Contains dynamic types */
557         guint is_tb_open  : 1;          /* This is the fully open instantiation for a type_builder. Quite ugly, but it's temporary.*/
558         guint need_sync   : 1;      /* Only if dynamic. Need to be synchronized with its container class after its finished. */
559         MonoClass *cached_class;        /* if present, the MonoClass corresponding to the instantiation.  */
560
561         /* 
562          * The image set which owns this generic class. Memory owned by the generic class
563          * including cached_class should be allocated from the mempool of the image set,
564          * so it is easy to free.
565          */
566         MonoImageSet *owner;
567 };
568
569 /*
570  * A type parameter.
571  */
572 struct _MonoGenericParam {
573         /*
574          * Type or method this parameter was defined in.
575          */
576         MonoGenericContainer *owner;
577         guint16 num;
578         /*
579          * If != NULL, this is a generated generic param used by the JIT to implement generic
580          * sharing.
581          */
582         MonoType *gshared_constraint;
583 };
584
585 /* Additional details about a MonoGenericParam */
586 /* Keep in sync with managed Mono.RuntimeStructs.GenericParamInfo */
587 typedef struct {
588         MonoClass *pklass;              /* The corresponding `MonoClass'. */
589         const char *name;
590
591         // See GenericParameterAttributes
592         guint16 flags;
593
594         guint32 token;
595
596         // Constraints on type parameters
597         MonoClass** constraints; /* NULL means end of list */
598 } MonoGenericParamInfo;
599
600 typedef struct {
601         MonoGenericParam param;
602         MonoGenericParamInfo info;
603 } MonoGenericParamFull;
604
605 /*
606  * The generic container.
607  *
608  * Stores the type parameters of a generic type definition or a generic method definition.
609  */
610 struct _MonoGenericContainer {
611         MonoGenericContext context;
612         /* If we're a generic method definition in a generic type definition,
613            the generic container of the containing class. */
614         MonoGenericContainer *parent;
615         /* the generic type definition or the generic method definition corresponding to this container */
616         /* Union rules: If is_anonymous, image field is valid; else if is_method, method field is valid; else klass is valid. */
617         union {
618                 MonoClass *klass;
619                 MonoMethod *method;
620                 MonoImage *image;
621         } owner;
622         int type_argc    : 29; // Per the ECMA spec, this value is capped at 16 bits
623         /* If true, we're a generic method, otherwise a generic type definition. */
624         /* Invariant: parent != NULL => is_method */
625         int is_method     : 1;
626         /* If true, this container has no associated class/method and only the image is known. This can happen:
627            1. For the special anonymous containers kept by MonoImage.
628            2. During container creation via the mono_metadata_load_generic_params path-- in this case the caller
629               sets the owner, so temporarily while load_generic_params is completing the container is anonymous.
630            3. When user code creates a generic parameter via SRE, but has not yet set an owner. */
631         int is_anonymous : 1;
632         /* If false, all params in this container are full-size. If true, all params are just param structs. */
633         /* This field is always == to the is_anonymous field, except in "temporary" cases (2) and (3) above. */
634         /* TODO: Merge GenericParam and GenericParamFull, remove this field. Benefit is marginal. */
635         int is_small_param : 1;
636         /* Our type parameters. */
637         MonoGenericParamFull *type_params;
638 };
639
640 static inline MonoGenericParam *
641 mono_generic_container_get_param (MonoGenericContainer *gc, int i)
642 {
643         return (MonoGenericParam *) &gc->type_params [i];
644 }
645
646 static inline MonoGenericParamInfo *
647 mono_generic_container_get_param_info (MonoGenericContainer *gc, int i)
648 {
649         return &gc->type_params [i].info;
650 }
651
652 static inline MonoGenericContainer *
653 mono_generic_param_owner (MonoGenericParam *p)
654 {
655         return p->owner;
656 }
657
658 static inline int
659 mono_generic_param_num (MonoGenericParam *p)
660 {
661         return p->num;
662 }
663
664 static inline gboolean
665 mono_generic_param_is_fullsize (MonoGenericParam *p)
666 {
667         return !mono_generic_param_owner (p)->is_small_param;
668 }
669
670 static inline MonoGenericParamInfo *
671 mono_generic_param_info (MonoGenericParam *p)
672 {
673         if (mono_generic_param_is_fullsize (p))
674                 return &((MonoGenericParamFull *) p)->info;
675         return NULL;
676 }
677
678 static inline const char *
679 mono_generic_param_name (MonoGenericParam *p)
680 {
681         if (mono_generic_param_is_fullsize (p))
682                 return ((MonoGenericParamFull *) p)->info.name;
683         return NULL;
684 }
685
686 static inline MonoGenericContainer *
687 mono_type_get_generic_param_owner (MonoType *t)
688 {
689         return mono_generic_param_owner (t->data.generic_param);
690 }
691
692 static inline int
693 mono_type_get_generic_param_num (MonoType *t)
694 {
695         return mono_generic_param_num (t->data.generic_param);
696 }
697
698 /*
699  * Class information which might be cached by the runtime in the AOT file for
700  * example. Caching this allows us to avoid computing a generic vtable
701  * (class->vtable) in most cases, saving time and avoiding creation of lots of
702  * MonoMethod structures.
703  */
704 typedef struct MonoCachedClassInfo {
705         guint32 vtable_size;
706         guint has_finalize : 1;
707         guint ghcimpl : 1;
708         guint has_cctor : 1;
709         guint has_nested_classes : 1;
710         guint blittable : 1;
711         guint has_references : 1;
712         guint has_static_refs : 1;
713         guint no_special_static_fields : 1;
714         guint is_generic_container : 1;
715         guint32 cctor_token;
716         MonoImage *finalize_image;
717         guint32 finalize_token;
718         guint32 instance_size;
719         guint32 class_size;
720         guint32 packing_size;
721         guint32 min_align;
722 } MonoCachedClassInfo;
723
724 typedef struct {
725         const char *name;
726         gconstpointer func;
727         gconstpointer wrapper;
728         gconstpointer trampoline;
729         MonoMethodSignature *sig;
730         const char *c_symbol;
731         MonoMethod *wrapper_method;
732         gboolean no_raise;
733 } MonoJitICallInfo;
734
735 void
736 mono_class_setup_supertypes (MonoClass *klass);
737
738 void
739 mono_class_setup_fields (MonoClass *klass);
740
741 /* WARNING
742  * Only call this function if you can ensure both @klass and @parent
743  * have supertype information initialized.
744  * This can be accomplished by mono_class_setup_supertypes or mono_class_init.
745  * If unsure, use mono_class_has_parent.
746  */
747 static inline gboolean
748 mono_class_has_parent_fast (MonoClass *klass, MonoClass *parent)
749 {
750         return (klass->idepth >= parent->idepth) && (klass->supertypes [parent->idepth - 1] == parent);
751 }
752
753 static inline gboolean
754 mono_class_has_parent (MonoClass *klass, MonoClass *parent)
755 {
756         if (G_UNLIKELY (!klass->supertypes))
757                 mono_class_setup_supertypes (klass);
758
759         if (G_UNLIKELY (!parent->supertypes))
760                 mono_class_setup_supertypes (parent);
761
762         return mono_class_has_parent_fast (klass, parent);
763 }
764
765 typedef struct {
766         MonoVTable *default_vtable;
767         MonoVTable *xdomain_vtable;
768         MonoClass *proxy_class;
769         char* proxy_class_name;
770         uint32_t interface_count;
771         MonoClass *interfaces [MONO_ZERO_LEN_ARRAY];
772 } MonoRemoteClass;
773
774 #define MONO_SIZEOF_REMOTE_CLASS (sizeof (MonoRemoteClass) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
775
776 typedef struct {
777         guint64 new_object_count;
778         size_t initialized_class_count;
779         size_t generic_vtable_count;
780         size_t used_class_count;
781         size_t method_count;
782         size_t class_vtable_size;
783         size_t class_static_data_size;
784         size_t generic_instance_count;
785         size_t generic_class_count;
786         size_t inflated_method_count;
787         size_t inflated_method_count_2;
788         size_t inflated_type_count;
789         size_t generics_metadata_size;
790         size_t delegate_creations;
791         size_t imt_tables_size;
792         size_t imt_number_of_tables;
793         size_t imt_number_of_methods;
794         size_t imt_used_slots;
795         size_t imt_slots_with_collisions;
796         size_t imt_max_collisions_in_slot;
797         size_t imt_method_count_when_max_collisions;
798         size_t imt_trampolines_size;
799         size_t jit_info_table_insert_count;
800         size_t jit_info_table_remove_count;
801         size_t jit_info_table_lookup_count;
802         size_t generics_sharable_methods;
803         size_t generics_unsharable_methods;
804         size_t generics_shared_methods;
805         size_t gsharedvt_methods;
806         size_t minor_gc_count;
807         size_t major_gc_count;
808         size_t minor_gc_time_usecs;
809         size_t major_gc_time_usecs;
810         gboolean enabled;
811 } MonoStats;
812
813 /* 
814  * new structure to hold performace counters values that are exported
815  * to managed code.
816  * Note: never remove fields from this structure and only add them to the end.
817  * Size of fields and type should not be changed as well.
818  */
819 typedef struct {
820         /* JIT category */
821         guint32 jit_methods;
822         guint32 jit_bytes;
823         guint32 jit_time;
824         guint32 jit_failures;
825         /* Exceptions category */
826         guint32 exceptions_thrown;
827         guint32 exceptions_filters;
828         guint32 exceptions_finallys;
829         guint32 exceptions_depth;
830         guint32 aspnet_requests_queued;
831         guint32 aspnet_requests;
832         /* Memory category */
833         guint32 gc_collections0;
834         guint32 gc_collections1;
835         guint32 gc_collections2;
836         guint32 gc_promotions0;
837         guint32 gc_promotions1;
838         guint32 gc_promotion_finalizers;
839         guint32 gc_gen0size;
840         guint32 gc_gen1size;
841         guint32 gc_gen2size;
842         guint32 gc_lossize;
843         guint32 gc_fin_survivors;
844         guint32 gc_num_handles;
845         guint32 gc_allocated;
846         guint32 gc_induced;
847         guint32 gc_time;
848         guint32 gc_total_bytes;
849         guint32 gc_committed_bytes;
850         guint32 gc_reserved_bytes;
851         guint32 gc_num_pinned;
852         guint32 gc_sync_blocks;
853         /* Remoting category */
854         guint32 remoting_calls;
855         guint32 remoting_channels;
856         guint32 remoting_proxies;
857         guint32 remoting_classes;
858         guint32 remoting_objects;
859         guint32 remoting_contexts;
860         /* Loader category */
861         guint32 loader_classes;
862         guint32 loader_total_classes;
863         guint32 loader_appdomains;
864         guint32 loader_total_appdomains;
865         guint32 loader_assemblies;
866         guint32 loader_total_assemblies;
867         guint32 loader_failures;
868         guint32 loader_bytes;
869         guint32 loader_appdomains_uloaded;
870         /* Threads and Locks category  */
871         guint32 thread_contentions;
872         guint32 thread_queue_len;
873         guint32 thread_queue_max;
874         guint32 thread_num_logical;
875         guint32 thread_num_physical;
876         guint32 thread_cur_recognized;
877         guint32 thread_num_recognized;
878         /* Interop category */
879         guint32 interop_num_ccw;
880         guint32 interop_num_stubs;
881         guint32 interop_num_marshals;
882         /* Security category */
883         guint32 security_num_checks;
884         guint32 security_num_link_checks;
885         guint32 security_time;
886         guint32 security_depth;
887         guint32 unused;
888         /* Threadpool */
889         guint64 threadpool_workitems;
890         guint64 threadpool_ioworkitems;
891         guint threadpool_threads;
892         guint threadpool_iothreads;
893 } MonoPerfCounters;
894
895 extern MonoPerfCounters *mono_perfcounters;
896
897 MONO_API void mono_perfcounters_init (void);
898
899 /*
900  * The definition of the first field in SafeHandle,
901  * Keep in sync with SafeHandle.cs, this is only used
902  * to access the `handle' parameter.
903  */
904 typedef struct {
905         MonoObject  base;
906         void       *handle;
907 } MonoSafeHandle;
908
909 /*
910  * Keep in sync with HandleRef.cs
911  */
912 typedef struct {
913         MonoObject *wrapper;
914         void       *handle;
915 } MonoHandleRef;
916
917 extern MonoStats mono_stats;
918
919 typedef gpointer (*MonoRemotingTrampoline)       (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target, MonoError *error);
920 typedef gpointer (*MonoDelegateTrampoline)       (MonoDomain *domain, MonoClass *klass);
921
922 typedef gboolean (*MonoGetCachedClassInfo) (MonoClass *klass, MonoCachedClassInfo *res);
923
924 typedef gboolean (*MonoGetClassFromName) (MonoImage *image, const char *name_space, const char *name, MonoClass **res);
925
926 static inline gboolean
927 method_is_dynamic (MonoMethod *method)
928 {
929 #ifdef DISABLE_REFLECTION_EMIT
930         return FALSE;
931 #else
932         return method->dynamic;
933 #endif
934 }
935
936 void
937 mono_classes_init (void);
938
939 void
940 mono_classes_cleanup (void);
941
942 void
943 mono_class_layout_fields (MonoClass *klass, int base_instance_size, int packing_size, gboolean sre);
944
945 void
946 mono_class_setup_interface_offsets (MonoClass *klass);
947
948 void
949 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup);
950
951 void
952 mono_class_setup_vtable (MonoClass *klass);
953
954 void
955 mono_class_setup_methods (MonoClass *klass);
956
957 void
958 mono_class_setup_mono_type (MonoClass *klass);
959
960 void
961 mono_class_setup_parent    (MonoClass *klass, MonoClass *parent);
962
963 MonoMethod*
964 mono_class_get_method_by_index (MonoClass *klass, int index);
965
966 MonoMethod*
967 mono_class_get_inflated_method (MonoClass *klass, MonoMethod *method);
968
969 MonoMethod*
970 mono_class_get_vtable_entry (MonoClass *klass, int offset);
971
972 GPtrArray*
973 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error);
974
975 int
976 mono_class_get_vtable_size (MonoClass *klass);
977
978 gboolean
979 mono_class_is_open_constructed_type (MonoType *t);
980
981 gboolean
982 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
983                                MonoGenericContext *generic_context);
984
985 MonoMethod*
986 mono_class_get_cctor (MonoClass *klass);
987
988 MonoMethod*
989 mono_class_get_finalizer (MonoClass *klass);
990
991 gboolean
992 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller);
993
994 gboolean
995 mono_class_field_is_special_static (MonoClassField *field);
996
997 guint32
998 mono_class_field_get_special_static_type (MonoClassField *field);
999
1000 gboolean
1001 mono_class_has_special_static_fields (MonoClass *klass);
1002
1003 const char*
1004 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type);
1005
1006 const char*
1007 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type);
1008
1009 void
1010 mono_install_delegate_trampoline (MonoDelegateTrampoline func);
1011
1012 gpointer
1013 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context, MonoError *error);
1014
1015 gpointer
1016 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean check_token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1017
1018 gpointer
1019 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper, MonoError *error);
1020
1021 gpointer
1022 mono_runtime_create_delegate_trampoline (MonoClass *klass);
1023
1024 void
1025 mono_install_get_cached_class_info (MonoGetCachedClassInfo func);
1026
1027 void
1028 mono_install_get_class_from_name (MonoGetClassFromName func);
1029
1030 MonoGenericContext*
1031 mono_class_get_context (MonoClass *klass);
1032
1033 MonoMethodSignature*
1034 mono_method_signature_checked (MonoMethod *m, MonoError *err);
1035
1036 MonoGenericContext*
1037 mono_method_get_context_general (MonoMethod *method, gboolean uninflated);
1038
1039 MonoGenericContext*
1040 mono_method_get_context (MonoMethod *method);
1041
1042 /* Used by monodis, thus cannot be MONO_INTERNAL */
1043 MONO_API MonoGenericContainer*
1044 mono_method_get_generic_container (MonoMethod *method);
1045
1046 MonoGenericContext*
1047 mono_generic_class_get_context (MonoGenericClass *gclass);
1048
1049 MonoClass*
1050 mono_generic_class_get_class (MonoGenericClass *gclass);
1051
1052 void
1053 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container);
1054
1055 MonoMethod*
1056 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context);
1057
1058 MonoMethod*
1059 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error);
1060
1061 MonoMethod *
1062 mono_class_inflate_generic_method_checked (MonoMethod *method, MonoGenericContext *context, MonoError *error);
1063
1064 MonoImageSet *
1065 mono_metadata_get_image_set_for_method (MonoMethodInflated *method);
1066
1067 MONO_API MonoMethodSignature *
1068 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context);
1069
1070 MonoType*
1071 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error);
1072
1073 MonoType*
1074 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error);
1075
1076 MONO_API void
1077 mono_metadata_free_inflated_signature (MonoMethodSignature *sig);
1078
1079 MonoMethodSignature*
1080 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error);
1081
1082 typedef struct {
1083         MonoImage *corlib;
1084         MonoClass *object_class;
1085         MonoClass *byte_class;
1086         MonoClass *void_class;
1087         MonoClass *boolean_class;
1088         MonoClass *sbyte_class;
1089         MonoClass *int16_class;
1090         MonoClass *uint16_class;
1091         MonoClass *int32_class;
1092         MonoClass *uint32_class;
1093         MonoClass *int_class;
1094         MonoClass *uint_class;
1095         MonoClass *int64_class;
1096         MonoClass *uint64_class;
1097         MonoClass *single_class;
1098         MonoClass *double_class;
1099         MonoClass *char_class;
1100         MonoClass *string_class;
1101         MonoClass *enum_class;
1102         MonoClass *array_class;
1103         MonoClass *delegate_class;
1104         MonoClass *multicastdelegate_class;
1105         MonoClass *asyncresult_class;
1106         MonoClass *manualresetevent_class;
1107         MonoClass *typehandle_class;
1108         MonoClass *fieldhandle_class;
1109         MonoClass *methodhandle_class;
1110         MonoClass *systemtype_class;
1111         MonoClass *runtimetype_class;
1112         MonoClass *exception_class;
1113         MonoClass *threadabortexception_class;
1114         MonoClass *thread_class;
1115         MonoClass *internal_thread_class;
1116 #ifndef DISABLE_REMOTING
1117         MonoClass *transparent_proxy_class;
1118         MonoClass *real_proxy_class;
1119         MonoClass *marshalbyrefobject_class;
1120         MonoClass *iremotingtypeinfo_class;
1121 #endif
1122         MonoClass *mono_method_message_class;
1123         MonoClass *appdomain_class;
1124         MonoClass *field_info_class;
1125         MonoClass *method_info_class;
1126         MonoClass *stringbuilder_class;
1127         MonoClass *math_class;
1128         MonoClass *stack_frame_class;
1129         MonoClass *stack_trace_class;
1130         MonoClass *marshal_class;
1131         MonoClass *typed_reference_class;
1132         MonoClass *argumenthandle_class;
1133         MonoClass *monitor_class;
1134         MonoClass *generic_ilist_class;
1135         MonoClass *generic_nullable_class;
1136         MonoClass *handleref_class;
1137         MonoClass *attribute_class;
1138         MonoClass *customattribute_data_class;
1139         MonoClass *critical_finalizer_object; /* MAYBE NULL */
1140         MonoClass *generic_ireadonlylist_class;
1141         MonoClass *threadpool_wait_callback_class;
1142         MonoMethod *threadpool_perform_wait_callback_method;
1143 } MonoDefaults;
1144
1145 #ifdef DISABLE_REMOTING
1146 #define mono_class_is_transparent_proxy(klass) (FALSE)
1147 #define mono_class_is_real_proxy(klass) (FALSE)
1148 #define mono_object_is_transparent_proxy(object) (FALSE)
1149 #else
1150 MonoRemoteClass*
1151 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class, MonoError *error);
1152
1153 void
1154 mono_install_remoting_trampoline (MonoRemotingTrampoline func);
1155
1156 #define mono_class_is_transparent_proxy(klass) ((klass) == mono_defaults.transparent_proxy_class)
1157 #define mono_class_is_real_proxy(klass) ((klass) == mono_defaults.real_proxy_class)
1158 #define mono_object_is_transparent_proxy(object) (((MonoObject*)object)->vtable->klass == mono_defaults.transparent_proxy_class)
1159 #endif
1160
1161
1162 #define GENERATE_GET_CLASS_WITH_CACHE_DECL(shortname) \
1163 MonoClass* mono_class_get_##shortname##_class (void);
1164
1165 #define GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL(shortname) \
1166 MonoClass* mono_class_try_get_##shortname##_class (void);
1167
1168 #define GENERATE_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1169 MonoClass*      \
1170 mono_class_get_##shortname##_class (void)       \
1171 {       \
1172         static MonoClass *tmp_class;    \
1173         MonoClass *klass = tmp_class;   \
1174         if (!klass) {   \
1175                 klass = mono_class_load_from_name (mono_defaults.corlib, #namespace, #name);    \
1176                 mono_memory_barrier (); \
1177                 tmp_class = klass;      \
1178         }       \
1179         return klass;   \
1180 }
1181
1182 #define GENERATE_TRY_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1183 MonoClass*      \
1184 mono_class_try_get_##shortname##_class (void)   \
1185 {       \
1186         static volatile MonoClass *tmp_class;   \
1187         static volatile gboolean inited;        \
1188         MonoClass *klass = (MonoClass *)tmp_class;      \
1189         mono_memory_barrier (); \
1190         if (!inited) {  \
1191                 klass = mono_class_try_load_from_name (mono_defaults.corlib, #namespace, #name);        \
1192                 tmp_class = klass;      \
1193                 mono_memory_barrier (); \
1194                 inited = TRUE;  \
1195         }       \
1196         return klass;   \
1197 }
1198
1199 GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL (safehandle)
1200
1201 #ifndef DISABLE_COM
1202
1203 GENERATE_GET_CLASS_WITH_CACHE_DECL (interop_proxy)
1204 GENERATE_GET_CLASS_WITH_CACHE_DECL (idispatch)
1205 GENERATE_GET_CLASS_WITH_CACHE_DECL (iunknown)
1206 GENERATE_GET_CLASS_WITH_CACHE_DECL (com_object)
1207 GENERATE_GET_CLASS_WITH_CACHE_DECL (variant)
1208
1209 #endif
1210
1211 extern MonoDefaults mono_defaults;
1212
1213 void
1214 mono_loader_init           (void);
1215
1216 void
1217 mono_loader_cleanup        (void);
1218
1219 void
1220 mono_loader_lock           (void) MONO_LLVM_INTERNAL;
1221
1222 void
1223 mono_loader_unlock         (void) MONO_LLVM_INTERNAL;
1224
1225 void
1226 mono_loader_lock_track_ownership (gboolean track);
1227
1228 gboolean
1229 mono_loader_lock_is_owned_by_self (void);
1230
1231 void
1232 mono_loader_lock_if_inited (void);
1233
1234 void
1235 mono_loader_unlock_if_inited (void);
1236
1237 void
1238 mono_reflection_init       (void);
1239
1240 void
1241 mono_icall_init            (void);
1242
1243 void
1244 mono_icall_cleanup         (void);
1245
1246 gpointer
1247 mono_method_get_wrapper_data (MonoMethod *method, guint32 id);
1248
1249 gboolean
1250 mono_metadata_has_generic_params (MonoImage *image, guint32 token);
1251
1252 MONO_API MonoGenericContainer *
1253 mono_metadata_load_generic_params (MonoImage *image, guint32 token,
1254                                    MonoGenericContainer *parent_container);
1255
1256 MONO_API gboolean
1257 mono_metadata_load_generic_param_constraints_checked (MonoImage *image, guint32 token,
1258                                               MonoGenericContainer *container, MonoError *error);
1259
1260 MonoMethodSignature*
1261 mono_create_icall_signature (const char *sigstr);
1262
1263 MonoJitICallInfo *
1264 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save);
1265
1266 MonoJitICallInfo *
1267 mono_register_jit_icall_full (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save, gboolean no_raise, const char *c_symbol);
1268
1269 void
1270 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper);
1271
1272 MonoJitICallInfo *
1273 mono_find_jit_icall_by_name (const char *name) MONO_LLVM_INTERNAL;
1274
1275 MonoJitICallInfo *
1276 mono_find_jit_icall_by_addr (gconstpointer addr) MONO_LLVM_INTERNAL;
1277
1278 GHashTable*
1279 mono_get_jit_icall_info (void);
1280
1281 const char*
1282 mono_lookup_jit_icall_symbol (const char *name);
1283
1284 gboolean
1285 mono_class_set_type_load_failure (MonoClass *klass, const char * fmt, ...) MONO_ATTR_FORMAT_PRINTF(2,3);
1286
1287 MonoException*
1288 mono_class_get_exception_for_failure (MonoClass *klass);
1289
1290 char*
1291 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format);
1292
1293 char*
1294 mono_type_get_full_name (MonoClass *klass);
1295
1296 char *
1297 mono_method_get_name_full (MonoMethod *method, gboolean signature, gboolean ret, MonoTypeNameFormat format);
1298
1299 char *
1300 mono_method_get_full_name (MonoMethod *method);
1301
1302 MonoArrayType *mono_dup_array_type (MonoImage *image, MonoArrayType *a);
1303 MonoMethodSignature *mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig);
1304
1305 MONO_API void
1306 mono_image_init_name_cache (MonoImage *image);
1307
1308 gboolean mono_class_is_nullable (MonoClass *klass);
1309 MonoClass *mono_class_get_nullable_param (MonoClass *klass);
1310
1311 /* object debugging functions, for use inside gdb */
1312 MONO_API void mono_object_describe        (MonoObject *obj);
1313 MONO_API void mono_object_describe_fields (MonoObject *obj);
1314 MONO_API void mono_value_describe_fields  (MonoClass* klass, const char* addr);
1315 MONO_API void mono_class_describe_statics (MonoClass* klass);
1316
1317 /* method debugging functions, for use inside gdb */
1318 MONO_API void mono_method_print_code (MonoMethod *method);
1319
1320 char *mono_signature_full_name (MonoMethodSignature *sig);
1321
1322 /*Enum validation related functions*/
1323 MONO_API gboolean
1324 mono_type_is_valid_enum_basetype (MonoType * type);
1325
1326 MONO_API gboolean
1327 mono_class_is_valid_enum (MonoClass *klass);
1328
1329 MonoType *
1330 mono_type_get_checked        (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1331
1332 gboolean
1333 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass);
1334
1335 MonoMethod*
1336 mono_class_get_method_generic (MonoClass *klass, MonoMethod *method);
1337
1338 MonoType*
1339 mono_type_get_basic_type_from_generic (MonoType *type);
1340
1341 gboolean
1342 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass);
1343
1344 gboolean
1345 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass);
1346
1347 gboolean
1348 mono_class_can_access_class (MonoClass *access_class, MonoClass *target_class);
1349
1350 MonoClass *
1351 mono_class_get_generic_type_definition (MonoClass *klass);
1352
1353 gboolean
1354 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent);
1355
1356 int
1357 mono_method_get_vtable_slot (MonoMethod *method);
1358
1359 int
1360 mono_method_get_vtable_index (MonoMethod *method);
1361
1362 MonoMethod*
1363 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig);
1364
1365 void
1366 mono_class_setup_interface_id (MonoClass *klass);
1367
1368 MonoGenericContainer*
1369 mono_class_get_generic_container (MonoClass *klass);
1370
1371 gpointer
1372 mono_class_alloc (MonoClass *klass, int size);
1373
1374 gpointer
1375 mono_class_alloc0 (MonoClass *klass, int size);
1376
1377 void
1378 mono_class_alloc_ext (MonoClass *klass);
1379
1380 void
1381 mono_class_setup_interfaces (MonoClass *klass, MonoError *error);
1382
1383 MonoClassField*
1384 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type);
1385
1386 MonoVTable*
1387 mono_class_vtable_full (MonoDomain *domain, MonoClass *klass, MonoError *error);
1388
1389 gboolean
1390 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate);
1391
1392 gboolean
1393 mono_class_has_variant_generic_params (MonoClass *klass);
1394
1395 gboolean
1396 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv);
1397
1398 gboolean mono_is_corlib_image (MonoImage *image);
1399
1400 MonoType*
1401 mono_field_get_type_checked (MonoClassField *field, MonoError *error);
1402
1403 MonoClassField*
1404 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter);
1405
1406 gboolean
1407 mono_class_check_vtable_constraints (MonoClass *klass, GList *in_setup);
1408
1409 gboolean
1410 mono_class_has_finalizer (MonoClass *klass);
1411
1412 void
1413 mono_unload_interface_id (MonoClass *klass);
1414
1415 GPtrArray*
1416 mono_class_get_methods_by_name (MonoClass *klass, const char *name, guint32 bflags, gboolean ignore_case, gboolean allow_ctors, MonoError *error);
1417
1418 char*
1419 mono_class_full_name (MonoClass *klass);
1420
1421 MonoClass*
1422 mono_class_inflate_generic_class_checked (MonoClass *gklass, MonoGenericContext *context, MonoError *error);
1423
1424 MonoClass *
1425 mono_class_get_checked (MonoImage *image, guint32 type_token, MonoError *error);
1426
1427 MonoClass *
1428 mono_class_get_and_inflate_typespec_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1429
1430 MonoClass *
1431 mono_class_from_name_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1432
1433 MonoClass *
1434 mono_class_from_name_case_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1435
1436 MonoClassField*
1437 mono_field_from_token_checked (MonoImage *image, uint32_t token, MonoClass **retklass, MonoGenericContext *context, MonoError *error);
1438
1439 gpointer
1440 mono_ldtoken_checked (MonoImage *image, guint32 token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1441
1442 MonoClass *
1443 mono_class_from_generic_parameter_internal (MonoGenericParam *param);
1444
1445 MonoImage *
1446 get_image_for_generic_param (MonoGenericParam *param);
1447
1448 char *
1449 make_generic_name_string (MonoImage *image, int num);
1450
1451 MonoClass *
1452 mono_class_load_from_name (MonoImage *image, const char* name_space, const char *name) MONO_LLVM_INTERNAL;
1453
1454 MonoClass*
1455 mono_class_try_load_from_name (MonoImage *image, const char* name_space, const char *name);
1456
1457 void
1458 mono_error_set_for_class_failure (MonoError *orerror, const MonoClass *klass);
1459
1460 gboolean
1461 mono_class_has_failure (const MonoClass *klass);
1462
1463 /* Kind specific accessors */
1464 MonoGenericClass*
1465 mono_class_get_generic_class (MonoClass *klass);
1466
1467 MonoGenericClass*
1468 mono_class_try_get_generic_class (MonoClass *klass);
1469
1470
1471 /*Now that everything has been defined, let's include the inline functions */
1472 #include <mono/metadata/class-inlines.h>
1473
1474 #endif /* __MONO_METADATA_CLASS_INTERNALS_H__ */