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