Make delegate-invoke wrappers for generic delegates like Func/Action generic, i.e...
[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         /* 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         /* next byte */
295         guint packing_size    : 4;
296         /* still 4 bits free */
297         /* next byte */
298         guint ghcimpl         : 1; /* class has its own GetHashCode impl */ 
299         guint has_finalize    : 1; /* class has its own Finalize impl */ 
300         guint marshalbyref    : 1; /* class is a MarshalByRefObject */
301         guint contextbound    : 1; /* class is a ContextBoundObject */
302         guint delegate        : 1; /* class is a Delegate */
303         guint gc_descr_inited : 1; /* gc_descr is initialized */
304         guint has_cctor       : 1; /* class has a cctor */
305         guint has_references  : 1; /* it has GC-tracked references in the instance */
306         /* next byte */
307         guint has_static_refs : 1; /* it has static fields that are GC-tracked */
308         guint no_special_static_fields : 1; /* has no thread/context static fields */
309         /* directly or indirectly derives from ComImport attributed class.
310          * this means we need to create a proxy for instances of this class
311          * for COM Interop. set this flag on loading so all we need is a quick check
312          * during object creation rather than having to traverse supertypes
313          */
314         guint is_com_object : 1; 
315         guint nested_classes_inited : 1; /* Whenever nested_class is initialized */
316         guint interfaces_inited : 1; /* interfaces is initialized */
317         guint simd_type : 1; /* class is a simd intrinsic type */
318         guint is_generic : 1; /* class is a generic type definition */
319         guint is_inflated : 1; /* class is a generic instance */
320         /* next byte */
321         guint has_finalize_inited    : 1; /* has_finalize is initialized */
322         guint fields_inited : 1; /* fields is initialized */
323         guint setup_fields_called : 1; /* to prevent infinite loops in setup_fields */
324
325         guint8     exception_type;      /* MONO_EXCEPTION_* */
326
327         /* Additional information about the exception */
328         /* Stored as property MONO_CLASS_PROP_EXCEPTION_DATA */
329         //void       *exception_data;
330
331         MonoClass  *parent;
332         MonoClass  *nested_in;
333
334         MonoImage *image;
335         const char *name;
336         const char *name_space;
337
338         guint32    type_token;
339         int        vtable_size; /* number of slots */
340
341         guint16     interface_count;
342         guint16     interface_id;        /* unique inderface id (for interfaces) */
343         guint16     max_interface_id;
344         
345         guint16     interface_offsets_count;
346         MonoClass **interfaces_packed;
347         guint16    *interface_offsets_packed;
348 /* enabled only with small config for now: we might want to do it unconditionally */
349 #ifdef MONO_SMALL_CONFIG
350 #define COMPRESSED_INTERFACE_BITMAP 1
351 #endif
352         guint8     *interface_bitmap;
353
354         MonoClass **interfaces;
355
356         union {
357                 int class_size; /* size of area for static fields */
358                 int element_size; /* for array types */
359                 int generic_param_token; /* for generic param types, both var and mvar */
360         } sizes;
361
362         /*
363          * From the TypeDef table
364          */
365         guint32    flags;
366         struct {
367 #if MONO_SMALL_CONFIG
368                 guint16 first, count;
369 #else
370                 guint32 first, count;
371 #endif
372         } field, method;
373
374         /* A GC handle pointing to the corresponding type builder/generic param builder */
375         guint32 ref_info_handle;
376
377         /* loaded on demand */
378         MonoMarshalType *marshal_info;
379
380         /*
381          * Field information: Type and location from object base
382          */
383         MonoClassField *fields;
384
385         MonoMethod **methods;
386
387         /* used as the type of the this argument and when passing the arg by value */
388         MonoType this_arg;
389         MonoType byval_arg;
390
391         MonoGenericClass *generic_class;
392         MonoGenericContainer *generic_container;
393
394         void *gc_descr;
395
396         MonoClassRuntimeInfo *runtime_info;
397
398         /* next element in the class_cache hash list (in MonoImage) */
399         MonoClass *next_class_cache;
400
401         /* Generic vtable. Initialized by a call to mono_class_setup_vtable () */
402         MonoMethod **vtable;
403
404         /* Rarely used fields of classes */
405         MonoClassExt *ext;
406 };
407
408 #ifdef COMPRESSED_INTERFACE_BITMAP
409 int mono_compress_bitmap (uint8_t *dest, const uint8_t *bitmap, int size) MONO_INTERNAL;
410 int mono_class_interface_match (const uint8_t *bitmap, int id) MONO_INTERNAL;
411 #else
412 #define mono_class_interface_match(bmap,uiid) ((bmap) [(uiid) >> 3] & (1 << ((uiid)&7)))
413 #endif
414
415 #define MONO_CLASS_IMPLEMENTS_INTERFACE(k,uiid) (((uiid) <= (k)->max_interface_id) && mono_class_interface_match ((k)->interface_bitmap, (uiid)))
416
417 #define MONO_VTABLE_AVAILABLE_GC_BITS 4
418
419 int mono_class_interface_offset (MonoClass *klass, MonoClass *itf);
420 int mono_class_interface_offset_with_variance (MonoClass *klass, MonoClass *itf, gboolean *non_exact_match) MONO_INTERNAL;
421
422 typedef gpointer MonoRuntimeGenericContext;
423
424 /* the interface_offsets array is stored in memory before this struct */
425 struct MonoVTable {
426         MonoClass  *klass;
427          /*
428          * According to comments in gc_gcj.h, this should be the second word in
429          * the vtable.
430          */
431         void *gc_descr;         
432         MonoDomain *domain;  /* each object/vtable belongs to exactly one domain */
433         gpointer    type; /* System.Type type for klass */
434         guint8     *interface_bitmap;
435         guint16     max_interface_id;
436         guint8      rank;
437         guint remote          : 1; /* class is remotely activated */
438         guint initialized     : 1; /* cctor has been run */
439         guint init_failed     : 1; /* cctor execution failed */
440         guint has_static_fields : 1; /* pointer to the data stored at the end of the vtable array */
441         guint gc_bits         : MONO_VTABLE_AVAILABLE_GC_BITS; /* Those bits are reserved for the usaged of the GC */
442
443         guint32     imt_collisions_bitmap;
444         MonoRuntimeGenericContext *runtime_generic_context;
445         /* do not add any fields after vtable, the structure is dynamically extended */
446         /* vtable contains function pointers to methods or their trampolines, at the
447          end there may be a slot containing the pointer to the static fields */
448         gpointer    vtable [MONO_ZERO_LEN_ARRAY];       
449 };
450
451 #define MONO_SIZEOF_VTABLE (sizeof (MonoVTable) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
452
453 #define MONO_VTABLE_IMPLEMENTS_INTERFACE(vt,uiid) (((uiid) <= (vt)->max_interface_id) && mono_class_interface_match ((vt)->interface_bitmap, (uiid)))
454
455 /*
456  * Generic instantiation data type encoding.
457  */
458
459 /*
460  * A particular generic instantiation:
461  *
462  * All instantiations are cached and we don't distinguish between class and method
463  * instantiations here.
464  */
465 struct _MonoGenericInst {
466 #ifndef MONO_SMALL_CONFIG
467         guint id;                       /* unique ID for debugging */
468 #endif
469         guint type_argc    : 22;        /* number of type arguments */
470         guint is_open      :  1;        /* if this is an open type */
471         MonoType *type_argv [MONO_ZERO_LEN_ARRAY];
472 };
473
474 #define MONO_SIZEOF_GENERIC_INST (sizeof (MonoGenericInst) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
475 /*
476  * The generic context: an instantiation of a set of class and method generic parameters.
477  *
478  * NOTE: Never allocate this directly on the heap.  It have to be either allocated on the stack,
479  *       or embedded within other objects.  Don't store pointers to this, because it may be on the stack.
480  *       If you really have to, ensure you store a pointer to the embedding object along with it.
481  */
482 struct _MonoGenericContext {
483         /* The instantiation corresponding to the class generic parameters */
484         MonoGenericInst *class_inst;
485         /* The instantiation corresponding to the method generic parameters */
486         MonoGenericInst *method_inst;
487 };
488
489 /*
490  * Inflated generic method.
491  */
492 struct _MonoMethodInflated {
493         union {
494                 MonoMethod method;
495                 MonoMethodPInvoke pinvoke;
496         } method;
497         MonoMethodHeader *header;
498         MonoMethod *declaring;          /* the generic method definition. */
499         MonoGenericContext context;     /* The current instantiation */
500 };
501
502 /*
503  * A particular instantiation of a generic type.
504  */
505 struct _MonoGenericClass {
506         MonoClass *container_class;     /* the generic type definition */
507         MonoGenericContext context;     /* a context that contains the type instantiation doesn't contain any method instantiation */
508         guint is_dynamic  : 1;          /* We're a MonoDynamicGenericClass */
509         guint is_tb_open  : 1;          /* This is the fully open instantiation for a type_builder. Quite ugly, but it's temporary.*/
510         MonoClass *cached_class;        /* if present, the MonoClass corresponding to the instantiation.  */
511
512         /* 
513          * The image set which owns this generic class. Memory owned by the generic class
514          * including cached_class should be allocated from the mempool of the image set,
515          * so it is easy to free.
516          */
517         MonoImageSet *owner;
518 };
519
520 /*
521  * This is used when instantiating a generic type definition which is
522  * a TypeBuilder.
523  */
524 struct _MonoDynamicGenericClass {
525         MonoGenericClass generic_class;
526         int count_fields;
527         MonoClassField *fields;
528         guint initialized;
529         /* The non-inflated types of the fields */
530         MonoType **field_generic_types;
531         /* The managed objects representing the fields */
532         MonoObject **field_objects;
533 };
534
535 /*
536  * A type parameter.
537  */
538 struct _MonoGenericParam {
539         MonoGenericContainer *owner;    /* Type or method this parameter was defined in. */
540         guint16 num;
541         /* For internal runtime use, used to make different versions of the same param */
542         guint16 serial;
543         /* 
544          * If owner is NULL, or owner is 'owned' by this gparam,
545          * then this is the image whose mempool this struct was allocated from.
546          * The second case happens for gparams created in
547          * mono_reflection_initialize_generic_parameter ().
548          */
549         MonoImage *image;
550 };
551
552 /* Additional details about a MonoGenericParam */
553 typedef struct {
554         MonoClass *pklass;              /* The corresponding `MonoClass'. */
555         const char *name;
556         guint16 flags;
557         guint32 token;
558         MonoClass** constraints; /* NULL means end of list */
559 } MonoGenericParamInfo;
560
561 typedef struct {
562         MonoGenericParam param;
563         MonoGenericParamInfo info;
564 } MonoGenericParamFull;
565
566 /*
567  * The generic container.
568  *
569  * Stores the type parameters of a generic type definition or a generic method definition.
570  */
571 struct _MonoGenericContainer {
572         MonoGenericContext context;
573         /* If we're a generic method definition in a generic type definition,
574            the generic container of the containing class. */
575         MonoGenericContainer *parent;
576         /* the generic type definition or the generic method definition corresponding to this container */
577         union {
578                 MonoClass *klass;
579                 MonoMethod *method;
580         } owner;
581         int type_argc    : 31;
582         /* If true, we're a generic method, otherwise a generic type definition. */
583         /* Invariant: parent != NULL => is_method */
584         int is_method    : 1;
585         /* Our type parameters. */
586         MonoGenericParamFull *type_params;
587
588         /* 
589          * For owner-less containers created by SRE, the image the container was
590          * allocated from.
591          */
592         MonoImage *image;
593 };
594
595 #define mono_generic_container_get_param(gc, i) ((MonoGenericParam *) ((gc)->type_params + (i)))
596 #define mono_generic_container_get_param_info(gc, i) (&((gc)->type_params + (i))->info)
597
598 #define mono_generic_param_owner(p)             ((p)->owner)
599 #define mono_generic_param_num(p)               ((p)->num)
600 #define mono_generic_param_info(p)              (mono_generic_param_owner (p) ? &((MonoGenericParamFull *) p)->info : NULL)
601 #define mono_type_get_generic_param_owner(t)    (mono_generic_param_owner ((t)->data.generic_param))
602 #define mono_type_get_generic_param_num(t)      (mono_generic_param_num   ((t)->data.generic_param))
603
604 /*
605  * Class information which might be cached by the runtime in the AOT file for
606  * example. Caching this allows us to avoid computing a generic vtable
607  * (class->vtable) in most cases, saving time and avoiding creation of lots of
608  * MonoMethod structures.
609  */
610 typedef struct MonoCachedClassInfo {
611         guint32 vtable_size;
612         guint has_finalize : 1;
613         guint ghcimpl : 1;
614         guint has_cctor : 1;
615         guint has_nested_classes : 1;
616         guint blittable : 1;
617         guint has_references : 1;
618         guint has_static_refs : 1;
619         guint no_special_static_fields : 1;
620         guint is_generic_container : 1;
621         guint32 cctor_token;
622         MonoImage *finalize_image;
623         guint32 finalize_token;
624         guint32 instance_size;
625         guint32 class_size;
626         guint32 packing_size;
627         guint32 min_align;
628 } MonoCachedClassInfo;
629
630 typedef struct {
631         const char *name;
632         gconstpointer func;
633         gconstpointer wrapper;
634         gconstpointer trampoline;
635         MonoMethodSignature *sig;
636 } MonoJitICallInfo;
637
638 typedef struct {
639         guint8 exception_type;
640         char *class_name; /* If kind == TYPE */
641         char *assembly_name; /* If kind == TYPE or ASSEMBLY */
642         MonoClass *klass; /* If kind != TYPE */
643         const char *member_name; /* If kind != TYPE */
644         gboolean ref_only; /* If kind == ASSEMBLY */
645         char *msg; /* If kind == BAD_IMAGE */
646 } MonoLoaderError;
647
648 void
649 mono_class_setup_supertypes (MonoClass *klass) MONO_INTERNAL;
650
651 void
652 mono_class_setup_fields_locking (MonoClass *class) MONO_INTERNAL;
653
654 /* WARNING
655  * Only call this function if you can ensure both @klass and @parent
656  * have supertype information initialized.
657  * This can be accomplished by mono_class_setup_supertypes or mono_class_init.
658  * If unsure, use mono_class_has_parent.
659  */
660 static inline gboolean
661 mono_class_has_parent_fast (MonoClass *klass, MonoClass *parent)
662 {
663         return (klass->idepth >= parent->idepth) && (klass->supertypes [parent->idepth - 1] == parent);
664 }
665
666 static inline gboolean
667 mono_class_has_parent (MonoClass *klass, MonoClass *parent)
668 {
669         if (G_UNLIKELY (!klass->supertypes))
670                 mono_class_setup_supertypes (klass);
671
672         if (G_UNLIKELY (!parent->supertypes))
673                 mono_class_setup_supertypes (parent);
674
675         return mono_class_has_parent_fast (klass, parent);
676 }
677
678 typedef struct {
679         MonoVTable *default_vtable;
680         MonoVTable *xdomain_vtable;
681         MonoClass *proxy_class;
682         char* proxy_class_name;
683         uint32_t interface_count;
684         MonoClass *interfaces [MONO_ZERO_LEN_ARRAY];
685 } MonoRemoteClass;
686
687 #define MONO_SIZEOF_REMOTE_CLASS (sizeof (MonoRemoteClass) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
688
689 MonoRemoteClass*
690 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class) MONO_INTERNAL;
691
692 typedef struct {
693         gulong new_object_count;
694         gulong initialized_class_count;
695         gulong generic_vtable_count;
696         gulong used_class_count;
697         gulong method_count;
698         gulong class_vtable_size;
699         gulong class_static_data_size;
700         gulong generic_instance_count;
701         gulong generic_class_count;
702         gulong inflated_method_count;
703         gulong inflated_method_count_2;
704         gulong inflated_type_count;
705         gulong generics_metadata_size;
706         gulong dynamic_code_alloc_count;
707         gulong dynamic_code_bytes_count;
708         gulong dynamic_code_frees_count;
709         gulong delegate_creations;
710         gulong imt_tables_size;
711         gulong imt_number_of_tables;
712         gulong imt_number_of_methods;
713         gulong imt_used_slots;
714         gulong imt_slots_with_collisions;
715         gulong imt_max_collisions_in_slot;
716         gulong imt_method_count_when_max_collisions;
717         gulong imt_thunks_size;
718         gulong jit_info_table_insert_count;
719         gulong jit_info_table_remove_count;
720         gulong jit_info_table_lookup_count;
721         gulong hazardous_pointer_count;
722         gulong generics_sharable_methods;
723         gulong generics_unsharable_methods;
724         gulong generics_shared_methods;
725         gulong gsharedvt_methods;
726         gulong minor_gc_count;
727         gulong major_gc_count;
728         gulong minor_gc_time_usecs;
729         gulong major_gc_time_usecs;
730         gboolean enabled;
731 } MonoStats;
732
733 /* 
734  * new structure to hold performace counters values that are exported
735  * to managed code.
736  * Note: never remove fields from this structure and only add them to the end.
737  * Size of fields and type should not be changed as well.
738  */
739 typedef struct {
740         /* JIT category */
741         guint32 jit_methods;
742         guint32 jit_bytes;
743         guint32 jit_time;
744         guint32 jit_failures;
745         /* Exceptions category */
746         guint32 exceptions_thrown;
747         guint32 exceptions_filters;
748         guint32 exceptions_finallys;
749         guint32 exceptions_depth;
750         guint32 aspnet_requests_queued;
751         guint32 aspnet_requests;
752         /* Memory category */
753         guint32 gc_collections0;
754         guint32 gc_collections1;
755         guint32 gc_collections2;
756         guint32 gc_promotions0;
757         guint32 gc_promotions1;
758         guint32 gc_promotion_finalizers;
759         guint32 gc_gen0size;
760         guint32 gc_gen1size;
761         guint32 gc_gen2size;
762         guint32 gc_lossize;
763         guint32 gc_fin_survivors;
764         guint32 gc_num_handles;
765         guint32 gc_allocated;
766         guint32 gc_induced;
767         guint32 gc_time;
768         guint32 gc_total_bytes;
769         guint32 gc_committed_bytes;
770         guint32 gc_reserved_bytes;
771         guint32 gc_num_pinned;
772         guint32 gc_sync_blocks;
773         /* Remoting category */
774         guint32 remoting_calls;
775         guint32 remoting_channels;
776         guint32 remoting_proxies;
777         guint32 remoting_classes;
778         guint32 remoting_objects;
779         guint32 remoting_contexts;
780         /* Loader category */
781         guint32 loader_classes;
782         guint32 loader_total_classes;
783         guint32 loader_appdomains;
784         guint32 loader_total_appdomains;
785         guint32 loader_assemblies;
786         guint32 loader_total_assemblies;
787         guint32 loader_failures;
788         guint32 loader_bytes;
789         guint32 loader_appdomains_uloaded;
790         /* Threads and Locks category  */
791         guint32 thread_contentions;
792         guint32 thread_queue_len;
793         guint32 thread_queue_max;
794         guint32 thread_num_logical;
795         guint32 thread_num_physical;
796         guint32 thread_cur_recognized;
797         guint32 thread_num_recognized;
798         /* Interop category */
799         guint32 interop_num_ccw;
800         guint32 interop_num_stubs;
801         guint32 interop_num_marshals;
802         /* Security category */
803         guint32 security_num_checks;
804         guint32 security_num_link_checks;
805         guint32 security_time;
806         guint32 security_depth;
807         guint32 unused;
808         /* Threadpool */
809         guint64 threadpool_workitems;
810         guint64 threadpool_ioworkitems;
811         guint threadpool_threads;
812         guint threadpool_iothreads;
813 } MonoPerfCounters;
814
815 extern MonoPerfCounters *mono_perfcounters MONO_INTERNAL;
816
817 void mono_perfcounters_init (void);
818
819 /*
820  * The definition of the first field in SafeHandle,
821  * Keep in sync with SafeHandle.cs, this is only used
822  * to access the `handle' parameter.
823  */
824 typedef struct {
825         MonoObject  base;
826         void       *handle;
827 } MonoSafeHandle;
828
829 /*
830  * Keep in sync with HandleRef.cs
831  */
832 typedef struct {
833         MonoObject *wrapper;
834         void       *handle;
835 } MonoHandleRef;
836
837 enum {
838         MONO_GENERIC_SHARING_NONE,
839         MONO_GENERIC_SHARING_COLLECTIONS,
840         MONO_GENERIC_SHARING_CORLIB,
841         MONO_GENERIC_SHARING_ALL
842 };
843
844 /*
845  * Flags for which contexts were used in inflating a generic.
846  */
847 enum {
848         MONO_GENERIC_CONTEXT_USED_CLASS = 1,
849         MONO_GENERIC_CONTEXT_USED_METHOD = 2
850 };
851
852 #define MONO_GENERIC_CONTEXT_USED_BOTH          (MONO_GENERIC_CONTEXT_USED_CLASS | MONO_GENERIC_CONTEXT_USED_METHOD)
853
854 extern MonoStats mono_stats MONO_INTERNAL;
855
856 typedef gpointer (*MonoTrampoline)       (MonoMethod *method);
857 typedef gpointer (*MonoJumpTrampoline)       (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
858 typedef gpointer (*MonoRemotingTrampoline)       (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target);
859 typedef gpointer (*MonoDelegateTrampoline)       (MonoDomain *domain, MonoClass *klass);
860
861 typedef gpointer (*MonoLookupDynamicToken) (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context);
862
863 typedef gboolean (*MonoGetCachedClassInfo) (MonoClass *klass, MonoCachedClassInfo *res);
864
865 typedef gboolean (*MonoGetClassFromName) (MonoImage *image, const char *name_space, const char *name, MonoClass **res);
866
867 void
868 mono_classes_init (void) MONO_INTERNAL;
869
870 void
871 mono_classes_cleanup (void) MONO_INTERNAL;
872
873 void
874 mono_class_layout_fields   (MonoClass *klass) MONO_INTERNAL;
875
876 void
877 mono_class_setup_interface_offsets (MonoClass *klass) MONO_INTERNAL;
878
879 void
880 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup) MONO_INTERNAL;
881
882 void
883 mono_class_setup_vtable (MonoClass *klass) MONO_INTERNAL;
884
885 void
886 mono_class_setup_methods (MonoClass *klass) MONO_INTERNAL;
887
888 void
889 mono_class_setup_mono_type (MonoClass *klass) MONO_INTERNAL;
890
891 void
892 mono_class_setup_parent    (MonoClass *klass, MonoClass *parent) MONO_INTERNAL;
893
894 MonoMethod*
895 mono_class_get_method_by_index (MonoClass *class, int index) MONO_INTERNAL;
896
897 MonoMethod*
898 mono_class_get_inflated_method (MonoClass *class, MonoMethod *method) MONO_INTERNAL;
899
900 MonoMethod*
901 mono_class_get_vtable_entry (MonoClass *class, int offset) MONO_INTERNAL;
902
903 GPtrArray*
904 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error) MONO_INTERNAL;
905
906 int
907 mono_class_get_vtable_size (MonoClass *klass) MONO_INTERNAL;
908
909 gboolean
910 mono_class_is_open_constructed_type (MonoType *t) MONO_INTERNAL;
911
912 gboolean
913 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
914                                MonoGenericContext *generic_context) MONO_INTERNAL;
915
916 MonoMethod*
917 mono_class_get_cctor (MonoClass *klass) MONO_INTERNAL;
918
919 MonoMethod*
920 mono_class_get_finalizer (MonoClass *klass) MONO_INTERNAL;
921
922 gboolean
923 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller) MONO_INTERNAL;
924
925 gboolean
926 mono_class_field_is_special_static (MonoClassField *field) MONO_INTERNAL;
927
928 guint32
929 mono_class_field_get_special_static_type (MonoClassField *field) MONO_INTERNAL;
930
931 gboolean
932 mono_class_has_special_static_fields (MonoClass *klass) MONO_INTERNAL;
933
934 const char*
935 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type) MONO_INTERNAL;
936
937 const char*
938 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type) MONO_INTERNAL;
939
940 void
941 mono_install_trampoline (MonoTrampoline func) MONO_INTERNAL;
942
943 void
944 mono_install_jump_trampoline (MonoJumpTrampoline func) MONO_INTERNAL;
945
946 void
947 mono_install_remoting_trampoline (MonoRemotingTrampoline func) MONO_INTERNAL;
948
949 void
950 mono_install_delegate_trampoline (MonoDelegateTrampoline func) MONO_INTERNAL;
951
952 gpointer
953 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context) MONO_INTERNAL;
954
955 gpointer
956 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean check_token, MonoClass **handle_class, MonoGenericContext *context) MONO_INTERNAL;
957
958 void
959 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func) MONO_INTERNAL;
960
961 gpointer
962 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper) MONO_INTERNAL;
963
964 gpointer
965 mono_runtime_create_delegate_trampoline (MonoClass *klass) MONO_INTERNAL;
966
967 void
968 mono_install_get_cached_class_info (MonoGetCachedClassInfo func) MONO_INTERNAL;
969
970 void
971 mono_install_get_class_from_name (MonoGetClassFromName func) MONO_INTERNAL;
972
973 MonoGenericContext*
974 mono_class_get_context (MonoClass *class) MONO_INTERNAL;
975
976 MonoMethodSignature*
977 mono_method_signature_checked (MonoMethod *m, MonoError *err) MONO_INTERNAL;
978
979 MonoGenericContext*
980 mono_method_get_context_general (MonoMethod *method, gboolean uninflated) MONO_INTERNAL;
981
982 MonoGenericContext*
983 mono_method_get_context (MonoMethod *method) MONO_INTERNAL;
984
985 /* Used by monodis, thus cannot be MONO_INTERNAL */
986 MonoGenericContainer*
987 mono_method_get_generic_container (MonoMethod *method);
988
989 MonoGenericContext*
990 mono_generic_class_get_context (MonoGenericClass *gclass) MONO_INTERNAL;
991
992 MonoClass*
993 mono_generic_class_get_class (MonoGenericClass *gclass) MONO_INTERNAL;
994
995 void
996 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container) MONO_INTERNAL;
997
998 MonoMethod*
999 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context) MONO_INTERNAL;
1000
1001 MonoMethod*
1002 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error) MONO_INTERNAL;
1003
1004 MonoMethodInflated*
1005 mono_method_inflated_lookup (MonoMethodInflated* method, gboolean cache) MONO_INTERNAL;
1006
1007 MonoMethodSignature *
1008 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context);
1009
1010 MonoType*
1011 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error) MONO_INTERNAL;
1012
1013 MonoClass*
1014 mono_class_inflate_generic_class (MonoClass *gklass, MonoGenericContext *context) MONO_INTERNAL;
1015
1016 MonoType*
1017 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error) MONO_INTERNAL;
1018
1019 void
1020 mono_metadata_free_inflated_signature (MonoMethodSignature *sig);
1021
1022 MonoMethodSignature*
1023 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error) MONO_INTERNAL;
1024
1025 typedef struct {
1026         MonoImage *corlib;
1027         MonoClass *object_class;
1028         MonoClass *byte_class;
1029         MonoClass *void_class;
1030         MonoClass *boolean_class;
1031         MonoClass *sbyte_class;
1032         MonoClass *int16_class;
1033         MonoClass *uint16_class;
1034         MonoClass *int32_class;
1035         MonoClass *uint32_class;
1036         MonoClass *int_class;
1037         MonoClass *uint_class;
1038         MonoClass *int64_class;
1039         MonoClass *uint64_class;
1040         MonoClass *single_class;
1041         MonoClass *double_class;
1042         MonoClass *char_class;
1043         MonoClass *string_class;
1044         MonoClass *enum_class;
1045         MonoClass *array_class;
1046         MonoClass *delegate_class;
1047         MonoClass *multicastdelegate_class;
1048         MonoClass *asyncresult_class;
1049         MonoClass *manualresetevent_class;
1050         MonoClass *typehandle_class;
1051         MonoClass *fieldhandle_class;
1052         MonoClass *methodhandle_class;
1053         MonoClass *systemtype_class;
1054         MonoClass *monotype_class;
1055         MonoClass *exception_class;
1056         MonoClass *threadabortexception_class;
1057         MonoClass *thread_class;
1058         MonoClass *internal_thread_class;
1059         MonoClass *transparent_proxy_class;
1060         MonoClass *real_proxy_class;
1061         MonoClass *mono_method_message_class;
1062         MonoClass *appdomain_class;
1063         MonoClass *field_info_class;
1064         MonoClass *method_info_class;
1065         MonoClass *stringbuilder_class;
1066         MonoClass *math_class;
1067         MonoClass *stack_frame_class;
1068         MonoClass *stack_trace_class;
1069         MonoClass *marshal_class;
1070         MonoClass *iserializeable_class;
1071         MonoClass *serializationinfo_class;
1072         MonoClass *streamingcontext_class;
1073         MonoClass *typed_reference_class;
1074         MonoClass *argumenthandle_class;
1075         MonoClass *marshalbyrefobject_class;
1076         MonoClass *monitor_class;
1077         MonoClass *iremotingtypeinfo_class;
1078         MonoClass *runtimesecurityframe_class;
1079         MonoClass *executioncontext_class;
1080         MonoClass *internals_visible_class;
1081         MonoClass *generic_ilist_class;
1082         MonoClass *generic_nullable_class;
1083 #ifndef DISABLE_COM
1084         MonoClass *variant_class;
1085         MonoClass *com_object_class;
1086         MonoClass *com_interop_proxy_class;
1087         MonoClass *iunknown_class;
1088         MonoClass *idispatch_class;
1089 #endif
1090         MonoClass *safehandle_class;
1091         MonoClass *handleref_class;
1092         MonoClass *attribute_class;
1093         MonoClass *customattribute_data_class;
1094         MonoClass *critical_finalizer_object;
1095         MonoClass *generic_ireadonlylist_class;
1096 } MonoDefaults;
1097
1098 extern MonoDefaults mono_defaults MONO_INTERNAL;
1099
1100 void
1101 mono_loader_init           (void) MONO_INTERNAL;
1102
1103 void
1104 mono_loader_cleanup        (void) MONO_INTERNAL;
1105
1106 void
1107 mono_loader_lock           (void) MONO_LLVM_INTERNAL;
1108
1109 void
1110 mono_loader_unlock         (void) MONO_LLVM_INTERNAL;
1111
1112 void
1113 mono_loader_lock_track_ownership (gboolean track) MONO_INTERNAL;
1114
1115 gboolean
1116 mono_loader_lock_is_owned_by_self (void) MONO_INTERNAL;
1117
1118 void
1119 mono_loader_lock_if_inited (void) MONO_INTERNAL;
1120
1121 void
1122 mono_loader_unlock_if_inited (void) MONO_INTERNAL;
1123
1124 void
1125 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only) MONO_INTERNAL;
1126
1127 void
1128 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name) MONO_INTERNAL;
1129
1130 void
1131 mono_loader_set_error_method_load (const char *class_name, const char *member_name) MONO_INTERNAL;
1132
1133 void
1134 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name) MONO_INTERNAL;
1135 void
1136 mono_loader_set_error_bad_image (char *msg) MONO_INTERNAL;
1137
1138 MonoException *
1139 mono_loader_error_prepare_exception (MonoLoaderError *error) MONO_INTERNAL;
1140
1141 MonoLoaderError *
1142 mono_loader_get_last_error (void) MONO_INTERNAL;
1143
1144 void
1145 mono_loader_clear_error    (void) MONO_INTERNAL;
1146
1147 void
1148 mono_reflection_init       (void) MONO_INTERNAL;
1149
1150 void
1151 mono_icall_init            (void) MONO_INTERNAL;
1152
1153 void
1154 mono_icall_cleanup         (void) MONO_INTERNAL;
1155
1156 gpointer
1157 mono_method_get_wrapper_data (MonoMethod *method, guint32 id) MONO_INTERNAL;
1158
1159 gboolean
1160 mono_metadata_has_generic_params (MonoImage *image, guint32 token) MONO_INTERNAL;
1161
1162 MonoGenericContainer *
1163 mono_metadata_load_generic_params (MonoImage *image, guint32 token,
1164                                    MonoGenericContainer *parent_container);
1165
1166 void
1167 mono_metadata_load_generic_param_constraints (MonoImage *image, guint32 token,
1168                                               MonoGenericContainer *container);
1169
1170 gboolean
1171 mono_metadata_load_generic_param_constraints_full (MonoImage *image, guint32 token,
1172                                               MonoGenericContainer *container) MONO_INTERNAL;
1173
1174 MonoMethodSignature*
1175 mono_create_icall_signature (const char *sigstr) MONO_INTERNAL;
1176
1177 MonoJitICallInfo *
1178 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save) MONO_INTERNAL;
1179
1180 void
1181 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper) MONO_INTERNAL;
1182
1183 MonoJitICallInfo *
1184 mono_find_jit_icall_by_name (const char *name) MONO_LLVM_INTERNAL;
1185
1186 MonoJitICallInfo *
1187 mono_find_jit_icall_by_addr (gconstpointer addr) MONO_LLVM_INTERNAL;
1188
1189 GHashTable*
1190 mono_get_jit_icall_info (void) MONO_INTERNAL;
1191
1192 gboolean
1193 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data) MONO_INTERNAL;
1194
1195 gpointer
1196 mono_class_get_exception_data (MonoClass *klass) MONO_INTERNAL;
1197
1198 MonoException*
1199 mono_class_get_exception_for_failure (MonoClass *klass) MONO_INTERNAL;
1200
1201 char*
1202 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format) MONO_INTERNAL;
1203
1204 char*
1205 mono_type_get_full_name (MonoClass *class) MONO_INTERNAL;
1206
1207 MonoArrayType *mono_dup_array_type (MonoImage *image, MonoArrayType *a) MONO_INTERNAL;
1208 MonoMethodSignature *mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig) MONO_INTERNAL;
1209
1210 void
1211 mono_image_init_name_cache (MonoImage *image);
1212
1213 gboolean mono_class_is_nullable (MonoClass *klass) MONO_INTERNAL;
1214 MonoClass *mono_class_get_nullable_param (MonoClass *klass) MONO_INTERNAL;
1215
1216 /* object debugging functions, for use inside gdb */
1217 void mono_object_describe        (MonoObject *obj);
1218 void mono_object_describe_fields (MonoObject *obj);
1219 void mono_value_describe_fields  (MonoClass* klass, const char* addr);
1220 void mono_class_describe_statics (MonoClass* klass);
1221
1222 /*Enum validation related functions*/
1223 gboolean
1224 mono_type_is_valid_enum_basetype (MonoType * type);
1225
1226 gboolean
1227 mono_class_is_valid_enum (MonoClass *klass);
1228
1229 MonoType *
1230 mono_type_get_full        (MonoImage *image, guint32 type_token, MonoGenericContext *context) MONO_INTERNAL;
1231
1232 gboolean
1233 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass) MONO_INTERNAL;
1234
1235 MonoMethod*
1236 mono_class_get_method_generic (MonoClass *klass, MonoMethod *method) MONO_INTERNAL;
1237
1238 MonoType*
1239 mono_type_get_basic_type_from_generic (MonoType *type) MONO_INTERNAL;
1240
1241 gboolean
1242 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass) MONO_INTERNAL;
1243
1244 gboolean
1245 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass) MONO_INTERNAL;
1246
1247 MonoClass *
1248 mono_class_get_generic_type_definition (MonoClass *klass) MONO_INTERNAL;
1249
1250 gboolean
1251 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent) MONO_INTERNAL;
1252
1253 int
1254 mono_method_get_vtable_slot (MonoMethod *method) MONO_INTERNAL;
1255
1256 int
1257 mono_method_get_vtable_index (MonoMethod *method) MONO_INTERNAL;
1258
1259 MonoMethod*
1260 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig) MONO_INTERNAL;
1261
1262 void
1263 mono_class_setup_interface_id (MonoClass *class) MONO_INTERNAL;
1264
1265 MonoGenericContainer*
1266 mono_class_get_generic_container (MonoClass *klass) MONO_INTERNAL;
1267
1268 MonoGenericClass*
1269 mono_class_get_generic_class (MonoClass *klass) MONO_INTERNAL;
1270
1271 void
1272 mono_class_alloc_ext (MonoClass *klass) MONO_INTERNAL;
1273
1274 void
1275 mono_class_setup_interfaces (MonoClass *klass, MonoError *error) MONO_INTERNAL;
1276
1277 MonoClassField*
1278 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type) MONO_INTERNAL;
1279
1280 MonoVTable*
1281 mono_class_vtable_full (MonoDomain *domain, MonoClass *class, gboolean raise_on_error) MONO_INTERNAL;
1282
1283 gboolean
1284 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate) MONO_INTERNAL;
1285
1286 gboolean
1287 mono_class_has_variant_generic_params (MonoClass *klass) MONO_INTERNAL;
1288
1289 gboolean
1290 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv) MONO_INTERNAL;
1291
1292 gboolean mono_is_corlib_image (MonoImage *image) MONO_INTERNAL;
1293
1294 MonoType*
1295 mono_field_get_type_checked (MonoClassField *field, MonoError *error) MONO_INTERNAL;
1296
1297 MonoClassField*
1298 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter) MONO_INTERNAL;
1299
1300 gboolean
1301 mono_class_check_vtable_constraints (MonoClass *class, GList *in_setup) MONO_INTERNAL;
1302
1303 gboolean
1304 mono_class_has_finalizer (MonoClass *klass) MONO_INTERNAL;
1305
1306 void
1307 mono_unload_interface_id (MonoClass *class) MONO_INTERNAL;
1308
1309 GPtrArray*
1310 mono_class_get_methods_by_name (MonoClass *klass, const char *name, guint32 bflags, gboolean ignore_case, gboolean allow_ctors, MonoException **ex) MONO_INTERNAL;
1311
1312 char*
1313 mono_class_full_name (MonoClass *klass) MONO_INTERNAL;
1314
1315 #endif /* __MONO_METADATA_CLASS_INTERBALS_H__ */