Merge pull request #2820 from kumpera/license-change-rebased
[mono.git] / mono / metadata / class-internals.h
1 /* 
2  * Copyright 2012 Xamarin Inc
3  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
4  */
5 #ifndef __MONO_METADATA_CLASS_INTERNALS_H__
6 #define __MONO_METADATA_CLASS_INTERNALS_H__
7
8 #include <mono/metadata/class.h>
9 #include <mono/metadata/object.h>
10 #include <mono/metadata/mempool.h>
11 #include <mono/metadata/metadata-internals.h>
12 #include <mono/io-layer/io-layer.h>
13 #include "mono/utils/mono-compiler.h"
14 #include "mono/utils/mono-error.h"
15 #include "mono/sgen/gc-internal-agnostic.h"
16
17 #define MONO_CLASS_IS_ARRAY(c) ((c)->rank)
18
19 #define MONO_CLASS_HAS_STATIC_METADATA(klass) ((klass)->type_token && !(klass)->image->dynamic && !(klass)->generic_class)
20
21 #define MONO_DEFAULT_SUPERTABLE_SIZE 6
22
23 extern gboolean mono_print_vtable;
24 extern gboolean mono_align_small_structs;
25
26 typedef struct _MonoMethodWrapper MonoMethodWrapper;
27 typedef struct _MonoMethodInflated MonoMethodInflated;
28 typedef struct _MonoMethodPInvoke MonoMethodPInvoke;
29
30 /* Properties that applies to a group of structs should better use a higher number
31  * to avoid colision with type specific properties.
32  * 
33  * This prop applies to class, method, property, event, assembly and image.
34  */
35 #define MONO_PROP_DYNAMIC_CATTR 0x1000
36
37 #ifdef ENABLE_ICALL_EXPORT
38 #pragma GCC diagnostic ignored "-Wmissing-prototypes"
39 #define ICALL_EXPORT MONO_API
40 #else
41 #define ICALL_EXPORT static
42 #endif
43
44 typedef enum {
45 #define WRAPPER(e,n) MONO_WRAPPER_ ## e,
46 #include "wrapper-types.h"
47 #undef WRAPPER
48         MONO_WRAPPER_NUM
49 } MonoWrapperType;
50
51 typedef enum {
52         MONO_TYPE_NAME_FORMAT_IL,
53         MONO_TYPE_NAME_FORMAT_REFLECTION,
54         MONO_TYPE_NAME_FORMAT_FULL_NAME,
55         MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED
56 } MonoTypeNameFormat;
57
58 typedef enum {
59         MONO_REMOTING_TARGET_UNKNOWN,
60         MONO_REMOTING_TARGET_APPDOMAIN,
61         MONO_REMOTING_TARGET_COMINTEROP
62 } MonoRemotingTarget;
63
64 #define MONO_METHOD_PROP_GENERIC_CONTAINER 0
65
66 struct _MonoMethod {
67         guint16 flags;  /* method flags */
68         guint16 iflags; /* method implementation flags */
69         guint32 token;
70         MonoClass *klass; /* To what class does this method belong */
71         MonoMethodSignature *signature;
72         /* name is useful mostly for debugging */
73         const char *name;
74         /* this is used by the inlining algorithm */
75         unsigned int inline_info:1;
76         unsigned int inline_failure:1;
77         unsigned int wrapper_type:5;
78         unsigned int string_ctor:1;
79         unsigned int save_lmf:1;
80         unsigned int dynamic:1; /* created & destroyed during runtime */
81         unsigned int sre_method:1; /* created at runtime using Reflection.Emit */
82         unsigned int is_generic:1; /* whenever this is a generic method definition */
83         unsigned int is_inflated:1; /* whether we're a MonoMethodInflated */
84         unsigned int skip_visibility:1; /* whenever to skip JIT visibility checks */
85         unsigned int verification_success:1; /* whether this method has been verified successfully.*/
86         signed int slot : 16;
87
88         /*
89          * If is_generic is TRUE, the generic_container is stored in image->property_hash, 
90          * using the key MONO_METHOD_PROP_GENERIC_CONTAINER.
91          */
92 };
93
94 struct _MonoMethodWrapper {
95         MonoMethod method;
96         MonoMethodHeader *header;
97         void *method_data;
98 };
99
100 struct _MonoMethodPInvoke {
101         MonoMethod method;
102         gpointer addr;
103         /* add marshal info */
104         guint16 piflags;  /* pinvoke flags */
105         guint16 implmap_idx;  /* index into IMPLMAP */
106 };
107
108 /* 
109  * Stores the default value / RVA of fields.
110  * This information is rarely needed, so it is stored separately from 
111  * MonoClassField.
112  */
113 typedef struct MonoFieldDefaultValue {
114         /*
115          * If the field is constant, pointer to the metadata constant
116          * value.
117          * If the field has an RVA flag, pointer to the data.
118          * Else, invalid.
119          */
120         const char      *data;
121
122         /* If the field is constant, the type of the constant. */
123         MonoTypeEnum     def_type;
124 } MonoFieldDefaultValue;
125
126 /*
127  * MonoClassField is just a runtime representation of the metadata for
128  * field, it doesn't contain the data directly.  Static fields are
129  * stored in MonoVTable->data.  Instance fields are allocated in the
130  * objects after the object header.
131  */
132 struct _MonoClassField {
133         /* Type of the field */
134         MonoType        *type;
135
136         const char      *name;
137
138         /* Type where the field was defined */
139         MonoClass       *parent;
140
141         /*
142          * Offset where this field is stored; if it is an instance
143          * field, it's the offset from the start of the object, if
144          * it's static, it's from the start of the memory chunk
145          * allocated for statics for the class.
146          * For special static fields, this is set to -1 during vtable construction.
147          */
148         int              offset;
149 };
150
151 /* a field is ignored if it's named "_Deleted" and it has the specialname and rtspecialname flags set */
152 #define mono_field_is_deleted(field) (((field)->type->attrs & (FIELD_ATTRIBUTE_SPECIAL_NAME | FIELD_ATTRIBUTE_RT_SPECIAL_NAME)) \
153                                       && (strcmp (mono_field_get_name (field), "_Deleted") == 0))
154
155 /* a field is ignored if it's named "_Deleted" and it has the specialname and rtspecialname flags set */
156 /* Try to avoid loading the field's type */
157 #define mono_field_is_deleted_with_flags(field, flags) (((flags) & (FIELD_ATTRIBUTE_SPECIAL_NAME | FIELD_ATTRIBUTE_RT_SPECIAL_NAME)) \
158                                       && (strcmp (mono_field_get_name (field), "_Deleted") == 0))
159
160 typedef struct {
161         MonoClassField *field;
162         guint32 offset;
163         MonoMarshalSpec *mspec;
164 } MonoMarshalField;
165
166 typedef struct {
167         guint32 native_size, min_align;
168         guint32 num_fields;
169         MonoMethod *ptr_to_str;
170         MonoMethod *str_to_ptr;
171         MonoMarshalField fields [MONO_ZERO_LEN_ARRAY];
172 } MonoMarshalType;
173
174 #define MONO_SIZEOF_MARSHAL_TYPE (offsetof (MonoMarshalType, fields))
175
176 struct _MonoProperty {
177         MonoClass *parent;
178         const char *name;
179         MonoMethod *get;
180         MonoMethod *set;
181         guint32 attrs;
182 };
183
184 struct _MonoEvent {
185         MonoClass *parent;
186         const char *name;
187         MonoMethod *add;
188         MonoMethod *remove;
189         MonoMethod *raise;
190 #ifndef MONO_SMALL_CONFIG
191         MonoMethod **other;
192 #endif
193         guint32 attrs;
194 };
195
196 /* type of exception being "on hold" for later processing (see exception_type) */
197 enum {
198         MONO_EXCEPTION_NONE = 0,
199         MONO_EXCEPTION_INVALID_PROGRAM = 3,
200         MONO_EXCEPTION_UNVERIFIABLE_IL = 4,
201         MONO_EXCEPTION_MISSING_METHOD = 5,
202         MONO_EXCEPTION_MISSING_FIELD = 6,
203         MONO_EXCEPTION_TYPE_LOAD = 7,
204         MONO_EXCEPTION_FILE_NOT_FOUND = 8,
205         MONO_EXCEPTION_METHOD_ACCESS = 9,
206         MONO_EXCEPTION_FIELD_ACCESS = 10,
207         MONO_EXCEPTION_GENERIC_SHARING_FAILED = 11,
208         MONO_EXCEPTION_BAD_IMAGE = 12,
209         MONO_EXCEPTION_OBJECT_SUPPLIED = 13, /*The exception object is already created.*/
210         MONO_EXCEPTION_OUT_OF_MEMORY = 14,
211         MONO_EXCEPTION_INLINE_FAILED = 15,
212         MONO_EXCEPTION_MONO_ERROR = 16,
213         /* add other exception type */
214 };
215
216 /* This struct collects the info needed for the runtime use of a class,
217  * like the vtables for a domain, the GC descriptor, etc.
218  */
219 typedef struct {
220         guint16 max_domain;
221         /* domain_vtables is indexed by the domain id and the size is max_domain + 1 */
222         MonoVTable *domain_vtables [MONO_ZERO_LEN_ARRAY];
223 } MonoClassRuntimeInfo;
224
225 #define MONO_SIZEOF_CLASS_RUNTIME_INFO (sizeof (MonoClassRuntimeInfo) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
226
227 #define MONO_CLASS_PROP_EXCEPTION_DATA 0
228
229 /* 
230  * This structure contains the rarely used fields of MonoClass
231  * Since using just one field causes the whole structure to be allocated, it should
232  * be used for fields which are only used in like 5% of all classes.
233  */
234 typedef struct {
235         struct {
236 #if MONO_SMALL_CONFIG
237                 guint16 first, count;
238 #else
239                 guint32 first, count;
240 #endif
241         } property, event;
242
243         /* Initialized by a call to mono_class_setup_properties () */
244         MonoProperty *properties;
245
246         /* Initialized by a call to mono_class_setup_events () */
247         MonoEvent *events;
248
249         guint32    declsec_flags;       /* declarative security attributes flags */
250
251         /* Default values/RVA for fields and properties */
252         /* Accessed using mono_class_get_field_default_value () / mono_field_get_data () */
253         MonoFieldDefaultValue *field_def_values;
254         MonoFieldDefaultValue *prop_def_values;
255
256         GList      *nested_classes;
257 } MonoClassExt;
258
259 struct _MonoClass {
260         /* element class for arrays and enum basetype for enums */
261         MonoClass *element_class; 
262         /* used for subtype checks */
263         MonoClass *cast_class; 
264
265         /* for fast subtype checks */
266         MonoClass **supertypes;
267         guint16     idepth;
268
269         /* array dimension */
270         guint8     rank;          
271
272         int        instance_size; /* object instance size */
273
274         guint inited          : 1;
275         /* We use init_pending to detect cyclic calls to mono_class_init */
276         guint init_pending    : 1;
277
278         /* A class contains static and non static data. Static data can be
279          * of the same type as the class itselfs, but it does not influence
280          * the instance size of the class. To avoid cyclic calls to 
281          * mono_class_init (from mono_class_instance_size ()) we first 
282          * initialise all non static fields. After that we set size_inited 
283          * to 1, because we know the instance size now. After that we 
284          * initialise all static fields.
285          */
286         /* size_inited is accessed without locks, so it needs a memory barrier */
287         guint size_inited     : 1;
288         guint valuetype       : 1; /* derives from System.ValueType */
289         guint enumtype        : 1; /* derives from System.Enum */
290         guint blittable       : 1; /* class is blittable */
291         guint unicode         : 1; /* class uses unicode char when marshalled */
292         guint wastypebuilder  : 1; /* class was created at runtime from a TypeBuilder */
293         /* next byte */
294         guint8 min_align;
295
296         /* next byte */
297         guint packing_size    : 4;
298         guint ghcimpl         : 1; /* class has its own GetHashCode impl */ 
299         guint has_finalize    : 1; /* class has its own Finalize impl */ 
300 #ifndef DISABLE_REMOTING
301         guint marshalbyref    : 1; /* class is a MarshalByRefObject */
302         guint contextbound    : 1; /* class is a ContextBoundObject */
303 #endif
304         /* next byte */
305         guint delegate        : 1; /* class is a Delegate */
306         guint gc_descr_inited : 1; /* gc_descr is initialized */
307         guint has_cctor       : 1; /* class has a cctor */
308         guint has_references  : 1; /* it has GC-tracked references in the instance */
309         guint has_static_refs : 1; /* it has static fields that are GC-tracked */
310         guint no_special_static_fields : 1; /* has no thread/context static fields */
311         /* directly or indirectly derives from ComImport attributed class.
312          * this means we need to create a proxy for instances of this class
313          * for COM Interop. set this flag on loading so all we need is a quick check
314          * during object creation rather than having to traverse supertypes
315          */
316         guint is_com_object : 1; 
317         guint nested_classes_inited : 1; /* Whenever nested_class is initialized */
318
319         /* next byte*/
320         guint interfaces_inited : 1; /* interfaces is initialized */
321         guint simd_type : 1; /* class is a simd intrinsic type */
322         guint is_generic : 1; /* class is a generic type definition */
323         guint is_inflated : 1; /* class is a generic instance */
324         guint has_finalize_inited    : 1; /* has_finalize is initialized */
325         guint fields_inited : 1; /* fields is initialized */
326         guint setup_fields_called : 1; /* to prevent infinite loops in setup_fields */
327
328         guint8     exception_type;      /* MONO_EXCEPTION_* */
329
330         /* Additional information about the exception */
331         /* Stored as property MONO_CLASS_PROP_EXCEPTION_DATA */
332         //void       *exception_data;
333
334         MonoClass  *parent;
335         MonoClass  *nested_in;
336
337         MonoImage *image;
338         const char *name;
339         const char *name_space;
340
341         guint32    type_token;
342         int        vtable_size; /* number of slots */
343
344         guint16     interface_count;
345         guint16     interface_id;        /* unique inderface id (for interfaces) */
346         guint16     max_interface_id;
347         
348         guint16     interface_offsets_count;
349         MonoClass **interfaces_packed;
350         guint16    *interface_offsets_packed;
351 /* enabled only with small config for now: we might want to do it unconditionally */
352 #ifdef MONO_SMALL_CONFIG
353 #define COMPRESSED_INTERFACE_BITMAP 1
354 #endif
355         guint8     *interface_bitmap;
356
357         MonoClass **interfaces;
358
359         union {
360                 int class_size; /* size of area for static fields */
361                 int element_size; /* for array types */
362                 int generic_param_token; /* for generic param types, both var and mvar */
363         } sizes;
364
365         /*
366          * From the TypeDef table
367          */
368         guint32    flags;
369         struct {
370 #if MONO_SMALL_CONFIG
371                 guint16 first, count;
372 #else
373                 guint32 first, count;
374 #endif
375         } field, method;
376
377         /* A GC handle pointing to the corresponding type builder/generic param builder */
378         guint32 ref_info_handle;
379
380         /* loaded on demand */
381         MonoMarshalType *marshal_info;
382
383         /*
384          * Field information: Type and location from object base
385          */
386         MonoClassField *fields;
387
388         MonoMethod **methods;
389
390         /* used as the type of the this argument and when passing the arg by value */
391         MonoType this_arg;
392         MonoType byval_arg;
393
394         MonoGenericClass *generic_class;
395         MonoGenericContainer *generic_container;
396
397         MonoGCDescriptor gc_descr;
398
399         MonoClassRuntimeInfo *runtime_info;
400
401         /* next element in the class_cache hash list (in MonoImage) */
402         MonoClass *next_class_cache;
403
404         /* Generic vtable. Initialized by a call to mono_class_setup_vtable () */
405         MonoMethod **vtable;
406
407         /* Rarely used fields of classes */
408         MonoClassExt *ext;
409 };
410
411 #ifdef COMPRESSED_INTERFACE_BITMAP
412 int mono_compress_bitmap (uint8_t *dest, const uint8_t *bitmap, int size);
413 int mono_class_interface_match (const uint8_t *bitmap, int id);
414 #else
415 #define mono_class_interface_match(bmap,uiid) ((bmap) [(uiid) >> 3] & (1 << ((uiid)&7)))
416 #endif
417
418 #define MONO_CLASS_IMPLEMENTS_INTERFACE(k,uiid) (((uiid) <= (k)->max_interface_id) && mono_class_interface_match ((k)->interface_bitmap, (uiid)))
419
420 #define MONO_VTABLE_AVAILABLE_GC_BITS 4
421
422 #ifdef DISABLE_REMOTING
423 #define mono_class_is_marshalbyref(klass) (FALSE)
424 #define mono_class_is_contextbound(klass) (FALSE)
425 #define mono_vtable_is_remote(vtable) (FALSE)
426 #define mono_vtable_set_is_remote(vtable,enable) do {} while (0)
427 #else
428 #define mono_class_is_marshalbyref(klass) ((klass)->marshalbyref)
429 #define mono_class_is_contextbound(klass) ((klass)->contextbound)
430 #define mono_vtable_is_remote(vtable) ((vtable)->remote)
431 #define mono_vtable_set_is_remote(vtable,enable) do { (vtable)->remote = enable ? 1 : 0; } while (0)
432 #endif
433
434 #ifdef DISABLE_COM
435 #define mono_class_is_com_object(klass) (FALSE)
436 #define mono_class_set_is_com_object(klass) do {} while (0)
437 #else
438 #define mono_class_is_com_object(klass) ((klass)->is_com_object)
439 #define mono_class_set_is_com_object(klass) do { (klass)->is_com_object = 1; } while (0)
440 #endif
441
442
443 MONO_API int mono_class_interface_offset (MonoClass *klass, MonoClass *itf);
444 int mono_class_interface_offset_with_variance (MonoClass *klass, MonoClass *itf, gboolean *non_exact_match);
445
446 typedef gpointer MonoRuntimeGenericContext;
447
448 /* the interface_offsets array is stored in memory before this struct */
449 struct MonoVTable {
450         MonoClass  *klass;
451          /*
452          * According to comments in gc_gcj.h, this should be the second word in
453          * the vtable.
454          */
455         MonoGCDescriptor gc_descr;
456         MonoDomain *domain;  /* each object/vtable belongs to exactly one domain */
457         gpointer    type; /* System.Type type for klass */
458         guint8     *interface_bitmap;
459         guint16     max_interface_id;
460         guint8      rank;
461         guint remote          : 1; /* class is remotely activated */
462         guint initialized     : 1; /* cctor has been run */
463         guint init_failed     : 1; /* cctor execution failed */
464         guint has_static_fields : 1; /* pointer to the data stored at the end of the vtable array */
465         guint gc_bits         : MONO_VTABLE_AVAILABLE_GC_BITS; /* Those bits are reserved for the usaged of the GC */
466
467         guint32     imt_collisions_bitmap;
468         MonoRuntimeGenericContext *runtime_generic_context;
469         /* do not add any fields after vtable, the structure is dynamically extended */
470         /* vtable contains function pointers to methods or their trampolines, at the
471          end there may be a slot containing the pointer to the static fields */
472         gpointer    vtable [MONO_ZERO_LEN_ARRAY];       
473 };
474
475 #define MONO_SIZEOF_VTABLE (sizeof (MonoVTable) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
476
477 #define MONO_VTABLE_IMPLEMENTS_INTERFACE(vt,uiid) (((uiid) <= (vt)->max_interface_id) && mono_class_interface_match ((vt)->interface_bitmap, (uiid)))
478
479 /*
480  * Generic instantiation data type encoding.
481  */
482
483 /*
484  * A particular generic instantiation:
485  *
486  * All instantiations are cached and we don't distinguish between class and method
487  * instantiations here.
488  */
489 struct _MonoGenericInst {
490 #ifndef MONO_SMALL_CONFIG
491         guint id;                       /* unique ID for debugging */
492 #endif
493         guint type_argc    : 22;        /* number of type arguments */
494         guint is_open      :  1;        /* if this is an open type */
495         MonoType *type_argv [MONO_ZERO_LEN_ARRAY];
496 };
497
498 #define MONO_SIZEOF_GENERIC_INST (sizeof (MonoGenericInst) - MONO_ZERO_LEN_ARRAY * SIZEOF_VOID_P)
499 /*
500  * The generic context: an instantiation of a set of class and method generic parameters.
501  *
502  * NOTE: Never allocate this directly on the heap.  It have to be either allocated on the stack,
503  *       or embedded within other objects.  Don't store pointers to this, because it may be on the stack.
504  *       If you really have to, ensure you store a pointer to the embedding object along with it.
505  */
506 struct _MonoGenericContext {
507         /* The instantiation corresponding to the class generic parameters */
508         MonoGenericInst *class_inst;
509         /* The instantiation corresponding to the method generic parameters */
510         MonoGenericInst *method_inst;
511 };
512
513 /*
514  * Inflated generic method.
515  */
516 struct _MonoMethodInflated {
517         union {
518                 MonoMethod method;
519                 MonoMethodPInvoke pinvoke;
520         } method;
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 (*MonoRemotingTrampoline)       (MonoDomain *domain, MonoMethod *method, MonoRemotingTarget target);
919 typedef gpointer (*MonoDelegateTrampoline)       (MonoDomain *domain, MonoClass *klass);
920
921 typedef gboolean (*MonoGetCachedClassInfo) (MonoClass *klass, MonoCachedClassInfo *res);
922
923 typedef gboolean (*MonoGetClassFromName) (MonoImage *image, const char *name_space, const char *name, MonoClass **res);
924
925 static inline gboolean
926 method_is_dynamic (MonoMethod *method)
927 {
928 #ifdef DISABLE_REFLECTION_EMIT
929         return FALSE;
930 #else
931         return method->dynamic;
932 #endif
933 }
934
935 void
936 mono_classes_init (void);
937
938 void
939 mono_classes_cleanup (void);
940
941 void
942 mono_class_layout_fields   (MonoClass *klass, int instance_size);
943
944 void
945 mono_class_setup_interface_offsets (MonoClass *klass);
946
947 void
948 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup);
949
950 void
951 mono_class_setup_vtable (MonoClass *klass);
952
953 void
954 mono_class_setup_methods (MonoClass *klass);
955
956 void
957 mono_class_setup_mono_type (MonoClass *klass);
958
959 void
960 mono_class_setup_parent    (MonoClass *klass, MonoClass *parent);
961
962 MonoMethod*
963 mono_class_get_method_by_index (MonoClass *klass, int index);
964
965 MonoMethod*
966 mono_class_get_inflated_method (MonoClass *klass, MonoMethod *method);
967
968 MonoMethod*
969 mono_class_get_vtable_entry (MonoClass *klass, int offset);
970
971 GPtrArray*
972 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error);
973
974 int
975 mono_class_get_vtable_size (MonoClass *klass);
976
977 gboolean
978 mono_class_is_open_constructed_type (MonoType *t);
979
980 gboolean
981 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
982                                MonoGenericContext *generic_context);
983
984 MonoMethod*
985 mono_class_get_cctor (MonoClass *klass);
986
987 MonoMethod*
988 mono_class_get_finalizer (MonoClass *klass);
989
990 gboolean
991 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller);
992
993 gboolean
994 mono_class_field_is_special_static (MonoClassField *field);
995
996 guint32
997 mono_class_field_get_special_static_type (MonoClassField *field);
998
999 gboolean
1000 mono_class_has_special_static_fields (MonoClass *klass);
1001
1002 const char*
1003 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type);
1004
1005 const char*
1006 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type);
1007
1008 void
1009 mono_install_delegate_trampoline (MonoDelegateTrampoline func);
1010
1011 gpointer
1012 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context, MonoError *error);
1013
1014 gpointer
1015 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean check_token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1016
1017 gpointer
1018 mono_runtime_create_jump_trampoline (MonoDomain *domain, MonoMethod *method, gboolean add_sync_wrapper);
1019
1020 gpointer
1021 mono_runtime_create_delegate_trampoline (MonoClass *klass);
1022
1023 void
1024 mono_install_get_cached_class_info (MonoGetCachedClassInfo func);
1025
1026 void
1027 mono_install_get_class_from_name (MonoGetClassFromName func);
1028
1029 MonoGenericContext*
1030 mono_class_get_context (MonoClass *klass);
1031
1032 MonoMethodSignature*
1033 mono_method_signature_checked (MonoMethod *m, MonoError *err);
1034
1035 MonoGenericContext*
1036 mono_method_get_context_general (MonoMethod *method, gboolean uninflated);
1037
1038 MonoGenericContext*
1039 mono_method_get_context (MonoMethod *method);
1040
1041 /* Used by monodis, thus cannot be MONO_INTERNAL */
1042 MONO_API MonoGenericContainer*
1043 mono_method_get_generic_container (MonoMethod *method);
1044
1045 MonoGenericContext*
1046 mono_generic_class_get_context (MonoGenericClass *gclass);
1047
1048 MonoClass*
1049 mono_generic_class_get_class (MonoGenericClass *gclass);
1050
1051 void
1052 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container);
1053
1054 MonoMethod*
1055 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context);
1056
1057 MonoMethod*
1058 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error);
1059
1060 MonoMethod *
1061 mono_class_inflate_generic_method_checked (MonoMethod *method, MonoGenericContext *context, MonoError *error);
1062
1063 MonoImageSet *
1064 mono_metadata_get_image_set_for_method (MonoMethodInflated *method);
1065
1066 MONO_API MonoMethodSignature *
1067 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context);
1068
1069 MonoType*
1070 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error);
1071
1072 MonoType*
1073 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error);
1074
1075 MONO_API void
1076 mono_metadata_free_inflated_signature (MonoMethodSignature *sig);
1077
1078 MonoMethodSignature*
1079 mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *context, MonoError *error);
1080
1081 typedef struct {
1082         MonoImage *corlib;
1083         MonoClass *object_class;
1084         MonoClass *byte_class;
1085         MonoClass *void_class;
1086         MonoClass *boolean_class;
1087         MonoClass *sbyte_class;
1088         MonoClass *int16_class;
1089         MonoClass *uint16_class;
1090         MonoClass *int32_class;
1091         MonoClass *uint32_class;
1092         MonoClass *int_class;
1093         MonoClass *uint_class;
1094         MonoClass *int64_class;
1095         MonoClass *uint64_class;
1096         MonoClass *single_class;
1097         MonoClass *double_class;
1098         MonoClass *char_class;
1099         MonoClass *string_class;
1100         MonoClass *enum_class;
1101         MonoClass *array_class;
1102         MonoClass *delegate_class;
1103         MonoClass *multicastdelegate_class;
1104         MonoClass *asyncresult_class;
1105         MonoClass *manualresetevent_class;
1106         MonoClass *typehandle_class;
1107         MonoClass *fieldhandle_class;
1108         MonoClass *methodhandle_class;
1109         MonoClass *systemtype_class;
1110         MonoClass *monotype_class;
1111         MonoClass *runtimetype_class;
1112         MonoClass *exception_class;
1113         MonoClass *threadabortexception_class;
1114         MonoClass *thread_class;
1115         MonoClass *internal_thread_class;
1116 #ifndef DISABLE_REMOTING
1117         MonoClass *transparent_proxy_class;
1118         MonoClass *real_proxy_class;
1119         MonoClass *marshalbyrefobject_class;
1120         MonoClass *iremotingtypeinfo_class;
1121 #endif
1122         MonoClass *mono_method_message_class;
1123         MonoClass *appdomain_class;
1124         MonoClass *field_info_class;
1125         MonoClass *method_info_class;
1126         MonoClass *stringbuilder_class;
1127         MonoClass *math_class;
1128         MonoClass *stack_frame_class;
1129         MonoClass *stack_trace_class;
1130         MonoClass *marshal_class;
1131         MonoClass *typed_reference_class;
1132         MonoClass *argumenthandle_class;
1133         MonoClass *monitor_class;
1134         MonoClass *generic_ilist_class;
1135         MonoClass *generic_nullable_class;
1136         MonoClass *handleref_class;
1137         MonoClass *attribute_class;
1138         MonoClass *customattribute_data_class;
1139         MonoClass *critical_finalizer_object; /* MAYBE NULL */
1140         MonoClass *generic_ireadonlylist_class;
1141         MonoClass *threadpool_wait_callback_class;
1142         MonoMethod *threadpool_perform_wait_callback_method;
1143 } MonoDefaults;
1144
1145 #ifdef DISABLE_REMOTING
1146 #define mono_class_is_transparent_proxy(klass) (FALSE)
1147 #define mono_class_is_real_proxy(klass) (FALSE)
1148 #define mono_object_is_transparent_proxy(object) (FALSE)
1149 #else
1150 MonoRemoteClass*
1151 mono_remote_class (MonoDomain *domain, MonoString *class_name, MonoClass *proxy_class, MonoError *error);
1152
1153 void
1154 mono_install_remoting_trampoline (MonoRemotingTrampoline func);
1155
1156 #define mono_class_is_transparent_proxy(klass) ((klass) == mono_defaults.transparent_proxy_class)
1157 #define mono_class_is_real_proxy(klass) ((klass) == mono_defaults.real_proxy_class)
1158 #define mono_object_is_transparent_proxy(object) (((MonoObject*)object)->vtable->klass == mono_defaults.transparent_proxy_class)
1159 #endif
1160
1161
1162 #define GENERATE_GET_CLASS_WITH_CACHE_DECL(shortname) \
1163 MonoClass* mono_class_get_##shortname##_class (void);
1164
1165 #define GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL(shortname) \
1166 MonoClass* mono_class_try_get_##shortname##_class (void);
1167
1168 #define GENERATE_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1169 MonoClass*      \
1170 mono_class_get_##shortname##_class (void)       \
1171 {       \
1172         static MonoClass *tmp_class;    \
1173         MonoClass *klass = tmp_class;   \
1174         if (!klass) {   \
1175                 klass = mono_class_load_from_name (mono_defaults.corlib, #namespace, #name);    \
1176                 mono_memory_barrier (); \
1177                 tmp_class = klass;      \
1178         }       \
1179         return klass;   \
1180 }
1181
1182 #define GENERATE_TRY_GET_CLASS_WITH_CACHE(shortname,namespace,name) \
1183 MonoClass*      \
1184 mono_class_try_get_##shortname##_class (void)   \
1185 {       \
1186         static volatile MonoClass *tmp_class;   \
1187         static volatile gboolean inited;        \
1188         MonoClass *klass = (MonoClass *)tmp_class;      \
1189         mono_memory_barrier (); \
1190         if (!inited) {  \
1191                 klass = mono_class_try_load_from_name (mono_defaults.corlib, #namespace, #name);        \
1192                 tmp_class = klass;      \
1193                 mono_memory_barrier (); \
1194                 inited = TRUE;  \
1195         }       \
1196         return klass;   \
1197 }
1198
1199 GENERATE_TRY_GET_CLASS_WITH_CACHE_DECL (safehandle)
1200
1201 #ifndef DISABLE_COM
1202
1203 GENERATE_GET_CLASS_WITH_CACHE_DECL (interop_proxy)
1204 GENERATE_GET_CLASS_WITH_CACHE_DECL (idispatch)
1205 GENERATE_GET_CLASS_WITH_CACHE_DECL (iunknown)
1206 GENERATE_GET_CLASS_WITH_CACHE_DECL (com_object)
1207 GENERATE_GET_CLASS_WITH_CACHE_DECL (variant)
1208
1209 #endif
1210
1211 extern MonoDefaults mono_defaults;
1212
1213 void
1214 mono_loader_init           (void);
1215
1216 void
1217 mono_loader_cleanup        (void);
1218
1219 void
1220 mono_loader_lock           (void) MONO_LLVM_INTERNAL;
1221
1222 void
1223 mono_loader_unlock         (void) MONO_LLVM_INTERNAL;
1224
1225 void
1226 mono_loader_lock_track_ownership (gboolean track);
1227
1228 gboolean
1229 mono_loader_lock_is_owned_by_self (void);
1230
1231 void
1232 mono_loader_lock_if_inited (void);
1233
1234 void
1235 mono_loader_unlock_if_inited (void);
1236
1237 void
1238 mono_loader_set_error_assembly_load (const char *assembly_name, gboolean ref_only);
1239
1240 void
1241 mono_loader_set_error_type_load (const char *class_name, const char *assembly_name);
1242
1243 void
1244 mono_loader_set_error_method_load (const char *class_name, const char *member_name);
1245
1246 void
1247 mono_loader_set_error_field_load (MonoClass *klass, const char *member_name);
1248 void
1249 mono_loader_set_error_bad_image (char *msg);
1250
1251 MonoException *
1252 mono_loader_error_prepare_exception (MonoLoaderError *error);
1253
1254 MonoLoaderError *
1255 mono_loader_get_last_error (void);
1256
1257 void
1258 mono_loader_clear_error    (void);
1259
1260 void
1261 mono_loader_assert_no_error (void);
1262
1263 void
1264 mono_reflection_init       (void);
1265
1266 void
1267 mono_icall_init            (void);
1268
1269 void
1270 mono_icall_cleanup         (void);
1271
1272 gpointer
1273 mono_method_get_wrapper_data (MonoMethod *method, guint32 id);
1274
1275 gboolean
1276 mono_metadata_has_generic_params (MonoImage *image, guint32 token);
1277
1278 MONO_API MonoGenericContainer *
1279 mono_metadata_load_generic_params (MonoImage *image, guint32 token,
1280                                    MonoGenericContainer *parent_container);
1281
1282 MONO_API gboolean
1283 mono_metadata_load_generic_param_constraints_checked (MonoImage *image, guint32 token,
1284                                               MonoGenericContainer *container, MonoError *error);
1285
1286 MonoMethodSignature*
1287 mono_create_icall_signature (const char *sigstr);
1288
1289 MonoJitICallInfo *
1290 mono_register_jit_icall (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save);
1291
1292 MonoJitICallInfo *
1293 mono_register_jit_icall_full (gconstpointer func, const char *name, MonoMethodSignature *sig, gboolean is_save, gboolean no_raise, const char *c_symbol);
1294
1295 void
1296 mono_register_jit_icall_wrapper (MonoJitICallInfo *info, gconstpointer wrapper);
1297
1298 MonoJitICallInfo *
1299 mono_find_jit_icall_by_name (const char *name) MONO_LLVM_INTERNAL;
1300
1301 MonoJitICallInfo *
1302 mono_find_jit_icall_by_addr (gconstpointer addr) MONO_LLVM_INTERNAL;
1303
1304 GHashTable*
1305 mono_get_jit_icall_info (void);
1306
1307 const char*
1308 mono_lookup_jit_icall_symbol (const char *name);
1309
1310 gboolean
1311 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data);
1312
1313 gpointer
1314 mono_class_get_exception_data (MonoClass *klass);
1315
1316 MonoException*
1317 mono_class_get_exception_for_failure (MonoClass *klass);
1318
1319 char*
1320 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format);
1321
1322 char*
1323 mono_type_get_full_name (MonoClass *klass);
1324
1325 char *
1326 mono_method_get_name_full (MonoMethod *method, gboolean signature, gboolean ret, MonoTypeNameFormat format);
1327
1328 char *
1329 mono_method_get_full_name (MonoMethod *method);
1330
1331 MonoArrayType *mono_dup_array_type (MonoImage *image, MonoArrayType *a);
1332 MonoMethodSignature *mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig);
1333
1334 MONO_API void
1335 mono_image_init_name_cache (MonoImage *image);
1336
1337 gboolean mono_class_is_nullable (MonoClass *klass);
1338 MonoClass *mono_class_get_nullable_param (MonoClass *klass);
1339
1340 /* object debugging functions, for use inside gdb */
1341 MONO_API void mono_object_describe        (MonoObject *obj);
1342 MONO_API void mono_object_describe_fields (MonoObject *obj);
1343 MONO_API void mono_value_describe_fields  (MonoClass* klass, const char* addr);
1344 MONO_API void mono_class_describe_statics (MonoClass* klass);
1345
1346 /* method debugging functions, for use inside gdb */
1347 MONO_API void mono_method_print_code (MonoMethod *method);
1348
1349 char *mono_signature_full_name (MonoMethodSignature *sig);
1350
1351 /*Enum validation related functions*/
1352 MONO_API gboolean
1353 mono_type_is_valid_enum_basetype (MonoType * type);
1354
1355 MONO_API gboolean
1356 mono_class_is_valid_enum (MonoClass *klass);
1357
1358 MonoType *
1359 mono_type_get_checked        (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1360
1361 gboolean
1362 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass);
1363
1364 MonoMethod*
1365 mono_class_get_method_generic (MonoClass *klass, MonoMethod *method);
1366
1367 MonoType*
1368 mono_type_get_basic_type_from_generic (MonoType *type);
1369
1370 gboolean
1371 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass);
1372
1373 gboolean
1374 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass);
1375
1376 gboolean
1377 mono_class_can_access_class (MonoClass *access_class, MonoClass *target_class);
1378
1379 MonoClass *
1380 mono_class_get_generic_type_definition (MonoClass *klass);
1381
1382 gboolean
1383 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent);
1384
1385 int
1386 mono_method_get_vtable_slot (MonoMethod *method);
1387
1388 int
1389 mono_method_get_vtable_index (MonoMethod *method);
1390
1391 MonoMethod*
1392 mono_method_search_in_array_class (MonoClass *klass, const char *name, MonoMethodSignature *sig);
1393
1394 void
1395 mono_class_setup_interface_id (MonoClass *klass);
1396
1397 MonoGenericContainer*
1398 mono_class_get_generic_container (MonoClass *klass);
1399
1400 MonoGenericClass*
1401 mono_class_get_generic_class (MonoClass *klass);
1402
1403 void
1404 mono_class_alloc_ext (MonoClass *klass);
1405
1406 void
1407 mono_class_setup_interfaces (MonoClass *klass, MonoError *error);
1408
1409 MonoClassField*
1410 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type);
1411
1412 MonoVTable*
1413 mono_class_vtable_full (MonoDomain *domain, MonoClass *klass, MonoError *error);
1414
1415 gboolean
1416 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate);
1417
1418 gboolean
1419 mono_class_has_variant_generic_params (MonoClass *klass);
1420
1421 gboolean
1422 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv);
1423
1424 gboolean mono_is_corlib_image (MonoImage *image);
1425
1426 MonoType*
1427 mono_field_get_type_checked (MonoClassField *field, MonoError *error);
1428
1429 MonoClassField*
1430 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter);
1431
1432 gboolean
1433 mono_class_check_vtable_constraints (MonoClass *klass, GList *in_setup);
1434
1435 gboolean
1436 mono_class_has_finalizer (MonoClass *klass);
1437
1438 void
1439 mono_unload_interface_id (MonoClass *klass);
1440
1441 GPtrArray*
1442 mono_class_get_methods_by_name (MonoClass *klass, const char *name, guint32 bflags, gboolean ignore_case, gboolean allow_ctors, MonoException **ex);
1443
1444 char*
1445 mono_class_full_name (MonoClass *klass);
1446
1447 MonoClass*
1448 mono_class_inflate_generic_class_checked (MonoClass *gklass, MonoGenericContext *context, MonoError *error);
1449
1450 MonoClass *
1451 mono_class_get_checked (MonoImage *image, guint32 type_token, MonoError *error);
1452
1453 MonoClass *
1454 mono_class_get_and_inflate_typespec_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error);
1455
1456 MonoClass *
1457 mono_class_from_name_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1458
1459 MonoClass *
1460 mono_class_from_name_case_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error);
1461
1462 MonoClassField*
1463 mono_field_from_token_checked (MonoImage *image, uint32_t token, MonoClass **retklass, MonoGenericContext *context, MonoError *error);
1464
1465 gpointer
1466 mono_ldtoken_checked (MonoImage *image, guint32 token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error);
1467
1468 MonoClass *
1469 mono_class_from_generic_parameter_internal (MonoGenericParam *param);
1470
1471 MonoImage *
1472 get_image_for_generic_param (MonoGenericParam *param);
1473
1474 char *
1475 make_generic_name_string (MonoImage *image, int num);
1476
1477 MonoClass *
1478 mono_class_load_from_name (MonoImage *image, const char* name_space, const char *name) MONO_LLVM_INTERNAL;
1479
1480 MonoClass*
1481 mono_class_try_load_from_name (MonoImage *image, const char* name_space, const char *name);
1482
1483 static inline guint8
1484 mono_class_get_failure (MonoClass *klass)
1485 {
1486         g_assert (klass != NULL);
1487         return klass->exception_type;
1488 }
1489
1490 static inline gboolean
1491 mono_class_has_failure (MonoClass *klass)
1492 {
1493         g_assert (klass != NULL);
1494         return mono_class_get_failure (klass) != MONO_EXCEPTION_NONE;
1495 }
1496
1497 #endif /* __MONO_METADATA_CLASS_INTERNALS_H__ */