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