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