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