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