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