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