2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git] / mono / metadata / class.c
blob58afc5b3e6e07ea5e0c8ae7aad9a967d9a79d918
1 /*
2 * class.c: Class management for the Mono runtime
4 * Author:
5 * Miguel de Icaza (miguel@ximian.com)
7 * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
8 * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
9 */
10 #include <config.h>
11 #ifdef HAVE_ALLOCA_H
12 #include <alloca.h>
13 #endif
14 #include <glib.h>
15 #include <stdio.h>
16 #include <string.h>
17 #include <stdlib.h>
18 #include <signal.h>
19 #if !PLATFORM_WIN32
20 #include <mono/io-layer/atomic.h>
21 #endif
22 #include <mono/metadata/image.h>
23 #include <mono/metadata/assembly.h>
24 #include <mono/metadata/metadata.h>
25 #include <mono/metadata/metadata-internals.h>
26 #include <mono/metadata/profiler-private.h>
27 #include <mono/metadata/tabledefs.h>
28 #include <mono/metadata/tokentype.h>
29 #include <mono/metadata/class-internals.h>
30 #include <mono/metadata/object.h>
31 #include <mono/metadata/appdomain.h>
32 #include <mono/metadata/mono-endian.h>
33 #include <mono/metadata/debug-helpers.h>
34 #include <mono/metadata/reflection.h>
35 #include <mono/metadata/exception.h>
36 #include <mono/metadata/security-manager.h>
37 #include <mono/metadata/security-core-clr.h>
38 #include <mono/metadata/attrdefs.h>
39 #include <mono/metadata/gc-internal.h>
40 #include <mono/metadata/verify-internals.h>
41 #include <mono/metadata/mono-debug.h>
42 #include <mono/utils/mono-counters.h>
44 MonoStats mono_stats;
46 gboolean mono_print_vtable = FALSE;
49 * Controls whenever mono_class_init () constructs a generic vtable. This is TRUE by
50 * default to avoid breaking embedding apps, but set to FALSE by the runtime executable
51 * startup code.
53 gboolean mono_setup_vtable_in_class_init = TRUE;
55 /* Statistics */
56 guint32 inflated_classes, inflated_classes_size, inflated_methods_size;
57 guint32 classes_size, class_ext_size;
59 /* Function supplied by the runtime to find classes by name using information from the AOT file */
60 static MonoGetClassFromName get_class_from_name = NULL;
62 static MonoClass * mono_class_create_from_typedef (MonoImage *image, guint32 type_token);
63 static gboolean mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res);
64 static gboolean can_access_type (MonoClass *access_klass, MonoClass *member_klass);
65 static MonoMethod* find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags);
66 static int generic_array_methods (MonoClass *class);
67 static void setup_generic_array_ifaces (MonoClass *class, MonoClass *iface, MonoMethod **methods, int pos);
69 static MonoMethod* mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter);
71 void (*mono_debugger_class_init_func) (MonoClass *klass) = NULL;
72 void (*mono_debugger_class_loaded_methods_func) (MonoClass *klass) = NULL;
75 * mono_class_from_typeref:
76 * @image: a MonoImage
77 * @type_token: a TypeRef token
79 * Creates the MonoClass* structure representing the type defined by
80 * the typeref token valid inside @image.
81 * Returns: the MonoClass* representing the typeref token, NULL ifcould
82 * not be loaded.
84 MonoClass *
85 mono_class_from_typeref (MonoImage *image, guint32 type_token)
87 guint32 cols [MONO_TYPEREF_SIZE];
88 MonoTableInfo *t = &image->tables [MONO_TABLE_TYPEREF];
89 guint32 idx;
90 const char *name, *nspace;
91 MonoClass *res;
92 MonoImage *module;
94 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
96 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
97 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
99 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
100 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
101 case MONO_RESOLTION_SCOPE_MODULE:
102 if (!idx)
103 g_error ("null ResolutionScope not yet handled");
104 /* a typedef in disguise */
105 return mono_class_from_name (image, nspace, name);
106 case MONO_RESOLTION_SCOPE_MODULEREF:
107 module = mono_image_load_module (image, idx);
108 if (module)
109 return mono_class_from_name (module, nspace, name);
110 else {
111 char *msg = g_strdup_printf ("%s%s%s", nspace, nspace [0] ? "." : "", name);
112 char *human_name;
114 human_name = mono_stringify_assembly_name (&image->assembly->aname);
115 mono_loader_set_error_type_load (msg, human_name);
116 g_free (msg);
117 g_free (human_name);
119 return NULL;
121 case MONO_RESOLTION_SCOPE_TYPEREF: {
122 MonoClass *enclosing = mono_class_from_typeref (image, MONO_TOKEN_TYPE_REF | idx);
123 GList *tmp;
125 if (enclosing->nested_classes_inited && enclosing->ext) {
126 /* Micro-optimization: don't scan the metadata tables if enclosing is already inited */
127 for (tmp = enclosing->ext->nested_classes; tmp; tmp = tmp->next) {
128 res = tmp->data;
129 if (strcmp (res->name, name) == 0)
130 return res;
132 } else {
133 /* Don't call mono_class_init as we might've been called by it recursively */
134 int i = mono_metadata_nesting_typedef (enclosing->image, enclosing->type_token, 1);
135 while (i) {
136 guint32 class_nested = mono_metadata_decode_row_col (&enclosing->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, MONO_NESTED_CLASS_NESTED);
137 guint32 string_offset = mono_metadata_decode_row_col (&enclosing->image->tables [MONO_TABLE_TYPEDEF], class_nested - 1, MONO_TYPEDEF_NAME);
138 const char *nname = mono_metadata_string_heap (enclosing->image, string_offset);
140 if (strcmp (nname, name) == 0)
141 return mono_class_create_from_typedef (enclosing->image, MONO_TOKEN_TYPE_DEF | class_nested);
143 i = mono_metadata_nesting_typedef (enclosing->image, enclosing->type_token, i + 1);
146 g_warning ("TypeRef ResolutionScope not yet handled (%d) for %s.%s in image %s", idx, nspace, name, image->name);
147 return NULL;
149 case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
150 break;
153 if (!image->references || !image->references [idx - 1])
154 mono_assembly_load_reference (image, idx - 1);
155 g_assert (image->references [idx - 1]);
157 /* If the assembly did not load, register this as a type load exception */
158 if (image->references [idx - 1] == REFERENCE_MISSING){
159 MonoAssemblyName aname;
160 char *human_name;
162 mono_assembly_get_assemblyref (image, idx - 1, &aname);
163 human_name = mono_stringify_assembly_name (&aname);
164 mono_loader_set_error_assembly_load (human_name, image->assembly->ref_only);
165 g_free (human_name);
167 return NULL;
170 return mono_class_from_name (image->references [idx - 1]->image, nspace, name);
174 static void *
175 mono_image_memdup (MonoImage *image, void *data, guint size)
177 void *res = mono_image_alloc (image, size);
178 memcpy (res, data, size);
179 return res;
182 /* Copy everything mono_metadata_free_array free. */
183 MonoArrayType *
184 mono_dup_array_type (MonoImage *image, MonoArrayType *a)
186 if (image) {
187 a = mono_image_memdup (image, a, sizeof (MonoArrayType));
188 if (a->sizes)
189 a->sizes = mono_image_memdup (image, a->sizes, a->numsizes * sizeof (int));
190 if (a->lobounds)
191 a->lobounds = mono_image_memdup (image, a->lobounds, a->numlobounds * sizeof (int));
192 } else {
193 a = g_memdup (a, sizeof (MonoArrayType));
194 if (a->sizes)
195 a->sizes = g_memdup (a->sizes, a->numsizes * sizeof (int));
196 if (a->lobounds)
197 a->lobounds = g_memdup (a->lobounds, a->numlobounds * sizeof (int));
199 return a;
202 /* Copy everything mono_metadata_free_method_signature free. */
203 MonoMethodSignature*
204 mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig)
206 int i;
208 sig = mono_metadata_signature_dup_full (image, sig);
210 sig->ret = mono_metadata_type_dup (image, sig->ret);
211 for (i = 0; i < sig->param_count; ++i)
212 sig->params [i] = mono_metadata_type_dup (image, sig->params [i]);
214 return sig;
217 static void
218 _mono_type_get_assembly_name (MonoClass *klass, GString *str)
220 MonoAssembly *ta = klass->image->assembly;
222 g_string_append_printf (
223 str, ", %s, Version=%d.%d.%d.%d, Culture=%s, PublicKeyToken=%s%s",
224 ta->aname.name,
225 ta->aname.major, ta->aname.minor, ta->aname.build, ta->aname.revision,
226 ta->aname.culture && *ta->aname.culture? ta->aname.culture: "neutral",
227 ta->aname.public_key_token [0] ? (char *)ta->aname.public_key_token : "null",
228 (ta->aname.flags & ASSEMBLYREF_RETARGETABLE_FLAG) ? ", Retargetable=Yes" : "");
231 static inline void
232 mono_type_name_check_byref (MonoType *type, GString *str)
234 if (type->byref)
235 g_string_append_c (str, '&');
238 static void
239 mono_type_get_name_recurse (MonoType *type, GString *str, gboolean is_recursed,
240 MonoTypeNameFormat format)
242 MonoClass *klass;
244 switch (type->type) {
245 case MONO_TYPE_ARRAY: {
246 int i, rank = type->data.array->rank;
247 MonoTypeNameFormat nested_format;
249 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
250 MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
252 mono_type_get_name_recurse (
253 &type->data.array->eklass->byval_arg, str, FALSE, nested_format);
254 g_string_append_c (str, '[');
255 if (rank == 1)
256 g_string_append_c (str, '*');
257 for (i = 1; i < rank; i++)
258 g_string_append_c (str, ',');
259 g_string_append_c (str, ']');
261 mono_type_name_check_byref (type, str);
263 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
264 _mono_type_get_assembly_name (type->data.array->eklass, str);
265 break;
267 case MONO_TYPE_SZARRAY: {
268 MonoTypeNameFormat nested_format;
270 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
271 MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
273 mono_type_get_name_recurse (
274 &type->data.klass->byval_arg, str, FALSE, nested_format);
275 g_string_append (str, "[]");
277 mono_type_name_check_byref (type, str);
279 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
280 _mono_type_get_assembly_name (type->data.klass, str);
281 break;
283 case MONO_TYPE_PTR: {
284 MonoTypeNameFormat nested_format;
286 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
287 MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
289 mono_type_get_name_recurse (
290 type->data.type, str, FALSE, nested_format);
291 g_string_append_c (str, '*');
293 mono_type_name_check_byref (type, str);
295 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
296 _mono_type_get_assembly_name (mono_class_from_mono_type (type->data.type), str);
297 break;
299 case MONO_TYPE_VAR:
300 case MONO_TYPE_MVAR:
301 g_assert (type->data.generic_param->name);
302 g_string_append (str, type->data.generic_param->name);
304 mono_type_name_check_byref (type, str);
306 break;
307 default:
308 klass = mono_class_from_mono_type (type);
309 if (klass->nested_in) {
310 mono_type_get_name_recurse (
311 &klass->nested_in->byval_arg, str, TRUE, format);
312 if (format == MONO_TYPE_NAME_FORMAT_IL)
313 g_string_append_c (str, '.');
314 else
315 g_string_append_c (str, '+');
316 } else if (*klass->name_space) {
317 g_string_append (str, klass->name_space);
318 g_string_append_c (str, '.');
320 if (format == MONO_TYPE_NAME_FORMAT_IL) {
321 char *s = strchr (klass->name, '`');
322 int len = s ? s - klass->name : strlen (klass->name);
324 g_string_append_len (str, klass->name, len);
325 } else
326 g_string_append (str, klass->name);
327 if (is_recursed)
328 break;
329 if (klass->generic_class) {
330 MonoGenericClass *gclass = klass->generic_class;
331 MonoGenericInst *inst = gclass->context.class_inst;
332 MonoTypeNameFormat nested_format;
333 int i;
335 nested_format = format == MONO_TYPE_NAME_FORMAT_FULL_NAME ?
336 MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED : format;
338 if (format == MONO_TYPE_NAME_FORMAT_IL)
339 g_string_append_c (str, '<');
340 else
341 g_string_append_c (str, '[');
342 for (i = 0; i < inst->type_argc; i++) {
343 MonoType *t = inst->type_argv [i];
345 if (i)
346 g_string_append_c (str, ',');
347 if ((nested_format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
348 (t->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
349 g_string_append_c (str, '[');
350 mono_type_get_name_recurse (inst->type_argv [i], str, FALSE, nested_format);
351 if ((nested_format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
352 (t->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
353 g_string_append_c (str, ']');
355 if (format == MONO_TYPE_NAME_FORMAT_IL)
356 g_string_append_c (str, '>');
357 else
358 g_string_append_c (str, ']');
359 } else if (klass->generic_container &&
360 (format != MONO_TYPE_NAME_FORMAT_FULL_NAME) &&
361 (format != MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)) {
362 int i;
364 if (format == MONO_TYPE_NAME_FORMAT_IL)
365 g_string_append_c (str, '<');
366 else
367 g_string_append_c (str, '[');
368 for (i = 0; i < klass->generic_container->type_argc; i++) {
369 if (i)
370 g_string_append_c (str, ',');
371 g_string_append (str, klass->generic_container->type_params [i].name);
373 if (format == MONO_TYPE_NAME_FORMAT_IL)
374 g_string_append_c (str, '>');
375 else
376 g_string_append_c (str, ']');
379 mono_type_name_check_byref (type, str);
381 if ((format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
382 (type->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
383 _mono_type_get_assembly_name (klass, str);
384 break;
389 * mono_type_get_name:
390 * @type: a type
391 * @format: the format for the return string.
394 * Returns: the string representation in a number of formats:
396 * if format is MONO_TYPE_NAME_FORMAT_REFLECTION, the return string is
397 * returned in the formatrequired by System.Reflection, this is the
398 * inverse of mono_reflection_parse_type ().
400 * if format is MONO_TYPE_NAME_FORMAT_IL, it returns a syntax that can
401 * be used by the IL assembler.
403 * if format is MONO_TYPE_NAME_FORMAT_FULL_NAME
405 * if format is MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED
407 char*
408 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format)
410 GString* result;
412 result = g_string_new ("");
414 mono_type_get_name_recurse (type, result, FALSE, format);
416 return g_string_free (result, FALSE);
420 * mono_type_get_full_name:
421 * @class: a class
423 * Returns: the string representation for type as required by System.Reflection.
424 * The inverse of mono_reflection_parse_type ().
426 char *
427 mono_type_get_full_name (MonoClass *class)
429 return mono_type_get_name_full (mono_class_get_type (class), MONO_TYPE_NAME_FORMAT_REFLECTION);
433 * mono_type_get_name:
434 * @type: a type
436 * Returns: the string representation for type as it would be represented in IL code.
438 char*
439 mono_type_get_name (MonoType *type)
441 return mono_type_get_name_full (type, MONO_TYPE_NAME_FORMAT_IL);
445 * mono_type_get_underlying_type:
446 * @type: a type
448 * Returns: the MonoType for the underlying integer type if @type
449 * is an enum and byref is false, otherwise the type itself.
451 MonoType*
452 mono_type_get_underlying_type (MonoType *type)
454 if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype && !type->byref)
455 return mono_class_enum_basetype (type->data.klass);
456 if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype && !type->byref)
457 return mono_class_enum_basetype (type->data.generic_class->container_class);
458 return type;
462 * mono_class_is_open_constructed_type:
463 * @type: a type
465 * Returns TRUE if type represents a generics open constructed type
466 * (not all the type parameters required for the instantiation have
467 * been provided).
469 gboolean
470 mono_class_is_open_constructed_type (MonoType *t)
472 switch (t->type) {
473 case MONO_TYPE_VAR:
474 case MONO_TYPE_MVAR:
475 return TRUE;
476 case MONO_TYPE_SZARRAY:
477 return mono_class_is_open_constructed_type (&t->data.klass->byval_arg);
478 case MONO_TYPE_ARRAY:
479 return mono_class_is_open_constructed_type (&t->data.array->eklass->byval_arg);
480 case MONO_TYPE_PTR:
481 return mono_class_is_open_constructed_type (t->data.type);
482 case MONO_TYPE_GENERICINST:
483 return t->data.generic_class->context.class_inst->is_open;
484 default:
485 return FALSE;
489 static MonoType*
490 inflate_generic_type (MonoImage *image, MonoType *type, MonoGenericContext *context)
492 switch (type->type) {
493 case MONO_TYPE_MVAR: {
494 MonoType *nt;
495 int num = type->data.generic_param->num;
496 MonoGenericInst *inst = context->method_inst;
497 if (!inst || !inst->type_argv)
498 return NULL;
499 if (num >= inst->type_argc)
500 g_error ("MVAR %d (%s) cannot be expanded in this context with %d instantiations", num, type->data.generic_param->name, inst->type_argc);
503 * Note that the VAR/MVAR cases are different from the rest. The other cases duplicate @type,
504 * while the VAR/MVAR duplicates a type from the context. So, we need to ensure that the
505 * ->byref and ->attrs from @type are propagated to the returned type.
507 nt = mono_metadata_type_dup (image, inst->type_argv [num]);
508 nt->byref = type->byref;
509 nt->attrs = type->attrs;
510 return nt;
512 case MONO_TYPE_VAR: {
513 MonoType *nt;
514 int num = type->data.generic_param->num;
515 MonoGenericInst *inst = context->class_inst;
516 if (!inst)
517 return NULL;
518 if (num >= inst->type_argc)
519 g_error ("VAR %d (%s) cannot be expanded in this context with %d instantiations", num, type->data.generic_param->name, inst->type_argc);
520 nt = mono_metadata_type_dup (image, inst->type_argv [num]);
521 nt->byref = type->byref;
522 nt->attrs = type->attrs;
523 return nt;
525 case MONO_TYPE_SZARRAY: {
526 MonoClass *eclass = type->data.klass;
527 MonoType *nt, *inflated = inflate_generic_type (NULL, &eclass->byval_arg, context);
528 if (!inflated)
529 return NULL;
530 nt = mono_metadata_type_dup (image, type);
531 nt->data.klass = mono_class_from_mono_type (inflated);
532 mono_metadata_free_type (inflated);
533 return nt;
535 case MONO_TYPE_ARRAY: {
536 MonoClass *eclass = type->data.array->eklass;
537 MonoType *nt, *inflated = inflate_generic_type (NULL, &eclass->byval_arg, context);
538 if (!inflated)
539 return NULL;
540 nt = mono_metadata_type_dup (image, type);
541 nt->data.array = g_memdup (nt->data.array, sizeof (MonoArrayType));
542 nt->data.array->eklass = mono_class_from_mono_type (inflated);
543 mono_metadata_free_type (inflated);
544 return nt;
546 case MONO_TYPE_GENERICINST: {
547 MonoGenericClass *gclass = type->data.generic_class;
548 MonoGenericInst *inst;
549 MonoType *nt;
550 if (!gclass->context.class_inst->is_open)
551 return NULL;
553 inst = mono_metadata_inflate_generic_inst (gclass->context.class_inst, context);
554 if (inst != gclass->context.class_inst)
555 gclass = mono_metadata_lookup_generic_class (gclass->container_class, inst, gclass->is_dynamic);
557 if (gclass == type->data.generic_class)
558 return NULL;
560 nt = mono_metadata_type_dup (image, type);
561 nt->data.generic_class = gclass;
562 return nt;
564 case MONO_TYPE_CLASS:
565 case MONO_TYPE_VALUETYPE: {
566 MonoClass *klass = type->data.klass;
567 MonoGenericContainer *container = klass->generic_container;
568 MonoGenericInst *inst;
569 MonoGenericClass *gclass = NULL;
570 MonoType *nt;
572 if (!container)
573 return NULL;
575 /* We can't use context->class_inst directly, since it can have more elements */
576 inst = mono_metadata_inflate_generic_inst (container->context.class_inst, context);
577 if (inst == container->context.class_inst)
578 return NULL;
580 gclass = mono_metadata_lookup_generic_class (klass, inst, klass->image->dynamic);
582 nt = mono_metadata_type_dup (image, type);
583 nt->type = MONO_TYPE_GENERICINST;
584 nt->data.generic_class = gclass;
585 return nt;
587 default:
588 return NULL;
590 return NULL;
593 MonoGenericContext *
594 mono_generic_class_get_context (MonoGenericClass *gclass)
596 return &gclass->context;
599 MonoGenericContext *
600 mono_class_get_context (MonoClass *class)
602 return class->generic_class ? mono_generic_class_get_context (class->generic_class) : NULL;
606 * mono_class_get_generic_container:
608 * Return the generic container of KLASS which should be a generic type definition.
610 MonoGenericContainer*
611 mono_class_get_generic_container (MonoClass *klass)
613 g_assert (klass->is_generic);
615 return klass->generic_container;
619 * mono_class_get_generic_class:
621 * Return the MonoGenericClass of KLASS, which should be a generic instance.
623 MonoGenericClass*
624 mono_class_get_generic_class (MonoClass *klass)
626 g_assert (klass->is_inflated);
628 return klass->generic_class;
632 * mono_class_inflate_generic_type_with_mempool:
633 * @mempool: a mempool
634 * @type: a type
635 * @context: a generics context
637 * The same as mono_class_inflate_generic_type, but allocates the MonoType
638 * from mempool if it is non-NULL. If it is NULL, the MonoType is
639 * allocated on the heap and is owned by the caller.
640 * The returned type can potentially be the same as TYPE, so it should not be
641 * modified by the caller, and it should be freed using mono_metadata_free_type ().
643 MonoType*
644 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context)
646 MonoType *inflated = NULL;
648 if (context)
649 inflated = inflate_generic_type (image, type, context);
651 if (!inflated) {
652 MonoType *shared = mono_metadata_get_shared_type (type);
654 if (shared) {
655 return shared;
656 } else {
657 return mono_metadata_type_dup (image, type);
661 mono_stats.inflated_type_count++;
662 return inflated;
666 * mono_class_inflate_generic_type:
667 * @type: a type
668 * @context: a generics context
670 * If @type is a generic type and @context is not NULL, instantiate it using the
671 * generics context @context.
673 * Returns: the instantiated type or a copy of @type. The returned MonoType is allocated
674 * on the heap and is owned by the caller.
676 MonoType*
677 mono_class_inflate_generic_type (MonoType *type, MonoGenericContext *context)
679 return mono_class_inflate_generic_type_with_mempool (NULL, type, context);
683 * mono_class_inflate_generic_type_no_copy:
685 * Same as inflate_generic_type_with_mempool, but return TYPE if no inflation
686 * was done.
688 static MonoType*
689 mono_class_inflate_generic_type_no_copy (MonoImage *image, MonoType *type, MonoGenericContext *context)
691 MonoType *inflated = NULL;
693 if (context)
694 inflated = inflate_generic_type (image, type, context);
696 if (!inflated)
697 return type;
699 mono_stats.inflated_type_count++;
700 return inflated;
704 * mono_class_inflate_generic_class:
706 * Inflate the class GKLASS with CONTEXT.
708 MonoClass*
709 mono_class_inflate_generic_class (MonoClass *gklass, MonoGenericContext *context)
711 MonoClass *res;
712 MonoType *inflated;
714 inflated = mono_class_inflate_generic_type (&gklass->byval_arg, context);
716 res = mono_class_from_mono_type (inflated);
717 mono_metadata_free_type (inflated);
719 return res;
722 static MonoGenericContext
723 inflate_generic_context (MonoGenericContext *context, MonoGenericContext *inflate_with)
725 MonoGenericInst *class_inst = NULL;
726 MonoGenericInst *method_inst = NULL;
727 MonoGenericContext res;
729 if (context->class_inst)
730 class_inst = mono_metadata_inflate_generic_inst (context->class_inst, inflate_with);
732 if (context->method_inst)
733 method_inst = mono_metadata_inflate_generic_inst (context->method_inst, inflate_with);
735 res.class_inst = class_inst;
736 res.method_inst = method_inst;
738 return res;
742 * mono_class_inflate_generic_method:
743 * @method: a generic method
744 * @context: a generics context
746 * Instantiate the generic method @method using the generics context @context.
748 * Returns: the new instantiated method
750 MonoMethod *
751 mono_class_inflate_generic_method (MonoMethod *method, MonoGenericContext *context)
753 return mono_class_inflate_generic_method_full (method, NULL, context);
757 * mono_class_inflate_generic_method:
759 * Instantiate method @method with the generic context @context.
760 * BEWARE: All non-trivial fields are invalid, including klass, signature, and header.
761 * Use mono_method_signature () and mono_method_get_header () to get the correct values.
763 MonoMethod*
764 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context)
766 MonoMethod *result;
767 MonoMethodInflated *iresult, *cached;
768 MonoMethodSignature *sig;
769 MonoGenericContext tmp_context;
770 gboolean is_mb_open = FALSE;
772 /* The `method' has already been instantiated before => we need to peel out the instantiation and create a new context */
773 while (method->is_inflated) {
774 MonoGenericContext *method_context = mono_method_get_context (method);
775 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
777 tmp_context = inflate_generic_context (method_context, context);
778 context = &tmp_context;
780 if (mono_metadata_generic_context_equal (method_context, context))
781 return method;
783 method = imethod->declaring;
786 if (!method->is_generic && !method->klass->generic_container)
787 return method;
790 * The reason for this hack is to fix the behavior of inflating generic methods that come from a MethodBuilder.
791 * What happens is that instantiating a generic MethodBuilder with its own arguments should create a diferent object.
792 * This is opposite to the way non-SRE MethodInfos behave.
794 * This happens, for example, when we want to emit a recursive generic method. Given the following C# code:
796 * void Example<T> () {
797 * Example<T> ();
800 * In Example, the method token must be encoded as: "void Example<!!0>()"
802 * The reference to the first generic argument, "!!0", must be explicit otherwise it won't be inflated
803 * properly. To get that we need to inflate the MethodBuilder with its own arguments.
805 * On the other hand, inflating a non-SRE generic method with its own arguments should
806 * return itself. For example:
808 * MethodInfo m = ... //m is a generic method definition
809 * MethodInfo res = m.MakeGenericMethod (m.GetGenericArguments ());
810 * res == m
812 * To allow such scenarios we must allow inflation of MethodBuilder to happen in a diferent way than
813 * what happens with regular methods.
815 * There is one last touch to this madness, once a TypeBuilder is finished, IOW CreateType() is called,
816 * everything should behave like a regular type or method.
819 is_mb_open = method->is_generic &&
820 method->klass->image->dynamic && !method->klass->wastypebuilder && /* that is a MethodBuilder from an unfinished TypeBuilder */
821 context->method_inst == mono_method_get_generic_container (method)->context.method_inst; /* and it's been instantiated with its own arguments. */
823 iresult = g_new0 (MonoMethodInflated, 1);
824 iresult->context = *context;
825 iresult->declaring = method;
826 iresult->method.method.is_mb_open = is_mb_open;
828 if (!context->method_inst && method->is_generic)
829 iresult->context.method_inst = mono_method_get_generic_container (method)->context.method_inst;
831 if (!context->class_inst) {
832 g_assert (!iresult->declaring->klass->generic_class);
833 if (iresult->declaring->klass->generic_container)
834 iresult->context.class_inst = iresult->declaring->klass->generic_container->context.class_inst;
835 else if (iresult->declaring->klass->generic_class)
836 iresult->context.class_inst = iresult->declaring->klass->generic_class->context.class_inst;
839 mono_loader_lock ();
840 cached = mono_method_inflated_lookup (iresult, FALSE);
841 if (cached) {
842 mono_loader_unlock ();
843 g_free (iresult);
844 return (MonoMethod*)cached;
847 mono_stats.inflated_method_count++;
849 inflated_methods_size += sizeof (MonoMethodInflated);
851 sig = mono_method_signature (method);
852 if (sig->pinvoke) {
853 memcpy (&iresult->method.pinvoke, method, sizeof (MonoMethodPInvoke));
854 } else {
855 memcpy (&iresult->method.normal, method, sizeof (MonoMethodNormal));
856 iresult->method.normal.header = NULL;
859 result = (MonoMethod *) iresult;
860 result->is_inflated = TRUE;
861 result->is_generic = FALSE;
862 result->signature = NULL;
863 result->is_mb_open = is_mb_open;
865 if (!context->method_inst) {
866 /* Set the generic_container of the result to the generic_container of method */
867 MonoGenericContainer *generic_container = mono_method_get_generic_container (method);
869 if (generic_container) {
870 result->is_generic = 1;
871 mono_method_set_generic_container (result, generic_container);
875 if (!klass_hint || !klass_hint->generic_class ||
876 klass_hint->generic_class->container_class != method->klass ||
877 klass_hint->generic_class->context.class_inst != context->class_inst)
878 klass_hint = NULL;
880 if (method->klass->generic_container)
881 result->klass = klass_hint;
883 if (!result->klass) {
884 MonoType *inflated = inflate_generic_type (NULL, &method->klass->byval_arg, context);
885 result->klass = inflated ? mono_class_from_mono_type (inflated) : method->klass;
886 if (inflated)
887 mono_metadata_free_type (inflated);
890 mono_method_inflated_lookup (iresult, TRUE);
891 mono_loader_unlock ();
892 return result;
896 * mono_get_inflated_method:
898 * Obsolete. We keep it around since it's mentioned in the public API.
900 MonoMethod*
901 mono_get_inflated_method (MonoMethod *method)
903 return method;
907 * mono_method_get_context_general:
908 * @method: a method
909 * @uninflated: handle uninflated methods?
911 * Returns the generic context of a method or NULL if it doesn't have
912 * one. For an inflated method that's the context stored in the
913 * method. Otherwise it's in the method's generic container or in the
914 * generic container of the method's class.
916 MonoGenericContext*
917 mono_method_get_context_general (MonoMethod *method, gboolean uninflated)
919 if (method->is_inflated) {
920 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
921 return &imethod->context;
923 if (!uninflated)
924 return NULL;
925 if (method->is_generic)
926 return &(mono_method_get_generic_container (method)->context);
927 if (method->klass->generic_container)
928 return &method->klass->generic_container->context;
929 return NULL;
933 * mono_method_get_context:
934 * @method: a method
936 * Returns the generic context for method if it's inflated, otherwise
937 * NULL.
939 MonoGenericContext*
940 mono_method_get_context (MonoMethod *method)
942 return mono_method_get_context_general (method, FALSE);
946 * mono_method_get_generic_container:
948 * Returns the generic container of METHOD, which should be a generic method definition.
949 * Returns NULL if METHOD is not a generic method definition.
950 * LOCKING: Acquires the loader lock.
952 MonoGenericContainer*
953 mono_method_get_generic_container (MonoMethod *method)
955 MonoGenericContainer *container;
957 if (!method->is_generic)
958 return NULL;
960 container = mono_image_property_lookup (method->klass->image, method, MONO_METHOD_PROP_GENERIC_CONTAINER);
961 g_assert (container);
963 return container;
967 * mono_method_set_generic_container:
969 * Sets the generic container of METHOD to CONTAINER.
970 * LOCKING: Acquires the loader lock.
972 void
973 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container)
975 g_assert (method->is_generic);
977 mono_image_property_insert (method->klass->image, method, MONO_METHOD_PROP_GENERIC_CONTAINER, container);
980 /**
981 * mono_class_find_enum_basetype:
982 * @class: The enum class
984 * Determine the basetype of an enum by iterating through its fields. We do this
985 * in a separate function since it is cheaper than calling mono_class_setup_fields.
987 static MonoType*
988 mono_class_find_enum_basetype (MonoClass *class)
990 MonoImage *m = class->image;
991 const int top = class->field.count;
992 int i;
994 g_assert (class->enumtype);
997 * Fetch all the field information.
999 for (i = 0; i < top; i++){
1000 const char *sig;
1001 guint32 cols [MONO_FIELD_SIZE];
1002 int idx = class->field.first + i;
1003 MonoGenericContainer *container = NULL;
1004 MonoType *ftype;
1006 /* class->field.first and idx points into the fieldptr table */
1007 mono_metadata_decode_table_row (m, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
1008 sig = mono_metadata_blob_heap (m, cols [MONO_FIELD_SIGNATURE]);
1009 mono_metadata_decode_value (sig, &sig);
1010 /* FIELD signature == 0x06 */
1011 g_assert (*sig == 0x06);
1012 if (class->generic_container)
1013 container = class->generic_container;
1014 else if (class->generic_class) {
1015 MonoClass *gklass = class->generic_class->container_class;
1017 container = gklass->generic_container;
1018 g_assert (container);
1020 ftype = mono_metadata_parse_type_full (m, container, MONO_PARSE_FIELD, cols [MONO_FIELD_FLAGS], sig + 1, &sig);
1021 if (!ftype)
1022 return NULL;
1023 if (class->generic_class) {
1024 //FIXME do we leak here?
1025 ftype = mono_class_inflate_generic_type (ftype, mono_class_get_context (class));
1026 ftype->attrs = cols [MONO_FIELD_FLAGS];
1029 if (class->enumtype && !(cols [MONO_FIELD_FLAGS] & FIELD_ATTRIBUTE_STATIC))
1030 return ftype;
1033 return NULL;
1036 /**
1037 * mono_class_setup_fields:
1038 * @class: The class to initialize
1040 * Initializes the class->fields.
1041 * LOCKING: Assumes the loader lock is held.
1043 static void
1044 mono_class_setup_fields (MonoClass *class)
1046 MonoImage *m = class->image;
1047 int top = class->field.count;
1048 guint32 layout = class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK;
1049 int i, blittable = TRUE;
1050 guint32 real_size = 0;
1051 guint32 packing_size = 0;
1052 gboolean explicit_size;
1053 MonoClassField *field;
1054 MonoGenericContainer *container = NULL;
1055 MonoClass *gklass = NULL;
1057 if (class->size_inited)
1058 return;
1060 if (class->generic_class && class->generic_class->container_class->image->dynamic && !class->generic_class->container_class->wastypebuilder) {
1062 * This happens when a generic instance of an unfinished generic typebuilder
1063 * is used as an element type for creating an array type. We can't initialize
1064 * the fields of this class using the fields of gklass, since gklass is not
1065 * finished yet, fields could be added to it later.
1067 return;
1070 if (class->generic_class) {
1071 MonoClass *gklass = class->generic_class->container_class;
1072 mono_class_setup_fields (gklass);
1073 top = gklass->field.count;
1074 class->field.count = gklass->field.count;
1077 class->instance_size = 0;
1078 if (!class->rank)
1079 class->sizes.class_size = 0;
1081 if (class->parent) {
1082 /* For generic instances, class->parent might not have been initialized */
1083 mono_class_init (class->parent);
1084 if (!class->parent->size_inited)
1085 mono_class_setup_fields (class->parent);
1086 class->instance_size += class->parent->instance_size;
1087 class->min_align = class->parent->min_align;
1088 /* we use |= since it may have been set already */
1089 class->has_references |= class->parent->has_references;
1090 blittable = class->parent->blittable;
1091 } else {
1092 class->instance_size = sizeof (MonoObject);
1093 class->min_align = 1;
1096 if (class->simd_type)
1097 class->min_align = 16;
1099 /* Get the real size */
1100 explicit_size = mono_metadata_packing_from_typedef (class->image, class->type_token, &packing_size, &real_size);
1102 if (explicit_size) {
1103 g_assert ((packing_size & 0xfffffff0) == 0);
1104 class->packing_size = packing_size;
1105 real_size += class->instance_size;
1108 if (!top) {
1109 if (explicit_size && real_size) {
1110 class->instance_size = MAX (real_size, class->instance_size);
1112 class->size_inited = 1;
1113 class->blittable = blittable;
1114 return;
1117 if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT)
1118 blittable = FALSE;
1120 /* Prevent infinite loops if the class references itself */
1121 class->size_inited = 1;
1123 class->fields = mono_image_alloc0 (class->image, sizeof (MonoClassField) * top);
1125 if (class->generic_container) {
1126 container = class->generic_container;
1127 } else if (class->generic_class) {
1128 gklass = class->generic_class->container_class;
1129 container = gklass->generic_container;
1130 g_assert (container);
1132 mono_class_setup_fields (gklass);
1134 if (gklass->exception_type) {
1135 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1136 return;
1141 * Fetch all the field information.
1143 for (i = 0; i < top; i++){
1144 int idx = class->field.first + i;
1145 field = &class->fields [i];
1147 field->parent = class;
1149 if (class->generic_class) {
1150 MonoClassField *gfield = &gklass->fields [i];
1152 field->name = mono_field_get_name (gfield);
1153 /*This memory must come from the image mempool as we don't have a chance to free it.*/
1154 field->type = mono_class_inflate_generic_type_no_copy (class->image, gfield->type, mono_class_get_context (class));
1155 g_assert (field->type->attrs == gfield->type->attrs);
1156 if (mono_field_is_deleted (field))
1157 continue;
1158 field->offset = gfield->offset;
1159 } else {
1160 const char *sig;
1161 guint32 cols [MONO_FIELD_SIZE];
1163 /* class->field.first and idx points into the fieldptr table */
1164 mono_metadata_decode_table_row (m, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
1165 /* The name is needed for fieldrefs */
1166 field->name = mono_metadata_string_heap (m, cols [MONO_FIELD_NAME]);
1167 sig = mono_metadata_blob_heap (m, cols [MONO_FIELD_SIGNATURE]);
1168 mono_metadata_decode_value (sig, &sig);
1169 /* FIELD signature == 0x06 */
1170 g_assert (*sig == 0x06);
1171 field->type = mono_metadata_parse_type_full (m, container, MONO_PARSE_FIELD, cols [MONO_FIELD_FLAGS], sig + 1, &sig);
1172 if (!field->type) {
1173 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1174 break;
1176 if (mono_field_is_deleted (field))
1177 continue;
1178 if (layout == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
1179 guint32 offset;
1180 mono_metadata_field_info (m, idx, &offset, NULL, NULL);
1181 field->offset = offset;
1182 if (field->offset == (guint32)-1 && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
1183 g_warning ("%s not initialized correctly (missing field layout info for %s)",
1184 class->name, mono_field_get_name (field));
1188 /* Only do these checks if we still think this type is blittable */
1189 if (blittable && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1190 if (field->type->byref || MONO_TYPE_IS_REFERENCE (field->type)) {
1191 blittable = FALSE;
1192 } else {
1193 MonoClass *field_class = mono_class_from_mono_type (field->type);
1194 if (field_class)
1195 mono_class_setup_fields (field_class);
1196 if (!field_class || !field_class->blittable)
1197 blittable = FALSE;
1201 if (class->enumtype && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1202 class->cast_class = class->element_class = mono_class_from_mono_type (field->type);
1203 blittable = class->element_class->blittable;
1206 /* The def_value of fields is compute lazily during vtable creation */
1209 if (class == mono_defaults.string_class)
1210 blittable = FALSE;
1212 class->blittable = blittable;
1214 if (class->enumtype && !mono_class_enum_basetype (class)) {
1215 if (!((strcmp (class->name, "Enum") == 0) && (strcmp (class->name_space, "System") == 0)))
1216 G_BREAKPOINT ();
1218 if (explicit_size && real_size) {
1219 class->instance_size = MAX (real_size, class->instance_size);
1222 if (class->exception_type)
1223 return;
1224 mono_class_layout_fields (class);
1227 /**
1228 * mono_class_setup_fields_locking:
1229 * @class: The class to initialize
1231 * Initializes the class->fields array of fields.
1232 * Aquires the loader lock.
1234 static void
1235 mono_class_setup_fields_locking (MonoClass *class)
1237 mono_loader_lock ();
1238 mono_class_setup_fields (class);
1239 mono_loader_unlock ();
1243 * mono_class_has_references:
1245 * Returns whenever @klass->has_references is set, initializing it if needed.
1246 * Aquires the loader lock.
1248 static gboolean
1249 mono_class_has_references (MonoClass *klass)
1251 if (klass->init_pending) {
1252 /* Be conservative */
1253 return TRUE;
1254 } else {
1255 mono_class_init (klass);
1257 return klass->has_references;
1261 /* useful until we keep track of gc-references in corlib etc. */
1262 #ifdef HAVE_SGEN_GC
1263 #define IS_GC_REFERENCE(t) FALSE
1264 #else
1265 #define IS_GC_REFERENCE(t) ((t)->type == MONO_TYPE_U && class->image == mono_defaults.corlib)
1266 #endif
1269 * mono_type_get_basic_type_from_generic:
1270 * @type: a type
1272 * Returns a closed type corresponding to the possibly open type
1273 * passed to it.
1275 MonoType*
1276 mono_type_get_basic_type_from_generic (MonoType *type)
1278 /* When we do generic sharing we let type variables stand for reference types. */
1279 if (!type->byref && (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR))
1280 return &mono_defaults.object_class->byval_arg;
1281 return type;
1285 * mono_class_layout_fields:
1286 * @class: a class
1288 * Compute the placement of fields inside an object or struct, according to
1289 * the layout rules and set the following fields in @class:
1290 * - has_references (if the class contains instance references firled or structs that contain references)
1291 * - has_static_refs (same, but for static fields)
1292 * - instance_size (size of the object in memory)
1293 * - class_size (size needed for the static fields)
1294 * - size_inited (flag set when the instance_size is set)
1296 * LOCKING: this is supposed to be called with the loader lock held.
1298 void
1299 mono_class_layout_fields (MonoClass *class)
1301 int i;
1302 const int top = class->field.count;
1303 guint32 layout = class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK;
1304 guint32 pass, passes, real_size;
1305 gboolean gc_aware_layout = FALSE;
1306 MonoClassField *field;
1309 * When we do generic sharing we need to have layout
1310 * information for open generic classes (either with a generic
1311 * context containing type variables or with a generic
1312 * container), so we don't return in that case anymore.
1316 * Enable GC aware auto layout: in this mode, reference
1317 * fields are grouped together inside objects, increasing collector
1318 * performance.
1319 * Requires that all classes whose layout is known to native code be annotated
1320 * with [StructLayout (LayoutKind.Sequential)]
1321 * Value types have gc_aware_layout disabled by default, as per
1322 * what the default is for other runtimes.
1324 /* corlib is missing [StructLayout] directives in many places */
1325 if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT) {
1326 if (class->image != mono_defaults.corlib &&
1327 class->byval_arg.type != MONO_TYPE_VALUETYPE)
1328 gc_aware_layout = TRUE;
1329 /* from System.dll, used in metadata/process.h */
1330 if (strcmp (class->name, "ProcessStartInfo") == 0)
1331 gc_aware_layout = FALSE;
1334 /* Compute klass->has_references */
1336 * Process non-static fields first, since static fields might recursively
1337 * refer to the class itself.
1339 for (i = 0; i < top; i++) {
1340 MonoType *ftype;
1342 field = &class->fields [i];
1344 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1345 ftype = mono_type_get_underlying_type (field->type);
1346 ftype = mono_type_get_basic_type_from_generic (ftype);
1347 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype)))))
1348 class->has_references = TRUE;
1352 for (i = 0; i < top; i++) {
1353 MonoType *ftype;
1355 field = &class->fields [i];
1357 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1358 ftype = mono_type_get_underlying_type (field->type);
1359 ftype = mono_type_get_basic_type_from_generic (ftype);
1360 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype)))))
1361 class->has_static_refs = TRUE;
1365 for (i = 0; i < top; i++) {
1366 MonoType *ftype;
1368 field = &class->fields [i];
1370 ftype = mono_type_get_underlying_type (field->type);
1371 ftype = mono_type_get_basic_type_from_generic (ftype);
1372 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype))))) {
1373 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1374 class->has_static_refs = TRUE;
1375 else
1376 class->has_references = TRUE;
1381 * Compute field layout and total size (not considering static fields)
1384 switch (layout) {
1385 case TYPE_ATTRIBUTE_AUTO_LAYOUT:
1386 case TYPE_ATTRIBUTE_SEQUENTIAL_LAYOUT:
1388 if (gc_aware_layout)
1389 passes = 2;
1390 else
1391 passes = 1;
1393 if (layout != TYPE_ATTRIBUTE_AUTO_LAYOUT)
1394 passes = 1;
1396 if (class->parent)
1397 real_size = class->parent->instance_size;
1398 else
1399 real_size = sizeof (MonoObject);
1401 for (pass = 0; pass < passes; ++pass) {
1402 for (i = 0; i < top; i++){
1403 gint32 align;
1404 guint32 size;
1405 MonoType *ftype;
1407 field = &class->fields [i];
1409 if (mono_field_is_deleted (field))
1410 continue;
1411 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1412 continue;
1414 ftype = mono_type_get_underlying_type (field->type);
1415 ftype = mono_type_get_basic_type_from_generic (ftype);
1416 if (gc_aware_layout) {
1417 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype))))) {
1418 if (pass == 1)
1419 continue;
1420 } else {
1421 if (pass == 0)
1422 continue;
1426 if ((top == 1) && (class->instance_size == sizeof (MonoObject)) &&
1427 (strcmp (mono_field_get_name (field), "$PRIVATE$") == 0)) {
1428 /* This field is a hack inserted by MCS to empty structures */
1429 continue;
1432 size = mono_type_size (field->type, &align);
1434 /* FIXME (LAMESPEC): should we also change the min alignment according to pack? */
1435 align = class->packing_size ? MIN (class->packing_size, align): align;
1436 /* if the field has managed references, we need to force-align it
1437 * see bug #77788
1439 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype)))))
1440 align = MAX (align, sizeof (gpointer));
1442 class->min_align = MAX (align, class->min_align);
1443 field->offset = real_size;
1444 field->offset += align - 1;
1445 field->offset &= ~(align - 1);
1446 real_size = field->offset + size;
1449 class->instance_size = MAX (real_size, class->instance_size);
1451 if (class->instance_size & (class->min_align - 1)) {
1452 class->instance_size += class->min_align - 1;
1453 class->instance_size &= ~(class->min_align - 1);
1456 break;
1457 case TYPE_ATTRIBUTE_EXPLICIT_LAYOUT:
1458 real_size = 0;
1459 for (i = 0; i < top; i++) {
1460 gint32 align;
1461 guint32 size;
1462 MonoType *ftype;
1464 field = &class->fields [i];
1467 * There must be info about all the fields in a type if it
1468 * uses explicit layout.
1471 if (mono_field_is_deleted (field))
1472 continue;
1473 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1474 continue;
1476 size = mono_type_size (field->type, &align);
1477 class->min_align = MAX (align, class->min_align);
1480 * When we get here, field->offset is already set by the
1481 * loader (for either runtime fields or fields loaded from metadata).
1482 * The offset is from the start of the object: this works for both
1483 * classes and valuetypes.
1485 field->offset += sizeof (MonoObject);
1486 ftype = mono_type_get_underlying_type (field->type);
1487 ftype = mono_type_get_basic_type_from_generic (ftype);
1488 if (MONO_TYPE_IS_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype))))) {
1489 if (field->offset % sizeof (gpointer)) {
1490 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1495 * Calc max size.
1497 real_size = MAX (real_size, size + field->offset);
1499 class->instance_size = MAX (real_size, class->instance_size);
1500 break;
1503 if (layout != TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
1505 * For small structs, set min_align to at least the struct size to improve
1506 * performance, and since the JIT memset/memcpy code assumes this and generates
1507 * unaligned accesses otherwise. See #78990 for a testcase.
1509 if (class->instance_size <= sizeof (MonoObject) + sizeof (gpointer))
1510 class->min_align = MAX (class->min_align, class->instance_size - sizeof (MonoObject));
1513 class->size_inited = 1;
1516 * Compute static field layout and size
1518 for (i = 0; i < top; i++){
1519 gint32 align;
1520 guint32 size;
1522 field = &class->fields [i];
1524 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC) || field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
1525 continue;
1526 if (mono_field_is_deleted (field))
1527 continue;
1529 size = mono_type_size (field->type, &align);
1530 field->offset = class->sizes.class_size;
1531 field->offset += align - 1;
1532 field->offset &= ~(align - 1);
1533 class->sizes.class_size = field->offset + size;
1537 static MonoMethod*
1538 create_array_method (MonoClass *class, const char *name, MonoMethodSignature *sig)
1540 MonoMethod *method;
1542 method = (MonoMethod *) mono_image_alloc0 (class->image, sizeof (MonoMethodPInvoke));
1543 method->klass = class;
1544 method->flags = METHOD_ATTRIBUTE_PUBLIC;
1545 method->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
1546 method->signature = sig;
1547 method->name = name;
1548 method->slot = -1;
1549 /* .ctor */
1550 if (name [0] == '.') {
1551 method->flags |= METHOD_ATTRIBUTE_RT_SPECIAL_NAME | METHOD_ATTRIBUTE_SPECIAL_NAME;
1552 } else {
1553 method->iflags |= METHOD_IMPL_ATTRIBUTE_RUNTIME;
1555 return method;
1559 * mono_class_setup_methods:
1560 * @class: a class
1562 * Initializes the 'methods' array in the klass.
1563 * Calling this method should be avoided if possible since it allocates a lot
1564 * of long-living MonoMethod structures.
1565 * Methods belonging to an interface are assigned a sequential slot starting
1566 * from 0.
1568 void
1569 mono_class_setup_methods (MonoClass *class)
1571 int i;
1572 MonoMethod **methods;
1574 if (class->methods)
1575 return;
1577 mono_loader_lock ();
1579 if (class->methods) {
1580 mono_loader_unlock ();
1581 return;
1584 if (class->generic_class) {
1585 MonoClass *gklass = class->generic_class->container_class;
1587 mono_class_init (gklass);
1588 mono_class_setup_methods (gklass);
1590 /* The + 1 makes this always non-NULL to pass the check in mono_class_setup_methods () */
1591 class->method.count = gklass->method.count;
1592 methods = g_new0 (MonoMethod *, class->method.count + 1);
1594 for (i = 0; i < class->method.count; i++) {
1595 methods [i] = mono_class_inflate_generic_method_full (
1596 gklass->methods [i], class, mono_class_get_context (class));
1598 } else if (class->rank) {
1599 MonoMethod *amethod;
1600 MonoMethodSignature *sig;
1601 int count_generic = 0, first_generic = 0;
1602 int method_num = 0;
1604 class->method.count = 3 + (class->rank > 1? 2: 1);
1606 mono_class_setup_interfaces (class);
1608 if (class->interface_count) {
1609 count_generic = generic_array_methods (class);
1610 first_generic = class->method.count;
1611 class->method.count += class->interface_count * count_generic;
1614 methods = mono_image_alloc0 (class->image, sizeof (MonoMethod*) * class->method.count);
1616 sig = mono_metadata_signature_alloc (class->image, class->rank);
1617 sig->ret = &mono_defaults.void_class->byval_arg;
1618 sig->pinvoke = TRUE;
1619 sig->hasthis = TRUE;
1620 for (i = 0; i < class->rank; ++i)
1621 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1623 amethod = create_array_method (class, ".ctor", sig);
1624 methods [method_num++] = amethod;
1625 if (class->rank > 1) {
1626 sig = mono_metadata_signature_alloc (class->image, class->rank * 2);
1627 sig->ret = &mono_defaults.void_class->byval_arg;
1628 sig->pinvoke = TRUE;
1629 sig->hasthis = TRUE;
1630 for (i = 0; i < class->rank * 2; ++i)
1631 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1633 amethod = create_array_method (class, ".ctor", sig);
1634 methods [method_num++] = amethod;
1636 /* element Get (idx11, [idx2, ...]) */
1637 sig = mono_metadata_signature_alloc (class->image, class->rank);
1638 sig->ret = &class->element_class->byval_arg;
1639 sig->pinvoke = TRUE;
1640 sig->hasthis = TRUE;
1641 for (i = 0; i < class->rank; ++i)
1642 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1643 amethod = create_array_method (class, "Get", sig);
1644 methods [method_num++] = amethod;
1645 /* element& Address (idx11, [idx2, ...]) */
1646 sig = mono_metadata_signature_alloc (class->image, class->rank);
1647 sig->ret = &class->element_class->this_arg;
1648 sig->pinvoke = TRUE;
1649 sig->hasthis = TRUE;
1650 for (i = 0; i < class->rank; ++i)
1651 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1652 amethod = create_array_method (class, "Address", sig);
1653 methods [method_num++] = amethod;
1654 /* void Set (idx11, [idx2, ...], element) */
1655 sig = mono_metadata_signature_alloc (class->image, class->rank + 1);
1656 sig->ret = &mono_defaults.void_class->byval_arg;
1657 sig->pinvoke = TRUE;
1658 sig->hasthis = TRUE;
1659 for (i = 0; i < class->rank; ++i)
1660 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1661 sig->params [i] = &class->element_class->byval_arg;
1662 amethod = create_array_method (class, "Set", sig);
1663 methods [method_num++] = amethod;
1665 for (i = 0; i < class->interface_count; i++)
1666 setup_generic_array_ifaces (class, class->interfaces [i], methods, first_generic + i * count_generic);
1667 } else {
1668 methods = mono_image_alloc (class->image, sizeof (MonoMethod*) * class->method.count);
1669 for (i = 0; i < class->method.count; ++i) {
1670 int idx = mono_metadata_translate_token_index (class->image, MONO_TABLE_METHOD, class->method.first + i + 1);
1671 methods [i] = mono_get_method (class->image, MONO_TOKEN_METHOD_DEF | idx, class);
1675 if (MONO_CLASS_IS_INTERFACE (class))
1676 for (i = 0; i < class->method.count; ++i)
1677 methods [i]->slot = i;
1679 /* Needed because of the double-checking locking pattern */
1680 mono_memory_barrier ();
1682 class->methods = methods;
1684 if (mono_debugger_class_loaded_methods_func)
1685 mono_debugger_class_loaded_methods_func (class);
1687 mono_loader_unlock ();
1691 * mono_class_get_method_by_index:
1693 * Returns class->methods [index], initializing class->methods if neccesary.
1695 * LOCKING: Acquires the loader lock.
1697 MonoMethod*
1698 mono_class_get_method_by_index (MonoClass *class, int index)
1700 /* Avoid calling setup_methods () if possible */
1701 if (class->generic_class && !class->methods) {
1702 MonoClass *gklass = class->generic_class->container_class;
1703 MonoMethod *m;
1705 m = mono_class_inflate_generic_method_full (
1706 gklass->methods [index], class, mono_class_get_context (class));
1708 * If setup_methods () is called later for this class, no duplicates are created,
1709 * since inflate_generic_method guarantees that only one instance of a method
1710 * is created for each context.
1713 mono_class_setup_methods (class);
1714 g_assert (m == class->methods [index]);
1716 return m;
1717 } else {
1718 mono_class_setup_methods (class);
1719 g_assert (index >= 0 && index < class->method.count);
1720 return class->methods [index];
1725 * mono_class_get_inflated_method:
1727 * Given an inflated class CLASS and a method METHOD which should be a method of
1728 * CLASS's generic definition, return the inflated method corresponding to METHOD.
1730 MonoMethod*
1731 mono_class_get_inflated_method (MonoClass *class, MonoMethod *method)
1733 MonoClass *gklass = class->generic_class->container_class;
1734 int i;
1736 mono_class_setup_methods (gklass);
1737 for (i = 0; i < gklass->method.count; ++i) {
1738 if (gklass->methods [i] == method) {
1739 if (class->methods)
1740 return class->methods [i];
1741 else
1742 return mono_class_inflate_generic_method_full (gklass->methods [i], class, mono_class_get_context (class));
1746 return NULL;
1750 * mono_class_get_vtable_entry:
1752 * Returns class->vtable [offset], computing it if neccesary.
1753 * LOCKING: Acquires the loader lock.
1755 MonoMethod*
1756 mono_class_get_vtable_entry (MonoClass *class, int offset)
1758 MonoMethod *m;
1760 if (class->rank == 1) {
1762 * szarrays do not overwrite any methods of Array, so we can avoid
1763 * initializing their vtables in some cases.
1765 mono_class_setup_vtable (class->parent);
1766 if (offset < class->parent->vtable_size)
1767 return class->parent->vtable [offset];
1770 if (class->generic_class) {
1771 MonoClass *gklass = class->generic_class->container_class;
1772 mono_class_setup_vtable (gklass);
1773 m = gklass->vtable [offset];
1775 m = mono_class_inflate_generic_method_full (m, class, mono_class_get_context (class));
1776 } else {
1777 mono_class_setup_vtable (class);
1778 m = class->vtable [offset];
1782 * We have to add static rgctx wrappers somewhere, we do it here,
1783 * altough it should probably be done by the JIT.
1785 if (mono_method_needs_static_rgctx_invoke (m, FALSE))
1786 m = mono_marshal_get_static_rgctx_invoke (m);
1787 return m;
1790 static void
1791 mono_class_setup_properties (MonoClass *class)
1793 guint startm, endm, i, j;
1794 guint32 cols [MONO_PROPERTY_SIZE];
1795 MonoTableInfo *msemt = &class->image->tables [MONO_TABLE_METHODSEMANTICS];
1796 MonoProperty *properties;
1797 guint32 last;
1799 if (class->ext && class->ext->properties)
1800 return;
1802 mono_loader_lock ();
1804 if (class->ext && class->ext->properties) {
1805 mono_loader_unlock ();
1806 return;
1809 mono_class_alloc_ext (class);
1811 if (class->generic_class) {
1812 MonoClass *gklass = class->generic_class->container_class;
1814 mono_class_init (gklass);
1815 mono_class_setup_properties (gklass);
1817 class->ext->property = gklass->ext->property;
1819 properties = g_new0 (MonoProperty, class->ext->property.count + 1);
1821 for (i = 0; i < class->ext->property.count; i++) {
1822 MonoProperty *prop = &properties [i];
1824 *prop = gklass->ext->properties [i];
1826 if (prop->get)
1827 prop->get = mono_class_inflate_generic_method_full (
1828 prop->get, class, mono_class_get_context (class));
1829 if (prop->set)
1830 prop->set = mono_class_inflate_generic_method_full (
1831 prop->set, class, mono_class_get_context (class));
1833 prop->parent = class;
1835 } else {
1836 class->ext->property.first = mono_metadata_properties_from_typedef (class->image, mono_metadata_token_index (class->type_token) - 1, &last);
1837 class->ext->property.count = last - class->ext->property.first;
1839 if (class->ext->property.count)
1840 mono_class_setup_methods (class);
1842 properties = mono_image_alloc0 (class->image, sizeof (MonoProperty) * class->ext->property.count);
1843 for (i = class->ext->property.first; i < last; ++i) {
1844 mono_metadata_decode_table_row (class->image, MONO_TABLE_PROPERTY, i, cols, MONO_PROPERTY_SIZE);
1845 properties [i - class->ext->property.first].parent = class;
1846 properties [i - class->ext->property.first].attrs = cols [MONO_PROPERTY_FLAGS];
1847 properties [i - class->ext->property.first].name = mono_metadata_string_heap (class->image, cols [MONO_PROPERTY_NAME]);
1849 startm = mono_metadata_methods_from_property (class->image, i, &endm);
1850 for (j = startm; j < endm; ++j) {
1851 MonoMethod *method;
1853 mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
1855 if (class->image->uncompressed_metadata)
1856 /* It seems like the MONO_METHOD_SEMA_METHOD column needs no remapping */
1857 method = mono_get_method (class->image, MONO_TOKEN_METHOD_DEF | cols [MONO_METHOD_SEMA_METHOD], class);
1858 else
1859 method = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
1861 switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
1862 case METHOD_SEMANTIC_SETTER:
1863 properties [i - class->ext->property.first].set = method;
1864 break;
1865 case METHOD_SEMANTIC_GETTER:
1866 properties [i - class->ext->property.first].get = method;
1867 break;
1868 default:
1869 break;
1874 /*Flush any pending writes as we do double checked locking on class->properties */
1875 mono_memory_barrier ();
1877 /* Leave this assignment as the last op in the function */
1878 class->ext->properties = properties;
1880 mono_loader_unlock ();
1883 static MonoMethod**
1884 inflate_method_listz (MonoMethod **methods, MonoClass *class, MonoGenericContext *context)
1886 MonoMethod **om, **retval;
1887 int count;
1889 for (om = methods, count = 0; *om; ++om, ++count)
1892 retval = g_new0 (MonoMethod*, count + 1);
1893 count = 0;
1894 for (om = methods, count = 0; *om; ++om, ++count)
1895 retval [count] = mono_class_inflate_generic_method_full (*om, class, context);
1897 return retval;
1900 static void
1901 mono_class_setup_events (MonoClass *class)
1903 guint startm, endm, i, j;
1904 guint32 cols [MONO_EVENT_SIZE];
1905 MonoTableInfo *msemt = &class->image->tables [MONO_TABLE_METHODSEMANTICS];
1906 guint32 last;
1907 MonoEvent *events;
1909 if (class->ext && class->ext->events)
1910 return;
1912 mono_loader_lock ();
1914 if (class->ext && class->ext->events) {
1915 mono_loader_unlock ();
1916 return;
1919 mono_class_alloc_ext (class);
1921 if (class->generic_class) {
1922 MonoClass *gklass = class->generic_class->container_class;
1923 MonoGenericContext *context;
1925 mono_class_setup_events (gklass);
1926 class->ext->event = gklass->ext->event;
1928 class->ext->events = g_new0 (MonoEvent, class->ext->event.count);
1930 if (class->ext->event.count)
1931 context = mono_class_get_context (class);
1933 for (i = 0; i < class->ext->event.count; i++) {
1934 MonoEvent *event = &class->ext->events [i];
1935 MonoEvent *gevent = &gklass->ext->events [i];
1937 event->parent = class;
1938 event->name = gevent->name;
1939 event->add = gevent->add ? mono_class_inflate_generic_method_full (gevent->add, class, context) : NULL;
1940 event->remove = gevent->remove ? mono_class_inflate_generic_method_full (gevent->remove, class, context) : NULL;
1941 event->raise = gevent->raise ? mono_class_inflate_generic_method_full (gevent->raise, class, context) : NULL;
1942 event->other = gevent->other ? inflate_method_listz (gevent->other, class, context) : NULL;
1943 event->attrs = gevent->attrs;
1946 mono_loader_unlock ();
1947 return;
1950 class->ext->event.first = mono_metadata_events_from_typedef (class->image, mono_metadata_token_index (class->type_token) - 1, &last);
1951 class->ext->event.count = last - class->ext->event.first;
1953 if (class->ext->event.count)
1954 mono_class_setup_methods (class);
1956 events = mono_image_alloc0 (class->image, sizeof (MonoEvent) * class->ext->event.count);
1957 for (i = class->ext->event.first; i < last; ++i) {
1958 MonoEvent *event = &events [i - class->ext->event.first];
1960 mono_metadata_decode_table_row (class->image, MONO_TABLE_EVENT, i, cols, MONO_EVENT_SIZE);
1961 event->parent = class;
1962 event->attrs = cols [MONO_EVENT_FLAGS];
1963 event->name = mono_metadata_string_heap (class->image, cols [MONO_EVENT_NAME]);
1965 startm = mono_metadata_methods_from_event (class->image, i, &endm);
1966 for (j = startm; j < endm; ++j) {
1967 MonoMethod *method;
1969 mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
1971 if (class->image->uncompressed_metadata)
1972 /* It seems like the MONO_METHOD_SEMA_METHOD column needs no remapping */
1973 method = mono_get_method (class->image, MONO_TOKEN_METHOD_DEF | cols [MONO_METHOD_SEMA_METHOD], class);
1974 else
1975 method = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
1977 switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
1978 case METHOD_SEMANTIC_ADD_ON:
1979 event->add = method;
1980 break;
1981 case METHOD_SEMANTIC_REMOVE_ON:
1982 event->remove = method;
1983 break;
1984 case METHOD_SEMANTIC_FIRE:
1985 event->raise = method;
1986 break;
1987 case METHOD_SEMANTIC_OTHER: {
1988 int n = 0;
1990 if (event->other == NULL) {
1991 event->other = g_new0 (MonoMethod*, 2);
1992 } else {
1993 while (event->other [n])
1994 n++;
1995 event->other = g_realloc (event->other, (n + 2) * sizeof (MonoMethod*));
1997 event->other [n] = method;
1998 /* NULL terminated */
1999 event->other [n + 1] = NULL;
2000 break;
2002 default:
2003 break;
2007 /*Flush any pending writes as we do double checked locking on class->properties */
2008 mono_memory_barrier ();
2010 /* Leave this assignment as the last op in the function */
2011 class->ext->events = events;
2013 mono_loader_unlock ();
2017 * Global pool of interface IDs, represented as a bitset.
2018 * LOCKING: this is supposed to be accessed with the loader lock held.
2020 static MonoBitSet *global_interface_bitset = NULL;
2023 * mono_unload_interface_ids:
2024 * @bitset: bit set of interface IDs
2026 * When an image is unloaded, the interface IDs associated with
2027 * the image are put back in the global pool of IDs so the numbers
2028 * can be reused.
2030 void
2031 mono_unload_interface_ids (MonoBitSet *bitset)
2033 mono_loader_lock ();
2034 mono_bitset_sub (global_interface_bitset, bitset);
2035 mono_loader_unlock ();
2039 * mono_get_unique_iid:
2040 * @class: interface
2042 * Assign a unique integer ID to the interface represented by @class.
2043 * The ID will positive and as small as possible.
2044 * LOCKING: this is supposed to be called with the loader lock held.
2045 * Returns: the new ID.
2047 static guint
2048 mono_get_unique_iid (MonoClass *class)
2050 int iid;
2052 g_assert (MONO_CLASS_IS_INTERFACE (class));
2054 if (!global_interface_bitset) {
2055 global_interface_bitset = mono_bitset_new (128, 0);
2058 iid = mono_bitset_find_first_unset (global_interface_bitset, -1);
2059 if (iid < 0) {
2060 int old_size = mono_bitset_size (global_interface_bitset);
2061 MonoBitSet *new_set = mono_bitset_clone (global_interface_bitset, old_size * 2);
2062 mono_bitset_free (global_interface_bitset);
2063 global_interface_bitset = new_set;
2064 iid = old_size;
2066 mono_bitset_set (global_interface_bitset, iid);
2067 /* set the bit also in the per-image set */
2068 if (class->image->interface_bitset) {
2069 if (iid >= mono_bitset_size (class->image->interface_bitset)) {
2070 MonoBitSet *new_set = mono_bitset_clone (class->image->interface_bitset, iid + 1);
2071 mono_bitset_free (class->image->interface_bitset);
2072 class->image->interface_bitset = new_set;
2074 } else {
2075 class->image->interface_bitset = mono_bitset_new (iid + 1, 0);
2077 mono_bitset_set (class->image->interface_bitset, iid);
2079 if (mono_print_vtable) {
2080 int generic_id;
2081 char *type_name = mono_type_full_name (&class->byval_arg);
2082 if (class->generic_class && !class->generic_class->context.class_inst->is_open) {
2083 generic_id = class->generic_class->context.class_inst->id;
2084 g_assert (generic_id != 0);
2085 } else {
2086 generic_id = 0;
2088 printf ("Interface: assigned id %d to %s|%s|%d\n", iid, class->image->name, type_name, generic_id);
2089 g_free (type_name);
2092 g_assert (iid <= 65535);
2093 return iid;
2096 static void
2097 collect_implemented_interfaces_aux (MonoClass *klass, GPtrArray **res)
2099 int i;
2100 MonoClass *ic;
2102 mono_class_setup_interfaces (klass);
2104 for (i = 0; i < klass->interface_count; i++) {
2105 ic = klass->interfaces [i];
2107 if (*res == NULL)
2108 *res = g_ptr_array_new ();
2109 g_ptr_array_add (*res, ic);
2110 mono_class_init (ic);
2112 collect_implemented_interfaces_aux (ic, res);
2116 GPtrArray*
2117 mono_class_get_implemented_interfaces (MonoClass *klass)
2119 GPtrArray *res = NULL;
2121 collect_implemented_interfaces_aux (klass, &res);
2122 return res;
2125 static int
2126 compare_interface_ids (const void *p_key, const void *p_element) {
2127 const MonoClass *key = p_key;
2128 const MonoClass *element = *(MonoClass**) p_element;
2130 return (key->interface_id - element->interface_id);
2134 mono_class_interface_offset (MonoClass *klass, MonoClass *itf) {
2135 MonoClass **result = bsearch (
2136 itf,
2137 klass->interfaces_packed,
2138 klass->interface_offsets_count,
2139 sizeof (MonoClass *),
2140 compare_interface_ids);
2141 if (result) {
2142 return klass->interface_offsets_packed [result - (klass->interfaces_packed)];
2143 } else {
2144 return -1;
2148 static void
2149 print_implemented_interfaces (MonoClass *klass) {
2150 GPtrArray *ifaces = NULL;
2151 int i;
2152 int ancestor_level = 0;
2154 printf ("Packed interface table for class %s has size %d\n", klass->name, klass->interface_offsets_count);
2155 for (i = 0; i < klass->interface_offsets_count; i++)
2156 printf (" [%03d][UUID %03d][SLOT %03d][SIZE %03d] interface %s.%s\n", i,
2157 klass->interfaces_packed [i]->interface_id,
2158 klass->interface_offsets_packed [i],
2159 klass->interfaces_packed [i]->method.count,
2160 klass->interfaces_packed [i]->name_space,
2161 klass->interfaces_packed [i]->name );
2162 printf ("Interface flags: ");
2163 for (i = 0; i <= klass->max_interface_id; i++)
2164 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, i))
2165 printf ("(%d,T)", i);
2166 else
2167 printf ("(%d,F)", i);
2168 printf ("\n");
2169 printf ("Dump interface flags:");
2170 for (i = 0; i < ((((klass->max_interface_id + 1) >> 3)) + (((klass->max_interface_id + 1) & 7)? 1 :0)); i++)
2171 printf (" %02X", klass->interface_bitmap [i]);
2172 printf ("\n");
2173 while (klass != NULL) {
2174 printf ("[LEVEL %d] Implemented interfaces by class %s:\n", ancestor_level, klass->name);
2175 ifaces = mono_class_get_implemented_interfaces (klass);
2176 if (ifaces) {
2177 for (i = 0; i < ifaces->len; i++) {
2178 MonoClass *ic = g_ptr_array_index (ifaces, i);
2179 printf (" [UIID %d] interface %s\n", ic->interface_id, ic->name);
2180 printf (" [%03d][UUID %03d][SLOT %03d][SIZE %03d] interface %s.%s\n", i,
2181 ic->interface_id,
2182 mono_class_interface_offset (klass, ic),
2183 ic->method.count,
2184 ic->name_space,
2185 ic->name );
2187 g_ptr_array_free (ifaces, TRUE);
2189 ancestor_level ++;
2190 klass = klass->parent;
2194 static MonoClass*
2195 inflate_class_one_arg (MonoClass *gtype, MonoClass *arg0)
2197 MonoType *args [1];
2198 args [0] = &arg0->byval_arg;
2200 return mono_class_bind_generic_parameters (gtype, 1, args, FALSE);
2203 static MonoClass*
2204 array_class_get_if_rank (MonoClass *class, guint rank)
2206 return rank ? mono_array_class_get (class, rank) : class;
2209 static void
2210 fill_valuetype_array_derived_types (MonoClass **valuetype_types, MonoClass *eclass, int rank)
2212 valuetype_types [0] = eclass;
2213 if (eclass == mono_defaults.int16_class)
2214 valuetype_types [1] = mono_defaults.uint16_class;
2215 else if (eclass == mono_defaults.uint16_class)
2216 valuetype_types [1] = mono_defaults.int16_class;
2217 else if (eclass == mono_defaults.int32_class)
2218 valuetype_types [1] = mono_defaults.uint32_class;
2219 else if (eclass == mono_defaults.uint32_class)
2220 valuetype_types [1] = mono_defaults.int32_class;
2221 else if (eclass == mono_defaults.int64_class)
2222 valuetype_types [1] = mono_defaults.uint64_class;
2223 else if (eclass == mono_defaults.uint64_class)
2224 valuetype_types [1] = mono_defaults.int64_class;
2225 else if (eclass == mono_defaults.byte_class)
2226 valuetype_types [1] = mono_defaults.sbyte_class;
2227 else if (eclass == mono_defaults.sbyte_class)
2228 valuetype_types [1] = mono_defaults.byte_class;
2229 else if (eclass->enumtype && mono_class_enum_basetype (eclass))
2230 valuetype_types [1] = mono_class_from_mono_type (mono_class_enum_basetype (eclass));
2233 /* this won't be needed once bug #325495 is completely fixed
2234 * though we'll need something similar to know which interfaces to allow
2235 * in arrays when they'll be lazyly created
2237 * FIXME: System.Array/InternalEnumerator don't need all this interface fabrication machinery.
2238 * MS returns diferrent types based on which instance is called. For example:
2239 * object obj = new byte[10][];
2240 * Type a = ((IEnumerable<byte[]>)obj).GetEnumerator ().GetType ();
2241 * Type b = ((IEnumerable<IList<byte>>)obj).GetEnumerator ().GetType ();
2242 * a != b ==> true
2244 * Fixing this should kill quite some code, save some bits and improve compatbility.
2246 static MonoClass**
2247 get_implicit_generic_array_interfaces (MonoClass *class, int *num, int *is_enumerator)
2249 MonoClass *eclass = class->element_class;
2250 static MonoClass* generic_icollection_class = NULL;
2251 static MonoClass* generic_ienumerable_class = NULL;
2252 static MonoClass* generic_ienumerator_class = NULL;
2253 MonoClass *valuetype_types[2] = { NULL, NULL };
2254 MonoClass **interfaces = NULL;
2255 int i, interface_count, real_count, original_rank;
2256 int all_interfaces;
2257 gboolean internal_enumerator;
2258 gboolean eclass_is_valuetype;
2260 if (!mono_defaults.generic_ilist_class) {
2261 *num = 0;
2262 return NULL;
2264 internal_enumerator = FALSE;
2265 eclass_is_valuetype = FALSE;
2266 original_rank = eclass->rank;
2267 if (class->byval_arg.type != MONO_TYPE_SZARRAY) {
2268 if (class->generic_class && class->nested_in == mono_defaults.array_class && strcmp (class->name, "InternalEnumerator`1") == 0) {
2270 * For a Enumerator<T[]> we need to get the list of interfaces for T.
2272 eclass = mono_class_from_mono_type (class->generic_class->context.class_inst->type_argv [0]);
2273 original_rank = eclass->rank;
2274 eclass = eclass->element_class;
2275 internal_enumerator = TRUE;
2276 *is_enumerator = TRUE;
2277 } else {
2278 *num = 0;
2279 return NULL;
2284 * with this non-lazy impl we can't implement all the interfaces so we do just the minimal stuff
2285 * for deep levels of arrays of arrays (string[][] has all the interfaces, string[][][] doesn't)
2287 all_interfaces = eclass->rank && eclass->element_class->rank? FALSE: TRUE;
2289 if (!generic_icollection_class) {
2290 generic_icollection_class = mono_class_from_name (mono_defaults.corlib,
2291 "System.Collections.Generic", "ICollection`1");
2292 generic_ienumerable_class = mono_class_from_name (mono_defaults.corlib,
2293 "System.Collections.Generic", "IEnumerable`1");
2294 generic_ienumerator_class = mono_class_from_name (mono_defaults.corlib,
2295 "System.Collections.Generic", "IEnumerator`1");
2298 mono_class_init (eclass);
2301 * Arrays in 2.0 need to implement a number of generic interfaces
2302 * (IList`1, ICollection`1, IEnumerable`1 for a number of types depending
2303 * on the element class). We collect the types needed to build the
2304 * instantiations in interfaces at intervals of 3, because 3 are
2305 * the generic interfaces needed to implement.
2307 if (eclass->valuetype) {
2308 fill_valuetype_array_derived_types (valuetype_types, eclass, original_rank);
2310 /* IList, ICollection, IEnumerable */
2311 real_count = interface_count = valuetype_types [1] ? 6 : 3;
2312 if (internal_enumerator) {
2313 ++real_count;
2314 if (valuetype_types [1])
2315 ++real_count;
2318 interfaces = g_malloc0 (sizeof (MonoClass*) * real_count);
2319 interfaces [0] = valuetype_types [0];
2320 if (valuetype_types [1])
2321 interfaces [3] = valuetype_types [1];
2323 eclass_is_valuetype = TRUE;
2324 } else {
2325 int j;
2326 int idepth = eclass->idepth;
2327 if (!internal_enumerator)
2328 idepth--;
2329 interface_count = all_interfaces? eclass->interface_offsets_count: eclass->interface_count;
2330 /* we add object for interfaces and the supertypes for the other
2331 * types. The last of the supertypes is the element class itself which we
2332 * already created the explicit interfaces for (so we include it for IEnumerator
2333 * and exclude it for arrays).
2335 if (MONO_CLASS_IS_INTERFACE (eclass))
2336 interface_count++;
2337 else
2338 interface_count += idepth;
2339 if (eclass->rank && eclass->element_class->valuetype) {
2340 fill_valuetype_array_derived_types (valuetype_types, eclass->element_class, original_rank);
2341 if (valuetype_types [1])
2342 ++interface_count;
2344 /* IList, ICollection, IEnumerable */
2345 interface_count *= 3;
2346 real_count = interface_count;
2347 if (internal_enumerator) {
2348 real_count += (MONO_CLASS_IS_INTERFACE (eclass) ? 1 : idepth) + eclass->interface_offsets_count;
2349 if (valuetype_types [1])
2350 ++real_count;
2352 interfaces = g_malloc0 (sizeof (MonoClass*) * real_count);
2353 if (MONO_CLASS_IS_INTERFACE (eclass)) {
2354 interfaces [0] = mono_defaults.object_class;
2355 j = 3;
2356 } else {
2357 j = 0;
2358 for (i = 0; i < idepth; i++) {
2359 mono_class_init (eclass->supertypes [i]);
2360 interfaces [j] = eclass->supertypes [i];
2361 j += 3;
2364 if (all_interfaces) {
2365 for (i = 0; i < eclass->interface_offsets_count; i++) {
2366 interfaces [j] = eclass->interfaces_packed [i];
2367 j += 3;
2369 } else {
2370 for (i = 0; i < eclass->interface_count; i++) {
2371 interfaces [j] = eclass->interfaces [i];
2372 j += 3;
2375 if (valuetype_types [1]) {
2376 interfaces [j] = array_class_get_if_rank (valuetype_types [1], original_rank);
2377 j += 3;
2381 /* instantiate the generic interfaces */
2382 for (i = 0; i < interface_count; i += 3) {
2383 MonoClass *iface = interfaces [i];
2385 interfaces [i + 0] = inflate_class_one_arg (mono_defaults.generic_ilist_class, iface);
2386 interfaces [i + 1] = inflate_class_one_arg (generic_icollection_class, iface);
2387 interfaces [i + 2] = inflate_class_one_arg (generic_ienumerable_class, iface);
2389 if (internal_enumerator) {
2390 int j;
2391 /* instantiate IEnumerator<iface> */
2392 for (i = 0; i < interface_count; i++) {
2393 interfaces [i] = inflate_class_one_arg (generic_ienumerator_class, interfaces [i]);
2395 j = interface_count;
2396 if (!eclass_is_valuetype) {
2397 if (MONO_CLASS_IS_INTERFACE (eclass)) {
2398 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, mono_defaults.object_class);
2399 j ++;
2400 } else {
2401 for (i = 0; i < eclass->idepth; i++) {
2402 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, eclass->supertypes [i]);
2403 j ++;
2406 for (i = 0; i < eclass->interface_offsets_count; i++) {
2407 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, eclass->interfaces_packed [i]);
2408 j ++;
2410 } else {
2411 interfaces [j++] = inflate_class_one_arg (generic_ienumerator_class, array_class_get_if_rank (valuetype_types [0], original_rank));
2413 if (valuetype_types [1])
2414 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, array_class_get_if_rank (valuetype_types [1], original_rank));
2416 #if 0
2418 char *type_name = mono_type_get_name_full (&class->byval_arg, 0);
2419 for (i = 0; i < real_count; ++i) {
2420 char *name = mono_type_get_name_full (&interfaces [i]->byval_arg, 0);
2421 g_print ("%s implements %s\n", type_name, name);
2422 g_free (name);
2424 g_free (type_name);
2426 #endif
2427 *num = real_count;
2428 return interfaces;
2431 static int
2432 find_array_interface (MonoClass *klass, const char *name)
2434 int i;
2435 for (i = 0; i < klass->interface_count; ++i) {
2436 if (strcmp (klass->interfaces [i]->name, name) == 0)
2437 return i;
2439 return -1;
2443 * LOCKING: this is supposed to be called with the loader lock held.
2445 static int
2446 setup_interface_offsets (MonoClass *class, int cur_slot)
2448 MonoClass *k, *ic;
2449 int i, max_iid;
2450 MonoClass **interfaces_full;
2451 int *interface_offsets_full;
2452 GPtrArray *ifaces;
2453 int interface_offsets_count;
2454 MonoClass **array_interfaces;
2455 int num_array_interfaces;
2456 int is_enumerator = FALSE;
2459 * get the implicit generic interfaces for either the arrays or for System.Array/InternalEnumerator<T>
2460 * implicit interfaces have the property that they are assigned the same slot in the
2461 * vtables for compatible interfaces
2463 array_interfaces = get_implicit_generic_array_interfaces (class, &num_array_interfaces, &is_enumerator);
2465 /* compute maximum number of slots and maximum interface id */
2466 max_iid = 0;
2467 for (k = class; k ; k = k->parent) {
2468 for (i = 0; i < k->interface_count; i++) {
2469 ic = k->interfaces [i];
2471 if (!ic->inited)
2472 mono_class_init (ic);
2474 if (max_iid < ic->interface_id)
2475 max_iid = ic->interface_id;
2477 ifaces = mono_class_get_implemented_interfaces (k);
2478 if (ifaces) {
2479 for (i = 0; i < ifaces->len; ++i) {
2480 ic = g_ptr_array_index (ifaces, i);
2481 if (max_iid < ic->interface_id)
2482 max_iid = ic->interface_id;
2484 g_ptr_array_free (ifaces, TRUE);
2487 for (i = 0; i < num_array_interfaces; ++i) {
2488 ic = array_interfaces [i];
2489 mono_class_init (ic);
2490 if (max_iid < ic->interface_id)
2491 max_iid = ic->interface_id;
2494 if (MONO_CLASS_IS_INTERFACE (class)) {
2495 if (max_iid < class->interface_id)
2496 max_iid = class->interface_id;
2498 class->max_interface_id = max_iid;
2499 /* compute vtable offset for interfaces */
2500 interfaces_full = g_malloc (sizeof (MonoClass*) * (max_iid + 1));
2501 interface_offsets_full = g_malloc (sizeof (int) * (max_iid + 1));
2503 for (i = 0; i <= max_iid; i++) {
2504 interfaces_full [i] = NULL;
2505 interface_offsets_full [i] = -1;
2508 ifaces = mono_class_get_implemented_interfaces (class);
2509 if (ifaces) {
2510 for (i = 0; i < ifaces->len; ++i) {
2511 ic = g_ptr_array_index (ifaces, i);
2512 interfaces_full [ic->interface_id] = ic;
2513 interface_offsets_full [ic->interface_id] = cur_slot;
2514 cur_slot += ic->method.count;
2516 g_ptr_array_free (ifaces, TRUE);
2519 for (k = class->parent; k ; k = k->parent) {
2520 ifaces = mono_class_get_implemented_interfaces (k);
2521 if (ifaces) {
2522 for (i = 0; i < ifaces->len; ++i) {
2523 ic = g_ptr_array_index (ifaces, i);
2525 if (interface_offsets_full [ic->interface_id] == -1) {
2526 int io = mono_class_interface_offset (k, ic);
2528 g_assert (io >= 0);
2530 interfaces_full [ic->interface_id] = ic;
2531 interface_offsets_full [ic->interface_id] = io;
2534 g_ptr_array_free (ifaces, TRUE);
2538 if (MONO_CLASS_IS_INTERFACE (class)) {
2539 interfaces_full [class->interface_id] = class;
2540 interface_offsets_full [class->interface_id] = cur_slot;
2543 if (num_array_interfaces) {
2544 if (is_enumerator) {
2545 int ienumerator_offset;
2546 int ienumerator_idx = find_array_interface (class, "IEnumerator`1");
2547 ienumerator_offset = interface_offsets_full [class->interfaces [ienumerator_idx]->interface_id];
2548 for (i = 0; i < num_array_interfaces; ++i) {
2549 ic = array_interfaces [i];
2550 interfaces_full [ic->interface_id] = ic;
2551 if (strcmp (ic->name, "IEnumerator`1") == 0)
2552 interface_offsets_full [ic->interface_id] = ienumerator_offset;
2553 else
2554 g_assert_not_reached ();
2555 /*g_print ("type %s has %s offset at %d (%s)\n", class->name, ic->name, interface_offsets_full [ic->interface_id], class->interfaces [0]->name);*/
2557 } else {
2558 int ilist_offset, icollection_offset, ienumerable_offset;
2559 int ilist_iface_idx = find_array_interface (class, "IList`1");
2560 int icollection_iface_idx = find_array_interface (class->interfaces [ilist_iface_idx], "ICollection`1");
2561 int ienumerable_iface_idx = find_array_interface (class->interfaces [ilist_iface_idx], "IEnumerable`1");
2562 ilist_offset = interface_offsets_full [class->interfaces [ilist_iface_idx]->interface_id];
2563 icollection_offset = interface_offsets_full [class->interfaces [ilist_iface_idx]->interfaces [icollection_iface_idx]->interface_id];
2564 ienumerable_offset = interface_offsets_full [class->interfaces [ilist_iface_idx]->interfaces [ienumerable_iface_idx]->interface_id];
2565 g_assert (ilist_offset >= 0 && icollection_offset >= 0 && ienumerable_offset >= 0);
2566 for (i = 0; i < num_array_interfaces; ++i) {
2567 ic = array_interfaces [i];
2568 interfaces_full [ic->interface_id] = ic;
2569 if (ic->generic_class->container_class == mono_defaults.generic_ilist_class)
2570 interface_offsets_full [ic->interface_id] = ilist_offset;
2571 else if (strcmp (ic->name, "ICollection`1") == 0)
2572 interface_offsets_full [ic->interface_id] = icollection_offset;
2573 else if (strcmp (ic->name, "IEnumerable`1") == 0)
2574 interface_offsets_full [ic->interface_id] = ienumerable_offset;
2575 else
2576 g_assert_not_reached ();
2577 /*g_print ("type %s has %s offset at %d (%s)\n", class->name, ic->name, interface_offsets_full [ic->interface_id], class->interfaces [0]->name);*/
2582 for (interface_offsets_count = 0, i = 0; i <= max_iid; i++) {
2583 if (interface_offsets_full [i] != -1) {
2584 interface_offsets_count ++;
2589 * We might get called twice: once from mono_class_init () then once from
2590 * mono_class_setup_vtable ().
2592 if (class->interfaces_packed) {
2593 g_assert (class->interface_offsets_count == interface_offsets_count);
2594 } else {
2595 class->interface_offsets_count = interface_offsets_count;
2596 class->interfaces_packed = mono_image_alloc (class->image, sizeof (MonoClass*) * interface_offsets_count);
2597 class->interface_offsets_packed = mono_image_alloc (class->image, sizeof (guint16) * interface_offsets_count);
2598 class->interface_bitmap = mono_image_alloc0 (class->image, (sizeof (guint8) * ((max_iid + 1) >> 3)) + (((max_iid + 1) & 7)? 1 :0));
2599 for (interface_offsets_count = 0, i = 0; i <= max_iid; i++) {
2600 if (interface_offsets_full [i] != -1) {
2601 class->interface_bitmap [i >> 3] |= (1 << (i & 7));
2602 class->interfaces_packed [interface_offsets_count] = interfaces_full [i];
2603 class->interface_offsets_packed [interface_offsets_count] = interface_offsets_full [i];
2604 /*if (num_array_interfaces)
2605 g_print ("type %s has %s offset at %d\n", mono_type_get_name_full (&class->byval_arg, 0), mono_type_get_name_full (&interfaces_full [i]->byval_arg, 0), interface_offsets_full [i]);*/
2606 interface_offsets_count ++;
2611 g_free (interfaces_full);
2612 g_free (interface_offsets_full);
2613 g_free (array_interfaces);
2615 //printf ("JUST DONE: ");
2616 //print_implemented_interfaces (class);
2618 return cur_slot;
2622 * Setup interface offsets for interfaces.
2623 * Initializes:
2624 * - class->max_interface_id
2625 * - class->interface_offsets_count
2626 * - class->interfaces_packed
2627 * - class->interface_offsets_packed
2628 * - class->interface_bitmap
2630 void
2631 mono_class_setup_interface_offsets (MonoClass *class)
2633 mono_loader_lock ();
2635 setup_interface_offsets (class, 0);
2637 mono_loader_unlock ();
2641 * mono_class_setup_vtable:
2643 * Creates the generic vtable of CLASS.
2644 * Initializes the following fields in MonoClass:
2645 * - vtable
2646 * - vtable_size
2647 * Plus all the fields initialized by setup_interface_offsets ().
2648 * If there is an error during vtable construction, class->exception_type is set.
2650 * LOCKING: Acquires the loader lock.
2652 void
2653 mono_class_setup_vtable (MonoClass *class)
2655 MonoMethod **overrides;
2656 MonoGenericContext *context;
2657 guint32 type_token;
2658 int onum = 0;
2659 int i;
2660 gboolean ok = TRUE;
2662 if (class->vtable)
2663 return;
2665 if (mono_debug_using_mono_debugger ())
2666 /* The debugger currently depends on this */
2667 mono_class_setup_methods (class);
2669 if (MONO_CLASS_IS_INTERFACE (class)) {
2670 /* This sets method->slot for all methods if this is an interface */
2671 mono_class_setup_methods (class);
2672 return;
2675 mono_loader_lock ();
2677 if (class->vtable) {
2678 mono_loader_unlock ();
2679 return;
2682 mono_stats.generic_vtable_count ++;
2684 if (class->generic_class) {
2685 context = mono_class_get_context (class);
2686 type_token = class->generic_class->container_class->type_token;
2687 } else {
2688 context = (MonoGenericContext *) class->generic_container;
2689 type_token = class->type_token;
2692 if (class->image->dynamic) {
2693 if (class->generic_class) {
2694 MonoClass *gklass = class->generic_class->container_class;
2696 mono_reflection_get_dynamic_overrides (gklass, &overrides, &onum);
2697 for (i = 0; i < onum; ++i) {
2698 MonoMethod *override = overrides [(i * 2) + 1];
2699 MonoMethod *inflated = NULL;
2700 int j;
2702 for (j = 0; j < class->method.count; ++j) {
2703 if (gklass->methods [j] == override) {
2704 inflated = class->methods [j];
2705 break;
2708 g_assert (inflated);
2710 overrides [(i * 2) + 1] = inflated;
2712 } else {
2713 mono_reflection_get_dynamic_overrides (class, &overrides, &onum);
2715 } else {
2716 /* The following call fails if there are missing methods in the type */
2717 ok = mono_class_get_overrides_full (class->image, type_token, &overrides, &onum, context);
2720 if (ok)
2721 mono_class_setup_vtable_general (class, overrides, onum);
2723 g_free (overrides);
2725 mono_loader_unlock ();
2727 return;
2730 static void
2731 check_core_clr_override_method (MonoClass *class, MonoMethod *override, MonoMethod *base)
2733 MonoSecurityCoreCLRLevel override_level = mono_security_core_clr_method_level (override, FALSE);
2734 MonoSecurityCoreCLRLevel base_level = mono_security_core_clr_method_level (base, FALSE);
2736 if (override_level != base_level && base_level == MONO_SECURITY_CORE_CLR_CRITICAL)
2737 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
2741 #define DEBUG_INTERFACE_VTABLE_CODE 0
2742 #define TRACE_INTERFACE_VTABLE_CODE 0
2743 #define VERIFY_INTERFACE_VTABLE_CODE 0
2745 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
2746 #define DEBUG_INTERFACE_VTABLE(stmt) do {\
2747 stmt;\
2748 } while (0)
2749 #else
2750 #define DEBUG_INTERFACE_VTABLE(stmt)
2751 #endif
2753 #if TRACE_INTERFACE_VTABLE_CODE
2754 #define TRACE_INTERFACE_VTABLE(stmt) do {\
2755 stmt;\
2756 } while (0)
2757 #else
2758 #define TRACE_INTERFACE_VTABLE(stmt)
2759 #endif
2761 #if VERIFY_INTERFACE_VTABLE_CODE
2762 #define VERIFY_INTERFACE_VTABLE(stmt) do {\
2763 stmt;\
2764 } while (0)
2765 #else
2766 #define VERIFY_INTERFACE_VTABLE(stmt)
2767 #endif
2770 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
2771 static char*
2772 mono_signature_get_full_desc (MonoMethodSignature *sig, gboolean include_namespace)
2774 int i;
2775 char *result;
2776 GString *res = g_string_new ("");
2778 g_string_append_c (res, '(');
2779 for (i = 0; i < sig->param_count; ++i) {
2780 if (i > 0)
2781 g_string_append_c (res, ',');
2782 mono_type_get_desc (res, sig->params [i], include_namespace);
2784 g_string_append (res, ")=>");
2785 if (sig->ret != NULL) {
2786 mono_type_get_desc (res, sig->ret, include_namespace);
2787 } else {
2788 g_string_append (res, "NULL");
2790 result = res->str;
2791 g_string_free (res, FALSE);
2792 return result;
2794 static void
2795 print_method_signatures (MonoMethod *im, MonoMethod *cm) {
2796 char *im_sig = mono_signature_get_full_desc (mono_method_signature (im), TRUE);
2797 char *cm_sig = mono_signature_get_full_desc (mono_method_signature (cm), TRUE);
2798 printf ("(IM \"%s\", CM \"%s\")", im_sig, cm_sig);
2799 g_free (im_sig);
2800 g_free (cm_sig);
2804 #endif
2805 static gboolean
2806 check_interface_method_override (MonoClass *class, MonoMethod *im, MonoMethod *cm, gboolean require_newslot, gboolean interface_is_explicitly_implemented_by_class, gboolean slot_is_empty, gboolean security_enabled) {
2807 if (strcmp (im->name, cm->name) == 0) {
2808 if (! (cm->flags & METHOD_ATTRIBUTE_PUBLIC)) {
2809 TRACE_INTERFACE_VTABLE (printf ("[PUBLIC CHECK FAILED]"));
2810 return FALSE;
2812 if (! slot_is_empty) {
2813 if (require_newslot) {
2814 if (! interface_is_explicitly_implemented_by_class) {
2815 TRACE_INTERFACE_VTABLE (printf ("[NOT EXPLICIT IMPLEMENTATION IN FULL SLOT REFUSED]"));
2816 return FALSE;
2818 if (! (cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
2819 TRACE_INTERFACE_VTABLE (printf ("[NEWSLOT CHECK FAILED]"));
2820 return FALSE;
2822 } else {
2823 TRACE_INTERFACE_VTABLE (printf ("[FULL SLOT REFUSED]"));
2826 if (! mono_metadata_signature_equal (mono_method_signature (cm), mono_method_signature (im))) {
2827 TRACE_INTERFACE_VTABLE (printf ("[SIGNATURE CHECK FAILED "));
2828 TRACE_INTERFACE_VTABLE (print_method_signatures (im, cm));
2829 TRACE_INTERFACE_VTABLE (printf ("]"));
2830 return FALSE;
2832 TRACE_INTERFACE_VTABLE (printf ("[SECURITY CHECKS]"));
2833 /* CAS - SecurityAction.InheritanceDemand on interface */
2834 if (security_enabled && (im->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
2835 mono_secman_inheritancedemand_method (cm, im);
2838 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
2839 check_core_clr_override_method (class, cm, im);
2840 TRACE_INTERFACE_VTABLE (printf ("[NAME CHECK OK]"));
2841 return TRUE;
2842 } else {
2843 MonoClass *ic = im->klass;
2844 const char *ic_name_space = ic->name_space;
2845 const char *ic_name = ic->name;
2846 char *subname;
2848 if (! require_newslot) {
2849 TRACE_INTERFACE_VTABLE (printf ("[INJECTED METHOD REFUSED]"));
2850 return FALSE;
2852 if (cm->klass->rank == 0) {
2853 TRACE_INTERFACE_VTABLE (printf ("[RANK CHECK FAILED]"));
2854 return FALSE;
2856 if (! mono_metadata_signature_equal (mono_method_signature (cm), mono_method_signature (im))) {
2857 TRACE_INTERFACE_VTABLE (printf ("[(INJECTED) SIGNATURE CHECK FAILED "));
2858 TRACE_INTERFACE_VTABLE (print_method_signatures (im, cm));
2859 TRACE_INTERFACE_VTABLE (printf ("]"));
2860 return FALSE;
2862 if (mono_class_get_image (ic) != mono_defaults.corlib) {
2863 TRACE_INTERFACE_VTABLE (printf ("[INTERFACE CORLIB CHECK FAILED]"));
2864 return FALSE;
2866 if ((ic_name_space == NULL) || (strcmp (ic_name_space, "System.Collections.Generic") != 0)) {
2867 TRACE_INTERFACE_VTABLE (printf ("[INTERFACE NAMESPACE CHECK FAILED]"));
2868 return FALSE;
2870 if ((ic_name == NULL) || ((strcmp (ic_name, "IEnumerable`1") != 0) && (strcmp (ic_name, "ICollection`1") != 0) && (strcmp (ic_name, "IList`1") != 0))) {
2871 TRACE_INTERFACE_VTABLE (printf ("[INTERFACE NAME CHECK FAILED]"));
2872 return FALSE;
2875 subname = strstr (cm->name, ic_name_space);
2876 if (subname != cm->name) {
2877 TRACE_INTERFACE_VTABLE (printf ("[ACTUAL NAMESPACE CHECK FAILED]"));
2878 return FALSE;
2880 subname += strlen (ic_name_space);
2881 if (subname [0] != '.') {
2882 TRACE_INTERFACE_VTABLE (printf ("[FIRST DOT CHECK FAILED]"));
2883 return FALSE;
2885 subname ++;
2886 if (strstr (subname, ic_name) != subname) {
2887 TRACE_INTERFACE_VTABLE (printf ("[ACTUAL CLASS NAME CHECK FAILED]"));
2888 return FALSE;
2890 subname += strlen (ic_name);
2891 if (subname [0] != '.') {
2892 TRACE_INTERFACE_VTABLE (printf ("[SECOND DOT CHECK FAILED]"));
2893 return FALSE;
2895 subname ++;
2896 if (strcmp (subname, im->name) != 0) {
2897 TRACE_INTERFACE_VTABLE (printf ("[METHOD NAME CHECK FAILED]"));
2898 return FALSE;
2901 TRACE_INTERFACE_VTABLE (printf ("[SECURITY CHECKS (INJECTED CASE)]"));
2902 /* CAS - SecurityAction.InheritanceDemand on interface */
2903 if (security_enabled && (im->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
2904 mono_secman_inheritancedemand_method (cm, im);
2907 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
2908 check_core_clr_override_method (class, cm, im);
2910 TRACE_INTERFACE_VTABLE (printf ("[INJECTED INTERFACE CHECK OK]"));
2911 return TRUE;
2915 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
2916 static void
2917 foreach_override (gpointer key, gpointer value, gpointer user_data) {
2918 MonoMethod *method = key;
2919 MonoMethod *override = value;
2920 MonoClass *method_class = mono_method_get_class (method);
2921 MonoClass *override_class = mono_method_get_class (override);
2923 printf (" Method '%s.%s:%s' has override '%s.%s:%s'\n",
2924 mono_class_get_namespace (method_class), mono_class_get_name (method_class), mono_method_get_name (method),
2925 mono_class_get_namespace (override_class), mono_class_get_name (override_class), mono_method_get_name (override));
2927 static void
2928 print_overrides (GHashTable *override_map, const char *message) {
2929 if (override_map) {
2930 printf ("Override map \"%s\" START:\n", message);
2931 g_hash_table_foreach (override_map, foreach_override, NULL);
2932 printf ("Override map \"%s\" END.\n", message);
2933 } else {
2934 printf ("Override map \"%s\" EMPTY.\n", message);
2937 static void
2938 print_vtable_full (MonoClass *class, MonoMethod** vtable, int size, int first_non_interface_slot, const char *message, gboolean print_interfaces) {
2939 char *full_name = mono_type_full_name (&class->byval_arg);
2940 int i;
2941 int parent_size;
2943 printf ("*** Vtable for class '%s' at \"%s\" (size %d)\n", full_name, message, size);
2945 if (print_interfaces) {
2946 print_implemented_interfaces (class);
2947 printf ("* Interfaces for class '%s' done.\nStarting vtable (size %d):\n", full_name, size);
2950 if (class->parent) {
2951 parent_size = class->parent->vtable_size;
2952 } else {
2953 parent_size = 0;
2955 for (i = 0; i < size; ++i) {
2956 MonoMethod *cm = vtable [i];
2957 if (cm) {
2958 char *cm_name = mono_method_full_name (cm, TRUE);
2959 char newness = (i < parent_size) ? 'O' : ((i < first_non_interface_slot) ? 'I' : 'N');
2960 printf (" [%c][%03d][INDEX %03d] %s\n", newness, i, cm->slot, cm_name);
2961 g_free (cm_name);
2965 g_free (full_name);
2967 #endif
2969 #if VERIFY_INTERFACE_VTABLE_CODE
2970 static int
2971 mono_method_try_get_vtable_index (MonoMethod *method)
2973 if (method->is_inflated && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
2974 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
2975 if (imethod->declaring->is_generic)
2976 return imethod->declaring->slot;
2978 return method->slot;
2981 static void
2982 mono_class_verify_vtable (MonoClass *class)
2984 int i;
2985 char *full_name = mono_type_full_name (&class->byval_arg);
2987 printf ("*** Verifying VTable of class '%s' \n", full_name);
2988 g_free (full_name);
2989 full_name = NULL;
2991 if (!class->methods)
2992 return;
2994 for (i = 0; i < class->method.count; ++i) {
2995 MonoMethod *cm = class->methods [i];
2996 int slot;
2998 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL))
2999 continue;
3001 g_free (full_name);
3002 full_name = mono_method_full_name (cm, TRUE);
3004 slot = mono_method_try_get_vtable_index (cm);
3005 if (slot >= 0) {
3006 if (slot >= class->vtable_size) {
3007 printf ("\tInvalid method %s at index %d with vtable of length %d\n", full_name, slot, class->vtable_size);
3008 continue;
3011 if (slot >= 0 && class->vtable [slot] != cm && (class->vtable [slot])) {
3012 char *other_name = class->vtable [slot] ? mono_method_full_name (class->vtable [slot], TRUE) : g_strdup ("[null value]");
3013 printf ("\tMethod %s has slot %d but vtable has %s on it\n", full_name, slot, other_name);
3014 g_free (other_name);
3016 } else
3017 printf ("\tVirtual method %s does n't have an assigned slot\n", full_name);
3019 g_free (full_name);
3021 #endif
3023 static void
3024 print_unimplemented_interface_method_info (MonoClass *class, MonoClass *ic, MonoMethod *im, int im_slot, MonoMethod **overrides, int onum) {
3025 int index;
3026 char *method_signature;
3028 for (index = 0; index < onum; ++index) {
3029 g_print (" at slot %d: %s (%d) overrides %s (%d)\n", im_slot, overrides [index*2+1]->name,
3030 overrides [index*2+1]->slot, overrides [index*2]->name, overrides [index*2]->slot);
3032 method_signature = mono_signature_get_desc (mono_method_signature (im), FALSE);
3033 printf ("no implementation for interface method %s::%s(%s) in class %s.%s\n",
3034 mono_type_get_name (&ic->byval_arg), im->name, method_signature, class->name_space, class->name);
3035 g_free (method_signature);
3036 mono_class_setup_methods (class);
3037 for (index = 0; index < class->method.count; ++index) {
3038 MonoMethod *cm = class->methods [index];
3039 method_signature = mono_signature_get_desc (mono_method_signature (cm), TRUE);
3041 printf ("METHOD %s(%s)\n", cm->name, method_signature);
3042 g_free (method_signature);
3047 * LOCKING: this is supposed to be called with the loader lock held.
3049 void
3050 mono_class_setup_vtable_general (MonoClass *class, MonoMethod **overrides, int onum)
3052 MonoClass *k, *ic;
3053 MonoMethod **vtable;
3054 int i, max_vtsize = 0, max_iid, cur_slot = 0;
3055 GPtrArray *ifaces = NULL;
3056 GHashTable *override_map = NULL;
3057 gboolean security_enabled = mono_is_security_manager_active ();
3058 MonoMethod *cm;
3059 gpointer class_iter;
3060 #if (DEBUG_INTERFACE_VTABLE_CODE|TRACE_INTERFACE_VTABLE_CODE)
3061 int first_non_interface_slot;
3062 #endif
3064 if (class->vtable)
3065 return;
3067 ifaces = mono_class_get_implemented_interfaces (class);
3068 if (ifaces) {
3069 for (i = 0; i < ifaces->len; i++) {
3070 MonoClass *ic = g_ptr_array_index (ifaces, i);
3071 max_vtsize += ic->method.count;
3073 g_ptr_array_free (ifaces, TRUE);
3074 ifaces = NULL;
3077 if (class->parent) {
3078 mono_class_init (class->parent);
3079 mono_class_setup_vtable (class->parent);
3080 max_vtsize += class->parent->vtable_size;
3081 cur_slot = class->parent->vtable_size;
3084 max_vtsize += class->method.count;
3086 vtable = alloca (sizeof (gpointer) * max_vtsize);
3087 memset (vtable, 0, sizeof (gpointer) * max_vtsize);
3089 /* printf ("METAINIT %s.%s\n", class->name_space, class->name); */
3091 cur_slot = setup_interface_offsets (class, cur_slot);
3092 max_iid = class->max_interface_id;
3093 DEBUG_INTERFACE_VTABLE (first_non_interface_slot = cur_slot);
3095 /* Optimized version for generic instances */
3096 if (class->generic_class) {
3097 MonoClass *gklass = class->generic_class->container_class;
3098 MonoMethod **tmp;
3100 mono_class_setup_vtable (gklass);
3102 tmp = mono_image_alloc0 (class->image, sizeof (gpointer) * gklass->vtable_size);
3103 class->vtable_size = gklass->vtable_size;
3104 for (i = 0; i < gklass->vtable_size; ++i)
3105 if (gklass->vtable [i]) {
3106 tmp [i] = mono_class_inflate_generic_method_full (gklass->vtable [i], class, mono_class_get_context (class));
3107 tmp [i]->slot = gklass->vtable [i]->slot;
3109 mono_memory_barrier ();
3110 class->vtable = tmp;
3112 /* Have to set method->slot for abstract virtual methods */
3113 if (class->methods && gklass->methods) {
3114 for (i = 0; i < class->method.count; ++i)
3115 if (class->methods [i]->slot == -1)
3116 class->methods [i]->slot = gklass->methods [i]->slot;
3119 return;
3122 if (class->parent && class->parent->vtable_size) {
3123 MonoClass *parent = class->parent;
3124 int i;
3126 memcpy (vtable, parent->vtable, sizeof (gpointer) * parent->vtable_size);
3128 // Also inherit parent interface vtables, just as a starting point.
3129 // This is needed otherwise bug-77127.exe fails when the property methods
3130 // have different names in the iterface and the class, because for child
3131 // classes the ".override" information is not used anymore.
3132 for (i = 0; i < parent->interface_offsets_count; i++) {
3133 MonoClass *parent_interface = parent->interfaces_packed [i];
3134 int interface_offset = mono_class_interface_offset (class, parent_interface);
3136 if (interface_offset >= parent->vtable_size) {
3137 int parent_interface_offset = mono_class_interface_offset (parent, parent_interface);
3138 int j;
3140 mono_class_setup_methods (parent_interface);
3141 TRACE_INTERFACE_VTABLE (printf (" +++ Inheriting interface %s.%s\n", parent_interface->name_space, parent_interface->name));
3142 for (j = 0; j < parent_interface->method.count; j++) {
3143 vtable [interface_offset + j] = parent->vtable [parent_interface_offset + j];
3144 TRACE_INTERFACE_VTABLE (printf (" --- Inheriting: [%03d][(%03d)+(%03d)] => [%03d][(%03d)+(%03d)]\n",
3145 parent_interface_offset + j, parent_interface_offset, j,
3146 interface_offset + j, interface_offset, j));
3153 TRACE_INTERFACE_VTABLE (print_vtable_full (class, vtable, cur_slot, first_non_interface_slot, "AFTER INHERITING PARENT VTABLE", TRUE));
3154 /* override interface methods */
3155 for (i = 0; i < onum; i++) {
3156 MonoMethod *decl = overrides [i*2];
3157 if (MONO_CLASS_IS_INTERFACE (decl->klass)) {
3158 int dslot;
3159 dslot = mono_method_get_vtable_slot (decl) + mono_class_interface_offset (class, decl->klass);
3160 vtable [dslot] = overrides [i*2 + 1];
3161 vtable [dslot]->slot = dslot;
3162 if (!override_map)
3163 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
3165 g_hash_table_insert (override_map, overrides [i * 2], overrides [i * 2 + 1]);
3167 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3168 check_core_clr_override_method (class, vtable [dslot], decl);
3171 TRACE_INTERFACE_VTABLE (print_overrides (override_map, "AFTER OVERRIDING INTERFACE METHODS"));
3172 TRACE_INTERFACE_VTABLE (print_vtable_full (class, vtable, cur_slot, first_non_interface_slot, "AFTER OVERRIDING INTERFACE METHODS", FALSE));
3174 // Loop on all implemented interfaces...
3175 for (i = 0; i < class->interface_offsets_count; i++) {
3176 MonoClass *parent = class->parent;
3177 int ic_offset;
3178 gboolean interface_is_explicitly_implemented_by_class;
3179 int im_index;
3181 ic = class->interfaces_packed [i];
3182 ic_offset = mono_class_interface_offset (class, ic);
3184 mono_class_setup_methods (ic);
3186 // Check if this interface is explicitly implemented (instead of just inherited)
3187 if (parent != NULL) {
3188 int implemented_interfaces_index;
3189 interface_is_explicitly_implemented_by_class = FALSE;
3190 for (implemented_interfaces_index = 0; implemented_interfaces_index < class->interface_count; implemented_interfaces_index++) {
3191 if (ic == class->interfaces [implemented_interfaces_index]) {
3192 interface_is_explicitly_implemented_by_class = TRUE;
3193 break;
3196 } else {
3197 interface_is_explicitly_implemented_by_class = TRUE;
3200 // Loop on all interface methods...
3201 for (im_index = 0; im_index < ic->method.count; im_index++) {
3202 MonoMethod *im = ic->methods [im_index];
3203 int im_slot = ic_offset + im->slot;
3204 MonoMethod *override_im = (override_map != NULL) ? g_hash_table_lookup (override_map, im) : NULL;
3206 if (im->flags & METHOD_ATTRIBUTE_STATIC)
3207 continue;
3209 // If there is an explicit implementation, just use it right away,
3210 // otherwise look for a matching method
3211 if (override_im == NULL) {
3212 int cm_index;
3213 gpointer iter;
3214 MonoMethod *cm;
3216 // First look for a suitable method among the class methods
3217 iter = NULL;
3218 while ((cm = mono_class_get_virtual_methods (class, &iter))) {
3219 TRACE_INTERFACE_VTABLE (printf (" For slot %d ('%s'.'%s':'%s'), trying method '%s'.'%s':'%s'... [EXPLICIT IMPLEMENTATION = %d][SLOT IS NULL = %d]", im_slot, ic->name_space, ic->name, im->name, cm->klass->name_space, cm->klass->name, cm->name, interface_is_explicitly_implemented_by_class, (vtable [im_slot] == NULL)));
3220 if (check_interface_method_override (class, im, cm, TRUE, interface_is_explicitly_implemented_by_class, (vtable [im_slot] == NULL), security_enabled)) {
3221 TRACE_INTERFACE_VTABLE (printf ("[check ok]: ASSIGNING"));
3222 vtable [im_slot] = cm;
3223 /* Why do we need this? */
3224 if (cm->slot < 0) {
3225 cm->slot = im_slot;
3228 TRACE_INTERFACE_VTABLE (printf ("\n"));
3231 // If the slot is still empty, look in all the inherited virtual methods...
3232 if ((vtable [im_slot] == NULL) && class->parent != NULL) {
3233 MonoClass *parent = class->parent;
3234 // Reverse order, so that last added methods are preferred
3235 for (cm_index = parent->vtable_size - 1; cm_index >= 0; cm_index--) {
3236 MonoMethod *cm = parent->vtable [cm_index];
3238 TRACE_INTERFACE_VTABLE ((cm != NULL) && printf (" For slot %d ('%s'.'%s':'%s'), trying (ancestor) method '%s'.'%s':'%s'... ", im_slot, ic->name_space, ic->name, im->name, cm->klass->name_space, cm->klass->name, cm->name));
3239 if ((cm != NULL) && check_interface_method_override (class, im, cm, FALSE, FALSE, TRUE, security_enabled)) {
3240 TRACE_INTERFACE_VTABLE (printf ("[everything ok]: ASSIGNING"));
3241 vtable [im_slot] = cm;
3242 /* Why do we need this? */
3243 if (cm->slot < 0) {
3244 cm->slot = im_slot;
3246 break;
3248 TRACE_INTERFACE_VTABLE ((cm != NULL) && printf ("\n"));
3251 } else {
3252 g_assert (vtable [im_slot] == override_im);
3257 // If the class is not abstract, check that all its interface slots are full.
3258 // The check is done here and not directly at the end of the loop above because
3259 // it can happen (for injected generic array interfaces) that the same slot is
3260 // processed multiple times (those interfaces have overlapping slots), and it
3261 // will not always be the first pass the one that fills the slot.
3262 if (! (class->flags & TYPE_ATTRIBUTE_ABSTRACT)) {
3263 for (i = 0; i < class->interface_offsets_count; i++) {
3264 int ic_offset;
3265 int im_index;
3267 ic = class->interfaces_packed [i];
3268 ic_offset = mono_class_interface_offset (class, ic);
3270 for (im_index = 0; im_index < ic->method.count; im_index++) {
3271 MonoMethod *im = ic->methods [im_index];
3272 int im_slot = ic_offset + im->slot;
3274 if (im->flags & METHOD_ATTRIBUTE_STATIC)
3275 continue;
3277 TRACE_INTERFACE_VTABLE (printf (" [class is not abstract, checking slot %d for interface '%s'.'%s', method %s, slot check is %d]\n",
3278 im_slot, ic->name_space, ic->name, im->name, (vtable [im_slot] == NULL)));
3279 if (vtable [im_slot] == NULL) {
3280 print_unimplemented_interface_method_info (class, ic, im, im_slot, overrides, onum);
3281 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3282 if (override_map)
3283 g_hash_table_destroy (override_map);
3284 return;
3290 TRACE_INTERFACE_VTABLE (print_vtable_full (class, vtable, cur_slot, first_non_interface_slot, "AFTER SETTING UP INTERFACE METHODS", FALSE));
3291 class_iter = NULL;
3292 while ((cm = mono_class_get_virtual_methods (class, &class_iter))) {
3294 * If the method is REUSE_SLOT, we must check in the
3295 * base class for a method to override.
3297 if (!(cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
3298 int slot = -1;
3299 for (k = class->parent; k ; k = k->parent) {
3300 gpointer k_iter;
3301 MonoMethod *m1;
3303 k_iter = NULL;
3304 while ((m1 = mono_class_get_virtual_methods (k, &k_iter))) {
3305 MonoMethodSignature *cmsig, *m1sig;
3307 cmsig = mono_method_signature (cm);
3308 m1sig = mono_method_signature (m1);
3310 if (!cmsig || !m1sig) {
3311 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3312 return;
3315 if (!strcmp(cm->name, m1->name) &&
3316 mono_metadata_signature_equal (cmsig, m1sig)) {
3318 /* CAS - SecurityAction.InheritanceDemand */
3319 if (security_enabled && (m1->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
3320 mono_secman_inheritancedemand_method (cm, m1);
3323 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3324 check_core_clr_override_method (class, cm, m1);
3326 slot = mono_method_get_vtable_slot (m1);
3327 g_assert (cm->slot < max_vtsize);
3328 if (!override_map)
3329 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
3330 g_hash_table_insert (override_map, m1, cm);
3331 break;
3334 if (slot >= 0)
3335 break;
3337 if (slot >= 0)
3338 cm->slot = slot;
3341 if (cm->slot < 0)
3342 cm->slot = cur_slot++;
3344 if (!(cm->flags & METHOD_ATTRIBUTE_ABSTRACT))
3345 vtable [cm->slot] = cm;
3348 /* override non interface methods */
3349 for (i = 0; i < onum; i++) {
3350 MonoMethod *decl = overrides [i*2];
3351 if (!MONO_CLASS_IS_INTERFACE (decl->klass)) {
3352 g_assert (decl->slot != -1);
3353 vtable [decl->slot] = overrides [i*2 + 1];
3354 overrides [i * 2 + 1]->slot = decl->slot;
3355 if (!override_map)
3356 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
3357 g_hash_table_insert (override_map, decl, overrides [i * 2 + 1]);
3359 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3360 check_core_clr_override_method (class, vtable [decl->slot], decl);
3365 * If a method occupies more than one place in the vtable, and it is
3366 * overriden, then change the other occurances too.
3368 if (override_map) {
3369 for (i = 0; i < max_vtsize; ++i)
3370 if (vtable [i]) {
3371 MonoMethod *cm = g_hash_table_lookup (override_map, vtable [i]);
3372 if (cm)
3373 vtable [i] = cm;
3376 g_hash_table_destroy (override_map);
3379 if (class->generic_class) {
3380 MonoClass *gklass = class->generic_class->container_class;
3382 mono_class_init (gklass);
3384 class->vtable_size = MAX (gklass->vtable_size, cur_slot);
3385 } else {
3386 /* Check that the vtable_size value computed in mono_class_init () is correct */
3387 if (class->vtable_size)
3388 g_assert (cur_slot == class->vtable_size);
3389 class->vtable_size = cur_slot;
3392 /* Try to share the vtable with our parent. */
3393 if (class->parent && (class->parent->vtable_size == class->vtable_size) && (memcmp (class->parent->vtable, vtable, sizeof (gpointer) * class->vtable_size) == 0)) {
3394 mono_memory_barrier ();
3395 class->vtable = class->parent->vtable;
3396 } else {
3397 MonoMethod **tmp = mono_image_alloc0 (class->image, sizeof (gpointer) * class->vtable_size);
3398 memcpy (tmp, vtable, sizeof (gpointer) * class->vtable_size);
3399 mono_memory_barrier ();
3400 class->vtable = tmp;
3403 DEBUG_INTERFACE_VTABLE (print_vtable_full (class, class->vtable, class->vtable_size, first_non_interface_slot, "FINALLY", FALSE));
3404 if (mono_print_vtable) {
3405 int icount = 0;
3407 print_implemented_interfaces (class);
3409 for (i = 0; i <= max_iid; i++)
3410 if (MONO_CLASS_IMPLEMENTS_INTERFACE (class, i))
3411 icount++;
3413 printf ("VTable %s (vtable entries = %d, interfaces = %d)\n", mono_type_full_name (&class->byval_arg),
3414 class->vtable_size, icount);
3416 for (i = 0; i < class->vtable_size; ++i) {
3417 MonoMethod *cm;
3419 cm = vtable [i];
3420 if (cm) {
3421 printf (" slot assigned: %03d, slot index: %03d %s\n", i, cm->slot,
3422 mono_method_full_name (cm, TRUE));
3427 if (icount) {
3428 printf ("Interfaces %s.%s (max_iid = %d)\n", class->name_space,
3429 class->name, max_iid);
3431 for (i = 0; i < class->interface_count; i++) {
3432 ic = class->interfaces [i];
3433 printf (" slot offset: %03d, method count: %03d, iid: %03d %s\n",
3434 mono_class_interface_offset (class, ic),
3435 ic->method.count, ic->interface_id, mono_type_full_name (&ic->byval_arg));
3438 for (k = class->parent; k ; k = k->parent) {
3439 for (i = 0; i < k->interface_count; i++) {
3440 ic = k->interfaces [i];
3441 printf (" slot offset: %03d, method count: %03d, iid: %03d %s\n",
3442 mono_class_interface_offset (class, ic),
3443 ic->method.count, ic->interface_id, mono_type_full_name (&ic->byval_arg));
3449 VERIFY_INTERFACE_VTABLE (mono_class_verify_vtable (class));
3453 * mono_method_get_vtable_slot:
3455 * Returns method->slot, computing it if neccesary.
3456 * LOCKING: Acquires the loader lock.
3459 mono_method_get_vtable_slot (MonoMethod *method)
3461 if (method->slot == -1) {
3462 mono_class_setup_vtable (method->klass);
3463 g_assert (method->slot != -1);
3465 return method->slot;
3469 * mono_method_get_vtable_index:
3470 * @method: a method
3472 * Returns the index into the runtime vtable to access the method or,
3473 * in the case of a virtual generic method, the virtual generic method
3474 * thunk.
3477 mono_method_get_vtable_index (MonoMethod *method)
3479 if (method->is_inflated && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
3480 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
3481 if (imethod->declaring->is_generic)
3482 return mono_method_get_vtable_slot (imethod->declaring);
3484 return mono_method_get_vtable_slot (method);
3487 static MonoMethod *default_ghc = NULL;
3488 static MonoMethod *default_finalize = NULL;
3489 static int finalize_slot = -1;
3490 static int ghc_slot = -1;
3492 static void
3493 initialize_object_slots (MonoClass *class)
3495 int i;
3496 if (default_ghc)
3497 return;
3498 if (class == mono_defaults.object_class) {
3499 mono_class_setup_vtable (class);
3500 for (i = 0; i < class->vtable_size; ++i) {
3501 MonoMethod *cm = class->vtable [i];
3503 if (!strcmp (cm->name, "GetHashCode"))
3504 ghc_slot = i;
3505 else if (!strcmp (cm->name, "Finalize"))
3506 finalize_slot = i;
3509 g_assert (ghc_slot > 0);
3510 default_ghc = class->vtable [ghc_slot];
3512 g_assert (finalize_slot > 0);
3513 default_finalize = class->vtable [finalize_slot];
3517 typedef struct {
3518 MonoMethod *array_method;
3519 char *name;
3520 } GenericArrayMethodInfo;
3522 static int generic_array_method_num = 0;
3523 static GenericArrayMethodInfo *generic_array_method_info = NULL;
3525 static int
3526 generic_array_methods (MonoClass *class)
3528 int i, count_generic = 0;
3529 GList *list = NULL, *tmp;
3530 if (generic_array_method_num)
3531 return generic_array_method_num;
3532 mono_class_setup_methods (class->parent);
3533 for (i = 0; i < class->parent->method.count; i++) {
3534 MonoMethod *m = class->parent->methods [i];
3535 if (!strncmp (m->name, "InternalArray__", 15)) {
3536 count_generic++;
3537 list = g_list_prepend (list, m);
3540 list = g_list_reverse (list);
3541 generic_array_method_info = g_malloc (sizeof (GenericArrayMethodInfo) * count_generic);
3542 i = 0;
3543 for (tmp = list; tmp; tmp = tmp->next) {
3544 const char *mname, *iname;
3545 gchar *name;
3546 MonoMethod *m = tmp->data;
3547 generic_array_method_info [i].array_method = m;
3548 if (!strncmp (m->name, "InternalArray__ICollection_", 27)) {
3549 iname = "System.Collections.Generic.ICollection`1.";
3550 mname = m->name + 27;
3551 } else if (!strncmp (m->name, "InternalArray__IEnumerable_", 27)) {
3552 iname = "System.Collections.Generic.IEnumerable`1.";
3553 mname = m->name + 27;
3554 } else if (!strncmp (m->name, "InternalArray__", 15)) {
3555 iname = "System.Collections.Generic.IList`1.";
3556 mname = m->name + 15;
3557 } else {
3558 g_assert_not_reached ();
3561 name = mono_image_alloc (mono_defaults.corlib, strlen (iname) + strlen (mname) + 1);
3562 strcpy (name, iname);
3563 strcpy (name + strlen (iname), mname);
3564 generic_array_method_info [i].name = name;
3565 i++;
3567 /*g_print ("array generic methods: %d\n", count_generic);*/
3569 generic_array_method_num = count_generic;
3570 g_list_free (list);
3571 return generic_array_method_num;
3574 static void
3575 setup_generic_array_ifaces (MonoClass *class, MonoClass *iface, MonoMethod **methods, int pos)
3577 MonoGenericContext tmp_context;
3578 int i;
3580 tmp_context.class_inst = NULL;
3581 tmp_context.method_inst = iface->generic_class->context.class_inst;
3582 //g_print ("setting up array interface: %s\n", mono_type_get_name_full (&iface->byval_arg, 0));
3584 for (i = 0; i < generic_array_method_num; i++) {
3585 MonoMethod *m = generic_array_method_info [i].array_method;
3586 MonoMethod *inflated;
3588 inflated = mono_class_inflate_generic_method (m, &tmp_context);
3589 methods [pos++] = mono_marshal_get_generic_array_helper (class, iface, generic_array_method_info [i].name, inflated);
3593 static char*
3594 concat_two_strings_with_zero (MonoImage *image, const char *s1, const char *s2)
3596 int len = strlen (s1) + strlen (s2) + 2;
3597 char *s = mono_image_alloc (image, len);
3598 int result;
3600 result = g_snprintf (s, len, "%s%c%s", s1, '\0', s2);
3601 g_assert (result == len - 1);
3603 return s;
3606 static void
3607 set_failure_from_loader_error (MonoClass *class, MonoLoaderError *error)
3609 gpointer exception_data = NULL;
3611 switch (error->exception_type) {
3612 case MONO_EXCEPTION_TYPE_LOAD:
3613 exception_data = concat_two_strings_with_zero (class->image, error->class_name, error->assembly_name);
3614 break;
3616 case MONO_EXCEPTION_MISSING_METHOD:
3617 exception_data = concat_two_strings_with_zero (class->image, error->class_name, error->member_name);
3618 break;
3620 case MONO_EXCEPTION_MISSING_FIELD: {
3621 const char *name_space = error->klass->name_space ? error->klass->name_space : NULL;
3622 const char *class_name;
3624 if (name_space)
3625 class_name = g_strdup_printf ("%s.%s", name_space, error->klass->name);
3626 else
3627 class_name = error->klass->name;
3629 exception_data = concat_two_strings_with_zero (class->image, class_name, error->member_name);
3631 if (name_space)
3632 g_free ((void*)class_name);
3633 break;
3636 case MONO_EXCEPTION_FILE_NOT_FOUND: {
3637 const char *msg;
3639 if (error->ref_only)
3640 msg = "Cannot resolve dependency to assembly '%s' because it has not been preloaded. When using the ReflectionOnly APIs, dependent assemblies must be pre-loaded or loaded on demand through the ReflectionOnlyAssemblyResolve event.";
3641 else
3642 msg = "Could not load file or assembly '%s' or one of its dependencies.";
3644 exception_data = concat_two_strings_with_zero (class->image, msg, error->assembly_name);
3645 break;
3648 case MONO_EXCEPTION_BAD_IMAGE:
3649 exception_data = error->msg;
3650 break;
3652 default :
3653 g_assert_not_reached ();
3656 mono_class_set_failure (class, error->exception_type, exception_data);
3659 static void
3660 check_core_clr_inheritance (MonoClass *class)
3662 MonoSecurityCoreCLRLevel class_level, parent_level;
3663 MonoClass *parent = class->parent;
3665 if (!parent)
3666 return;
3668 class_level = mono_security_core_clr_class_level (class);
3669 parent_level = mono_security_core_clr_class_level (parent);
3671 if (class_level < parent_level)
3672 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3676 * mono_class_init:
3677 * @class: the class to initialize
3679 * Compute the instance_size, class_size and other infos that cannot be
3680 * computed at mono_class_get() time. Also compute vtable_size if possible.
3681 * Returns TRUE on success or FALSE if there was a problem in loading
3682 * the type (incorrect assemblies, missing assemblies, methods, etc).
3684 * LOCKING: Acquires the loader lock.
3686 gboolean
3687 mono_class_init (MonoClass *class)
3689 int i;
3690 MonoCachedClassInfo cached_info;
3691 gboolean has_cached_info;
3692 int class_init_ok = TRUE;
3694 g_assert (class);
3696 /* Double-checking locking pattern */
3697 if (class->inited)
3698 return class->exception_type == MONO_EXCEPTION_NONE;
3700 /*g_print ("Init class %s\n", class->name);*/
3702 /* We do everything inside the lock to prevent races */
3703 mono_loader_lock ();
3705 if (class->inited) {
3706 mono_loader_unlock ();
3707 /* Somebody might have gotten in before us */
3708 return class->exception_type == MONO_EXCEPTION_NONE;
3711 if (class->init_pending) {
3712 mono_loader_unlock ();
3713 /* this indicates a cyclic dependency */
3714 g_error ("pending init %s.%s\n", class->name_space, class->name);
3717 class->init_pending = 1;
3719 /* CAS - SecurityAction.InheritanceDemand */
3720 if (mono_is_security_manager_active () && class->parent && (class->parent->flags & TYPE_ATTRIBUTE_HAS_SECURITY)) {
3721 mono_secman_inheritancedemand_class (class, class->parent);
3724 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3725 check_core_clr_inheritance (class);
3727 mono_stats.initialized_class_count++;
3729 if (class->generic_class && !class->generic_class->is_dynamic) {
3730 MonoClass *gklass = class->generic_class->container_class;
3732 mono_stats.generic_class_count++;
3734 class->method = gklass->method;
3735 class->field = gklass->field;
3737 mono_class_init (gklass);
3738 // FIXME: Why is this needed ?
3739 mono_class_setup_methods (gklass);
3741 if (MONO_CLASS_IS_INTERFACE (class))
3742 class->interface_id = mono_get_unique_iid (class);
3745 if (class->parent && !class->parent->inited)
3746 mono_class_init (class->parent);
3748 has_cached_info = mono_class_get_cached_class_info (class, &cached_info);
3750 if (class->generic_class || class->image->dynamic || !class->type_token || (has_cached_info && !cached_info.has_nested_classes))
3751 class->nested_classes_inited = TRUE;
3754 * Computes the size used by the fields, and their locations
3756 if (has_cached_info) {
3757 class->instance_size = cached_info.instance_size;
3758 class->sizes.class_size = cached_info.class_size;
3759 class->packing_size = cached_info.packing_size;
3760 class->min_align = cached_info.min_align;
3761 class->blittable = cached_info.blittable;
3762 class->has_references = cached_info.has_references;
3763 class->has_static_refs = cached_info.has_static_refs;
3764 class->no_special_static_fields = cached_info.no_special_static_fields;
3766 else
3767 if (!class->size_inited){
3768 mono_class_setup_fields (class);
3769 if (class->exception_type || mono_loader_get_last_error ()){
3770 class_init_ok = FALSE;
3771 goto leave;
3775 /* Initialize arrays */
3776 if (class->rank) {
3777 class->method.count = 3 + (class->rank > 1? 2: 1);
3779 if (class->interface_count) {
3780 int count_generic = generic_array_methods (class);
3781 class->method.count += class->interface_count * count_generic;
3785 mono_class_setup_supertypes (class);
3787 if (!default_ghc)
3788 initialize_object_slots (class);
3791 * Initialize the rest of the data without creating a generic vtable if possible.
3792 * If possible, also compute vtable_size, so mono_class_create_runtime_vtable () can
3793 * also avoid computing a generic vtable.
3795 if (has_cached_info) {
3796 /* AOT case */
3797 class->vtable_size = cached_info.vtable_size;
3798 class->has_finalize = cached_info.has_finalize;
3799 class->ghcimpl = cached_info.ghcimpl;
3800 class->has_cctor = cached_info.has_cctor;
3801 } else if (class->rank == 1 && class->byval_arg.type == MONO_TYPE_SZARRAY) {
3802 static int szarray_vtable_size = 0;
3804 /* SZARRAY case */
3805 if (!szarray_vtable_size) {
3806 mono_class_setup_vtable (class);
3807 szarray_vtable_size = class->vtable_size;
3808 } else {
3809 class->vtable_size = szarray_vtable_size;
3811 } else if (class->generic_class && !MONO_CLASS_IS_INTERFACE (class)) {
3812 MonoClass *gklass = class->generic_class->container_class;
3814 /* Generic instance case */
3815 class->ghcimpl = gklass->ghcimpl;
3816 class->has_finalize = gklass->has_finalize;
3817 class->has_cctor = gklass->has_cctor;
3819 mono_class_setup_vtable (gklass);
3820 if (gklass->exception_type)
3821 goto fail;
3823 class->vtable_size = gklass->vtable_size;
3824 } else {
3825 /* General case */
3827 /* ghcimpl is not currently used
3828 class->ghcimpl = 1;
3829 if (class->parent) {
3830 MonoMethod *cmethod = class->vtable [ghc_slot];
3831 if (cmethod->is_inflated)
3832 cmethod = ((MonoMethodInflated*)cmethod)->declaring;
3833 if (cmethod == default_ghc) {
3834 class->ghcimpl = 0;
3839 /* Interfaces and valuetypes are not supposed to have finalizers */
3840 if (!(MONO_CLASS_IS_INTERFACE (class) || class->valuetype)) {
3841 MonoMethod *cmethod = NULL;
3843 if (class->parent && class->parent->has_finalize) {
3844 class->has_finalize = 1;
3845 } else {
3846 if (class->type_token) {
3847 cmethod = find_method_in_metadata (class, "Finalize", 0, METHOD_ATTRIBUTE_VIRTUAL);
3848 } else if (class->parent) {
3849 /* FIXME: Optimize this */
3850 mono_class_setup_vtable (class);
3851 if (class->exception_type || mono_loader_get_last_error ())
3852 goto fail;
3853 cmethod = class->vtable [finalize_slot];
3856 if (cmethod) {
3857 /* Check that this is really the finalizer method */
3858 mono_class_setup_vtable (class);
3859 if (class->exception_type || mono_loader_get_last_error ())
3860 goto fail;
3862 class->has_finalize = 0;
3863 if (class->parent) {
3864 cmethod = class->vtable [finalize_slot];
3865 if (cmethod->is_inflated)
3866 cmethod = ((MonoMethodInflated*)cmethod)->declaring;
3867 if (cmethod != default_finalize) {
3868 class->has_finalize = 1;
3875 /* C# doesn't allow interfaces to have cctors */
3876 if (!MONO_CLASS_IS_INTERFACE (class) || class->image != mono_defaults.corlib) {
3877 MonoMethod *cmethod = NULL;
3879 if (class->type_token) {
3880 cmethod = find_method_in_metadata (class, ".cctor", 0, METHOD_ATTRIBUTE_SPECIAL_NAME);
3881 /* The find_method function ignores the 'flags' argument */
3882 if (cmethod && (cmethod->flags & METHOD_ATTRIBUTE_SPECIAL_NAME))
3883 class->has_cctor = 1;
3884 } else {
3885 mono_class_setup_methods (class);
3887 for (i = 0; i < class->method.count; ++i) {
3888 MonoMethod *method = class->methods [i];
3889 if ((method->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) &&
3890 (strcmp (".cctor", method->name) == 0)) {
3891 class->has_cctor = 1;
3892 break;
3899 if (!mono_setup_vtable_in_class_init) {
3901 * This is an embedding API break, since the caller might assume that
3902 * mono_class_init () constructs a generic vtable, so vtable construction errors
3903 * are visible right after the mono_class_init (), and not after
3904 * mono_class_vtable ().
3906 if (class->parent) {
3907 /* This will compute class->parent->vtable_size for some classes */
3908 mono_class_init (class->parent);
3909 if (class->parent->exception_type || mono_loader_get_last_error ())
3910 goto fail;
3911 if (!class->parent->vtable_size) {
3912 /* FIXME: Get rid of this somehow */
3913 mono_class_setup_vtable (class->parent);
3914 if (class->parent->exception_type || mono_loader_get_last_error ())
3915 goto fail;
3917 setup_interface_offsets (class, class->parent->vtable_size);
3918 } else {
3919 setup_interface_offsets (class, 0);
3921 } else {
3922 mono_class_setup_vtable (class);
3924 if (MONO_CLASS_IS_INTERFACE (class))
3925 setup_interface_offsets (class, 0);
3928 if (mono_verifier_is_enabled_for_class (class) && !mono_verifier_verify_class (class)) {
3929 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, concat_two_strings_with_zero (class->image, class->name, class->image->assembly_name));
3930 class_init_ok = FALSE;
3933 goto leave;
3935 fail:
3936 class_init_ok = FALSE;
3938 leave:
3939 /* Because of the double-checking locking pattern */
3940 mono_memory_barrier ();
3941 class->inited = 1;
3942 class->init_pending = 0;
3944 if (mono_loader_get_last_error ()) {
3945 if (class->exception_type == MONO_EXCEPTION_NONE)
3946 set_failure_from_loader_error (class, mono_loader_get_last_error ());
3948 mono_loader_clear_error ();
3951 mono_loader_unlock ();
3953 if (mono_debugger_class_init_func)
3954 mono_debugger_class_init_func (class);
3956 return class_init_ok;
3959 static gboolean
3960 is_corlib_image (MonoImage *image)
3962 /* FIXME: allow the dynamic case for our compilers and with full trust */
3963 if (image->dynamic)
3964 return image->assembly && !strcmp (image->assembly->aname.name, "mscorlib");
3965 else
3966 return image == mono_defaults.corlib;
3970 * LOCKING: this assumes the loader lock is held
3972 void
3973 mono_class_setup_mono_type (MonoClass *class)
3975 const char *name = class->name;
3976 const char *nspace = class->name_space;
3977 gboolean is_corlib = is_corlib_image (class->image);
3979 class->this_arg.byref = 1;
3980 class->this_arg.data.klass = class;
3981 class->this_arg.type = MONO_TYPE_CLASS;
3982 class->byval_arg.data.klass = class;
3983 class->byval_arg.type = MONO_TYPE_CLASS;
3985 if (is_corlib && !strcmp (nspace, "System")) {
3986 if (!strcmp (name, "ValueType")) {
3988 * do not set the valuetype bit for System.ValueType.
3989 * class->valuetype = 1;
3991 class->blittable = TRUE;
3992 } else if (!strcmp (name, "Enum")) {
3994 * do not set the valuetype bit for System.Enum.
3995 * class->valuetype = 1;
3997 class->valuetype = 0;
3998 class->enumtype = 0;
3999 } else if (!strcmp (name, "Object")) {
4000 class->this_arg.type = class->byval_arg.type = MONO_TYPE_OBJECT;
4001 } else if (!strcmp (name, "String")) {
4002 class->this_arg.type = class->byval_arg.type = MONO_TYPE_STRING;
4003 } else if (!strcmp (name, "TypedReference")) {
4004 class->this_arg.type = class->byval_arg.type = MONO_TYPE_TYPEDBYREF;
4008 if (class->valuetype) {
4009 int t = MONO_TYPE_VALUETYPE;
4011 if (is_corlib && !strcmp (nspace, "System")) {
4012 switch (*name) {
4013 case 'B':
4014 if (!strcmp (name, "Boolean")) {
4015 t = MONO_TYPE_BOOLEAN;
4016 } else if (!strcmp(name, "Byte")) {
4017 t = MONO_TYPE_U1;
4018 class->blittable = TRUE;
4020 break;
4021 case 'C':
4022 if (!strcmp (name, "Char")) {
4023 t = MONO_TYPE_CHAR;
4025 break;
4026 case 'D':
4027 if (!strcmp (name, "Double")) {
4028 t = MONO_TYPE_R8;
4029 class->blittable = TRUE;
4031 break;
4032 case 'I':
4033 if (!strcmp (name, "Int32")) {
4034 t = MONO_TYPE_I4;
4035 class->blittable = TRUE;
4036 } else if (!strcmp(name, "Int16")) {
4037 t = MONO_TYPE_I2;
4038 class->blittable = TRUE;
4039 } else if (!strcmp(name, "Int64")) {
4040 t = MONO_TYPE_I8;
4041 class->blittable = TRUE;
4042 } else if (!strcmp(name, "IntPtr")) {
4043 t = MONO_TYPE_I;
4044 class->blittable = TRUE;
4046 break;
4047 case 'S':
4048 if (!strcmp (name, "Single")) {
4049 t = MONO_TYPE_R4;
4050 class->blittable = TRUE;
4051 } else if (!strcmp(name, "SByte")) {
4052 t = MONO_TYPE_I1;
4053 class->blittable = TRUE;
4055 break;
4056 case 'U':
4057 if (!strcmp (name, "UInt32")) {
4058 t = MONO_TYPE_U4;
4059 class->blittable = TRUE;
4060 } else if (!strcmp(name, "UInt16")) {
4061 t = MONO_TYPE_U2;
4062 class->blittable = TRUE;
4063 } else if (!strcmp(name, "UInt64")) {
4064 t = MONO_TYPE_U8;
4065 class->blittable = TRUE;
4066 } else if (!strcmp(name, "UIntPtr")) {
4067 t = MONO_TYPE_U;
4068 class->blittable = TRUE;
4070 break;
4071 case 'T':
4072 if (!strcmp (name, "TypedReference")) {
4073 t = MONO_TYPE_TYPEDBYREF;
4074 class->blittable = TRUE;
4076 break;
4077 case 'V':
4078 if (!strcmp (name, "Void")) {
4079 t = MONO_TYPE_VOID;
4081 break;
4082 default:
4083 break;
4086 class->this_arg.type = class->byval_arg.type = t;
4089 if (MONO_CLASS_IS_INTERFACE (class))
4090 class->interface_id = mono_get_unique_iid (class);
4095 * LOCKING: this assumes the loader lock is held
4097 void
4098 mono_class_setup_parent (MonoClass *class, MonoClass *parent)
4100 gboolean system_namespace;
4101 gboolean is_corlib = is_corlib_image (class->image);
4103 system_namespace = !strcmp (class->name_space, "System") && is_corlib;
4105 /* if root of the hierarchy */
4106 if (system_namespace && !strcmp (class->name, "Object")) {
4107 class->parent = NULL;
4108 class->instance_size = sizeof (MonoObject);
4109 return;
4111 if (!strcmp (class->name, "<Module>")) {
4112 class->parent = NULL;
4113 class->instance_size = 0;
4114 return;
4117 if (!MONO_CLASS_IS_INTERFACE (class)) {
4118 /* Imported COM Objects always derive from __ComObject. */
4119 if (MONO_CLASS_IS_IMPORT (class)) {
4120 mono_init_com_types ();
4121 if (parent == mono_defaults.object_class)
4122 parent = mono_defaults.com_object_class;
4124 if (!parent) {
4125 /* set the parent to something useful and safe, but mark the type as broken */
4126 parent = mono_defaults.object_class;
4127 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4130 class->parent = parent;
4132 if (parent->generic_class && !parent->name) {
4134 * If the parent is a generic instance, we may get
4135 * called before it is fully initialized, especially
4136 * before it has its name.
4138 return;
4141 class->marshalbyref = parent->marshalbyref;
4142 class->contextbound = parent->contextbound;
4143 class->delegate = parent->delegate;
4144 if (MONO_CLASS_IS_IMPORT (class))
4145 class->is_com_object = 1;
4146 else
4147 class->is_com_object = parent->is_com_object;
4149 if (system_namespace) {
4150 if (*class->name == 'M' && !strcmp (class->name, "MarshalByRefObject"))
4151 class->marshalbyref = 1;
4153 if (*class->name == 'C' && !strcmp (class->name, "ContextBoundObject"))
4154 class->contextbound = 1;
4156 if (*class->name == 'D' && !strcmp (class->name, "Delegate"))
4157 class->delegate = 1;
4160 if (class->parent->enumtype || (is_corlib_image (class->parent->image) && (strcmp (class->parent->name, "ValueType") == 0) &&
4161 (strcmp (class->parent->name_space, "System") == 0)))
4162 class->valuetype = 1;
4163 if (is_corlib_image (class->parent->image) && ((strcmp (class->parent->name, "Enum") == 0) && (strcmp (class->parent->name_space, "System") == 0))) {
4164 class->valuetype = class->enumtype = 1;
4166 /*class->enumtype = class->parent->enumtype; */
4167 mono_class_setup_supertypes (class);
4168 } else {
4169 /* initialize com types if COM interfaces are present */
4170 if (MONO_CLASS_IS_IMPORT (class))
4171 mono_init_com_types ();
4172 class->parent = NULL;
4178 * mono_class_setup_supertypes:
4179 * @class: a class
4181 * Build the data structure needed to make fast type checks work.
4182 * This currently sets two fields in @class:
4183 * - idepth: distance between @class and System.Object in the type
4184 * hierarchy + 1
4185 * - supertypes: array of classes: each element has a class in the hierarchy
4186 * starting from @class up to System.Object
4188 * LOCKING: this assumes the loader lock is held
4190 void
4191 mono_class_setup_supertypes (MonoClass *class)
4193 int ms;
4195 if (class->supertypes)
4196 return;
4198 if (class->parent && !class->parent->supertypes)
4199 mono_class_setup_supertypes (class->parent);
4200 if (class->parent)
4201 class->idepth = class->parent->idepth + 1;
4202 else
4203 class->idepth = 1;
4205 ms = MAX (MONO_DEFAULT_SUPERTABLE_SIZE, class->idepth);
4206 class->supertypes = mono_image_alloc0 (class->image, sizeof (MonoClass *) * ms);
4208 if (class->parent) {
4209 class->supertypes [class->idepth - 1] = class;
4210 memcpy (class->supertypes, class->parent->supertypes, class->parent->idepth * sizeof (gpointer));
4211 } else {
4212 class->supertypes [0] = class;
4217 * mono_class_create_from_typedef:
4218 * @image: image where the token is valid
4219 * @type_token: typedef token
4221 * Create the MonoClass* representing the specified type token.
4222 * @type_token must be a TypeDef token.
4224 static MonoClass *
4225 mono_class_create_from_typedef (MonoImage *image, guint32 type_token)
4227 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
4228 MonoClass *class, *parent = NULL;
4229 guint32 cols [MONO_TYPEDEF_SIZE];
4230 guint32 cols_next [MONO_TYPEDEF_SIZE];
4231 guint tidx = mono_metadata_token_index (type_token);
4232 MonoGenericContext *context = NULL;
4233 const char *name, *nspace;
4234 guint icount = 0;
4235 MonoClass **interfaces;
4236 guint32 field_last, method_last;
4237 guint32 nesting_tokeen;
4239 mono_loader_lock ();
4241 if ((class = mono_internal_hash_table_lookup (&image->class_cache, GUINT_TO_POINTER (type_token)))) {
4242 mono_loader_unlock ();
4243 return class;
4246 g_assert (mono_metadata_token_table (type_token) == MONO_TABLE_TYPEDEF);
4248 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
4250 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
4251 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
4253 class = mono_image_alloc0 (image, sizeof (MonoClass));
4255 class->name = name;
4256 class->name_space = nspace;
4258 mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
4260 class->image = image;
4261 class->type_token = type_token;
4262 class->flags = cols [MONO_TYPEDEF_FLAGS];
4264 mono_internal_hash_table_insert (&image->class_cache, GUINT_TO_POINTER (type_token), class);
4266 classes_size += sizeof (MonoClass);
4269 * Check whether we're a generic type definition.
4271 class->generic_container = mono_metadata_load_generic_params (image, class->type_token, NULL);
4272 if (class->generic_container) {
4273 class->is_generic = 1;
4274 class->generic_container->owner.klass = class;
4275 context = &class->generic_container->context;
4278 if (cols [MONO_TYPEDEF_EXTENDS]) {
4279 guint32 parent_token = mono_metadata_token_from_dor (cols [MONO_TYPEDEF_EXTENDS]);
4281 if (mono_metadata_token_table (parent_token) == MONO_TABLE_TYPESPEC) {
4282 /*WARNING: this must satisfy mono_metadata_type_hash*/
4283 class->this_arg.byref = 1;
4284 class->this_arg.data.klass = class;
4285 class->this_arg.type = MONO_TYPE_CLASS;
4286 class->byval_arg.data.klass = class;
4287 class->byval_arg.type = MONO_TYPE_CLASS;
4289 parent = mono_class_get_full (image, parent_token, context);
4291 if (parent == NULL){
4292 mono_internal_hash_table_remove (&image->class_cache, GUINT_TO_POINTER (type_token));
4293 mono_loader_unlock ();
4294 mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4295 return NULL;
4299 /* do this early so it's available for interfaces in setup_mono_type () */
4300 if ((nesting_tokeen = mono_metadata_nested_in_typedef (image, type_token)))
4301 class->nested_in = mono_class_create_from_typedef (image, nesting_tokeen);
4303 mono_class_setup_parent (class, parent);
4305 /* uses ->valuetype, which is initialized by mono_class_setup_parent above */
4306 mono_class_setup_mono_type (class);
4308 if (!class->enumtype) {
4309 if (!mono_metadata_interfaces_from_typedef_full (
4310 image, type_token, &interfaces, &icount, context)){
4311 mono_loader_unlock ();
4312 mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4313 return NULL;
4316 class->interfaces = interfaces;
4317 class->interface_count = icount;
4318 class->interfaces_inited = 1;
4321 if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_UNICODE_CLASS)
4322 class->unicode = 1;
4324 #if PLATFORM_WIN32
4325 if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_AUTO_CLASS)
4326 class->unicode = 1;
4327 #endif
4329 class->cast_class = class->element_class = class;
4331 /*g_print ("Load class %s\n", name);*/
4334 * Compute the field and method lists
4336 class->field.first = cols [MONO_TYPEDEF_FIELD_LIST] - 1;
4337 class->method.first = cols [MONO_TYPEDEF_METHOD_LIST] - 1;
4339 if (tt->rows > tidx){
4340 mono_metadata_decode_row (tt, tidx, cols_next, MONO_TYPEDEF_SIZE);
4341 field_last = cols_next [MONO_TYPEDEF_FIELD_LIST] - 1;
4342 method_last = cols_next [MONO_TYPEDEF_METHOD_LIST] - 1;
4343 } else {
4344 field_last = image->tables [MONO_TABLE_FIELD].rows;
4345 method_last = image->tables [MONO_TABLE_METHOD].rows;
4348 if (cols [MONO_TYPEDEF_FIELD_LIST] &&
4349 cols [MONO_TYPEDEF_FIELD_LIST] <= image->tables [MONO_TABLE_FIELD].rows)
4350 class->field.count = field_last - class->field.first;
4351 else
4352 class->field.count = 0;
4354 if (cols [MONO_TYPEDEF_METHOD_LIST] <= image->tables [MONO_TABLE_METHOD].rows)
4355 class->method.count = method_last - class->method.first;
4356 else
4357 class->method.count = 0;
4359 /* reserve space to store vector pointer in arrays */
4360 if (!strcmp (nspace, "System") && !strcmp (name, "Array")) {
4361 class->instance_size += 2 * sizeof (gpointer);
4362 g_assert (class->field.count == 0);
4365 if (class->enumtype) {
4366 MonoType *enum_basetype = mono_class_find_enum_basetype (class);
4367 if (!enum_basetype) {
4368 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4369 mono_loader_unlock ();
4370 return NULL;
4372 class->cast_class = class->element_class = mono_class_from_mono_type (enum_basetype);
4376 * If we're a generic type definition, load the constraints.
4377 * We must do this after the class has been constructed to make certain recursive scenarios
4378 * work.
4380 if (class->generic_container)
4381 mono_metadata_load_generic_param_constraints (
4382 image, type_token, class->generic_container);
4384 if (class->image->assembly_name && !strcmp (class->image->assembly_name, "Mono.Simd") && !strcmp (nspace, "Mono.Simd")) {
4385 if (!strncmp (name, "Vector", 6))
4386 class->simd_type = !strcmp (name + 6, "2d") || !strcmp (name + 6, "2ul") || !strcmp (name + 6, "2l") || !strcmp (name + 6, "4f") || !strcmp (name + 6, "4ui") || !strcmp (name + 6, "4i") || !strcmp (name + 6, "8s") || !strcmp (name + 6, "8us") || !strcmp (name + 6, "16b") || !strcmp (name + 6, "16sb");
4389 mono_loader_unlock ();
4391 mono_profiler_class_loaded (class, MONO_PROFILE_OK);
4393 return class;
4396 /** is klass Nullable<T>? */
4397 gboolean
4398 mono_class_is_nullable (MonoClass *klass)
4400 return klass->generic_class != NULL &&
4401 klass->generic_class->container_class == mono_defaults.generic_nullable_class;
4405 /** if klass is T? return T */
4406 MonoClass*
4407 mono_class_get_nullable_param (MonoClass *klass)
4409 g_assert (mono_class_is_nullable (klass));
4410 return mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [0]);
4414 * Create the `MonoClass' for an instantiation of a generic type.
4415 * We only do this if we actually need it.
4417 MonoClass*
4418 mono_generic_class_get_class (MonoGenericClass *gclass)
4420 MonoClass *klass, *gklass;
4422 mono_loader_lock ();
4423 if (gclass->cached_class) {
4424 mono_loader_unlock ();
4425 return gclass->cached_class;
4428 gclass->cached_class = g_malloc0 (sizeof (MonoClass));
4429 klass = gclass->cached_class;
4431 gklass = gclass->container_class;
4433 if (gklass->nested_in) {
4435 * FIXME: the nested type context should include everything the
4436 * nesting context should have, but it may also have additional
4437 * generic parameters...
4439 klass->nested_in = mono_class_inflate_generic_class (gklass->nested_in,
4440 mono_generic_class_get_context (gclass));
4443 klass->name = gklass->name;
4444 klass->name_space = gklass->name_space;
4446 mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
4448 klass->image = gklass->image;
4449 klass->flags = gklass->flags;
4450 klass->type_token = gklass->type_token;
4451 klass->field.count = gklass->field.count;
4453 klass->is_inflated = 1;
4454 klass->generic_class = gclass;
4456 klass->this_arg.type = klass->byval_arg.type = MONO_TYPE_GENERICINST;
4457 klass->this_arg.data.generic_class = klass->byval_arg.data.generic_class = gclass;
4458 klass->this_arg.byref = TRUE;
4459 klass->enumtype = gklass->enumtype;
4460 klass->valuetype = gklass->valuetype;
4462 klass->cast_class = klass->element_class = klass;
4464 if (mono_class_is_nullable (klass))
4465 klass->cast_class = klass->element_class = mono_class_get_nullable_param (klass);
4468 * We're not interested in the nested classes of a generic instance.
4469 * We use the generic type definition to look for nested classes.
4472 if (gklass->parent) {
4473 klass->parent = mono_class_inflate_generic_class (gklass->parent, mono_generic_class_get_context (gclass));
4476 if (klass->parent)
4477 mono_class_setup_parent (klass, klass->parent);
4479 if (klass->enumtype) {
4480 klass->cast_class = gklass->cast_class;
4481 klass->element_class = gklass->element_class;
4484 if (gclass->is_dynamic) {
4485 klass->inited = 1;
4487 mono_class_setup_supertypes (klass);
4489 if (klass->enumtype) {
4491 * For enums, gklass->fields might not been set, but instance_size etc. is
4492 * already set in mono_reflection_create_internal_class (). For non-enums,
4493 * these will be computed normally in mono_class_layout_fields ().
4495 klass->instance_size = gklass->instance_size;
4496 klass->sizes.class_size = gklass->sizes.class_size;
4497 klass->size_inited = 1;
4501 mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
4503 inflated_classes ++;
4504 inflated_classes_size += sizeof (MonoClass);
4506 mono_loader_unlock ();
4508 return klass;
4512 * LOCKING: Acquires the loader lock.
4514 MonoClass *
4515 mono_class_from_generic_parameter (MonoGenericParam *param, MonoImage *image, gboolean is_mvar)
4517 MonoClass *klass, **ptr;
4518 int count, pos, i;
4520 mono_loader_lock ();
4522 if (param->pklass) {
4523 mono_loader_unlock ();
4524 return param->pklass;
4527 if (!image && param->owner) {
4528 if (is_mvar) {
4529 MonoMethod *method = param->owner->owner.method;
4530 image = (method && method->klass) ? method->klass->image : NULL;
4531 } else {
4532 MonoClass *klass = param->owner->owner.klass;
4533 // FIXME: 'klass' should not be null
4534 // But, monodis creates GenericContainers without associating a owner to it
4535 image = klass ? klass->image : NULL;
4538 if (!image)
4539 /* FIXME: */
4540 image = mono_defaults.corlib;
4542 klass = mono_image_alloc0 (image, sizeof (MonoClass));
4544 classes_size += sizeof (MonoClass);
4546 if (param->name)
4547 klass->name = param->name;
4548 else {
4549 klass->name = mono_image_alloc0 (image, 16);
4550 sprintf ((char*)klass->name, is_mvar ? "!!%d" : "!%d", param->num);
4552 klass->name_space = "";
4553 mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
4555 for (count = 0, ptr = param->constraints; ptr && *ptr; ptr++, count++)
4558 pos = 0;
4559 if ((count > 0) && !MONO_CLASS_IS_INTERFACE (param->constraints [0])) {
4560 klass->parent = param->constraints [0];
4561 pos++;
4562 } else if (param->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT)
4563 klass->parent = mono_class_from_name (mono_defaults.corlib, "System", "ValueType");
4564 else
4565 klass->parent = mono_defaults.object_class;
4567 if (count - pos > 0) {
4568 klass->interface_count = count - pos;
4569 klass->interfaces = mono_image_alloc0 (image, sizeof (MonoClass *) * (count - pos));
4570 for (i = pos; i < count; i++)
4571 klass->interfaces [i - pos] = param->constraints [i];
4574 if (!image)
4575 image = mono_defaults.corlib;
4577 klass->image = image;
4579 klass->inited = TRUE;
4580 klass->cast_class = klass->element_class = klass;
4581 klass->flags = TYPE_ATTRIBUTE_PUBLIC;
4583 klass->this_arg.type = klass->byval_arg.type = is_mvar ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
4584 klass->this_arg.data.generic_param = klass->byval_arg.data.generic_param = param;
4585 klass->this_arg.byref = TRUE;
4587 if (param->owner) {
4588 guint32 owner;
4589 guint32 cols [MONO_GENERICPARAM_SIZE];
4590 MonoTableInfo *tdef = &image->tables [MONO_TABLE_GENERICPARAM];
4591 i = 0;
4593 if (is_mvar && param->owner->owner.method)
4594 i = mono_metadata_get_generic_param_row (image, param->owner->owner.method->token, &owner);
4595 else if (!is_mvar && param->owner->owner.klass)
4596 i = mono_metadata_get_generic_param_row (image, param->owner->owner.klass->type_token, &owner);
4598 if (i) {
4599 mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
4600 do {
4601 if (cols [MONO_GENERICPARAM_NUMBER] == param->num) {
4602 klass->sizes.generic_param_token = i | MONO_TOKEN_GENERIC_PARAM;
4603 break;
4605 if (++i > tdef->rows)
4606 break;
4607 mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
4608 } while (cols [MONO_GENERICPARAM_OWNER] == owner);
4612 mono_class_setup_supertypes (klass);
4614 mono_memory_barrier ();
4616 param->pklass = klass;
4618 mono_loader_unlock ();
4620 mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
4622 return klass;
4625 MonoClass *
4626 mono_ptr_class_get (MonoType *type)
4628 MonoClass *result;
4629 MonoClass *el_class;
4630 MonoImage *image;
4631 char *name;
4633 el_class = mono_class_from_mono_type (type);
4634 image = el_class->image;
4636 mono_loader_lock ();
4638 if (!image->ptr_cache)
4639 image->ptr_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4641 if ((result = g_hash_table_lookup (image->ptr_cache, el_class))) {
4642 mono_loader_unlock ();
4643 return result;
4645 result = mono_image_alloc0 (image, sizeof (MonoClass));
4647 classes_size += sizeof (MonoClass);
4649 result->parent = NULL; /* no parent for PTR types */
4650 result->name_space = el_class->name_space;
4651 name = g_strdup_printf ("%s*", el_class->name);
4652 result->name = mono_image_strdup (image, name);
4653 g_free (name);
4655 mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
4657 result->image = el_class->image;
4658 result->inited = TRUE;
4659 result->flags = TYPE_ATTRIBUTE_CLASS | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
4660 /* Can pointers get boxed? */
4661 result->instance_size = sizeof (gpointer);
4662 result->cast_class = result->element_class = el_class;
4663 result->blittable = TRUE;
4665 result->this_arg.type = result->byval_arg.type = MONO_TYPE_PTR;
4666 result->this_arg.data.type = result->byval_arg.data.type = &result->element_class->byval_arg;
4667 result->this_arg.byref = TRUE;
4669 mono_class_setup_supertypes (result);
4671 g_hash_table_insert (image->ptr_cache, el_class, result);
4673 mono_loader_unlock ();
4675 mono_profiler_class_loaded (result, MONO_PROFILE_OK);
4677 return result;
4680 static MonoClass *
4681 mono_fnptr_class_get (MonoMethodSignature *sig)
4683 MonoClass *result;
4684 static GHashTable *ptr_hash = NULL;
4686 /* FIXME: These should be allocate from a mempool as well, but which one ? */
4688 mono_loader_lock ();
4690 if (!ptr_hash)
4691 ptr_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
4693 if ((result = g_hash_table_lookup (ptr_hash, sig))) {
4694 mono_loader_unlock ();
4695 return result;
4697 result = g_new0 (MonoClass, 1);
4699 result->parent = NULL; /* no parent for PTR types */
4700 result->name_space = "System";
4701 result->name = "MonoFNPtrFakeClass";
4703 mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
4705 result->image = mono_defaults.corlib; /* need to fix... */
4706 result->inited = TRUE;
4707 result->flags = TYPE_ATTRIBUTE_CLASS; /* | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK); */
4708 /* Can pointers get boxed? */
4709 result->instance_size = sizeof (gpointer);
4710 result->cast_class = result->element_class = result;
4711 result->blittable = TRUE;
4713 result->this_arg.type = result->byval_arg.type = MONO_TYPE_FNPTR;
4714 result->this_arg.data.method = result->byval_arg.data.method = sig;
4715 result->this_arg.byref = TRUE;
4716 result->blittable = TRUE;
4718 mono_class_setup_supertypes (result);
4720 g_hash_table_insert (ptr_hash, sig, result);
4722 mono_loader_unlock ();
4724 mono_profiler_class_loaded (result, MONO_PROFILE_OK);
4726 return result;
4729 MonoClass *
4730 mono_class_from_mono_type (MonoType *type)
4732 switch (type->type) {
4733 case MONO_TYPE_OBJECT:
4734 return type->data.klass? type->data.klass: mono_defaults.object_class;
4735 case MONO_TYPE_VOID:
4736 return type->data.klass? type->data.klass: mono_defaults.void_class;
4737 case MONO_TYPE_BOOLEAN:
4738 return type->data.klass? type->data.klass: mono_defaults.boolean_class;
4739 case MONO_TYPE_CHAR:
4740 return type->data.klass? type->data.klass: mono_defaults.char_class;
4741 case MONO_TYPE_I1:
4742 return type->data.klass? type->data.klass: mono_defaults.sbyte_class;
4743 case MONO_TYPE_U1:
4744 return type->data.klass? type->data.klass: mono_defaults.byte_class;
4745 case MONO_TYPE_I2:
4746 return type->data.klass? type->data.klass: mono_defaults.int16_class;
4747 case MONO_TYPE_U2:
4748 return type->data.klass? type->data.klass: mono_defaults.uint16_class;
4749 case MONO_TYPE_I4:
4750 return type->data.klass? type->data.klass: mono_defaults.int32_class;
4751 case MONO_TYPE_U4:
4752 return type->data.klass? type->data.klass: mono_defaults.uint32_class;
4753 case MONO_TYPE_I:
4754 return type->data.klass? type->data.klass: mono_defaults.int_class;
4755 case MONO_TYPE_U:
4756 return type->data.klass? type->data.klass: mono_defaults.uint_class;
4757 case MONO_TYPE_I8:
4758 return type->data.klass? type->data.klass: mono_defaults.int64_class;
4759 case MONO_TYPE_U8:
4760 return type->data.klass? type->data.klass: mono_defaults.uint64_class;
4761 case MONO_TYPE_R4:
4762 return type->data.klass? type->data.klass: mono_defaults.single_class;
4763 case MONO_TYPE_R8:
4764 return type->data.klass? type->data.klass: mono_defaults.double_class;
4765 case MONO_TYPE_STRING:
4766 return type->data.klass? type->data.klass: mono_defaults.string_class;
4767 case MONO_TYPE_TYPEDBYREF:
4768 return type->data.klass? type->data.klass: mono_defaults.typed_reference_class;
4769 case MONO_TYPE_ARRAY:
4770 return mono_bounded_array_class_get (type->data.array->eklass, type->data.array->rank, TRUE);
4771 case MONO_TYPE_PTR:
4772 return mono_ptr_class_get (type->data.type);
4773 case MONO_TYPE_FNPTR:
4774 return mono_fnptr_class_get (type->data.method);
4775 case MONO_TYPE_SZARRAY:
4776 return mono_array_class_get (type->data.klass, 1);
4777 case MONO_TYPE_CLASS:
4778 case MONO_TYPE_VALUETYPE:
4779 return type->data.klass;
4780 case MONO_TYPE_GENERICINST:
4781 return mono_generic_class_get_class (type->data.generic_class);
4782 case MONO_TYPE_VAR:
4783 return mono_class_from_generic_parameter (type->data.generic_param, NULL, FALSE);
4784 case MONO_TYPE_MVAR:
4785 return mono_class_from_generic_parameter (type->data.generic_param, NULL, TRUE);
4786 default:
4787 g_warning ("mono_class_from_mono_type: implement me 0x%02x\n", type->type);
4788 g_assert_not_reached ();
4791 return NULL;
4795 * mono_type_retrieve_from_typespec
4796 * @image: context where the image is created
4797 * @type_spec: typespec token
4798 * @context: the generic context used to evaluate generic instantiations in
4800 static MonoType *
4801 mono_type_retrieve_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, gboolean *did_inflate)
4803 MonoType *t = mono_type_create_from_typespec (image, type_spec);
4804 if (!t)
4805 return NULL;
4806 if (context && (context->class_inst || context->method_inst)) {
4807 MonoType *inflated = inflate_generic_type (NULL, t, context);
4808 if (inflated) {
4809 t = inflated;
4810 *did_inflate = TRUE;
4813 return t;
4817 * mono_class_create_from_typespec
4818 * @image: context where the image is created
4819 * @type_spec: typespec token
4820 * @context: the generic context used to evaluate generic instantiations in
4822 static MonoClass *
4823 mono_class_create_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context)
4825 MonoClass *ret;
4826 gboolean inflated = FALSE;
4827 MonoType *t = mono_type_retrieve_from_typespec (image, type_spec, context, &inflated);
4828 if (!t)
4829 return NULL;
4830 ret = mono_class_from_mono_type (t);
4831 if (inflated)
4832 mono_metadata_free_type (t);
4833 return ret;
4837 * mono_bounded_array_class_get:
4838 * @element_class: element class
4839 * @rank: the dimension of the array class
4840 * @bounded: whenever the array has non-zero bounds
4842 * Returns: a class object describing the array with element type @element_type and
4843 * dimension @rank.
4845 MonoClass *
4846 mono_bounded_array_class_get (MonoClass *eclass, guint32 rank, gboolean bounded)
4848 MonoImage *image;
4849 MonoClass *class;
4850 MonoClass *parent = NULL;
4851 GSList *list, *rootlist;
4852 int nsize;
4853 char *name;
4854 gboolean corlib_type = FALSE;
4856 g_assert (rank <= 255);
4858 if (rank > 1)
4859 /* bounded only matters for one-dimensional arrays */
4860 bounded = FALSE;
4862 image = eclass->image;
4864 if (rank == 1 && !bounded) {
4866 * This case is very frequent not just during compilation because of calls
4867 * from mono_class_from_mono_type (), mono_array_new (),
4868 * Array:CreateInstance (), etc, so use a separate cache + a separate lock.
4870 EnterCriticalSection (&image->szarray_cache_lock);
4871 if (!image->szarray_cache)
4872 image->szarray_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4873 class = g_hash_table_lookup (image->szarray_cache, eclass);
4874 LeaveCriticalSection (&image->szarray_cache_lock);
4875 if (class)
4876 return class;
4878 mono_loader_lock ();
4879 } else {
4880 mono_loader_lock ();
4882 if (!image->array_cache)
4883 image->array_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4885 if ((rootlist = list = g_hash_table_lookup (image->array_cache, eclass))) {
4886 for (; list; list = list->next) {
4887 class = list->data;
4888 if ((class->rank == rank) && (class->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
4889 mono_loader_unlock ();
4890 return class;
4896 /* for the building corlib use System.Array from it */
4897 if (image->assembly && image->assembly->dynamic && image->assembly_name && strcmp (image->assembly_name, "mscorlib") == 0) {
4898 parent = mono_class_from_name (image, "System", "Array");
4899 corlib_type = TRUE;
4900 } else {
4901 parent = mono_defaults.array_class;
4902 if (!parent->inited)
4903 mono_class_init (parent);
4906 class = mono_image_alloc0 (image, sizeof (MonoClass));
4908 class->image = image;
4909 class->name_space = eclass->name_space;
4910 nsize = strlen (eclass->name);
4911 name = g_malloc (nsize + 2 + rank + 1);
4912 memcpy (name, eclass->name, nsize);
4913 name [nsize] = '[';
4914 if (rank > 1)
4915 memset (name + nsize + 1, ',', rank - 1);
4916 if (bounded)
4917 name [nsize + rank] = '*';
4918 name [nsize + rank + bounded] = ']';
4919 name [nsize + rank + bounded + 1] = 0;
4920 class->name = mono_image_strdup (image, name);
4921 g_free (name);
4923 mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
4925 classes_size += sizeof (MonoClass);
4927 class->type_token = 0;
4928 /* all arrays are marked serializable and sealed, bug #42779 */
4929 class->flags = TYPE_ATTRIBUTE_CLASS | TYPE_ATTRIBUTE_SERIALIZABLE | TYPE_ATTRIBUTE_SEALED |
4930 (eclass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
4931 class->parent = parent;
4932 class->instance_size = mono_class_instance_size (class->parent);
4934 if (eclass->enumtype && !mono_class_enum_basetype (eclass)) {
4935 if (!eclass->reflection_info || eclass->wastypebuilder) {
4936 g_warning ("Only incomplete TypeBuilder objects are allowed to be an enum without base_type");
4937 g_assert (eclass->reflection_info && !eclass->wastypebuilder);
4939 /* element_size -1 is ok as this is not an instantitable type*/
4940 class->sizes.element_size = -1;
4941 } else
4942 class->sizes.element_size = mono_class_array_element_size (eclass);
4944 mono_class_setup_supertypes (class);
4946 if (eclass->generic_class)
4947 mono_class_init (eclass);
4948 if (!eclass->size_inited)
4949 mono_class_setup_fields (eclass);
4950 class->has_references = MONO_TYPE_IS_REFERENCE (&eclass->byval_arg) || eclass->has_references? TRUE: FALSE;
4952 class->rank = rank;
4954 if (eclass->enumtype)
4955 class->cast_class = eclass->element_class;
4956 else
4957 class->cast_class = eclass;
4959 class->element_class = eclass;
4961 if ((rank > 1) || bounded) {
4962 MonoArrayType *at = mono_image_alloc0 (image, sizeof (MonoArrayType));
4963 class->byval_arg.type = MONO_TYPE_ARRAY;
4964 class->byval_arg.data.array = at;
4965 at->eklass = eclass;
4966 at->rank = rank;
4967 /* FIXME: complete.... */
4968 } else {
4969 class->byval_arg.type = MONO_TYPE_SZARRAY;
4970 class->byval_arg.data.klass = eclass;
4972 class->this_arg = class->byval_arg;
4973 class->this_arg.byref = 1;
4974 if (corlib_type) {
4975 class->inited = 1;
4978 class->generic_container = eclass->generic_container;
4980 if (rank == 1 && !bounded) {
4981 MonoClass *prev_class;
4983 EnterCriticalSection (&image->szarray_cache_lock);
4984 prev_class = g_hash_table_lookup (image->szarray_cache, eclass);
4985 if (prev_class)
4986 /* Someone got in before us */
4987 class = prev_class;
4988 else
4989 g_hash_table_insert (image->szarray_cache, eclass, class);
4990 LeaveCriticalSection (&image->szarray_cache_lock);
4991 } else {
4992 list = g_slist_append (rootlist, class);
4993 g_hash_table_insert (image->array_cache, eclass, list);
4996 mono_loader_unlock ();
4998 mono_profiler_class_loaded (class, MONO_PROFILE_OK);
5000 return class;
5004 * mono_array_class_get:
5005 * @element_class: element class
5006 * @rank: the dimension of the array class
5008 * Returns: a class object describing the array with element type @element_type and
5009 * dimension @rank.
5011 MonoClass *
5012 mono_array_class_get (MonoClass *eclass, guint32 rank)
5014 return mono_bounded_array_class_get (eclass, rank, FALSE);
5018 * mono_class_instance_size:
5019 * @klass: a class
5021 * Returns: the size of an object instance
5023 gint32
5024 mono_class_instance_size (MonoClass *klass)
5026 if (!klass->size_inited)
5027 mono_class_init (klass);
5029 return klass->instance_size;
5033 * mono_class_min_align:
5034 * @klass: a class
5036 * Returns: minimm alignment requirements
5038 gint32
5039 mono_class_min_align (MonoClass *klass)
5041 if (!klass->size_inited)
5042 mono_class_init (klass);
5044 return klass->min_align;
5048 * mono_class_value_size:
5049 * @klass: a class
5051 * This function is used for value types, and return the
5052 * space and the alignment to store that kind of value object.
5054 * Returns: the size of a value of kind @klass
5056 gint32
5057 mono_class_value_size (MonoClass *klass, guint32 *align)
5059 gint32 size;
5061 /* fixme: check disable, because we still have external revereces to
5062 * mscorlib and Dummy Objects
5064 /*g_assert (klass->valuetype);*/
5066 size = mono_class_instance_size (klass) - sizeof (MonoObject);
5068 if (align)
5069 *align = klass->min_align;
5071 return size;
5075 * mono_class_data_size:
5076 * @klass: a class
5078 * Returns: the size of the static class data
5080 gint32
5081 mono_class_data_size (MonoClass *klass)
5083 if (!klass->inited)
5084 mono_class_init (klass);
5086 /* in arrays, sizes.class_size is unioned with element_size
5087 * and arrays have no static fields
5089 if (klass->rank)
5090 return 0;
5091 return klass->sizes.class_size;
5095 * Auxiliary routine to mono_class_get_field
5097 * Takes a field index instead of a field token.
5099 static MonoClassField *
5100 mono_class_get_field_idx (MonoClass *class, int idx)
5102 mono_class_setup_fields_locking (class);
5104 while (class) {
5105 if (class->image->uncompressed_metadata) {
5107 * class->field.first points to the FieldPtr table, while idx points into the
5108 * Field table, so we have to do a search.
5110 const char *name = mono_metadata_string_heap (class->image, mono_metadata_decode_row_col (&class->image->tables [MONO_TABLE_FIELD], idx, MONO_FIELD_NAME));
5111 int i;
5113 for (i = 0; i < class->field.count; ++i)
5114 if (mono_field_get_name (&class->fields [i]) == name)
5115 return &class->fields [i];
5116 g_assert_not_reached ();
5117 } else {
5118 if (class->field.count) {
5119 if ((idx >= class->field.first) && (idx < class->field.first + class->field.count)){
5120 return &class->fields [idx - class->field.first];
5124 class = class->parent;
5126 return NULL;
5130 * mono_class_get_field:
5131 * @class: the class to lookup the field.
5132 * @field_token: the field token
5134 * Returns: A MonoClassField representing the type and offset of
5135 * the field, or a NULL value if the field does not belong to this
5136 * class.
5138 MonoClassField *
5139 mono_class_get_field (MonoClass *class, guint32 field_token)
5141 int idx = mono_metadata_token_index (field_token);
5143 g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
5145 return mono_class_get_field_idx (class, idx - 1);
5149 * mono_class_get_field_from_name:
5150 * @klass: the class to lookup the field.
5151 * @name: the field name
5153 * Search the class @klass and it's parents for a field with the name @name.
5155 * Returns: the MonoClassField pointer of the named field or NULL
5157 MonoClassField *
5158 mono_class_get_field_from_name (MonoClass *klass, const char *name)
5160 int i;
5162 mono_class_setup_fields_locking (klass);
5163 while (klass) {
5164 for (i = 0; i < klass->field.count; ++i) {
5165 if (strcmp (name, mono_field_get_name (&klass->fields [i])) == 0)
5166 return &klass->fields [i];
5168 klass = klass->parent;
5170 return NULL;
5174 * mono_class_get_field_token:
5175 * @field: the field we need the token of
5177 * Get the token of a field. Note that the tokesn is only valid for the image
5178 * the field was loaded from. Don't use this function for fields in dynamic types.
5180 * Returns: the token representing the field in the image it was loaded from.
5182 guint32
5183 mono_class_get_field_token (MonoClassField *field)
5185 MonoClass *klass = field->parent;
5186 int i;
5188 mono_class_setup_fields_locking (klass);
5189 while (klass) {
5190 for (i = 0; i < klass->field.count; ++i) {
5191 if (&klass->fields [i] == field) {
5192 int idx = klass->field.first + i + 1;
5194 if (klass->image->uncompressed_metadata)
5195 idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_FIELD, idx);
5196 return mono_metadata_make_token (MONO_TABLE_FIELD, idx);
5199 klass = klass->parent;
5202 g_assert_not_reached ();
5203 return 0;
5206 static int
5207 mono_field_get_index (MonoClassField *field)
5209 int index = field - field->parent->fields;
5211 g_assert (index >= 0 && index < field->parent->field.count);
5213 return index;
5217 * mono_class_get_field_default_value:
5219 * Return the default value of the field as a pointer into the metadata blob.
5221 const char*
5222 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type)
5224 guint32 cindex;
5225 guint32 constant_cols [MONO_CONSTANT_SIZE];
5226 int field_index;
5227 MonoClass *klass = field->parent;
5229 g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT);
5231 if (!klass->ext || !klass->ext->field_def_values) {
5232 mono_loader_lock ();
5233 mono_class_alloc_ext (klass);
5234 if (!klass->ext->field_def_values)
5235 klass->ext->field_def_values = mono_image_alloc0 (klass->image, sizeof (MonoFieldDefaultValue) * klass->field.count);
5236 mono_loader_unlock ();
5239 field_index = mono_field_get_index (field);
5241 if (!klass->ext->field_def_values [field_index].data) {
5242 cindex = mono_metadata_get_constant_index (field->parent->image, mono_class_get_field_token (field), 0);
5243 g_assert (cindex);
5244 g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA));
5246 mono_metadata_decode_row (&field->parent->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
5247 klass->ext->field_def_values [field_index].def_type = constant_cols [MONO_CONSTANT_TYPE];
5248 klass->ext->field_def_values [field_index].data = (gpointer)mono_metadata_blob_heap (field->parent->image, constant_cols [MONO_CONSTANT_VALUE]);
5251 *def_type = klass->ext->field_def_values [field_index].def_type;
5252 return klass->ext->field_def_values [field_index].data;
5255 guint32
5256 mono_class_get_event_token (MonoEvent *event)
5258 MonoClass *klass = event->parent;
5259 int i;
5261 while (klass) {
5262 if (klass->ext) {
5263 for (i = 0; i < klass->ext->event.count; ++i) {
5264 if (&klass->ext->events [i] == event)
5265 return mono_metadata_make_token (MONO_TABLE_EVENT, klass->ext->event.first + i + 1);
5268 klass = klass->parent;
5271 g_assert_not_reached ();
5272 return 0;
5275 MonoProperty*
5276 mono_class_get_property_from_name (MonoClass *klass, const char *name)
5278 while (klass) {
5279 MonoProperty* p;
5280 gpointer iter = NULL;
5281 while ((p = mono_class_get_properties (klass, &iter))) {
5282 if (! strcmp (name, p->name))
5283 return p;
5285 klass = klass->parent;
5287 return NULL;
5290 guint32
5291 mono_class_get_property_token (MonoProperty *prop)
5293 MonoClass *klass = prop->parent;
5294 while (klass) {
5295 MonoProperty* p;
5296 int i = 0;
5297 gpointer iter = NULL;
5298 while ((p = mono_class_get_properties (klass, &iter))) {
5299 if (&klass->ext->properties [i] == prop)
5300 return mono_metadata_make_token (MONO_TABLE_PROPERTY, klass->ext->property.first + i + 1);
5302 i ++;
5304 klass = klass->parent;
5307 g_assert_not_reached ();
5308 return 0;
5311 char *
5312 mono_class_name_from_token (MonoImage *image, guint32 type_token)
5314 const char *name, *nspace;
5315 if (image->dynamic)
5316 return g_strdup_printf ("DynamicType 0x%08x", type_token);
5318 switch (type_token & 0xff000000){
5319 case MONO_TOKEN_TYPE_DEF: {
5320 guint32 cols [MONO_TYPEDEF_SIZE];
5321 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
5322 guint tidx = mono_metadata_token_index (type_token);
5324 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
5325 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5326 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5327 if (strlen (nspace) == 0)
5328 return g_strdup_printf ("%s", name);
5329 else
5330 return g_strdup_printf ("%s.%s", nspace, name);
5333 case MONO_TOKEN_TYPE_REF: {
5334 guint32 cols [MONO_TYPEREF_SIZE];
5335 MonoTableInfo *t = &image->tables [MONO_TABLE_TYPEREF];
5337 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5338 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
5339 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
5340 if (strlen (nspace) == 0)
5341 return g_strdup_printf ("%s", name);
5342 else
5343 return g_strdup_printf ("%s.%s", nspace, name);
5346 case MONO_TOKEN_TYPE_SPEC:
5347 return g_strdup_printf ("Typespec 0x%08x", type_token);
5348 default:
5349 g_assert_not_reached ();
5352 return NULL;
5355 static char *
5356 mono_assembly_name_from_token (MonoImage *image, guint32 type_token)
5358 if (image->dynamic)
5359 return g_strdup_printf ("DynamicAssembly %s", image->name);
5361 switch (type_token & 0xff000000){
5362 case MONO_TOKEN_TYPE_DEF:
5363 return mono_stringify_assembly_name (&image->assembly->aname);
5364 break;
5365 case MONO_TOKEN_TYPE_REF: {
5366 MonoAssemblyName aname;
5367 guint32 cols [MONO_TYPEREF_SIZE];
5368 MonoTableInfo *t = &image->tables [MONO_TABLE_TYPEREF];
5369 guint32 idx;
5371 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5373 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
5374 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
5375 case MONO_RESOLTION_SCOPE_MODULE:
5376 /* FIXME: */
5377 return g_strdup ("");
5378 case MONO_RESOLTION_SCOPE_MODULEREF:
5379 /* FIXME: */
5380 return g_strdup ("");
5381 case MONO_RESOLTION_SCOPE_TYPEREF:
5382 /* FIXME: */
5383 return g_strdup ("");
5384 case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
5385 mono_assembly_get_assemblyref (image, idx - 1, &aname);
5386 return mono_stringify_assembly_name (&aname);
5387 default:
5388 g_assert_not_reached ();
5390 break;
5392 case MONO_TOKEN_TYPE_SPEC:
5393 /* FIXME: */
5394 return g_strdup ("");
5395 default:
5396 g_assert_not_reached ();
5399 return NULL;
5403 * mono_class_get_full:
5404 * @image: the image where the class resides
5405 * @type_token: the token for the class
5406 * @context: the generic context used to evaluate generic instantiations in
5408 * Returns: the MonoClass that represents @type_token in @image
5410 MonoClass *
5411 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5413 MonoClass *class = NULL;
5415 if (image->dynamic) {
5416 int table = mono_metadata_token_table (type_token);
5418 if (table != MONO_TABLE_TYPEDEF && table != MONO_TABLE_TYPEREF && table != MONO_TABLE_TYPESPEC) {
5419 mono_loader_set_error_bad_image (g_strdup ("Bad type token."));
5420 return NULL;
5422 return mono_lookup_dynamic_token (image, type_token, context);
5425 switch (type_token & 0xff000000){
5426 case MONO_TOKEN_TYPE_DEF:
5427 class = mono_class_create_from_typedef (image, type_token);
5428 break;
5429 case MONO_TOKEN_TYPE_REF:
5430 class = mono_class_from_typeref (image, type_token);
5431 break;
5432 case MONO_TOKEN_TYPE_SPEC:
5433 class = mono_class_create_from_typespec (image, type_token, context);
5434 break;
5435 default:
5436 g_warning ("unknown token type %x", type_token & 0xff000000);
5437 g_assert_not_reached ();
5440 if (!class){
5441 char *name = mono_class_name_from_token (image, type_token);
5442 char *assembly = mono_assembly_name_from_token (image, type_token);
5443 mono_loader_set_error_type_load (name, assembly);
5446 return class;
5451 * mono_type_get_full:
5452 * @image: the image where the type resides
5453 * @type_token: the token for the type
5454 * @context: the generic context used to evaluate generic instantiations in
5456 * This functions exists to fullfill the fact that sometimes it's desirable to have access to the
5458 * Returns: the MonoType that represents @type_token in @image
5460 MonoType *
5461 mono_type_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5463 MonoType *type = NULL;
5464 gboolean inflated = FALSE;
5466 //FIXME: this will not fix the very issue for which mono_type_get_full exists -but how to do it then?
5467 if (image->dynamic)
5468 return mono_class_get_type (mono_lookup_dynamic_token (image, type_token, context));
5470 if ((type_token & 0xff000000) != MONO_TOKEN_TYPE_SPEC) {
5471 MonoClass *class = mono_class_get_full (image, type_token, context);
5472 return class ? mono_class_get_type (class) : NULL;
5475 type = mono_type_retrieve_from_typespec (image, type_token, context, &inflated);
5477 if (!type) {
5478 char *name = mono_class_name_from_token (image, type_token);
5479 char *assembly = mono_assembly_name_from_token (image, type_token);
5480 if (inflated)
5481 mono_metadata_free_type (type);
5482 mono_loader_set_error_type_load (name, assembly);
5485 if (inflated) {
5486 MonoType *tmp = type;
5487 type = mono_class_get_type (mono_class_from_mono_type (type));
5488 /* FIXME: This is a workaround fo the fact that a typespec token sometimes reference to the generic type definition.
5489 * A MonoClass::byval_arg of a generic type definion has type CLASS.
5490 * Some parts of mono create a GENERICINST to reference a generic type definition and this generates confict with byval_arg.
5492 * The long term solution is to chaise this places and make then set MonoType::type correctly.
5493 * */
5494 if (type->type != tmp->type)
5495 type = tmp;
5496 else
5497 mono_metadata_free_type (tmp);
5499 return type;
5503 MonoClass *
5504 mono_class_get (MonoImage *image, guint32 type_token)
5506 return mono_class_get_full (image, type_token, NULL);
5510 * mono_image_init_name_cache:
5512 * Initializes the class name cache stored in image->name_cache.
5514 * LOCKING: Acquires the loader lock.
5516 void
5517 mono_image_init_name_cache (MonoImage *image)
5519 MonoTableInfo *t = &image->tables [MONO_TABLE_TYPEDEF];
5520 guint32 cols [MONO_TYPEDEF_SIZE];
5521 const char *name;
5522 const char *nspace;
5523 guint32 i, visib, nspace_index;
5524 GHashTable *name_cache2, *nspace_table;
5526 mono_loader_lock ();
5528 image->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
5530 if (image->dynamic) {
5531 mono_loader_unlock ();
5532 return;
5535 /* Temporary hash table to avoid lookups in the nspace_table */
5536 name_cache2 = g_hash_table_new (NULL, NULL);
5538 for (i = 1; i <= t->rows; ++i) {
5539 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5540 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5542 * Nested types are accessed from the nesting name. We use the fact that nested types use different visibility flags
5543 * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5545 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5546 continue;
5547 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5548 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5550 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
5551 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5552 if (!nspace_table) {
5553 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5554 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5555 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5556 nspace_table);
5558 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
5561 /* Load type names from EXPORTEDTYPES table */
5563 MonoTableInfo *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5564 guint32 cols [MONO_EXP_TYPE_SIZE];
5565 int i;
5567 for (i = 0; i < t->rows; ++i) {
5568 mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
5569 name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
5570 nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
5572 nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
5573 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5574 if (!nspace_table) {
5575 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5576 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5577 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5578 nspace_table);
5580 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
5584 g_hash_table_destroy (name_cache2);
5586 mono_loader_unlock ();
5589 void
5590 mono_image_add_to_name_cache (MonoImage *image, const char *nspace,
5591 const char *name, guint32 index)
5593 GHashTable *nspace_table;
5594 GHashTable *name_cache;
5596 mono_loader_lock ();
5598 if (!image->name_cache)
5599 mono_image_init_name_cache (image);
5601 name_cache = image->name_cache;
5602 if (!(nspace_table = g_hash_table_lookup (name_cache, nspace))) {
5603 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5604 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
5606 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
5608 mono_loader_unlock ();
5611 typedef struct {
5612 gconstpointer key;
5613 gpointer value;
5614 } FindUserData;
5616 static void
5617 find_nocase (gpointer key, gpointer value, gpointer user_data)
5619 char *name = (char*)key;
5620 FindUserData *data = (FindUserData*)user_data;
5622 if (!data->value && (g_strcasecmp (name, (char*)data->key) == 0))
5623 data->value = value;
5627 * mono_class_from_name_case:
5628 * @image: The MonoImage where the type is looked up in
5629 * @name_space: the type namespace
5630 * @name: the type short name.
5632 * Obtains a MonoClass with a given namespace and a given name which
5633 * is located in the given MonoImage. The namespace and name
5634 * lookups are case insensitive.
5636 MonoClass *
5637 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
5639 MonoTableInfo *t = &image->tables [MONO_TABLE_TYPEDEF];
5640 guint32 cols [MONO_TYPEDEF_SIZE];
5641 const char *n;
5642 const char *nspace;
5643 guint32 i, visib;
5645 if (image->dynamic) {
5646 guint32 token = 0;
5647 FindUserData user_data;
5649 mono_loader_lock ();
5651 if (!image->name_cache)
5652 mono_image_init_name_cache (image);
5654 user_data.key = name_space;
5655 user_data.value = NULL;
5656 g_hash_table_foreach (image->name_cache, find_nocase, &user_data);
5658 if (user_data.value) {
5659 GHashTable *nspace_table = (GHashTable*)user_data.value;
5661 user_data.key = name;
5662 user_data.value = NULL;
5664 g_hash_table_foreach (nspace_table, find_nocase, &user_data);
5666 if (user_data.value)
5667 token = GPOINTER_TO_UINT (user_data.value);
5670 mono_loader_unlock ();
5672 if (token)
5673 return mono_class_get (image, MONO_TOKEN_TYPE_DEF | token);
5674 else
5675 return NULL;
5679 /* add a cache if needed */
5680 for (i = 1; i <= t->rows; ++i) {
5681 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5682 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5684 * Nested types are accessed from the nesting name. We use the fact that nested types use different visibility flags
5685 * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5687 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5688 continue;
5689 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5690 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5691 if (g_strcasecmp (n, name) == 0 && g_strcasecmp (nspace, name_space) == 0)
5692 return mono_class_get (image, MONO_TOKEN_TYPE_DEF | i);
5694 return NULL;
5697 static MonoClass*
5698 return_nested_in (MonoClass *class, char *nested)
5700 MonoClass *found;
5701 char *s = strchr (nested, '/');
5702 gpointer iter = NULL;
5704 if (s) {
5705 *s = 0;
5706 s++;
5709 while ((found = mono_class_get_nested_types (class, &iter))) {
5710 if (strcmp (found->name, nested) == 0) {
5711 if (s)
5712 return return_nested_in (found, s);
5713 return found;
5716 return NULL;
5719 static MonoClass*
5720 search_modules (MonoImage *image, const char *name_space, const char *name)
5722 MonoTableInfo *file_table = &image->tables [MONO_TABLE_FILE];
5723 MonoImage *file_image;
5724 MonoClass *class;
5725 int i;
5728 * The EXPORTEDTYPES table only contains public types, so have to search the
5729 * modules as well.
5730 * Note: image->modules contains the contents of the MODULEREF table, while
5731 * the real module list is in the FILE table.
5733 for (i = 0; i < file_table->rows; i++) {
5734 guint32 cols [MONO_FILE_SIZE];
5735 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
5736 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
5737 continue;
5739 file_image = mono_image_load_file_for_image (image, i + 1);
5740 if (file_image) {
5741 class = mono_class_from_name (file_image, name_space, name);
5742 if (class)
5743 return class;
5747 return NULL;
5751 * mono_class_from_name:
5752 * @image: The MonoImage where the type is looked up in
5753 * @name_space: the type namespace
5754 * @name: the type short name.
5756 * Obtains a MonoClass with a given namespace and a given name which
5757 * is located in the given MonoImage.
5759 MonoClass *
5760 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
5762 GHashTable *nspace_table;
5763 MonoImage *loaded_image;
5764 guint32 token = 0;
5765 int i;
5766 MonoClass *class;
5767 char *nested;
5768 char buf [1024];
5770 if ((nested = strchr (name, '/'))) {
5771 int pos = nested - name;
5772 int len = strlen (name);
5773 if (len > 1023)
5774 return NULL;
5775 memcpy (buf, name, len + 1);
5776 buf [pos] = 0;
5777 nested = buf + pos + 1;
5778 name = buf;
5781 if (get_class_from_name) {
5782 gboolean res = get_class_from_name (image, name_space, name, &class);
5783 if (res) {
5784 if (!class)
5785 class = search_modules (image, name_space, name);
5786 if (nested)
5787 return class ? return_nested_in (class, nested) : NULL;
5788 else
5789 return class;
5793 mono_loader_lock ();
5795 if (!image->name_cache)
5796 mono_image_init_name_cache (image);
5798 nspace_table = g_hash_table_lookup (image->name_cache, name_space);
5800 if (nspace_table)
5801 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
5803 mono_loader_unlock ();
5805 if (!token && image->dynamic && image->modules) {
5806 /* Search modules as well */
5807 for (i = 0; i < image->module_count; ++i) {
5808 MonoImage *module = image->modules [i];
5810 class = mono_class_from_name (module, name_space, name);
5811 if (class)
5812 return class;
5816 if (!token) {
5817 class = search_modules (image, name_space, name);
5818 if (class)
5819 return class;
5822 if (!token)
5823 return NULL;
5825 if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
5826 MonoTableInfo *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5827 guint32 cols [MONO_EXP_TYPE_SIZE];
5828 guint32 idx, impl;
5830 idx = mono_metadata_token_index (token);
5832 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
5834 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
5835 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
5836 loaded_image = mono_assembly_load_module (image->assembly, impl >> MONO_IMPLEMENTATION_BITS);
5837 if (!loaded_image)
5838 return NULL;
5839 class = mono_class_from_name (loaded_image, name_space, name);
5840 if (nested)
5841 return return_nested_in (class, nested);
5842 return class;
5843 } else if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_ASSEMBLYREF) {
5844 MonoAssembly **references = image->references;
5845 guint32 assembly_idx;
5847 assembly_idx = impl >> MONO_IMPLEMENTATION_BITS;
5849 if (!references [assembly_idx - 1])
5850 mono_assembly_load_reference (image, assembly_idx - 1);
5851 g_assert (references == image->references);
5852 g_assert (references [assembly_idx - 1]);
5853 if (references [assembly_idx - 1] == (gpointer)-1)
5854 return NULL;
5855 else
5856 /* FIXME: Cycle detection */
5857 return mono_class_from_name (references [assembly_idx - 1]->image, name_space, name);
5858 } else {
5859 g_error ("not yet implemented");
5863 token = MONO_TOKEN_TYPE_DEF | token;
5865 class = mono_class_get (image, token);
5866 if (nested)
5867 return return_nested_in (class, nested);
5868 return class;
5871 gboolean
5872 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc,
5873 gboolean check_interfaces)
5875 g_assert (klassc->idepth > 0);
5876 if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
5877 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, klassc->interface_id))
5878 return TRUE;
5879 } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
5880 int i;
5882 for (i = 0; i < klass->interface_count; i ++) {
5883 MonoClass *ic = klass->interfaces [i];
5884 if (ic == klassc)
5885 return TRUE;
5887 } else {
5888 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
5889 return TRUE;
5893 * MS.NET thinks interfaces are a subclass of Object, so we think it as
5894 * well.
5896 if (klassc == mono_defaults.object_class)
5897 return TRUE;
5899 return FALSE;
5902 static gboolean
5903 mono_class_has_variant_generic_params (MonoClass *klass)
5905 int i;
5906 MonoGenericContainer *container;
5908 if (!klass->generic_class)
5909 return FALSE;
5911 container = klass->generic_class->container_class->generic_container;
5913 for (i = 0; i < container->type_argc; ++i)
5914 if (container->type_params [i].flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT))
5915 return TRUE;
5917 return FALSE;
5921 * mono_class_is_assignable_from:
5922 * @klass: the class to be assigned to
5923 * @oklass: the source class
5925 * Return: true if an instance of object oklass can be assigned to an
5926 * instance of object @klass
5928 gboolean
5929 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
5931 if (!klass->inited)
5932 mono_class_init (klass);
5934 if (!oklass->inited)
5935 mono_class_init (oklass);
5937 if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
5938 return klass == oklass;
5940 if (MONO_CLASS_IS_INTERFACE (klass)) {
5941 if ((oklass->byval_arg.type == MONO_TYPE_VAR) || (oklass->byval_arg.type == MONO_TYPE_MVAR))
5942 return FALSE;
5944 /* interface_offsets might not be set for dynamic classes */
5945 if (oklass->reflection_info && !oklass->interface_bitmap)
5947 * oklass might be a generic type parameter but they have
5948 * interface_offsets set.
5950 return mono_reflection_call_is_assignable_to (oklass, klass);
5951 if (!oklass->interface_bitmap)
5952 /* Happens with generic instances of not-yet created dynamic types */
5953 return FALSE;
5954 if (MONO_CLASS_IMPLEMENTS_INTERFACE (oklass, klass->interface_id))
5955 return TRUE;
5957 if (mono_class_has_variant_generic_params (klass)) {
5958 if (oklass->generic_class) {
5959 int i;
5960 gboolean match = FALSE;
5961 MonoClass *container_class1 = klass->generic_class->container_class;
5962 MonoClass *container_class2 = oklass->generic_class->container_class;
5965 * Check whenever the generic definition of oklass implements the
5966 * generic definition of klass. The IMPLEMENTS_INTERFACE stuff is not usable
5967 * here since the relevant tables are not set up.
5969 for (i = 0; i < container_class2->interface_offsets_count; ++i)
5970 if ((container_class2->interfaces_packed [i] == container_class1) || (container_class2->interfaces_packed [i]->generic_class && (container_class2->interfaces_packed [i]->generic_class->container_class == container_class1)))
5971 match = TRUE;
5973 if (match) {
5974 MonoGenericContainer *container;
5976 container = klass->generic_class->container_class->generic_container;
5978 match = TRUE;
5979 for (i = 0; i < container->type_argc; ++i) {
5980 MonoClass *param1_class = mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [i]);
5981 MonoClass *param2_class = mono_class_from_mono_type (oklass->generic_class->context.class_inst->type_argv [i]);
5983 if (param1_class->valuetype != param2_class->valuetype) {
5984 match = FALSE;
5985 break;
5988 * The _VARIANT and _COVARIANT constants should read _COVARIANT and
5989 * _CONTRAVARIANT, but they are in a public header so we can't fix it.
5991 if (param1_class != param2_class) {
5992 if ((container->type_params [i].flags & MONO_GEN_PARAM_VARIANT) && mono_class_is_assignable_from (param1_class, param2_class))
5994 else if (((container->type_params [i].flags & MONO_GEN_PARAM_COVARIANT) && mono_class_is_assignable_from (param2_class, param1_class)))
5996 else {
5997 match = FALSE;
5998 break;
6003 if (match)
6004 return TRUE;
6008 } else if (klass->rank) {
6009 MonoClass *eclass, *eoclass;
6011 if (oklass->rank != klass->rank)
6012 return FALSE;
6014 /* vectors vs. one dimensional arrays */
6015 if (oklass->byval_arg.type != klass->byval_arg.type)
6016 return FALSE;
6018 eclass = klass->cast_class;
6019 eoclass = oklass->cast_class;
6022 * a is b does not imply a[] is b[] when a is a valuetype, and
6023 * b is a reference type.
6026 if (eoclass->valuetype) {
6027 if ((eclass == mono_defaults.enum_class) ||
6028 (eclass == mono_defaults.enum_class->parent) ||
6029 (eclass == mono_defaults.object_class))
6030 return FALSE;
6033 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
6034 } else if (mono_class_is_nullable (klass)) {
6035 if (mono_class_is_nullable (oklass))
6036 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
6037 else
6038 return mono_class_is_assignable_from (klass->cast_class, oklass);
6039 } else if (klass == mono_defaults.object_class)
6040 return TRUE;
6042 return mono_class_has_parent (oklass, klass);
6046 * mono_class_get_cctor:
6047 * @klass: A MonoClass pointer
6049 * Returns: the static constructor of @klass if it exists, NULL otherwise.
6051 MonoMethod*
6052 mono_class_get_cctor (MonoClass *klass)
6054 MonoCachedClassInfo cached_info;
6056 if (!klass->has_cctor)
6057 return NULL;
6059 if (mono_class_get_cached_class_info (klass, &cached_info))
6060 return mono_get_method (klass->image, cached_info.cctor_token, klass);
6062 if (klass->generic_class && !klass->methods)
6063 return mono_class_get_inflated_method (klass, mono_class_get_cctor (klass->generic_class->container_class));
6065 return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
6069 * mono_class_get_finalizer:
6070 * @klass: The MonoClass pointer
6072 * Returns: the finalizer method of @klass if it exists, NULL otherwise.
6074 MonoMethod*
6075 mono_class_get_finalizer (MonoClass *klass)
6077 MonoCachedClassInfo cached_info;
6079 if (!klass->inited)
6080 mono_class_init (klass);
6081 if (!klass->has_finalize)
6082 return NULL;
6084 if (mono_class_get_cached_class_info (klass, &cached_info))
6085 return mono_get_method (cached_info.finalize_image, cached_info.finalize_token, NULL);
6086 else {
6087 mono_class_setup_vtable (klass);
6088 return klass->vtable [finalize_slot];
6093 * mono_class_needs_cctor_run:
6094 * @klass: the MonoClass pointer
6095 * @caller: a MonoMethod describing the caller
6097 * Determines whenever the class has a static constructor and whenever it
6098 * needs to be called when executing CALLER.
6100 gboolean
6101 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
6103 MonoMethod *method;
6105 method = mono_class_get_cctor (klass);
6106 if (method)
6107 return (method == caller) ? FALSE : TRUE;
6108 else
6109 return TRUE;
6113 * mono_class_array_element_size:
6114 * @klass:
6116 * Returns: the number of bytes an element of type @klass
6117 * uses when stored into an array.
6119 gint32
6120 mono_class_array_element_size (MonoClass *klass)
6122 MonoType *type = &klass->byval_arg;
6124 handle_enum:
6125 switch (type->type) {
6126 case MONO_TYPE_I1:
6127 case MONO_TYPE_U1:
6128 case MONO_TYPE_BOOLEAN:
6129 return 1;
6130 case MONO_TYPE_I2:
6131 case MONO_TYPE_U2:
6132 case MONO_TYPE_CHAR:
6133 return 2;
6134 case MONO_TYPE_I4:
6135 case MONO_TYPE_U4:
6136 case MONO_TYPE_R4:
6137 return 4;
6138 case MONO_TYPE_I:
6139 case MONO_TYPE_U:
6140 case MONO_TYPE_PTR:
6141 case MONO_TYPE_CLASS:
6142 case MONO_TYPE_STRING:
6143 case MONO_TYPE_OBJECT:
6144 case MONO_TYPE_SZARRAY:
6145 case MONO_TYPE_ARRAY:
6146 case MONO_TYPE_VAR:
6147 case MONO_TYPE_MVAR:
6148 return sizeof (gpointer);
6149 case MONO_TYPE_I8:
6150 case MONO_TYPE_U8:
6151 case MONO_TYPE_R8:
6152 return 8;
6153 case MONO_TYPE_VALUETYPE:
6154 if (type->data.klass->enumtype) {
6155 type = mono_class_enum_basetype (type->data.klass);
6156 klass = klass->element_class;
6157 goto handle_enum;
6159 return mono_class_instance_size (klass) - sizeof (MonoObject);
6160 case MONO_TYPE_GENERICINST:
6161 type = &type->data.generic_class->container_class->byval_arg;
6162 goto handle_enum;
6163 default:
6164 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
6166 return -1;
6170 * mono_array_element_size:
6171 * @ac: pointer to a #MonoArrayClass
6173 * Returns: the size of single array element.
6175 gint32
6176 mono_array_element_size (MonoClass *ac)
6178 g_assert (ac->rank);
6179 return ac->sizes.element_size;
6182 gpointer
6183 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
6184 MonoGenericContext *context)
6186 if (image->dynamic) {
6187 MonoClass *tmp_handle_class;
6188 gpointer obj = mono_lookup_dynamic_token_class (image, token, TRUE, &tmp_handle_class, context);
6190 g_assert (tmp_handle_class);
6191 if (handle_class)
6192 *handle_class = tmp_handle_class;
6194 if (tmp_handle_class == mono_defaults.typehandle_class)
6195 return &((MonoClass*)obj)->byval_arg;
6196 else
6197 return obj;
6200 switch (token & 0xff000000) {
6201 case MONO_TOKEN_TYPE_DEF:
6202 case MONO_TOKEN_TYPE_REF:
6203 case MONO_TOKEN_TYPE_SPEC: {
6204 MonoType *type;
6205 if (handle_class)
6206 *handle_class = mono_defaults.typehandle_class;
6207 type = mono_type_get_full (image, token, context);
6208 if (!type)
6209 return NULL;
6210 mono_class_init (mono_class_from_mono_type (type));
6211 /* We return a MonoType* as handle */
6212 return type;
6214 case MONO_TOKEN_FIELD_DEF: {
6215 MonoClass *class;
6216 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
6217 if (handle_class)
6218 *handle_class = mono_defaults.fieldhandle_class;
6219 class = mono_class_get_full (image, MONO_TOKEN_TYPE_DEF | type, context);
6220 if (!class)
6221 return NULL;
6222 mono_class_init (class);
6223 return mono_class_get_field (class, token);
6225 case MONO_TOKEN_METHOD_DEF:
6226 case MONO_TOKEN_METHOD_SPEC: {
6227 MonoMethod *meth;
6228 meth = mono_get_method_full (image, token, NULL, context);
6229 if (handle_class)
6230 *handle_class = mono_defaults.methodhandle_class;
6231 return meth;
6233 case MONO_TOKEN_MEMBER_REF: {
6234 guint32 cols [MONO_MEMBERREF_SIZE];
6235 const char *sig;
6236 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
6237 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
6238 mono_metadata_decode_blob_size (sig, &sig);
6239 if (*sig == 0x6) { /* it's a field */
6240 MonoClass *klass;
6241 MonoClassField *field;
6242 field = mono_field_from_token (image, token, &klass, context);
6243 if (handle_class)
6244 *handle_class = mono_defaults.fieldhandle_class;
6245 return field;
6246 } else {
6247 MonoMethod *meth;
6248 meth = mono_get_method_full (image, token, NULL, context);
6249 if (handle_class)
6250 *handle_class = mono_defaults.methodhandle_class;
6251 return meth;
6254 default:
6255 g_warning ("Unknown token 0x%08x in ldtoken", token);
6256 break;
6258 return NULL;
6262 * This function might need to call runtime functions so it can't be part
6263 * of the metadata library.
6265 static MonoLookupDynamicToken lookup_dynamic = NULL;
6267 void
6268 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func)
6270 lookup_dynamic = func;
6273 gpointer
6274 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context)
6276 MonoClass *handle_class;
6278 return lookup_dynamic (image, token, TRUE, &handle_class, context);
6281 gpointer
6282 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context)
6284 return lookup_dynamic (image, token, valid_token, handle_class, context);
6287 static MonoGetCachedClassInfo get_cached_class_info = NULL;
6289 void
6290 mono_install_get_cached_class_info (MonoGetCachedClassInfo func)
6292 get_cached_class_info = func;
6295 static gboolean
6296 mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
6298 if (!get_cached_class_info)
6299 return FALSE;
6300 else
6301 return get_cached_class_info (klass, res);
6304 void
6305 mono_install_get_class_from_name (MonoGetClassFromName func)
6307 get_class_from_name = func;
6310 MonoImage*
6311 mono_class_get_image (MonoClass *klass)
6313 return klass->image;
6317 * mono_class_get_element_class:
6318 * @klass: the MonoClass to act on
6320 * Returns: the element class of an array or an enumeration.
6322 MonoClass*
6323 mono_class_get_element_class (MonoClass *klass)
6325 return klass->element_class;
6329 * mono_class_is_valuetype:
6330 * @klass: the MonoClass to act on
6332 * Returns: true if the MonoClass represents a ValueType.
6334 gboolean
6335 mono_class_is_valuetype (MonoClass *klass)
6337 return klass->valuetype;
6341 * mono_class_is_enum:
6342 * @klass: the MonoClass to act on
6344 * Returns: true if the MonoClass represents an enumeration.
6346 gboolean
6347 mono_class_is_enum (MonoClass *klass)
6349 return klass->enumtype;
6353 * mono_class_enum_basetype:
6354 * @klass: the MonoClass to act on
6356 * Returns: the underlying type representation for an enumeration.
6358 MonoType*
6359 mono_class_enum_basetype (MonoClass *klass)
6361 if (klass->element_class == klass)
6362 /* SRE */
6363 return NULL;
6364 else
6365 return &klass->element_class->byval_arg;
6369 * mono_class_get_parent
6370 * @klass: the MonoClass to act on
6372 * Returns: the parent class for this class.
6374 MonoClass*
6375 mono_class_get_parent (MonoClass *klass)
6377 return klass->parent;
6381 * mono_class_get_nesting_type;
6382 * @klass: the MonoClass to act on
6384 * Returns: the container type where this type is nested or NULL if this type is not a nested type.
6386 MonoClass*
6387 mono_class_get_nesting_type (MonoClass *klass)
6389 return klass->nested_in;
6393 * mono_class_get_rank:
6394 * @klass: the MonoClass to act on
6396 * Returns: the rank for the array (the number of dimensions).
6399 mono_class_get_rank (MonoClass *klass)
6401 return klass->rank;
6405 * mono_class_get_flags:
6406 * @klass: the MonoClass to act on
6408 * The type flags from the TypeDef table from the metadata.
6409 * see the TYPE_ATTRIBUTE_* definitions on tabledefs.h for the
6410 * different values.
6412 * Returns: the flags from the TypeDef table.
6414 guint32
6415 mono_class_get_flags (MonoClass *klass)
6417 return klass->flags;
6421 * mono_class_get_name
6422 * @klass: the MonoClass to act on
6424 * Returns: the name of the class.
6426 const char*
6427 mono_class_get_name (MonoClass *klass)
6429 return klass->name;
6433 * mono_class_get_namespace:
6434 * @klass: the MonoClass to act on
6436 * Returns: the namespace of the class.
6438 const char*
6439 mono_class_get_namespace (MonoClass *klass)
6441 return klass->name_space;
6445 * mono_class_get_type:
6446 * @klass: the MonoClass to act on
6448 * This method returns the internal Type representation for the class.
6450 * Returns: the MonoType from the class.
6452 MonoType*
6453 mono_class_get_type (MonoClass *klass)
6455 return &klass->byval_arg;
6459 * mono_class_get_type_token
6460 * @klass: the MonoClass to act on
6462 * This method returns type token for the class.
6464 * Returns: the type token for the class.
6466 guint32
6467 mono_class_get_type_token (MonoClass *klass)
6469 return klass->type_token;
6473 * mono_class_get_byref_type:
6474 * @klass: the MonoClass to act on
6478 MonoType*
6479 mono_class_get_byref_type (MonoClass *klass)
6481 return &klass->this_arg;
6485 * mono_class_num_fields:
6486 * @klass: the MonoClass to act on
6488 * Returns: the number of static and instance fields in the class.
6491 mono_class_num_fields (MonoClass *klass)
6493 return klass->field.count;
6497 * mono_class_num_methods:
6498 * @klass: the MonoClass to act on
6500 * Returns: the number of methods in the class.
6503 mono_class_num_methods (MonoClass *klass)
6505 return klass->method.count;
6509 * mono_class_num_properties
6510 * @klass: the MonoClass to act on
6512 * Returns: the number of properties in the class.
6515 mono_class_num_properties (MonoClass *klass)
6517 mono_class_setup_properties (klass);
6519 return klass->ext->property.count;
6523 * mono_class_num_events:
6524 * @klass: the MonoClass to act on
6526 * Returns: the number of events in the class.
6529 mono_class_num_events (MonoClass *klass)
6531 mono_class_setup_events (klass);
6533 return klass->ext->event.count;
6537 * mono_class_get_fields:
6538 * @klass: the MonoClass to act on
6540 * This routine is an iterator routine for retrieving the fields in a class.
6542 * You must pass a gpointer that points to zero and is treated as an opaque handle to
6543 * iterate over all of the elements. When no more values are
6544 * available, the return value is NULL.
6546 * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
6548 MonoClassField*
6549 mono_class_get_fields (MonoClass* klass, gpointer *iter)
6551 MonoClassField* field;
6552 if (!iter)
6553 return NULL;
6554 if (!*iter) {
6555 mono_class_setup_fields_locking (klass);
6556 if (klass->exception_type)
6557 return NULL;
6558 /* start from the first */
6559 if (klass->field.count) {
6560 return *iter = &klass->fields [0];
6561 } else {
6562 /* no fields */
6563 return NULL;
6566 field = *iter;
6567 field++;
6568 if (field < &klass->fields [klass->field.count]) {
6569 return *iter = field;
6571 return NULL;
6575 * mono_class_get_methods
6576 * @klass: the MonoClass to act on
6578 * This routine is an iterator routine for retrieving the fields in a class.
6580 * You must pass a gpointer that points to zero and is treated as an opaque handle to
6581 * iterate over all of the elements. When no more values are
6582 * available, the return value is NULL.
6584 * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
6586 MonoMethod*
6587 mono_class_get_methods (MonoClass* klass, gpointer *iter)
6589 MonoMethod** method;
6590 if (!iter)
6591 return NULL;
6592 if (!klass->inited)
6593 mono_class_init (klass);
6594 if (!*iter) {
6595 mono_class_setup_methods (klass);
6596 /* start from the first */
6597 if (klass->method.count) {
6598 *iter = &klass->methods [0];
6599 return klass->methods [0];
6600 } else {
6601 /* no method */
6602 return NULL;
6605 method = *iter;
6606 method++;
6607 if (method < &klass->methods [klass->method.count]) {
6608 *iter = method;
6609 return *method;
6611 return NULL;
6615 * mono_class_get_virtual_methods:
6617 * Iterate over the virtual methods of KLASS.
6619 * LOCKING: Assumes the loader lock is held (because of the klass->methods check).
6621 static MonoMethod*
6622 mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter)
6624 MonoMethod** method;
6625 if (!iter)
6626 return NULL;
6627 if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass) || mono_debug_using_mono_debugger ()) {
6628 if (!*iter) {
6629 mono_class_setup_methods (klass);
6630 /* start from the first */
6631 method = &klass->methods [0];
6632 } else {
6633 method = *iter;
6634 method++;
6636 while (method < &klass->methods [klass->method.count]) {
6637 if (((*method)->flags & METHOD_ATTRIBUTE_VIRTUAL))
6638 break;
6639 method ++;
6641 if (method < &klass->methods [klass->method.count]) {
6642 *iter = method;
6643 return *method;
6644 } else {
6645 return NULL;
6647 } else {
6648 /* Search directly in metadata to avoid calling setup_methods () */
6649 MonoMethod *res = NULL;
6650 int i, start_index;
6652 if (!*iter) {
6653 start_index = 0;
6654 } else {
6655 start_index = GPOINTER_TO_UINT (*iter);
6658 for (i = start_index; i < klass->method.count; ++i) {
6659 guint32 cols [MONO_METHOD_SIZE];
6661 /* class->method.first points into the methodptr table */
6662 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
6664 if (cols [MONO_METHOD_FLAGS] & METHOD_ATTRIBUTE_VIRTUAL)
6665 break;
6668 if (i < klass->method.count) {
6669 res = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
6670 /* Add 1 here so the if (*iter) check fails */
6671 *iter = GUINT_TO_POINTER (i + 1);
6672 return res;
6673 } else {
6674 return NULL;
6680 * mono_class_get_properties:
6681 * @klass: the MonoClass to act on
6683 * This routine is an iterator routine for retrieving the properties in a class.
6685 * You must pass a gpointer that points to zero and is treated as an opaque handle to
6686 * iterate over all of the elements. When no more values are
6687 * available, the return value is NULL.
6689 * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
6691 MonoProperty*
6692 mono_class_get_properties (MonoClass* klass, gpointer *iter)
6694 MonoProperty* property;
6695 if (!iter)
6696 return NULL;
6697 if (!klass->inited)
6698 mono_class_init (klass);
6699 if (!*iter) {
6700 mono_class_setup_properties (klass);
6701 /* start from the first */
6702 if (klass->ext->property.count) {
6703 return *iter = &klass->ext->properties [0];
6704 } else {
6705 /* no fields */
6706 return NULL;
6709 property = *iter;
6710 property++;
6711 if (property < &klass->ext->properties [klass->ext->property.count]) {
6712 return *iter = property;
6714 return NULL;
6718 * mono_class_get_events:
6719 * @klass: the MonoClass to act on
6721 * This routine is an iterator routine for retrieving the properties in a class.
6723 * You must pass a gpointer that points to zero and is treated as an opaque handle to
6724 * iterate over all of the elements. When no more values are
6725 * available, the return value is NULL.
6727 * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
6729 MonoEvent*
6730 mono_class_get_events (MonoClass* klass, gpointer *iter)
6732 MonoEvent* event;
6733 if (!iter)
6734 return NULL;
6735 if (!klass->inited)
6736 mono_class_init (klass);
6737 if (!*iter) {
6738 mono_class_setup_events (klass);
6739 /* start from the first */
6740 if (klass->ext->event.count) {
6741 return *iter = &klass->ext->events [0];
6742 } else {
6743 /* no fields */
6744 return NULL;
6747 event = *iter;
6748 event++;
6749 if (event < &klass->ext->events [klass->ext->event.count]) {
6750 return *iter = event;
6752 return NULL;
6756 * mono_class_get_interfaces
6757 * @klass: the MonoClass to act on
6759 * This routine is an iterator routine for retrieving the interfaces implemented by this class.
6761 * You must pass a gpointer that points to zero and is treated as an opaque handle to
6762 * iterate over all of the elements. When no more values are
6763 * available, the return value is NULL.
6765 * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
6767 MonoClass*
6768 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
6770 MonoClass** iface;
6771 if (!iter)
6772 return NULL;
6773 if (!*iter) {
6774 if (!klass->inited)
6775 mono_class_init (klass);
6776 if (!klass->interfaces_inited)
6777 mono_class_setup_interfaces (klass);
6778 /* start from the first */
6779 if (klass->interface_count) {
6780 *iter = &klass->interfaces [0];
6781 return klass->interfaces [0];
6782 } else {
6783 /* no interface */
6784 return NULL;
6787 iface = *iter;
6788 iface++;
6789 if (iface < &klass->interfaces [klass->interface_count]) {
6790 *iter = iface;
6791 return *iface;
6793 return NULL;
6797 * mono_class_get_nested_types
6798 * @klass: the MonoClass to act on
6800 * This routine is an iterator routine for retrieving the nested types of a class.
6801 * This works only if @klass is non-generic, or a generic type definition.
6803 * You must pass a gpointer that points to zero and is treated as an opaque handle to
6804 * iterate over all of the elements. When no more values are
6805 * available, the return value is NULL.
6807 * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
6809 MonoClass*
6810 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
6812 GList *item;
6813 int i;
6815 if (!iter)
6816 return NULL;
6817 if (!klass->inited)
6818 mono_class_init (klass);
6819 if (!klass->nested_classes_inited) {
6820 if (!klass->type_token)
6821 klass->nested_classes_inited = TRUE;
6822 mono_loader_lock ();
6823 if (!klass->nested_classes_inited) {
6824 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, 1);
6825 while (i) {
6826 MonoClass* nclass;
6827 guint32 cols [MONO_NESTED_CLASS_SIZE];
6828 mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
6829 nclass = mono_class_create_from_typedef (klass->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED]);
6830 mono_class_alloc_ext (klass);
6831 klass->ext->nested_classes = g_list_prepend_image (klass->image, klass->ext->nested_classes, nclass);
6833 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
6836 mono_memory_barrier ();
6837 klass->nested_classes_inited = TRUE;
6838 mono_loader_unlock ();
6841 if (!*iter) {
6842 /* start from the first */
6843 if (klass->ext && klass->ext->nested_classes) {
6844 *iter = klass->ext->nested_classes;
6845 return klass->ext->nested_classes->data;
6846 } else {
6847 /* no nested types */
6848 return NULL;
6851 item = *iter;
6852 item = item->next;
6853 if (item) {
6854 *iter = item;
6855 return item->data;
6857 return NULL;
6861 * mono_field_get_name:
6862 * @field: the MonoClassField to act on
6864 * Returns: the name of the field.
6866 const char*
6867 mono_field_get_name (MonoClassField *field)
6869 return field->name;
6873 * mono_field_get_type:
6874 * @field: the MonoClassField to act on
6876 * Returns: MonoType of the field.
6878 MonoType*
6879 mono_field_get_type (MonoClassField *field)
6881 return field->type;
6885 * mono_field_get_type:
6886 * @field: the MonoClassField to act on
6888 * Returns: MonoClass where the field was defined.
6890 MonoClass*
6891 mono_field_get_parent (MonoClassField *field)
6893 return field->parent;
6897 * mono_field_get_flags;
6898 * @field: the MonoClassField to act on
6900 * The metadata flags for a field are encoded using the
6901 * FIELD_ATTRIBUTE_* constants. See the tabledefs.h file for details.
6903 * Returns: the flags for the field.
6905 guint32
6906 mono_field_get_flags (MonoClassField *field)
6908 return field->type->attrs;
6912 * mono_field_get_offset;
6913 * @field: the MonoClassField to act on
6915 * Returns: the field offset.
6917 guint32
6918 mono_field_get_offset (MonoClassField *field)
6920 return field->offset;
6923 static const char *
6924 mono_field_get_rva (MonoClassField *field)
6926 guint32 rva;
6927 int field_index;
6928 MonoClass *klass = field->parent;
6930 g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA);
6932 if (!klass->ext || !klass->ext->field_def_values) {
6933 mono_loader_lock ();
6934 mono_class_alloc_ext (klass);
6935 if (!klass->ext->field_def_values)
6936 klass->ext->field_def_values = mono_image_alloc0 (klass->image, sizeof (MonoFieldDefaultValue) * klass->field.count);
6937 mono_loader_unlock ();
6940 field_index = mono_field_get_index (field);
6942 if (!klass->ext->field_def_values [field_index].data && !klass->image->dynamic) {
6943 mono_metadata_field_info (field->parent->image, klass->field.first + field_index, NULL, &rva, NULL);
6944 if (!rva)
6945 g_warning ("field %s in %s should have RVA data, but hasn't", mono_field_get_name (field), field->parent->name);
6946 klass->ext->field_def_values [field_index].data = mono_image_rva_map (field->parent->image, rva);
6949 return klass->ext->field_def_values [field_index].data;
6953 * mono_field_get_data;
6954 * @field: the MonoClassField to act on
6956 * Returns: pointer to the metadata constant value or to the field
6957 * data if it has an RVA flag.
6959 const char *
6960 mono_field_get_data (MonoClassField *field)
6962 if (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT) {
6963 MonoTypeEnum def_type;
6965 return mono_class_get_field_default_value (field, &def_type);
6966 } else if (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA) {
6967 return mono_field_get_rva (field);
6968 } else {
6969 return NULL;
6974 * mono_property_get_name:
6975 * @prop: the MonoProperty to act on
6977 * Returns: the name of the property
6979 const char*
6980 mono_property_get_name (MonoProperty *prop)
6982 return prop->name;
6986 * mono_property_get_set_method
6987 * @prop: the MonoProperty to act on.
6989 * Returns: the setter method of the property (A MonoMethod)
6991 MonoMethod*
6992 mono_property_get_set_method (MonoProperty *prop)
6994 return prop->set;
6998 * mono_property_get_get_method
6999 * @prop: the MonoProperty to act on.
7001 * Returns: the setter method of the property (A MonoMethod)
7003 MonoMethod*
7004 mono_property_get_get_method (MonoProperty *prop)
7006 return prop->get;
7010 * mono_property_get_parent:
7011 * @prop: the MonoProperty to act on.
7013 * Returns: the MonoClass where the property was defined.
7015 MonoClass*
7016 mono_property_get_parent (MonoProperty *prop)
7018 return prop->parent;
7022 * mono_property_get_flags:
7023 * @prop: the MonoProperty to act on.
7025 * The metadata flags for a property are encoded using the
7026 * PROPERTY_ATTRIBUTE_* constants. See the tabledefs.h file for details.
7028 * Returns: the flags for the property.
7030 guint32
7031 mono_property_get_flags (MonoProperty *prop)
7033 return prop->attrs;
7037 * mono_event_get_name:
7038 * @event: the MonoEvent to act on
7040 * Returns: the name of the event.
7042 const char*
7043 mono_event_get_name (MonoEvent *event)
7045 return event->name;
7049 * mono_event_get_add_method:
7050 * @event: The MonoEvent to act on.
7052 * Returns: the @add' method for the event (a MonoMethod).
7054 MonoMethod*
7055 mono_event_get_add_method (MonoEvent *event)
7057 return event->add;
7061 * mono_event_get_remove_method:
7062 * @event: The MonoEvent to act on.
7064 * Returns: the @remove method for the event (a MonoMethod).
7066 MonoMethod*
7067 mono_event_get_remove_method (MonoEvent *event)
7069 return event->remove;
7073 * mono_event_get_raise_method:
7074 * @event: The MonoEvent to act on.
7076 * Returns: the @raise method for the event (a MonoMethod).
7078 MonoMethod*
7079 mono_event_get_raise_method (MonoEvent *event)
7081 return event->raise;
7085 * mono_event_get_parent:
7086 * @event: the MonoEvent to act on.
7088 * Returns: the MonoClass where the event is defined.
7090 MonoClass*
7091 mono_event_get_parent (MonoEvent *event)
7093 return event->parent;
7097 * mono_event_get_flags
7098 * @event: the MonoEvent to act on.
7100 * The metadata flags for an event are encoded using the
7101 * EVENT_* constants. See the tabledefs.h file for details.
7103 * Returns: the flags for the event.
7105 guint32
7106 mono_event_get_flags (MonoEvent *event)
7108 return event->attrs;
7112 * mono_class_get_method_from_name:
7113 * @klass: where to look for the method
7114 * @name_space: name of the method
7115 * @param_count: number of parameters. -1 for any number.
7117 * Obtains a MonoMethod with a given name and number of parameters.
7118 * It only works if there are no multiple signatures for any given method name.
7120 MonoMethod *
7121 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
7123 return mono_class_get_method_from_name_flags (klass, name, param_count, 0);
7126 static MonoMethod*
7127 find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags)
7129 MonoMethod *res = NULL;
7130 int i;
7132 /* Search directly in the metadata to avoid calling setup_methods () */
7133 for (i = 0; i < klass->method.count; ++i) {
7134 guint32 cols [MONO_METHOD_SIZE];
7135 MonoMethod *method;
7137 /* class->method.first points into the methodptr table */
7138 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
7140 if (!strcmp (mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]), name)) {
7141 method = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
7142 if ((param_count == -1) || mono_method_signature (method)->param_count == param_count) {
7143 res = method;
7144 break;
7149 return res;
7153 * mono_class_get_method_from_name_flags:
7154 * @klass: where to look for the method
7155 * @name_space: name of the method
7156 * @param_count: number of parameters. -1 for any number.
7157 * @flags: flags which must be set in the method
7159 * Obtains a MonoMethod with a given name and number of parameters.
7160 * It only works if there are no multiple signatures for any given method name.
7162 MonoMethod *
7163 mono_class_get_method_from_name_flags (MonoClass *klass, const char *name, int param_count, int flags)
7165 MonoMethod *res = NULL;
7166 int i;
7168 mono_class_init (klass);
7170 if (klass->generic_class && !klass->methods) {
7171 res = mono_class_get_method_from_name_flags (klass->generic_class->container_class, name, param_count, flags);
7172 if (res)
7173 res = mono_class_inflate_generic_method_full (res, klass, mono_class_get_context (klass));
7174 return res;
7177 if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
7178 mono_class_setup_methods (klass);
7179 for (i = 0; i < klass->method.count; ++i) {
7180 MonoMethod *method = klass->methods [i];
7182 if (method->name[0] == name [0] &&
7183 !strcmp (name, method->name) &&
7184 (param_count == -1 || mono_method_signature (method)->param_count == param_count) &&
7185 ((method->flags & flags) == flags)) {
7186 res = method;
7187 break;
7191 else {
7192 res = find_method_in_metadata (klass, name, param_count, flags);
7195 return res;
7199 * mono_class_set_failure:
7200 * @klass: class in which the failure was detected
7201 * @ex_type: the kind of exception/error to be thrown (later)
7202 * @ex_data: exception data (specific to each type of exception/error)
7204 * Keep a detected failure informations in the class for later processing.
7205 * Note that only the first failure is kept.
7207 * LOCKING: Acquires the loader lock.
7209 gboolean
7210 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data)
7212 if (klass->exception_type)
7213 return FALSE;
7215 mono_loader_lock ();
7216 klass->exception_type = ex_type;
7217 if (ex_data)
7218 mono_image_property_insert (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA, ex_data);
7219 mono_loader_unlock ();
7221 return TRUE;
7225 * mono_class_get_exception_data:
7227 * Return the exception_data property of KLASS.
7229 * LOCKING: Acquires the loader lock.
7231 gpointer
7232 mono_class_get_exception_data (MonoClass *klass)
7234 return mono_image_property_lookup (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA);
7238 * mono_classes_init:
7240 * Initialize the resources used by this module.
7242 void
7243 mono_classes_init (void)
7245 mono_counters_register ("Inflated methods size",
7246 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_methods_size);
7247 mono_counters_register ("Inflated classes",
7248 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes);
7249 mono_counters_register ("Inflated classes size",
7250 MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes_size);
7251 mono_counters_register ("MonoClass size",
7252 MONO_COUNTER_METADATA | MONO_COUNTER_INT, &classes_size);
7253 mono_counters_register ("MonoClassExt size",
7254 MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ext_size);
7258 * mono_classes_cleanup:
7260 * Free the resources used by this module.
7262 void
7263 mono_classes_cleanup (void)
7265 if (global_interface_bitset)
7266 mono_bitset_free (global_interface_bitset);
7270 * mono_class_get_exception_for_failure:
7271 * @klass: class in which the failure was detected
7273 * Return a constructed MonoException than the caller can then throw
7274 * using mono_raise_exception - or NULL if no failure is present (or
7275 * doesn't result in an exception).
7277 MonoException*
7278 mono_class_get_exception_for_failure (MonoClass *klass)
7280 gpointer exception_data = mono_class_get_exception_data (klass);
7282 switch (klass->exception_type) {
7283 case MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND: {
7284 MonoDomain *domain = mono_domain_get ();
7285 MonoSecurityManager* secman = mono_security_manager_get_methods ();
7286 MonoMethod *method = exception_data;
7287 guint32 error = (method) ? MONO_METADATA_INHERITANCEDEMAND_METHOD : MONO_METADATA_INHERITANCEDEMAND_CLASS;
7288 MonoObject *exc = NULL;
7289 gpointer args [4];
7291 args [0] = &error;
7292 args [1] = mono_assembly_get_object (domain, mono_image_get_assembly (klass->image));
7293 args [2] = mono_type_get_object (domain, &klass->byval_arg);
7294 args [3] = (method) ? mono_method_get_object (domain, method, NULL) : NULL;
7296 mono_runtime_invoke (secman->inheritsecurityexception, NULL, args, &exc);
7297 return (MonoException*) exc;
7299 case MONO_EXCEPTION_TYPE_LOAD: {
7300 MonoString *name;
7301 MonoException *ex;
7302 char *str = mono_type_get_full_name (klass);
7303 char *astr = klass->image->assembly? mono_stringify_assembly_name (&klass->image->assembly->aname): NULL;
7304 name = mono_string_new (mono_domain_get (), str);
7305 g_free (str);
7306 ex = mono_get_exception_type_load (name, astr);
7307 g_free (astr);
7308 return ex;
7310 case MONO_EXCEPTION_MISSING_METHOD: {
7311 char *class_name = exception_data;
7312 char *assembly_name = class_name + strlen (class_name) + 1;
7314 return mono_get_exception_missing_method (class_name, assembly_name);
7316 case MONO_EXCEPTION_MISSING_FIELD: {
7317 char *class_name = exception_data;
7318 char *member_name = class_name + strlen (class_name) + 1;
7320 return mono_get_exception_missing_field (class_name, member_name);
7322 case MONO_EXCEPTION_FILE_NOT_FOUND: {
7323 char *msg_format = exception_data;
7324 char *assembly_name = msg_format + strlen (msg_format) + 1;
7325 char *msg = g_strdup_printf (msg_format, assembly_name);
7326 MonoException *ex;
7328 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), assembly_name));
7330 g_free (msg);
7332 return ex;
7334 case MONO_EXCEPTION_BAD_IMAGE: {
7335 return mono_get_exception_bad_image_format (exception_data);
7337 default: {
7338 MonoLoaderError *error;
7339 MonoException *ex;
7341 error = mono_loader_get_last_error ();
7342 if (error != NULL){
7343 ex = mono_loader_error_prepare_exception (error);
7344 return ex;
7347 /* TODO - handle other class related failures */
7348 return NULL;
7353 static gboolean
7354 is_nesting_type (MonoClass *outer_klass, MonoClass *inner_klass)
7356 outer_klass = mono_class_get_generic_type_definition (outer_klass);
7357 inner_klass = mono_class_get_generic_type_definition (inner_klass);
7358 do {
7359 if (outer_klass == inner_klass)
7360 return TRUE;
7361 inner_klass = inner_klass->nested_in;
7362 } while (inner_klass);
7363 return FALSE;
7366 MonoClass *
7367 mono_class_get_generic_type_definition (MonoClass *klass)
7369 return klass->generic_class ? klass->generic_class->container_class : klass;
7373 * Check if @klass is a subtype of @parent ignoring generic instantiations.
7375 * Generic instantiations are ignored for all super types of @klass.
7377 * Visibility checks ignoring generic instantiations.
7379 gboolean
7380 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent)
7382 int i;
7383 klass = mono_class_get_generic_type_definition (klass);
7384 parent = mono_class_get_generic_type_definition (parent);
7386 for (i = 0; i < klass->idepth; ++i) {
7387 if (parent == mono_class_get_generic_type_definition (klass->supertypes [i]))
7388 return TRUE;
7390 return FALSE;
7393 * Subtype can only access parent members with family protection if the site object
7394 * is subclass of Subtype. For example:
7395 * class A { protected int x; }
7396 * class B : A {
7397 * void valid_access () {
7398 * B b;
7399 * b.x = 0;
7401 * void invalid_access () {
7402 * A a;
7403 * a.x = 0;
7406 * */
7407 static gboolean
7408 is_valid_family_access (MonoClass *access_klass, MonoClass *member_klass, MonoClass *context_klass)
7410 if (!mono_class_has_parent_and_ignore_generics (access_klass, member_klass))
7411 return FALSE;
7413 if (context_klass == NULL)
7414 return TRUE;
7415 /*if access_klass is not member_klass context_klass must be type compat*/
7416 if (access_klass != member_klass && !mono_class_has_parent_and_ignore_generics (context_klass, access_klass))
7417 return FALSE;
7418 return TRUE;
7421 static gboolean
7422 can_access_internals (MonoAssembly *accessing, MonoAssembly* accessed)
7424 GSList *tmp;
7425 if (accessing == accessed)
7426 return TRUE;
7427 if (!accessed || !accessing)
7428 return FALSE;
7429 mono_assembly_load_friends (accessed);
7430 for (tmp = accessed->friend_assembly_names; tmp; tmp = tmp->next) {
7431 MonoAssemblyName *friend = tmp->data;
7432 /* Be conservative with checks */
7433 if (!friend->name)
7434 continue;
7435 if (strcmp (accessing->aname.name, friend->name))
7436 continue;
7437 if (friend->public_key_token [0]) {
7438 if (!accessing->aname.public_key_token [0])
7439 continue;
7440 if (!mono_public_tokens_are_equal (friend->public_key_token, accessing->aname.public_key_token))
7441 continue;
7443 return TRUE;
7445 return FALSE;
7449 * If klass is a generic type or if it is derived from a generic type, return the
7450 * MonoClass of the generic definition
7451 * Returns NULL if not found
7453 static MonoClass*
7454 get_generic_definition_class (MonoClass *klass)
7456 while (klass) {
7457 if (klass->generic_class && klass->generic_class->container_class)
7458 return klass->generic_class->container_class;
7459 klass = klass->parent;
7461 return NULL;
7464 static gboolean
7465 can_access_instantiation (MonoClass *access_klass, MonoGenericInst *ginst)
7467 int i;
7468 for (i = 0; i < ginst->type_argc; ++i) {
7469 MonoType *type = ginst->type_argv[i];
7470 if (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR)
7471 continue;
7472 if (!can_access_type (access_klass, mono_class_from_mono_type (type)))
7473 return FALSE;
7475 return TRUE;
7478 static gboolean
7479 can_access_type (MonoClass *access_klass, MonoClass *member_klass)
7481 int access_level = member_klass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK;
7483 if (member_klass->generic_class && !can_access_instantiation (access_klass, member_klass->generic_class->context.class_inst))
7484 return FALSE;
7486 if (is_nesting_type (access_klass, member_klass) || (access_klass->nested_in && is_nesting_type (access_klass->nested_in, member_klass)))
7487 return TRUE;
7489 if (member_klass->nested_in && !can_access_type (access_klass, member_klass->nested_in))
7490 return FALSE;
7492 switch (access_level) {
7493 case TYPE_ATTRIBUTE_NOT_PUBLIC:
7494 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7496 case TYPE_ATTRIBUTE_PUBLIC:
7497 return TRUE;
7499 case TYPE_ATTRIBUTE_NESTED_PUBLIC:
7500 return TRUE;
7502 case TYPE_ATTRIBUTE_NESTED_PRIVATE:
7503 return is_nesting_type (member_klass, access_klass);
7505 case TYPE_ATTRIBUTE_NESTED_FAMILY:
7506 return mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7508 case TYPE_ATTRIBUTE_NESTED_ASSEMBLY:
7509 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7511 case TYPE_ATTRIBUTE_NESTED_FAM_AND_ASSEM:
7512 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) &&
7513 mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7515 case TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM:
7516 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) ||
7517 mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7519 return FALSE;
7522 /* FIXME: check visibility of type, too */
7523 static gboolean
7524 can_access_member (MonoClass *access_klass, MonoClass *member_klass, MonoClass* context_klass, int access_level)
7526 MonoClass *member_generic_def;
7527 if (((access_klass->generic_class && access_klass->generic_class->container_class) ||
7528 access_klass->generic_container) &&
7529 (member_generic_def = get_generic_definition_class (member_klass))) {
7530 MonoClass *access_container;
7532 if (access_klass->generic_container)
7533 access_container = access_klass;
7534 else
7535 access_container = access_klass->generic_class->container_class;
7537 if (can_access_member (access_container, member_generic_def, context_klass, access_level))
7538 return TRUE;
7541 /* Partition I 8.5.3.2 */
7542 /* the access level values are the same for fields and methods */
7543 switch (access_level) {
7544 case FIELD_ATTRIBUTE_COMPILER_CONTROLLED:
7545 /* same compilation unit */
7546 return access_klass->image == member_klass->image;
7547 case FIELD_ATTRIBUTE_PRIVATE:
7548 return access_klass == member_klass;
7549 case FIELD_ATTRIBUTE_FAM_AND_ASSEM:
7550 if (is_valid_family_access (access_klass, member_klass, context_klass) &&
7551 can_access_internals (access_klass->image->assembly, member_klass->image->assembly))
7552 return TRUE;
7553 return FALSE;
7554 case FIELD_ATTRIBUTE_ASSEMBLY:
7555 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7556 case FIELD_ATTRIBUTE_FAMILY:
7557 if (is_valid_family_access (access_klass, member_klass, context_klass))
7558 return TRUE;
7559 return FALSE;
7560 case FIELD_ATTRIBUTE_FAM_OR_ASSEM:
7561 if (is_valid_family_access (access_klass, member_klass, context_klass))
7562 return TRUE;
7563 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7564 case FIELD_ATTRIBUTE_PUBLIC:
7565 return TRUE;
7567 return FALSE;
7570 gboolean
7571 mono_method_can_access_field (MonoMethod *method, MonoClassField *field)
7573 /* FIXME: check all overlapping fields */
7574 int can = can_access_member (method->klass, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7575 if (!can) {
7576 MonoClass *nested = method->klass->nested_in;
7577 while (nested) {
7578 can = can_access_member (nested, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7579 if (can)
7580 return TRUE;
7581 nested = nested->nested_in;
7584 return can;
7587 gboolean
7588 mono_method_can_access_method (MonoMethod *method, MonoMethod *called)
7590 int can = can_access_member (method->klass, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7591 if (!can) {
7592 MonoClass *nested = method->klass->nested_in;
7593 while (nested) {
7594 can = can_access_member (nested, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7595 if (can)
7596 return TRUE;
7597 nested = nested->nested_in;
7601 * FIXME:
7602 * with generics calls to explicit interface implementations can be expressed
7603 * directly: the method is private, but we must allow it. This may be opening
7604 * a hole or the generics code should handle this differently.
7605 * Maybe just ensure the interface type is public.
7607 if ((called->flags & METHOD_ATTRIBUTE_VIRTUAL) && (called->flags & METHOD_ATTRIBUTE_FINAL))
7608 return TRUE;
7609 return can;
7613 * mono_method_can_access_method_with_context:
7614 * @method: The caller method
7615 * @called: The called method
7616 * @context_klass:TThe static type on stack of the owner @called object used
7618 * This function must be used with instance calls, as they have more strict family accessibility.
7619 * It can be used with static mehthod, but context_klass should be NULL.
7621 * Returns: TRUE if caller have proper visibility and acessibility to @called
7623 gboolean
7624 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass)
7626 MonoClass *access_class = method->klass;
7627 MonoClass *member_class = called->klass;
7628 int can = can_access_member (access_class, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7629 if (!can) {
7630 MonoClass *nested = access_class->nested_in;
7631 while (nested) {
7632 can = can_access_member (nested, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7633 if (can)
7634 break;
7635 nested = nested->nested_in;
7639 if (!can)
7640 return FALSE;
7642 if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7643 return FALSE;
7645 if (called->is_inflated) {
7646 MonoMethodInflated * infl = (MonoMethodInflated*)called;
7647 if (infl->context.method_inst && !can_access_instantiation (access_class, infl->context.method_inst))
7648 return FALSE;
7651 return TRUE;
7656 * mono_method_can_access_method_with_context:
7657 * @method: The caller method
7658 * @field: The accessed field
7659 * @context_klass: The static type on stack of the owner @field object used
7661 * This function must be used with instance fields, as they have more strict family accessibility.
7662 * It can be used with static fields, but context_klass should be NULL.
7664 * Returns: TRUE if caller have proper visibility and acessibility to @field
7666 gboolean
7667 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass)
7669 MonoClass *access_class = method->klass;
7670 MonoClass *member_class = field->parent;
7671 /* FIXME: check all overlapping fields */
7672 int can = can_access_member (access_class, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7673 if (!can) {
7674 MonoClass *nested = access_class->nested_in;
7675 while (nested) {
7676 can = can_access_member (nested, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7677 if (can)
7678 break;
7679 nested = nested->nested_in;
7683 if (!can)
7684 return FALSE;
7686 if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7687 return FALSE;
7688 return TRUE;
7692 * mono_type_is_valid_enum_basetype:
7693 * @type: The MonoType to check
7695 * Returns: TRUE if the type can be used as the basetype of an enum
7697 gboolean mono_type_is_valid_enum_basetype (MonoType * type) {
7698 switch (type->type) {
7699 case MONO_TYPE_I1:
7700 case MONO_TYPE_U1:
7701 case MONO_TYPE_BOOLEAN:
7702 case MONO_TYPE_I2:
7703 case MONO_TYPE_U2:
7704 case MONO_TYPE_CHAR:
7705 case MONO_TYPE_I4:
7706 case MONO_TYPE_U4:
7707 case MONO_TYPE_I8:
7708 case MONO_TYPE_U8:
7709 case MONO_TYPE_I:
7710 case MONO_TYPE_U:
7711 return TRUE;
7713 return FALSE;
7717 * mono_class_is_valid_enum:
7718 * @klass: An enum class to be validated
7720 * This method verify the required properties an enum should have.
7722 * Returns: TRUE if the informed enum class is valid
7724 * FIXME: TypeBuilder enums are allowed to implement interfaces, but since they cannot have methods, only empty interfaces are possible
7725 * FIXME: enum types are not allowed to have a cctor, but mono_reflection_create_runtime_class sets has_cctor to 1 for all types
7726 * FIXME: TypeBuilder enums can have any kind of static fields, but the spec is very explicit about that (P II 14.3)
7728 gboolean mono_class_is_valid_enum (MonoClass *klass) {
7729 MonoClassField * field;
7730 gpointer iter = NULL;
7731 gboolean found_base_field = FALSE;
7733 g_assert (klass->enumtype);
7734 /* we cannot test against mono_defaults.enum_class, or mcs won't be able to compile the System namespace*/
7735 if (!klass->parent || strcmp (klass->parent->name, "Enum") || strcmp (klass->parent->name_space, "System") ) {
7736 return FALSE;
7739 if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) != TYPE_ATTRIBUTE_AUTO_LAYOUT)
7740 return FALSE;
7742 while ((field = mono_class_get_fields (klass, &iter))) {
7743 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
7744 if (found_base_field)
7745 return FALSE;
7746 found_base_field = TRUE;
7747 if (!mono_type_is_valid_enum_basetype (field->type))
7748 return FALSE;
7752 if (!found_base_field)
7753 return FALSE;
7755 if (klass->method.count > 0)
7756 return FALSE;
7758 return TRUE;
7761 gboolean
7762 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass)
7764 return gklass->context.class_inst == gklass->container_class->generic_container->context.class_inst;
7768 * mono_class_generic_sharing_enabled:
7769 * @class: a class
7771 * Returns whether generic sharing is enabled for class.
7773 * This is a stop-gap measure to slowly introduce generic sharing
7774 * until we have all the issues sorted out, at which time this
7775 * function will disappear and generic sharing will always be enabled.
7777 gboolean
7778 mono_class_generic_sharing_enabled (MonoClass *class)
7780 #if defined(__i386__) || defined(__x86_64__) || defined(__arm__) || defined(__mono_ppc__)
7781 static gboolean supported = TRUE;
7782 #else
7783 /* Not supported by the JIT backends */
7784 static gboolean supported = FALSE;
7785 #endif
7786 static int generic_sharing = MONO_GENERIC_SHARING_NONE;
7787 static gboolean inited = FALSE;
7789 if (!inited) {
7790 const char *option;
7792 if (supported)
7793 generic_sharing = MONO_GENERIC_SHARING_ALL;
7794 else
7795 generic_sharing = MONO_GENERIC_SHARING_NONE;
7797 if ((option = g_getenv ("MONO_GENERIC_SHARING"))) {
7798 if (strcmp (option, "corlib") == 0)
7799 generic_sharing = MONO_GENERIC_SHARING_CORLIB;
7800 else if (strcmp (option, "collections") == 0)
7801 generic_sharing = MONO_GENERIC_SHARING_COLLECTIONS;
7802 else if (strcmp (option, "all") == 0)
7803 generic_sharing = MONO_GENERIC_SHARING_ALL;
7804 else if (strcmp (option, "none") == 0)
7805 generic_sharing = MONO_GENERIC_SHARING_NONE;
7806 else
7807 g_warning ("Unknown generic sharing option `%s'.", option);
7810 if (!supported)
7811 generic_sharing = MONO_GENERIC_SHARING_NONE;
7813 inited = TRUE;
7816 switch (generic_sharing) {
7817 case MONO_GENERIC_SHARING_NONE:
7818 return FALSE;
7819 case MONO_GENERIC_SHARING_ALL:
7820 return TRUE;
7821 case MONO_GENERIC_SHARING_CORLIB :
7822 return class->image == mono_defaults.corlib;
7823 case MONO_GENERIC_SHARING_COLLECTIONS:
7824 if (class->image != mono_defaults.corlib)
7825 return FALSE;
7826 while (class->nested_in)
7827 class = class->nested_in;
7828 return g_str_has_prefix (class->name_space, "System.Collections.Generic");
7829 default:
7830 g_assert_not_reached ();
7835 * mono_class_setup_interface_id:
7837 * Initializes MonoClass::interface_id if required.
7839 * LOCKING: Acquires the loader lock.
7841 void
7842 mono_class_setup_interface_id (MonoClass *class)
7844 mono_loader_lock ();
7845 if (MONO_CLASS_IS_INTERFACE (class) && !class->interface_id)
7846 class->interface_id = mono_get_unique_iid (class);
7847 mono_loader_unlock ();
7851 * mono_class_alloc_ext:
7853 * Allocate klass->ext if not already done.
7854 * LOCKING: Assumes the loader lock is held.
7856 void
7857 mono_class_alloc_ext (MonoClass *klass)
7859 if (!klass->ext) {
7860 if (klass->generic_class) {
7861 klass->ext = g_new0 (MonoClassExt, 1);
7862 } else {
7863 klass->ext = mono_image_alloc0 (klass->image, sizeof (MonoClassExt));
7865 class_ext_size += sizeof (MonoClassExt);
7870 * mono_class_setup_interfaces:
7872 * Initialize class->interfaces/interfaces_count.
7873 * LOCKING: Acquires the loader lock.
7875 void
7876 mono_class_setup_interfaces (MonoClass *klass)
7878 int i;
7880 if (klass->interfaces_inited)
7881 return;
7883 mono_loader_lock ();
7885 if (klass->interfaces_inited) {
7886 mono_loader_unlock ();
7887 return;
7890 if (klass->rank == 1 && klass->byval_arg.type != MONO_TYPE_ARRAY && mono_defaults.generic_ilist_class) {
7891 MonoType *args [1];
7893 /* generic IList, ICollection, IEnumerable */
7894 klass->interface_count = 1;
7895 klass->interfaces = mono_image_alloc0 (klass->image, sizeof (MonoClass*) * klass->interface_count);
7897 args [0] = &klass->element_class->byval_arg;
7898 klass->interfaces [0] = mono_class_bind_generic_parameters (
7899 mono_defaults.generic_ilist_class, 1, args, FALSE);
7900 } else if (klass->generic_class) {
7901 MonoClass *gklass = klass->generic_class->container_class;
7903 klass->interface_count = gklass->interface_count;
7904 klass->interfaces = g_new0 (MonoClass *, klass->interface_count);
7905 for (i = 0; i < klass->interface_count; i++)
7906 klass->interfaces [i] = mono_class_inflate_generic_class (gklass->interfaces [i], mono_generic_class_get_context (klass->generic_class));
7909 mono_memory_barrier ();
7911 klass->interfaces_inited = TRUE;
7913 mono_loader_unlock ();