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