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