91bae5b79c6bf1faa1fd08307c2306beced7ef2a
[mono.git] / mono / metadata / class.c
1 /*
2  * class.c: Class management for the Mono runtime
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *
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 #if !PLATFORM_WIN32
19 #include <mono/io-layer/atomic.h>
20 #endif
21 #include <mono/metadata/image.h>
22 #include <mono/metadata/assembly.h>
23 #include <mono/metadata/metadata.h>
24 #include <mono/metadata/metadata-internals.h>
25 #include <mono/metadata/profiler-private.h>
26 #include <mono/metadata/tabledefs.h>
27 #include <mono/metadata/tokentype.h>
28 #include <mono/metadata/class-internals.h>
29 #include <mono/metadata/object.h>
30 #include <mono/metadata/appdomain.h>
31 #include <mono/metadata/mono-endian.h>
32 #include <mono/metadata/debug-helpers.h>
33 #include <mono/metadata/reflection.h>
34 #include <mono/metadata/exception.h>
35 #include <mono/metadata/security-manager.h>
36 #include <mono/metadata/security-core-clr.h>
37 #include <mono/metadata/attrdefs.h>
38 #include <mono/metadata/gc-internal.h>
39 #include <mono/metadata/verify-internals.h>
40 #include <mono/metadata/mono-debug.h>
41 #include <mono/utils/mono-counters.h>
42 #include <mono/utils/mono-string.h>
43
44 MonoStats mono_stats;
45
46 gboolean mono_print_vtable = FALSE;
47
48 /*
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.
52  */
53 gboolean mono_setup_vtable_in_class_init = TRUE;
54
55 /* Statistics */
56 guint32 inflated_classes, inflated_classes_size, inflated_methods_size;
57 guint32 classes_size, class_ext_size;
58
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;
61
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);
68
69 static MonoMethod* mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter);
70
71 void (*mono_debugger_class_init_func) (MonoClass *klass) = NULL;
72 void (*mono_debugger_class_loaded_methods_func) (MonoClass *klass) = NULL;
73
74 /*
75  * mono_class_from_typeref:
76  * @image: a MonoImage
77  * @type_token: a TypeRef token
78  *
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.
83  */
84 MonoClass *
85 mono_class_from_typeref (MonoImage *image, guint32 type_token)
86 {
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;
93         
94         mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
95
96         name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
97         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
98
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;
113                         
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);
118                 
119                         return NULL;
120                 }
121         case MONO_RESOLTION_SCOPE_TYPEREF: {
122                 MonoClass *enclosing = mono_class_from_typeref (image, MONO_TOKEN_TYPE_REF | idx);
123                 GList *tmp;
124
125                 if (!enclosing)
126                         return NULL;
127
128                 if (enclosing->nested_classes_inited && enclosing->ext) {
129                         /* Micro-optimization: don't scan the metadata tables if enclosing is already inited */
130                         for (tmp = enclosing->ext->nested_classes; tmp; tmp = tmp->next) {
131                                 res = tmp->data;
132                                 if (strcmp (res->name, name) == 0)
133                                         return res;
134                         }
135                 } else {
136                         /* Don't call mono_class_init as we might've been called by it recursively */
137                         int i = mono_metadata_nesting_typedef (enclosing->image, enclosing->type_token, 1);
138                         while (i) {
139                                 guint32 class_nested = mono_metadata_decode_row_col (&enclosing->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, MONO_NESTED_CLASS_NESTED);
140                                 guint32 string_offset = mono_metadata_decode_row_col (&enclosing->image->tables [MONO_TABLE_TYPEDEF], class_nested - 1, MONO_TYPEDEF_NAME);
141                                 const char *nname = mono_metadata_string_heap (enclosing->image, string_offset);
142
143                                 if (strcmp (nname, name) == 0)
144                                         return mono_class_create_from_typedef (enclosing->image, MONO_TOKEN_TYPE_DEF | class_nested);
145
146                                 i = mono_metadata_nesting_typedef (enclosing->image, enclosing->type_token, i + 1);
147                         }
148                 }
149                 g_warning ("TypeRef ResolutionScope not yet handled (%d) for %s.%s in image %s", idx, nspace, name, image->name);
150                 return NULL;
151         }
152         case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
153                 break;
154         }
155
156         if (!image->references || !image->references [idx - 1])
157                 mono_assembly_load_reference (image, idx - 1);
158         g_assert (image->references [idx - 1]);
159
160         /* If the assembly did not load, register this as a type load exception */
161         if (image->references [idx - 1] == REFERENCE_MISSING){
162                 MonoAssemblyName aname;
163                 char *human_name;
164                 
165                 mono_assembly_get_assemblyref (image, idx - 1, &aname);
166                 human_name = mono_stringify_assembly_name (&aname);
167                 mono_loader_set_error_assembly_load (human_name, image->assembly->ref_only);
168                 g_free (human_name);
169                 
170                 return NULL;
171         }
172
173         return mono_class_from_name (image->references [idx - 1]->image, nspace, name);
174 }
175
176
177 static void *
178 mono_image_memdup (MonoImage *image, void *data, guint size)
179 {
180         void *res = mono_image_alloc (image, size);
181         memcpy (res, data, size);
182         return res;
183 }
184         
185 /* Copy everything mono_metadata_free_array free. */
186 MonoArrayType *
187 mono_dup_array_type (MonoImage *image, MonoArrayType *a)
188 {
189         if (image) {
190                 a = mono_image_memdup (image, a, sizeof (MonoArrayType));
191                 if (a->sizes)
192                         a->sizes = mono_image_memdup (image, a->sizes, a->numsizes * sizeof (int));
193                 if (a->lobounds)
194                         a->lobounds = mono_image_memdup (image, a->lobounds, a->numlobounds * sizeof (int));
195         } else {
196                 a = g_memdup (a, sizeof (MonoArrayType));
197                 if (a->sizes)
198                         a->sizes = g_memdup (a->sizes, a->numsizes * sizeof (int));
199                 if (a->lobounds)
200                         a->lobounds = g_memdup (a->lobounds, a->numlobounds * sizeof (int));
201         }
202         return a;
203 }
204
205 /* Copy everything mono_metadata_free_method_signature free. */
206 MonoMethodSignature*
207 mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig)
208 {
209         int i;
210         
211         sig = mono_metadata_signature_dup_full (image, sig);
212         
213         sig->ret = mono_metadata_type_dup (image, sig->ret);
214         for (i = 0; i < sig->param_count; ++i)
215                 sig->params [i] = mono_metadata_type_dup (image, sig->params [i]);
216         
217         return sig;
218 }
219
220 static void
221 _mono_type_get_assembly_name (MonoClass *klass, GString *str)
222 {
223         MonoAssembly *ta = klass->image->assembly;
224
225         g_string_append_printf (
226                 str, ", %s, Version=%d.%d.%d.%d, Culture=%s, PublicKeyToken=%s%s",
227                 ta->aname.name,
228                 ta->aname.major, ta->aname.minor, ta->aname.build, ta->aname.revision,
229                 ta->aname.culture && *ta->aname.culture? ta->aname.culture: "neutral",
230                 ta->aname.public_key_token [0] ? (char *)ta->aname.public_key_token : "null",
231                 (ta->aname.flags & ASSEMBLYREF_RETARGETABLE_FLAG) ? ", Retargetable=Yes" : "");
232 }
233
234 static inline void
235 mono_type_name_check_byref (MonoType *type, GString *str)
236 {
237         if (type->byref)
238                 g_string_append_c (str, '&');
239 }
240
241 static void
242 mono_type_get_name_recurse (MonoType *type, GString *str, gboolean is_recursed,
243                             MonoTypeNameFormat format)
244 {
245         MonoClass *klass;
246         
247         switch (type->type) {
248         case MONO_TYPE_ARRAY: {
249                 int i, rank = type->data.array->rank;
250                 MonoTypeNameFormat nested_format;
251
252                 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
253                         MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
254
255                 mono_type_get_name_recurse (
256                         &type->data.array->eklass->byval_arg, str, FALSE, nested_format);
257                 g_string_append_c (str, '[');
258                 if (rank == 1)
259                         g_string_append_c (str, '*');
260                 for (i = 1; i < rank; i++)
261                         g_string_append_c (str, ',');
262                 g_string_append_c (str, ']');
263                 
264                 mono_type_name_check_byref (type, str);
265
266                 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
267                         _mono_type_get_assembly_name (type->data.array->eklass, str);
268                 break;
269         }
270         case MONO_TYPE_SZARRAY: {
271                 MonoTypeNameFormat nested_format;
272
273                 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
274                         MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
275
276                 mono_type_get_name_recurse (
277                         &type->data.klass->byval_arg, str, FALSE, nested_format);
278                 g_string_append (str, "[]");
279                 
280                 mono_type_name_check_byref (type, str);
281
282                 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
283                         _mono_type_get_assembly_name (type->data.klass, str);
284                 break;
285         }
286         case MONO_TYPE_PTR: {
287                 MonoTypeNameFormat nested_format;
288
289                 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
290                         MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
291
292                 mono_type_get_name_recurse (
293                         type->data.type, str, FALSE, nested_format);
294                 g_string_append_c (str, '*');
295
296                 mono_type_name_check_byref (type, str);
297
298                 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
299                         _mono_type_get_assembly_name (mono_class_from_mono_type (type->data.type), str);
300                 break;
301         }
302         case MONO_TYPE_VAR:
303         case MONO_TYPE_MVAR:
304                 if (!mono_generic_param_info (type->data.generic_param))
305                         g_string_append_printf (str, "%s%d", type->type == MONO_TYPE_VAR ? "!" : "!!", type->data.generic_param->num);
306                 else
307                         g_string_append (str, mono_generic_param_info (type->data.generic_param)->name);
308
309                 mono_type_name_check_byref (type, str);
310
311                 break;
312         default:
313                 klass = mono_class_from_mono_type (type);
314                 if (klass->nested_in) {
315                         mono_type_get_name_recurse (
316                                 &klass->nested_in->byval_arg, str, TRUE, format);
317                         if (format == MONO_TYPE_NAME_FORMAT_IL)
318                                 g_string_append_c (str, '.');
319                         else
320                                 g_string_append_c (str, '+');
321                 } else if (*klass->name_space) {
322                         g_string_append (str, klass->name_space);
323                         g_string_append_c (str, '.');
324                 }
325                 if (format == MONO_TYPE_NAME_FORMAT_IL) {
326                         char *s = strchr (klass->name, '`');
327                         int len = s ? s - klass->name : strlen (klass->name);
328
329                         g_string_append_len (str, klass->name, len);
330                 } else
331                         g_string_append (str, klass->name);
332                 if (is_recursed)
333                         break;
334                 if (klass->generic_class) {
335                         MonoGenericClass *gclass = klass->generic_class;
336                         MonoGenericInst *inst = gclass->context.class_inst;
337                         MonoTypeNameFormat nested_format;
338                         int i;
339
340                         nested_format = format == MONO_TYPE_NAME_FORMAT_FULL_NAME ?
341                                 MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED : format;
342
343                         if (format == MONO_TYPE_NAME_FORMAT_IL)
344                                 g_string_append_c (str, '<');
345                         else
346                                 g_string_append_c (str, '[');
347                         for (i = 0; i < inst->type_argc; i++) {
348                                 MonoType *t = inst->type_argv [i];
349
350                                 if (i)
351                                         g_string_append_c (str, ',');
352                                 if ((nested_format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
353                                     (t->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
354                                         g_string_append_c (str, '[');
355                                 mono_type_get_name_recurse (inst->type_argv [i], str, FALSE, nested_format);
356                                 if ((nested_format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
357                                     (t->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
358                                         g_string_append_c (str, ']');
359                         }
360                         if (format == MONO_TYPE_NAME_FORMAT_IL) 
361                                 g_string_append_c (str, '>');
362                         else
363                                 g_string_append_c (str, ']');
364                 } else if (klass->generic_container &&
365                            (format != MONO_TYPE_NAME_FORMAT_FULL_NAME) &&
366                            (format != MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)) {
367                         int i;
368
369                         if (format == MONO_TYPE_NAME_FORMAT_IL) 
370                                 g_string_append_c (str, '<');
371                         else
372                                 g_string_append_c (str, '[');
373                         for (i = 0; i < klass->generic_container->type_argc; i++) {
374                                 if (i)
375                                         g_string_append_c (str, ',');
376                                 g_string_append (str, mono_generic_container_get_param_info (klass->generic_container, i)->name);
377                         }
378                         if (format == MONO_TYPE_NAME_FORMAT_IL) 
379                                 g_string_append_c (str, '>');
380                         else
381                                 g_string_append_c (str, ']');
382                 }
383
384                 mono_type_name_check_byref (type, str);
385
386                 if ((format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
387                     (type->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
388                         _mono_type_get_assembly_name (klass, str);
389                 break;
390         }
391 }
392
393 /**
394  * mono_type_get_name_full:
395  * @type: a type
396  * @format: the format for the return string.
397  *
398  * 
399  * Returns: the string representation in a number of formats:
400  *
401  * if format is MONO_TYPE_NAME_FORMAT_REFLECTION, the return string is
402  * returned in the formatrequired by System.Reflection, this is the
403  * inverse of mono_reflection_parse_type ().
404  *
405  * if format is MONO_TYPE_NAME_FORMAT_IL, it returns a syntax that can
406  * be used by the IL assembler.
407  *
408  * if format is MONO_TYPE_NAME_FORMAT_FULL_NAME
409  *
410  * if format is MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED
411  */
412 char*
413 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format)
414 {
415         GString* result;
416
417         result = g_string_new ("");
418
419         mono_type_get_name_recurse (type, result, FALSE, format);
420
421         return g_string_free (result, FALSE);
422 }
423
424 /**
425  * mono_type_get_full_name:
426  * @class: a class
427  *
428  * Returns: the string representation for type as required by System.Reflection.
429  * The inverse of mono_reflection_parse_type ().
430  */
431 char *
432 mono_type_get_full_name (MonoClass *class)
433 {
434         return mono_type_get_name_full (mono_class_get_type (class), MONO_TYPE_NAME_FORMAT_REFLECTION);
435 }
436
437 /**
438  * mono_type_get_name:
439  * @type: a type
440  *
441  * Returns: the string representation for type as it would be represented in IL code.
442  */
443 char*
444 mono_type_get_name (MonoType *type)
445 {
446         return mono_type_get_name_full (type, MONO_TYPE_NAME_FORMAT_IL);
447 }
448
449 /*
450  * mono_type_get_underlying_type:
451  * @type: a type
452  *
453  * Returns: the MonoType for the underlying integer type if @type
454  * is an enum and byref is false, otherwise the type itself.
455  */
456 MonoType*
457 mono_type_get_underlying_type (MonoType *type)
458 {
459         if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype && !type->byref)
460                 return mono_class_enum_basetype (type->data.klass);
461         if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype && !type->byref)
462                 return mono_class_enum_basetype (type->data.generic_class->container_class);
463         return type;
464 }
465
466 /*
467  * mono_class_is_open_constructed_type:
468  * @type: a type
469  *
470  * Returns TRUE if type represents a generics open constructed type
471  * (not all the type parameters required for the instantiation have
472  * been provided).
473  */
474 gboolean
475 mono_class_is_open_constructed_type (MonoType *t)
476 {
477         switch (t->type) {
478         case MONO_TYPE_VAR:
479         case MONO_TYPE_MVAR:
480                 return TRUE;
481         case MONO_TYPE_SZARRAY:
482                 return mono_class_is_open_constructed_type (&t->data.klass->byval_arg);
483         case MONO_TYPE_ARRAY:
484                 return mono_class_is_open_constructed_type (&t->data.array->eklass->byval_arg);
485         case MONO_TYPE_PTR:
486                 return mono_class_is_open_constructed_type (t->data.type);
487         case MONO_TYPE_GENERICINST:
488                 return t->data.generic_class->context.class_inst->is_open;
489         default:
490                 return FALSE;
491         }
492 }
493
494 static MonoType*
495 inflate_generic_type (MonoImage *image, MonoType *type, MonoGenericContext *context)
496 {
497         switch (type->type) {
498         case MONO_TYPE_MVAR: {
499                 MonoType *nt;
500                 int num = mono_type_get_generic_param_num (type);
501                 MonoGenericInst *inst = context->method_inst;
502                 if (!inst || !inst->type_argv)
503                         return NULL;
504                 if (num >= inst->type_argc) {
505                         MonoGenericParamInfo *info = mono_generic_param_info (type->data.generic_param);
506                         g_error ("MVAR %d (%s) cannot be expanded in this context with %d instantiations",
507                                 num, info ? info->name : "", inst->type_argc);
508                 }
509
510                 /*
511                  * Note that the VAR/MVAR cases are different from the rest.  The other cases duplicate @type,
512                  * while the VAR/MVAR duplicates a type from the context.  So, we need to ensure that the
513                  * ->byref and ->attrs from @type are propagated to the returned type.
514                  */
515                 nt = mono_metadata_type_dup (image, inst->type_argv [num]);
516                 nt->byref = type->byref;
517                 nt->attrs = type->attrs;
518                 return nt;
519         }
520         case MONO_TYPE_VAR: {
521                 MonoType *nt;
522                 int num = mono_type_get_generic_param_num (type);
523                 MonoGenericInst *inst = context->class_inst;
524                 if (!inst)
525                         return NULL;
526                 if (num >= inst->type_argc) {
527                         MonoGenericParamInfo *info = mono_generic_param_info (type->data.generic_param);
528                         g_error ("VAR %d (%s) cannot be expanded in this context with %d instantiations",
529                                 num, info ? info->name : "", inst->type_argc);
530                 }
531                 nt = mono_metadata_type_dup (image, inst->type_argv [num]);
532                 nt->byref = type->byref;
533                 nt->attrs = type->attrs;
534                 return nt;
535         }
536         case MONO_TYPE_SZARRAY: {
537                 MonoClass *eclass = type->data.klass;
538                 MonoType *nt, *inflated = inflate_generic_type (NULL, &eclass->byval_arg, context);
539                 if (!inflated)
540                         return NULL;
541                 nt = mono_metadata_type_dup (image, type);
542                 nt->data.klass = mono_class_from_mono_type (inflated);
543                 mono_metadata_free_type (inflated);
544                 return nt;
545         }
546         case MONO_TYPE_ARRAY: {
547                 MonoClass *eclass = type->data.array->eklass;
548                 MonoType *nt, *inflated = inflate_generic_type (NULL, &eclass->byval_arg, context);
549                 if (!inflated)
550                         return NULL;
551                 nt = mono_metadata_type_dup (image, type);
552                 nt->data.array = g_memdup (nt->data.array, sizeof (MonoArrayType));
553                 nt->data.array->eklass = mono_class_from_mono_type (inflated);
554                 mono_metadata_free_type (inflated);
555                 return nt;
556         }
557         case MONO_TYPE_GENERICINST: {
558                 MonoGenericClass *gclass = type->data.generic_class;
559                 MonoGenericInst *inst;
560                 MonoType *nt;
561                 if (!gclass->context.class_inst->is_open)
562                         return NULL;
563
564                 inst = mono_metadata_inflate_generic_inst (gclass->context.class_inst, context);
565                 if (inst != gclass->context.class_inst)
566                         gclass = mono_metadata_lookup_generic_class (gclass->container_class, inst, gclass->is_dynamic);
567
568                 if (gclass == type->data.generic_class)
569                         return NULL;
570
571                 nt = mono_metadata_type_dup (image, type);
572                 nt->data.generic_class = gclass;
573                 return nt;
574         }
575         case MONO_TYPE_CLASS:
576         case MONO_TYPE_VALUETYPE: {
577                 MonoClass *klass = type->data.klass;
578                 MonoGenericContainer *container = klass->generic_container;
579                 MonoGenericInst *inst;
580                 MonoGenericClass *gclass = NULL;
581                 MonoType *nt;
582
583                 if (!container)
584                         return NULL;
585
586                 /* We can't use context->class_inst directly, since it can have more elements */
587                 inst = mono_metadata_inflate_generic_inst (container->context.class_inst, context);
588                 if (inst == container->context.class_inst)
589                         return NULL;
590
591                 gclass = mono_metadata_lookup_generic_class (klass, inst, klass->image->dynamic);
592
593                 nt = mono_metadata_type_dup (image, type);
594                 nt->type = MONO_TYPE_GENERICINST;
595                 nt->data.generic_class = gclass;
596                 return nt;
597         }
598         default:
599                 return NULL;
600         }
601         return NULL;
602 }
603
604 MonoGenericContext *
605 mono_generic_class_get_context (MonoGenericClass *gclass)
606 {
607         return &gclass->context;
608 }
609
610 MonoGenericContext *
611 mono_class_get_context (MonoClass *class)
612 {
613        return class->generic_class ? mono_generic_class_get_context (class->generic_class) : NULL;
614 }
615
616 /*
617  * mono_class_get_generic_container:
618  *
619  *   Return the generic container of KLASS which should be a generic type definition.
620  */
621 MonoGenericContainer*
622 mono_class_get_generic_container (MonoClass *klass)
623 {
624         g_assert (klass->is_generic);
625
626         return klass->generic_container;
627 }
628
629 /*
630  * mono_class_get_generic_class:
631  *
632  *   Return the MonoGenericClass of KLASS, which should be a generic instance.
633  */
634 MonoGenericClass*
635 mono_class_get_generic_class (MonoClass *klass)
636 {
637         g_assert (klass->is_inflated);
638
639         return klass->generic_class;
640 }
641
642 /*
643  * mono_class_inflate_generic_type_with_mempool:
644  * @mempool: a mempool
645  * @type: a type
646  * @context: a generics context
647  *
648  * The same as mono_class_inflate_generic_type, but allocates the MonoType
649  * from mempool if it is non-NULL.  If it is NULL, the MonoType is
650  * allocated on the heap and is owned by the caller.
651  * The returned type can potentially be the same as TYPE, so it should not be
652  * modified by the caller, and it should be freed using mono_metadata_free_type ().
653  */
654 MonoType*
655 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context)
656 {
657         MonoType *inflated = NULL; 
658
659         if (context)
660                 inflated = inflate_generic_type (image, type, context);
661
662         if (!inflated) {
663                 MonoType *shared = mono_metadata_get_shared_type (type);
664
665                 if (shared) {
666                         return shared;
667                 } else {
668                         return mono_metadata_type_dup (image, type);
669                 }
670         }
671
672         mono_stats.inflated_type_count++;
673         return inflated;
674 }
675
676 /*
677  * mono_class_inflate_generic_type:
678  * @type: a type
679  * @context: a generics context
680  *
681  * If @type is a generic type and @context is not NULL, instantiate it using the 
682  * generics context @context.
683  *
684  * Returns: the instantiated type or a copy of @type. The returned MonoType is allocated
685  * on the heap and is owned by the caller.
686  */
687 MonoType*
688 mono_class_inflate_generic_type (MonoType *type, MonoGenericContext *context)
689 {
690         return mono_class_inflate_generic_type_with_mempool (NULL, type, context);
691 }
692
693 /*
694  * mono_class_inflate_generic_type_no_copy:
695  *
696  *   Same as inflate_generic_type_with_mempool, but return TYPE if no inflation
697  * was done.
698  */
699 static MonoType*
700 mono_class_inflate_generic_type_no_copy (MonoImage *image, MonoType *type, MonoGenericContext *context)
701 {
702         MonoType *inflated = NULL; 
703
704         if (context)
705                 inflated = inflate_generic_type (image, type, context);
706
707         if (!inflated)
708                 return type;
709
710         mono_stats.inflated_type_count++;
711         return inflated;
712 }
713
714 /*
715  * mono_class_inflate_generic_class:
716  *
717  *   Inflate the class GKLASS with CONTEXT.
718  */
719 MonoClass*
720 mono_class_inflate_generic_class (MonoClass *gklass, MonoGenericContext *context)
721 {
722         MonoClass *res;
723         MonoType *inflated;
724
725         inflated = mono_class_inflate_generic_type (&gklass->byval_arg, context);
726
727         res = mono_class_from_mono_type (inflated);
728         mono_metadata_free_type (inflated);
729
730         return res;
731 }
732
733 static MonoGenericContext
734 inflate_generic_context (MonoGenericContext *context, MonoGenericContext *inflate_with)
735 {
736         MonoGenericInst *class_inst = NULL;
737         MonoGenericInst *method_inst = NULL;
738         MonoGenericContext res;
739
740         if (context->class_inst)
741                 class_inst = mono_metadata_inflate_generic_inst (context->class_inst, inflate_with);
742
743         if (context->method_inst)
744                 method_inst = mono_metadata_inflate_generic_inst (context->method_inst, inflate_with);
745
746         res.class_inst = class_inst;
747         res.method_inst = method_inst;
748
749         return res;
750 }
751
752 /*
753  * mono_class_inflate_generic_method:
754  * @method: a generic method
755  * @context: a generics context
756  *
757  * Instantiate the generic method @method using the generics context @context.
758  *
759  * Returns: the new instantiated method
760  */
761 MonoMethod *
762 mono_class_inflate_generic_method (MonoMethod *method, MonoGenericContext *context)
763 {
764         return mono_class_inflate_generic_method_full (method, NULL, context);
765 }
766
767 /**
768  * mono_class_inflate_generic_method_full:
769  *
770  * Instantiate method @method with the generic context @context.
771  * BEWARE: All non-trivial fields are invalid, including klass, signature, and header.
772  *         Use mono_method_signature () and mono_method_get_header () to get the correct values.
773  */
774 MonoMethod*
775 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context)
776 {
777         MonoMethod *result;
778         MonoMethodInflated *iresult, *cached;
779         MonoMethodSignature *sig;
780         MonoGenericContext tmp_context;
781         gboolean is_mb_open = FALSE;
782
783         /* The `method' has already been instantiated before => we need to peel out the instantiation and create a new context */
784         while (method->is_inflated) {
785                 MonoGenericContext *method_context = mono_method_get_context (method);
786                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
787
788                 tmp_context = inflate_generic_context (method_context, context);
789                 context = &tmp_context;
790
791                 if (mono_metadata_generic_context_equal (method_context, context))
792                         return method;
793
794                 method = imethod->declaring;
795         }
796
797         if (!method->is_generic && !method->klass->generic_container)
798                 return method;
799
800         /*
801          * The reason for this hack is to fix the behavior of inflating generic methods that come from a MethodBuilder.
802          * What happens is that instantiating a generic MethodBuilder with its own arguments should create a diferent object.
803          * This is opposite to the way non-SRE MethodInfos behave.
804          * 
805          * This happens, for example, when we want to emit a recursive generic method. Given the following C# code:
806          * 
807          * void Example<T> () {
808          *    Example<T> ();
809          * }
810          *  
811          * In Example, the method token must be encoded as: "void Example<!!0>()"
812          * 
813          * The reference to the first generic argument, "!!0", must be explicit otherwise it won't be inflated
814          * properly. To get that we need to inflate the MethodBuilder with its own arguments.
815          * 
816          * On the other hand, inflating a non-SRE generic method with its own arguments should
817          * return itself. For example:
818          * 
819          * MethodInfo m = ... //m is a generic method definition
820          * MethodInfo res = m.MakeGenericMethod (m.GetGenericArguments ());
821          * res == m
822          *
823          * To allow such scenarios we must allow inflation of MethodBuilder to happen in a diferent way than
824          * what happens with regular methods.
825          * 
826          * There is one last touch to this madness, once a TypeBuilder is finished, IOW CreateType() is called,
827          * everything should behave like a regular type or method.
828          * 
829          */
830         is_mb_open = method->is_generic &&
831                 method->klass->image->dynamic && !method->klass->wastypebuilder && /* that is a MethodBuilder from an unfinished TypeBuilder */
832                 context->method_inst == mono_method_get_generic_container (method)->context.method_inst; /* and it's been instantiated with its own arguments.  */
833
834         iresult = g_new0 (MonoMethodInflated, 1);
835         iresult->context = *context;
836         iresult->declaring = method;
837         iresult->method.method.is_mb_open = is_mb_open;
838
839         if (!context->method_inst && method->is_generic)
840                 iresult->context.method_inst = mono_method_get_generic_container (method)->context.method_inst;
841
842         if (!context->class_inst) {
843                 g_assert (!iresult->declaring->klass->generic_class);
844                 if (iresult->declaring->klass->generic_container)
845                         iresult->context.class_inst = iresult->declaring->klass->generic_container->context.class_inst;
846                 else if (iresult->declaring->klass->generic_class)
847                         iresult->context.class_inst = iresult->declaring->klass->generic_class->context.class_inst;
848         }
849
850         mono_loader_lock ();
851         cached = mono_method_inflated_lookup (iresult, FALSE);
852         if (cached) {
853                 mono_loader_unlock ();
854                 g_free (iresult);
855                 return (MonoMethod*)cached;
856         }
857
858         mono_stats.inflated_method_count++;
859
860         inflated_methods_size += sizeof (MonoMethodInflated);
861
862         sig = mono_method_signature (method);
863         if (sig->pinvoke) {
864                 memcpy (&iresult->method.pinvoke, method, sizeof (MonoMethodPInvoke));
865         } else {
866                 memcpy (&iresult->method.normal, method, sizeof (MonoMethodNormal));
867                 iresult->method.normal.header = NULL;
868         }
869
870         result = (MonoMethod *) iresult;
871         result->is_inflated = TRUE;
872         result->is_generic = FALSE;
873         result->signature = NULL;
874         result->is_mb_open = is_mb_open;
875
876         if (!context->method_inst) {
877                 /* Set the generic_container of the result to the generic_container of method */
878                 MonoGenericContainer *generic_container = mono_method_get_generic_container (method);
879
880                 if (generic_container) {
881                         result->is_generic = 1;
882                         mono_method_set_generic_container (result, generic_container);
883                 }
884         }
885
886         if (!klass_hint || !klass_hint->generic_class ||
887             klass_hint->generic_class->container_class != method->klass ||
888             klass_hint->generic_class->context.class_inst != context->class_inst)
889                 klass_hint = NULL;
890
891         if (method->klass->generic_container)
892                 result->klass = klass_hint;
893
894         if (!result->klass) {
895                 MonoType *inflated = inflate_generic_type (NULL, &method->klass->byval_arg, context);
896                 result->klass = inflated ? mono_class_from_mono_type (inflated) : method->klass;
897                 if (inflated)
898                         mono_metadata_free_type (inflated);
899         }
900
901         mono_method_inflated_lookup (iresult, TRUE);
902         mono_loader_unlock ();
903         return result;
904 }
905
906 /**
907  * mono_get_inflated_method:
908  *
909  * Obsolete.  We keep it around since it's mentioned in the public API.
910  */
911 MonoMethod*
912 mono_get_inflated_method (MonoMethod *method)
913 {
914         return method;
915 }
916
917 /*
918  * mono_method_get_context_general:
919  * @method: a method
920  * @uninflated: handle uninflated methods?
921  *
922  * Returns the generic context of a method or NULL if it doesn't have
923  * one.  For an inflated method that's the context stored in the
924  * method.  Otherwise it's in the method's generic container or in the
925  * generic container of the method's class.
926  */
927 MonoGenericContext*
928 mono_method_get_context_general (MonoMethod *method, gboolean uninflated)
929 {
930         if (method->is_inflated) {
931                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
932                 return &imethod->context;
933         }
934         if (!uninflated)
935                 return NULL;
936         if (method->is_generic)
937                 return &(mono_method_get_generic_container (method)->context);
938         if (method->klass->generic_container)
939                 return &method->klass->generic_container->context;
940         return NULL;
941 }
942
943 /*
944  * mono_method_get_context:
945  * @method: a method
946  *
947  * Returns the generic context for method if it's inflated, otherwise
948  * NULL.
949  */
950 MonoGenericContext*
951 mono_method_get_context (MonoMethod *method)
952 {
953         return mono_method_get_context_general (method, FALSE);
954 }
955
956 /*
957  * mono_method_get_generic_container:
958  *
959  *   Returns the generic container of METHOD, which should be a generic method definition.
960  * Returns NULL if METHOD is not a generic method definition.
961  * LOCKING: Acquires the loader lock.
962  */
963 MonoGenericContainer*
964 mono_method_get_generic_container (MonoMethod *method)
965 {
966         MonoGenericContainer *container;
967
968         if (!method->is_generic)
969                 return NULL;
970
971         container = mono_image_property_lookup (method->klass->image, method, MONO_METHOD_PROP_GENERIC_CONTAINER);
972         g_assert (container);
973
974         return container;
975 }
976
977 /*
978  * mono_method_set_generic_container:
979  *
980  *   Sets the generic container of METHOD to CONTAINER.
981  * LOCKING: Acquires the loader lock.
982  */
983 void
984 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container)
985 {
986         g_assert (method->is_generic);
987
988         mono_image_property_insert (method->klass->image, method, MONO_METHOD_PROP_GENERIC_CONTAINER, container);
989 }
990
991 /** 
992  * mono_class_find_enum_basetype:
993  * @class: The enum class
994  *
995  *   Determine the basetype of an enum by iterating through its fields. We do this
996  * in a separate function since it is cheaper than calling mono_class_setup_fields.
997  */
998 static MonoType*
999 mono_class_find_enum_basetype (MonoClass *class)
1000 {
1001         MonoGenericContainer *container = NULL;
1002         MonoImage *m = class->image; 
1003         const int top = class->field.count;
1004         int i;
1005
1006         g_assert (class->enumtype);
1007
1008         if (class->generic_container)
1009                 container = class->generic_container;
1010         else if (class->generic_class) {
1011                 MonoClass *gklass = class->generic_class->container_class;
1012
1013                 container = gklass->generic_container;
1014                 g_assert (container);
1015         }
1016
1017         /*
1018          * Fetch all the field information.
1019          */
1020         for (i = 0; i < top; i++){
1021                 const char *sig;
1022                 guint32 cols [MONO_FIELD_SIZE];
1023                 int idx = class->field.first + i;
1024                 MonoType *ftype;
1025
1026                 /* class->field.first and idx points into the fieldptr table */
1027                 mono_metadata_decode_table_row (m, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
1028
1029                 if (cols [MONO_FIELD_FLAGS] & FIELD_ATTRIBUTE_STATIC) //no need to decode static fields
1030                         continue;
1031
1032                 if (!mono_verifier_verify_field_signature (class->image, cols [MONO_FIELD_SIGNATURE], NULL))
1033                         return NULL;
1034
1035                 sig = mono_metadata_blob_heap (m, cols [MONO_FIELD_SIGNATURE]);
1036                 mono_metadata_decode_value (sig, &sig);
1037                 /* FIELD signature == 0x06 */
1038                 if (*sig != 0x06)
1039                         return NULL;
1040
1041                 ftype = mono_metadata_parse_type_full (m, container, MONO_PARSE_FIELD, cols [MONO_FIELD_FLAGS], sig + 1, &sig);
1042                 if (!ftype)
1043                         return NULL;
1044                 if (class->generic_class) {
1045                         //FIXME do we leak here?
1046                         ftype = mono_class_inflate_generic_type (ftype, mono_class_get_context (class));
1047                         ftype->attrs = cols [MONO_FIELD_FLAGS];
1048                 }
1049
1050                 return ftype;
1051         }
1052
1053         return NULL;
1054 }
1055
1056 /** 
1057  * mono_class_setup_fields:
1058  * @class: The class to initialize
1059  *
1060  * Initializes the class->fields.
1061  * LOCKING: Assumes the loader lock is held.
1062  */
1063 static void
1064 mono_class_setup_fields (MonoClass *class)
1065 {
1066         MonoImage *m = class->image; 
1067         int top = class->field.count;
1068         guint32 layout = class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK;
1069         int i, blittable = TRUE;
1070         guint32 real_size = 0;
1071         guint32 packing_size = 0;
1072         gboolean explicit_size;
1073         MonoClassField *field;
1074         MonoGenericContainer *container = NULL;
1075         MonoClass *gtd = class->generic_class ? mono_class_get_generic_type_definition (class) : NULL;
1076
1077         if (class->size_inited)
1078                 return;
1079
1080         if (class->generic_class && class->generic_class->container_class->image->dynamic && !class->generic_class->container_class->wastypebuilder) {
1081                 /*
1082                  * This happens when a generic instance of an unfinished generic typebuilder
1083                  * is used as an element type for creating an array type. We can't initialize
1084                  * the fields of this class using the fields of gklass, since gklass is not
1085                  * finished yet, fields could be added to it later.
1086                  */
1087                 return;
1088         }
1089
1090         if (gtd) {
1091                 mono_class_setup_fields (gtd);
1092                 if (gtd->exception_type) {
1093                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1094                         return;
1095                 }
1096
1097                 top = gtd->field.count;
1098                 class->field.first = gtd->field.first;
1099                 class->field.count = gtd->field.count;
1100         }
1101
1102         class->instance_size = 0;
1103         if (!class->rank)
1104                 class->sizes.class_size = 0;
1105
1106         if (class->parent) {
1107                 /* For generic instances, class->parent might not have been initialized */
1108                 mono_class_init (class->parent);
1109                 if (!class->parent->size_inited)
1110                         mono_class_setup_fields (class->parent);
1111                 class->instance_size += class->parent->instance_size;
1112                 class->min_align = class->parent->min_align;
1113                 /* we use |= since it may have been set already */
1114                 class->has_references |= class->parent->has_references;
1115                 blittable = class->parent->blittable;
1116         } else {
1117                 class->instance_size = sizeof (MonoObject);
1118                 class->min_align = 1;
1119         }
1120
1121         /* We can't really enable 16 bytes alignment until the GC supports it.
1122         The whole layout/instance size code must be reviewed because we do alignment calculation in terms of the
1123         boxed instance, which leads to unexplainable holes at the beginning of an object embedding a simd type.
1124         Bug #506144 is an example of this issue.
1125
1126          if (class->simd_type)
1127                 class->min_align = 16;
1128          */
1129         /* Get the real size */
1130         explicit_size = mono_metadata_packing_from_typedef (class->image, class->type_token, &packing_size, &real_size);
1131
1132         if (explicit_size) {
1133                 g_assert ((packing_size & 0xfffffff0) == 0);
1134                 class->packing_size = packing_size;
1135                 real_size += class->instance_size;
1136         }
1137
1138         if (!top) {
1139                 if (explicit_size && real_size) {
1140                         class->instance_size = MAX (real_size, class->instance_size);
1141                 }
1142                 class->size_inited = 1;
1143                 class->blittable = blittable;
1144                 return;
1145         }
1146
1147         if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT)
1148                 blittable = FALSE;
1149
1150         /* Prevent infinite loops if the class references itself */
1151         class->size_inited = 1;
1152
1153         class->fields = mono_image_alloc0 (class->image, sizeof (MonoClassField) * top);
1154
1155         if (class->generic_container) {
1156                 container = class->generic_container;
1157         } else if (gtd) {
1158                 container = gtd->generic_container;
1159                 g_assert (container);
1160         }
1161
1162         /*
1163          * Fetch all the field information.
1164          */
1165         for (i = 0; i < top; i++){
1166                 int idx = class->field.first + i;
1167                 field = &class->fields [i];
1168
1169                 field->parent = class;
1170
1171                 if (gtd) {
1172                         MonoClassField *gfield = &gtd->fields [i];
1173
1174                         field->name = mono_field_get_name (gfield);
1175                         /*This memory must come from the image mempool as we don't have a chance to free it.*/
1176                         field->type = mono_class_inflate_generic_type_no_copy (class->image, gfield->type, mono_class_get_context (class));
1177                         g_assert (field->type->attrs == gfield->type->attrs);
1178                         if (mono_field_is_deleted (field))
1179                                 continue;
1180                         field->offset = gfield->offset;
1181                 } else {
1182                         const char *sig;
1183                         guint32 cols [MONO_FIELD_SIZE];
1184
1185                         /* class->field.first and idx points into the fieldptr table */
1186                         mono_metadata_decode_table_row (m, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
1187                         /* The name is needed for fieldrefs */
1188                         field->name = mono_metadata_string_heap (m, cols [MONO_FIELD_NAME]);
1189                         if (!mono_verifier_verify_field_signature (class->image, cols [MONO_FIELD_SIGNATURE], NULL)) {
1190                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1191                                 break;
1192                         }
1193                         sig = mono_metadata_blob_heap (m, cols [MONO_FIELD_SIGNATURE]);
1194                         mono_metadata_decode_value (sig, &sig);
1195                         /* FIELD signature == 0x06 */
1196                         g_assert (*sig == 0x06);
1197                         field->type = mono_metadata_parse_type_full (m, container, MONO_PARSE_FIELD, cols [MONO_FIELD_FLAGS], sig + 1, &sig);
1198                         if (!field->type) {
1199                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1200                                 break;
1201                         }
1202                         if (mono_field_is_deleted (field))
1203                                 continue;
1204                         if (layout == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
1205                                 guint32 offset;
1206                                 mono_metadata_field_info (m, idx, &offset, NULL, NULL);
1207                                 field->offset = offset;
1208                                 if (field->offset == (guint32)-1 && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
1209                                         g_warning ("%s not initialized correctly (missing field layout info for %s)",
1210                                                            class->name, mono_field_get_name (field));
1211                         }
1212                 }
1213
1214                 /* Only do these checks if we still think this type is blittable */
1215                 if (blittable && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1216                         if (field->type->byref || MONO_TYPE_IS_REFERENCE (field->type)) {
1217                                 blittable = FALSE;
1218                         } else {
1219                                 MonoClass *field_class = mono_class_from_mono_type (field->type);
1220                                 if (field_class)
1221                                         mono_class_setup_fields (field_class);
1222                                 if (!field_class || !field_class->blittable)
1223                                         blittable = FALSE;
1224                         }
1225                 }
1226
1227                 if (class->enumtype && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1228                         class->cast_class = class->element_class = mono_class_from_mono_type (field->type);
1229                         blittable = class->element_class->blittable;
1230                 }
1231
1232                 /* The def_value of fields is compute lazily during vtable creation */
1233         }
1234
1235         if (class == mono_defaults.string_class)
1236                 blittable = FALSE;
1237
1238         class->blittable = blittable;
1239
1240         if (class->enumtype && !mono_class_enum_basetype (class)) {
1241                 if (!((strcmp (class->name, "Enum") == 0) && (strcmp (class->name_space, "System") == 0)))
1242                         G_BREAKPOINT ();
1243         }
1244         if (explicit_size && real_size) {
1245                 class->instance_size = MAX (real_size, class->instance_size);
1246         }
1247
1248         if (class->exception_type)
1249                 return;
1250         mono_class_layout_fields (class);
1251 }
1252
1253 /** 
1254  * mono_class_setup_fields_locking:
1255  * @class: The class to initialize
1256  *
1257  * Initializes the class->fields array of fields.
1258  * Aquires the loader lock.
1259  */
1260 static void
1261 mono_class_setup_fields_locking (MonoClass *class)
1262 {
1263         mono_loader_lock ();
1264         mono_class_setup_fields (class);
1265         mono_loader_unlock ();
1266 }
1267
1268 /*
1269  * mono_class_has_references:
1270  *
1271  *   Returns whenever @klass->has_references is set, initializing it if needed.
1272  * Aquires the loader lock.
1273  */
1274 static gboolean
1275 mono_class_has_references (MonoClass *klass)
1276 {
1277         if (klass->init_pending) {
1278                 /* Be conservative */
1279                 return TRUE;
1280         } else {
1281                 mono_class_init (klass);
1282
1283                 return klass->has_references;
1284         }
1285 }
1286
1287 /* useful until we keep track of gc-references in corlib etc. */
1288 #ifdef HAVE_SGEN_GC
1289 #define IS_GC_REFERENCE(t) FALSE
1290 #else
1291 #define IS_GC_REFERENCE(t) ((t)->type == MONO_TYPE_U && class->image == mono_defaults.corlib)
1292 #endif
1293
1294 /*
1295  * mono_type_get_basic_type_from_generic:
1296  * @type: a type
1297  *
1298  * Returns a closed type corresponding to the possibly open type
1299  * passed to it.
1300  */
1301 MonoType*
1302 mono_type_get_basic_type_from_generic (MonoType *type)
1303 {
1304         /* When we do generic sharing we let type variables stand for reference types. */
1305         if (!type->byref && (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR))
1306                 return &mono_defaults.object_class->byval_arg;
1307         return type;
1308 }
1309
1310 /*
1311  * mono_class_layout_fields:
1312  * @class: a class
1313  *
1314  * Compute the placement of fields inside an object or struct, according to
1315  * the layout rules and set the following fields in @class:
1316  *  - has_references (if the class contains instance references firled or structs that contain references)
1317  *  - has_static_refs (same, but for static fields)
1318  *  - instance_size (size of the object in memory)
1319  *  - class_size (size needed for the static fields)
1320  *  - size_inited (flag set when the instance_size is set)
1321  *
1322  * LOCKING: this is supposed to be called with the loader lock held.
1323  */
1324 void
1325 mono_class_layout_fields (MonoClass *class)
1326 {
1327         int i;
1328         const int top = class->field.count;
1329         guint32 layout = class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK;
1330         guint32 pass, passes, real_size;
1331         gboolean gc_aware_layout = FALSE;
1332         MonoClassField *field;
1333
1334         /*
1335          * When we do generic sharing we need to have layout
1336          * information for open generic classes (either with a generic
1337          * context containing type variables or with a generic
1338          * container), so we don't return in that case anymore.
1339          */
1340
1341         /*
1342          * Enable GC aware auto layout: in this mode, reference
1343          * fields are grouped together inside objects, increasing collector 
1344          * performance.
1345          * Requires that all classes whose layout is known to native code be annotated
1346          * with [StructLayout (LayoutKind.Sequential)]
1347          * Value types have gc_aware_layout disabled by default, as per
1348          * what the default is for other runtimes.
1349          */
1350          /* corlib is missing [StructLayout] directives in many places */
1351         if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT) {
1352                 if (class->image != mono_defaults.corlib &&
1353                         class->byval_arg.type != MONO_TYPE_VALUETYPE)
1354                         gc_aware_layout = TRUE;
1355                 /* from System.dll, used in metadata/process.h */
1356                 if (strcmp (class->name, "ProcessStartInfo") == 0)
1357                         gc_aware_layout = FALSE;
1358         }
1359
1360         /* Compute klass->has_references */
1361         /* 
1362          * Process non-static fields first, since static fields might recursively
1363          * refer to the class itself.
1364          */
1365         for (i = 0; i < top; i++) {
1366                 MonoType *ftype;
1367
1368                 field = &class->fields [i];
1369
1370                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1371                         ftype = mono_type_get_underlying_type (field->type);
1372                         ftype = mono_type_get_basic_type_from_generic (ftype);
1373                         if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype)))))
1374                                 class->has_references = TRUE;
1375                 }
1376         }
1377
1378         for (i = 0; i < top; i++) {
1379                 MonoType *ftype;
1380
1381                 field = &class->fields [i];
1382
1383                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
1384                         ftype = mono_type_get_underlying_type (field->type);
1385                         ftype = mono_type_get_basic_type_from_generic (ftype);
1386                         if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype)))))
1387                                 class->has_static_refs = TRUE;
1388                 }
1389         }
1390
1391         for (i = 0; i < top; i++) {
1392                 MonoType *ftype;
1393
1394                 field = &class->fields [i];
1395
1396                 ftype = mono_type_get_underlying_type (field->type);
1397                 ftype = mono_type_get_basic_type_from_generic (ftype);
1398                 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype))))) {
1399                         if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1400                                 class->has_static_refs = TRUE;
1401                         else
1402                                 class->has_references = TRUE;
1403                 }
1404         }
1405
1406         /*
1407          * Compute field layout and total size (not considering static fields)
1408          */
1409
1410         switch (layout) {
1411         case TYPE_ATTRIBUTE_AUTO_LAYOUT:
1412         case TYPE_ATTRIBUTE_SEQUENTIAL_LAYOUT:
1413
1414                 if (gc_aware_layout)
1415                         passes = 2;
1416                 else
1417                         passes = 1;
1418
1419                 if (layout != TYPE_ATTRIBUTE_AUTO_LAYOUT)
1420                         passes = 1;
1421
1422                 if (class->parent)
1423                         real_size = class->parent->instance_size;
1424                 else
1425                         real_size = sizeof (MonoObject);
1426
1427                 for (pass = 0; pass < passes; ++pass) {
1428                         for (i = 0; i < top; i++){
1429                                 gint32 align;
1430                                 guint32 size;
1431                                 MonoType *ftype;
1432
1433                                 field = &class->fields [i];
1434
1435                                 if (mono_field_is_deleted (field))
1436                                         continue;
1437                                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1438                                         continue;
1439
1440                                 ftype = mono_type_get_underlying_type (field->type);
1441                                 ftype = mono_type_get_basic_type_from_generic (ftype);
1442                                 if (gc_aware_layout) {
1443                                         if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype))))) {
1444                                                 if (pass == 1)
1445                                                         continue;
1446                                         } else {
1447                                                 if (pass == 0)
1448                                                         continue;
1449                                         }
1450                                 }
1451
1452                                 if ((top == 1) && (class->instance_size == sizeof (MonoObject)) &&
1453                                         (strcmp (mono_field_get_name (field), "$PRIVATE$") == 0)) {
1454                                         /* This field is a hack inserted by MCS to empty structures */
1455                                         continue;
1456                                 }
1457
1458                                 size = mono_type_size (field->type, &align);
1459                         
1460                                 /* FIXME (LAMESPEC): should we also change the min alignment according to pack? */
1461                                 align = class->packing_size ? MIN (class->packing_size, align): align;
1462                                 /* if the field has managed references, we need to force-align it
1463                                  * see bug #77788
1464                                  */
1465                                 if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype)))))
1466                                         align = MAX (align, sizeof (gpointer));
1467
1468                                 class->min_align = MAX (align, class->min_align);
1469                                 field->offset = real_size;
1470                                 field->offset += align - 1;
1471                                 field->offset &= ~(align - 1);
1472                                 real_size = field->offset + size;
1473                         }
1474
1475                         class->instance_size = MAX (real_size, class->instance_size);
1476        
1477                         if (class->instance_size & (class->min_align - 1)) {
1478                                 class->instance_size += class->min_align - 1;
1479                                 class->instance_size &= ~(class->min_align - 1);
1480                         }
1481                 }
1482                 break;
1483         case TYPE_ATTRIBUTE_EXPLICIT_LAYOUT:
1484                 real_size = 0;
1485                 for (i = 0; i < top; i++) {
1486                         gint32 align;
1487                         guint32 size;
1488                         MonoType *ftype;
1489
1490                         field = &class->fields [i];
1491
1492                         /*
1493                          * There must be info about all the fields in a type if it
1494                          * uses explicit layout.
1495                          */
1496
1497                         if (mono_field_is_deleted (field))
1498                                 continue;
1499                         if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1500                                 continue;
1501
1502                         size = mono_type_size (field->type, &align);
1503                         class->min_align = MAX (align, class->min_align);
1504
1505                         /*
1506                          * When we get here, field->offset is already set by the
1507                          * loader (for either runtime fields or fields loaded from metadata).
1508                          * The offset is from the start of the object: this works for both
1509                          * classes and valuetypes.
1510                          */
1511                         field->offset += sizeof (MonoObject);
1512                         ftype = mono_type_get_underlying_type (field->type);
1513                         ftype = mono_type_get_basic_type_from_generic (ftype);
1514                         if (MONO_TYPE_IS_REFERENCE (ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && mono_class_has_references (mono_class_from_mono_type (ftype))))) {
1515                                 if (field->offset % sizeof (gpointer)) {
1516                                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
1517                                 }
1518                         }
1519
1520                         /*
1521                          * Calc max size.
1522                          */
1523                         real_size = MAX (real_size, size + field->offset);
1524                 }
1525                 class->instance_size = MAX (real_size, class->instance_size);
1526                 break;
1527         }
1528
1529         if (layout != TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
1530                 /*
1531                  * For small structs, set min_align to at least the struct size to improve
1532                  * performance, and since the JIT memset/memcpy code assumes this and generates 
1533                  * unaligned accesses otherwise. See #78990 for a testcase.
1534                  */
1535                 if (class->instance_size <= sizeof (MonoObject) + sizeof (gpointer))
1536                         class->min_align = MAX (class->min_align, class->instance_size - sizeof (MonoObject));
1537         }
1538
1539         class->size_inited = 1;
1540
1541         /*
1542          * Compute static field layout and size
1543          */
1544         for (i = 0; i < top; i++){
1545                 gint32 align;
1546                 guint32 size;
1547
1548                 field = &class->fields [i];
1549                         
1550                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC) || field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
1551                         continue;
1552                 if (mono_field_is_deleted (field))
1553                         continue;
1554
1555                 size = mono_type_size (field->type, &align);
1556                 field->offset = class->sizes.class_size;
1557                 field->offset += align - 1;
1558                 field->offset &= ~(align - 1);
1559                 class->sizes.class_size = field->offset + size;
1560         }
1561 }
1562
1563 static MonoMethod*
1564 create_array_method (MonoClass *class, const char *name, MonoMethodSignature *sig)
1565 {
1566         MonoMethod *method;
1567
1568         method = (MonoMethod *) mono_image_alloc0 (class->image, sizeof (MonoMethodPInvoke));
1569         method->klass = class;
1570         method->flags = METHOD_ATTRIBUTE_PUBLIC;
1571         method->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
1572         method->signature = sig;
1573         method->name = name;
1574         method->slot = -1;
1575         /* .ctor */
1576         if (name [0] == '.') {
1577                 method->flags |= METHOD_ATTRIBUTE_RT_SPECIAL_NAME | METHOD_ATTRIBUTE_SPECIAL_NAME;
1578         } else {
1579                 method->iflags |= METHOD_IMPL_ATTRIBUTE_RUNTIME;
1580         }
1581         return method;
1582 }
1583
1584 /*
1585  * mono_class_setup_methods:
1586  * @class: a class
1587  *
1588  *   Initializes the 'methods' array in the klass.
1589  * Calling this method should be avoided if possible since it allocates a lot 
1590  * of long-living MonoMethod structures.
1591  * Methods belonging to an interface are assigned a sequential slot starting
1592  * from 0.
1593  */
1594 void
1595 mono_class_setup_methods (MonoClass *class)
1596 {
1597         int i;
1598         MonoMethod **methods;
1599
1600         if (class->methods)
1601                 return;
1602
1603         mono_loader_lock ();
1604
1605         if (class->methods) {
1606                 mono_loader_unlock ();
1607                 return;
1608         }
1609
1610         if (class->generic_class) {
1611                 MonoClass *gklass = class->generic_class->container_class;
1612
1613                 mono_class_init (gklass);
1614                 mono_class_setup_methods (gklass);
1615
1616                 /* The + 1 makes this always non-NULL to pass the check in mono_class_setup_methods () */
1617                 class->method.count = gklass->method.count;
1618                 methods = g_new0 (MonoMethod *, class->method.count + 1);
1619
1620                 for (i = 0; i < class->method.count; i++) {
1621                         methods [i] = mono_class_inflate_generic_method_full (
1622                                 gklass->methods [i], class, mono_class_get_context (class));
1623                 }
1624         } else if (class->rank) {
1625                 MonoMethod *amethod;
1626                 MonoMethodSignature *sig;
1627                 int count_generic = 0, first_generic = 0;
1628                 int method_num = 0;
1629
1630                 class->method.count = 3 + (class->rank > 1? 2: 1);
1631
1632                 mono_class_setup_interfaces (class);
1633
1634                 if (class->interface_count) {
1635                         count_generic = generic_array_methods (class);
1636                         first_generic = class->method.count;
1637                         class->method.count += class->interface_count * count_generic;
1638                 }
1639
1640                 methods = mono_image_alloc0 (class->image, sizeof (MonoMethod*) * class->method.count);
1641
1642                 sig = mono_metadata_signature_alloc (class->image, class->rank);
1643                 sig->ret = &mono_defaults.void_class->byval_arg;
1644                 sig->pinvoke = TRUE;
1645                 sig->hasthis = TRUE;
1646                 for (i = 0; i < class->rank; ++i)
1647                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
1648
1649                 amethod = create_array_method (class, ".ctor", sig);
1650                 methods [method_num++] = amethod;
1651                 if (class->rank > 1) {
1652                         sig = mono_metadata_signature_alloc (class->image, class->rank * 2);
1653                         sig->ret = &mono_defaults.void_class->byval_arg;
1654                         sig->pinvoke = TRUE;
1655                         sig->hasthis = TRUE;
1656                         for (i = 0; i < class->rank * 2; ++i)
1657                                 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1658
1659                         amethod = create_array_method (class, ".ctor", sig);
1660                         methods [method_num++] = amethod;
1661                 }
1662                 /* element Get (idx11, [idx2, ...]) */
1663                 sig = mono_metadata_signature_alloc (class->image, class->rank);
1664                 sig->ret = &class->element_class->byval_arg;
1665                 sig->pinvoke = TRUE;
1666                 sig->hasthis = TRUE;
1667                 for (i = 0; i < class->rank; ++i)
1668                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
1669                 amethod = create_array_method (class, "Get", sig);
1670                 methods [method_num++] = amethod;
1671                 /* element& Address (idx11, [idx2, ...]) */
1672                 sig = mono_metadata_signature_alloc (class->image, class->rank);
1673                 sig->ret = &class->element_class->this_arg;
1674                 sig->pinvoke = TRUE;
1675                 sig->hasthis = TRUE;
1676                 for (i = 0; i < class->rank; ++i)
1677                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
1678                 amethod = create_array_method (class, "Address", sig);
1679                 methods [method_num++] = amethod;
1680                 /* void Set (idx11, [idx2, ...], element) */
1681                 sig = mono_metadata_signature_alloc (class->image, class->rank + 1);
1682                 sig->ret = &mono_defaults.void_class->byval_arg;
1683                 sig->pinvoke = TRUE;
1684                 sig->hasthis = TRUE;
1685                 for (i = 0; i < class->rank; ++i)
1686                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
1687                 sig->params [i] = &class->element_class->byval_arg;
1688                 amethod = create_array_method (class, "Set", sig);
1689                 methods [method_num++] = amethod;
1690
1691                 for (i = 0; i < class->interface_count; i++)
1692                         setup_generic_array_ifaces (class, class->interfaces [i], methods, first_generic + i * count_generic);
1693         } else {
1694                 methods = mono_image_alloc (class->image, sizeof (MonoMethod*) * class->method.count);
1695                 for (i = 0; i < class->method.count; ++i) {
1696                         int idx = mono_metadata_translate_token_index (class->image, MONO_TABLE_METHOD, class->method.first + i + 1);
1697                         methods [i] = mono_get_method (class->image, MONO_TOKEN_METHOD_DEF | idx, class);
1698                 }
1699         }
1700
1701         if (MONO_CLASS_IS_INTERFACE (class))
1702                 for (i = 0; i < class->method.count; ++i)
1703                         methods [i]->slot = i;
1704
1705         /* Needed because of the double-checking locking pattern */
1706         mono_memory_barrier ();
1707
1708         class->methods = methods;
1709
1710         if (mono_debugger_class_loaded_methods_func)
1711                 mono_debugger_class_loaded_methods_func (class);
1712
1713         mono_loader_unlock ();
1714 }
1715
1716 /*
1717  * mono_class_get_method_by_index:
1718  *
1719  *   Returns class->methods [index], initializing class->methods if neccesary.
1720  *
1721  * LOCKING: Acquires the loader lock.
1722  */
1723 MonoMethod*
1724 mono_class_get_method_by_index (MonoClass *class, int index)
1725 {
1726         /* Avoid calling setup_methods () if possible */
1727         if (class->generic_class && !class->methods) {
1728                 MonoClass *gklass = class->generic_class->container_class;
1729                 MonoMethod *m;
1730
1731                 m = mono_class_inflate_generic_method_full (
1732                                 gklass->methods [index], class, mono_class_get_context (class));
1733                 /*
1734                  * If setup_methods () is called later for this class, no duplicates are created,
1735                  * since inflate_generic_method guarantees that only one instance of a method
1736                  * is created for each context.
1737                  */
1738                 /*
1739                 mono_class_setup_methods (class);
1740                 g_assert (m == class->methods [index]);
1741                 */
1742                 return m;
1743         } else {
1744                 mono_class_setup_methods (class);
1745                 g_assert (index >= 0 && index < class->method.count);
1746                 return class->methods [index];
1747         }
1748 }       
1749
1750 /*
1751  * mono_class_get_inflated_method:
1752  *
1753  *   Given an inflated class CLASS and a method METHOD which should be a method of
1754  * CLASS's generic definition, return the inflated method corresponding to METHOD.
1755  */
1756 MonoMethod*
1757 mono_class_get_inflated_method (MonoClass *class, MonoMethod *method)
1758 {
1759         MonoClass *gklass = class->generic_class->container_class;
1760         int i;
1761
1762         mono_class_setup_methods (gklass);
1763         for (i = 0; i < gklass->method.count; ++i) {
1764                 if (gklass->methods [i] == method) {
1765                         if (class->methods)
1766                                 return class->methods [i];
1767                         else
1768                                 return mono_class_inflate_generic_method_full (gklass->methods [i], class, mono_class_get_context (class));
1769                 }
1770         }
1771
1772         return NULL;
1773 }       
1774
1775 /*
1776  * mono_class_get_vtable_entry:
1777  *
1778  *   Returns class->vtable [offset], computing it if neccesary.
1779  * LOCKING: Acquires the loader lock.
1780  */
1781 MonoMethod*
1782 mono_class_get_vtable_entry (MonoClass *class, int offset)
1783 {
1784         MonoMethod *m;
1785
1786         if (class->rank == 1) {
1787                 /* 
1788                  * szarrays do not overwrite any methods of Array, so we can avoid
1789                  * initializing their vtables in some cases.
1790                  */
1791                 mono_class_setup_vtable (class->parent);
1792                 if (offset < class->parent->vtable_size)
1793                         return class->parent->vtable [offset];
1794         }
1795
1796         if (class->generic_class) {
1797                 MonoClass *gklass = class->generic_class->container_class;
1798                 mono_class_setup_vtable (gklass);
1799                 m = gklass->vtable [offset];
1800
1801                 m = mono_class_inflate_generic_method_full (m, class, mono_class_get_context (class));
1802         } else {
1803                 mono_class_setup_vtable (class);
1804                 m = class->vtable [offset];
1805         }
1806
1807         return m;
1808 }
1809
1810 /*
1811  * mono_class_get_vtable_size:
1812  *
1813  *   Return the vtable size for KLASS.
1814  */
1815 int
1816 mono_class_get_vtable_size (MonoClass *klass)
1817 {
1818         mono_class_setup_vtable (klass);
1819
1820         return klass->vtable_size;
1821 }
1822
1823 static void
1824 mono_class_setup_properties (MonoClass *class)
1825 {
1826         guint startm, endm, i, j;
1827         guint32 cols [MONO_PROPERTY_SIZE];
1828         MonoTableInfo *msemt = &class->image->tables [MONO_TABLE_METHODSEMANTICS];
1829         MonoProperty *properties;
1830         guint32 last;
1831
1832         if (class->ext && class->ext->properties)
1833                 return;
1834
1835         mono_loader_lock ();
1836
1837         if (class->ext && class->ext->properties) {
1838                 mono_loader_unlock ();
1839                 return;
1840         }
1841
1842         mono_class_alloc_ext (class);
1843
1844         if (class->generic_class) {
1845                 MonoClass *gklass = class->generic_class->container_class;
1846
1847                 mono_class_init (gklass);
1848                 mono_class_setup_properties (gklass);
1849
1850                 class->ext->property = gklass->ext->property;
1851
1852                 properties = g_new0 (MonoProperty, class->ext->property.count + 1);
1853
1854                 for (i = 0; i < class->ext->property.count; i++) {
1855                         MonoProperty *prop = &properties [i];
1856
1857                         *prop = gklass->ext->properties [i];
1858
1859                         if (prop->get)
1860                                 prop->get = mono_class_inflate_generic_method_full (
1861                                         prop->get, class, mono_class_get_context (class));
1862                         if (prop->set)
1863                                 prop->set = mono_class_inflate_generic_method_full (
1864                                         prop->set, class, mono_class_get_context (class));
1865
1866                         prop->parent = class;
1867                 }
1868         } else {
1869                 class->ext->property.first = mono_metadata_properties_from_typedef (class->image, mono_metadata_token_index (class->type_token) - 1, &last);
1870                 class->ext->property.count = last - class->ext->property.first;
1871
1872                 if (class->ext->property.count)
1873                         mono_class_setup_methods (class);
1874
1875                 properties = mono_image_alloc0 (class->image, sizeof (MonoProperty) * class->ext->property.count);
1876                 for (i = class->ext->property.first; i < last; ++i) {
1877                         mono_metadata_decode_table_row (class->image, MONO_TABLE_PROPERTY, i, cols, MONO_PROPERTY_SIZE);
1878                         properties [i - class->ext->property.first].parent = class;
1879                         properties [i - class->ext->property.first].attrs = cols [MONO_PROPERTY_FLAGS];
1880                         properties [i - class->ext->property.first].name = mono_metadata_string_heap (class->image, cols [MONO_PROPERTY_NAME]);
1881
1882                         startm = mono_metadata_methods_from_property (class->image, i, &endm);
1883                         for (j = startm; j < endm; ++j) {
1884                                 MonoMethod *method;
1885
1886                                 mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
1887
1888                                 if (class->image->uncompressed_metadata)
1889                                         /* It seems like the MONO_METHOD_SEMA_METHOD column needs no remapping */
1890                                         method = mono_get_method (class->image, MONO_TOKEN_METHOD_DEF | cols [MONO_METHOD_SEMA_METHOD], class);
1891                                 else
1892                                         method = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
1893
1894                                 switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
1895                                 case METHOD_SEMANTIC_SETTER:
1896                                         properties [i - class->ext->property.first].set = method;
1897                                         break;
1898                                 case METHOD_SEMANTIC_GETTER:
1899                                         properties [i - class->ext->property.first].get = method;
1900                                         break;
1901                                 default:
1902                                         break;
1903                                 }
1904                         }
1905                 }
1906         }
1907         /*Flush any pending writes as we do double checked locking on class->properties */
1908         mono_memory_barrier ();
1909
1910         /* Leave this assignment as the last op in the function */
1911         class->ext->properties = properties;
1912
1913         mono_loader_unlock ();
1914 }
1915
1916 static MonoMethod**
1917 inflate_method_listz (MonoMethod **methods, MonoClass *class, MonoGenericContext *context)
1918 {
1919         MonoMethod **om, **retval;
1920         int count;
1921
1922         for (om = methods, count = 0; *om; ++om, ++count)
1923                 ;
1924
1925         retval = g_new0 (MonoMethod*, count + 1);
1926         count = 0;
1927         for (om = methods, count = 0; *om; ++om, ++count)
1928                 retval [count] = mono_class_inflate_generic_method_full (*om, class, context);
1929
1930         return retval;
1931 }
1932
1933 static void
1934 mono_class_setup_events (MonoClass *class)
1935 {
1936         guint startm, endm, i, j;
1937         guint32 cols [MONO_EVENT_SIZE];
1938         MonoTableInfo *msemt = &class->image->tables [MONO_TABLE_METHODSEMANTICS];
1939         guint32 last;
1940         MonoEvent *events;
1941
1942         if (class->ext && class->ext->events)
1943                 return;
1944
1945         mono_loader_lock ();
1946
1947         if (class->ext && class->ext->events) {
1948                 mono_loader_unlock ();
1949                 return;
1950         }
1951
1952         mono_class_alloc_ext (class);
1953
1954         if (class->generic_class) {
1955                 MonoClass *gklass = class->generic_class->container_class;
1956                 MonoGenericContext *context;
1957
1958                 mono_class_setup_events (gklass);
1959                 class->ext->event = gklass->ext->event;
1960
1961                 class->ext->events = g_new0 (MonoEvent, class->ext->event.count);
1962
1963                 if (class->ext->event.count)
1964                         context = mono_class_get_context (class);
1965
1966                 for (i = 0; i < class->ext->event.count; i++) {
1967                         MonoEvent *event = &class->ext->events [i];
1968                         MonoEvent *gevent = &gklass->ext->events [i];
1969
1970                         event->parent = class;
1971                         event->name = gevent->name;
1972                         event->add = gevent->add ? mono_class_inflate_generic_method_full (gevent->add, class, context) : NULL;
1973                         event->remove = gevent->remove ? mono_class_inflate_generic_method_full (gevent->remove, class, context) : NULL;
1974                         event->raise = gevent->raise ? mono_class_inflate_generic_method_full (gevent->raise, class, context) : NULL;
1975                         event->other = gevent->other ? inflate_method_listz (gevent->other, class, context) : NULL;
1976                         event->attrs = gevent->attrs;
1977                 }
1978
1979                 mono_loader_unlock ();
1980                 return;
1981         }
1982
1983         class->ext->event.first = mono_metadata_events_from_typedef (class->image, mono_metadata_token_index (class->type_token) - 1, &last);
1984         class->ext->event.count = last - class->ext->event.first;
1985
1986         if (class->ext->event.count)
1987                 mono_class_setup_methods (class);
1988
1989         events = mono_image_alloc0 (class->image, sizeof (MonoEvent) * class->ext->event.count);
1990         for (i = class->ext->event.first; i < last; ++i) {
1991                 MonoEvent *event = &events [i - class->ext->event.first];
1992
1993                 mono_metadata_decode_table_row (class->image, MONO_TABLE_EVENT, i, cols, MONO_EVENT_SIZE);
1994                 event->parent = class;
1995                 event->attrs = cols [MONO_EVENT_FLAGS];
1996                 event->name = mono_metadata_string_heap (class->image, cols [MONO_EVENT_NAME]);
1997
1998                 startm = mono_metadata_methods_from_event (class->image, i, &endm);
1999                 for (j = startm; j < endm; ++j) {
2000                         MonoMethod *method;
2001
2002                         mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
2003
2004                         if (class->image->uncompressed_metadata)
2005                                 /* It seems like the MONO_METHOD_SEMA_METHOD column needs no remapping */
2006                                 method = mono_get_method (class->image, MONO_TOKEN_METHOD_DEF | cols [MONO_METHOD_SEMA_METHOD], class);
2007                         else
2008                                 method = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
2009
2010                         switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
2011                         case METHOD_SEMANTIC_ADD_ON:
2012                                 event->add = method;
2013                                 break;
2014                         case METHOD_SEMANTIC_REMOVE_ON:
2015                                 event->remove = method;
2016                                 break;
2017                         case METHOD_SEMANTIC_FIRE:
2018                                 event->raise = method;
2019                                 break;
2020                         case METHOD_SEMANTIC_OTHER: {
2021                                 int n = 0;
2022
2023                                 if (event->other == NULL) {
2024                                         event->other = g_new0 (MonoMethod*, 2);
2025                                 } else {
2026                                         while (event->other [n])
2027                                                 n++;
2028                                         event->other = g_realloc (event->other, (n + 2) * sizeof (MonoMethod*));
2029                                 }
2030                                 event->other [n] = method;
2031                                 /* NULL terminated */
2032                                 event->other [n + 1] = NULL;
2033                                 break;
2034                         }
2035                         default:
2036                                 break;
2037                         }
2038                 }
2039         }
2040         /*Flush any pending writes as we do double checked locking on class->properties */
2041         mono_memory_barrier ();
2042
2043         /* Leave this assignment as the last op in the function */
2044         class->ext->events = events;
2045
2046         mono_loader_unlock ();
2047 }
2048
2049 /*
2050  * Global pool of interface IDs, represented as a bitset.
2051  * LOCKING: this is supposed to be accessed with the loader lock held.
2052  */
2053 static MonoBitSet *global_interface_bitset = NULL;
2054
2055 /*
2056  * mono_unload_interface_ids:
2057  * @bitset: bit set of interface IDs
2058  *
2059  * When an image is unloaded, the interface IDs associated with
2060  * the image are put back in the global pool of IDs so the numbers
2061  * can be reused.
2062  */
2063 void
2064 mono_unload_interface_ids (MonoBitSet *bitset)
2065 {
2066         mono_loader_lock ();
2067         mono_bitset_sub (global_interface_bitset, bitset);
2068         mono_loader_unlock ();
2069 }
2070
2071 /*
2072  * mono_get_unique_iid:
2073  * @class: interface
2074  *
2075  * Assign a unique integer ID to the interface represented by @class.
2076  * The ID will positive and as small as possible.
2077  * LOCKING: this is supposed to be called with the loader lock held.
2078  * Returns: the new ID.
2079  */
2080 static guint
2081 mono_get_unique_iid (MonoClass *class)
2082 {
2083         int iid;
2084         
2085         g_assert (MONO_CLASS_IS_INTERFACE (class));
2086
2087         if (!global_interface_bitset) {
2088                 global_interface_bitset = mono_bitset_new (128, 0);
2089         }
2090
2091         iid = mono_bitset_find_first_unset (global_interface_bitset, -1);
2092         if (iid < 0) {
2093                 int old_size = mono_bitset_size (global_interface_bitset);
2094                 MonoBitSet *new_set = mono_bitset_clone (global_interface_bitset, old_size * 2);
2095                 mono_bitset_free (global_interface_bitset);
2096                 global_interface_bitset = new_set;
2097                 iid = old_size;
2098         }
2099         mono_bitset_set (global_interface_bitset, iid);
2100         /* set the bit also in the per-image set */
2101         if (class->image->interface_bitset) {
2102                 if (iid >= mono_bitset_size (class->image->interface_bitset)) {
2103                         MonoBitSet *new_set = mono_bitset_clone (class->image->interface_bitset, iid + 1);
2104                         mono_bitset_free (class->image->interface_bitset);
2105                         class->image->interface_bitset = new_set;
2106                 }
2107         } else {
2108                 class->image->interface_bitset = mono_bitset_new (iid + 1, 0);
2109         }
2110         mono_bitset_set (class->image->interface_bitset, iid);
2111
2112         if (mono_print_vtable) {
2113                 int generic_id;
2114                 char *type_name = mono_type_full_name (&class->byval_arg);
2115                 if (class->generic_class && !class->generic_class->context.class_inst->is_open) {
2116                         generic_id = class->generic_class->context.class_inst->id;
2117                         g_assert (generic_id != 0);
2118                 } else {
2119                         generic_id = 0;
2120                 }
2121                 printf ("Interface: assigned id %d to %s|%s|%d\n", iid, class->image->name, type_name, generic_id);
2122                 g_free (type_name);
2123         }
2124
2125         g_assert (iid <= 65535);
2126         return iid;
2127 }
2128
2129 static void
2130 collect_implemented_interfaces_aux (MonoClass *klass, GPtrArray **res)
2131 {
2132         int i;
2133         MonoClass *ic;
2134
2135         mono_class_setup_interfaces (klass);
2136         
2137         for (i = 0; i < klass->interface_count; i++) {
2138                 ic = klass->interfaces [i];
2139
2140                 if (*res == NULL)
2141                         *res = g_ptr_array_new ();
2142                 g_ptr_array_add (*res, ic);
2143                 mono_class_init (ic);
2144
2145                 collect_implemented_interfaces_aux (ic, res);
2146         }
2147 }
2148
2149 GPtrArray*
2150 mono_class_get_implemented_interfaces (MonoClass *klass)
2151 {
2152         GPtrArray *res = NULL;
2153
2154         collect_implemented_interfaces_aux (klass, &res);
2155         return res;
2156 }
2157
2158 static int
2159 compare_interface_ids (const void *p_key, const void *p_element) {
2160         const MonoClass *key = p_key;
2161         const MonoClass *element = *(MonoClass**) p_element;
2162         
2163         return (key->interface_id - element->interface_id);
2164 }
2165
2166 int
2167 mono_class_interface_offset (MonoClass *klass, MonoClass *itf) {
2168         MonoClass **result = bsearch (
2169                         itf,
2170                         klass->interfaces_packed,
2171                         klass->interface_offsets_count,
2172                         sizeof (MonoClass *),
2173                         compare_interface_ids);
2174         if (result) {
2175                 return klass->interface_offsets_packed [result - (klass->interfaces_packed)];
2176         } else {
2177                 return -1;
2178         }
2179 }
2180
2181 static void
2182 print_implemented_interfaces (MonoClass *klass) {
2183         GPtrArray *ifaces = NULL;
2184         int i;
2185         int ancestor_level = 0;
2186         
2187         printf ("Packed interface table for class %s has size %d\n", klass->name, klass->interface_offsets_count);
2188         for (i = 0; i < klass->interface_offsets_count; i++)
2189                 printf ("  [%03d][UUID %03d][SLOT %03d][SIZE  %03d] interface %s.%s\n", i,
2190                                 klass->interfaces_packed [i]->interface_id,
2191                                 klass->interface_offsets_packed [i],
2192                                 klass->interfaces_packed [i]->method.count,
2193                                 klass->interfaces_packed [i]->name_space,
2194                                 klass->interfaces_packed [i]->name );
2195         printf ("Interface flags: ");
2196         for (i = 0; i <= klass->max_interface_id; i++)
2197                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, i))
2198                         printf ("(%d,T)", i);
2199                 else
2200                         printf ("(%d,F)", i);
2201         printf ("\n");
2202         printf ("Dump interface flags:");
2203         for (i = 0; i < ((((klass->max_interface_id + 1) >> 3)) + (((klass->max_interface_id + 1) & 7)? 1 :0)); i++)
2204                 printf (" %02X", klass->interface_bitmap [i]);
2205         printf ("\n");
2206         while (klass != NULL) {
2207                 printf ("[LEVEL %d] Implemented interfaces by class %s:\n", ancestor_level, klass->name);
2208                 ifaces = mono_class_get_implemented_interfaces (klass);
2209                 if (ifaces) {
2210                         for (i = 0; i < ifaces->len; i++) {
2211                                 MonoClass *ic = g_ptr_array_index (ifaces, i);
2212                                 printf ("  [UIID %d] interface %s\n", ic->interface_id, ic->name);
2213                                 printf ("  [%03d][UUID %03d][SLOT %03d][SIZE  %03d] interface %s.%s\n", i,
2214                                                 ic->interface_id,
2215                                                 mono_class_interface_offset (klass, ic),
2216                                                 ic->method.count,
2217                                                 ic->name_space,
2218                                                 ic->name );
2219                         }
2220                         g_ptr_array_free (ifaces, TRUE);
2221                 }
2222                 ancestor_level ++;
2223                 klass = klass->parent;
2224         }
2225 }
2226
2227 static MonoClass*
2228 inflate_class_one_arg (MonoClass *gtype, MonoClass *arg0)
2229 {
2230         MonoType *args [1];
2231         args [0] = &arg0->byval_arg;
2232
2233         return mono_class_bind_generic_parameters (gtype, 1, args, FALSE);
2234 }
2235
2236 static MonoClass*
2237 array_class_get_if_rank (MonoClass *class, guint rank)
2238 {
2239         return rank ? mono_array_class_get (class, rank) :  class;
2240 }
2241
2242 static void
2243 fill_valuetype_array_derived_types (MonoClass **valuetype_types, MonoClass *eclass, int rank)
2244 {
2245         valuetype_types [0] = eclass;
2246         if (eclass == mono_defaults.int16_class)
2247                 valuetype_types [1] = mono_defaults.uint16_class;
2248         else if (eclass == mono_defaults.uint16_class)
2249                 valuetype_types [1] = mono_defaults.int16_class;
2250         else if (eclass == mono_defaults.int32_class)
2251                 valuetype_types [1] = mono_defaults.uint32_class;
2252         else if (eclass == mono_defaults.uint32_class)
2253                 valuetype_types [1] = mono_defaults.int32_class;
2254         else if (eclass == mono_defaults.int64_class)
2255                 valuetype_types [1] = mono_defaults.uint64_class;
2256         else if (eclass == mono_defaults.uint64_class)
2257                 valuetype_types [1] = mono_defaults.int64_class;
2258         else if (eclass == mono_defaults.byte_class)
2259                 valuetype_types [1] = mono_defaults.sbyte_class;
2260         else if (eclass == mono_defaults.sbyte_class)
2261                 valuetype_types [1] = mono_defaults.byte_class;
2262         else if (eclass->enumtype && mono_class_enum_basetype (eclass))
2263                 valuetype_types [1] = mono_class_from_mono_type (mono_class_enum_basetype (eclass));
2264 }
2265
2266 /* this won't be needed once bug #325495 is completely fixed
2267  * though we'll need something similar to know which interfaces to allow
2268  * in arrays when they'll be lazyly created
2269  * 
2270  * FIXME: System.Array/InternalEnumerator don't need all this interface fabrication machinery.
2271  * MS returns diferrent types based on which instance is called. For example:
2272  *      object obj = new byte[10][];
2273  *      Type a = ((IEnumerable<byte[]>)obj).GetEnumerator ().GetType ();
2274  *      Type b = ((IEnumerable<IList<byte>>)obj).GetEnumerator ().GetType ();
2275  *      a != b ==> true
2276  * 
2277  * Fixing this should kill quite some code, save some bits and improve compatibility.
2278  */
2279 static MonoClass**
2280 get_implicit_generic_array_interfaces (MonoClass *class, int *num, int *is_enumerator)
2281 {
2282         MonoClass *eclass = class->element_class;
2283         static MonoClass* generic_icollection_class = NULL;
2284         static MonoClass* generic_ienumerable_class = NULL;
2285         static MonoClass* generic_ienumerator_class = NULL;
2286         MonoClass *valuetype_types[2] = { NULL, NULL };
2287         MonoClass **interfaces = NULL;
2288         int i, interface_count, real_count, original_rank;
2289         int all_interfaces;
2290         gboolean internal_enumerator;
2291         gboolean eclass_is_valuetype;
2292
2293         if (!mono_defaults.generic_ilist_class) {
2294                 *num = 0;
2295                 return NULL;
2296         }
2297         internal_enumerator = FALSE;
2298         eclass_is_valuetype = FALSE;
2299         original_rank = eclass->rank;
2300         if (class->byval_arg.type != MONO_TYPE_SZARRAY) {
2301                 if (class->generic_class && class->nested_in == mono_defaults.array_class && strcmp (class->name, "InternalEnumerator`1") == 0)  {
2302                         /*
2303                          * For a Enumerator<T[]> we need to get the list of interfaces for T.
2304                          */
2305                         eclass = mono_class_from_mono_type (class->generic_class->context.class_inst->type_argv [0]);
2306                         original_rank = eclass->rank;
2307                         eclass = eclass->element_class;
2308                         internal_enumerator = TRUE;
2309                         *is_enumerator = TRUE;
2310                 } else {
2311                         *num = 0;
2312                         return NULL;
2313                 }
2314         }
2315
2316         /* 
2317          * with this non-lazy impl we can't implement all the interfaces so we do just the minimal stuff
2318          * for deep levels of arrays of arrays (string[][] has all the interfaces, string[][][] doesn't)
2319          */
2320         all_interfaces = eclass->rank && eclass->element_class->rank? FALSE: TRUE;
2321
2322         if (!generic_icollection_class) {
2323                 generic_icollection_class = mono_class_from_name (mono_defaults.corlib,
2324                         "System.Collections.Generic", "ICollection`1");
2325                 generic_ienumerable_class = mono_class_from_name (mono_defaults.corlib,
2326                         "System.Collections.Generic", "IEnumerable`1");
2327                 generic_ienumerator_class = mono_class_from_name (mono_defaults.corlib,
2328                         "System.Collections.Generic", "IEnumerator`1");
2329         }
2330
2331         mono_class_init (eclass);
2332
2333         /*
2334          * Arrays in 2.0 need to implement a number of generic interfaces
2335          * (IList`1, ICollection`1, IEnumerable`1 for a number of types depending
2336          * on the element class). We collect the types needed to build the
2337          * instantiations in interfaces at intervals of 3, because 3 are
2338          * the generic interfaces needed to implement.
2339          */
2340         if (eclass->valuetype) {
2341                 fill_valuetype_array_derived_types (valuetype_types, eclass, original_rank);
2342
2343                 /* IList, ICollection, IEnumerable */
2344                 real_count = interface_count = valuetype_types [1] ? 6 : 3;
2345                 if (internal_enumerator) {
2346                         ++real_count;
2347                         if (valuetype_types [1])
2348                                 ++real_count;
2349                 }
2350
2351                 interfaces = g_malloc0 (sizeof (MonoClass*) * real_count);
2352                 interfaces [0] = valuetype_types [0];
2353                 if (valuetype_types [1])
2354                         interfaces [3] = valuetype_types [1];
2355
2356                 eclass_is_valuetype = TRUE;
2357         } else {
2358                 int j;
2359                 int idepth = eclass->idepth;
2360                 if (!internal_enumerator)
2361                         idepth--;
2362                 interface_count = all_interfaces? eclass->interface_offsets_count: eclass->interface_count;
2363                 /* we add object for interfaces and the supertypes for the other
2364                  * types. The last of the supertypes is the element class itself which we
2365                  * already created the explicit interfaces for (so we include it for IEnumerator
2366                  * and exclude it for arrays).
2367                  */
2368                 if (MONO_CLASS_IS_INTERFACE (eclass))
2369                         interface_count++;
2370                 else
2371                         interface_count += idepth;
2372                 if (eclass->rank && eclass->element_class->valuetype) {
2373                         fill_valuetype_array_derived_types (valuetype_types, eclass->element_class, original_rank);
2374                         if (valuetype_types [1])
2375                                 ++interface_count;
2376                 }
2377                 /* IList, ICollection, IEnumerable */
2378                 interface_count *= 3;
2379                 real_count = interface_count;
2380                 if (internal_enumerator) {
2381                         real_count += (MONO_CLASS_IS_INTERFACE (eclass) ? 1 : idepth) + eclass->interface_offsets_count;
2382                         if (valuetype_types [1])
2383                                 ++real_count;
2384                 }
2385                 interfaces = g_malloc0 (sizeof (MonoClass*) * real_count);
2386                 if (MONO_CLASS_IS_INTERFACE (eclass)) {
2387                         interfaces [0] = mono_defaults.object_class;
2388                         j = 3;
2389                 } else {
2390                         j = 0;
2391                         for (i = 0; i < idepth; i++) {
2392                                 mono_class_init (eclass->supertypes [i]);
2393                                 interfaces [j] = eclass->supertypes [i];
2394                                 j += 3;
2395                         }
2396                 }
2397                 if (all_interfaces) {
2398                         for (i = 0; i < eclass->interface_offsets_count; i++) {
2399                                 interfaces [j] = eclass->interfaces_packed [i];
2400                                 j += 3;
2401                         }
2402                 } else {
2403                         for (i = 0; i < eclass->interface_count; i++) {
2404                                 interfaces [j] = eclass->interfaces [i];
2405                                 j += 3;
2406                         }
2407                 }
2408                 if (valuetype_types [1]) {
2409                         interfaces [j] = array_class_get_if_rank (valuetype_types [1], original_rank);
2410                         j += 3;
2411                 }
2412         }
2413
2414         /* instantiate the generic interfaces */
2415         for (i = 0; i < interface_count; i += 3) {
2416                 MonoClass *iface = interfaces [i];
2417
2418                 interfaces [i + 0] = inflate_class_one_arg (mono_defaults.generic_ilist_class, iface);
2419                 interfaces [i + 1] = inflate_class_one_arg (generic_icollection_class, iface);
2420                 interfaces [i + 2] = inflate_class_one_arg (generic_ienumerable_class, iface);
2421         }
2422         if (internal_enumerator) {
2423                 int j;
2424                 /* instantiate IEnumerator<iface> */
2425                 for (i = 0; i < interface_count; i++) {
2426                         interfaces [i] = inflate_class_one_arg (generic_ienumerator_class, interfaces [i]);
2427                 }
2428                 j = interface_count;
2429                 if (!eclass_is_valuetype) {
2430                         if (MONO_CLASS_IS_INTERFACE (eclass)) {
2431                                 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, mono_defaults.object_class);
2432                                 j ++;
2433                         } else {
2434                                 for (i = 0; i < eclass->idepth; i++) {
2435                                         interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, eclass->supertypes [i]);
2436                                         j ++;
2437                                 }
2438                         }
2439                         for (i = 0; i < eclass->interface_offsets_count; i++) {
2440                                 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, eclass->interfaces_packed [i]);
2441                                 j ++;
2442                         }
2443                 } else {
2444                         interfaces [j++] = inflate_class_one_arg (generic_ienumerator_class, array_class_get_if_rank (valuetype_types [0], original_rank));
2445                 }
2446                 if (valuetype_types [1])
2447                         interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, array_class_get_if_rank (valuetype_types [1], original_rank));
2448         }
2449 #if 0
2450         {
2451         char *type_name = mono_type_get_name_full (&class->byval_arg, 0);
2452         for (i = 0; i  < real_count; ++i) {
2453                 char *name = mono_type_get_name_full (&interfaces [i]->byval_arg, 0);
2454                 g_print ("%s implements %s\n", type_name, name);
2455                 g_free (name);
2456         }
2457         g_free (type_name);
2458         }
2459 #endif
2460         *num = real_count;
2461         return interfaces;
2462 }
2463
2464 static int
2465 find_array_interface (MonoClass *klass, const char *name)
2466 {
2467         int i;
2468         for (i = 0; i < klass->interface_count; ++i) {
2469                 if (strcmp (klass->interfaces [i]->name, name) == 0)
2470                         return i;
2471         }
2472         return -1;
2473 }
2474
2475 /*
2476  * Return the number of virtual methods.
2477  * Even for interfaces we can't simply return the number of methods as all CLR types are allowed to have static methods.
2478  * FIXME It would be nice if this information could be cached somewhere.
2479  */
2480 static int
2481 count_virtual_methods (MonoClass *class)
2482 {
2483         int i, count = 0;
2484         guint32 flags;
2485         class = mono_class_get_generic_type_definition (class); /*We can find this information by looking at the GTD*/
2486
2487         if (class->methods || !MONO_CLASS_HAS_STATIC_METADATA (class)) {
2488                 mono_class_setup_methods (class);
2489
2490                 for (i = 0; i < class->method.count; ++i) {
2491                         flags = class->methods [i]->flags;
2492                         if (flags & METHOD_ATTRIBUTE_VIRTUAL)
2493                                 ++count;
2494                 }
2495         } else {
2496                 for (i = 0; i < class->method.count; ++i) {
2497                         flags = mono_metadata_decode_table_row_col (class->image, MONO_TABLE_METHOD, class->method.first + i, MONO_METHOD_FLAGS);
2498
2499                         if (flags & METHOD_ATTRIBUTE_VIRTUAL)
2500                                 ++count;
2501                 }
2502         }
2503         return count;
2504 }
2505
2506 /*
2507  * LOCKING: this is supposed to be called with the loader lock held.
2508  */
2509 static int
2510 setup_interface_offsets (MonoClass *class, int cur_slot)
2511 {
2512         MonoClass *k, *ic;
2513         int i, max_iid;
2514         MonoClass **interfaces_full;
2515         int *interface_offsets_full;
2516         GPtrArray *ifaces;
2517         int interface_offsets_count;
2518         MonoClass **array_interfaces;
2519         int num_array_interfaces;
2520         int is_enumerator = FALSE;
2521
2522         /* 
2523          * get the implicit generic interfaces for either the arrays or for System.Array/InternalEnumerator<T>
2524          * implicit interfaces have the property that they are assigned the same slot in the
2525          * vtables for compatible interfaces
2526          */
2527         array_interfaces = get_implicit_generic_array_interfaces (class, &num_array_interfaces, &is_enumerator);
2528
2529         /* compute maximum number of slots and maximum interface id */
2530         max_iid = 0;
2531         for (k = class; k ; k = k->parent) {
2532                 for (i = 0; i < k->interface_count; i++) {
2533                         ic = k->interfaces [i];
2534
2535                         if (!ic->inited)
2536                                 mono_class_init (ic);
2537
2538                         if (max_iid < ic->interface_id)
2539                                 max_iid = ic->interface_id;
2540                 }
2541                 ifaces = mono_class_get_implemented_interfaces (k);
2542                 if (ifaces) {
2543                         for (i = 0; i < ifaces->len; ++i) {
2544                                 ic = g_ptr_array_index (ifaces, i);
2545                                 if (max_iid < ic->interface_id)
2546                                         max_iid = ic->interface_id;
2547                         }
2548                         g_ptr_array_free (ifaces, TRUE);
2549                 }
2550         }
2551         for (i = 0; i < num_array_interfaces; ++i) {
2552                 ic = array_interfaces [i];
2553                 mono_class_init (ic);
2554                 if (max_iid < ic->interface_id)
2555                         max_iid = ic->interface_id;
2556         }
2557
2558         if (MONO_CLASS_IS_INTERFACE (class)) {
2559                 if (max_iid < class->interface_id)
2560                         max_iid = class->interface_id;
2561         }
2562         class->max_interface_id = max_iid;
2563         /* compute vtable offset for interfaces */
2564         interfaces_full = g_malloc (sizeof (MonoClass*) * (max_iid + 1));
2565         interface_offsets_full = g_malloc (sizeof (int) * (max_iid + 1));
2566
2567         for (i = 0; i <= max_iid; i++) {
2568                 interfaces_full [i] = NULL;
2569                 interface_offsets_full [i] = -1;
2570         }
2571
2572         for (k = class->parent; k ; k = k->parent) {
2573                 ifaces = mono_class_get_implemented_interfaces (k);
2574                 if (ifaces) {
2575                         for (i = 0; i < ifaces->len; ++i) {
2576                                 int io;
2577                                 ic = g_ptr_array_index (ifaces, i);
2578                                 
2579                                 /*Force the sharing of interface offsets between parent and subtypes.*/
2580                                 io = mono_class_interface_offset (k, ic);
2581                                 g_assert (io >= 0);
2582                                 interfaces_full [ic->interface_id] = ic;
2583                                 interface_offsets_full [ic->interface_id] = io;
2584                         }
2585                         g_ptr_array_free (ifaces, TRUE);
2586                 }
2587         }
2588
2589
2590         ifaces = mono_class_get_implemented_interfaces (class);
2591         if (ifaces) {
2592                 for (i = 0; i < ifaces->len; ++i) {
2593                         ic = g_ptr_array_index (ifaces, i);
2594                         if (interfaces_full [ic->interface_id] != NULL)
2595                                 continue;
2596                         interfaces_full [ic->interface_id] = ic;
2597                         interface_offsets_full [ic->interface_id] = cur_slot;
2598                         cur_slot += count_virtual_methods (ic);
2599                 }
2600                 g_ptr_array_free (ifaces, TRUE);
2601         }
2602
2603         if (MONO_CLASS_IS_INTERFACE (class)) {
2604                 interfaces_full [class->interface_id] = class;
2605                 interface_offsets_full [class->interface_id] = cur_slot;
2606         }
2607
2608         if (num_array_interfaces) {
2609                 if (is_enumerator) {
2610                         int ienumerator_offset;
2611                         int ienumerator_idx = find_array_interface (class, "IEnumerator`1");
2612                         ienumerator_offset = interface_offsets_full [class->interfaces [ienumerator_idx]->interface_id];
2613                         for (i = 0; i < num_array_interfaces; ++i) {
2614                                 ic = array_interfaces [i];
2615                                 interfaces_full [ic->interface_id] = ic;
2616                                 if (strcmp (ic->name, "IEnumerator`1") == 0)
2617                                         interface_offsets_full [ic->interface_id] = ienumerator_offset;
2618                                 else
2619                                         g_assert_not_reached ();
2620                                 /*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);*/
2621                         }
2622                 } else {
2623                         int ilist_offset, icollection_offset, ienumerable_offset;
2624                         int ilist_iface_idx = find_array_interface (class, "IList`1");
2625                         int icollection_iface_idx = find_array_interface (class->interfaces [ilist_iface_idx], "ICollection`1");
2626                         int ienumerable_iface_idx = find_array_interface (class->interfaces [ilist_iface_idx], "IEnumerable`1");
2627                         ilist_offset = interface_offsets_full [class->interfaces [ilist_iface_idx]->interface_id];
2628                         icollection_offset = interface_offsets_full [class->interfaces [ilist_iface_idx]->interfaces [icollection_iface_idx]->interface_id];
2629                         ienumerable_offset = interface_offsets_full [class->interfaces [ilist_iface_idx]->interfaces [ienumerable_iface_idx]->interface_id];
2630                         g_assert (ilist_offset >= 0 && icollection_offset >= 0 && ienumerable_offset >= 0);
2631                         for (i = 0; i < num_array_interfaces; ++i) {
2632                                 ic = array_interfaces [i];
2633                                 interfaces_full [ic->interface_id] = ic;
2634                                 if (ic->generic_class->container_class == mono_defaults.generic_ilist_class)
2635                                         interface_offsets_full [ic->interface_id] = ilist_offset;
2636                                 else if (strcmp (ic->name, "ICollection`1") == 0)
2637                                         interface_offsets_full [ic->interface_id] = icollection_offset;
2638                                 else if (strcmp (ic->name, "IEnumerable`1") == 0)
2639                                         interface_offsets_full [ic->interface_id] = ienumerable_offset;
2640                                 else
2641                                         g_assert_not_reached ();
2642                                 /*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);*/
2643                         }
2644                 }
2645         }
2646
2647         for (interface_offsets_count = 0, i = 0; i <= max_iid; i++) {
2648                 if (interface_offsets_full [i] != -1) {
2649                         interface_offsets_count ++;
2650                 }
2651         }
2652
2653         /*
2654          * We might get called twice: once from mono_class_init () then once from 
2655          * mono_class_setup_vtable ().
2656          */
2657         if (class->interfaces_packed) {
2658                 g_assert (class->interface_offsets_count == interface_offsets_count);
2659         } else {
2660                 class->interface_offsets_count = interface_offsets_count;
2661                 class->interfaces_packed = mono_image_alloc (class->image, sizeof (MonoClass*) * interface_offsets_count);
2662                 class->interface_offsets_packed = mono_image_alloc (class->image, sizeof (guint16) * interface_offsets_count);
2663                 class->interface_bitmap = mono_image_alloc0 (class->image, (sizeof (guint8) * ((max_iid + 1) >> 3)) + (((max_iid + 1) & 7)? 1 :0));
2664                 for (interface_offsets_count = 0, i = 0; i <= max_iid; i++) {
2665                         if (interface_offsets_full [i] != -1) {
2666                                 class->interface_bitmap [i >> 3] |= (1 << (i & 7));
2667                                 class->interfaces_packed [interface_offsets_count] = interfaces_full [i];
2668                                 class->interface_offsets_packed [interface_offsets_count] = interface_offsets_full [i];
2669                                 /*if (num_array_interfaces)
2670                                   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]);*/
2671                                 interface_offsets_count ++;
2672                         }
2673                 }
2674         }
2675         
2676         g_free (interfaces_full);
2677         g_free (interface_offsets_full);
2678         g_free (array_interfaces);
2679         
2680         //printf ("JUST DONE: ");
2681         //print_implemented_interfaces (class);
2682  
2683         return cur_slot;
2684 }
2685
2686 /*
2687  * Setup interface offsets for interfaces. 
2688  * Initializes:
2689  * - class->max_interface_id
2690  * - class->interface_offsets_count
2691  * - class->interfaces_packed
2692  * - class->interface_offsets_packed
2693  * - class->interface_bitmap
2694  */
2695 void
2696 mono_class_setup_interface_offsets (MonoClass *class)
2697 {
2698         mono_loader_lock ();
2699
2700         setup_interface_offsets (class, 0);
2701
2702         mono_loader_unlock ();
2703 }
2704  
2705 /*
2706  * mono_class_setup_vtable:
2707  *
2708  *   Creates the generic vtable of CLASS.
2709  * Initializes the following fields in MonoClass:
2710  * - vtable
2711  * - vtable_size
2712  * Plus all the fields initialized by setup_interface_offsets ().
2713  * If there is an error during vtable construction, class->exception_type is set.
2714  *
2715  * LOCKING: Acquires the loader lock.
2716  */
2717 void
2718 mono_class_setup_vtable (MonoClass *class)
2719 {
2720         MonoMethod **overrides;
2721         MonoGenericContext *context;
2722         guint32 type_token;
2723         int onum = 0;
2724         int i;
2725         gboolean ok = TRUE;
2726
2727         if (class->vtable)
2728                 return;
2729
2730         if (mono_debug_using_mono_debugger ())
2731                 /* The debugger currently depends on this */
2732                 mono_class_setup_methods (class);
2733
2734         if (MONO_CLASS_IS_INTERFACE (class)) {
2735                 /* This sets method->slot for all methods if this is an interface */
2736                 mono_class_setup_methods (class);
2737                 return;
2738         }
2739
2740         mono_loader_lock ();
2741
2742         if (class->vtable) {
2743                 mono_loader_unlock ();
2744                 return;
2745         }
2746
2747         mono_stats.generic_vtable_count ++;
2748
2749         if (class->generic_class) {
2750                 context = mono_class_get_context (class);
2751                 type_token = class->generic_class->container_class->type_token;
2752         } else {
2753                 context = (MonoGenericContext *) class->generic_container;              
2754                 type_token = class->type_token;
2755         }
2756
2757         if (class->image->dynamic) {
2758                 if (class->generic_class) {
2759                         MonoClass *gklass = class->generic_class->container_class;
2760
2761                         mono_reflection_get_dynamic_overrides (gklass, &overrides, &onum);
2762                         for (i = 0; i < onum; ++i) {
2763                                 MonoMethod *override = overrides [(i * 2) + 1];
2764                                 MonoMethod *inflated = NULL;
2765                                 int j;
2766
2767                                 for (j = 0; j < class->method.count; ++j) {
2768                                         if (gklass->methods [j] == override) {
2769                                                 inflated = class->methods [j];
2770                                                 break;
2771                                         }
2772                                 }
2773                                 g_assert (inflated);
2774                                                 
2775                                 overrides [(i * 2) + 1] = inflated;
2776                         }
2777                 } else {
2778                         mono_reflection_get_dynamic_overrides (class, &overrides, &onum);
2779                 }
2780         } else {
2781                 /* The following call fails if there are missing methods in the type */
2782                 ok = mono_class_get_overrides_full (class->image, type_token, &overrides, &onum, context);
2783         }
2784
2785         if (ok)
2786                 mono_class_setup_vtable_general (class, overrides, onum);
2787                 
2788         g_free (overrides);
2789
2790         mono_loader_unlock ();
2791
2792         return;
2793 }
2794
2795 #define DEBUG_INTERFACE_VTABLE_CODE 0
2796 #define TRACE_INTERFACE_VTABLE_CODE 0
2797 #define VERIFY_INTERFACE_VTABLE_CODE 0
2798 #define VTABLE_SELECTOR (1)
2799
2800 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
2801 #define DEBUG_INTERFACE_VTABLE(stmt) do {\
2802         if (!(VTABLE_SELECTOR)) break; \
2803         stmt;\
2804 } while (0)
2805 #else
2806 #define DEBUG_INTERFACE_VTABLE(stmt)
2807 #endif
2808
2809 #if TRACE_INTERFACE_VTABLE_CODE
2810 #define TRACE_INTERFACE_VTABLE(stmt) do {\
2811         if (!(VTABLE_SELECTOR)) break; \
2812         stmt;\
2813 } while (0)
2814 #else
2815 #define TRACE_INTERFACE_VTABLE(stmt)
2816 #endif
2817
2818 #if VERIFY_INTERFACE_VTABLE_CODE
2819 #define VERIFY_INTERFACE_VTABLE(stmt) do {\
2820         if (!(VTABLE_SELECTOR)) break; \
2821         stmt;\
2822 } while (0)
2823 #else
2824 #define VERIFY_INTERFACE_VTABLE(stmt)
2825 #endif
2826
2827
2828 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
2829 static char*
2830 mono_signature_get_full_desc (MonoMethodSignature *sig, gboolean include_namespace)
2831 {
2832         int i;
2833         char *result;
2834         GString *res = g_string_new ("");
2835         
2836         g_string_append_c (res, '(');
2837         for (i = 0; i < sig->param_count; ++i) {
2838                 if (i > 0)
2839                         g_string_append_c (res, ',');
2840                 mono_type_get_desc (res, sig->params [i], include_namespace);
2841         }
2842         g_string_append (res, ")=>");
2843         if (sig->ret != NULL) {
2844                 mono_type_get_desc (res, sig->ret, include_namespace);
2845         } else {
2846                 g_string_append (res, "NULL");
2847         }
2848         result = res->str;
2849         g_string_free (res, FALSE);
2850         return result;
2851 }
2852 static void
2853 print_method_signatures (MonoMethod *im, MonoMethod *cm) {
2854         char *im_sig = mono_signature_get_full_desc (mono_method_signature (im), TRUE);
2855         char *cm_sig = mono_signature_get_full_desc (mono_method_signature (cm), TRUE);
2856         printf ("(IM \"%s\", CM \"%s\")", im_sig, cm_sig);
2857         g_free (im_sig);
2858         g_free (cm_sig);
2859         
2860 }
2861
2862 #endif
2863 static gboolean
2864 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) {
2865         if (strcmp (im->name, cm->name) == 0) {
2866                 if (! (cm->flags & METHOD_ATTRIBUTE_PUBLIC)) {
2867                         TRACE_INTERFACE_VTABLE (printf ("[PUBLIC CHECK FAILED]"));
2868                         return FALSE;
2869                 }
2870                 if (! slot_is_empty) {
2871                         if (require_newslot) {
2872                                 if (! interface_is_explicitly_implemented_by_class) {
2873                                         TRACE_INTERFACE_VTABLE (printf ("[NOT EXPLICIT IMPLEMENTATION IN FULL SLOT REFUSED]"));
2874                                         return FALSE;
2875                                 }
2876                                 if (! (cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
2877                                         TRACE_INTERFACE_VTABLE (printf ("[NEWSLOT CHECK FAILED]"));
2878                                         return FALSE;
2879                                 }
2880                         } else {
2881                                 TRACE_INTERFACE_VTABLE (printf ("[FULL SLOT REFUSED]"));
2882                         }
2883                 }
2884                 if (! mono_metadata_signature_equal (mono_method_signature (cm), mono_method_signature (im))) {
2885                         TRACE_INTERFACE_VTABLE (printf ("[SIGNATURE CHECK FAILED  "));
2886                         TRACE_INTERFACE_VTABLE (print_method_signatures (im, cm));
2887                         TRACE_INTERFACE_VTABLE (printf ("]"));
2888                         return FALSE;
2889                 }
2890                 TRACE_INTERFACE_VTABLE (printf ("[SECURITY CHECKS]"));
2891                 /* CAS - SecurityAction.InheritanceDemand on interface */
2892                 if (security_enabled && (im->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
2893                         mono_secman_inheritancedemand_method (cm, im);
2894                 }
2895
2896                 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
2897                         mono_security_core_clr_check_override (class, cm, im);
2898                 TRACE_INTERFACE_VTABLE (printf ("[NAME CHECK OK]"));
2899                 return TRUE;
2900         } else {
2901                 MonoClass *ic = im->klass;
2902                 const char *ic_name_space = ic->name_space;
2903                 const char *ic_name = ic->name;
2904                 char *subname;
2905                 
2906                 if (! require_newslot) {
2907                         TRACE_INTERFACE_VTABLE (printf ("[INJECTED METHOD REFUSED]"));
2908                         return FALSE;
2909                 }
2910                 if (cm->klass->rank == 0) {
2911                         TRACE_INTERFACE_VTABLE (printf ("[RANK CHECK FAILED]"));
2912                         return FALSE;
2913                 }
2914                 if (! mono_metadata_signature_equal (mono_method_signature (cm), mono_method_signature (im))) {
2915                         TRACE_INTERFACE_VTABLE (printf ("[(INJECTED) SIGNATURE CHECK FAILED  "));
2916                         TRACE_INTERFACE_VTABLE (print_method_signatures (im, cm));
2917                         TRACE_INTERFACE_VTABLE (printf ("]"));
2918                         return FALSE;
2919                 }
2920                 if (mono_class_get_image (ic) != mono_defaults.corlib) {
2921                         TRACE_INTERFACE_VTABLE (printf ("[INTERFACE CORLIB CHECK FAILED]"));
2922                         return FALSE;
2923                 }
2924                 if ((ic_name_space == NULL) || (strcmp (ic_name_space, "System.Collections.Generic") != 0)) {
2925                         TRACE_INTERFACE_VTABLE (printf ("[INTERFACE NAMESPACE CHECK FAILED]"));
2926                         return FALSE;
2927                 }
2928                 if ((ic_name == NULL) || ((strcmp (ic_name, "IEnumerable`1") != 0) && (strcmp (ic_name, "ICollection`1") != 0) && (strcmp (ic_name, "IList`1") != 0))) {
2929                         TRACE_INTERFACE_VTABLE (printf ("[INTERFACE NAME CHECK FAILED]"));
2930                         return FALSE;
2931                 }
2932                 
2933                 subname = strstr (cm->name, ic_name_space);
2934                 if (subname != cm->name) {
2935                         TRACE_INTERFACE_VTABLE (printf ("[ACTUAL NAMESPACE CHECK FAILED]"));
2936                         return FALSE;
2937                 }
2938                 subname += strlen (ic_name_space);
2939                 if (subname [0] != '.') {
2940                         TRACE_INTERFACE_VTABLE (printf ("[FIRST DOT CHECK FAILED]"));
2941                         return FALSE;
2942                 }
2943                 subname ++;
2944                 if (strstr (subname, ic_name) != subname) {
2945                         TRACE_INTERFACE_VTABLE (printf ("[ACTUAL CLASS NAME CHECK FAILED]"));
2946                         return FALSE;
2947                 }
2948                 subname += strlen (ic_name);
2949                 if (subname [0] != '.') {
2950                         TRACE_INTERFACE_VTABLE (printf ("[SECOND DOT CHECK FAILED]"));
2951                         return FALSE;
2952                 }
2953                 subname ++;
2954                 if (strcmp (subname, im->name) != 0) {
2955                         TRACE_INTERFACE_VTABLE (printf ("[METHOD NAME CHECK FAILED]"));
2956                         return FALSE;
2957                 }
2958                 
2959                 TRACE_INTERFACE_VTABLE (printf ("[SECURITY CHECKS (INJECTED CASE)]"));
2960                 /* CAS - SecurityAction.InheritanceDemand on interface */
2961                 if (security_enabled && (im->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
2962                         mono_secman_inheritancedemand_method (cm, im);
2963                 }
2964
2965                 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
2966                         mono_security_core_clr_check_override (class, cm, im);
2967                 
2968                 TRACE_INTERFACE_VTABLE (printf ("[INJECTED INTERFACE CHECK OK]"));
2969                 return TRUE;
2970         }
2971 }
2972
2973 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
2974 static void
2975 foreach_override (gpointer key, gpointer value, gpointer user_data) {
2976         MonoMethod *method = key;
2977         MonoMethod *override = value;
2978         MonoClass *method_class = mono_method_get_class (method);
2979         MonoClass *override_class = mono_method_get_class (override);
2980         
2981         printf ("  Method '%s.%s:%s' has override '%s.%s:%s'\n",
2982                         mono_class_get_namespace (method_class), mono_class_get_name (method_class), mono_method_get_name (method),
2983                         mono_class_get_namespace (override_class), mono_class_get_name (override_class), mono_method_get_name (override));
2984 }
2985 static void
2986 print_overrides (GHashTable *override_map, const char *message) {
2987         if (override_map) {
2988                 printf ("Override map \"%s\" START:\n", message);
2989                 g_hash_table_foreach (override_map, foreach_override, NULL);
2990                 printf ("Override map \"%s\" END.\n", message);
2991         } else {
2992                 printf ("Override map \"%s\" EMPTY.\n", message);
2993         }
2994 }
2995 static void
2996 print_vtable_full (MonoClass *class, MonoMethod** vtable, int size, int first_non_interface_slot, const char *message, gboolean print_interfaces) {
2997         char *full_name = mono_type_full_name (&class->byval_arg);
2998         int i;
2999         int parent_size;
3000         
3001         printf ("*** Vtable for class '%s' at \"%s\" (size %d)\n", full_name, message, size);
3002         
3003         if (print_interfaces) {
3004                 print_implemented_interfaces (class);
3005                 printf ("* Interfaces for class '%s' done.\nStarting vtable (size %d):\n", full_name, size);
3006         }
3007         
3008         if (class->parent) {
3009                 parent_size = class->parent->vtable_size;
3010         } else {
3011                 parent_size = 0;
3012         }
3013         for (i = 0; i < size; ++i) {
3014                 MonoMethod *cm = vtable [i];
3015                 if (cm) {
3016                         char *cm_name = mono_method_full_name (cm, TRUE);
3017                         char newness = (i < parent_size) ? 'O' : ((i < first_non_interface_slot) ? 'I' : 'N');
3018                         printf ("  [%c][%03d][INDEX %03d] %s\n", newness, i, cm->slot, cm_name);
3019                         g_free (cm_name);
3020                 }
3021         }
3022
3023         g_free (full_name);
3024 }
3025 #endif
3026
3027 #if VERIFY_INTERFACE_VTABLE_CODE
3028 static int
3029 mono_method_try_get_vtable_index (MonoMethod *method)
3030 {
3031         if (method->is_inflated && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
3032                 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
3033                 if (imethod->declaring->is_generic)
3034                         return imethod->declaring->slot;
3035         }
3036         return method->slot;
3037 }
3038
3039 static void
3040 mono_class_verify_vtable (MonoClass *class)
3041 {
3042         int i;
3043         char *full_name = mono_type_full_name (&class->byval_arg);
3044
3045         printf ("*** Verifying VTable of class '%s' \n", full_name);
3046         g_free (full_name);
3047         full_name = NULL;
3048         
3049         if (!class->methods)
3050                 return;
3051
3052         for (i = 0; i < class->method.count; ++i) {
3053                 MonoMethod *cm = class->methods [i];
3054                 int slot;
3055
3056                 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL))
3057                         continue;
3058
3059                 g_free (full_name);
3060                 full_name = mono_method_full_name (cm, TRUE);
3061
3062                 slot = mono_method_try_get_vtable_index (cm);
3063                 if (slot >= 0) {
3064                         if (slot >= class->vtable_size) {
3065                                 printf ("\tInvalid method %s at index %d with vtable of length %d\n", full_name, slot, class->vtable_size);
3066                                 continue;
3067                         }
3068
3069                         if (slot >= 0 && class->vtable [slot] != cm && (class->vtable [slot])) {
3070                                 char *other_name = class->vtable [slot] ? mono_method_full_name (class->vtable [slot], TRUE) : g_strdup ("[null value]");
3071                                 printf ("\tMethod %s has slot %d but vtable has %s on it\n", full_name, slot, other_name);
3072                                 g_free (other_name);
3073                         }
3074                 } else
3075                         printf ("\tVirtual method %s does n't have an assigned slot\n", full_name);
3076         }
3077         g_free (full_name);
3078 }
3079 #endif
3080
3081 static void
3082 print_unimplemented_interface_method_info (MonoClass *class, MonoClass *ic, MonoMethod *im, int im_slot, MonoMethod **overrides, int onum) {
3083         int index;
3084         char *method_signature;
3085         char *type_name;
3086         
3087         for (index = 0; index < onum; ++index) {
3088                 g_print (" at slot %d: %s (%d) overrides %s (%d)\n", im_slot, overrides [index*2+1]->name, 
3089                          overrides [index*2+1]->slot, overrides [index*2]->name, overrides [index*2]->slot);
3090         }
3091         method_signature = mono_signature_get_desc (mono_method_signature (im), FALSE);
3092         type_name = mono_type_full_name (&class->byval_arg);
3093         printf ("no implementation for interface method %s::%s(%s) in class %s\n",
3094                 mono_type_get_name (&ic->byval_arg), im->name, method_signature, type_name);
3095         g_free (method_signature);
3096         g_free (type_name);
3097         mono_class_setup_methods (class);
3098         for (index = 0; index < class->method.count; ++index) {
3099                 MonoMethod *cm = class->methods [index];
3100                 method_signature = mono_signature_get_desc (mono_method_signature (cm), TRUE);
3101
3102                 printf ("METHOD %s(%s)\n", cm->name, method_signature);
3103                 g_free (method_signature);
3104         }
3105 }
3106
3107 static gboolean
3108 verify_class_overrides (MonoClass *class, MonoMethod **overrides, int onum)
3109 {
3110         int i;
3111
3112         for (i = 0; i < onum; ++i) {
3113                 MonoMethod *decl = overrides [i * 2];
3114                 MonoMethod *body = overrides [i * 2 + 1];
3115
3116                 if (mono_class_get_generic_type_definition (body->klass) != mono_class_get_generic_type_definition (class)) {
3117                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Method belongs to a different class than the declared one"));
3118                         return FALSE;
3119                 }
3120
3121                 if (!(body->flags & METHOD_ATTRIBUTE_VIRTUAL) || (body->flags & METHOD_ATTRIBUTE_STATIC)) {
3122                         if (body->flags & METHOD_ATTRIBUTE_STATIC)
3123                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Method must not be static to override a base type"));
3124                         else
3125                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Method must be virtual to override a base type"));
3126                         return FALSE;
3127                 }
3128
3129                 if (!(decl->flags & METHOD_ATTRIBUTE_VIRTUAL) || (decl->flags & METHOD_ATTRIBUTE_STATIC)) {
3130                         if (body->flags & METHOD_ATTRIBUTE_STATIC)
3131                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Cannot override a static method in a base type"));
3132                         else
3133                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Cannot override a non virtual method in a base type"));
3134                         return FALSE;
3135                 }
3136
3137                 if (!mono_class_is_assignable_from_slow (decl->klass, class)) {
3138                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Method overrides a class or interface that extended or implemented by this type"));
3139                         return FALSE;
3140                 }
3141         }
3142         return TRUE;
3143 }
3144 /*
3145  * LOCKING: this is supposed to be called with the loader lock held.
3146  */
3147 void
3148 mono_class_setup_vtable_general (MonoClass *class, MonoMethod **overrides, int onum)
3149 {
3150         MonoClass *k, *ic;
3151         MonoMethod **vtable;
3152         int i, max_vtsize = 0, max_iid, cur_slot = 0;
3153         GPtrArray *ifaces = NULL;
3154         GHashTable *override_map = NULL;
3155         gboolean security_enabled = mono_is_security_manager_active ();
3156         MonoMethod *cm;
3157         gpointer class_iter;
3158 #if (DEBUG_INTERFACE_VTABLE_CODE|TRACE_INTERFACE_VTABLE_CODE)
3159         int first_non_interface_slot;
3160 #endif
3161
3162         if (class->vtable)
3163                 return;
3164
3165         if (overrides && !verify_class_overrides (class, overrides, onum))
3166                 return;
3167
3168         ifaces = mono_class_get_implemented_interfaces (class);
3169
3170         if (ifaces) {
3171                 for (i = 0; i < ifaces->len; i++) {
3172                         MonoClass *ic = g_ptr_array_index (ifaces, i);
3173                         max_vtsize += ic->method.count;
3174                 }
3175                 g_ptr_array_free (ifaces, TRUE);
3176                 ifaces = NULL;
3177         }
3178         
3179         if (class->parent) {
3180                 mono_class_init (class->parent);
3181                 mono_class_setup_vtable (class->parent);
3182                 max_vtsize += class->parent->vtable_size;
3183                 cur_slot = class->parent->vtable_size;
3184         }
3185
3186         max_vtsize += class->method.count;
3187
3188         vtable = alloca (sizeof (gpointer) * max_vtsize);
3189         memset (vtable, 0, sizeof (gpointer) * max_vtsize);
3190
3191         /* printf ("METAINIT %s.%s\n", class->name_space, class->name); */
3192
3193         cur_slot = setup_interface_offsets (class, cur_slot);
3194         max_iid = class->max_interface_id;
3195         DEBUG_INTERFACE_VTABLE (first_non_interface_slot = cur_slot);
3196
3197         /* Optimized version for generic instances */
3198         if (class->generic_class) {
3199                 MonoClass *gklass = class->generic_class->container_class;
3200                 MonoMethod **tmp;
3201
3202                 mono_class_setup_vtable (gklass);
3203                 if (gklass->exception_type != MONO_EXCEPTION_NONE) {
3204                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3205                         return;
3206                 }
3207
3208                 tmp = mono_image_alloc0 (class->image, sizeof (gpointer) * gklass->vtable_size);
3209                 class->vtable_size = gklass->vtable_size;
3210                 for (i = 0; i < gklass->vtable_size; ++i)
3211                         if (gklass->vtable [i]) {
3212                                 tmp [i] = mono_class_inflate_generic_method_full (gklass->vtable [i], class, mono_class_get_context (class));
3213                                 tmp [i]->slot = gklass->vtable [i]->slot;
3214                         }
3215                 mono_memory_barrier ();
3216                 class->vtable = tmp;
3217
3218                 /* Have to set method->slot for abstract virtual methods */
3219                 if (class->methods && gklass->methods) {
3220                         for (i = 0; i < class->method.count; ++i)
3221                                 if (class->methods [i]->slot == -1)
3222                                         class->methods [i]->slot = gklass->methods [i]->slot;
3223                 }
3224
3225                 return;
3226         }
3227
3228         if (class->parent && class->parent->vtable_size) {
3229                 MonoClass *parent = class->parent;
3230                 int i;
3231                 
3232                 memcpy (vtable, parent->vtable,  sizeof (gpointer) * parent->vtable_size);
3233                 
3234                 // Also inherit parent interface vtables, just as a starting point.
3235                 // This is needed otherwise bug-77127.exe fails when the property methods
3236                 // have different names in the iterface and the class, because for child
3237                 // classes the ".override" information is not used anymore.
3238                 for (i = 0; i < parent->interface_offsets_count; i++) {
3239                         MonoClass *parent_interface = parent->interfaces_packed [i];
3240                         int interface_offset = mono_class_interface_offset (class, parent_interface);
3241                         
3242                         if (interface_offset >= parent->vtable_size) {
3243                                 int parent_interface_offset = mono_class_interface_offset (parent, parent_interface);
3244                                 int j;
3245                                 
3246                                 mono_class_setup_methods (parent_interface);
3247                                 TRACE_INTERFACE_VTABLE (printf ("    +++ Inheriting interface %s.%s\n", parent_interface->name_space, parent_interface->name));
3248                                 for (j = 0; j < parent_interface->method.count; j++) {
3249                                         vtable [interface_offset + j] = parent->vtable [parent_interface_offset + j];
3250                                         TRACE_INTERFACE_VTABLE (printf ("    --- Inheriting: [%03d][(%03d)+(%03d)] => [%03d][(%03d)+(%03d)]\n",
3251                                                         parent_interface_offset + j, parent_interface_offset, j,
3252                                                         interface_offset + j, interface_offset, j));
3253                                 }
3254                         }
3255                         
3256                 }
3257         }
3258
3259         TRACE_INTERFACE_VTABLE (print_vtable_full (class, vtable, cur_slot, first_non_interface_slot, "AFTER INHERITING PARENT VTABLE", TRUE));
3260         /* override interface methods */
3261         for (i = 0; i < onum; i++) {
3262                 MonoMethod *decl = overrides [i*2];
3263                 if (MONO_CLASS_IS_INTERFACE (decl->klass)) {
3264                         int dslot;
3265                         dslot = mono_method_get_vtable_slot (decl) + mono_class_interface_offset (class, decl->klass);
3266                         vtable [dslot] = overrides [i*2 + 1];
3267                         vtable [dslot]->slot = dslot;
3268                         if (!override_map)
3269                                 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
3270
3271                         g_hash_table_insert (override_map, overrides [i * 2], overrides [i * 2 + 1]);
3272
3273                         if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3274                                 mono_security_core_clr_check_override (class, vtable [dslot], decl);
3275                 }
3276         }
3277         TRACE_INTERFACE_VTABLE (print_overrides (override_map, "AFTER OVERRIDING INTERFACE METHODS"));
3278         TRACE_INTERFACE_VTABLE (print_vtable_full (class, vtable, cur_slot, first_non_interface_slot, "AFTER OVERRIDING INTERFACE METHODS", FALSE));
3279
3280         // Loop on all implemented interfaces...
3281         for (i = 0; i < class->interface_offsets_count; i++) {
3282                 MonoClass *parent = class->parent;
3283                 int ic_offset;
3284                 gboolean interface_is_explicitly_implemented_by_class;
3285                 int im_index;
3286                 
3287                 ic = class->interfaces_packed [i];
3288                 ic_offset = mono_class_interface_offset (class, ic);
3289
3290                 mono_class_setup_methods (ic);
3291                 
3292                 // Check if this interface is explicitly implemented (instead of just inherited)
3293                 if (parent != NULL) {
3294                         int implemented_interfaces_index;
3295                         interface_is_explicitly_implemented_by_class = FALSE;
3296                         for (implemented_interfaces_index = 0; implemented_interfaces_index < class->interface_count; implemented_interfaces_index++) {
3297                                 if (ic == class->interfaces [implemented_interfaces_index]) {
3298                                         interface_is_explicitly_implemented_by_class = TRUE;
3299                                         break;
3300                                 }
3301                         }
3302                 } else {
3303                         interface_is_explicitly_implemented_by_class = TRUE;
3304                 }
3305                 
3306                 // Loop on all interface methods...
3307                 for (im_index = 0; im_index < ic->method.count; im_index++) {
3308                         MonoMethod *im = ic->methods [im_index];
3309                         int im_slot = ic_offset + im->slot;
3310                         MonoMethod *override_im = (override_map != NULL) ? g_hash_table_lookup (override_map, im) : NULL;
3311                         
3312                         if (im->flags & METHOD_ATTRIBUTE_STATIC)
3313                                 continue;
3314
3315                         // If there is an explicit implementation, just use it right away,
3316                         // otherwise look for a matching method
3317                         if (override_im == NULL) {
3318                                 int cm_index;
3319                                 gpointer iter;
3320                                 MonoMethod *cm;
3321
3322                                 // First look for a suitable method among the class methods
3323                                 iter = NULL;
3324                                 while ((cm = mono_class_get_virtual_methods (class, &iter))) {
3325                                         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)));
3326                                         if (check_interface_method_override (class, im, cm, TRUE, interface_is_explicitly_implemented_by_class, (vtable [im_slot] == NULL), security_enabled)) {
3327                                                 TRACE_INTERFACE_VTABLE (printf ("[check ok]: ASSIGNING"));
3328                                                 vtable [im_slot] = cm;
3329                                                 /* Why do we need this? */
3330                                                 if (cm->slot < 0) {
3331                                                         cm->slot = im_slot;
3332                                                 }
3333                                         }
3334                                         TRACE_INTERFACE_VTABLE (printf ("\n"));
3335                                 }
3336                                 
3337                                 // If the slot is still empty, look in all the inherited virtual methods...
3338                                 if ((vtable [im_slot] == NULL) && class->parent != NULL) {
3339                                         MonoClass *parent = class->parent;
3340                                         // Reverse order, so that last added methods are preferred
3341                                         for (cm_index = parent->vtable_size - 1; cm_index >= 0; cm_index--) {
3342                                                 MonoMethod *cm = parent->vtable [cm_index];
3343                                                 
3344                                                 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));
3345                                                 if ((cm != NULL) && check_interface_method_override (class, im, cm, FALSE, FALSE, TRUE, security_enabled)) {
3346                                                         TRACE_INTERFACE_VTABLE (printf ("[everything ok]: ASSIGNING"));
3347                                                         vtable [im_slot] = cm;
3348                                                         /* Why do we need this? */
3349                                                         if (cm->slot < 0) {
3350                                                                 cm->slot = im_slot;
3351                                                         }
3352                                                         break;
3353                                                 }
3354                                                 TRACE_INTERFACE_VTABLE ((cm != NULL) && printf ("\n"));
3355                                         }
3356                                 }
3357                         } else {
3358                                 g_assert (vtable [im_slot] == override_im);
3359                         }
3360                 }
3361         }
3362         
3363         // If the class is not abstract, check that all its interface slots are full.
3364         // The check is done here and not directly at the end of the loop above because
3365         // it can happen (for injected generic array interfaces) that the same slot is
3366         // processed multiple times (those interfaces have overlapping slots), and it
3367         // will not always be the first pass the one that fills the slot.
3368         if (! (class->flags & TYPE_ATTRIBUTE_ABSTRACT)) {
3369                 for (i = 0; i < class->interface_offsets_count; i++) {
3370                         int ic_offset;
3371                         int im_index;
3372                         
3373                         ic = class->interfaces_packed [i];
3374                         ic_offset = mono_class_interface_offset (class, ic);
3375                         
3376                         for (im_index = 0; im_index < ic->method.count; im_index++) {
3377                                 MonoMethod *im = ic->methods [im_index];
3378                                 int im_slot = ic_offset + im->slot;
3379                                 
3380                                 if (im->flags & METHOD_ATTRIBUTE_STATIC)
3381                                         continue;
3382
3383                                 TRACE_INTERFACE_VTABLE (printf ("      [class is not abstract, checking slot %d for interface '%s'.'%s', method %s, slot check is %d]\n",
3384                                                 im_slot, ic->name_space, ic->name, im->name, (vtable [im_slot] == NULL)));
3385                                 if (vtable [im_slot] == NULL) {
3386                                         print_unimplemented_interface_method_info (class, ic, im, im_slot, overrides, onum);
3387                                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3388                                         if (override_map)
3389                                                 g_hash_table_destroy (override_map);
3390                                         return;
3391                                 }
3392                         }
3393                 }
3394         }
3395
3396         TRACE_INTERFACE_VTABLE (print_vtable_full (class, vtable, cur_slot, first_non_interface_slot, "AFTER SETTING UP INTERFACE METHODS", FALSE));
3397         class_iter = NULL;
3398         while ((cm = mono_class_get_virtual_methods (class, &class_iter))) {
3399                 /*
3400                  * If the method is REUSE_SLOT, we must check in the
3401                  * base class for a method to override.
3402                  */
3403                 if (!(cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
3404                         int slot = -1;
3405                         for (k = class->parent; k ; k = k->parent) {
3406                                 gpointer k_iter;
3407                                 MonoMethod *m1;
3408
3409                                 k_iter = NULL;
3410                                 while ((m1 = mono_class_get_virtual_methods (k, &k_iter))) {
3411                                         MonoMethodSignature *cmsig, *m1sig;
3412
3413                                         cmsig = mono_method_signature (cm);
3414                                         m1sig = mono_method_signature (m1);
3415
3416                                         if (!cmsig || !m1sig) {
3417                                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3418                                                 return;
3419                                         }
3420
3421                                         if (!strcmp(cm->name, m1->name) && 
3422                                             mono_metadata_signature_equal (cmsig, m1sig)) {
3423
3424                                                 /* CAS - SecurityAction.InheritanceDemand */
3425                                                 if (security_enabled && (m1->flags & METHOD_ATTRIBUTE_HAS_SECURITY)) {
3426                                                         mono_secman_inheritancedemand_method (cm, m1);
3427                                                 }
3428
3429                                                 if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3430                                                         mono_security_core_clr_check_override (class, cm, m1);
3431
3432                                                 slot = mono_method_get_vtable_slot (m1);
3433                                                 g_assert (cm->slot < max_vtsize);
3434                                                 if (!override_map)
3435                                                         override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
3436                                                 g_hash_table_insert (override_map, m1, cm);
3437                                                 break;
3438                                         }
3439                                 }
3440                                 if (slot >= 0) 
3441                                         break;
3442                         }
3443                         if (slot >= 0)
3444                                 cm->slot = slot;
3445                 }
3446
3447                 /*Non final newslot methods must be given a non-interface vtable slot*/
3448                 if ((cm->flags & METHOD_ATTRIBUTE_NEW_SLOT) && !(cm->flags & METHOD_ATTRIBUTE_FINAL) && cm->slot >= 0)
3449                         cm->slot = -1;
3450
3451                 if (cm->slot < 0)
3452                         cm->slot = cur_slot++;
3453
3454                 if (!(cm->flags & METHOD_ATTRIBUTE_ABSTRACT))
3455                         vtable [cm->slot] = cm;
3456         }
3457
3458         /* override non interface methods */
3459         for (i = 0; i < onum; i++) {
3460                 MonoMethod *decl = overrides [i*2];
3461                 if (!MONO_CLASS_IS_INTERFACE (decl->klass)) {
3462                         g_assert (decl->slot != -1);
3463                         vtable [decl->slot] = overrides [i*2 + 1];
3464                         overrides [i * 2 + 1]->slot = decl->slot;
3465                         if (!override_map)
3466                                 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
3467                         g_hash_table_insert (override_map, decl, overrides [i * 2 + 1]);
3468
3469                         if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3470                                 mono_security_core_clr_check_override (class, vtable [decl->slot], decl);
3471                 }
3472         }
3473
3474         /*
3475          * If a method occupies more than one place in the vtable, and it is
3476          * overriden, then change the other occurances too.
3477          */
3478         if (override_map) {
3479                 for (i = 0; i < max_vtsize; ++i)
3480                         if (vtable [i]) {
3481                                 MonoMethod *cm = g_hash_table_lookup (override_map, vtable [i]);
3482                                 if (cm)
3483                                         vtable [i] = cm;
3484                         }
3485
3486                 g_hash_table_destroy (override_map);
3487         }
3488
3489         /* Ensure that all vtable slots are filled with concrete instance methods */
3490         if (!(class->flags & TYPE_ATTRIBUTE_ABSTRACT)) {
3491                 for (i = 0; i < cur_slot; ++i) {
3492                         if (vtable [i] == NULL || (vtable [i]->flags & (METHOD_ATTRIBUTE_ABSTRACT | METHOD_ATTRIBUTE_STATIC))) {
3493                                 char *type_name = mono_type_get_full_name (class);
3494                                 char *method_name = vtable [i] ? mono_method_full_name (vtable [i], TRUE) : g_strdup ("none");
3495                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, g_strdup_printf ("Type %s has invalid vtable method slot %d with method %s", type_name, i, method_name));
3496                                 g_free (type_name);
3497                                 g_free (method_name);
3498                                 return;
3499                         }
3500                 }
3501         }
3502
3503         if (class->generic_class) {
3504                 MonoClass *gklass = class->generic_class->container_class;
3505
3506                 mono_class_init (gklass);
3507
3508                 class->vtable_size = MAX (gklass->vtable_size, cur_slot);
3509         } else {
3510                 /* Check that the vtable_size value computed in mono_class_init () is correct */
3511                 if (class->vtable_size)
3512                         g_assert (cur_slot == class->vtable_size);
3513                 class->vtable_size = cur_slot;
3514         }
3515
3516         /* Try to share the vtable with our parent. */
3517         if (class->parent && (class->parent->vtable_size == class->vtable_size) && (memcmp (class->parent->vtable, vtable, sizeof (gpointer) * class->vtable_size) == 0)) {
3518                 mono_memory_barrier ();
3519                 class->vtable = class->parent->vtable;
3520         } else {
3521                 MonoMethod **tmp = mono_image_alloc0 (class->image, sizeof (gpointer) * class->vtable_size);
3522                 memcpy (tmp, vtable,  sizeof (gpointer) * class->vtable_size);
3523                 mono_memory_barrier ();
3524                 class->vtable = tmp;
3525         }
3526
3527         DEBUG_INTERFACE_VTABLE (print_vtable_full (class, class->vtable, class->vtable_size, first_non_interface_slot, "FINALLY", FALSE));
3528         if (mono_print_vtable) {
3529                 int icount = 0;
3530
3531                 print_implemented_interfaces (class);
3532                 
3533                 for (i = 0; i <= max_iid; i++)
3534                         if (MONO_CLASS_IMPLEMENTS_INTERFACE (class, i))
3535                                 icount++;
3536
3537                 printf ("VTable %s (vtable entries = %d, interfaces = %d)\n", mono_type_full_name (&class->byval_arg), 
3538                         class->vtable_size, icount); 
3539
3540                 for (i = 0; i < class->vtable_size; ++i) {
3541                         MonoMethod *cm;
3542                
3543                         cm = vtable [i];
3544                         if (cm) {
3545                                 printf ("  slot assigned: %03d, slot index: %03d %s\n", i, cm->slot,
3546                                         mono_method_full_name (cm, TRUE));
3547                         }
3548                 }
3549
3550
3551                 if (icount) {
3552                         printf ("Interfaces %s.%s (max_iid = %d)\n", class->name_space, 
3553                                 class->name, max_iid);
3554         
3555                         for (i = 0; i < class->interface_count; i++) {
3556                                 ic = class->interfaces [i];
3557                                 printf ("  slot offset: %03d, method count: %03d, iid: %03d %s\n",  
3558                                         mono_class_interface_offset (class, ic),
3559                                         ic->method.count, ic->interface_id, mono_type_full_name (&ic->byval_arg));
3560                         }
3561
3562                         for (k = class->parent; k ; k = k->parent) {
3563                                 for (i = 0; i < k->interface_count; i++) {
3564                                         ic = k->interfaces [i]; 
3565                                         printf ("  slot offset: %03d, method count: %03d, iid: %03d %s\n",  
3566                                                 mono_class_interface_offset (class, ic),
3567                                                 ic->method.count, ic->interface_id, mono_type_full_name (&ic->byval_arg));
3568                                 }
3569                         }
3570                 }
3571         }
3572
3573         VERIFY_INTERFACE_VTABLE (mono_class_verify_vtable (class));
3574 }
3575
3576 /*
3577  * mono_method_get_vtable_slot:
3578  *
3579  *   Returns method->slot, computing it if neccesary.
3580  * LOCKING: Acquires the loader lock.
3581  */
3582 int
3583 mono_method_get_vtable_slot (MonoMethod *method)
3584 {
3585         if (method->slot == -1) {
3586                 mono_class_setup_vtable (method->klass);
3587                 g_assert (method->slot != -1);
3588         }
3589         return method->slot;
3590 }
3591
3592 /**
3593  * mono_method_get_vtable_index:
3594  * @method: a method
3595  *
3596  * Returns the index into the runtime vtable to access the method or,
3597  * in the case of a virtual generic method, the virtual generic method
3598  * thunk.
3599  */
3600 int
3601 mono_method_get_vtable_index (MonoMethod *method)
3602 {
3603         if (method->is_inflated && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
3604                 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
3605                 if (imethod->declaring->is_generic)
3606                         return mono_method_get_vtable_slot (imethod->declaring);
3607         }
3608         return mono_method_get_vtable_slot (method);
3609 }
3610
3611 static MonoMethod *default_ghc = NULL;
3612 static MonoMethod *default_finalize = NULL;
3613 static int finalize_slot = -1;
3614 static int ghc_slot = -1;
3615
3616 static void
3617 initialize_object_slots (MonoClass *class)
3618 {
3619         int i;
3620         if (default_ghc)
3621                 return;
3622         if (class == mono_defaults.object_class) { 
3623                 mono_class_setup_vtable (class);                       
3624                 for (i = 0; i < class->vtable_size; ++i) {
3625                         MonoMethod *cm = class->vtable [i];
3626        
3627                         if (!strcmp (cm->name, "GetHashCode"))
3628                                 ghc_slot = i;
3629                         else if (!strcmp (cm->name, "Finalize"))
3630                                 finalize_slot = i;
3631                 }
3632
3633                 g_assert (ghc_slot > 0);
3634                 default_ghc = class->vtable [ghc_slot];
3635
3636                 g_assert (finalize_slot > 0);
3637                 default_finalize = class->vtable [finalize_slot];
3638         }
3639 }
3640
3641 typedef struct {
3642         MonoMethod *array_method;
3643         char *name;
3644 } GenericArrayMethodInfo;
3645
3646 static int generic_array_method_num = 0;
3647 static GenericArrayMethodInfo *generic_array_method_info = NULL;
3648
3649 static int
3650 generic_array_methods (MonoClass *class)
3651 {
3652         int i, count_generic = 0;
3653         GList *list = NULL, *tmp;
3654         if (generic_array_method_num)
3655                 return generic_array_method_num;
3656         mono_class_setup_methods (class->parent);
3657         for (i = 0; i < class->parent->method.count; i++) {
3658                 MonoMethod *m = class->parent->methods [i];
3659                 if (!strncmp (m->name, "InternalArray__", 15)) {
3660                         count_generic++;
3661                         list = g_list_prepend (list, m);
3662                 }
3663         }
3664         list = g_list_reverse (list);
3665         generic_array_method_info = g_malloc (sizeof (GenericArrayMethodInfo) * count_generic);
3666         i = 0;
3667         for (tmp = list; tmp; tmp = tmp->next) {
3668                 const char *mname, *iname;
3669                 gchar *name;
3670                 MonoMethod *m = tmp->data;
3671                 generic_array_method_info [i].array_method = m;
3672                 if (!strncmp (m->name, "InternalArray__ICollection_", 27)) {
3673                         iname = "System.Collections.Generic.ICollection`1.";
3674                         mname = m->name + 27;
3675                 } else if (!strncmp (m->name, "InternalArray__IEnumerable_", 27)) {
3676                         iname = "System.Collections.Generic.IEnumerable`1.";
3677                         mname = m->name + 27;
3678                 } else if (!strncmp (m->name, "InternalArray__", 15)) {
3679                         iname = "System.Collections.Generic.IList`1.";
3680                         mname = m->name + 15;
3681                 } else {
3682                         g_assert_not_reached ();
3683                 }
3684
3685                 name = mono_image_alloc (mono_defaults.corlib, strlen (iname) + strlen (mname) + 1);
3686                 strcpy (name, iname);
3687                 strcpy (name + strlen (iname), mname);
3688                 generic_array_method_info [i].name = name;
3689                 i++;
3690         }
3691         /*g_print ("array generic methods: %d\n", count_generic);*/
3692
3693         generic_array_method_num = count_generic;
3694         g_list_free (list);
3695         return generic_array_method_num;
3696 }
3697
3698 static void
3699 setup_generic_array_ifaces (MonoClass *class, MonoClass *iface, MonoMethod **methods, int pos)
3700 {
3701         MonoGenericContext tmp_context;
3702         int i;
3703
3704         tmp_context.class_inst = NULL;
3705         tmp_context.method_inst = iface->generic_class->context.class_inst;
3706         //g_print ("setting up array interface: %s\n", mono_type_get_name_full (&iface->byval_arg, 0));
3707
3708         for (i = 0; i < generic_array_method_num; i++) {
3709                 MonoMethod *m = generic_array_method_info [i].array_method;
3710                 MonoMethod *inflated;
3711
3712                 inflated = mono_class_inflate_generic_method (m, &tmp_context);
3713                 methods [pos++] = mono_marshal_get_generic_array_helper (class, iface, generic_array_method_info [i].name, inflated);
3714         }
3715 }
3716
3717 static char*
3718 concat_two_strings_with_zero (MonoImage *image, const char *s1, const char *s2)
3719 {
3720         int len = strlen (s1) + strlen (s2) + 2;
3721         char *s = mono_image_alloc (image, len);
3722         int result;
3723
3724         result = g_snprintf (s, len, "%s%c%s", s1, '\0', s2);
3725         g_assert (result == len - 1);
3726
3727         return s;
3728 }
3729
3730 static void
3731 set_failure_from_loader_error (MonoClass *class, MonoLoaderError *error)
3732 {
3733         gpointer exception_data = NULL;
3734
3735         switch (error->exception_type) {
3736         case MONO_EXCEPTION_TYPE_LOAD:
3737                 exception_data = concat_two_strings_with_zero (class->image, error->class_name, error->assembly_name);
3738                 break;
3739
3740         case MONO_EXCEPTION_MISSING_METHOD:
3741                 exception_data = concat_two_strings_with_zero (class->image, error->class_name, error->member_name);
3742                 break;
3743
3744         case MONO_EXCEPTION_MISSING_FIELD: {
3745                 const char *name_space = error->klass->name_space ? error->klass->name_space : NULL;
3746                 const char *class_name;
3747
3748                 if (name_space)
3749                         class_name = g_strdup_printf ("%s.%s", name_space, error->klass->name);
3750                 else
3751                         class_name = error->klass->name;
3752
3753                 exception_data = concat_two_strings_with_zero (class->image, class_name, error->member_name);
3754                 
3755                 if (name_space)
3756                         g_free ((void*)class_name);
3757                 break;
3758         }
3759
3760         case MONO_EXCEPTION_FILE_NOT_FOUND: {
3761                 const char *msg;
3762
3763                 if (error->ref_only)
3764                         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.";
3765                 else
3766                         msg = "Could not load file or assembly '%s' or one of its dependencies.";
3767
3768                 exception_data = concat_two_strings_with_zero (class->image, msg, error->assembly_name);
3769                 break;
3770         }
3771
3772         case MONO_EXCEPTION_BAD_IMAGE:
3773                 exception_data = error->msg;
3774                 break;
3775
3776         default :
3777                 g_assert_not_reached ();
3778         }
3779
3780         mono_class_set_failure (class, error->exception_type, exception_data);
3781 }
3782
3783 /**
3784  * mono_class_init:
3785  * @class: the class to initialize
3786  *
3787  *   Compute the instance_size, class_size and other infos that cannot be 
3788  * computed at mono_class_get() time. Also compute vtable_size if possible. 
3789  * Returns TRUE on success or FALSE if there was a problem in loading
3790  * the type (incorrect assemblies, missing assemblies, methods, etc). 
3791  *
3792  * LOCKING: Acquires the loader lock.
3793  */
3794 gboolean
3795 mono_class_init (MonoClass *class)
3796 {
3797         int i;
3798         MonoCachedClassInfo cached_info;
3799         gboolean has_cached_info;
3800         int class_init_ok = TRUE;
3801         
3802         g_assert (class);
3803
3804         /* Double-checking locking pattern */
3805         if (class->inited)
3806                 return class->exception_type == MONO_EXCEPTION_NONE;
3807
3808         /*g_print ("Init class %s\n", class->name);*/
3809
3810         /* We do everything inside the lock to prevent races */
3811         mono_loader_lock ();
3812
3813         if (class->inited) {
3814                 mono_loader_unlock ();
3815                 /* Somebody might have gotten in before us */
3816                 return class->exception_type == MONO_EXCEPTION_NONE;
3817         }
3818
3819         if (class->init_pending) {
3820                 mono_loader_unlock ();
3821                 /* this indicates a cyclic dependency */
3822                 g_error ("pending init %s.%s\n", class->name_space, class->name);
3823         }
3824
3825         class->init_pending = 1;
3826
3827         if (class->byval_arg.type == MONO_TYPE_ARRAY || class->byval_arg.type == MONO_TYPE_SZARRAY) {
3828                 MonoClass *element_class = class->element_class;
3829                 if (!element_class->inited) 
3830                         mono_class_init (element_class);
3831                 if (element_class->exception_type != MONO_EXCEPTION_NONE) {
3832                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3833                         goto fail;
3834                 }
3835         }
3836
3837         /* CAS - SecurityAction.InheritanceDemand */
3838         if (mono_is_security_manager_active () && class->parent && (class->parent->flags & TYPE_ATTRIBUTE_HAS_SECURITY)) {
3839                 mono_secman_inheritancedemand_class (class, class->parent);
3840         }
3841
3842         if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR)
3843                 mono_security_core_clr_check_inheritance (class);
3844
3845         mono_stats.initialized_class_count++;
3846
3847         if (class->generic_class && !class->generic_class->is_dynamic) {
3848                 MonoClass *gklass = class->generic_class->container_class;
3849
3850                 mono_stats.generic_class_count++;
3851
3852                 class->method = gklass->method;
3853                 class->field = gklass->field;
3854
3855                 mono_class_init (gklass);
3856                 // FIXME: Why is this needed ?
3857                 mono_class_setup_methods (gklass);
3858
3859                 if (MONO_CLASS_IS_INTERFACE (class))
3860                         class->interface_id = mono_get_unique_iid (class);
3861         }
3862
3863         if (class->parent && !class->parent->inited)
3864                 mono_class_init (class->parent);
3865
3866         has_cached_info = mono_class_get_cached_class_info (class, &cached_info);
3867
3868         if (class->generic_class || class->image->dynamic || !class->type_token || (has_cached_info && !cached_info.has_nested_classes))
3869                 class->nested_classes_inited = TRUE;
3870
3871         /*
3872          * Computes the size used by the fields, and their locations
3873          */
3874         if (has_cached_info) {
3875                 class->instance_size = cached_info.instance_size;
3876                 class->sizes.class_size = cached_info.class_size;
3877                 class->packing_size = cached_info.packing_size;
3878                 class->min_align = cached_info.min_align;
3879                 class->blittable = cached_info.blittable;
3880                 class->has_references = cached_info.has_references;
3881                 class->has_static_refs = cached_info.has_static_refs;
3882                 class->no_special_static_fields = cached_info.no_special_static_fields;
3883         }
3884         else
3885                 if (!class->size_inited){
3886                         mono_class_setup_fields (class);
3887                         if (class->exception_type || mono_loader_get_last_error ()){
3888                                 class_init_ok = FALSE;
3889                                 goto leave;
3890                         }
3891                 }
3892                                 
3893         /* Initialize arrays */
3894         if (class->rank) {
3895                 class->method.count = 3 + (class->rank > 1? 2: 1);
3896
3897                 if (class->interface_count) {
3898                         int count_generic = generic_array_methods (class);
3899                         class->method.count += class->interface_count * count_generic;
3900                 }
3901         }
3902
3903         mono_class_setup_supertypes (class);
3904
3905         if (!default_ghc)
3906                 initialize_object_slots (class);
3907
3908         /* 
3909          * Initialize the rest of the data without creating a generic vtable if possible.
3910          * If possible, also compute vtable_size, so mono_class_create_runtime_vtable () can
3911          * also avoid computing a generic vtable.
3912          */
3913         if (has_cached_info) {
3914                 /* AOT case */
3915                 class->vtable_size = cached_info.vtable_size;
3916                 class->has_finalize = cached_info.has_finalize;
3917                 class->ghcimpl = cached_info.ghcimpl;
3918                 class->has_cctor = cached_info.has_cctor;
3919         } else if (class->rank == 1 && class->byval_arg.type == MONO_TYPE_SZARRAY) {
3920                 static int szarray_vtable_size = 0;
3921
3922                 /* SZARRAY case */
3923                 if (!szarray_vtable_size) {
3924                         mono_class_setup_vtable (class);
3925                         szarray_vtable_size = class->vtable_size;
3926                 } else {
3927                         class->vtable_size = szarray_vtable_size;
3928                 }
3929         } else if (class->generic_class && !MONO_CLASS_IS_INTERFACE (class)) {
3930                 MonoClass *gklass = class->generic_class->container_class;
3931
3932                 /* Generic instance case */
3933                 class->ghcimpl = gklass->ghcimpl;
3934                 class->has_finalize = gklass->has_finalize;
3935                 class->has_cctor = gklass->has_cctor;
3936
3937                 mono_class_setup_vtable (gklass);
3938                 if (gklass->exception_type) {
3939                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
3940                         goto fail;
3941                 }
3942
3943                 class->vtable_size = gklass->vtable_size;
3944         } else {
3945                 /* General case */
3946
3947                 /* ghcimpl is not currently used
3948                 class->ghcimpl = 1;
3949                 if (class->parent) { 
3950                         MonoMethod *cmethod = class->vtable [ghc_slot];
3951                         if (cmethod->is_inflated)
3952                                 cmethod = ((MonoMethodInflated*)cmethod)->declaring;
3953                         if (cmethod == default_ghc) {
3954                                 class->ghcimpl = 0;
3955                         }
3956                 }
3957                 */
3958
3959                 /* Interfaces and valuetypes are not supposed to have finalizers */
3960                 if (!(MONO_CLASS_IS_INTERFACE (class) || class->valuetype)) {
3961                         MonoMethod *cmethod = NULL;
3962
3963                         if (class->parent && class->parent->has_finalize) {
3964                                 class->has_finalize = 1;
3965                         } else {
3966                                 if (class->type_token) {
3967                                         cmethod = find_method_in_metadata (class, "Finalize", 0, METHOD_ATTRIBUTE_VIRTUAL);
3968                                 } else if (class->parent) {
3969                                         /* FIXME: Optimize this */
3970                                         mono_class_setup_vtable (class);
3971                                         if (class->exception_type || mono_loader_get_last_error ())
3972                                                 goto fail;
3973                                         cmethod = class->vtable [finalize_slot];
3974                                 }
3975
3976                                 if (cmethod) {
3977                                         /* Check that this is really the finalizer method */
3978                                         mono_class_setup_vtable (class);
3979                                         if (class->exception_type || mono_loader_get_last_error ())
3980                                         goto fail;
3981
3982                                         class->has_finalize = 0;
3983                                         if (class->parent) { 
3984                                                 cmethod = class->vtable [finalize_slot];
3985                                                 if (cmethod->is_inflated)
3986                                                         cmethod = ((MonoMethodInflated*)cmethod)->declaring;
3987                                                 if (cmethod != default_finalize) {
3988                                                         class->has_finalize = 1;
3989                                                 }
3990                                         }
3991                                 }
3992                         }
3993                 }
3994
3995                 /* C# doesn't allow interfaces to have cctors */
3996                 if (!MONO_CLASS_IS_INTERFACE (class) || class->image != mono_defaults.corlib) {
3997                         MonoMethod *cmethod = NULL;
3998
3999                         if (class->type_token) {
4000                                 cmethod = find_method_in_metadata (class, ".cctor", 0, METHOD_ATTRIBUTE_SPECIAL_NAME);
4001                                 /* The find_method function ignores the 'flags' argument */
4002                                 if (cmethod && (cmethod->flags & METHOD_ATTRIBUTE_SPECIAL_NAME))
4003                                         class->has_cctor = 1;
4004                         } else {
4005                                 mono_class_setup_methods (class);
4006
4007                                 for (i = 0; i < class->method.count; ++i) {
4008                                         MonoMethod *method = class->methods [i];
4009                                         if ((method->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) && 
4010                                                 (strcmp (".cctor", method->name) == 0)) {
4011                                                 class->has_cctor = 1;
4012                                                 break;
4013                                         }
4014                                 }
4015                         }
4016                 }
4017         }
4018
4019         if (!mono_setup_vtable_in_class_init) {
4020                 /*
4021                  * This is an embedding API break, since the caller might assume that 
4022                  * mono_class_init () constructs a generic vtable, so vtable construction errors
4023                  * are visible right after the mono_class_init (), and not after 
4024                  * mono_class_vtable ().
4025                  */
4026                 if (class->parent) {
4027                         /* This will compute class->parent->vtable_size for some classes */
4028                         mono_class_init (class->parent);
4029                         if (class->parent->exception_type) {
4030                                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4031                                 goto fail;
4032                         }
4033                         if (mono_loader_get_last_error ())
4034                                 goto fail;
4035                         if (!class->parent->vtable_size) {
4036                                 /* FIXME: Get rid of this somehow */
4037                                 mono_class_setup_vtable (class->parent);
4038                                 if (class->parent->exception_type) {
4039                                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4040                                         goto fail;
4041                                 }
4042                                 if (mono_loader_get_last_error ())
4043                                         goto fail;
4044                         }
4045                         setup_interface_offsets (class, class->parent->vtable_size);
4046                 } else {
4047                         setup_interface_offsets (class, 0);
4048                 }
4049         } else {
4050                 mono_class_setup_vtable (class);
4051
4052                 if (MONO_CLASS_IS_INTERFACE (class))
4053                         setup_interface_offsets (class, 0);
4054         }
4055
4056         if (mono_verifier_is_enabled_for_class (class) && !mono_verifier_verify_class (class)) {
4057                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, concat_two_strings_with_zero (class->image, class->name, class->image->assembly_name));
4058                 class_init_ok = FALSE;
4059         }
4060
4061         goto leave;
4062
4063  fail:
4064         class_init_ok = FALSE;
4065
4066  leave:
4067         /* Because of the double-checking locking pattern */
4068         mono_memory_barrier ();
4069         class->inited = 1;
4070         class->init_pending = 0;
4071
4072         if (mono_loader_get_last_error ()) {
4073                 if (class->exception_type == MONO_EXCEPTION_NONE)
4074                         set_failure_from_loader_error (class, mono_loader_get_last_error ());
4075
4076                 mono_loader_clear_error ();
4077         }
4078
4079         mono_loader_unlock ();
4080
4081         if (mono_debugger_class_init_func)
4082                 mono_debugger_class_init_func (class);
4083
4084         return class_init_ok;
4085 }
4086
4087 static gboolean
4088 is_corlib_image (MonoImage *image)
4089 {
4090         /* FIXME: allow the dynamic case for our compilers and with full trust */
4091         if (image->dynamic)
4092                 return image->assembly && !strcmp (image->assembly->aname.name, "mscorlib");
4093         else
4094                 return image == mono_defaults.corlib;
4095 }
4096
4097 /*
4098  * LOCKING: this assumes the loader lock is held
4099  */
4100 void
4101 mono_class_setup_mono_type (MonoClass *class)
4102 {
4103         const char *name = class->name;
4104         const char *nspace = class->name_space;
4105         gboolean is_corlib = is_corlib_image (class->image);
4106
4107         class->this_arg.byref = 1;
4108         class->this_arg.data.klass = class;
4109         class->this_arg.type = MONO_TYPE_CLASS;
4110         class->byval_arg.data.klass = class;
4111         class->byval_arg.type = MONO_TYPE_CLASS;
4112
4113         if (is_corlib && !strcmp (nspace, "System")) {
4114                 if (!strcmp (name, "ValueType")) {
4115                         /*
4116                          * do not set the valuetype bit for System.ValueType.
4117                          * class->valuetype = 1;
4118                          */
4119                         class->blittable = TRUE;
4120                 } else if (!strcmp (name, "Enum")) {
4121                         /*
4122                          * do not set the valuetype bit for System.Enum.
4123                          * class->valuetype = 1;
4124                          */
4125                         class->valuetype = 0;
4126                         class->enumtype = 0;
4127                 } else if (!strcmp (name, "Object")) {
4128                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_OBJECT;
4129                 } else if (!strcmp (name, "String")) {
4130                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_STRING;
4131                 } else if (!strcmp (name, "TypedReference")) {
4132                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_TYPEDBYREF;
4133                 }
4134         }
4135
4136         if (class->valuetype) {
4137                 int t = MONO_TYPE_VALUETYPE;
4138
4139                 if (is_corlib && !strcmp (nspace, "System")) {
4140                         switch (*name) {
4141                         case 'B':
4142                                 if (!strcmp (name, "Boolean")) {
4143                                         t = MONO_TYPE_BOOLEAN;
4144                                 } else if (!strcmp(name, "Byte")) {
4145                                         t = MONO_TYPE_U1;
4146                                         class->blittable = TRUE;                                                
4147                                 }
4148                                 break;
4149                         case 'C':
4150                                 if (!strcmp (name, "Char")) {
4151                                         t = MONO_TYPE_CHAR;
4152                                 }
4153                                 break;
4154                         case 'D':
4155                                 if (!strcmp (name, "Double")) {
4156                                         t = MONO_TYPE_R8;
4157                                         class->blittable = TRUE;                                                
4158                                 }
4159                                 break;
4160                         case 'I':
4161                                 if (!strcmp (name, "Int32")) {
4162                                         t = MONO_TYPE_I4;
4163                                         class->blittable = TRUE;
4164                                 } else if (!strcmp(name, "Int16")) {
4165                                         t = MONO_TYPE_I2;
4166                                         class->blittable = TRUE;
4167                                 } else if (!strcmp(name, "Int64")) {
4168                                         t = MONO_TYPE_I8;
4169                                         class->blittable = TRUE;
4170                                 } else if (!strcmp(name, "IntPtr")) {
4171                                         t = MONO_TYPE_I;
4172                                         class->blittable = TRUE;
4173                                 }
4174                                 break;
4175                         case 'S':
4176                                 if (!strcmp (name, "Single")) {
4177                                         t = MONO_TYPE_R4;
4178                                         class->blittable = TRUE;                                                
4179                                 } else if (!strcmp(name, "SByte")) {
4180                                         t = MONO_TYPE_I1;
4181                                         class->blittable = TRUE;
4182                                 }
4183                                 break;
4184                         case 'U':
4185                                 if (!strcmp (name, "UInt32")) {
4186                                         t = MONO_TYPE_U4;
4187                                         class->blittable = TRUE;
4188                                 } else if (!strcmp(name, "UInt16")) {
4189                                         t = MONO_TYPE_U2;
4190                                         class->blittable = TRUE;
4191                                 } else if (!strcmp(name, "UInt64")) {
4192                                         t = MONO_TYPE_U8;
4193                                         class->blittable = TRUE;
4194                                 } else if (!strcmp(name, "UIntPtr")) {
4195                                         t = MONO_TYPE_U;
4196                                         class->blittable = TRUE;
4197                                 }
4198                                 break;
4199                         case 'T':
4200                                 if (!strcmp (name, "TypedReference")) {
4201                                         t = MONO_TYPE_TYPEDBYREF;
4202                                         class->blittable = TRUE;
4203                                 }
4204                                 break;
4205                         case 'V':
4206                                 if (!strcmp (name, "Void")) {
4207                                         t = MONO_TYPE_VOID;
4208                                 }
4209                                 break;
4210                         default:
4211                                 break;
4212                         }
4213                 }
4214                 class->this_arg.type = class->byval_arg.type = t;
4215         }
4216
4217         if (MONO_CLASS_IS_INTERFACE (class))
4218                 class->interface_id = mono_get_unique_iid (class);
4219
4220 }
4221
4222 /*
4223  * LOCKING: this assumes the loader lock is held
4224  */
4225 void
4226 mono_class_setup_parent (MonoClass *class, MonoClass *parent)
4227 {
4228         gboolean system_namespace;
4229         gboolean is_corlib = is_corlib_image (class->image);
4230
4231         system_namespace = !strcmp (class->name_space, "System") && is_corlib;
4232
4233         /* if root of the hierarchy */
4234         if (system_namespace && !strcmp (class->name, "Object")) {
4235                 class->parent = NULL;
4236                 class->instance_size = sizeof (MonoObject);
4237                 return;
4238         }
4239         if (!strcmp (class->name, "<Module>")) {
4240                 class->parent = NULL;
4241                 class->instance_size = 0;
4242                 return;
4243         }
4244
4245         if (!MONO_CLASS_IS_INTERFACE (class)) {
4246                 /* Imported COM Objects always derive from __ComObject. */
4247                 if (MONO_CLASS_IS_IMPORT (class)) {
4248                         mono_init_com_types ();
4249                         if (parent == mono_defaults.object_class)
4250                                 parent = mono_defaults.com_object_class;
4251                 }
4252                 if (!parent) {
4253                         /* set the parent to something useful and safe, but mark the type as broken */
4254                         parent = mono_defaults.object_class;
4255                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4256                 }
4257
4258                 class->parent = parent;
4259
4260                 if (parent->generic_class && !parent->name) {
4261                         /*
4262                          * If the parent is a generic instance, we may get
4263                          * called before it is fully initialized, especially
4264                          * before it has its name.
4265                          */
4266                         return;
4267                 }
4268
4269                 class->marshalbyref = parent->marshalbyref;
4270                 class->contextbound  = parent->contextbound;
4271                 class->delegate  = parent->delegate;
4272                 if (MONO_CLASS_IS_IMPORT (class))
4273                         class->is_com_object = 1;
4274                 else
4275                         class->is_com_object = parent->is_com_object;
4276                 
4277                 if (system_namespace) {
4278                         if (*class->name == 'M' && !strcmp (class->name, "MarshalByRefObject"))
4279                                 class->marshalbyref = 1;
4280
4281                         if (*class->name == 'C' && !strcmp (class->name, "ContextBoundObject")) 
4282                                 class->contextbound  = 1;
4283
4284                         if (*class->name == 'D' && !strcmp (class->name, "Delegate")) 
4285                                 class->delegate  = 1;
4286                 }
4287
4288                 if (class->parent->enumtype || (is_corlib_image (class->parent->image) && (strcmp (class->parent->name, "ValueType") == 0) && 
4289                                                 (strcmp (class->parent->name_space, "System") == 0)))
4290                         class->valuetype = 1;
4291                 if (is_corlib_image (class->parent->image) && ((strcmp (class->parent->name, "Enum") == 0) && (strcmp (class->parent->name_space, "System") == 0))) {
4292                         class->valuetype = class->enumtype = 1;
4293                 }
4294                 /*class->enumtype = class->parent->enumtype; */
4295                 mono_class_setup_supertypes (class);
4296         } else {
4297                 /* initialize com types if COM interfaces are present */
4298                 if (MONO_CLASS_IS_IMPORT (class))
4299                         mono_init_com_types ();
4300                 class->parent = NULL;
4301         }
4302
4303 }
4304
4305 /*
4306  * mono_class_setup_supertypes:
4307  * @class: a class
4308  *
4309  * Build the data structure needed to make fast type checks work.
4310  * This currently sets two fields in @class:
4311  *  - idepth: distance between @class and System.Object in the type
4312  *    hierarchy + 1
4313  *  - supertypes: array of classes: each element has a class in the hierarchy
4314  *    starting from @class up to System.Object
4315  * 
4316  * LOCKING: this assumes the loader lock is held
4317  */
4318 void
4319 mono_class_setup_supertypes (MonoClass *class)
4320 {
4321         int ms;
4322
4323         if (class->supertypes)
4324                 return;
4325
4326         if (class->parent && !class->parent->supertypes)
4327                 mono_class_setup_supertypes (class->parent);
4328         if (class->parent)
4329                 class->idepth = class->parent->idepth + 1;
4330         else
4331                 class->idepth = 1;
4332
4333         ms = MAX (MONO_DEFAULT_SUPERTABLE_SIZE, class->idepth);
4334         class->supertypes = mono_image_alloc0 (class->image, sizeof (MonoClass *) * ms);
4335
4336         if (class->parent) {
4337                 class->supertypes [class->idepth - 1] = class;
4338                 memcpy (class->supertypes, class->parent->supertypes, class->parent->idepth * sizeof (gpointer));
4339         } else {
4340                 class->supertypes [0] = class;
4341         }
4342 }
4343
4344 /**
4345  * mono_class_create_from_typedef:
4346  * @image: image where the token is valid
4347  * @type_token:  typedef token
4348  *
4349  * Create the MonoClass* representing the specified type token.
4350  * @type_token must be a TypeDef token.
4351  */
4352 static MonoClass *
4353 mono_class_create_from_typedef (MonoImage *image, guint32 type_token)
4354 {
4355         MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
4356         MonoClass *class, *parent = NULL;
4357         guint32 cols [MONO_TYPEDEF_SIZE];
4358         guint32 cols_next [MONO_TYPEDEF_SIZE];
4359         guint tidx = mono_metadata_token_index (type_token);
4360         MonoGenericContext *context = NULL;
4361         const char *name, *nspace;
4362         guint icount = 0; 
4363         MonoClass **interfaces;
4364         guint32 field_last, method_last;
4365         guint32 nesting_tokeen;
4366
4367         mono_loader_lock ();
4368
4369         if ((class = mono_internal_hash_table_lookup (&image->class_cache, GUINT_TO_POINTER (type_token)))) {
4370                 mono_loader_unlock ();
4371                 return class;
4372         }
4373
4374         g_assert (mono_metadata_token_table (type_token) == MONO_TABLE_TYPEDEF);
4375
4376         mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
4377         
4378         name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
4379         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
4380
4381         class = mono_image_alloc0 (image, sizeof (MonoClass));
4382
4383         class->name = name;
4384         class->name_space = nspace;
4385
4386         mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
4387
4388         class->image = image;
4389         class->type_token = type_token;
4390         class->flags = cols [MONO_TYPEDEF_FLAGS];
4391
4392         mono_internal_hash_table_insert (&image->class_cache, GUINT_TO_POINTER (type_token), class);
4393
4394         classes_size += sizeof (MonoClass);
4395
4396         /*
4397          * Check whether we're a generic type definition.
4398          */
4399         class->generic_container = mono_metadata_load_generic_params (image, class->type_token, NULL);
4400         if (class->generic_container) {
4401                 class->is_generic = 1;
4402                 class->generic_container->owner.klass = class;
4403                 context = &class->generic_container->context;
4404         }
4405
4406         if (cols [MONO_TYPEDEF_EXTENDS]) {
4407                 guint32 parent_token = mono_metadata_token_from_dor (cols [MONO_TYPEDEF_EXTENDS]);
4408
4409                 if (mono_metadata_token_table (parent_token) == MONO_TABLE_TYPESPEC) {
4410                         /*WARNING: this must satisfy mono_metadata_type_hash*/
4411                         class->this_arg.byref = 1;
4412                         class->this_arg.data.klass = class;
4413                         class->this_arg.type = MONO_TYPE_CLASS;
4414                         class->byval_arg.data.klass = class;
4415                         class->byval_arg.type = MONO_TYPE_CLASS;
4416                 }
4417                 parent = mono_class_get_full (image, parent_token, context);
4418
4419                 if (parent == NULL){
4420                         mono_internal_hash_table_remove (&image->class_cache, GUINT_TO_POINTER (type_token));
4421                         mono_loader_unlock ();
4422                         mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4423                         return NULL;
4424                 }
4425         }
4426
4427         /* do this early so it's available for interfaces in setup_mono_type () */
4428         if ((nesting_tokeen = mono_metadata_nested_in_typedef (image, type_token)))
4429                 class->nested_in = mono_class_create_from_typedef (image, nesting_tokeen);
4430
4431         mono_class_setup_parent (class, parent);
4432
4433         /* uses ->valuetype, which is initialized by mono_class_setup_parent above */
4434         mono_class_setup_mono_type (class);
4435
4436         if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_UNICODE_CLASS)
4437                 class->unicode = 1;
4438
4439 #if PLATFORM_WIN32
4440         if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_AUTO_CLASS)
4441                 class->unicode = 1;
4442 #endif
4443
4444         class->cast_class = class->element_class = class;
4445
4446         if (!class->enumtype) {
4447                 if (!mono_metadata_interfaces_from_typedef_full (
4448                             image, type_token, &interfaces, &icount, FALSE, context)){
4449                         mono_loader_unlock ();
4450                         mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4451                         return NULL;
4452                 }
4453
4454                 class->interfaces = interfaces;
4455                 class->interface_count = icount;
4456                 class->interfaces_inited = 1;
4457         }
4458
4459         /*g_print ("Load class %s\n", name);*/
4460
4461         /*
4462          * Compute the field and method lists
4463          */
4464         class->field.first  = cols [MONO_TYPEDEF_FIELD_LIST] - 1;
4465         class->method.first = cols [MONO_TYPEDEF_METHOD_LIST] - 1;
4466
4467         if (tt->rows > tidx){           
4468                 mono_metadata_decode_row (tt, tidx, cols_next, MONO_TYPEDEF_SIZE);
4469                 field_last  = cols_next [MONO_TYPEDEF_FIELD_LIST] - 1;
4470                 method_last = cols_next [MONO_TYPEDEF_METHOD_LIST] - 1;
4471         } else {
4472                 field_last  = image->tables [MONO_TABLE_FIELD].rows;
4473                 method_last = image->tables [MONO_TABLE_METHOD].rows;
4474         }
4475
4476         if (cols [MONO_TYPEDEF_FIELD_LIST] && 
4477             cols [MONO_TYPEDEF_FIELD_LIST] <= image->tables [MONO_TABLE_FIELD].rows)
4478                 class->field.count = field_last - class->field.first;
4479         else
4480                 class->field.count = 0;
4481
4482         if (cols [MONO_TYPEDEF_METHOD_LIST] <= image->tables [MONO_TABLE_METHOD].rows)
4483                 class->method.count = method_last - class->method.first;
4484         else
4485                 class->method.count = 0;
4486
4487         /* reserve space to store vector pointer in arrays */
4488         if (is_corlib_image (image) && !strcmp (nspace, "System") && !strcmp (name, "Array")) {
4489                 class->instance_size += 2 * sizeof (gpointer);
4490                 g_assert (class->field.count == 0);
4491         }
4492
4493         if (class->enumtype) {
4494                 MonoType *enum_basetype = mono_class_find_enum_basetype (class);
4495                 if (!enum_basetype) {
4496                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4497                         mono_loader_unlock ();
4498                         mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4499                         return NULL;
4500                 }
4501                 class->cast_class = class->element_class = mono_class_from_mono_type (enum_basetype);
4502         }
4503
4504         /*
4505          * If we're a generic type definition, load the constraints.
4506          * We must do this after the class has been constructed to make certain recursive scenarios
4507          * work.
4508          */
4509         if (class->generic_container && !mono_metadata_load_generic_param_constraints_full (image, type_token, class->generic_container)){
4510                 char *class_name = g_strdup_printf("%s.%s", class->name_space, class->name);
4511                 char *error = concat_two_strings_with_zero (class->image, class_name, class->image->assembly_name);
4512                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, error);
4513                 g_free (class_name);
4514                 mono_loader_unlock ();
4515                 mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4516                 return NULL;
4517         }
4518
4519         if (class->image->assembly_name && !strcmp (class->image->assembly_name, "Mono.Simd") && !strcmp (nspace, "Mono.Simd")) {
4520                 if (!strncmp (name, "Vector", 6))
4521                         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");
4522         }
4523
4524         mono_loader_unlock ();
4525
4526         mono_profiler_class_loaded (class, MONO_PROFILE_OK);
4527
4528         return class;
4529 }
4530
4531 /** is klass Nullable<T>? */
4532 gboolean
4533 mono_class_is_nullable (MonoClass *klass)
4534 {
4535        return klass->generic_class != NULL &&
4536                klass->generic_class->container_class == mono_defaults.generic_nullable_class;
4537 }
4538
4539
4540 /** if klass is T? return T */
4541 MonoClass*
4542 mono_class_get_nullable_param (MonoClass *klass)
4543 {
4544        g_assert (mono_class_is_nullable (klass));
4545        return mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [0]);
4546 }
4547
4548 /*
4549  * Create the `MonoClass' for an instantiation of a generic type.
4550  * We only do this if we actually need it.
4551  */
4552 MonoClass*
4553 mono_generic_class_get_class (MonoGenericClass *gclass)
4554 {
4555         MonoClass *klass, *gklass;
4556
4557         mono_loader_lock ();
4558         if (gclass->cached_class) {
4559                 mono_loader_unlock ();
4560                 return gclass->cached_class;
4561         }
4562
4563         gclass->cached_class = g_malloc0 (sizeof (MonoClass));
4564         klass = gclass->cached_class;
4565
4566         gklass = gclass->container_class;
4567
4568         if (gklass->nested_in) {
4569                 /* 
4570                  * FIXME: the nested type context should include everything the
4571                  * nesting context should have, but it may also have additional
4572                  * generic parameters...
4573                  */
4574                 klass->nested_in = mono_class_inflate_generic_class (gklass->nested_in,
4575                                                                                                                          mono_generic_class_get_context (gclass));
4576         }
4577
4578         klass->name = gklass->name;
4579         klass->name_space = gklass->name_space;
4580         
4581         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
4582         
4583         klass->image = gklass->image;
4584         klass->flags = gklass->flags;
4585         klass->type_token = gklass->type_token;
4586         klass->field.count = gklass->field.count;
4587
4588         klass->is_inflated = 1;
4589         klass->generic_class = gclass;
4590
4591         klass->this_arg.type = klass->byval_arg.type = MONO_TYPE_GENERICINST;
4592         klass->this_arg.data.generic_class = klass->byval_arg.data.generic_class = gclass;
4593         klass->this_arg.byref = TRUE;
4594         klass->enumtype = gklass->enumtype;
4595         klass->valuetype = gklass->valuetype;
4596
4597         klass->cast_class = klass->element_class = klass;
4598
4599         if (mono_class_is_nullable (klass))
4600                 klass->cast_class = klass->element_class = mono_class_get_nullable_param (klass);
4601
4602         /*
4603          * We're not interested in the nested classes of a generic instance.
4604          * We use the generic type definition to look for nested classes.
4605          */
4606
4607         if (gklass->parent) {
4608                 klass->parent = mono_class_inflate_generic_class (gklass->parent, mono_generic_class_get_context (gclass));
4609         }
4610
4611         if (klass->parent)
4612                 mono_class_setup_parent (klass, klass->parent);
4613
4614         if (klass->enumtype) {
4615                 klass->cast_class = gklass->cast_class;
4616                 klass->element_class = gklass->element_class;
4617         }
4618
4619         if (gclass->is_dynamic) {
4620                 klass->inited = 1;
4621
4622                 mono_class_setup_supertypes (klass);
4623
4624                 if (klass->enumtype) {
4625                         /*
4626                          * For enums, gklass->fields might not been set, but instance_size etc. is 
4627                          * already set in mono_reflection_create_internal_class (). For non-enums,
4628                          * these will be computed normally in mono_class_layout_fields ().
4629                          */
4630                         klass->instance_size = gklass->instance_size;
4631                         klass->sizes.class_size = gklass->sizes.class_size;
4632                         klass->size_inited = 1;
4633                 }
4634         }
4635
4636         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
4637
4638         inflated_classes ++;
4639         inflated_classes_size += sizeof (MonoClass);
4640         
4641         mono_loader_unlock ();
4642
4643         return klass;
4644 }
4645
4646 static MonoClass*
4647 make_generic_param_class (MonoGenericParam *param, MonoImage *image, gboolean is_mvar, MonoGenericParamInfo *pinfo)
4648 {
4649         MonoClass *klass, **ptr;
4650         int count, pos, i;
4651
4652         if (!image)
4653                 /* FIXME: */
4654                 image = mono_defaults.corlib;
4655
4656         klass = mono_image_alloc0 (image, sizeof (MonoClass));
4657         classes_size += sizeof (MonoClass);
4658
4659         if (pinfo) {
4660                 klass->name = pinfo->name;
4661         } else {
4662                 int n = mono_generic_param_num (param);
4663                 klass->name = mono_image_alloc0 (image, 16);
4664                 sprintf ((char*)klass->name, "%d", n);
4665         }
4666
4667         klass->name_space = "";
4668         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
4669
4670         count = 0;
4671         if (pinfo)
4672                 for (ptr = pinfo->constraints; ptr && *ptr; ptr++, count++)
4673                         ;
4674
4675         pos = 0;
4676         if ((count > 0) && !MONO_CLASS_IS_INTERFACE (pinfo->constraints [0])) {
4677                 klass->parent = pinfo->constraints [0];
4678                 pos++;
4679         } else if (pinfo && pinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT)
4680                 klass->parent = mono_class_from_name (mono_defaults.corlib, "System", "ValueType");
4681         else
4682                 klass->parent = mono_defaults.object_class;
4683
4684
4685         if (count - pos > 0) {
4686                 klass->interface_count = count - pos;
4687                 klass->interfaces = mono_image_alloc0 (image, sizeof (MonoClass *) * (count - pos));
4688                 for (i = pos; i < count; i++)
4689                         klass->interfaces [i - pos] = pinfo->constraints [i];
4690         }
4691
4692         klass->image = image;
4693
4694         klass->inited = TRUE;
4695         klass->cast_class = klass->element_class = klass;
4696         klass->flags = TYPE_ATTRIBUTE_PUBLIC;
4697
4698         klass->this_arg.type = klass->byval_arg.type = is_mvar ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
4699         klass->this_arg.data.generic_param = klass->byval_arg.data.generic_param = param;
4700         klass->this_arg.byref = TRUE;
4701
4702         /* FIXME: shouldn't this be ->type_token? */
4703         klass->sizes.generic_param_token = pinfo ? pinfo->token : 0;
4704
4705         mono_class_setup_supertypes (klass);
4706
4707         return klass;
4708 }
4709
4710 #define FAST_CACHE_SIZE 1024
4711 static MonoClass *var_cache_fast [FAST_CACHE_SIZE];
4712 static MonoClass *mvar_cache_fast [FAST_CACHE_SIZE];
4713 static GHashTable *var_cache_slow;
4714 static GHashTable *mvar_cache_slow;
4715
4716 static MonoClass *
4717 get_anon_gparam_class (MonoGenericParam *param, gboolean is_mvar)
4718 {
4719         int n = mono_generic_param_num (param);
4720         GHashTable *ht;
4721
4722         if (n < FAST_CACHE_SIZE)
4723                 return (is_mvar ? mvar_cache_fast : var_cache_fast) [n];
4724         ht = is_mvar ? mvar_cache_slow : var_cache_slow;
4725         return ht ? g_hash_table_lookup (ht, GINT_TO_POINTER (n)) : NULL;
4726 }
4727
4728 static void
4729 set_anon_gparam_class (MonoGenericParam *param, gboolean is_mvar, MonoClass *klass)
4730 {
4731         int n = mono_generic_param_num (param);
4732         GHashTable *ht;
4733
4734         if (n < FAST_CACHE_SIZE) {
4735                 (is_mvar ? mvar_cache_fast : var_cache_fast) [n] = klass;
4736                 return;
4737         }
4738         ht = is_mvar ? mvar_cache_slow : var_cache_slow;
4739         if (!ht) {
4740                 ht = g_hash_table_new (NULL, NULL);
4741                 if (is_mvar)
4742                         mvar_cache_slow = ht;
4743                 else
4744                         var_cache_slow = ht;
4745         }
4746
4747         g_hash_table_insert (ht, GINT_TO_POINTER (n), klass);
4748 }
4749
4750 /*
4751  * LOCKING: Acquires the loader lock.
4752  */
4753 MonoClass *
4754 mono_class_from_generic_parameter (MonoGenericParam *param, MonoImage *image, gboolean is_mvar)
4755 {
4756         MonoGenericContainer *container = mono_generic_param_owner (param);
4757         MonoGenericParamInfo *pinfo;
4758         MonoClass *klass;
4759
4760         mono_loader_lock ();
4761
4762         if (container) {
4763                 pinfo = mono_generic_param_info (param);
4764                 if (pinfo->pklass) {
4765                         mono_loader_unlock ();
4766                         return pinfo->pklass;
4767                 }
4768         } else {
4769                 pinfo = NULL;
4770                 image = NULL;
4771
4772                 klass = get_anon_gparam_class (param, is_mvar);
4773                 if (klass) {
4774                         mono_loader_unlock ();
4775                         return klass;
4776                 }
4777         }
4778
4779         if (!image && container) {
4780                 if (is_mvar) {
4781                         MonoMethod *method = container->owner.method;
4782                         image = (method && method->klass) ? method->klass->image : NULL;
4783                 } else {
4784                         MonoClass *klass = container->owner.klass;
4785                         // FIXME: 'klass' should not be null
4786                         //        But, monodis creates GenericContainers without associating a owner to it
4787                         image = klass ? klass->image : NULL;
4788                 }
4789         }
4790
4791         klass = make_generic_param_class (param, image, is_mvar, pinfo);
4792
4793         mono_memory_barrier ();
4794
4795         if (container)
4796                 pinfo->pklass = klass;
4797         else
4798                 set_anon_gparam_class (param, is_mvar, klass);
4799
4800         mono_loader_unlock ();
4801
4802         /* FIXME: Should this go inside 'make_generic_param_klass'? */
4803         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
4804
4805         return klass;
4806 }
4807
4808 MonoClass *
4809 mono_ptr_class_get (MonoType *type)
4810 {
4811         MonoClass *result;
4812         MonoClass *el_class;
4813         MonoImage *image;
4814         char *name;
4815
4816         el_class = mono_class_from_mono_type (type);
4817         image = el_class->image;
4818
4819         mono_loader_lock ();
4820
4821         if (!image->ptr_cache)
4822                 image->ptr_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4823
4824         if ((result = g_hash_table_lookup (image->ptr_cache, el_class))) {
4825                 mono_loader_unlock ();
4826                 return result;
4827         }
4828         result = mono_image_alloc0 (image, sizeof (MonoClass));
4829
4830         classes_size += sizeof (MonoClass);
4831
4832         result->parent = NULL; /* no parent for PTR types */
4833         result->name_space = el_class->name_space;
4834         name = g_strdup_printf ("%s*", el_class->name);
4835         result->name = mono_image_strdup (image, name);
4836         g_free (name);
4837
4838         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
4839
4840         result->image = el_class->image;
4841         result->inited = TRUE;
4842         result->flags = TYPE_ATTRIBUTE_CLASS | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
4843         /* Can pointers get boxed? */
4844         result->instance_size = sizeof (gpointer);
4845         result->cast_class = result->element_class = el_class;
4846         result->blittable = TRUE;
4847
4848         result->this_arg.type = result->byval_arg.type = MONO_TYPE_PTR;
4849         result->this_arg.data.type = result->byval_arg.data.type = &result->element_class->byval_arg;
4850         result->this_arg.byref = TRUE;
4851
4852         mono_class_setup_supertypes (result);
4853
4854         g_hash_table_insert (image->ptr_cache, el_class, result);
4855
4856         mono_loader_unlock ();
4857
4858         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
4859
4860         return result;
4861 }
4862
4863 static MonoClass *
4864 mono_fnptr_class_get (MonoMethodSignature *sig)
4865 {
4866         MonoClass *result;
4867         static GHashTable *ptr_hash = NULL;
4868
4869         /* FIXME: These should be allocate from a mempool as well, but which one ? */
4870
4871         mono_loader_lock ();
4872
4873         if (!ptr_hash)
4874                 ptr_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
4875         
4876         if ((result = g_hash_table_lookup (ptr_hash, sig))) {
4877                 mono_loader_unlock ();
4878                 return result;
4879         }
4880         result = g_new0 (MonoClass, 1);
4881
4882         result->parent = NULL; /* no parent for PTR types */
4883         result->name_space = "System";
4884         result->name = "MonoFNPtrFakeClass";
4885
4886         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
4887
4888         result->image = mono_defaults.corlib; /* need to fix... */
4889         result->inited = TRUE;
4890         result->flags = TYPE_ATTRIBUTE_CLASS; /* | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK); */
4891         /* Can pointers get boxed? */
4892         result->instance_size = sizeof (gpointer);
4893         result->cast_class = result->element_class = result;
4894         result->blittable = TRUE;
4895
4896         result->this_arg.type = result->byval_arg.type = MONO_TYPE_FNPTR;
4897         result->this_arg.data.method = result->byval_arg.data.method = sig;
4898         result->this_arg.byref = TRUE;
4899         result->blittable = TRUE;
4900
4901         mono_class_setup_supertypes (result);
4902
4903         g_hash_table_insert (ptr_hash, sig, result);
4904
4905         mono_loader_unlock ();
4906
4907         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
4908
4909         return result;
4910 }
4911
4912 MonoClass *
4913 mono_class_from_mono_type (MonoType *type)
4914 {
4915         switch (type->type) {
4916         case MONO_TYPE_OBJECT:
4917                 return type->data.klass? type->data.klass: mono_defaults.object_class;
4918         case MONO_TYPE_VOID:
4919                 return type->data.klass? type->data.klass: mono_defaults.void_class;
4920         case MONO_TYPE_BOOLEAN:
4921                 return type->data.klass? type->data.klass: mono_defaults.boolean_class;
4922         case MONO_TYPE_CHAR:
4923                 return type->data.klass? type->data.klass: mono_defaults.char_class;
4924         case MONO_TYPE_I1:
4925                 return type->data.klass? type->data.klass: mono_defaults.sbyte_class;
4926         case MONO_TYPE_U1:
4927                 return type->data.klass? type->data.klass: mono_defaults.byte_class;
4928         case MONO_TYPE_I2:
4929                 return type->data.klass? type->data.klass: mono_defaults.int16_class;
4930         case MONO_TYPE_U2:
4931                 return type->data.klass? type->data.klass: mono_defaults.uint16_class;
4932         case MONO_TYPE_I4:
4933                 return type->data.klass? type->data.klass: mono_defaults.int32_class;
4934         case MONO_TYPE_U4:
4935                 return type->data.klass? type->data.klass: mono_defaults.uint32_class;
4936         case MONO_TYPE_I:
4937                 return type->data.klass? type->data.klass: mono_defaults.int_class;
4938         case MONO_TYPE_U:
4939                 return type->data.klass? type->data.klass: mono_defaults.uint_class;
4940         case MONO_TYPE_I8:
4941                 return type->data.klass? type->data.klass: mono_defaults.int64_class;
4942         case MONO_TYPE_U8:
4943                 return type->data.klass? type->data.klass: mono_defaults.uint64_class;
4944         case MONO_TYPE_R4:
4945                 return type->data.klass? type->data.klass: mono_defaults.single_class;
4946         case MONO_TYPE_R8:
4947                 return type->data.klass? type->data.klass: mono_defaults.double_class;
4948         case MONO_TYPE_STRING:
4949                 return type->data.klass? type->data.klass: mono_defaults.string_class;
4950         case MONO_TYPE_TYPEDBYREF:
4951                 return type->data.klass? type->data.klass: mono_defaults.typed_reference_class;
4952         case MONO_TYPE_ARRAY:
4953                 return mono_bounded_array_class_get (type->data.array->eklass, type->data.array->rank, TRUE);
4954         case MONO_TYPE_PTR:
4955                 return mono_ptr_class_get (type->data.type);
4956         case MONO_TYPE_FNPTR:
4957                 return mono_fnptr_class_get (type->data.method);
4958         case MONO_TYPE_SZARRAY:
4959                 return mono_array_class_get (type->data.klass, 1);
4960         case MONO_TYPE_CLASS:
4961         case MONO_TYPE_VALUETYPE:
4962                 return type->data.klass;
4963         case MONO_TYPE_GENERICINST:
4964                 return mono_generic_class_get_class (type->data.generic_class);
4965         case MONO_TYPE_VAR:
4966                 return mono_class_from_generic_parameter (type->data.generic_param, NULL, FALSE);
4967         case MONO_TYPE_MVAR:
4968                 return mono_class_from_generic_parameter (type->data.generic_param, NULL, TRUE);
4969         default:
4970                 g_warning ("mono_class_from_mono_type: implement me 0x%02x\n", type->type);
4971                 g_assert_not_reached ();
4972         }
4973         
4974         return NULL;
4975 }
4976
4977 /**
4978  * mono_type_retrieve_from_typespec
4979  * @image: context where the image is created
4980  * @type_spec:  typespec token
4981  * @context: the generic context used to evaluate generic instantiations in
4982  */
4983 static MonoType *
4984 mono_type_retrieve_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, gboolean *did_inflate)
4985 {
4986         MonoType *t = mono_type_create_from_typespec (image, type_spec);
4987         if (!t)
4988                 return NULL;
4989         if (context && (context->class_inst || context->method_inst)) {
4990                 MonoType *inflated = inflate_generic_type (NULL, t, context);
4991                 if (inflated) {
4992                         t = inflated;
4993                         *did_inflate = TRUE;
4994                 }
4995         }
4996         return t;
4997 }
4998
4999 /**
5000  * mono_class_create_from_typespec
5001  * @image: context where the image is created
5002  * @type_spec:  typespec token
5003  * @context: the generic context used to evaluate generic instantiations in
5004  */
5005 static MonoClass *
5006 mono_class_create_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context)
5007 {
5008         MonoClass *ret;
5009         gboolean inflated = FALSE;
5010         MonoType *t = mono_type_retrieve_from_typespec (image, type_spec, context, &inflated);
5011         if (!t)
5012                 return NULL;
5013         ret = mono_class_from_mono_type (t);
5014         if (inflated)
5015                 mono_metadata_free_type (t);
5016         return ret;
5017 }
5018
5019 /**
5020  * mono_bounded_array_class_get:
5021  * @element_class: element class 
5022  * @rank: the dimension of the array class
5023  * @bounded: whenever the array has non-zero bounds
5024  *
5025  * Returns: a class object describing the array with element type @element_type and 
5026  * dimension @rank. 
5027  */
5028 MonoClass *
5029 mono_bounded_array_class_get (MonoClass *eclass, guint32 rank, gboolean bounded)
5030 {
5031         MonoImage *image;
5032         MonoClass *class;
5033         MonoClass *parent = NULL;
5034         GSList *list, *rootlist = NULL;
5035         int nsize;
5036         char *name;
5037         gboolean corlib_type = FALSE;
5038
5039         g_assert (rank <= 255);
5040
5041         if (rank > 1)
5042                 /* bounded only matters for one-dimensional arrays */
5043                 bounded = FALSE;
5044
5045         image = eclass->image;
5046
5047         if (rank == 1 && !bounded) {
5048                 /* 
5049                  * This case is very frequent not just during compilation because of calls 
5050                  * from mono_class_from_mono_type (), mono_array_new (), 
5051                  * Array:CreateInstance (), etc, so use a separate cache + a separate lock.
5052                  */
5053                 EnterCriticalSection (&image->szarray_cache_lock);
5054                 if (!image->szarray_cache)
5055                         image->szarray_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
5056                 class = g_hash_table_lookup (image->szarray_cache, eclass);
5057                 LeaveCriticalSection (&image->szarray_cache_lock);
5058                 if (class)
5059                         return class;
5060
5061                 mono_loader_lock ();
5062         } else {
5063                 mono_loader_lock ();
5064
5065                 if (!image->array_cache)
5066                         image->array_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
5067
5068                 if ((rootlist = list = g_hash_table_lookup (image->array_cache, eclass))) {
5069                         for (; list; list = list->next) {
5070                                 class = list->data;
5071                                 if ((class->rank == rank) && (class->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
5072                                         mono_loader_unlock ();
5073                                         return class;
5074                                 }
5075                         }
5076                 }
5077         }
5078
5079         /* for the building corlib use System.Array from it */
5080         if (image->assembly && image->assembly->dynamic && image->assembly_name && strcmp (image->assembly_name, "mscorlib") == 0) {
5081                 parent = mono_class_from_name (image, "System", "Array");
5082                 corlib_type = TRUE;
5083         } else {
5084                 parent = mono_defaults.array_class;
5085                 if (!parent->inited)
5086                         mono_class_init (parent);
5087         }
5088
5089         class = mono_image_alloc0 (image, sizeof (MonoClass));
5090
5091         class->image = image;
5092         class->name_space = eclass->name_space;
5093         nsize = strlen (eclass->name);
5094         name = g_malloc (nsize + 2 + rank + 1);
5095         memcpy (name, eclass->name, nsize);
5096         name [nsize] = '[';
5097         if (rank > 1)
5098                 memset (name + nsize + 1, ',', rank - 1);
5099         if (bounded)
5100                 name [nsize + rank] = '*';
5101         name [nsize + rank + bounded] = ']';
5102         name [nsize + rank + bounded + 1] = 0;
5103         class->name = mono_image_strdup (image, name);
5104         g_free (name);
5105
5106         mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
5107
5108         classes_size += sizeof (MonoClass);
5109
5110         class->type_token = 0;
5111         /* all arrays are marked serializable and sealed, bug #42779 */
5112         class->flags = TYPE_ATTRIBUTE_CLASS | TYPE_ATTRIBUTE_SERIALIZABLE | TYPE_ATTRIBUTE_SEALED |
5113                 (eclass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
5114         class->parent = parent;
5115         class->instance_size = mono_class_instance_size (class->parent);
5116
5117         if (eclass->enumtype && !mono_class_enum_basetype (eclass)) {
5118                 if (!eclass->reflection_info || eclass->wastypebuilder) {
5119                         g_warning ("Only incomplete TypeBuilder objects are allowed to be an enum without base_type");
5120                         g_assert (eclass->reflection_info && !eclass->wastypebuilder);
5121                 }
5122                 /* element_size -1 is ok as this is not an instantitable type*/
5123                 class->sizes.element_size = -1;
5124         } else
5125                 class->sizes.element_size = mono_class_array_element_size (eclass);
5126
5127         mono_class_setup_supertypes (class);
5128
5129         if (eclass->generic_class)
5130                 mono_class_init (eclass);
5131         if (!eclass->size_inited)
5132                 mono_class_setup_fields (eclass);
5133         class->has_references = MONO_TYPE_IS_REFERENCE (&eclass->byval_arg) || eclass->has_references? TRUE: FALSE;
5134
5135         class->rank = rank;
5136         
5137         if (eclass->enumtype)
5138                 class->cast_class = eclass->element_class;
5139         else
5140                 class->cast_class = eclass;
5141
5142         class->element_class = eclass;
5143
5144         if ((rank > 1) || bounded) {
5145                 MonoArrayType *at = mono_image_alloc0 (image, sizeof (MonoArrayType));
5146                 class->byval_arg.type = MONO_TYPE_ARRAY;
5147                 class->byval_arg.data.array = at;
5148                 at->eklass = eclass;
5149                 at->rank = rank;
5150                 /* FIXME: complete.... */
5151         } else {
5152                 class->byval_arg.type = MONO_TYPE_SZARRAY;
5153                 class->byval_arg.data.klass = eclass;
5154         }
5155         class->this_arg = class->byval_arg;
5156         class->this_arg.byref = 1;
5157         if (corlib_type) {
5158                 class->inited = 1;
5159         }
5160
5161         class->generic_container = eclass->generic_container;
5162
5163         if (rank == 1 && !bounded) {
5164                 MonoClass *prev_class;
5165
5166                 EnterCriticalSection (&image->szarray_cache_lock);
5167                 prev_class = g_hash_table_lookup (image->szarray_cache, eclass);
5168                 if (prev_class)
5169                         /* Someone got in before us */
5170                         class = prev_class;
5171                 else
5172                         g_hash_table_insert (image->szarray_cache, eclass, class);
5173                 LeaveCriticalSection (&image->szarray_cache_lock);
5174         } else {
5175                 list = g_slist_append (rootlist, class);
5176                 g_hash_table_insert (image->array_cache, eclass, list);
5177         }
5178
5179         mono_loader_unlock ();
5180
5181         mono_profiler_class_loaded (class, MONO_PROFILE_OK);
5182
5183         return class;
5184 }
5185
5186 /**
5187  * mono_array_class_get:
5188  * @element_class: element class 
5189  * @rank: the dimension of the array class
5190  *
5191  * Returns: a class object describing the array with element type @element_type and 
5192  * dimension @rank. 
5193  */
5194 MonoClass *
5195 mono_array_class_get (MonoClass *eclass, guint32 rank)
5196 {
5197         return mono_bounded_array_class_get (eclass, rank, FALSE);
5198 }
5199
5200 /**
5201  * mono_class_instance_size:
5202  * @klass: a class 
5203  * 
5204  * Returns: the size of an object instance
5205  */
5206 gint32
5207 mono_class_instance_size (MonoClass *klass)
5208 {       
5209         if (!klass->size_inited)
5210                 mono_class_init (klass);
5211
5212         return klass->instance_size;
5213 }
5214
5215 /**
5216  * mono_class_min_align:
5217  * @klass: a class 
5218  * 
5219  * Returns: minimm alignment requirements 
5220  */
5221 gint32
5222 mono_class_min_align (MonoClass *klass)
5223 {       
5224         if (!klass->size_inited)
5225                 mono_class_init (klass);
5226
5227         return klass->min_align;
5228 }
5229
5230 /**
5231  * mono_class_value_size:
5232  * @klass: a class 
5233  *
5234  * This function is used for value types, and return the
5235  * space and the alignment to store that kind of value object.
5236  *
5237  * Returns: the size of a value of kind @klass
5238  */
5239 gint32
5240 mono_class_value_size      (MonoClass *klass, guint32 *align)
5241 {
5242         gint32 size;
5243
5244         /* fixme: check disable, because we still have external revereces to
5245          * mscorlib and Dummy Objects 
5246          */
5247         /*g_assert (klass->valuetype);*/
5248
5249         size = mono_class_instance_size (klass) - sizeof (MonoObject);
5250
5251         if (align)
5252                 *align = klass->min_align;
5253
5254         return size;
5255 }
5256
5257 /**
5258  * mono_class_data_size:
5259  * @klass: a class 
5260  * 
5261  * Returns: the size of the static class data
5262  */
5263 gint32
5264 mono_class_data_size (MonoClass *klass)
5265 {       
5266         if (!klass->inited)
5267                 mono_class_init (klass);
5268
5269         /* in arrays, sizes.class_size is unioned with element_size
5270          * and arrays have no static fields
5271          */
5272         if (klass->rank)
5273                 return 0;
5274         return klass->sizes.class_size;
5275 }
5276
5277 /*
5278  * Auxiliary routine to mono_class_get_field
5279  *
5280  * Takes a field index instead of a field token.
5281  */
5282 static MonoClassField *
5283 mono_class_get_field_idx (MonoClass *class, int idx)
5284 {
5285         mono_class_setup_fields_locking (class);
5286
5287         while (class) {
5288                 if (class->image->uncompressed_metadata) {
5289                         /* 
5290                          * class->field.first points to the FieldPtr table, while idx points into the
5291                          * Field table, so we have to do a search.
5292                          */
5293                         /*FIXME this is broken for types with multiple fields with the same name.*/
5294                         const char *name = mono_metadata_string_heap (class->image, mono_metadata_decode_row_col (&class->image->tables [MONO_TABLE_FIELD], idx, MONO_FIELD_NAME));
5295                         int i;
5296
5297                         for (i = 0; i < class->field.count; ++i)
5298                                 if (mono_field_get_name (&class->fields [i]) == name)
5299                                         return &class->fields [i];
5300                         g_assert_not_reached ();
5301                 } else {                        
5302                         if (class->field.count) {
5303                                 if ((idx >= class->field.first) && (idx < class->field.first + class->field.count)){
5304                                         return &class->fields [idx - class->field.first];
5305                                 }
5306                         }
5307                 }
5308                 class = class->parent;
5309         }
5310         return NULL;
5311 }
5312
5313 /**
5314  * mono_class_get_field:
5315  * @class: the class to lookup the field.
5316  * @field_token: the field token
5317  *
5318  * Returns: A MonoClassField representing the type and offset of
5319  * the field, or a NULL value if the field does not belong to this
5320  * class.
5321  */
5322 MonoClassField *
5323 mono_class_get_field (MonoClass *class, guint32 field_token)
5324 {
5325         int idx = mono_metadata_token_index (field_token);
5326
5327         g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
5328
5329         return mono_class_get_field_idx (class, idx - 1);
5330 }
5331
5332 /**
5333  * mono_class_get_field_from_name:
5334  * @klass: the class to lookup the field.
5335  * @name: the field name
5336  *
5337  * Search the class @klass and it's parents for a field with the name @name.
5338  * 
5339  * Returns: the MonoClassField pointer of the named field or NULL
5340  */
5341 MonoClassField *
5342 mono_class_get_field_from_name (MonoClass *klass, const char *name)
5343 {
5344         return mono_class_get_field_from_name_full (klass, name, NULL);
5345 }
5346
5347 /**
5348  * mono_class_get_field_from_name_full:
5349  * @klass: the class to lookup the field.
5350  * @name: the field name
5351  * @type: the type of the fields. This optional.
5352  *
5353  * Search the class @klass and it's parents for a field with the name @name and type @type.
5354  *
5355  * If @klass is an inflated generic type, the type comparison is done with the equivalent field
5356  * of its generic type definition.
5357  *
5358  * Returns: the MonoClassField pointer of the named field or NULL
5359  */
5360 MonoClassField *
5361 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type)
5362 {
5363         int i;
5364
5365         mono_class_setup_fields_locking (klass);
5366         while (klass) {
5367                 for (i = 0; i < klass->field.count; ++i) {
5368                         MonoClassField *field = &klass->fields [i];
5369
5370                         if (strcmp (name, mono_field_get_name (field)) != 0)
5371                                 continue;
5372
5373                         if (type) {
5374                                 MonoType *field_type = mono_metadata_get_corresponding_field_from_generic_type_definition (field)->type;
5375                                 if (!mono_metadata_type_equal_full (type, field_type, TRUE))
5376                                         continue;
5377                         }
5378                         return field;
5379                 }
5380                 klass = klass->parent;
5381         }
5382         return NULL;
5383 }
5384
5385 /**
5386  * mono_class_get_field_token:
5387  * @field: the field we need the token of
5388  *
5389  * Get the token of a field. Note that the tokesn is only valid for the image
5390  * the field was loaded from. Don't use this function for fields in dynamic types.
5391  * 
5392  * Returns: the token representing the field in the image it was loaded from.
5393  */
5394 guint32
5395 mono_class_get_field_token (MonoClassField *field)
5396 {
5397         MonoClass *klass = field->parent;
5398         int i;
5399
5400         mono_class_setup_fields_locking (klass);
5401         while (klass) {
5402                 for (i = 0; i < klass->field.count; ++i) {
5403                         if (&klass->fields [i] == field) {
5404                                 int idx = klass->field.first + i + 1;
5405
5406                                 if (klass->image->uncompressed_metadata)
5407                                         idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_FIELD, idx);
5408                                 return mono_metadata_make_token (MONO_TABLE_FIELD, idx);
5409                         }
5410                 }
5411                 klass = klass->parent;
5412         }
5413
5414         g_assert_not_reached ();
5415         return 0;
5416 }
5417
5418 static int
5419 mono_field_get_index (MonoClassField *field)
5420 {
5421         int index = field - field->parent->fields;
5422
5423         g_assert (index >= 0 && index < field->parent->field.count);
5424
5425         return index;
5426 }
5427
5428 /*
5429  * mono_class_get_field_default_value:
5430  *
5431  * Return the default value of the field as a pointer into the metadata blob.
5432  */
5433 const char*
5434 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type)
5435 {
5436         guint32 cindex;
5437         guint32 constant_cols [MONO_CONSTANT_SIZE];
5438         int field_index;
5439         MonoClass *klass = field->parent;
5440
5441         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT);
5442
5443         if (!klass->ext || !klass->ext->field_def_values) {
5444                 mono_loader_lock ();
5445                 mono_class_alloc_ext (klass);
5446                 if (!klass->ext->field_def_values)
5447                         klass->ext->field_def_values = mono_image_alloc0 (klass->image, sizeof (MonoFieldDefaultValue) * klass->field.count);
5448                 mono_loader_unlock ();
5449         }
5450
5451         field_index = mono_field_get_index (field);
5452                 
5453         if (!klass->ext->field_def_values [field_index].data) {
5454                 cindex = mono_metadata_get_constant_index (field->parent->image, mono_class_get_field_token (field), 0);
5455                 g_assert (cindex);
5456                 g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA));
5457
5458                 mono_metadata_decode_row (&field->parent->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
5459                 klass->ext->field_def_values [field_index].def_type = constant_cols [MONO_CONSTANT_TYPE];
5460                 klass->ext->field_def_values [field_index].data = (gpointer)mono_metadata_blob_heap (field->parent->image, constant_cols [MONO_CONSTANT_VALUE]);
5461         }
5462
5463         *def_type = klass->ext->field_def_values [field_index].def_type;
5464         return klass->ext->field_def_values [field_index].data;
5465 }
5466
5467 guint32
5468 mono_class_get_event_token (MonoEvent *event)
5469 {
5470         MonoClass *klass = event->parent;
5471         int i;
5472
5473         while (klass) {
5474                 if (klass->ext) {
5475                         for (i = 0; i < klass->ext->event.count; ++i) {
5476                                 if (&klass->ext->events [i] == event)
5477                                         return mono_metadata_make_token (MONO_TABLE_EVENT, klass->ext->event.first + i + 1);
5478                         }
5479                 }
5480                 klass = klass->parent;
5481         }
5482
5483         g_assert_not_reached ();
5484         return 0;
5485 }
5486
5487 MonoProperty*
5488 mono_class_get_property_from_name (MonoClass *klass, const char *name)
5489 {
5490         while (klass) {
5491                 MonoProperty* p;
5492                 gpointer iter = NULL;
5493                 while ((p = mono_class_get_properties (klass, &iter))) {
5494                         if (! strcmp (name, p->name))
5495                                 return p;
5496                 }
5497                 klass = klass->parent;
5498         }
5499         return NULL;
5500 }
5501
5502 guint32
5503 mono_class_get_property_token (MonoProperty *prop)
5504 {
5505         MonoClass *klass = prop->parent;
5506         while (klass) {
5507                 MonoProperty* p;
5508                 int i = 0;
5509                 gpointer iter = NULL;
5510                 while ((p = mono_class_get_properties (klass, &iter))) {
5511                         if (&klass->ext->properties [i] == prop)
5512                                 return mono_metadata_make_token (MONO_TABLE_PROPERTY, klass->ext->property.first + i + 1);
5513                         
5514                         i ++;
5515                 }
5516                 klass = klass->parent;
5517         }
5518
5519         g_assert_not_reached ();
5520         return 0;
5521 }
5522
5523 char *
5524 mono_class_name_from_token (MonoImage *image, guint32 type_token)
5525 {
5526         const char *name, *nspace;
5527         if (image->dynamic)
5528                 return g_strdup_printf ("DynamicType 0x%08x", type_token);
5529         
5530         switch (type_token & 0xff000000){
5531         case MONO_TOKEN_TYPE_DEF: {
5532                 guint32 cols [MONO_TYPEDEF_SIZE];
5533                 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
5534                 guint tidx = mono_metadata_token_index (type_token);
5535
5536                 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
5537                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5538                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5539                 if (strlen (nspace) == 0)
5540                         return g_strdup_printf ("%s", name);
5541                 else
5542                         return g_strdup_printf ("%s.%s", nspace, name);
5543         }
5544
5545         case MONO_TOKEN_TYPE_REF: {
5546                 guint32 cols [MONO_TYPEREF_SIZE];
5547                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
5548
5549                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5550                 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
5551                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
5552                 if (strlen (nspace) == 0)
5553                         return g_strdup_printf ("%s", name);
5554                 else
5555                         return g_strdup_printf ("%s.%s", nspace, name);
5556         }
5557                 
5558         case MONO_TOKEN_TYPE_SPEC:
5559                 return g_strdup_printf ("Typespec 0x%08x", type_token);
5560         default:
5561                 g_assert_not_reached ();
5562         }
5563
5564         return NULL;
5565 }
5566
5567 static char *
5568 mono_assembly_name_from_token (MonoImage *image, guint32 type_token)
5569 {
5570         if (image->dynamic)
5571                 return g_strdup_printf ("DynamicAssembly %s", image->name);
5572         
5573         switch (type_token & 0xff000000){
5574         case MONO_TOKEN_TYPE_DEF:
5575                 return mono_stringify_assembly_name (&image->assembly->aname);
5576                 break;
5577         case MONO_TOKEN_TYPE_REF: {
5578                 MonoAssemblyName aname;
5579                 guint32 cols [MONO_TYPEREF_SIZE];
5580                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
5581                 guint32 idx;
5582         
5583                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5584
5585                 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
5586                 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
5587                 case MONO_RESOLTION_SCOPE_MODULE:
5588                         /* FIXME: */
5589                         return g_strdup ("");
5590                 case MONO_RESOLTION_SCOPE_MODULEREF:
5591                         /* FIXME: */
5592                         return g_strdup ("");
5593                 case MONO_RESOLTION_SCOPE_TYPEREF:
5594                         /* FIXME: */
5595                         return g_strdup ("");
5596                 case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
5597                         mono_assembly_get_assemblyref (image, idx - 1, &aname);
5598                         return mono_stringify_assembly_name (&aname);
5599                 default:
5600                         g_assert_not_reached ();
5601                 }
5602                 break;
5603         }
5604         case MONO_TOKEN_TYPE_SPEC:
5605                 /* FIXME: */
5606                 return g_strdup ("");
5607         default:
5608                 g_assert_not_reached ();
5609         }
5610
5611         return NULL;
5612 }
5613
5614 /**
5615  * mono_class_get_full:
5616  * @image: the image where the class resides
5617  * @type_token: the token for the class
5618  * @context: the generic context used to evaluate generic instantiations in
5619  *
5620  * Returns: the MonoClass that represents @type_token in @image
5621  */
5622 MonoClass *
5623 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5624 {
5625         MonoClass *class = NULL;
5626
5627         if (image->dynamic) {
5628                 int table = mono_metadata_token_table (type_token);
5629
5630                 if (table != MONO_TABLE_TYPEDEF && table != MONO_TABLE_TYPEREF && table != MONO_TABLE_TYPESPEC) {
5631                         mono_loader_set_error_bad_image (g_strdup ("Bad type token."));
5632                         return NULL;
5633                 }
5634                 return mono_lookup_dynamic_token (image, type_token, context);
5635         }
5636
5637         switch (type_token & 0xff000000){
5638         case MONO_TOKEN_TYPE_DEF:
5639                 class = mono_class_create_from_typedef (image, type_token);
5640                 break;          
5641         case MONO_TOKEN_TYPE_REF:
5642                 class = mono_class_from_typeref (image, type_token);
5643                 break;
5644         case MONO_TOKEN_TYPE_SPEC:
5645                 class = mono_class_create_from_typespec (image, type_token, context);
5646                 break;
5647         default:
5648                 g_warning ("unknown token type %x", type_token & 0xff000000);
5649                 g_assert_not_reached ();
5650         }
5651
5652         if (!class){
5653                 char *name = mono_class_name_from_token (image, type_token);
5654                 char *assembly = mono_assembly_name_from_token (image, type_token);
5655                 mono_loader_set_error_type_load (name, assembly);
5656         }
5657
5658         return class;
5659 }
5660
5661
5662 /**
5663  * mono_type_get_full:
5664  * @image: the image where the type resides
5665  * @type_token: the token for the type
5666  * @context: the generic context used to evaluate generic instantiations in
5667  *
5668  * This functions exists to fullfill the fact that sometimes it's desirable to have access to the 
5669  * 
5670  * Returns: the MonoType that represents @type_token in @image
5671  */
5672 MonoType *
5673 mono_type_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5674 {
5675         MonoType *type = NULL;
5676         gboolean inflated = FALSE;
5677
5678         //FIXME: this will not fix the very issue for which mono_type_get_full exists -but how to do it then?
5679         if (image->dynamic)
5680                 return mono_class_get_type (mono_lookup_dynamic_token (image, type_token, context));
5681
5682         if ((type_token & 0xff000000) != MONO_TOKEN_TYPE_SPEC) {
5683                 MonoClass *class = mono_class_get_full (image, type_token, context);
5684                 return class ? mono_class_get_type (class) : NULL;
5685         }
5686
5687         type = mono_type_retrieve_from_typespec (image, type_token, context, &inflated);
5688
5689         if (!type) {
5690                 char *name = mono_class_name_from_token (image, type_token);
5691                 char *assembly = mono_assembly_name_from_token (image, type_token);
5692                 mono_loader_set_error_type_load (name, assembly);
5693                 return NULL;
5694         }
5695
5696         if (inflated) {
5697                 MonoType *tmp = type;
5698                 type = mono_class_get_type (mono_class_from_mono_type (type));
5699                 /* FIXME: This is a workaround fo the fact that a typespec token sometimes reference to the generic type definition.
5700                  * A MonoClass::byval_arg of a generic type definion has type CLASS.
5701                  * Some parts of mono create a GENERICINST to reference a generic type definition and this generates confict with byval_arg.
5702                  *
5703                  * The long term solution is to chaise this places and make then set MonoType::type correctly.
5704                  * */
5705                 if (type->type != tmp->type)
5706                         type = tmp;
5707                 else
5708                         mono_metadata_free_type (tmp);
5709         }
5710         return type;
5711 }
5712
5713
5714 MonoClass *
5715 mono_class_get (MonoImage *image, guint32 type_token)
5716 {
5717         return mono_class_get_full (image, type_token, NULL);
5718 }
5719
5720 /**
5721  * mono_image_init_name_cache:
5722  *
5723  *  Initializes the class name cache stored in image->name_cache.
5724  *
5725  * LOCKING: Acquires the corresponding image lock.
5726  */
5727 void
5728 mono_image_init_name_cache (MonoImage *image)
5729 {
5730         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
5731         guint32 cols [MONO_TYPEDEF_SIZE];
5732         const char *name;
5733         const char *nspace;
5734         guint32 i, visib, nspace_index;
5735         GHashTable *name_cache2, *nspace_table;
5736
5737         mono_image_lock (image);
5738
5739         if (image->name_cache) {
5740                 mono_image_unlock (image);
5741                 return;
5742         }
5743
5744         image->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
5745
5746         if (image->dynamic) {
5747                 mono_image_unlock (image);
5748                 return;
5749         }
5750
5751         /* Temporary hash table to avoid lookups in the nspace_table */
5752         name_cache2 = g_hash_table_new (NULL, NULL);
5753
5754         for (i = 1; i <= t->rows; ++i) {
5755                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5756                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5757                 /*
5758                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
5759                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5760                  */
5761                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5762                         continue;
5763                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5764                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5765
5766                 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
5767                 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5768                 if (!nspace_table) {
5769                         nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5770                         g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5771                         g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5772                                                                  nspace_table);
5773                 }
5774                 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
5775         }
5776
5777         /* Load type names from EXPORTEDTYPES table */
5778         {
5779                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5780                 guint32 cols [MONO_EXP_TYPE_SIZE];
5781                 int i;
5782
5783                 for (i = 0; i < t->rows; ++i) {
5784                         mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
5785                         name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
5786                         nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
5787
5788                         nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
5789                         nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5790                         if (!nspace_table) {
5791                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5792                                 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5793                                 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5794                                                                          nspace_table);
5795                         }
5796                         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
5797                 }
5798         }
5799
5800         g_hash_table_destroy (name_cache2);
5801         mono_image_unlock (image);
5802 }
5803
5804 /*FIXME Only dynamic assemblies should allow this operation.*/
5805 void
5806 mono_image_add_to_name_cache (MonoImage *image, const char *nspace, 
5807                                                           const char *name, guint32 index)
5808 {
5809         GHashTable *nspace_table;
5810         GHashTable *name_cache;
5811
5812         mono_image_lock (image);
5813
5814         if (!image->name_cache)
5815                 mono_image_init_name_cache (image);
5816
5817         name_cache = image->name_cache;
5818         if (!(nspace_table = g_hash_table_lookup (name_cache, nspace))) {
5819                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5820                 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
5821         }
5822         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
5823
5824         mono_image_unlock (image);
5825 }
5826
5827 typedef struct {
5828         gconstpointer key;
5829         gpointer value;
5830 } FindUserData;
5831
5832 static void
5833 find_nocase (gpointer key, gpointer value, gpointer user_data)
5834 {
5835         char *name = (char*)key;
5836         FindUserData *data = (FindUserData*)user_data;
5837
5838         if (!data->value && (mono_utf8_strcasecmp (name, (char*)data->key) == 0))
5839                 data->value = value;
5840 }
5841
5842 /**
5843  * mono_class_from_name_case:
5844  * @image: The MonoImage where the type is looked up in
5845  * @name_space: the type namespace
5846  * @name: the type short name.
5847  *
5848  * Obtains a MonoClass with a given namespace and a given name which
5849  * is located in the given MonoImage.   The namespace and name
5850  * lookups are case insensitive.
5851  */
5852 MonoClass *
5853 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
5854 {
5855         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
5856         guint32 cols [MONO_TYPEDEF_SIZE];
5857         const char *n;
5858         const char *nspace;
5859         guint32 i, visib;
5860
5861         if (image->dynamic) {
5862                 guint32 token = 0;
5863                 FindUserData user_data;
5864
5865                 mono_image_lock (image);
5866
5867                 if (!image->name_cache)
5868                         mono_image_init_name_cache (image);
5869
5870                 user_data.key = name_space;
5871                 user_data.value = NULL;
5872                 g_hash_table_foreach (image->name_cache, find_nocase, &user_data);
5873
5874                 if (user_data.value) {
5875                         GHashTable *nspace_table = (GHashTable*)user_data.value;
5876
5877                         user_data.key = name;
5878                         user_data.value = NULL;
5879
5880                         g_hash_table_foreach (nspace_table, find_nocase, &user_data);
5881                         
5882                         if (user_data.value)
5883                                 token = GPOINTER_TO_UINT (user_data.value);
5884                 }
5885
5886                 mono_image_unlock (image);
5887                 
5888                 if (token)
5889                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | token);
5890                 else
5891                         return NULL;
5892
5893         }
5894
5895         /* add a cache if needed */
5896         for (i = 1; i <= t->rows; ++i) {
5897                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5898                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5899                 /*
5900                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
5901                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5902                  */
5903                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5904                         continue;
5905                 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5906                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5907                 if (mono_utf8_strcasecmp (n, name) == 0 && mono_utf8_strcasecmp (nspace, name_space) == 0)
5908                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | i);
5909         }
5910         return NULL;
5911 }
5912
5913 static MonoClass*
5914 return_nested_in (MonoClass *class, char *nested)
5915 {
5916         MonoClass *found;
5917         char *s = strchr (nested, '/');
5918         gpointer iter = NULL;
5919
5920         if (s) {
5921                 *s = 0;
5922                 s++;
5923         }
5924
5925         while ((found = mono_class_get_nested_types (class, &iter))) {
5926                 if (strcmp (found->name, nested) == 0) {
5927                         if (s)
5928                                 return return_nested_in (found, s);
5929                         return found;
5930                 }
5931         }
5932         return NULL;
5933 }
5934
5935 static MonoClass*
5936 search_modules (MonoImage *image, const char *name_space, const char *name)
5937 {
5938         MonoTableInfo *file_table = &image->tables [MONO_TABLE_FILE];
5939         MonoImage *file_image;
5940         MonoClass *class;
5941         int i;
5942
5943         /* 
5944          * The EXPORTEDTYPES table only contains public types, so have to search the
5945          * modules as well.
5946          * Note: image->modules contains the contents of the MODULEREF table, while
5947          * the real module list is in the FILE table.
5948          */
5949         for (i = 0; i < file_table->rows; i++) {
5950                 guint32 cols [MONO_FILE_SIZE];
5951                 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
5952                 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
5953                         continue;
5954
5955                 file_image = mono_image_load_file_for_image (image, i + 1);
5956                 if (file_image) {
5957                         class = mono_class_from_name (file_image, name_space, name);
5958                         if (class)
5959                                 return class;
5960                 }
5961         }
5962
5963         return NULL;
5964 }
5965
5966 /**
5967  * mono_class_from_name:
5968  * @image: The MonoImage where the type is looked up in
5969  * @name_space: the type namespace
5970  * @name: the type short name.
5971  *
5972  * Obtains a MonoClass with a given namespace and a given name which
5973  * is located in the given MonoImage.   
5974  */
5975 MonoClass *
5976 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
5977 {
5978         GHashTable *nspace_table;
5979         MonoImage *loaded_image;
5980         guint32 token = 0;
5981         int i;
5982         MonoClass *class;
5983         char *nested;
5984         char buf [1024];
5985
5986         if ((nested = strchr (name, '/'))) {
5987                 int pos = nested - name;
5988                 int len = strlen (name);
5989                 if (len > 1023)
5990                         return NULL;
5991                 memcpy (buf, name, len + 1);
5992                 buf [pos] = 0;
5993                 nested = buf + pos + 1;
5994                 name = buf;
5995         }
5996
5997         if (get_class_from_name) {
5998                 gboolean res = get_class_from_name (image, name_space, name, &class);
5999                 if (res) {
6000                         if (!class)
6001                                 class = search_modules (image, name_space, name);
6002                         if (nested)
6003                                 return class ? return_nested_in (class, nested) : NULL;
6004                         else
6005                                 return class;
6006                 }
6007         }
6008
6009         mono_image_lock (image);
6010
6011         if (!image->name_cache)
6012                 mono_image_init_name_cache (image);
6013
6014         nspace_table = g_hash_table_lookup (image->name_cache, name_space);
6015
6016         if (nspace_table)
6017                 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
6018
6019         mono_image_unlock (image);
6020
6021         if (!token && image->dynamic && image->modules) {
6022                 /* Search modules as well */
6023                 for (i = 0; i < image->module_count; ++i) {
6024                         MonoImage *module = image->modules [i];
6025
6026                         class = mono_class_from_name (module, name_space, name);
6027                         if (class)
6028                                 return class;
6029                 }
6030         }
6031
6032         if (!token) {
6033                 class = search_modules (image, name_space, name);
6034                 if (class)
6035                         return class;
6036         }
6037
6038         if (!token)
6039                 return NULL;
6040
6041         if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
6042                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
6043                 guint32 cols [MONO_EXP_TYPE_SIZE];
6044                 guint32 idx, impl;
6045
6046                 idx = mono_metadata_token_index (token);
6047
6048                 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
6049
6050                 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
6051                 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
6052                         loaded_image = mono_assembly_load_module (image->assembly, impl >> MONO_IMPLEMENTATION_BITS);
6053                         if (!loaded_image)
6054                                 return NULL;
6055                         class = mono_class_from_name (loaded_image, name_space, name);
6056                         if (nested)
6057                                 return return_nested_in (class, nested);
6058                         return class;
6059                 } else if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_ASSEMBLYREF) {
6060                         guint32 assembly_idx;
6061
6062                         assembly_idx = impl >> MONO_IMPLEMENTATION_BITS;
6063
6064                         mono_assembly_load_reference (image, assembly_idx - 1);
6065                         g_assert (image->references [assembly_idx - 1]);
6066                         if (image->references [assembly_idx - 1] == (gpointer)-1)
6067                                 return NULL;                    
6068                         else
6069                                 /* FIXME: Cycle detection */
6070                                 return mono_class_from_name (image->references [assembly_idx - 1]->image, name_space, name);
6071                 } else {
6072                         g_error ("not yet implemented");
6073                 }
6074         }
6075
6076         token = MONO_TOKEN_TYPE_DEF | token;
6077
6078         class = mono_class_get (image, token);
6079         if (nested)
6080                 return return_nested_in (class, nested);
6081         return class;
6082 }
6083
6084 gboolean
6085 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc, 
6086                            gboolean check_interfaces)
6087 {
6088         g_assert (klassc->idepth > 0);
6089         if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
6090                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, klassc->interface_id))
6091                         return TRUE;
6092         } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
6093                 int i;
6094
6095                 for (i = 0; i < klass->interface_count; i ++) {
6096                         MonoClass *ic =  klass->interfaces [i];
6097                         if (ic == klassc)
6098                                 return TRUE;
6099                 }
6100         } else {
6101                 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
6102                         return TRUE;
6103         }
6104
6105         /* 
6106          * MS.NET thinks interfaces are a subclass of Object, so we think it as
6107          * well.
6108          */
6109         if (klassc == mono_defaults.object_class)
6110                 return TRUE;
6111
6112         return FALSE;
6113 }
6114
6115 static gboolean
6116 mono_class_has_variant_generic_params (MonoClass *klass)
6117 {
6118         int i;
6119         MonoGenericContainer *container;
6120
6121         if (!klass->generic_class)
6122                 return FALSE;
6123
6124         container = klass->generic_class->container_class->generic_container;
6125
6126         for (i = 0; i < container->type_argc; ++i)
6127                 if (mono_generic_container_get_param_info (container, i)->flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT))
6128                         return TRUE;
6129
6130         return FALSE;
6131 }
6132
6133 /**
6134  * mono_class_is_assignable_from:
6135  * @klass: the class to be assigned to
6136  * @oklass: the source class
6137  *
6138  * Return: true if an instance of object oklass can be assigned to an
6139  * instance of object @klass
6140  */
6141 gboolean
6142 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
6143 {
6144         if (!klass->inited)
6145                 mono_class_init (klass);
6146
6147         if (!oklass->inited)
6148                 mono_class_init (oklass);
6149
6150         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
6151                 return klass == oklass;
6152
6153         if (MONO_CLASS_IS_INTERFACE (klass)) {
6154                 if ((oklass->byval_arg.type == MONO_TYPE_VAR) || (oklass->byval_arg.type == MONO_TYPE_MVAR))
6155                         return FALSE;
6156
6157                 /* interface_offsets might not be set for dynamic classes */
6158                 if (oklass->reflection_info && !oklass->interface_bitmap)
6159                         /* 
6160                          * oklass might be a generic type parameter but they have 
6161                          * interface_offsets set.
6162                          */
6163                         return mono_reflection_call_is_assignable_to (oklass, klass);
6164                 if (!oklass->interface_bitmap)
6165                         /* Happens with generic instances of not-yet created dynamic types */
6166                         return FALSE;
6167                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (oklass, klass->interface_id))
6168                         return TRUE;
6169
6170                 if (mono_class_has_variant_generic_params (klass)) {
6171                         if (oklass->generic_class) {
6172                                 int i;
6173                                 gboolean match = FALSE;
6174                                 MonoClass *container_class1 = klass->generic_class->container_class;
6175                                 MonoClass *container_class2 = oklass->generic_class->container_class;
6176
6177                                 /* 
6178                                  * Check whenever the generic definition of oklass implements the 
6179                                  * generic definition of klass. The IMPLEMENTS_INTERFACE stuff is not usable
6180                                  * here since the relevant tables are not set up.
6181                                  */
6182                                 for (i = 0; i < container_class2->interface_offsets_count; ++i)
6183                                         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)))
6184                                                 match = TRUE;
6185
6186                                 if (match) {
6187                                         MonoGenericContainer *container;
6188
6189                                         container = klass->generic_class->container_class->generic_container;
6190
6191                                         match = TRUE;
6192                                         for (i = 0; i < container->type_argc; ++i) {
6193                                                 MonoClass *param1_class = mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [i]);
6194                                                 MonoClass *param2_class = mono_class_from_mono_type (oklass->generic_class->context.class_inst->type_argv [i]);
6195
6196                                                 if (param1_class->valuetype != param2_class->valuetype) {
6197                                                         match = FALSE;
6198                                                         break;
6199                                                 }
6200                                                 /*
6201                                                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
6202                                                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
6203                                                  */
6204                                                 if (param1_class != param2_class) {
6205                                                         if ((mono_generic_container_get_param_info (container, i)->flags & MONO_GEN_PARAM_VARIANT) && mono_class_is_assignable_from (param1_class, param2_class))
6206                                                                 ;
6207                                                         else if (((mono_generic_container_get_param_info (container, i)->flags & MONO_GEN_PARAM_COVARIANT) && mono_class_is_assignable_from (param2_class, param1_class)))
6208                                                                 ;
6209                                                         else {
6210                                                                 match = FALSE;
6211                                                                 break;
6212                                                         }
6213                                                 }
6214                                         }
6215
6216                                         if (match)
6217                                                 return TRUE;
6218                                 }
6219                         }
6220                 }
6221         } else if (klass->rank) {
6222                 MonoClass *eclass, *eoclass;
6223
6224                 if (oklass->rank != klass->rank)
6225                         return FALSE;
6226
6227                 /* vectors vs. one dimensional arrays */
6228                 if (oklass->byval_arg.type != klass->byval_arg.type)
6229                         return FALSE;
6230
6231                 eclass = klass->cast_class;
6232                 eoclass = oklass->cast_class;
6233
6234                 /* 
6235                  * a is b does not imply a[] is b[] when a is a valuetype, and
6236                  * b is a reference type.
6237                  */
6238
6239                 if (eoclass->valuetype) {
6240                         if ((eclass == mono_defaults.enum_class) || 
6241                                 (eclass == mono_defaults.enum_class->parent) ||
6242                                 (eclass == mono_defaults.object_class))
6243                                 return FALSE;
6244                 }
6245
6246                 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
6247         } else if (mono_class_is_nullable (klass)) {
6248                 if (mono_class_is_nullable (oklass))
6249                         return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
6250                 else
6251                         return mono_class_is_assignable_from (klass->cast_class, oklass);
6252         } else if (klass == mono_defaults.object_class)
6253                 return TRUE;
6254
6255         return mono_class_has_parent (oklass, klass);
6256 }       
6257
6258 /*Check if @candidate implements the interface @target*/
6259 static gboolean
6260 mono_class_implement_interface_slow (MonoClass *target, MonoClass *candidate)
6261 {
6262         int i;
6263
6264         do {
6265                 if (candidate == target)
6266                         return TRUE;
6267
6268                 /*A TypeBuilder can have more interfaces on tb->interfaces than on candidate->interfaces*/
6269                 if (candidate->image->dynamic && !candidate->wastypebuilder) {
6270                         MonoReflectionTypeBuilder *tb = candidate->reflection_info;
6271                         int j;
6272                         if (tb->interfaces) {
6273                                 for (j = mono_array_length (tb->interfaces) - 1; j >= 0; --j) {
6274                                         MonoReflectionType *iface = mono_array_get (tb->interfaces, MonoReflectionType*, j);
6275                                         MonoClass *iface_class = mono_class_from_mono_type (iface->type);
6276                                         if (iface_class == target || mono_class_implement_interface_slow (target, iface_class))
6277                                                 return TRUE;
6278                                 }
6279                         }
6280                 } else {
6281                         /*setup_interfaces don't mono_class_init anything*/
6282                         mono_class_setup_interfaces (candidate);
6283                         for (i = 0; i < candidate->interface_count; ++i) {
6284                                 if (candidate->interfaces [i] == target || mono_class_implement_interface_slow (target, candidate->interfaces [i]))
6285                                         return TRUE;
6286                         }
6287                 }
6288                 candidate = candidate->parent;
6289         } while (candidate);
6290
6291         return FALSE;
6292 }
6293
6294 /*
6295  * Check if @oklass can be assigned to @klass.
6296  * This function does the same as mono_class_is_assignable_from but is safe to be used from mono_class_init context.
6297  */
6298 gboolean
6299 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate)
6300 {
6301         if (candidate == target)
6302                 return TRUE;
6303         if (target == mono_defaults.object_class)
6304                 return TRUE;
6305
6306         /*setup_supertypes don't mono_class_init anything */
6307         mono_class_setup_supertypes (candidate);
6308         mono_class_setup_supertypes (target);
6309
6310         if (mono_class_has_parent (candidate, target))
6311                 return TRUE;
6312
6313         /*If target is not an interface there is no need to check them.*/
6314         if (!MONO_CLASS_IS_INTERFACE (target))
6315                         return FALSE;
6316         return mono_class_implement_interface_slow (target, candidate);
6317 }
6318
6319 /**
6320  * mono_class_get_cctor:
6321  * @klass: A MonoClass pointer
6322  *
6323  * Returns: the static constructor of @klass if it exists, NULL otherwise.
6324  */
6325 MonoMethod*
6326 mono_class_get_cctor (MonoClass *klass)
6327 {
6328         MonoCachedClassInfo cached_info;
6329
6330         if (!klass->has_cctor)
6331                 return NULL;
6332
6333         if (mono_class_get_cached_class_info (klass, &cached_info))
6334                 return mono_get_method (klass->image, cached_info.cctor_token, klass);
6335
6336         if (klass->generic_class && !klass->methods)
6337                 return mono_class_get_inflated_method (klass, mono_class_get_cctor (klass->generic_class->container_class));
6338
6339         return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
6340 }
6341
6342 /**
6343  * mono_class_get_finalizer:
6344  * @klass: The MonoClass pointer
6345  *
6346  * Returns: the finalizer method of @klass if it exists, NULL otherwise.
6347  */
6348 MonoMethod*
6349 mono_class_get_finalizer (MonoClass *klass)
6350 {
6351         MonoCachedClassInfo cached_info;
6352
6353         if (!klass->inited)
6354                 mono_class_init (klass);
6355         if (!klass->has_finalize)
6356                 return NULL;
6357
6358         if (mono_class_get_cached_class_info (klass, &cached_info))
6359                 return mono_get_method (cached_info.finalize_image, cached_info.finalize_token, NULL);
6360         else {
6361                 mono_class_setup_vtable (klass);
6362                 return klass->vtable [finalize_slot];
6363         }
6364 }
6365
6366 /**
6367  * mono_class_needs_cctor_run:
6368  * @klass: the MonoClass pointer
6369  * @caller: a MonoMethod describing the caller
6370  *
6371  * Determines whenever the class has a static constructor and whenever it
6372  * needs to be called when executing CALLER.
6373  */
6374 gboolean
6375 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
6376 {
6377         MonoMethod *method;
6378
6379         method = mono_class_get_cctor (klass);
6380         if (method)
6381                 return (method == caller) ? FALSE : TRUE;
6382         else
6383                 return FALSE;
6384 }
6385
6386 /**
6387  * mono_class_array_element_size:
6388  * @klass: 
6389  *
6390  * Returns: the number of bytes an element of type @klass
6391  * uses when stored into an array.
6392  */
6393 gint32
6394 mono_class_array_element_size (MonoClass *klass)
6395 {
6396         MonoType *type = &klass->byval_arg;
6397         
6398 handle_enum:
6399         switch (type->type) {
6400         case MONO_TYPE_I1:
6401         case MONO_TYPE_U1:
6402         case MONO_TYPE_BOOLEAN:
6403                 return 1;
6404         case MONO_TYPE_I2:
6405         case MONO_TYPE_U2:
6406         case MONO_TYPE_CHAR:
6407                 return 2;
6408         case MONO_TYPE_I4:
6409         case MONO_TYPE_U4:
6410         case MONO_TYPE_R4:
6411                 return 4;
6412         case MONO_TYPE_I:
6413         case MONO_TYPE_U:
6414         case MONO_TYPE_PTR:
6415         case MONO_TYPE_CLASS:
6416         case MONO_TYPE_STRING:
6417         case MONO_TYPE_OBJECT:
6418         case MONO_TYPE_SZARRAY:
6419         case MONO_TYPE_ARRAY: 
6420         case MONO_TYPE_VAR:
6421         case MONO_TYPE_MVAR:   
6422                 return sizeof (gpointer);
6423         case MONO_TYPE_I8:
6424         case MONO_TYPE_U8:
6425         case MONO_TYPE_R8:
6426                 return 8;
6427         case MONO_TYPE_VALUETYPE:
6428                 if (type->data.klass->enumtype) {
6429                         type = mono_class_enum_basetype (type->data.klass);
6430                         klass = klass->element_class;
6431                         goto handle_enum;
6432                 }
6433                 return mono_class_instance_size (klass) - sizeof (MonoObject);
6434         case MONO_TYPE_GENERICINST:
6435                 type = &type->data.generic_class->container_class->byval_arg;
6436                 goto handle_enum;
6437
6438         case MONO_TYPE_VOID:
6439                 return 0;
6440                 
6441         default:
6442                 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
6443         }
6444         return -1;
6445 }
6446
6447 /**
6448  * mono_array_element_size:
6449  * @ac: pointer to a #MonoArrayClass
6450  *
6451  * Returns: the size of single array element.
6452  */
6453 gint32
6454 mono_array_element_size (MonoClass *ac)
6455 {
6456         g_assert (ac->rank);
6457         return ac->sizes.element_size;
6458 }
6459
6460 gpointer
6461 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
6462               MonoGenericContext *context)
6463 {
6464         if (image->dynamic) {
6465                 MonoClass *tmp_handle_class;
6466                 gpointer obj = mono_lookup_dynamic_token_class (image, token, TRUE, &tmp_handle_class, context);
6467
6468                 g_assert (tmp_handle_class);
6469                 if (handle_class)
6470                         *handle_class = tmp_handle_class;
6471
6472                 if (tmp_handle_class == mono_defaults.typehandle_class)
6473                         return &((MonoClass*)obj)->byval_arg;
6474                 else
6475                         return obj;
6476         }
6477
6478         switch (token & 0xff000000) {
6479         case MONO_TOKEN_TYPE_DEF:
6480         case MONO_TOKEN_TYPE_REF:
6481         case MONO_TOKEN_TYPE_SPEC: {
6482                 MonoType *type;
6483                 if (handle_class)
6484                         *handle_class = mono_defaults.typehandle_class;
6485                 type = mono_type_get_full (image, token, context);
6486                 if (!type)
6487                         return NULL;
6488                 mono_class_init (mono_class_from_mono_type (type));
6489                 /* We return a MonoType* as handle */
6490                 return type;
6491         }
6492         case MONO_TOKEN_FIELD_DEF: {
6493                 MonoClass *class;
6494                 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
6495                 if (handle_class)
6496                         *handle_class = mono_defaults.fieldhandle_class;
6497                 class = mono_class_get_full (image, MONO_TOKEN_TYPE_DEF | type, context);
6498                 if (!class)
6499                         return NULL;
6500                 mono_class_init (class);
6501                 return mono_class_get_field (class, token);
6502         }
6503         case MONO_TOKEN_METHOD_DEF:
6504         case MONO_TOKEN_METHOD_SPEC: {
6505                 MonoMethod *meth;
6506                 meth = mono_get_method_full (image, token, NULL, context);
6507                 if (handle_class)
6508                         *handle_class = mono_defaults.methodhandle_class;
6509                 return meth;
6510         }
6511         case MONO_TOKEN_MEMBER_REF: {
6512                 guint32 cols [MONO_MEMBERREF_SIZE];
6513                 const char *sig;
6514                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
6515                 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
6516                 mono_metadata_decode_blob_size (sig, &sig);
6517                 if (*sig == 0x6) { /* it's a field */
6518                         MonoClass *klass;
6519                         MonoClassField *field;
6520                         field = mono_field_from_token (image, token, &klass, context);
6521                         if (handle_class)
6522                                 *handle_class = mono_defaults.fieldhandle_class;
6523                         return field;
6524                 } else {
6525                         MonoMethod *meth;
6526                         meth = mono_get_method_full (image, token, NULL, context);
6527                         if (handle_class)
6528                                 *handle_class = mono_defaults.methodhandle_class;
6529                         return meth;
6530                 }
6531         }
6532         default:
6533                 g_warning ("Unknown token 0x%08x in ldtoken", token);
6534                 break;
6535         }
6536         return NULL;
6537 }
6538
6539 /**
6540  * This function might need to call runtime functions so it can't be part
6541  * of the metadata library.
6542  */
6543 static MonoLookupDynamicToken lookup_dynamic = NULL;
6544
6545 void
6546 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func)
6547 {
6548         lookup_dynamic = func;
6549 }
6550
6551 gpointer
6552 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context)
6553 {
6554         MonoClass *handle_class;
6555
6556         return lookup_dynamic (image, token, TRUE, &handle_class, context);
6557 }
6558
6559 gpointer
6560 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context)
6561 {
6562         return lookup_dynamic (image, token, valid_token, handle_class, context);
6563 }
6564
6565 static MonoGetCachedClassInfo get_cached_class_info = NULL;
6566
6567 void
6568 mono_install_get_cached_class_info (MonoGetCachedClassInfo func)
6569 {
6570         get_cached_class_info = func;
6571 }
6572
6573 static gboolean
6574 mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
6575 {
6576         if (!get_cached_class_info)
6577                 return FALSE;
6578         else
6579                 return get_cached_class_info (klass, res);
6580 }
6581
6582 void
6583 mono_install_get_class_from_name (MonoGetClassFromName func)
6584 {
6585         get_class_from_name = func;
6586 }
6587
6588 MonoImage*
6589 mono_class_get_image (MonoClass *klass)
6590 {
6591         return klass->image;
6592 }
6593
6594 /**
6595  * mono_class_get_element_class:
6596  * @klass: the MonoClass to act on
6597  *
6598  * Returns: the element class of an array or an enumeration.
6599  */
6600 MonoClass*
6601 mono_class_get_element_class (MonoClass *klass)
6602 {
6603         return klass->element_class;
6604 }
6605
6606 /**
6607  * mono_class_is_valuetype:
6608  * @klass: the MonoClass to act on
6609  *
6610  * Returns: true if the MonoClass represents a ValueType.
6611  */
6612 gboolean
6613 mono_class_is_valuetype (MonoClass *klass)
6614 {
6615         return klass->valuetype;
6616 }
6617
6618 /**
6619  * mono_class_is_enum:
6620  * @klass: the MonoClass to act on
6621  *
6622  * Returns: true if the MonoClass represents an enumeration.
6623  */
6624 gboolean
6625 mono_class_is_enum (MonoClass *klass)
6626 {
6627         return klass->enumtype;
6628 }
6629
6630 /**
6631  * mono_class_enum_basetype:
6632  * @klass: the MonoClass to act on
6633  *
6634  * Returns: the underlying type representation for an enumeration.
6635  */
6636 MonoType*
6637 mono_class_enum_basetype (MonoClass *klass)
6638 {
6639         if (klass->element_class == klass)
6640                 /* SRE */
6641                 return NULL;
6642         else
6643                 return &klass->element_class->byval_arg;
6644 }
6645
6646 /**
6647  * mono_class_get_parent
6648  * @klass: the MonoClass to act on
6649  *
6650  * Returns: the parent class for this class.
6651  */
6652 MonoClass*
6653 mono_class_get_parent (MonoClass *klass)
6654 {
6655         return klass->parent;
6656 }
6657
6658 /**
6659  * mono_class_get_nesting_type;
6660  * @klass: the MonoClass to act on
6661  *
6662  * Returns: the container type where this type is nested or NULL if this type is not a nested type.
6663  */
6664 MonoClass*
6665 mono_class_get_nesting_type (MonoClass *klass)
6666 {
6667         return klass->nested_in;
6668 }
6669
6670 /**
6671  * mono_class_get_rank:
6672  * @klass: the MonoClass to act on
6673  *
6674  * Returns: the rank for the array (the number of dimensions).
6675  */
6676 int
6677 mono_class_get_rank (MonoClass *klass)
6678 {
6679         return klass->rank;
6680 }
6681
6682 /**
6683  * mono_class_get_flags:
6684  * @klass: the MonoClass to act on
6685  *
6686  * The type flags from the TypeDef table from the metadata.
6687  * see the TYPE_ATTRIBUTE_* definitions on tabledefs.h for the
6688  * different values.
6689  *
6690  * Returns: the flags from the TypeDef table.
6691  */
6692 guint32
6693 mono_class_get_flags (MonoClass *klass)
6694 {
6695         return klass->flags;
6696 }
6697
6698 /**
6699  * mono_class_get_name
6700  * @klass: the MonoClass to act on
6701  *
6702  * Returns: the name of the class.
6703  */
6704 const char*
6705 mono_class_get_name (MonoClass *klass)
6706 {
6707         return klass->name;
6708 }
6709
6710 /**
6711  * mono_class_get_namespace:
6712  * @klass: the MonoClass to act on
6713  *
6714  * Returns: the namespace of the class.
6715  */
6716 const char*
6717 mono_class_get_namespace (MonoClass *klass)
6718 {
6719         return klass->name_space;
6720 }
6721
6722 /**
6723  * mono_class_get_type:
6724  * @klass: the MonoClass to act on
6725  *
6726  * This method returns the internal Type representation for the class.
6727  *
6728  * Returns: the MonoType from the class.
6729  */
6730 MonoType*
6731 mono_class_get_type (MonoClass *klass)
6732 {
6733         return &klass->byval_arg;
6734 }
6735
6736 /**
6737  * mono_class_get_type_token
6738  * @klass: the MonoClass to act on
6739  *
6740  * This method returns type token for the class.
6741  *
6742  * Returns: the type token for the class.
6743  */
6744 guint32
6745 mono_class_get_type_token (MonoClass *klass)
6746 {
6747   return klass->type_token;
6748 }
6749
6750 /**
6751  * mono_class_get_byref_type:
6752  * @klass: the MonoClass to act on
6753  *
6754  * 
6755  */
6756 MonoType*
6757 mono_class_get_byref_type (MonoClass *klass)
6758 {
6759         return &klass->this_arg;
6760 }
6761
6762 /**
6763  * mono_class_num_fields:
6764  * @klass: the MonoClass to act on
6765  *
6766  * Returns: the number of static and instance fields in the class.
6767  */
6768 int
6769 mono_class_num_fields (MonoClass *klass)
6770 {
6771         return klass->field.count;
6772 }
6773
6774 /**
6775  * mono_class_num_methods:
6776  * @klass: the MonoClass to act on
6777  *
6778  * Returns: the number of methods in the class.
6779  */
6780 int
6781 mono_class_num_methods (MonoClass *klass)
6782 {
6783         return klass->method.count;
6784 }
6785
6786 /**
6787  * mono_class_num_properties
6788  * @klass: the MonoClass to act on
6789  *
6790  * Returns: the number of properties in the class.
6791  */
6792 int
6793 mono_class_num_properties (MonoClass *klass)
6794 {
6795         mono_class_setup_properties (klass);
6796
6797         return klass->ext->property.count;
6798 }
6799
6800 /**
6801  * mono_class_num_events:
6802  * @klass: the MonoClass to act on
6803  *
6804  * Returns: the number of events in the class.
6805  */
6806 int
6807 mono_class_num_events (MonoClass *klass)
6808 {
6809         mono_class_setup_events (klass);
6810
6811         return klass->ext->event.count;
6812 }
6813
6814 /**
6815  * mono_class_get_fields:
6816  * @klass: the MonoClass to act on
6817  *
6818  * This routine is an iterator routine for retrieving the fields in a class.
6819  *
6820  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6821  * iterate over all of the elements.  When no more values are
6822  * available, the return value is NULL.
6823  *
6824  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
6825  */
6826 MonoClassField*
6827 mono_class_get_fields (MonoClass* klass, gpointer *iter)
6828 {
6829         MonoClassField* field;
6830         if (!iter)
6831                 return NULL;
6832         if (!*iter) {
6833                 mono_class_setup_fields_locking (klass);
6834                 if (klass->exception_type)
6835                         return NULL;
6836                 /* start from the first */
6837                 if (klass->field.count) {
6838                         return *iter = &klass->fields [0];
6839                 } else {
6840                         /* no fields */
6841                         return NULL;
6842                 }
6843         }
6844         field = *iter;
6845         field++;
6846         if (field < &klass->fields [klass->field.count]) {
6847                 return *iter = field;
6848         }
6849         return NULL;
6850 }
6851
6852 /**
6853  * mono_class_get_methods
6854  * @klass: the MonoClass to act on
6855  *
6856  * This routine is an iterator routine for retrieving the fields in a class.
6857  *
6858  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6859  * iterate over all of the elements.  When no more values are
6860  * available, the return value is NULL.
6861  *
6862  * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
6863  */
6864 MonoMethod*
6865 mono_class_get_methods (MonoClass* klass, gpointer *iter)
6866 {
6867         MonoMethod** method;
6868         if (!iter)
6869                 return NULL;
6870         if (!klass->inited)
6871                 mono_class_init (klass);
6872         if (!*iter) {
6873                 mono_class_setup_methods (klass);
6874                 /* start from the first */
6875                 if (klass->method.count) {
6876                         *iter = &klass->methods [0];
6877                         return klass->methods [0];
6878                 } else {
6879                         /* no method */
6880                         return NULL;
6881                 }
6882         }
6883         method = *iter;
6884         method++;
6885         if (method < &klass->methods [klass->method.count]) {
6886                 *iter = method;
6887                 return *method;
6888         }
6889         return NULL;
6890 }
6891
6892 /*
6893  * mono_class_get_virtual_methods:
6894  *
6895  *   Iterate over the virtual methods of KLASS.
6896  *
6897  * LOCKING: Assumes the loader lock is held (because of the klass->methods check).
6898  */
6899 static MonoMethod*
6900 mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter)
6901 {
6902         MonoMethod** method;
6903         if (!iter)
6904                 return NULL;
6905         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass) || mono_debug_using_mono_debugger ()) {
6906                 if (!*iter) {
6907                         mono_class_setup_methods (klass);
6908                         /* start from the first */
6909                         method = &klass->methods [0];
6910                 } else {
6911                         method = *iter;
6912                         method++;
6913                 }
6914                 while (method < &klass->methods [klass->method.count]) {
6915                         if (((*method)->flags & METHOD_ATTRIBUTE_VIRTUAL))
6916                                 break;
6917                         method ++;
6918                 }
6919                 if (method < &klass->methods [klass->method.count]) {
6920                         *iter = method;
6921                         return *method;
6922                 } else {
6923                         return NULL;
6924                 }
6925         } else {
6926                 /* Search directly in metadata to avoid calling setup_methods () */
6927                 MonoMethod *res = NULL;
6928                 int i, start_index;
6929
6930                 if (!*iter) {
6931                         start_index = 0;
6932                 } else {
6933                         start_index = GPOINTER_TO_UINT (*iter);
6934                 }
6935
6936                 for (i = start_index; i < klass->method.count; ++i) {
6937                         guint32 cols [MONO_METHOD_SIZE];
6938
6939                         /* class->method.first points into the methodptr table */
6940                         mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
6941
6942                         if (cols [MONO_METHOD_FLAGS] & METHOD_ATTRIBUTE_VIRTUAL)
6943                                 break;
6944                 }
6945
6946                 if (i < klass->method.count) {
6947                         res = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
6948                         /* Add 1 here so the if (*iter) check fails */
6949                         *iter = GUINT_TO_POINTER (i + 1);
6950                         return res;
6951                 } else {
6952                         return NULL;
6953                 }
6954         }
6955 }
6956
6957 /**
6958  * mono_class_get_properties:
6959  * @klass: the MonoClass to act on
6960  *
6961  * This routine is an iterator routine for retrieving the properties in a class.
6962  *
6963  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6964  * iterate over all of the elements.  When no more values are
6965  * available, the return value is NULL.
6966  *
6967  * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
6968  */
6969 MonoProperty*
6970 mono_class_get_properties (MonoClass* klass, gpointer *iter)
6971 {
6972         MonoProperty* property;
6973         if (!iter)
6974                 return NULL;
6975         if (!klass->inited)
6976                 mono_class_init (klass);
6977         if (!*iter) {
6978                 mono_class_setup_properties (klass);
6979                 /* start from the first */
6980                 if (klass->ext->property.count) {
6981                         return *iter = &klass->ext->properties [0];
6982                 } else {
6983                         /* no fields */
6984                         return NULL;
6985                 }
6986         }
6987         property = *iter;
6988         property++;
6989         if (property < &klass->ext->properties [klass->ext->property.count]) {
6990                 return *iter = property;
6991         }
6992         return NULL;
6993 }
6994
6995 /**
6996  * mono_class_get_events:
6997  * @klass: the MonoClass to act on
6998  *
6999  * This routine is an iterator routine for retrieving the properties in a class.
7000  *
7001  * You must pass a gpointer that points to zero and is treated as an opaque handle to
7002  * iterate over all of the elements.  When no more values are
7003  * available, the return value is NULL.
7004  *
7005  * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
7006  */
7007 MonoEvent*
7008 mono_class_get_events (MonoClass* klass, gpointer *iter)
7009 {
7010         MonoEvent* event;
7011         if (!iter)
7012                 return NULL;
7013         if (!klass->inited)
7014                 mono_class_init (klass);
7015         if (!*iter) {
7016                 mono_class_setup_events (klass);
7017                 /* start from the first */
7018                 if (klass->ext->event.count) {
7019                         return *iter = &klass->ext->events [0];
7020                 } else {
7021                         /* no fields */
7022                         return NULL;
7023                 }
7024         }
7025         event = *iter;
7026         event++;
7027         if (event < &klass->ext->events [klass->ext->event.count]) {
7028                 return *iter = event;
7029         }
7030         return NULL;
7031 }
7032
7033 /**
7034  * mono_class_get_interfaces
7035  * @klass: the MonoClass to act on
7036  *
7037  * This routine is an iterator routine for retrieving the interfaces implemented by this class.
7038  *
7039  * You must pass a gpointer that points to zero and is treated as an opaque handle to
7040  * iterate over all of the elements.  When no more values are
7041  * available, the return value is NULL.
7042  *
7043  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
7044  */
7045 MonoClass*
7046 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
7047 {
7048         MonoClass** iface;
7049         if (!iter)
7050                 return NULL;
7051         if (!*iter) {
7052                 if (!klass->inited)
7053                         mono_class_init (klass);
7054                 if (!klass->interfaces_inited)
7055                         mono_class_setup_interfaces (klass);
7056                 /* start from the first */
7057                 if (klass->interface_count) {
7058                         *iter = &klass->interfaces [0];
7059                         return klass->interfaces [0];
7060                 } else {
7061                         /* no interface */
7062                         return NULL;
7063                 }
7064         }
7065         iface = *iter;
7066         iface++;
7067         if (iface < &klass->interfaces [klass->interface_count]) {
7068                 *iter = iface;
7069                 return *iface;
7070         }
7071         return NULL;
7072 }
7073
7074 /**
7075  * mono_class_get_nested_types
7076  * @klass: the MonoClass to act on
7077  *
7078  * This routine is an iterator routine for retrieving the nested types of a class.
7079  * This works only if @klass is non-generic, or a generic type definition.
7080  *
7081  * You must pass a gpointer that points to zero and is treated as an opaque handle to
7082  * iterate over all of the elements.  When no more values are
7083  * available, the return value is NULL.
7084  *
7085  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
7086  */
7087 MonoClass*
7088 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
7089 {
7090         GList *item;
7091         int i;
7092
7093         if (!iter)
7094                 return NULL;
7095         if (!klass->inited)
7096                 mono_class_init (klass);
7097         if (!klass->nested_classes_inited) {
7098                 if (!klass->type_token)
7099                         klass->nested_classes_inited = TRUE;
7100                 mono_loader_lock ();
7101                 if (!klass->nested_classes_inited) {
7102                         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, 1);
7103                         while (i) {
7104                                 MonoClass* nclass;
7105                                 guint32 cols [MONO_NESTED_CLASS_SIZE];
7106                                 mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
7107                                 nclass = mono_class_create_from_typedef (klass->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED]);
7108                                 mono_class_alloc_ext (klass);
7109                                 klass->ext->nested_classes = g_list_prepend_image (klass->image, klass->ext->nested_classes, nclass);
7110
7111                                 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
7112                         }
7113                 }
7114                 mono_memory_barrier ();
7115                 klass->nested_classes_inited = TRUE;
7116                 mono_loader_unlock ();
7117         }
7118
7119         if (!*iter) {
7120                 /* start from the first */
7121                 if (klass->ext && klass->ext->nested_classes) {
7122                         *iter = klass->ext->nested_classes;
7123                         return klass->ext->nested_classes->data;
7124                 } else {
7125                         /* no nested types */
7126                         return NULL;
7127                 }
7128         }
7129         item = *iter;
7130         item = item->next;
7131         if (item) {
7132                 *iter = item;
7133                 return item->data;
7134         }
7135         return NULL;
7136 }
7137
7138 /**
7139  * mono_field_get_name:
7140  * @field: the MonoClassField to act on
7141  *
7142  * Returns: the name of the field.
7143  */
7144 const char*
7145 mono_field_get_name (MonoClassField *field)
7146 {
7147         return field->name;
7148 }
7149
7150 /**
7151  * mono_field_get_type:
7152  * @field: the MonoClassField to act on
7153  *
7154  * Returns: MonoType of the field.
7155  */
7156 MonoType*
7157 mono_field_get_type (MonoClassField *field)
7158 {
7159         return field->type;
7160 }
7161
7162 /**
7163  * mono_field_get_parent:
7164  * @field: the MonoClassField to act on
7165  *
7166  * Returns: MonoClass where the field was defined.
7167  */
7168 MonoClass*
7169 mono_field_get_parent (MonoClassField *field)
7170 {
7171         return field->parent;
7172 }
7173
7174 /**
7175  * mono_field_get_flags;
7176  * @field: the MonoClassField to act on
7177  *
7178  * The metadata flags for a field are encoded using the
7179  * FIELD_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
7180  *
7181  * Returns: the flags for the field.
7182  */
7183 guint32
7184 mono_field_get_flags (MonoClassField *field)
7185 {
7186         return field->type->attrs;
7187 }
7188
7189 /**
7190  * mono_field_get_offset;
7191  * @field: the MonoClassField to act on
7192  *
7193  * Returns: the field offset.
7194  */
7195 guint32
7196 mono_field_get_offset (MonoClassField *field)
7197 {
7198         return field->offset;
7199 }
7200
7201 static const char *
7202 mono_field_get_rva (MonoClassField *field)
7203 {
7204         guint32 rva;
7205         int field_index;
7206         MonoClass *klass = field->parent;
7207
7208         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA);
7209
7210         if (!klass->ext || !klass->ext->field_def_values) {
7211                 mono_loader_lock ();
7212                 mono_class_alloc_ext (klass);
7213                 if (!klass->ext->field_def_values)
7214                         klass->ext->field_def_values = mono_image_alloc0 (klass->image, sizeof (MonoFieldDefaultValue) * klass->field.count);
7215                 mono_loader_unlock ();
7216         }
7217
7218         field_index = mono_field_get_index (field);
7219                 
7220         if (!klass->ext->field_def_values [field_index].data && !klass->image->dynamic) {
7221                 mono_metadata_field_info (field->parent->image, klass->field.first + field_index, NULL, &rva, NULL);
7222                 if (!rva)
7223                         g_warning ("field %s in %s should have RVA data, but hasn't", mono_field_get_name (field), field->parent->name);
7224                 klass->ext->field_def_values [field_index].data = mono_image_rva_map (field->parent->image, rva);
7225         }
7226
7227         return klass->ext->field_def_values [field_index].data;
7228 }
7229
7230 /**
7231  * mono_field_get_data;
7232  * @field: the MonoClassField to act on
7233  *
7234  * Returns: pointer to the metadata constant value or to the field
7235  * data if it has an RVA flag.
7236  */
7237 const char *
7238 mono_field_get_data (MonoClassField *field)
7239 {
7240         if (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT) {
7241                 MonoTypeEnum def_type;
7242
7243                 return mono_class_get_field_default_value (field, &def_type);
7244         } else if (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA) {
7245                 return mono_field_get_rva (field);
7246         } else {
7247                 return NULL;
7248         }
7249 }
7250
7251 /**
7252  * mono_property_get_name: 
7253  * @prop: the MonoProperty to act on
7254  *
7255  * Returns: the name of the property
7256  */
7257 const char*
7258 mono_property_get_name (MonoProperty *prop)
7259 {
7260         return prop->name;
7261 }
7262
7263 /**
7264  * mono_property_get_set_method
7265  * @prop: the MonoProperty to act on.
7266  *
7267  * Returns: the setter method of the property (A MonoMethod)
7268  */
7269 MonoMethod*
7270 mono_property_get_set_method (MonoProperty *prop)
7271 {
7272         return prop->set;
7273 }
7274
7275 /**
7276  * mono_property_get_get_method
7277  * @prop: the MonoProperty to act on.
7278  *
7279  * Returns: the setter method of the property (A MonoMethod)
7280  */
7281 MonoMethod*
7282 mono_property_get_get_method (MonoProperty *prop)
7283 {
7284         return prop->get;
7285 }
7286
7287 /**
7288  * mono_property_get_parent:
7289  * @prop: the MonoProperty to act on.
7290  *
7291  * Returns: the MonoClass where the property was defined.
7292  */
7293 MonoClass*
7294 mono_property_get_parent (MonoProperty *prop)
7295 {
7296         return prop->parent;
7297 }
7298
7299 /**
7300  * mono_property_get_flags:
7301  * @prop: the MonoProperty to act on.
7302  *
7303  * The metadata flags for a property are encoded using the
7304  * PROPERTY_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
7305  *
7306  * Returns: the flags for the property.
7307  */
7308 guint32
7309 mono_property_get_flags (MonoProperty *prop)
7310 {
7311         return prop->attrs;
7312 }
7313
7314 /**
7315  * mono_event_get_name:
7316  * @event: the MonoEvent to act on
7317  *
7318  * Returns: the name of the event.
7319  */
7320 const char*
7321 mono_event_get_name (MonoEvent *event)
7322 {
7323         return event->name;
7324 }
7325
7326 /**
7327  * mono_event_get_add_method:
7328  * @event: The MonoEvent to act on.
7329  *
7330  * Returns: the @add' method for the event (a MonoMethod).
7331  */
7332 MonoMethod*
7333 mono_event_get_add_method (MonoEvent *event)
7334 {
7335         return event->add;
7336 }
7337
7338 /**
7339  * mono_event_get_remove_method:
7340  * @event: The MonoEvent to act on.
7341  *
7342  * Returns: the @remove method for the event (a MonoMethod).
7343  */
7344 MonoMethod*
7345 mono_event_get_remove_method (MonoEvent *event)
7346 {
7347         return event->remove;
7348 }
7349
7350 /**
7351  * mono_event_get_raise_method:
7352  * @event: The MonoEvent to act on.
7353  *
7354  * Returns: the @raise method for the event (a MonoMethod).
7355  */
7356 MonoMethod*
7357 mono_event_get_raise_method (MonoEvent *event)
7358 {
7359         return event->raise;
7360 }
7361
7362 /**
7363  * mono_event_get_parent:
7364  * @event: the MonoEvent to act on.
7365  *
7366  * Returns: the MonoClass where the event is defined.
7367  */
7368 MonoClass*
7369 mono_event_get_parent (MonoEvent *event)
7370 {
7371         return event->parent;
7372 }
7373
7374 /**
7375  * mono_event_get_flags
7376  * @event: the MonoEvent to act on.
7377  *
7378  * The metadata flags for an event are encoded using the
7379  * EVENT_* constants.  See the tabledefs.h file for details.
7380  *
7381  * Returns: the flags for the event.
7382  */
7383 guint32
7384 mono_event_get_flags (MonoEvent *event)
7385 {
7386         return event->attrs;
7387 }
7388
7389 /**
7390  * mono_class_get_method_from_name:
7391  * @klass: where to look for the method
7392  * @name_space: name of the method
7393  * @param_count: number of parameters. -1 for any number.
7394  *
7395  * Obtains a MonoMethod with a given name and number of parameters.
7396  * It only works if there are no multiple signatures for any given method name.
7397  */
7398 MonoMethod *
7399 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
7400 {
7401         return mono_class_get_method_from_name_flags (klass, name, param_count, 0);
7402 }
7403
7404 static MonoMethod*
7405 find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags)
7406 {
7407         MonoMethod *res = NULL;
7408         int i;
7409
7410         /* Search directly in the metadata to avoid calling setup_methods () */
7411         for (i = 0; i < klass->method.count; ++i) {
7412                 guint32 cols [MONO_METHOD_SIZE];
7413                 MonoMethod *method;
7414
7415                 /* class->method.first points into the methodptr table */
7416                 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
7417
7418                 if (!strcmp (mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]), name)) {
7419                         method = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
7420                         if ((param_count == -1) || mono_method_signature (method)->param_count == param_count) {
7421                                 res = method;
7422                                 break;
7423                         }
7424                 }
7425         }
7426
7427         return res;
7428 }
7429
7430 /**
7431  * mono_class_get_method_from_name_flags:
7432  * @klass: where to look for the method
7433  * @name_space: name of the method
7434  * @param_count: number of parameters. -1 for any number.
7435  * @flags: flags which must be set in the method
7436  *
7437  * Obtains a MonoMethod with a given name and number of parameters.
7438  * It only works if there are no multiple signatures for any given method name.
7439  */
7440 MonoMethod *
7441 mono_class_get_method_from_name_flags (MonoClass *klass, const char *name, int param_count, int flags)
7442 {
7443         MonoMethod *res = NULL;
7444         int i;
7445
7446         mono_class_init (klass);
7447
7448         if (klass->generic_class && !klass->methods) {
7449                 res = mono_class_get_method_from_name_flags (klass->generic_class->container_class, name, param_count, flags);
7450                 if (res)
7451                         res = mono_class_inflate_generic_method_full (res, klass, mono_class_get_context (klass));
7452                 return res;
7453         }
7454
7455         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
7456                 mono_class_setup_methods (klass);
7457                 for (i = 0; i < klass->method.count; ++i) {
7458                         MonoMethod *method = klass->methods [i];
7459
7460                         if (method->name[0] == name [0] && 
7461                                 !strcmp (name, method->name) &&
7462                                 (param_count == -1 || mono_method_signature (method)->param_count == param_count) &&
7463                                 ((method->flags & flags) == flags)) {
7464                                 res = method;
7465                                 break;
7466                         }
7467                 }
7468         }
7469         else {
7470             res = find_method_in_metadata (klass, name, param_count, flags);
7471         }
7472
7473         return res;
7474 }
7475
7476 /**
7477  * mono_class_set_failure:
7478  * @klass: class in which the failure was detected
7479  * @ex_type: the kind of exception/error to be thrown (later)
7480  * @ex_data: exception data (specific to each type of exception/error)
7481  *
7482  * Keep a detected failure informations in the class for later processing.
7483  * Note that only the first failure is kept.
7484  *
7485  * LOCKING: Acquires the loader lock.
7486  */
7487 gboolean
7488 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data)
7489 {
7490         if (klass->exception_type)
7491                 return FALSE;
7492
7493         mono_loader_lock ();
7494         klass->exception_type = ex_type;
7495         if (ex_data)
7496                 mono_image_property_insert (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA, ex_data);
7497         mono_loader_unlock ();
7498
7499         return TRUE;
7500 }
7501
7502 /*
7503  * mono_class_get_exception_data:
7504  *
7505  *   Return the exception_data property of KLASS.
7506  *
7507  * LOCKING: Acquires the loader lock.
7508  */
7509 gpointer
7510 mono_class_get_exception_data (MonoClass *klass)
7511 {
7512         return mono_image_property_lookup (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA);
7513 }
7514
7515 /**
7516  * mono_classes_init:
7517  *
7518  * Initialize the resources used by this module.
7519  */
7520 void
7521 mono_classes_init (void)
7522 {
7523         mono_counters_register ("Inflated methods size",
7524                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_methods_size);
7525         mono_counters_register ("Inflated classes",
7526                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes);
7527         mono_counters_register ("Inflated classes size",
7528                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes_size);
7529         mono_counters_register ("MonoClass size",
7530                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &classes_size);
7531         mono_counters_register ("MonoClassExt size",
7532                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ext_size);
7533 }
7534
7535 /**
7536  * mono_classes_cleanup:
7537  *
7538  * Free the resources used by this module.
7539  */
7540 void
7541 mono_classes_cleanup (void)
7542 {
7543         if (global_interface_bitset)
7544                 mono_bitset_free (global_interface_bitset);
7545 }
7546
7547 /**
7548  * mono_class_get_exception_for_failure:
7549  * @klass: class in which the failure was detected
7550  *
7551  * Return a constructed MonoException than the caller can then throw
7552  * using mono_raise_exception - or NULL if no failure is present (or
7553  * doesn't result in an exception).
7554  */
7555 MonoException*
7556 mono_class_get_exception_for_failure (MonoClass *klass)
7557 {
7558         gpointer exception_data = mono_class_get_exception_data (klass);
7559
7560         switch (klass->exception_type) {
7561         case MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND: {
7562                 MonoDomain *domain = mono_domain_get ();
7563                 MonoSecurityManager* secman = mono_security_manager_get_methods ();
7564                 MonoMethod *method = exception_data;
7565                 guint32 error = (method) ? MONO_METADATA_INHERITANCEDEMAND_METHOD : MONO_METADATA_INHERITANCEDEMAND_CLASS;
7566                 MonoObject *exc = NULL;
7567                 gpointer args [4];
7568
7569                 args [0] = &error;
7570                 args [1] = mono_assembly_get_object (domain, mono_image_get_assembly (klass->image));
7571                 args [2] = mono_type_get_object (domain, &klass->byval_arg);
7572                 args [3] = (method) ? mono_method_get_object (domain, method, NULL) : NULL;
7573
7574                 mono_runtime_invoke (secman->inheritsecurityexception, NULL, args, &exc);
7575                 return (MonoException*) exc;
7576         }
7577         case MONO_EXCEPTION_TYPE_LOAD: {
7578                 MonoString *name;
7579                 MonoException *ex;
7580                 char *str = mono_type_get_full_name (klass);
7581                 char *astr = klass->image->assembly? mono_stringify_assembly_name (&klass->image->assembly->aname): NULL;
7582                 name = mono_string_new (mono_domain_get (), str);
7583                 g_free (str);
7584                 ex = mono_get_exception_type_load (name, astr);
7585                 g_free (astr);
7586                 return ex;
7587         }
7588         case MONO_EXCEPTION_MISSING_METHOD: {
7589                 char *class_name = exception_data;
7590                 char *assembly_name = class_name + strlen (class_name) + 1;
7591
7592                 return mono_get_exception_missing_method (class_name, assembly_name);
7593         }
7594         case MONO_EXCEPTION_MISSING_FIELD: {
7595                 char *class_name = exception_data;
7596                 char *member_name = class_name + strlen (class_name) + 1;
7597
7598                 return mono_get_exception_missing_field (class_name, member_name);
7599         }
7600         case MONO_EXCEPTION_FILE_NOT_FOUND: {
7601                 char *msg_format = exception_data;
7602                 char *assembly_name = msg_format + strlen (msg_format) + 1;
7603                 char *msg = g_strdup_printf (msg_format, assembly_name);
7604                 MonoException *ex;
7605
7606                 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), assembly_name));
7607
7608                 g_free (msg);
7609
7610                 return ex;
7611         }
7612         case MONO_EXCEPTION_BAD_IMAGE: {
7613                 return mono_get_exception_bad_image_format (exception_data);
7614         }
7615         default: {
7616                 MonoLoaderError *error;
7617                 MonoException *ex;
7618                 
7619                 error = mono_loader_get_last_error ();
7620                 if (error != NULL){
7621                         ex = mono_loader_error_prepare_exception (error);
7622                         return ex;
7623                 }
7624                 
7625                 /* TODO - handle other class related failures */
7626                 return NULL;
7627         }
7628         }
7629 }
7630
7631 static gboolean
7632 is_nesting_type (MonoClass *outer_klass, MonoClass *inner_klass)
7633  {
7634         outer_klass = mono_class_get_generic_type_definition (outer_klass);
7635         inner_klass = mono_class_get_generic_type_definition (inner_klass);
7636         do {
7637                 if (outer_klass == inner_klass)
7638                         return TRUE;
7639                 inner_klass = inner_klass->nested_in;
7640         } while (inner_klass);
7641         return FALSE;
7642 }
7643
7644 MonoClass *
7645 mono_class_get_generic_type_definition (MonoClass *klass)
7646 {
7647         return klass->generic_class ? klass->generic_class->container_class : klass;
7648 }
7649
7650 /*
7651  * Check if @klass is a subtype of @parent ignoring generic instantiations.
7652  * 
7653  * Generic instantiations are ignored for all super types of @klass.
7654  * 
7655  * Visibility checks ignoring generic instantiations.  
7656  */
7657 gboolean
7658 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent)
7659 {
7660         int i;
7661         klass = mono_class_get_generic_type_definition (klass);
7662         parent = mono_class_get_generic_type_definition (parent);
7663         
7664         for (i = 0; i < klass->idepth; ++i) {
7665                 if (parent == mono_class_get_generic_type_definition (klass->supertypes [i]))
7666                         return TRUE;
7667         }
7668         return FALSE;
7669 }
7670 /*
7671  * Subtype can only access parent members with family protection if the site object
7672  * is subclass of Subtype. For example:
7673  * class A { protected int x; }
7674  * class B : A {
7675  *      void valid_access () {
7676  *              B b;
7677  *              b.x = 0;
7678  *  }
7679  *  void invalid_access () {
7680  *              A a;
7681  *              a.x = 0;
7682  *  }
7683  * }
7684  * */
7685 static gboolean
7686 is_valid_family_access (MonoClass *access_klass, MonoClass *member_klass, MonoClass *context_klass)
7687 {
7688         if (!mono_class_has_parent_and_ignore_generics (access_klass, member_klass))
7689                 return FALSE;
7690
7691         if (context_klass == NULL)
7692                 return TRUE;
7693         /*if access_klass is not member_klass context_klass must be type compat*/
7694         if (access_klass != member_klass && !mono_class_has_parent_and_ignore_generics (context_klass, access_klass))
7695                 return FALSE;
7696         return TRUE;
7697 }
7698
7699 static gboolean
7700 can_access_internals (MonoAssembly *accessing, MonoAssembly* accessed)
7701 {
7702         GSList *tmp;
7703         if (accessing == accessed)
7704                 return TRUE;
7705         if (!accessed || !accessing)
7706                 return FALSE;
7707         mono_assembly_load_friends (accessed);
7708         for (tmp = accessed->friend_assembly_names; tmp; tmp = tmp->next) {
7709                 MonoAssemblyName *friend = tmp->data;
7710                 /* Be conservative with checks */
7711                 if (!friend->name)
7712                         continue;
7713                 if (strcmp (accessing->aname.name, friend->name))
7714                         continue;
7715                 if (friend->public_key_token [0]) {
7716                         if (!accessing->aname.public_key_token [0])
7717                                 continue;
7718                         if (!mono_public_tokens_are_equal (friend->public_key_token, accessing->aname.public_key_token))
7719                                 continue;
7720                 }
7721                 return TRUE;
7722         }
7723         return FALSE;
7724 }
7725
7726 /*
7727  * If klass is a generic type or if it is derived from a generic type, return the
7728  * MonoClass of the generic definition
7729  * Returns NULL if not found
7730  */
7731 static MonoClass*
7732 get_generic_definition_class (MonoClass *klass)
7733 {
7734         while (klass) {
7735                 if (klass->generic_class && klass->generic_class->container_class)
7736                         return klass->generic_class->container_class;
7737                 klass = klass->parent;
7738         }
7739         return NULL;
7740 }
7741
7742 static gboolean
7743 can_access_instantiation (MonoClass *access_klass, MonoGenericInst *ginst)
7744 {
7745         int i;
7746         for (i = 0; i < ginst->type_argc; ++i) {
7747                 MonoType *type = ginst->type_argv[i];
7748                 switch (type->type) {
7749                 case MONO_TYPE_SZARRAY:
7750                         if (!can_access_type (access_klass, type->data.klass))
7751                                 return FALSE;
7752                         break;
7753                 case MONO_TYPE_ARRAY:
7754                         if (!can_access_type (access_klass, type->data.array->eklass))
7755                                 return FALSE;
7756                         break;
7757                 case MONO_TYPE_PTR:
7758                         if (!can_access_type (access_klass, mono_class_from_mono_type (type->data.type)))
7759                                 return FALSE;
7760                         break;
7761                 case MONO_TYPE_CLASS:
7762                 case MONO_TYPE_VALUETYPE:
7763                 case MONO_TYPE_GENERICINST:
7764                         if (!can_access_type (access_klass, mono_class_from_mono_type (type)))
7765                                 return FALSE;
7766                 }
7767         }
7768         return TRUE;
7769 }
7770
7771 static gboolean
7772 can_access_type (MonoClass *access_klass, MonoClass *member_klass)
7773 {
7774         int access_level;
7775
7776         if (access_klass->element_class && !access_klass->enumtype)
7777                 access_klass = access_klass->element_class;
7778
7779         if (member_klass->element_class && !member_klass->enumtype)
7780                 member_klass = member_klass->element_class;
7781
7782         access_level = member_klass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK;
7783
7784         if (member_klass->byval_arg.type == MONO_TYPE_VAR || member_klass->byval_arg.type == MONO_TYPE_MVAR)
7785                 return TRUE;
7786
7787         if (member_klass->generic_class && !can_access_instantiation (access_klass, member_klass->generic_class->context.class_inst))
7788                 return FALSE;
7789
7790         if (is_nesting_type (access_klass, member_klass) || (access_klass->nested_in && is_nesting_type (access_klass->nested_in, member_klass)))
7791                 return TRUE;
7792
7793         if (member_klass->nested_in && !can_access_type (access_klass, member_klass->nested_in))
7794                 return FALSE;
7795
7796         /*Non nested type with nested visibility. We just fail it.*/
7797         if (access_level >= TYPE_ATTRIBUTE_NESTED_PRIVATE && access_level <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM && member_klass->nested_in == NULL)
7798                 return FALSE;
7799
7800         switch (access_level) {
7801         case TYPE_ATTRIBUTE_NOT_PUBLIC:
7802                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7803
7804         case TYPE_ATTRIBUTE_PUBLIC:
7805                 return TRUE;
7806
7807         case TYPE_ATTRIBUTE_NESTED_PUBLIC:
7808                 return TRUE;
7809
7810         case TYPE_ATTRIBUTE_NESTED_PRIVATE:
7811                 return is_nesting_type (member_klass, access_klass);
7812
7813         case TYPE_ATTRIBUTE_NESTED_FAMILY:
7814                 return mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in); 
7815
7816         case TYPE_ATTRIBUTE_NESTED_ASSEMBLY:
7817                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7818
7819         case TYPE_ATTRIBUTE_NESTED_FAM_AND_ASSEM:
7820                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) &&
7821                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7822
7823         case TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM:
7824                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) ||
7825                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7826         }
7827         return FALSE;
7828 }
7829
7830 /* FIXME: check visibility of type, too */
7831 static gboolean
7832 can_access_member (MonoClass *access_klass, MonoClass *member_klass, MonoClass* context_klass, int access_level)
7833 {
7834         MonoClass *member_generic_def;
7835         if (((access_klass->generic_class && access_klass->generic_class->container_class) ||
7836                                         access_klass->generic_container) && 
7837                         (member_generic_def = get_generic_definition_class (member_klass))) {
7838                 MonoClass *access_container;
7839
7840                 if (access_klass->generic_container)
7841                         access_container = access_klass;
7842                 else
7843                         access_container = access_klass->generic_class->container_class;
7844
7845                 if (can_access_member (access_container, member_generic_def, context_klass, access_level))
7846                         return TRUE;
7847         }
7848
7849         /* Partition I 8.5.3.2 */
7850         /* the access level values are the same for fields and methods */
7851         switch (access_level) {
7852         case FIELD_ATTRIBUTE_COMPILER_CONTROLLED:
7853                 /* same compilation unit */
7854                 return access_klass->image == member_klass->image;
7855         case FIELD_ATTRIBUTE_PRIVATE:
7856                 return access_klass == member_klass;
7857         case FIELD_ATTRIBUTE_FAM_AND_ASSEM:
7858                 if (is_valid_family_access (access_klass, member_klass, context_klass) &&
7859                     can_access_internals (access_klass->image->assembly, member_klass->image->assembly))
7860                         return TRUE;
7861                 return FALSE;
7862         case FIELD_ATTRIBUTE_ASSEMBLY:
7863                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7864         case FIELD_ATTRIBUTE_FAMILY:
7865                 if (is_valid_family_access (access_klass, member_klass, context_klass))
7866                         return TRUE;
7867                 return FALSE;
7868         case FIELD_ATTRIBUTE_FAM_OR_ASSEM:
7869                 if (is_valid_family_access (access_klass, member_klass, context_klass))
7870                         return TRUE;
7871                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7872         case FIELD_ATTRIBUTE_PUBLIC:
7873                 return TRUE;
7874         }
7875         return FALSE;
7876 }
7877
7878 gboolean
7879 mono_method_can_access_field (MonoMethod *method, MonoClassField *field)
7880 {
7881         /* FIXME: check all overlapping fields */
7882         int can = can_access_member (method->klass, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7883         if (!can) {
7884                 MonoClass *nested = method->klass->nested_in;
7885                 while (nested) {
7886                         can = can_access_member (nested, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7887                         if (can)
7888                                 return TRUE;
7889                         nested = nested->nested_in;
7890                 }
7891         }
7892         return can;
7893 }
7894
7895 gboolean
7896 mono_method_can_access_method (MonoMethod *method, MonoMethod *called)
7897 {
7898         int can = can_access_member (method->klass, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7899         if (!can) {
7900                 MonoClass *nested = method->klass->nested_in;
7901                 while (nested) {
7902                         can = can_access_member (nested, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7903                         if (can)
7904                                 return TRUE;
7905                         nested = nested->nested_in;
7906                 }
7907         }
7908         /* 
7909          * FIXME:
7910          * with generics calls to explicit interface implementations can be expressed
7911          * directly: the method is private, but we must allow it. This may be opening
7912          * a hole or the generics code should handle this differently.
7913          * Maybe just ensure the interface type is public.
7914          */
7915         if ((called->flags & METHOD_ATTRIBUTE_VIRTUAL) && (called->flags & METHOD_ATTRIBUTE_FINAL))
7916                 return TRUE;
7917         return can;
7918 }
7919
7920 /*
7921  * mono_method_can_access_method_full:
7922  * @method: The caller method 
7923  * @called: The called method 
7924  * @context_klass: The static type on stack of the owner @called object used
7925  * 
7926  * This function must be used with instance calls, as they have more strict family accessibility.
7927  * It can be used with static methods, but context_klass should be NULL.
7928  * 
7929  * Returns: TRUE if caller have proper visibility and acessibility to @called
7930  */
7931 gboolean
7932 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass)
7933 {
7934         MonoClass *access_class = method->klass;
7935         MonoClass *member_class = called->klass;
7936         int can = can_access_member (access_class, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7937         if (!can) {
7938                 MonoClass *nested = access_class->nested_in;
7939                 while (nested) {
7940                         can = can_access_member (nested, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7941                         if (can)
7942                                 break;
7943                         nested = nested->nested_in;
7944                 }
7945         }
7946
7947         if (!can)
7948                 return FALSE;
7949
7950         if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7951                 return FALSE;
7952
7953         if (called->is_inflated) {
7954                 MonoMethodInflated * infl = (MonoMethodInflated*)called;
7955                 if (infl->context.method_inst && !can_access_instantiation (access_class, infl->context.method_inst))
7956                         return FALSE;
7957         }
7958                 
7959         return TRUE;
7960 }
7961
7962
7963 /*
7964  * mono_method_can_access_field_full:
7965  * @method: The caller method 
7966  * @field: The accessed field
7967  * @context_klass: The static type on stack of the owner @field object used
7968  * 
7969  * This function must be used with instance fields, as they have more strict family accessibility.
7970  * It can be used with static fields, but context_klass should be NULL.
7971  * 
7972  * Returns: TRUE if caller have proper visibility and acessibility to @field
7973  */
7974 gboolean
7975 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass)
7976 {
7977         MonoClass *access_class = method->klass;
7978         MonoClass *member_class = field->parent;
7979         /* FIXME: check all overlapping fields */
7980         int can = can_access_member (access_class, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7981         if (!can) {
7982                 MonoClass *nested = access_class->nested_in;
7983                 while (nested) {
7984                         can = can_access_member (nested, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7985                         if (can)
7986                                 break;
7987                         nested = nested->nested_in;
7988                 }
7989         }
7990
7991         if (!can)
7992                 return FALSE;
7993
7994         if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7995                 return FALSE;
7996         return TRUE;
7997 }
7998
7999 /**
8000  * mono_type_is_valid_enum_basetype:
8001  * @type: The MonoType to check
8002  *
8003  * Returns: TRUE if the type can be used as the basetype of an enum
8004  */
8005 gboolean mono_type_is_valid_enum_basetype (MonoType * type) {
8006         switch (type->type) {
8007         case MONO_TYPE_I1:
8008         case MONO_TYPE_U1:
8009         case MONO_TYPE_BOOLEAN:
8010         case MONO_TYPE_I2:
8011         case MONO_TYPE_U2:
8012         case MONO_TYPE_CHAR:
8013         case MONO_TYPE_I4:
8014         case MONO_TYPE_U4:
8015         case MONO_TYPE_I8:
8016         case MONO_TYPE_U8:
8017         case MONO_TYPE_I:
8018         case MONO_TYPE_U:
8019                 return TRUE;
8020         }
8021         return FALSE;
8022 }
8023
8024 /**
8025  * mono_class_is_valid_enum:
8026  * @klass: An enum class to be validated
8027  *
8028  * This method verify the required properties an enum should have.
8029  *  
8030  * Returns: TRUE if the informed enum class is valid 
8031  *
8032  * FIXME: TypeBuilder enums are allowed to implement interfaces, but since they cannot have methods, only empty interfaces are possible
8033  * FIXME: enum types are not allowed to have a cctor, but mono_reflection_create_runtime_class sets has_cctor to 1 for all types
8034  * FIXME: TypeBuilder enums can have any kind of static fields, but the spec is very explicit about that (P II 14.3)
8035  */
8036 gboolean mono_class_is_valid_enum (MonoClass *klass) {
8037         MonoClassField * field;
8038         gpointer iter = NULL;
8039         gboolean found_base_field = FALSE;
8040
8041         g_assert (klass->enumtype);
8042         /* we cannot test against mono_defaults.enum_class, or mcs won't be able to compile the System namespace*/
8043         if (!klass->parent || strcmp (klass->parent->name, "Enum") || strcmp (klass->parent->name_space, "System") ) {
8044                 return FALSE;
8045         }
8046
8047         if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) != TYPE_ATTRIBUTE_AUTO_LAYOUT)
8048                 return FALSE;
8049
8050         while ((field = mono_class_get_fields (klass, &iter))) {
8051                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
8052                         if (found_base_field)
8053                                 return FALSE;
8054                         found_base_field = TRUE;
8055                         if (!mono_type_is_valid_enum_basetype (field->type))
8056                                 return FALSE;
8057                 }
8058         }
8059
8060         if (!found_base_field)
8061                 return FALSE;
8062
8063         if (klass->method.count > 0) 
8064                 return FALSE;
8065
8066         return TRUE;
8067 }
8068
8069 gboolean
8070 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass)
8071 {
8072         return gklass->context.class_inst == gklass->container_class->generic_container->context.class_inst;
8073 }
8074
8075 static gboolean gshared_supported;
8076
8077 void
8078 mono_set_generic_sharing_supported (gboolean supported)
8079 {
8080         gshared_supported = supported;
8081 }
8082
8083 /*
8084  * mono_class_generic_sharing_enabled:
8085  * @class: a class
8086  *
8087  * Returns whether generic sharing is enabled for class.
8088  *
8089  * This is a stop-gap measure to slowly introduce generic sharing
8090  * until we have all the issues sorted out, at which time this
8091  * function will disappear and generic sharing will always be enabled.
8092  */
8093 gboolean
8094 mono_class_generic_sharing_enabled (MonoClass *class)
8095 {
8096         static int generic_sharing = MONO_GENERIC_SHARING_NONE;
8097         static gboolean inited = FALSE;
8098
8099         if (!inited) {
8100                 const char *option;
8101
8102                 if (gshared_supported)
8103                         generic_sharing = MONO_GENERIC_SHARING_ALL;
8104                 else
8105                         generic_sharing = MONO_GENERIC_SHARING_NONE;
8106
8107                 if ((option = g_getenv ("MONO_GENERIC_SHARING"))) {
8108                         if (strcmp (option, "corlib") == 0)
8109                                 generic_sharing = MONO_GENERIC_SHARING_CORLIB;
8110                         else if (strcmp (option, "collections") == 0)
8111                                 generic_sharing = MONO_GENERIC_SHARING_COLLECTIONS;
8112                         else if (strcmp (option, "all") == 0)
8113                                 generic_sharing = MONO_GENERIC_SHARING_ALL;
8114                         else if (strcmp (option, "none") == 0)
8115                                 generic_sharing = MONO_GENERIC_SHARING_NONE;
8116                         else
8117                                 g_warning ("Unknown generic sharing option `%s'.", option);
8118                 }
8119
8120                 if (!gshared_supported)
8121                         generic_sharing = MONO_GENERIC_SHARING_NONE;
8122
8123                 inited = TRUE;
8124         }
8125
8126         switch (generic_sharing) {
8127         case MONO_GENERIC_SHARING_NONE:
8128                 return FALSE;
8129         case MONO_GENERIC_SHARING_ALL:
8130                 return TRUE;
8131         case MONO_GENERIC_SHARING_CORLIB :
8132                 return class->image == mono_defaults.corlib;
8133         case MONO_GENERIC_SHARING_COLLECTIONS:
8134                 if (class->image != mono_defaults.corlib)
8135                         return FALSE;
8136                 while (class->nested_in)
8137                         class = class->nested_in;
8138                 return g_str_has_prefix (class->name_space, "System.Collections.Generic");
8139         default:
8140                 g_assert_not_reached ();
8141         }
8142 }
8143
8144 /*
8145  * mono_class_setup_interface_id:
8146  *
8147  * Initializes MonoClass::interface_id if required.
8148  *
8149  * LOCKING: Acquires the loader lock.
8150  */
8151 void
8152 mono_class_setup_interface_id (MonoClass *class)
8153 {
8154         mono_loader_lock ();
8155         if (MONO_CLASS_IS_INTERFACE (class) && !class->interface_id)
8156                 class->interface_id = mono_get_unique_iid (class);
8157         mono_loader_unlock ();
8158 }
8159
8160 /*
8161  * mono_class_alloc_ext:
8162  *
8163  *   Allocate klass->ext if not already done.
8164  * LOCKING: Assumes the loader lock is held.
8165  */
8166 void
8167 mono_class_alloc_ext (MonoClass *klass)
8168 {
8169         if (!klass->ext) {
8170                 if (klass->generic_class) {
8171                         klass->ext = g_new0 (MonoClassExt, 1);
8172                 } else {
8173                         klass->ext = mono_image_alloc0 (klass->image, sizeof (MonoClassExt));
8174                 }
8175                 class_ext_size += sizeof (MonoClassExt);
8176         }
8177 }
8178
8179 /*
8180  * mono_class_setup_interfaces:
8181  *
8182  *   Initialize class->interfaces/interfaces_count.
8183  * LOCKING: Acquires the loader lock.
8184  */
8185 void
8186 mono_class_setup_interfaces (MonoClass *klass)
8187 {
8188         int i;
8189
8190         if (klass->interfaces_inited)
8191                 return;
8192
8193         mono_loader_lock ();
8194
8195         if (klass->interfaces_inited) {
8196                 mono_loader_unlock ();
8197                 return;
8198         }
8199
8200         if (klass->rank == 1 && klass->byval_arg.type != MONO_TYPE_ARRAY && mono_defaults.generic_ilist_class) {
8201                 MonoType *args [1];
8202
8203                 /* generic IList, ICollection, IEnumerable */
8204                 klass->interface_count = 1;
8205                 klass->interfaces = mono_image_alloc0 (klass->image, sizeof (MonoClass*) * klass->interface_count);
8206
8207                 args [0] = &klass->element_class->byval_arg;
8208                 klass->interfaces [0] = mono_class_bind_generic_parameters (
8209                         mono_defaults.generic_ilist_class, 1, args, FALSE);
8210         } else if (klass->generic_class) {
8211                 MonoClass *gklass = klass->generic_class->container_class;
8212
8213                 klass->interface_count = gklass->interface_count;
8214                 klass->interfaces = g_new0 (MonoClass *, klass->interface_count);
8215                 for (i = 0; i < klass->interface_count; i++)
8216                         klass->interfaces [i] = mono_class_inflate_generic_class (gklass->interfaces [i], mono_generic_class_get_context (klass->generic_class));
8217         }
8218
8219         mono_memory_barrier ();
8220
8221         klass->interfaces_inited = TRUE;
8222
8223         mono_loader_unlock ();
8224 }