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