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