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