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