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