51d6b04a1830bc292a564151b4792b20f05bee4c
[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         MonoMethodHeader *header;
521         MonoMethod *declaring;          /* the generic method definition. */
522         MonoGenericContext context;     /* The current instantiation */
523         MonoImageSet *owner; /* The image set that the inflated method belongs to. */
524 };
525
526 /*
527  * A particular instantiation of a generic type.
528  */
529 struct _MonoGenericClass {
530         MonoClass *container_class;     /* the generic type definition */
531         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 */
532         guint is_dynamic  : 1;          /* We're a MonoDynamicGenericClass */
533         guint is_tb_open  : 1;          /* This is the fully open instantiation for a type_builder. Quite ugly, but it's temporary.*/
534         MonoClass *cached_class;        /* if present, the MonoClass corresponding to the instantiation.  */
535
536         /* 
537          * The image set which owns this generic class. Memory owned by the generic class
538          * including cached_class should be allocated from the mempool of the image set,
539          * so it is easy to free.
540          */
541         MonoImageSet *owner;
542 };
543
544 /*
545  * This is used when instantiating a generic type definition which is
546  * a TypeBuilder.
547  */
548 struct _MonoDynamicGenericClass {
549         MonoGenericClass generic_class;
550         int count_fields;
551         MonoClassField *fields;
552         guint initialized;
553         /* The non-inflated types of the fields */
554         MonoType **field_generic_types;
555         /* The managed objects representing the fields */
556         MonoObject **field_objects;
557 };
558
559 /*
560  * A type parameter.
561  */
562 struct _MonoGenericParam {
563         /*
564          * Type or method this parameter was defined in.
565          */
566         MonoGenericContainer *owner;
567         guint16 num;
568         /*
569          * If != NULL, this is a generated generic param used by the JIT to implement generic
570          * sharing.
571          */
572         MonoType *gshared_constraint;
573 };
574
575 /* Additional details about a MonoGenericParam */
576 typedef struct {
577         MonoClass *pklass;              /* The corresponding `MonoClass'. */
578         const char *name;
579
580         // See GenericParameterAttributes
581         guint16 flags;
582
583         guint32 token;
584
585         // Constraints on type parameters
586         MonoClass** constraints; /* NULL means end of list */
587 } MonoGenericParamInfo;
588
589 typedef struct {
590         MonoGenericParam param;
591         MonoGenericParamInfo info;
592 } MonoGenericParamFull;
593
594 /*
595  * The generic container.
596  *
597  * Stores the type parameters of a generic type definition or a generic method definition.
598  */
599 struct _MonoGenericContainer {
600         MonoGenericContext context;
601         /* If we're a generic method definition in a generic type definition,
602            the generic container of the containing class. */
603         MonoGenericContainer *parent;
604         /* the generic type definition or the generic method definition corresponding to this container */
605         /* Union rules: If is_anonymous, image field is valid; else if is_method, method field is valid; else klass is valid. */
606         union {
607                 MonoClass *klass;
608                 MonoMethod *method;
609                 MonoImage *image;
610         } owner;
611         int type_argc    : 29; // Per the ECMA spec, this value is capped at 16 bits
612         /* If true, we're a generic method, otherwise a generic type definition. */
613         /* Invariant: parent != NULL => is_method */
614         int is_method     : 1;
615         /* If true, this container has no associated class/method and only the image is known. This can happen:
616            1. For the special anonymous containers kept by MonoImage.
617            2. During container creation via the mono_metadata_load_generic_params path-- in this case the caller
618               sets the owner, so temporarily while load_generic_params is completing the container is anonymous.
619            3. When user code creates a generic parameter via SRE, but has not yet set an owner. */
620         int is_anonymous : 1;
621         /* If false, all params in this container are full-size. If true, all params are just param structs. */
622         /* This field is always == to the is_anonymous field, except in "temporary" cases (2) and (3) above. */
623         /* TODO: Merge GenericParam and GenericParamFull, remove this field. Benefit is marginal. */
624         int is_small_param : 1;
625         /* Our type parameters. */
626         MonoGenericParamFull *type_params;
627 };
628
629 static inline MonoGenericParam *
630 mono_generic_container_get_param (MonoGenericContainer *gc, int i)
631 {
632         return (MonoGenericParam *) &gc->type_params [i];
633 }
634
635 static inline MonoGenericParamInfo *
636 mono_generic_container_get_param_info (MonoGenericContainer *gc, int i)
637 {
638         return &gc->type_params [i].info;
639 }
640
641 static inline MonoGenericContainer *
642 mono_generic_param_owner (MonoGenericParam *p)
643 {
644         return p->owner;
645 }
646
647 static inline int
648 mono_generic_param_num (MonoGenericParam *p)
649 {
650         return p->num;
651 }
652
653 static inline gboolean
654 mono_generic_param_is_fullsize (MonoGenericParam *p)
655 {
656         return !mono_generic_param_owner (p)->is_small_param;
657 }
658
659 static inline MonoGenericParamInfo *
660 mono_generic_param_info (MonoGenericParam *p)
661 {
662         if (mono_generic_param_is_fullsize (p))
663                 return &((MonoGenericParamFull *) p)->info;
664         return NULL;
665 }
666
667 static inline const char *
668 mono_generic_param_name (MonoGenericParam *p)
669 {
670         if (mono_generic_param_is_fullsize (p))
671                 return ((MonoGenericParamFull *) p)->info.name;
672         return NULL;
673 }
674
675 static inline MonoGenericContainer *
676 mono_type_get_generic_param_owner (MonoType *t)
677 {
678         return mono_generic_param_owner (t->data.generic_param);
679 }
680
681 static inline int
682 mono_type_get_generic_param_num (MonoType *t)
683 {
684         return mono_generic_param_num (t->data.generic_param);
685 }
686
687 /*
688  * Class information which might be cached by the runtime in the AOT file for
689  * example. Caching this allows us to avoid computing a generic vtable
690  * (class->vtable) in most cases, saving time and avoiding creation of lots of
691  * MonoMethod structures.
692  */
693 typedef struct MonoCachedClassInfo {
694         guint32 vtable_size;
695         guint has_finalize : 1;
696         guint ghcimpl : 1;
697         guint has_cctor : 1;
698         guint has_nested_classes : 1;
699         guint blittable : 1;
700         guint has_references : 1;
701         guint has_static_refs : 1;
702         guint no_special_static_fields : 1;
703         guint is_generic_container : 1;
704         guint32 cctor_token;
705         MonoImage *finalize_image;
706         guint32 finalize_token;
707         guint32 instance_size;
708         guint32 class_size;
709         guint32 packing_size;
710         guint32 min_align;
711 } MonoCachedClassInfo;
712
713 typedef struct {
714         const char *name;
715         gconstpointer func;
716         gconstpointer wrapper;
717         gconstpointer trampoline;
718         MonoMethodSignature *sig;
719         const char *c_symbol;
720         MonoMethod *wrapper_method;
721         gboolean no_raise;
722 } MonoJitICallInfo;
723
724 typedef struct {
725         guint8 exception_type;
726         char *class_name; /* If kind == TYPE */
727         char *assembly_name; /* If kind == TYPE or ASSEMBLY */
728         MonoClass *klass; /* If kind != TYPE */
729         const char *member_name; /* If kind != TYPE */
730         gboolean ref_only; /* If kind == ASSEMBLY */
731         char *msg; /* If kind == BAD_IMAGE */
732 } MonoLoaderError;
733
734 void
735 mono_class_setup_supertypes (MonoClass *klass);
736
737 void
738 mono_class_setup_fields_locking (MonoClass *klass);
739
740 /* WARNING
741  * Only call this function if you can ensure both @klass and @parent
742  * have supertype information initialized.
743  * This can be accomplished by mono_class_setup_supertypes or mono_class_init.
744  * If unsure, use mono_class_has_parent.
745  */
746 static inline gboolean
747 mono_class_has_parent_fast (MonoClass *klass, MonoClass *parent)
748 {
749         return (klass->idepth >= parent->idepth) && (klass->supertypes [parent->idepth - 1] == parent);
750 }
751
752 static inline gboolean
753 mono_class_has_parent (MonoClass *klass, MonoClass *parent)
754 {
755         if (G_UNLIKELY (!klass->supertypes))
756                 mono_class_setup_supertypes (klass);
757
758         if (G_UNLIKELY (!parent->supertypes))
759                 mono_class_setup_supertypes (parent);
760
761         return mono_class_has_parent_fast (klass, parent);
762 }
763
764 typedef struct {
765         MonoVTable *default_vtable;
766         MonoVTable *xdomain_vtable;
767         MonoClass *proxy_class;
768         char* proxy_class_name;
769         uint32_t interface_count;
770         MonoClass *interfaces [MONO_ZERO_LEN_ARRAY];
771 } MonoRemoteClass;
772
773 #define MONO_SIZEOF_REMOTE_CLASS (sizeof (MonoRemoteClass) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
774
775 typedef struct {
776         guint64 new_object_count;
777         size_t initialized_class_count;
778         size_t generic_vtable_count;
779         size_t used_class_count;
780         size_t method_count;
781         size_t class_vtable_size;
782         size_t class_static_data_size;
783         size_t generic_instance_count;
784         size_t generic_class_count;
785         size_t inflated_method_count;
786         size_t inflated_method_count_2;
787         size_t inflated_type_count;
788         size_t generics_metadata_size;
789         size_t delegate_creations;
790         size_t imt_tables_size;
791         size_t imt_number_of_tables;
792         size_t imt_number_of_methods;
793         size_t imt_used_slots;
794         size_t imt_slots_with_collisions;
795         size_t imt_max_collisions_in_slot;
796         size_t imt_method_count_when_max_collisions;
797         size_t imt_thunks_size;
798         size_t jit_info_table_insert_count;
799         size_t jit_info_table_remove_count;
800         size_t jit_info_table_lookup_count;
801         size_t generics_sharable_methods;
802         size_t generics_unsharable_methods;
803         size_t generics_shared_methods;
804         size_t gsharedvt_methods;
805         size_t minor_gc_count;
806         size_t major_gc_count;
807         size_t minor_gc_time_usecs;
808         size_t major_gc_time_usecs;
809         gboolean enabled;
810 } MonoStats;
811
812 /* 
813  * new structure to hold performace counters values that are exported
814  * to managed code.
815  * Note: never remove fields from this structure and only add them to the end.
816  * Size of fields and type should not be changed as well.
817  */
818 typedef struct {
819         /* JIT category */
820         guint32 jit_methods;
821         guint32 jit_bytes;
822         guint32 jit_time;
823         guint32 jit_failures;
824         /* Exceptions category */
825         guint32 exceptions_thrown;
826         guint32 exceptions_filters;
827         guint32 exceptions_finallys;
828         guint32 exceptions_depth;
829         guint32 aspnet_requests_queued;
830         guint32 aspnet_requests;
831         /* Memory category */
832         guint32 gc_collections0;
833         guint32 gc_collections1;
834         guint32 gc_collections2;
835         guint32 gc_promotions0;
836         guint32 gc_promotions1;
837         guint32 gc_promotion_finalizers;
838         guint32 gc_gen0size;
839         guint32 gc_gen1size;
840         guint32 gc_gen2size;
841         guint32 gc_lossize;
842         guint32 gc_fin_survivors;
843         guint32 gc_num_handles;
844         guint32 gc_allocated;
845         guint32 gc_induced;
846         guint32 gc_time;
847         guint32 gc_total_bytes;
848         guint32 gc_committed_bytes;
849         guint32 gc_reserved_bytes;
850         guint32 gc_num_pinned;
851         guint32 gc_sync_blocks;
852         /* Remoting category */
853         guint32 remoting_calls;
854         guint32 remoting_channels;
855         guint32 remoting_proxies;
856         guint32 remoting_classes;
857         guint32 remoting_objects;
858         guint32 remoting_contexts;
859         /* Loader category */
860         guint32 loader_classes;
861         guint32 loader_total_classes;
862         guint32 loader_appdomains;
863         guint32 loader_total_appdomains;
864         guint32 loader_assemblies;
865         guint32 loader_total_assemblies;
866         guint32 loader_failures;
867         guint32 loader_bytes;
868         guint32 loader_appdomains_uloaded;
869         /* Threads and Locks category  */
870         guint32 thread_contentions;
871         guint32 thread_queue_len;
872         guint32 thread_queue_max;
873         guint32 thread_num_logical;
874         guint32 thread_num_physical;
875         guint32 thread_cur_recognized;
876         guint32 thread_num_recognized;
877         /* Interop category */
878         guint32 interop_num_ccw;
879         guint32 interop_num_stubs;
880         guint32 interop_num_marshals;
881         /* Security category */
882         guint32 security_num_checks;
883         guint32 security_num_link_checks;
884         guint32 security_time;
885         guint32 security_depth;
886         guint32 unused;
887         /* Threadpool */
888         guint64 threadpool_workitems;
889         guint64 threadpool_ioworkitems;
890         guint threadpool_threads;
891         guint threadpool_iothreads;
892 } MonoPerfCounters;
893
894 extern MonoPerfCounters *mono_perfcounters;
895
896 MONO_API void mono_perfcounters_init (void);
897
898 /*
899  * The definition of the first field in SafeHandle,
900  * Keep in sync with SafeHandle.cs, this is only used
901  * to access the `handle' parameter.
902  */
903 typedef struct {
904         MonoObject  base;
905         void       *handle;
906 } MonoSafeHandle;
907
908 /*
909  * Keep in sync with HandleRef.cs
910  */
911 typedef struct {
912         MonoObject *wrapper;
913         void       *handle;
914 } MonoHandleRef;
915
916 extern MonoStats mono_stats;
917
918 typedef gpointer (*MonoRemotingTrampoline)       (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target);
919 typedef gpointer (*MonoDelegateTrampoline)       (MonoDomain *domain, MonoClass *klass);
920
921 typedef gpointer (*MonoLookupDynamicToken) (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context);
922
923 typedef gboolean (*MonoGetCachedClassInfo) (MonoClass *klass, MonoCachedClassInfo *res);
924
925 typedef gboolean (*MonoGetClassFromName) (MonoImage *image, const char *name_space, const char *name, MonoClass **res);
926
927 static inline gboolean
928 method_is_dynamic (MonoMethod *method)
929 {
930 #ifdef DISABLE_REFLECTION_EMIT
931         return FALSE;
932 #else
933         return method->dynamic;
934 #endif
935 }
936
937 void
938 mono_classes_init (void);
939
940 void
941 mono_classes_cleanup (void);
942
943 void
944 mono_class_layout_fields   (MonoClass *klass, int instance_size);
945
946 void
947 mono_class_setup_interface_offsets (MonoClass *klass);
948
949 void
950 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup);
951
952 void
953 mono_class_setup_vtable (MonoClass *klass);
954
955 void
956 mono_class_setup_methods (MonoClass *klass);
957
958 void
959 mono_class_setup_mono_type (MonoClass *klass);
960
961 void
962 mono_class_setup_parent    (MonoClass *klass, MonoClass *parent);
963
964 MonoMethod*
965 mono_class_get_method_by_index (MonoClass *klass, int index);
966
967 MonoMethod*
968 mono_class_get_inflated_method (MonoClass *klass, MonoMethod *method);
969
970 MonoMethod*
971 mono_class_get_vtable_entry (MonoClass *klass, int offset);
972
973 GPtrArray*
974 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error);
975
976 int
977 mono_class_get_vtable_size (MonoClass *klass);
978
979 gboolean
980 mono_class_is_open_constructed_type (MonoType *t);
981
982 gboolean
983 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
984                                MonoGenericContext *generic_context);
985
986 MonoMethod*
987 mono_class_get_cctor (MonoClass *klass);
988
989 MonoMethod*
990 mono_class_get_finalizer (MonoClass *klass);
991
992 gboolean
993 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller);
994
995 gboolean
996 mono_class_field_is_special_static (MonoClassField *field);
997
998 guint32
999 mono_class_field_get_special_static_type (MonoClassField *field);
1000
1001 gboolean
1002 mono_class_has_special_static_fields (MonoClass *klass);
1003
1004 const char*
1005 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type);
1006
1007 const char*
1008 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type);
1009
1010 void
1011 mono_install_delegate_trampoline (MonoDelegateTrampoline func);
1012
1013 gpointer
1014 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context);
1015
1016 gpointer
1017 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean check_token, MonoClass **handle_class, MonoGenericContext *context);
1018
1019 void
1020 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func);
1021
1022 gpointer
1023 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
1024
1025 gpointer
1026 mono_runtime_create_delegate_trampoline (MonoClass *klass);
1027
1028 void
1029 mono_install_get_cached_class_info (MonoGetCachedClassInfo func);
1030
1031 void
1032 mono_install_get_class_from_name (MonoGetClassFromName func);
1033
1034 MonoGenericContext*
1035 mono_class_get_context (MonoClass *klass);
1036
1037 MonoMethodSignature*
1038 mono_method_signature_checked (MonoMethod *m, MonoError *err);
1039
1040 MonoGenericContext*
1041 mono_method_get_context_general (MonoMethod *method, gboolean uninflated);
1042
1043 MonoGenericContext*
1044 mono_method_get_context (MonoMethod *method);
1045
1046 /* Used by monodis, thus cannot be MONO_INTERNAL */
1047 MONO_API MonoGenericContainer*
1048 mono_method_get_generic_container (MonoMethod *method);
1049
1050 MonoGenericContext*
1051 mono_generic_class_get_context (MonoGenericClass *gclass);
1052
1053 MonoClass*
1054 mono_generic_class_get_class (MonoGenericClass *gclass);
1055
1056 void
1057 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container);
1058
1059 MonoMethod*
1060 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context);
1061
1062 MonoMethod*
1063 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error);
1064
1065 MonoMethod *
1066 mono_class_inflate_generic_method_checked (MonoMethod *method, MonoGenericContext *context, MonoError *error);
1067
1068 MonoImageSet *
1069 mono_metadata_get_image_set_for_method (MonoMethodInflated *method);
1070
1071 MONO_API MonoMethodSignature *
1072 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context);
1073
1074 MonoType*
1075 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error);
1076
1077 MonoType*
1078 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error);
1079
1080 MONO_API void
1081 mono_metadata_free_inflated_signature (MonoMethodSignature *sig);
1082
1083 MonoMethodSignature*
1084 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error);
1085
1086 typedef struct {
1087         MonoImage *corlib;
1088         MonoClass *object_class;
1089         MonoClass *byte_class;
1090         MonoClass *void_class;
1091         MonoClass *boolean_class;
1092         MonoClass *sbyte_class;
1093         MonoClass *int16_class;
1094         MonoClass *uint16_class;
1095         MonoClass *int32_class;
1096         MonoClass *uint32_class;
1097         MonoClass *int_class;
1098         MonoClass *uint_class;
1099         MonoClass *int64_class;
1100         MonoClass *uint64_class;
1101         MonoClass *single_class;
1102         MonoClass *double_class;
1103         MonoClass *char_class;
1104         MonoClass *string_class;
1105         MonoClass *enum_class;
1106         MonoClass *array_class;
1107         MonoClass *delegate_class;
1108         MonoClass *multicastdelegate_class;
1109         MonoClass *asyncresult_class;
1110         MonoClass *manualresetevent_class;
1111         MonoClass *typehandle_class;
1112         MonoClass *fieldhandle_class;
1113         MonoClass *methodhandle_class;
1114         MonoClass *systemtype_class;
1115         MonoClass *monotype_class;
1116         MonoClass *runtimetype_class;
1117         MonoClass *exception_class;
1118         MonoClass *threadabortexception_class;
1119         MonoClass *thread_class;
1120         MonoClass *internal_thread_class;
1121 #ifndef DISABLE_REMOTING
1122         MonoClass *transparent_proxy_class;
1123         MonoClass *real_proxy_class;
1124         MonoClass *marshalbyrefobject_class;
1125         MonoClass *iremotingtypeinfo_class;
1126 #endif
1127         MonoClass *mono_method_message_class;
1128         MonoClass *appdomain_class;
1129         MonoClass *field_info_class;
1130         MonoClass *method_info_class;
1131         MonoClass *stringbuilder_class;
1132         MonoClass *math_class;
1133         MonoClass *stack_frame_class;
1134         MonoClass *stack_trace_class;
1135         MonoClass *marshal_class;
1136         MonoClass *typed_reference_class;
1137         MonoClass *argumenthandle_class;
1138         MonoClass *monitor_class;
1139         MonoClass *generic_ilist_class;
1140         MonoClass *generic_nullable_class;
1141         MonoClass *handleref_class;
1142         MonoClass *attribute_class;
1143         MonoClass *customattribute_data_class;
1144         MonoClass *critical_finalizer_object; /* MAYBE NULL */
1145         MonoClass *generic_ireadonlylist_class;
1146         MonoClass *threadpool_wait_callback_class;
1147         MonoMethod *threadpool_perform_wait_callback_method;
1148 } MonoDefaults;
1149
1150 #ifdef DISABLE_REMOTING
1151 #define mono_class_is_transparent_proxy(klass) (FALSE)
1152 #define mono_class_is_real_proxy(klass) (FALSE)
1153 #define mono_object_is_transparent_proxy(object) (FALSE)
1154 #else
1155 MonoRemoteClass*
1156 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class, MonoError *error);
1157
1158 void
1159 mono_install_remoting_trampoline (MonoRemotingTrampoline func);
1160
1161 #define mono_class_is_transparent_proxy(klass) ((klass) == mono_defaults.transparent_proxy_class)
1162 #define mono_class_is_real_proxy(klass) ((klass) == mono_defaults.real_proxy_class)
1163 #define mono_object_is_transparent_proxy(object) (((MonoObject*)object)->vtable->klass == mono_defaults.transparent_proxy_class)
1164 #endif
1165
1166
1167 #define GENERATE_GET_CLASS_WITH_CACHE_DECL(shortname) \
1168 MonoClass* mono_class_get_##shortname##_class (void);
1169
1170 #define GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL(shortname) \
1171 MonoClass* mono_class_try_get_##shortname##_class (void);
1172
1173 #define GENERATE_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1174 MonoClass*      \
1175 mono_class_get_##shortname##_class (void)       \
1176 {       \
1177         static MonoClass *tmp_class;    \
1178         MonoClass *klass = tmp_class;   \
1179         if (!klass) {   \
1180                 klass = mono_class_load_from_name (mono_defaults.corlib, #namespace, #name);    \
1181                 mono_memory_barrier (); \
1182                 tmp_class = klass;      \
1183         }       \
1184         return klass;   \
1185 }
1186
1187 #define GENERATE_TRY_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1188 MonoClass*      \
1189 mono_class_try_get_##shortname##_class (void)   \
1190 {       \
1191         static volatile MonoClass *tmp_class;   \
1192         static volatile gboolean inited;        \
1193         MonoClass *klass = (MonoClass *)tmp_class;      \
1194         mono_memory_barrier (); \
1195         if (!inited) {  \
1196                 klass = mono_class_try_load_from_name (mono_defaults.corlib, #namespace, #name);        \
1197                 tmp_class = klass;      \
1198                 mono_memory_barrier (); \
1199                 inited = TRUE;  \
1200         }       \
1201         return klass;   \
1202 }
1203
1204 GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL (safehandle)
1205
1206 #ifndef DISABLE_COM
1207
1208 GENERATE_GET_CLASS_WITH_CACHE_DECL (interop_proxy)
1209 GENERATE_GET_CLASS_WITH_CACHE_DECL (idispatch)
1210 GENERATE_GET_CLASS_WITH_CACHE_DECL (iunknown)
1211 GENERATE_GET_CLASS_WITH_CACHE_DECL (com_object)
1212 GENERATE_GET_CLASS_WITH_CACHE_DECL (variant)
1213
1214 #endif
1215
1216 extern MonoDefaults mono_defaults;
1217
1218 void
1219 mono_loader_init           (void);
1220
1221 void
1222 mono_loader_cleanup        (void);
1223
1224 void
1225 mono_loader_lock           (void) MONO_LLVM_INTERNAL;
1226
1227 void
1228 mono_loader_unlock         (void) MONO_LLVM_INTERNAL;
1229
1230 void
1231 mono_loader_lock_track_ownership (gboolean track);
1232
1233 gboolean
1234 mono_loader_lock_is_owned_by_self (void);
1235
1236 void
1237 mono_loader_lock_if_inited (void);
1238
1239 void
1240 mono_loader_unlock_if_inited (void);
1241
1242 void
1243 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only);
1244
1245 void
1246 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name);
1247
1248 void
1249 mono_loader_set_error_method_load (const char *class_name, const char *member_name);
1250
1251 void
1252 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name);
1253 void
1254 mono_loader_set_error_bad_image (char *msg);
1255
1256 MonoException *
1257 mono_loader_error_prepare_exception (MonoLoaderError *error);
1258
1259 MonoLoaderError *
1260 mono_loader_get_last_error (void);
1261
1262 void
1263 mono_loader_clear_error    (void);
1264
1265 void
1266 mono_loader_assert_no_error (void);
1267
1268 void
1269 mono_reflection_init       (void);
1270
1271 void
1272 mono_icall_init            (void);
1273
1274 void
1275 mono_icall_cleanup         (void);
1276
1277 gpointer
1278 mono_method_get_wrapper_data (MonoMethod *method, guint32 id);
1279
1280 gboolean
1281 mono_metadata_has_generic_params (MonoImage *image, guint32 token);
1282
1283 MONO_API MonoGenericContainer *
1284 mono_metadata_load_generic_params (MonoImage *image, guint32 token,
1285                                    MonoGenericContainer *parent_container);
1286
1287 MONO_API gboolean
1288 mono_metadata_load_generic_param_constraints_checked (MonoImage *image, guint32 token,
1289                                               MonoGenericContainer *container, MonoError *error);
1290
1291 MonoMethodSignature*
1292 mono_create_icall_signature (const char *sigstr);
1293
1294 MonoJitICallInfo *
1295 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save);
1296
1297 MonoJitICallInfo *
1298 mono_register_jit_icall_full (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save, gboolean no_raise, const char *c_symbol);
1299
1300 void
1301 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper);
1302
1303 MonoJitICallInfo *
1304 mono_find_jit_icall_by_name (const char *name) MONO_LLVM_INTERNAL;
1305
1306 MonoJitICallInfo *
1307 mono_find_jit_icall_by_addr (gconstpointer addr) MONO_LLVM_INTERNAL;
1308
1309 GHashTable*
1310 mono_get_jit_icall_info (void);
1311
1312 const char*
1313 mono_lookup_jit_icall_symbol (const char *name);
1314
1315 gboolean
1316 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data);
1317
1318 gpointer
1319 mono_class_get_exception_data (MonoClass *klass);
1320
1321 MonoException*
1322 mono_class_get_exception_for_failure (MonoClass *klass);
1323
1324 char*
1325 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format);
1326
1327 char*
1328 mono_type_get_full_name (MonoClass *klass);
1329
1330 char *
1331 mono_method_get_name_full (MonoMethod *method, gboolean signature, gboolean ret, MonoTypeNameFormat format);
1332
1333 char *
1334 mono_method_get_full_name (MonoMethod *method);
1335
1336 MonoArrayType *mono_dup_array_type (MonoImage *image, MonoArrayType *a);
1337 MonoMethodSignature *mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig);
1338
1339 MONO_API void
1340 mono_image_init_name_cache (MonoImage *image);
1341
1342 gboolean mono_class_is_nullable (MonoClass *klass);
1343 MonoClass *mono_class_get_nullable_param (MonoClass *klass);
1344
1345 /* object debugging functions, for use inside gdb */
1346 MONO_API void mono_object_describe        (MonoObject *obj);
1347 MONO_API void mono_object_describe_fields (MonoObject *obj);
1348 MONO_API void mono_value_describe_fields  (MonoClass* klass, const char* addr);
1349 MONO_API void mono_class_describe_statics (MonoClass* klass);
1350
1351 /* method debugging functions, for use inside gdb */
1352 MONO_API void mono_method_print_code (MonoMethod *method);
1353
1354 char *mono_signature_full_name (MonoMethodSignature *sig);
1355
1356 /*Enum validation related functions*/
1357 MONO_API gboolean
1358 mono_type_is_valid_enum_basetype (MonoType * type);
1359
1360 MONO_API gboolean
1361 mono_class_is_valid_enum (MonoClass *klass);
1362
1363 MonoType *
1364 mono_type_get_checked        (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1365
1366 gboolean
1367 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass);
1368
1369 MonoMethod*
1370 mono_class_get_method_generic (MonoClass *klass, MonoMethod *method);
1371
1372 MonoType*
1373 mono_type_get_basic_type_from_generic (MonoType *type);
1374
1375 gboolean
1376 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass);
1377
1378 gboolean
1379 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass);
1380
1381 gboolean
1382 mono_class_can_access_class (MonoClass *access_class, MonoClass *target_class);
1383
1384 MonoClass *
1385 mono_class_get_generic_type_definition (MonoClass *klass);
1386
1387 gboolean
1388 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent);
1389
1390 int
1391 mono_method_get_vtable_slot (MonoMethod *method);
1392
1393 int
1394 mono_method_get_vtable_index (MonoMethod *method);
1395
1396 MonoMethod*
1397 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig);
1398
1399 void
1400 mono_class_setup_interface_id (MonoClass *klass);
1401
1402 MonoGenericContainer*
1403 mono_class_get_generic_container (MonoClass *klass);
1404
1405 MonoGenericClass*
1406 mono_class_get_generic_class (MonoClass *klass);
1407
1408 void
1409 mono_class_alloc_ext (MonoClass *klass);
1410
1411 void
1412 mono_class_setup_interfaces (MonoClass *klass, MonoError *error);
1413
1414 MonoClassField*
1415 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type);
1416
1417 MonoVTable*
1418 mono_class_vtable_full (MonoDomain *domain, MonoClass *klass, MonoError *error);
1419
1420 gboolean
1421 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate);
1422
1423 gboolean
1424 mono_class_has_variant_generic_params (MonoClass *klass);
1425
1426 gboolean
1427 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv);
1428
1429 gboolean mono_is_corlib_image (MonoImage *image);
1430
1431 MonoType*
1432 mono_field_get_type_checked (MonoClassField *field, MonoError *error);
1433
1434 MonoClassField*
1435 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter);
1436
1437 gboolean
1438 mono_class_check_vtable_constraints (MonoClass *klass, GList *in_setup);
1439
1440 gboolean
1441 mono_class_has_finalizer (MonoClass *klass);
1442
1443 void
1444 mono_unload_interface_id (MonoClass *klass);
1445
1446 GPtrArray*
1447 mono_class_get_methods_by_name (MonoClass *klass, const char *name, guint32 bflags, gboolean ignore_case, gboolean allow_ctors, MonoException **ex);
1448
1449 char*
1450 mono_class_full_name (MonoClass *klass);
1451
1452 MonoClass*
1453 mono_class_inflate_generic_class_checked (MonoClass *gklass, MonoGenericContext *context, MonoError *error);
1454
1455 MonoClass *
1456 mono_class_get_checked (MonoImage *image, guint32 type_token, MonoError *error);
1457
1458 MonoClass *
1459 mono_class_get_and_inflate_typespec_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1460
1461 MonoClass *
1462 mono_class_from_name_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1463
1464 MonoClass *
1465 mono_class_from_name_case_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1466
1467 MonoClassField*
1468 mono_field_from_token_checked (MonoImage *image, uint32_t token, MonoClass **retklass, MonoGenericContext *context, MonoError *error);
1469
1470 gpointer
1471 mono_ldtoken_checked (MonoImage *image, guint32 token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1472
1473 MonoClass *
1474 mono_class_from_generic_parameter_internal (MonoGenericParam *param);
1475
1476 MonoImage *
1477 get_image_for_generic_param (MonoGenericParam *param);
1478
1479 char *
1480 make_generic_name_string (MonoImage *image, int num);
1481
1482 MonoClass *
1483 mono_class_load_from_name (MonoImage *image, const char* name_space, const char *name) MONO_LLVM_INTERNAL;
1484
1485 MonoClass*
1486 mono_class_try_load_from_name (MonoImage *image, const char* name_space, const char *name);
1487
1488 static inline guint8
1489 mono_class_get_failure (MonoClass *klass)
1490 {
1491         g_assert (klass != NULL);
1492         return klass->exception_type;
1493 }
1494
1495 static inline gboolean
1496 mono_class_has_failure (MonoClass *klass)
1497 {
1498         g_assert (klass != NULL);
1499         return mono_class_get_failure (klass) != MONO_EXCEPTION_NONE;
1500 }
1501
1502 #endif /* __MONO_METADATA_CLASS_INTERNALS_H__ */