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