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