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