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