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