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