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