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