Merge pull request #2000 from BogdanovKirill/master
[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         guint16 flags;
587         guint32 token;
588         MonoClass** constraints; /* NULL means end of list */
589 } MonoGenericParamInfo;
590
591 typedef struct {
592         MonoGenericParam param;
593         MonoGenericParamInfo info;
594 } MonoGenericParamFull;
595
596 /*
597  * The generic container.
598  *
599  * Stores the type parameters of a generic type definition or a generic method definition.
600  */
601 struct _MonoGenericContainer {
602         MonoGenericContext context;
603         /* If we're a generic method definition in a generic type definition,
604            the generic container of the containing class. */
605         MonoGenericContainer *parent;
606         /* the generic type definition or the generic method definition corresponding to this container */
607         union {
608                 MonoClass *klass;
609                 MonoMethod *method;
610         } owner;
611         int type_argc    : 31;
612         /* If true, we're a generic method, otherwise a generic type definition. */
613         /* Invariant: parent != NULL => is_method */
614         int is_method    : 1;
615         /* Our type parameters. */
616         MonoGenericParamFull *type_params;
617
618         /* 
619          * For owner-less containers created by SRE, the image the container was
620          * allocated from.
621          */
622         MonoImage *image;
623 };
624
625 #define mono_generic_container_get_param(gc, i) ((MonoGenericParam *) ((gc)->type_params + (i)))
626 #define mono_generic_container_get_param_info(gc, i) (&((gc)->type_params + (i))->info)
627
628 #define mono_generic_param_owner(p)             ((p)->owner)
629 #define mono_generic_param_num(p)               ((p)->num)
630 #define mono_generic_param_info(p)              (mono_generic_param_owner (p) ? &((MonoGenericParamFull *) p)->info : NULL)
631 #define mono_generic_param_name(p)              (((mono_generic_param_owner (p) || (p)->gshared_constraint)) ? ((MonoGenericParamFull *) p)->info.name : NULL)
632 #define mono_type_get_generic_param_owner(t)    (mono_generic_param_owner ((t)->data.generic_param))
633 #define mono_type_get_generic_param_num(t)      (mono_generic_param_num   ((t)->data.generic_param))
634
635 /*
636  * Class information which might be cached by the runtime in the AOT file for
637  * example. Caching this allows us to avoid computing a generic vtable
638  * (class->vtable) in most cases, saving time and avoiding creation of lots of
639  * MonoMethod structures.
640  */
641 typedef struct MonoCachedClassInfo {
642         guint32 vtable_size;
643         guint has_finalize : 1;
644         guint ghcimpl : 1;
645         guint has_cctor : 1;
646         guint has_nested_classes : 1;
647         guint blittable : 1;
648         guint has_references : 1;
649         guint has_static_refs : 1;
650         guint no_special_static_fields : 1;
651         guint is_generic_container : 1;
652         guint32 cctor_token;
653         MonoImage *finalize_image;
654         guint32 finalize_token;
655         guint32 instance_size;
656         guint32 class_size;
657         guint32 packing_size;
658         guint32 min_align;
659 } MonoCachedClassInfo;
660
661 typedef struct {
662         const char *name;
663         gconstpointer func;
664         gconstpointer wrapper;
665         gconstpointer trampoline;
666         MonoMethodSignature *sig;
667         const char *c_symbol;
668         MonoMethod *wrapper_method;
669         gboolean no_raise;
670 } MonoJitICallInfo;
671
672 typedef struct {
673         guint8 exception_type;
674         char *class_name; /* If kind == TYPE */
675         char *assembly_name; /* If kind == TYPE or ASSEMBLY */
676         MonoClass *klass; /* If kind != TYPE */
677         const char *member_name; /* If kind != TYPE */
678         gboolean ref_only; /* If kind == ASSEMBLY */
679         char *msg; /* If kind == BAD_IMAGE */
680 } MonoLoaderError;
681
682 void
683 mono_class_setup_supertypes (MonoClass *klass);
684
685 void
686 mono_class_setup_fields_locking (MonoClass *klass);
687
688 /* WARNING
689  * Only call this function if you can ensure both @klass and @parent
690  * have supertype information initialized.
691  * This can be accomplished by mono_class_setup_supertypes or mono_class_init.
692  * If unsure, use mono_class_has_parent.
693  */
694 static inline gboolean
695 mono_class_has_parent_fast (MonoClass *klass, MonoClass *parent)
696 {
697         return (klass->idepth >= parent->idepth) && (klass->supertypes [parent->idepth - 1] == parent);
698 }
699
700 static inline gboolean
701 mono_class_has_parent (MonoClass *klass, MonoClass *parent)
702 {
703         if (G_UNLIKELY (!klass->supertypes))
704                 mono_class_setup_supertypes (klass);
705
706         if (G_UNLIKELY (!parent->supertypes))
707                 mono_class_setup_supertypes (parent);
708
709         return mono_class_has_parent_fast (klass, parent);
710 }
711
712 typedef struct {
713         MonoVTable *default_vtable;
714         MonoVTable *xdomain_vtable;
715         MonoClass *proxy_class;
716         char* proxy_class_name;
717         uint32_t interface_count;
718         MonoClass *interfaces [MONO_ZERO_LEN_ARRAY];
719 } MonoRemoteClass;
720
721 #define MONO_SIZEOF_REMOTE_CLASS (sizeof (MonoRemoteClass) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
722
723 typedef struct {
724         guint64 new_object_count;
725         size_t initialized_class_count;
726         size_t generic_vtable_count;
727         size_t used_class_count;
728         size_t method_count;
729         size_t class_vtable_size;
730         size_t class_static_data_size;
731         size_t generic_instance_count;
732         size_t generic_class_count;
733         size_t inflated_method_count;
734         size_t inflated_method_count_2;
735         size_t inflated_type_count;
736         size_t generics_metadata_size;
737         size_t delegate_creations;
738         size_t imt_tables_size;
739         size_t imt_number_of_tables;
740         size_t imt_number_of_methods;
741         size_t imt_used_slots;
742         size_t imt_slots_with_collisions;
743         size_t imt_max_collisions_in_slot;
744         size_t imt_method_count_when_max_collisions;
745         size_t imt_thunks_size;
746         size_t jit_info_table_insert_count;
747         size_t jit_info_table_remove_count;
748         size_t jit_info_table_lookup_count;
749         size_t generics_sharable_methods;
750         size_t generics_unsharable_methods;
751         size_t generics_shared_methods;
752         size_t gsharedvt_methods;
753         size_t minor_gc_count;
754         size_t major_gc_count;
755         size_t minor_gc_time_usecs;
756         size_t major_gc_time_usecs;
757         gboolean enabled;
758 } MonoStats;
759
760 /* 
761  * new structure to hold performace counters values that are exported
762  * to managed code.
763  * Note: never remove fields from this structure and only add them to the end.
764  * Size of fields and type should not be changed as well.
765  */
766 typedef struct {
767         /* JIT category */
768         guint32 jit_methods;
769         guint32 jit_bytes;
770         guint32 jit_time;
771         guint32 jit_failures;
772         /* Exceptions category */
773         guint32 exceptions_thrown;
774         guint32 exceptions_filters;
775         guint32 exceptions_finallys;
776         guint32 exceptions_depth;
777         guint32 aspnet_requests_queued;
778         guint32 aspnet_requests;
779         /* Memory category */
780         guint32 gc_collections0;
781         guint32 gc_collections1;
782         guint32 gc_collections2;
783         guint32 gc_promotions0;
784         guint32 gc_promotions1;
785         guint32 gc_promotion_finalizers;
786         guint32 gc_gen0size;
787         guint32 gc_gen1size;
788         guint32 gc_gen2size;
789         guint32 gc_lossize;
790         guint32 gc_fin_survivors;
791         guint32 gc_num_handles;
792         guint32 gc_allocated;
793         guint32 gc_induced;
794         guint32 gc_time;
795         guint32 gc_total_bytes;
796         guint32 gc_committed_bytes;
797         guint32 gc_reserved_bytes;
798         guint32 gc_num_pinned;
799         guint32 gc_sync_blocks;
800         /* Remoting category */
801         guint32 remoting_calls;
802         guint32 remoting_channels;
803         guint32 remoting_proxies;
804         guint32 remoting_classes;
805         guint32 remoting_objects;
806         guint32 remoting_contexts;
807         /* Loader category */
808         guint32 loader_classes;
809         guint32 loader_total_classes;
810         guint32 loader_appdomains;
811         guint32 loader_total_appdomains;
812         guint32 loader_assemblies;
813         guint32 loader_total_assemblies;
814         guint32 loader_failures;
815         guint32 loader_bytes;
816         guint32 loader_appdomains_uloaded;
817         /* Threads and Locks category  */
818         guint32 thread_contentions;
819         guint32 thread_queue_len;
820         guint32 thread_queue_max;
821         guint32 thread_num_logical;
822         guint32 thread_num_physical;
823         guint32 thread_cur_recognized;
824         guint32 thread_num_recognized;
825         /* Interop category */
826         guint32 interop_num_ccw;
827         guint32 interop_num_stubs;
828         guint32 interop_num_marshals;
829         /* Security category */
830         guint32 security_num_checks;
831         guint32 security_num_link_checks;
832         guint32 security_time;
833         guint32 security_depth;
834         guint32 unused;
835         /* Threadpool */
836         guint64 threadpool_workitems;
837         guint64 threadpool_ioworkitems;
838         guint threadpool_threads;
839         guint threadpool_iothreads;
840 } MonoPerfCounters;
841
842 extern MonoPerfCounters *mono_perfcounters;
843
844 MONO_API void mono_perfcounters_init (void);
845
846 /*
847  * The definition of the first field in SafeHandle,
848  * Keep in sync with SafeHandle.cs, this is only used
849  * to access the `handle' parameter.
850  */
851 typedef struct {
852         MonoObject  base;
853         void       *handle;
854 } MonoSafeHandle;
855
856 /*
857  * Keep in sync with HandleRef.cs
858  */
859 typedef struct {
860         MonoObject *wrapper;
861         void       *handle;
862 } MonoHandleRef;
863
864 extern MonoStats mono_stats;
865
866 typedef gpointer (*MonoTrampoline)       (MonoMethod *method);
867 typedef gpointer (*MonoJumpTrampoline)       (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
868 typedef gpointer (*MonoRemotingTrampoline)       (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target);
869 typedef gpointer (*MonoDelegateTrampoline)       (MonoDomain *domain, MonoClass *klass);
870
871 typedef gpointer (*MonoLookupDynamicToken) (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context);
872
873 typedef gboolean (*MonoGetCachedClassInfo) (MonoClass *klass, MonoCachedClassInfo *res);
874
875 typedef gboolean (*MonoGetClassFromName) (MonoImage *image, const char *name_space, const char *name, MonoClass **res);
876
877 static inline gboolean
878 method_is_dynamic (MonoMethod *method)
879 {
880 #ifdef DISABLE_REFLECTION_EMIT
881         return FALSE;
882 #else
883         return method->dynamic;
884 #endif
885 }
886
887 void
888 mono_classes_init (void);
889
890 void
891 mono_classes_cleanup (void);
892
893 void
894 mono_class_layout_fields   (MonoClass *klass);
895
896 void
897 mono_class_setup_interface_offsets (MonoClass *klass);
898
899 void
900 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup);
901
902 void
903 mono_class_setup_vtable (MonoClass *klass);
904
905 void
906 mono_class_setup_methods (MonoClass *klass);
907
908 void
909 mono_class_setup_mono_type (MonoClass *klass);
910
911 void
912 mono_class_setup_parent    (MonoClass *klass, MonoClass *parent);
913
914 MonoMethod*
915 mono_class_get_method_by_index (MonoClass *klass, int index);
916
917 MonoMethod*
918 mono_class_get_inflated_method (MonoClass *klass, MonoMethod *method);
919
920 MonoMethod*
921 mono_class_get_vtable_entry (MonoClass *klass, int offset);
922
923 GPtrArray*
924 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error);
925
926 int
927 mono_class_get_vtable_size (MonoClass *klass);
928
929 gboolean
930 mono_class_is_open_constructed_type (MonoType *t);
931
932 gboolean
933 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
934                                MonoGenericContext *generic_context);
935
936 MonoMethod*
937 mono_class_get_cctor (MonoClass *klass);
938
939 MonoMethod*
940 mono_class_get_finalizer (MonoClass *klass);
941
942 gboolean
943 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller);
944
945 gboolean
946 mono_class_field_is_special_static (MonoClassField *field);
947
948 guint32
949 mono_class_field_get_special_static_type (MonoClassField *field);
950
951 gboolean
952 mono_class_has_special_static_fields (MonoClass *klass);
953
954 const char*
955 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type);
956
957 const char*
958 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type);
959
960 void
961 mono_install_trampoline (MonoTrampoline func);
962
963 void
964 mono_install_jump_trampoline (MonoJumpTrampoline func);
965
966 void
967 mono_install_delegate_trampoline (MonoDelegateTrampoline func);
968
969 gpointer
970 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context);
971
972 gpointer
973 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean check_token, MonoClass **handle_class, MonoGenericContext *context);
974
975 void
976 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func);
977
978 gpointer
979 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
980
981 gpointer
982 mono_runtime_create_delegate_trampoline (MonoClass *klass);
983
984 void
985 mono_install_get_cached_class_info (MonoGetCachedClassInfo func);
986
987 void
988 mono_install_get_class_from_name (MonoGetClassFromName func);
989
990 MonoGenericContext*
991 mono_class_get_context (MonoClass *klass);
992
993 MonoMethodSignature*
994 mono_method_signature_checked (MonoMethod *m, MonoError *err);
995
996 MonoGenericContext*
997 mono_method_get_context_general (MonoMethod *method, gboolean uninflated);
998
999 MonoGenericContext*
1000 mono_method_get_context (MonoMethod *method);
1001
1002 /* Used by monodis, thus cannot be MONO_INTERNAL */
1003 MONO_API MonoGenericContainer*
1004 mono_method_get_generic_container (MonoMethod *method);
1005
1006 MonoGenericContext*
1007 mono_generic_class_get_context (MonoGenericClass *gclass);
1008
1009 MonoClass*
1010 mono_generic_class_get_class (MonoGenericClass *gclass);
1011
1012 void
1013 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container);
1014
1015 MonoMethod*
1016 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context);
1017
1018 MonoMethod*
1019 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error);
1020
1021 MonoMethod *
1022 mono_class_inflate_generic_method_checked (MonoMethod *method, MonoGenericContext *context, MonoError *error);
1023
1024 MonoImageSet *
1025 mono_metadata_get_image_set_for_method (MonoMethodInflated *method);
1026
1027 MONO_API MonoMethodSignature *
1028 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context);
1029
1030 MonoType*
1031 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error);
1032
1033 MonoClass*
1034 mono_class_inflate_generic_class (MonoClass *gklass, MonoGenericContext *context);
1035
1036 MonoType*
1037 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error);
1038
1039 MONO_API void
1040 mono_metadata_free_inflated_signature (MonoMethodSignature *sig);
1041
1042 MonoMethodSignature*
1043 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error);
1044
1045 typedef struct {
1046         MonoImage *corlib;
1047         MonoClass *object_class;
1048         MonoClass *byte_class;
1049         MonoClass *void_class;
1050         MonoClass *boolean_class;
1051         MonoClass *sbyte_class;
1052         MonoClass *int16_class;
1053         MonoClass *uint16_class;
1054         MonoClass *int32_class;
1055         MonoClass *uint32_class;
1056         MonoClass *int_class;
1057         MonoClass *uint_class;
1058         MonoClass *int64_class;
1059         MonoClass *uint64_class;
1060         MonoClass *single_class;
1061         MonoClass *double_class;
1062         MonoClass *char_class;
1063         MonoClass *string_class;
1064         MonoClass *enum_class;
1065         MonoClass *array_class;
1066         MonoClass *delegate_class;
1067         MonoClass *multicastdelegate_class;
1068         MonoClass *asyncresult_class;
1069         MonoClass *manualresetevent_class;
1070         MonoClass *typehandle_class;
1071         MonoClass *fieldhandle_class;
1072         MonoClass *methodhandle_class;
1073         MonoClass *systemtype_class;
1074         MonoClass *monotype_class;
1075         MonoClass *runtimetype_class;
1076         MonoClass *exception_class;
1077         MonoClass *threadabortexception_class;
1078         MonoClass *thread_class;
1079         MonoClass *internal_thread_class;
1080 #ifndef DISABLE_REMOTING
1081         MonoClass *transparent_proxy_class;
1082         MonoClass *real_proxy_class;
1083         MonoClass *marshalbyrefobject_class;
1084         MonoClass *iremotingtypeinfo_class;
1085 #endif
1086         MonoClass *mono_method_message_class;
1087         MonoClass *appdomain_class;
1088         MonoClass *field_info_class;
1089         MonoClass *method_info_class;
1090         MonoClass *stringbuilder_class;
1091         MonoClass *math_class;
1092         MonoClass *stack_frame_class;
1093         MonoClass *stack_trace_class;
1094         MonoClass *marshal_class;
1095         MonoClass *typed_reference_class;
1096         MonoClass *argumenthandle_class;
1097         MonoClass *monitor_class;
1098         MonoClass *runtimesecurityframe_class;
1099         MonoClass *executioncontext_class;
1100         MonoClass *internals_visible_class;
1101         MonoClass *generic_ilist_class;
1102         MonoClass *generic_nullable_class;
1103         MonoClass *safehandle_class;
1104         MonoClass *handleref_class;
1105         MonoClass *attribute_class;
1106         MonoClass *customattribute_data_class;
1107         MonoClass *critical_finalizer_object;
1108         MonoClass *generic_ireadonlylist_class;
1109         MonoClass *threadpool_wait_callback_class;
1110         MonoMethod *threadpool_perform_wait_callback_method;
1111 } MonoDefaults;
1112
1113 #ifdef DISABLE_REMOTING
1114 #define mono_class_is_transparent_proxy(klass) (FALSE)
1115 #define mono_class_is_real_proxy(klass) (FALSE)
1116 #define mono_object_is_transparent_proxy(object) (FALSE)
1117 #else
1118 MonoRemoteClass*
1119 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class);
1120
1121 void
1122 mono_install_remoting_trampoline (MonoRemotingTrampoline func);
1123
1124 #define mono_class_is_transparent_proxy(klass) ((klass) == mono_defaults.transparent_proxy_class)
1125 #define mono_class_is_real_proxy(klass) ((klass) == mono_defaults.real_proxy_class)
1126 #define mono_object_is_transparent_proxy(object) (((MonoObject*)object)->vtable->klass == mono_defaults.transparent_proxy_class)
1127 #endif
1128
1129
1130 #define GENERATE_GET_CLASS_WITH_CACHE_DECL(shortname) \
1131 MonoClass* mono_class_get_##shortname##_class (void);
1132
1133 #define GENERATE_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1134 MonoClass*      \
1135 mono_class_get_##shortname##_class (void)       \
1136 {       \
1137         static MonoClass *tmp_class;    \
1138         MonoClass *class = tmp_class;   \
1139         if (!class) {   \
1140                 class = mono_class_from_name (mono_defaults.corlib, #namespace, #name); \
1141                 g_assert (class);       \
1142                 mono_memory_barrier (); \
1143                 tmp_class = class;      \
1144         }       \
1145         return class;   \
1146 }
1147
1148 #define GENERATE_STATIC_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1149 static GENERATE_GET_CLASS_WITH_CACHE (shortname,namespace,name)
1150
1151
1152 #ifndef DISABLE_COM
1153
1154 GENERATE_GET_CLASS_WITH_CACHE_DECL (interop_proxy)
1155 GENERATE_GET_CLASS_WITH_CACHE_DECL (idispatch)
1156 GENERATE_GET_CLASS_WITH_CACHE_DECL (iunknown)
1157 GENERATE_GET_CLASS_WITH_CACHE_DECL (com_object)
1158 GENERATE_GET_CLASS_WITH_CACHE_DECL (variant)
1159
1160 #endif
1161
1162 extern MonoDefaults mono_defaults;
1163
1164 void
1165 mono_loader_init           (void);
1166
1167 void
1168 mono_loader_cleanup        (void);
1169
1170 void
1171 mono_loader_lock           (void) MONO_LLVM_INTERNAL;
1172
1173 void
1174 mono_loader_unlock         (void) MONO_LLVM_INTERNAL;
1175
1176 void
1177 mono_loader_lock_track_ownership (gboolean track);
1178
1179 gboolean
1180 mono_loader_lock_is_owned_by_self (void);
1181
1182 void
1183 mono_loader_lock_if_inited (void);
1184
1185 void
1186 mono_loader_unlock_if_inited (void);
1187
1188 void
1189 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only);
1190
1191 void
1192 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name);
1193
1194 void
1195 mono_loader_set_error_method_load (const char *class_name, const char *member_name);
1196
1197 void
1198 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name);
1199 void
1200 mono_loader_set_error_bad_image (char *msg);
1201
1202 MonoException *
1203 mono_loader_error_prepare_exception (MonoLoaderError *error);
1204
1205 MonoLoaderError *
1206 mono_loader_get_last_error (void);
1207
1208 void
1209 mono_loader_clear_error    (void);
1210
1211 void
1212 mono_loader_assert_no_error (void);
1213
1214 void
1215 mono_reflection_init       (void);
1216
1217 void
1218 mono_icall_init            (void);
1219
1220 void
1221 mono_icall_cleanup         (void);
1222
1223 gpointer
1224 mono_method_get_wrapper_data (MonoMethod *method, guint32 id);
1225
1226 gboolean
1227 mono_metadata_has_generic_params (MonoImage *image, guint32 token);
1228
1229 MONO_API MonoGenericContainer *
1230 mono_metadata_load_generic_params (MonoImage *image, guint32 token,
1231                                    MonoGenericContainer *parent_container);
1232
1233 MONO_API gboolean
1234 mono_metadata_load_generic_param_constraints_checked (MonoImage *image, guint32 token,
1235                                               MonoGenericContainer *container, MonoError *error);
1236
1237 MonoMethodSignature*
1238 mono_create_icall_signature (const char *sigstr);
1239
1240 MonoJitICallInfo *
1241 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save);
1242
1243 MonoJitICallInfo *
1244 mono_register_jit_icall_full (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save, gboolean no_raise, const char *c_symbol);
1245
1246 void
1247 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper);
1248
1249 MonoJitICallInfo *
1250 mono_find_jit_icall_by_name (const char *name) MONO_LLVM_INTERNAL;
1251
1252 MonoJitICallInfo *
1253 mono_find_jit_icall_by_addr (gconstpointer addr) MONO_LLVM_INTERNAL;
1254
1255 GHashTable*
1256 mono_get_jit_icall_info (void);
1257
1258 const char*
1259 mono_lookup_jit_icall_symbol (const char *name);
1260
1261 gboolean
1262 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data);
1263
1264 gpointer
1265 mono_class_get_exception_data (MonoClass *klass);
1266
1267 MonoException*
1268 mono_class_get_exception_for_failure (MonoClass *klass);
1269
1270 char*
1271 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format);
1272
1273 char*
1274 mono_type_get_full_name (MonoClass *klass);
1275
1276 char *
1277 mono_method_get_name_full (MonoMethod *method, gboolean signature, MonoTypeNameFormat format);
1278
1279 MonoArrayType *mono_dup_array_type (MonoImage *image, MonoArrayType *a);
1280 MonoMethodSignature *mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig);
1281
1282 MONO_API void
1283 mono_image_init_name_cache (MonoImage *image);
1284
1285 gboolean mono_class_is_nullable (MonoClass *klass);
1286 MonoClass *mono_class_get_nullable_param (MonoClass *klass);
1287
1288 /* object debugging functions, for use inside gdb */
1289 MONO_API void mono_object_describe        (MonoObject *obj);
1290 MONO_API void mono_object_describe_fields (MonoObject *obj);
1291 MONO_API void mono_value_describe_fields  (MonoClass* klass, const char* addr);
1292 MONO_API void mono_class_describe_statics (MonoClass* klass);
1293
1294 /* method debugging functions, for use inside gdb */
1295 MONO_API void mono_method_print_code (MonoMethod *method);
1296
1297 /*Enum validation related functions*/
1298 MONO_API gboolean
1299 mono_type_is_valid_enum_basetype (MonoType * type);
1300
1301 MONO_API gboolean
1302 mono_class_is_valid_enum (MonoClass *klass);
1303
1304 MonoType *
1305 mono_type_get_checked        (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1306
1307 gboolean
1308 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass);
1309
1310 MonoMethod*
1311 mono_class_get_method_generic (MonoClass *klass, MonoMethod *method);
1312
1313 MonoType*
1314 mono_type_get_basic_type_from_generic (MonoType *type);
1315
1316 gboolean
1317 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass);
1318
1319 gboolean
1320 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass);
1321
1322 gboolean
1323 mono_class_can_access_class (MonoClass *access_class, MonoClass *target_class);
1324
1325 MonoClass *
1326 mono_class_get_generic_type_definition (MonoClass *klass);
1327
1328 gboolean
1329 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent);
1330
1331 int
1332 mono_method_get_vtable_slot (MonoMethod *method);
1333
1334 int
1335 mono_method_get_vtable_index (MonoMethod *method);
1336
1337 MonoMethod*
1338 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig);
1339
1340 void
1341 mono_class_setup_interface_id (MonoClass *klass);
1342
1343 MonoGenericContainer*
1344 mono_class_get_generic_container (MonoClass *klass);
1345
1346 MonoGenericClass*
1347 mono_class_get_generic_class (MonoClass *klass);
1348
1349 void
1350 mono_class_alloc_ext (MonoClass *klass);
1351
1352 void
1353 mono_class_setup_interfaces (MonoClass *klass, MonoError *error);
1354
1355 MonoClassField*
1356 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type);
1357
1358 MonoVTable*
1359 mono_class_vtable_full (MonoDomain *domain, MonoClass *klass, gboolean raise_on_error);
1360
1361 gboolean
1362 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate);
1363
1364 gboolean
1365 mono_class_has_variant_generic_params (MonoClass *klass);
1366
1367 gboolean
1368 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv);
1369
1370 gboolean mono_is_corlib_image (MonoImage *image);
1371
1372 MonoType*
1373 mono_field_get_type_checked (MonoClassField *field, MonoError *error);
1374
1375 MonoClassField*
1376 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter);
1377
1378 gboolean
1379 mono_class_check_vtable_constraints (MonoClass *klass, GList *in_setup);
1380
1381 gboolean
1382 mono_class_has_finalizer (MonoClass *klass);
1383
1384 void
1385 mono_unload_interface_id (MonoClass *klass);
1386
1387 GPtrArray*
1388 mono_class_get_methods_by_name (MonoClass *klass, const char *name, guint32 bflags, gboolean ignore_case, gboolean allow_ctors, MonoException **ex);
1389
1390 char*
1391 mono_class_full_name (MonoClass *klass);
1392
1393 MonoClass*
1394 mono_class_inflate_generic_class_checked (MonoClass *gklass, MonoGenericContext *context, MonoError *error);
1395
1396 MonoClass *
1397 mono_class_get_checked (MonoImage *image, guint32 type_token, MonoError *error);
1398
1399 MonoClass *
1400 mono_class_get_and_inflate_typespec_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1401
1402 MonoClass *
1403 mono_class_from_name_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1404
1405 MonoClass *
1406 mono_class_from_name_case_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1407
1408 MonoClassField*
1409 mono_field_from_token_checked (MonoImage *image, uint32_t token, MonoClass **retklass, MonoGenericContext *context, MonoError *error);
1410
1411 gpointer
1412 mono_ldtoken_checked (MonoImage *image, guint32 token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1413
1414 #endif /* __MONO_METADATA_CLASS_INTERBALS_H__ */