d92da200a92f0d39b2e9f06a0b4b1f0d3d88f860
[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                 if (klass->parent->exception_type) {
5587                         printf ("\n--------------BROKEN TYPE %s parent %s-------------\n",
5588                                 mono_type_get_full_name (klass),
5589                                 mono_type_get_full_name (klass->parent));
5590                         mono_class_set_failure (klass, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Failed to setup parent interfaces"));
5591                 } else
5592                         setup_interface_offsets (klass, klass->parent->vtable_size);
5593         }
5594
5595         return klass;
5596 }
5597
5598 #define FAST_CACHE_SIZE 16
5599 static MonoClass *var_cache_fast [FAST_CACHE_SIZE];
5600 static MonoClass *mvar_cache_fast [FAST_CACHE_SIZE];
5601 static GHashTable *var_cache_slow;
5602 static GHashTable *mvar_cache_slow;
5603
5604 static MonoClass *
5605 get_anon_gparam_class (MonoGenericParam *param, gboolean is_mvar)
5606 {
5607         int n = mono_generic_param_num (param);
5608         GHashTable *ht;
5609
5610         if (n < FAST_CACHE_SIZE)
5611                 return (is_mvar ? mvar_cache_fast : var_cache_fast) [n];
5612         ht = is_mvar ? mvar_cache_slow : var_cache_slow;
5613         return ht ? g_hash_table_lookup (ht, GINT_TO_POINTER (n)) : NULL;
5614 }
5615
5616 static void
5617 set_anon_gparam_class (MonoGenericParam *param, gboolean is_mvar, MonoClass *klass)
5618 {
5619         int n = mono_generic_param_num (param);
5620         GHashTable *ht;
5621
5622         if (n < FAST_CACHE_SIZE) {
5623                 (is_mvar ? mvar_cache_fast : var_cache_fast) [n] = klass;
5624                 return;
5625         }
5626         ht = is_mvar ? mvar_cache_slow : var_cache_slow;
5627         if (!ht) {
5628                 ht = g_hash_table_new (NULL, NULL);
5629                 if (is_mvar)
5630                         mvar_cache_slow = ht;
5631                 else
5632                         var_cache_slow = ht;
5633         }
5634
5635         g_hash_table_insert (ht, GINT_TO_POINTER (n), klass);
5636 }
5637
5638 /*
5639  * LOCKING: Acquires the loader lock.
5640  */
5641 MonoClass *
5642 mono_class_from_generic_parameter (MonoGenericParam *param, MonoImage *image, gboolean is_mvar)
5643 {
5644         MonoGenericContainer *container = mono_generic_param_owner (param);
5645         MonoGenericParamInfo *pinfo;
5646         MonoClass *klass;
5647
5648         mono_loader_lock ();
5649
5650         if (container) {
5651                 pinfo = mono_generic_param_info (param);
5652                 if (pinfo->pklass) {
5653                         mono_loader_unlock ();
5654                         return pinfo->pklass;
5655                 }
5656         } else {
5657                 pinfo = NULL;
5658                 image = NULL;
5659
5660                 klass = get_anon_gparam_class (param, is_mvar);
5661                 if (klass) {
5662                         mono_loader_unlock ();
5663                         return klass;
5664                 }
5665         }
5666
5667         if (!image && container) {
5668                 if (is_mvar) {
5669                         MonoMethod *method = container->owner.method;
5670                         image = (method && method->klass) ? method->klass->image : NULL;
5671                 } else {
5672                         MonoClass *klass = container->owner.klass;
5673                         // FIXME: 'klass' should not be null
5674                         //        But, monodis creates GenericContainers without associating a owner to it
5675                         image = klass ? klass->image : NULL;
5676                 }
5677         }
5678
5679         klass = make_generic_param_class (param, image, is_mvar, pinfo);
5680
5681         mono_memory_barrier ();
5682
5683         if (container)
5684                 pinfo->pklass = klass;
5685         else
5686                 set_anon_gparam_class (param, is_mvar, klass);
5687
5688         mono_loader_unlock ();
5689
5690         /* FIXME: Should this go inside 'make_generic_param_klass'? */
5691         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
5692
5693         return klass;
5694 }
5695
5696 MonoClass *
5697 mono_ptr_class_get (MonoType *type)
5698 {
5699         MonoClass *result;
5700         MonoClass *el_class;
5701         MonoImage *image;
5702         char *name;
5703
5704         el_class = mono_class_from_mono_type (type);
5705         image = el_class->image;
5706
5707         mono_loader_lock ();
5708
5709         if (!image->ptr_cache)
5710                 image->ptr_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
5711
5712         if ((result = g_hash_table_lookup (image->ptr_cache, el_class))) {
5713                 mono_loader_unlock ();
5714                 return result;
5715         }
5716         result = mono_image_alloc0 (image, sizeof (MonoClass));
5717
5718         classes_size += sizeof (MonoClass);
5719
5720         result->parent = NULL; /* no parent for PTR types */
5721         result->name_space = el_class->name_space;
5722         name = g_strdup_printf ("%s*", el_class->name);
5723         result->name = mono_image_strdup (image, name);
5724         g_free (name);
5725
5726         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
5727
5728         result->image = el_class->image;
5729         result->inited = TRUE;
5730         result->flags = TYPE_ATTRIBUTE_CLASS | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
5731         /* Can pointers get boxed? */
5732         result->instance_size = sizeof (gpointer);
5733         result->cast_class = result->element_class = el_class;
5734         result->blittable = TRUE;
5735
5736         result->this_arg.type = result->byval_arg.type = MONO_TYPE_PTR;
5737         result->this_arg.data.type = result->byval_arg.data.type = &result->element_class->byval_arg;
5738         result->this_arg.byref = TRUE;
5739
5740         mono_class_setup_supertypes (result);
5741
5742         g_hash_table_insert (image->ptr_cache, el_class, result);
5743
5744         mono_loader_unlock ();
5745
5746         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
5747
5748         return result;
5749 }
5750
5751 static MonoClass *
5752 mono_fnptr_class_get (MonoMethodSignature *sig)
5753 {
5754         MonoClass *result;
5755         static GHashTable *ptr_hash = NULL;
5756
5757         /* FIXME: These should be allocate from a mempool as well, but which one ? */
5758
5759         mono_loader_lock ();
5760
5761         if (!ptr_hash)
5762                 ptr_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
5763         
5764         if ((result = g_hash_table_lookup (ptr_hash, sig))) {
5765                 mono_loader_unlock ();
5766                 return result;
5767         }
5768         result = g_new0 (MonoClass, 1);
5769
5770         result->parent = NULL; /* no parent for PTR types */
5771         result->name_space = "System";
5772         result->name = "MonoFNPtrFakeClass";
5773
5774         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
5775
5776         result->image = mono_defaults.corlib; /* need to fix... */
5777         result->inited = TRUE;
5778         result->flags = TYPE_ATTRIBUTE_CLASS; /* | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK); */
5779         /* Can pointers get boxed? */
5780         result->instance_size = sizeof (gpointer);
5781         result->cast_class = result->element_class = result;
5782         result->blittable = TRUE;
5783
5784         result->this_arg.type = result->byval_arg.type = MONO_TYPE_FNPTR;
5785         result->this_arg.data.method = result->byval_arg.data.method = sig;
5786         result->this_arg.byref = TRUE;
5787         result->blittable = TRUE;
5788
5789         mono_class_setup_supertypes (result);
5790
5791         g_hash_table_insert (ptr_hash, sig, result);
5792
5793         mono_loader_unlock ();
5794
5795         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
5796
5797         return result;
5798 }
5799
5800 MonoClass *
5801 mono_class_from_mono_type (MonoType *type)
5802 {
5803         switch (type->type) {
5804         case MONO_TYPE_OBJECT:
5805                 return type->data.klass? type->data.klass: mono_defaults.object_class;
5806         case MONO_TYPE_VOID:
5807                 return type->data.klass? type->data.klass: mono_defaults.void_class;
5808         case MONO_TYPE_BOOLEAN:
5809                 return type->data.klass? type->data.klass: mono_defaults.boolean_class;
5810         case MONO_TYPE_CHAR:
5811                 return type->data.klass? type->data.klass: mono_defaults.char_class;
5812         case MONO_TYPE_I1:
5813                 return type->data.klass? type->data.klass: mono_defaults.sbyte_class;
5814         case MONO_TYPE_U1:
5815                 return type->data.klass? type->data.klass: mono_defaults.byte_class;
5816         case MONO_TYPE_I2:
5817                 return type->data.klass? type->data.klass: mono_defaults.int16_class;
5818         case MONO_TYPE_U2:
5819                 return type->data.klass? type->data.klass: mono_defaults.uint16_class;
5820         case MONO_TYPE_I4:
5821                 return type->data.klass? type->data.klass: mono_defaults.int32_class;
5822         case MONO_TYPE_U4:
5823                 return type->data.klass? type->data.klass: mono_defaults.uint32_class;
5824         case MONO_TYPE_I:
5825                 return type->data.klass? type->data.klass: mono_defaults.int_class;
5826         case MONO_TYPE_U:
5827                 return type->data.klass? type->data.klass: mono_defaults.uint_class;
5828         case MONO_TYPE_I8:
5829                 return type->data.klass? type->data.klass: mono_defaults.int64_class;
5830         case MONO_TYPE_U8:
5831                 return type->data.klass? type->data.klass: mono_defaults.uint64_class;
5832         case MONO_TYPE_R4:
5833                 return type->data.klass? type->data.klass: mono_defaults.single_class;
5834         case MONO_TYPE_R8:
5835                 return type->data.klass? type->data.klass: mono_defaults.double_class;
5836         case MONO_TYPE_STRING:
5837                 return type->data.klass? type->data.klass: mono_defaults.string_class;
5838         case MONO_TYPE_TYPEDBYREF:
5839                 return type->data.klass? type->data.klass: mono_defaults.typed_reference_class;
5840         case MONO_TYPE_ARRAY:
5841                 return mono_bounded_array_class_get (type->data.array->eklass, type->data.array->rank, TRUE);
5842         case MONO_TYPE_PTR:
5843                 return mono_ptr_class_get (type->data.type);
5844         case MONO_TYPE_FNPTR:
5845                 return mono_fnptr_class_get (type->data.method);
5846         case MONO_TYPE_SZARRAY:
5847                 return mono_array_class_get (type->data.klass, 1);
5848         case MONO_TYPE_CLASS:
5849         case MONO_TYPE_VALUETYPE:
5850                 return type->data.klass;
5851         case MONO_TYPE_GENERICINST:
5852                 return mono_generic_class_get_class (type->data.generic_class);
5853         case MONO_TYPE_VAR:
5854                 return mono_class_from_generic_parameter (type->data.generic_param, NULL, FALSE);
5855         case MONO_TYPE_MVAR:
5856                 return mono_class_from_generic_parameter (type->data.generic_param, NULL, TRUE);
5857         default:
5858                 g_warning ("mono_class_from_mono_type: implement me 0x%02x\n", type->type);
5859                 g_assert_not_reached ();
5860         }
5861         
5862         return NULL;
5863 }
5864
5865 /**
5866  * mono_type_retrieve_from_typespec
5867  * @image: context where the image is created
5868  * @type_spec:  typespec token
5869  * @context: the generic context used to evaluate generic instantiations in
5870  */
5871 static MonoType *
5872 mono_type_retrieve_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, gboolean *did_inflate, MonoError *error)
5873 {
5874         MonoType *t = mono_type_create_from_typespec (image, type_spec);
5875
5876         mono_error_init (error);
5877         *did_inflate = FALSE;
5878
5879         if (!t) {
5880                 char *name = mono_class_name_from_token (image, type_spec);
5881                 char *assembly = mono_assembly_name_from_token (image, type_spec);
5882                 mono_error_set_type_load_name (error, name, assembly, "Could not resolve typespec token %08x", type_spec);
5883                 return NULL;
5884         }
5885
5886         if (context && (context->class_inst || context->method_inst)) {
5887                 MonoType *inflated = inflate_generic_type (NULL, t, context, error);
5888
5889                 if (!mono_error_ok (error))
5890                         return NULL;
5891
5892                 if (inflated) {
5893                         t = inflated;
5894                         *did_inflate = TRUE;
5895                 }
5896         }
5897         return t;
5898 }
5899
5900 /**
5901  * mono_class_create_from_typespec
5902  * @image: context where the image is created
5903  * @type_spec:  typespec token
5904  * @context: the generic context used to evaluate generic instantiations in
5905  */
5906 static MonoClass *
5907 mono_class_create_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, MonoError *error)
5908 {
5909         MonoClass *ret;
5910         gboolean inflated = FALSE;
5911         MonoType *t = mono_type_retrieve_from_typespec (image, type_spec, context, &inflated, error);
5912         if (!mono_error_ok (error))
5913                 return NULL;
5914         ret = mono_class_from_mono_type (t);
5915         if (inflated)
5916                 mono_metadata_free_type (t);
5917         return ret;
5918 }
5919
5920 /**
5921  * mono_bounded_array_class_get:
5922  * @element_class: element class 
5923  * @rank: the dimension of the array class
5924  * @bounded: whenever the array has non-zero bounds
5925  *
5926  * Returns: a class object describing the array with element type @element_type and 
5927  * dimension @rank. 
5928  */
5929 MonoClass *
5930 mono_bounded_array_class_get (MonoClass *eclass, guint32 rank, gboolean bounded)
5931 {
5932         MonoImage *image;
5933         MonoClass *class;
5934         MonoClass *parent = NULL;
5935         GSList *list, *rootlist = NULL;
5936         int nsize;
5937         char *name;
5938         gboolean corlib_type = FALSE;
5939
5940         g_assert (rank <= 255);
5941
5942         if (rank > 1)
5943                 /* bounded only matters for one-dimensional arrays */
5944                 bounded = FALSE;
5945
5946         image = eclass->image;
5947
5948         if (rank == 1 && !bounded) {
5949                 /* 
5950                  * This case is very frequent not just during compilation because of calls 
5951                  * from mono_class_from_mono_type (), mono_array_new (), 
5952                  * Array:CreateInstance (), etc, so use a separate cache + a separate lock.
5953                  */
5954                 EnterCriticalSection (&image->szarray_cache_lock);
5955                 if (!image->szarray_cache)
5956                         image->szarray_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
5957                 class = g_hash_table_lookup (image->szarray_cache, eclass);
5958                 LeaveCriticalSection (&image->szarray_cache_lock);
5959                 if (class)
5960                         return class;
5961
5962                 mono_loader_lock ();
5963         } else {
5964                 mono_loader_lock ();
5965
5966                 if (!image->array_cache)
5967                         image->array_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
5968
5969                 if ((rootlist = list = g_hash_table_lookup (image->array_cache, eclass))) {
5970                         for (; list; list = list->next) {
5971                                 class = list->data;
5972                                 if ((class->rank == rank) && (class->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
5973                                         mono_loader_unlock ();
5974                                         return class;
5975                                 }
5976                         }
5977                 }
5978         }
5979
5980         /* for the building corlib use System.Array from it */
5981         if (image->assembly && image->assembly->dynamic && image->assembly_name && strcmp (image->assembly_name, "mscorlib") == 0) {
5982                 parent = mono_class_from_name (image, "System", "Array");
5983                 corlib_type = TRUE;
5984         } else {
5985                 parent = mono_defaults.array_class;
5986                 if (!parent->inited)
5987                         mono_class_init (parent);
5988         }
5989
5990         class = mono_image_alloc0 (image, sizeof (MonoClass));
5991
5992         class->image = image;
5993         class->name_space = eclass->name_space;
5994         nsize = strlen (eclass->name);
5995         name = g_malloc (nsize + 2 + rank + 1);
5996         memcpy (name, eclass->name, nsize);
5997         name [nsize] = '[';
5998         if (rank > 1)
5999                 memset (name + nsize + 1, ',', rank - 1);
6000         if (bounded)
6001                 name [nsize + rank] = '*';
6002         name [nsize + rank + bounded] = ']';
6003         name [nsize + rank + bounded + 1] = 0;
6004         class->name = mono_image_strdup (image, name);
6005         g_free (name);
6006
6007         mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
6008
6009         classes_size += sizeof (MonoClass);
6010
6011         class->type_token = 0;
6012         /* all arrays are marked serializable and sealed, bug #42779 */
6013         class->flags = TYPE_ATTRIBUTE_CLASS | TYPE_ATTRIBUTE_SERIALIZABLE | TYPE_ATTRIBUTE_SEALED | TYPE_ATTRIBUTE_PUBLIC;
6014         class->parent = parent;
6015         class->instance_size = mono_class_instance_size (class->parent);
6016
6017         if (eclass->byval_arg.type == MONO_TYPE_TYPEDBYREF || eclass->byval_arg.type == MONO_TYPE_VOID) {
6018                 /*Arrays of those two types are invalid.*/
6019                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
6020         } else if (eclass->enumtype && !mono_class_enum_basetype (eclass)) {
6021                 if (!eclass->ref_info_handle || eclass->wastypebuilder) {
6022                         g_warning ("Only incomplete TypeBuilder objects are allowed to be an enum without base_type");
6023                         g_assert (eclass->ref_info_handle && !eclass->wastypebuilder);
6024                 }
6025                 /* element_size -1 is ok as this is not an instantitable type*/
6026                 class->sizes.element_size = -1;
6027         } else
6028                 class->sizes.element_size = mono_class_array_element_size (eclass);
6029
6030         mono_class_setup_supertypes (class);
6031
6032         if (eclass->generic_class)
6033                 mono_class_init (eclass);
6034         if (!eclass->size_inited)
6035                 mono_class_setup_fields (eclass);
6036         if (eclass->exception_type) /*FIXME we fail the array type, but we have to let other fields be set.*/
6037                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
6038
6039         class->has_references = MONO_TYPE_IS_REFERENCE (&eclass->byval_arg) || eclass->has_references? TRUE: FALSE;
6040
6041         class->rank = rank;
6042         
6043         if (eclass->enumtype)
6044                 class->cast_class = eclass->element_class;
6045         else
6046                 class->cast_class = eclass;
6047
6048         switch (class->cast_class->byval_arg.type) {
6049         case MONO_TYPE_I1:
6050                 class->cast_class = mono_defaults.byte_class;
6051                 break;
6052         case MONO_TYPE_U2:
6053                 class->cast_class = mono_defaults.int16_class;
6054                 break;
6055         case MONO_TYPE_U4:
6056 #if SIZEOF_VOID_P == 4
6057         case MONO_TYPE_I:
6058         case MONO_TYPE_U:
6059 #endif
6060                 class->cast_class = mono_defaults.int32_class;
6061                 break;
6062         case MONO_TYPE_U8:
6063 #if SIZEOF_VOID_P == 8
6064         case MONO_TYPE_I:
6065         case MONO_TYPE_U:
6066 #endif
6067                 class->cast_class = mono_defaults.int64_class;
6068                 break;
6069         }
6070
6071         class->element_class = eclass;
6072
6073         if ((rank > 1) || bounded) {
6074                 MonoArrayType *at = mono_image_alloc0 (image, sizeof (MonoArrayType));
6075                 class->byval_arg.type = MONO_TYPE_ARRAY;
6076                 class->byval_arg.data.array = at;
6077                 at->eklass = eclass;
6078                 at->rank = rank;
6079                 /* FIXME: complete.... */
6080         } else {
6081                 class->byval_arg.type = MONO_TYPE_SZARRAY;
6082                 class->byval_arg.data.klass = eclass;
6083         }
6084         class->this_arg = class->byval_arg;
6085         class->this_arg.byref = 1;
6086         if (corlib_type) {
6087                 class->inited = 1;
6088         }
6089
6090         class->generic_container = eclass->generic_container;
6091
6092         if (rank == 1 && !bounded) {
6093                 MonoClass *prev_class;
6094
6095                 EnterCriticalSection (&image->szarray_cache_lock);
6096                 prev_class = g_hash_table_lookup (image->szarray_cache, eclass);
6097                 if (prev_class)
6098                         /* Someone got in before us */
6099                         class = prev_class;
6100                 else
6101                         g_hash_table_insert (image->szarray_cache, eclass, class);
6102                 LeaveCriticalSection (&image->szarray_cache_lock);
6103         } else {
6104                 list = g_slist_append (rootlist, class);
6105                 g_hash_table_insert (image->array_cache, eclass, list);
6106         }
6107
6108         mono_loader_unlock ();
6109
6110         mono_profiler_class_loaded (class, MONO_PROFILE_OK);
6111
6112         return class;
6113 }
6114
6115 /**
6116  * mono_array_class_get:
6117  * @element_class: element class 
6118  * @rank: the dimension of the array class
6119  *
6120  * Returns: a class object describing the array with element type @element_type and 
6121  * dimension @rank. 
6122  */
6123 MonoClass *
6124 mono_array_class_get (MonoClass *eclass, guint32 rank)
6125 {
6126         return mono_bounded_array_class_get (eclass, rank, FALSE);
6127 }
6128
6129 /**
6130  * mono_class_instance_size:
6131  * @klass: a class 
6132  * 
6133  * Returns: the size of an object instance
6134  */
6135 gint32
6136 mono_class_instance_size (MonoClass *klass)
6137 {       
6138         if (!klass->size_inited)
6139                 mono_class_init (klass);
6140
6141         return klass->instance_size;
6142 }
6143
6144 /**
6145  * mono_class_min_align:
6146  * @klass: a class 
6147  * 
6148  * Returns: minimm alignment requirements 
6149  */
6150 gint32
6151 mono_class_min_align (MonoClass *klass)
6152 {       
6153         if (!klass->size_inited)
6154                 mono_class_init (klass);
6155
6156         return klass->min_align;
6157 }
6158
6159 /**
6160  * mono_class_value_size:
6161  * @klass: a class 
6162  *
6163  * This function is used for value types, and return the
6164  * space and the alignment to store that kind of value object.
6165  *
6166  * Returns: the size of a value of kind @klass
6167  */
6168 gint32
6169 mono_class_value_size      (MonoClass *klass, guint32 *align)
6170 {
6171         gint32 size;
6172
6173         /* fixme: check disable, because we still have external revereces to
6174          * mscorlib and Dummy Objects 
6175          */
6176         /*g_assert (klass->valuetype);*/
6177
6178         size = mono_class_instance_size (klass) - sizeof (MonoObject);
6179
6180         if (align)
6181                 *align = klass->min_align;
6182
6183         return size;
6184 }
6185
6186 /**
6187  * mono_class_data_size:
6188  * @klass: a class 
6189  * 
6190  * Returns: the size of the static class data
6191  */
6192 gint32
6193 mono_class_data_size (MonoClass *klass)
6194 {       
6195         if (!klass->inited)
6196                 mono_class_init (klass);
6197
6198         /* in arrays, sizes.class_size is unioned with element_size
6199          * and arrays have no static fields
6200          */
6201         if (klass->rank)
6202                 return 0;
6203         return klass->sizes.class_size;
6204 }
6205
6206 /*
6207  * Auxiliary routine to mono_class_get_field
6208  *
6209  * Takes a field index instead of a field token.
6210  */
6211 static MonoClassField *
6212 mono_class_get_field_idx (MonoClass *class, int idx)
6213 {
6214         mono_class_setup_fields_locking (class);
6215         if (class->exception_type)
6216                 return NULL;
6217
6218         while (class) {
6219                 if (class->image->uncompressed_metadata) {
6220                         /* 
6221                          * class->field.first points to the FieldPtr table, while idx points into the
6222                          * Field table, so we have to do a search.
6223                          */
6224                         /*FIXME this is broken for types with multiple fields with the same name.*/
6225                         const char *name = mono_metadata_string_heap (class->image, mono_metadata_decode_row_col (&class->image->tables [MONO_TABLE_FIELD], idx, MONO_FIELD_NAME));
6226                         int i;
6227
6228                         for (i = 0; i < class->field.count; ++i)
6229                                 if (mono_field_get_name (&class->fields [i]) == name)
6230                                         return &class->fields [i];
6231                         g_assert_not_reached ();
6232                 } else {                        
6233                         if (class->field.count) {
6234                                 if ((idx >= class->field.first) && (idx < class->field.first + class->field.count)){
6235                                         return &class->fields [idx - class->field.first];
6236                                 }
6237                         }
6238                 }
6239                 class = class->parent;
6240         }
6241         return NULL;
6242 }
6243
6244 /**
6245  * mono_class_get_field:
6246  * @class: the class to lookup the field.
6247  * @field_token: the field token
6248  *
6249  * Returns: A MonoClassField representing the type and offset of
6250  * the field, or a NULL value if the field does not belong to this
6251  * class.
6252  */
6253 MonoClassField *
6254 mono_class_get_field (MonoClass *class, guint32 field_token)
6255 {
6256         int idx = mono_metadata_token_index (field_token);
6257
6258         g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
6259
6260         return mono_class_get_field_idx (class, idx - 1);
6261 }
6262
6263 /**
6264  * mono_class_get_field_from_name:
6265  * @klass: the class to lookup the field.
6266  * @name: the field name
6267  *
6268  * Search the class @klass and it's parents for a field with the name @name.
6269  * 
6270  * Returns: the MonoClassField pointer of the named field or NULL
6271  */
6272 MonoClassField *
6273 mono_class_get_field_from_name (MonoClass *klass, const char *name)
6274 {
6275         return mono_class_get_field_from_name_full (klass, name, NULL);
6276 }
6277
6278 /**
6279  * mono_class_get_field_from_name_full:
6280  * @klass: the class to lookup the field.
6281  * @name: the field name
6282  * @type: the type of the fields. This optional.
6283  *
6284  * Search the class @klass and it's parents for a field with the name @name and type @type.
6285  *
6286  * If @klass is an inflated generic type, the type comparison is done with the equivalent field
6287  * of its generic type definition.
6288  *
6289  * Returns: the MonoClassField pointer of the named field or NULL
6290  */
6291 MonoClassField *
6292 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type)
6293 {
6294         int i;
6295
6296         mono_class_setup_fields_locking (klass);
6297         if (klass->exception_type)
6298                 return NULL;
6299
6300         while (klass) {
6301                 for (i = 0; i < klass->field.count; ++i) {
6302                         MonoClassField *field = &klass->fields [i];
6303
6304                         if (strcmp (name, mono_field_get_name (field)) != 0)
6305                                 continue;
6306
6307                         if (type) {
6308                                 MonoType *field_type = mono_metadata_get_corresponding_field_from_generic_type_definition (field)->type;
6309                                 if (!mono_metadata_type_equal_full (type, field_type, TRUE))
6310                                         continue;
6311                         }
6312                         return field;
6313                 }
6314                 klass = klass->parent;
6315         }
6316         return NULL;
6317 }
6318
6319 /**
6320  * mono_class_get_field_token:
6321  * @field: the field we need the token of
6322  *
6323  * Get the token of a field. Note that the tokesn is only valid for the image
6324  * the field was loaded from. Don't use this function for fields in dynamic types.
6325  * 
6326  * Returns: the token representing the field in the image it was loaded from.
6327  */
6328 guint32
6329 mono_class_get_field_token (MonoClassField *field)
6330 {
6331         MonoClass *klass = field->parent;
6332         int i;
6333
6334         mono_class_setup_fields_locking (klass);
6335         if (klass->exception_type)
6336                 return 0;
6337
6338         while (klass) {
6339                 for (i = 0; i < klass->field.count; ++i) {
6340                         if (&klass->fields [i] == field) {
6341                                 int idx = klass->field.first + i + 1;
6342
6343                                 if (klass->image->uncompressed_metadata)
6344                                         idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_FIELD, idx);
6345                                 return mono_metadata_make_token (MONO_TABLE_FIELD, idx);
6346                         }
6347                 }
6348                 klass = klass->parent;
6349         }
6350
6351         g_assert_not_reached ();
6352         return 0;
6353 }
6354
6355 static int
6356 mono_field_get_index (MonoClassField *field)
6357 {
6358         int index = field - field->parent->fields;
6359
6360         g_assert (index >= 0 && index < field->parent->field.count);
6361
6362         return index;
6363 }
6364
6365 /*
6366  * mono_class_get_field_default_value:
6367  *
6368  * Return the default value of the field as a pointer into the metadata blob.
6369  */
6370 const char*
6371 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type)
6372 {
6373         guint32 cindex;
6374         guint32 constant_cols [MONO_CONSTANT_SIZE];
6375         int field_index;
6376         MonoClass *klass = field->parent;
6377
6378         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT);
6379
6380         if (!klass->ext || !klass->ext->field_def_values) {
6381                 mono_loader_lock ();
6382                 mono_class_alloc_ext (klass);
6383                 if (!klass->ext->field_def_values)
6384                         klass->ext->field_def_values = mono_class_alloc0 (klass, sizeof (MonoFieldDefaultValue) * klass->field.count);
6385                 mono_loader_unlock ();
6386         }
6387
6388         field_index = mono_field_get_index (field);
6389                 
6390         if (!klass->ext->field_def_values [field_index].data) {
6391                 cindex = mono_metadata_get_constant_index (field->parent->image, mono_class_get_field_token (field), 0);
6392                 g_assert (cindex);
6393                 g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA));
6394
6395                 mono_metadata_decode_row (&field->parent->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
6396                 klass->ext->field_def_values [field_index].def_type = constant_cols [MONO_CONSTANT_TYPE];
6397                 klass->ext->field_def_values [field_index].data = (gpointer)mono_metadata_blob_heap (field->parent->image, constant_cols [MONO_CONSTANT_VALUE]);
6398         }
6399
6400         *def_type = klass->ext->field_def_values [field_index].def_type;
6401         return klass->ext->field_def_values [field_index].data;
6402 }
6403
6404 static int
6405 mono_property_get_index (MonoProperty *prop)
6406 {
6407         int index = prop - prop->parent->ext->properties;
6408
6409         g_assert (index >= 0 && index < prop->parent->ext->property.count);
6410
6411         return index;
6412 }
6413
6414 /*
6415  * mono_class_get_property_default_value:
6416  *
6417  * Return the default value of the field as a pointer into the metadata blob.
6418  */
6419 const char*
6420 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type)
6421 {
6422         guint32 cindex;
6423         guint32 constant_cols [MONO_CONSTANT_SIZE];
6424         MonoClass *klass = property->parent;
6425
6426         g_assert (property->attrs & PROPERTY_ATTRIBUTE_HAS_DEFAULT);
6427         /*
6428          * We don't cache here because it is not used by C# so it's quite rare, but
6429          * we still do the lookup in klass->ext because that is where the data
6430          * is stored for dynamic assemblies.
6431          */
6432
6433         if (klass->image->dynamic) {
6434                 int prop_index = mono_property_get_index (property);
6435                 if (klass->ext->prop_def_values && klass->ext->prop_def_values [prop_index].data) {
6436                         *def_type = klass->ext->prop_def_values [prop_index].def_type;
6437                         return klass->ext->prop_def_values [prop_index].data;
6438                 }
6439                 return NULL;
6440         }
6441         cindex = mono_metadata_get_constant_index (klass->image, mono_class_get_property_token (property), 0);
6442         if (!cindex)
6443                 return NULL;
6444
6445         mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
6446         *def_type = constant_cols [MONO_CONSTANT_TYPE];
6447         return (gpointer)mono_metadata_blob_heap (klass->image, constant_cols [MONO_CONSTANT_VALUE]);
6448 }
6449
6450 guint32
6451 mono_class_get_event_token (MonoEvent *event)
6452 {
6453         MonoClass *klass = event->parent;
6454         int i;
6455
6456         while (klass) {
6457                 if (klass->ext) {
6458                         for (i = 0; i < klass->ext->event.count; ++i) {
6459                                 if (&klass->ext->events [i] == event)
6460                                         return mono_metadata_make_token (MONO_TABLE_EVENT, klass->ext->event.first + i + 1);
6461                         }
6462                 }
6463                 klass = klass->parent;
6464         }
6465
6466         g_assert_not_reached ();
6467         return 0;
6468 }
6469
6470 MonoProperty*
6471 mono_class_get_property_from_name (MonoClass *klass, const char *name)
6472 {
6473         while (klass) {
6474                 MonoProperty* p;
6475                 gpointer iter = NULL;
6476                 while ((p = mono_class_get_properties (klass, &iter))) {
6477                         if (! strcmp (name, p->name))
6478                                 return p;
6479                 }
6480                 klass = klass->parent;
6481         }
6482         return NULL;
6483 }
6484
6485 guint32
6486 mono_class_get_property_token (MonoProperty *prop)
6487 {
6488         MonoClass *klass = prop->parent;
6489         while (klass) {
6490                 MonoProperty* p;
6491                 int i = 0;
6492                 gpointer iter = NULL;
6493                 while ((p = mono_class_get_properties (klass, &iter))) {
6494                         if (&klass->ext->properties [i] == prop)
6495                                 return mono_metadata_make_token (MONO_TABLE_PROPERTY, klass->ext->property.first + i + 1);
6496                         
6497                         i ++;
6498                 }
6499                 klass = klass->parent;
6500         }
6501
6502         g_assert_not_reached ();
6503         return 0;
6504 }
6505
6506 char *
6507 mono_class_name_from_token (MonoImage *image, guint32 type_token)
6508 {
6509         const char *name, *nspace;
6510         if (image->dynamic)
6511                 return g_strdup_printf ("DynamicType 0x%08x", type_token);
6512         
6513         switch (type_token & 0xff000000){
6514         case MONO_TOKEN_TYPE_DEF: {
6515                 guint32 cols [MONO_TYPEDEF_SIZE];
6516                 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
6517                 guint tidx = mono_metadata_token_index (type_token);
6518
6519                 if (tidx > tt->rows)
6520                         return g_strdup_printf ("Invalid type token 0x%08x", type_token);
6521
6522                 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
6523                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
6524                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
6525                 if (strlen (nspace) == 0)
6526                         return g_strdup_printf ("%s", name);
6527                 else
6528                         return g_strdup_printf ("%s.%s", nspace, name);
6529         }
6530
6531         case MONO_TOKEN_TYPE_REF: {
6532                 MonoError error;
6533                 guint32 cols [MONO_TYPEREF_SIZE];
6534                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
6535                 guint tidx = mono_metadata_token_index (type_token);
6536
6537                 if (tidx > t->rows)
6538                         return g_strdup_printf ("Invalid type token 0x%08x", type_token);
6539
6540                 if (!mono_verifier_verify_typeref_row (image, tidx - 1, &error)) {
6541                         char *msg = g_strdup_printf ("Invalid type token 0x%08x due to '%s'", type_token, mono_error_get_message (&error));
6542                         mono_error_cleanup (&error);
6543                         return msg;
6544                 }
6545
6546                 mono_metadata_decode_row (t, tidx-1, cols, MONO_TYPEREF_SIZE);
6547                 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
6548                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
6549                 if (strlen (nspace) == 0)
6550                         return g_strdup_printf ("%s", name);
6551                 else
6552                         return g_strdup_printf ("%s.%s", nspace, name);
6553         }
6554                 
6555         case MONO_TOKEN_TYPE_SPEC:
6556                 return g_strdup_printf ("Typespec 0x%08x", type_token);
6557         default:
6558                 return g_strdup_printf ("Invalid type token 0x%08x", type_token);
6559         }
6560 }
6561
6562 static char *
6563 mono_assembly_name_from_token (MonoImage *image, guint32 type_token)
6564 {
6565         if (image->dynamic)
6566                 return g_strdup_printf ("DynamicAssembly %s", image->name);
6567         
6568         switch (type_token & 0xff000000){
6569         case MONO_TOKEN_TYPE_DEF:
6570                 if (image->assembly)
6571                         return mono_stringify_assembly_name (&image->assembly->aname);
6572                 else if (image->assembly_name)
6573                         return g_strdup (image->assembly_name);
6574                 return g_strdup_printf ("%s", image->name ? image->name : "[Could not resolve assembly name");
6575         case MONO_TOKEN_TYPE_REF: {
6576                 MonoError error;
6577                 MonoAssemblyName aname;
6578                 guint32 cols [MONO_TYPEREF_SIZE];
6579                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
6580                 guint32 idx = mono_metadata_token_index (type_token);
6581
6582                 if (idx > t->rows)
6583                         return g_strdup_printf ("Invalid type token 0x%08x", type_token);
6584         
6585                 if (!mono_verifier_verify_typeref_row (image, idx - 1, &error)) {
6586                         char *msg = g_strdup_printf ("Invalid type token 0x%08x due to '%s'", type_token, mono_error_get_message (&error));
6587                         mono_error_cleanup (&error);
6588                         return msg;
6589                 }
6590                 mono_metadata_decode_row (t, idx-1, cols, MONO_TYPEREF_SIZE);
6591
6592                 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
6593                 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
6594                 case MONO_RESOLTION_SCOPE_MODULE:
6595                         /* FIXME: */
6596                         return g_strdup ("");
6597                 case MONO_RESOLTION_SCOPE_MODULEREF:
6598                         /* FIXME: */
6599                         return g_strdup ("");
6600                 case MONO_RESOLTION_SCOPE_TYPEREF:
6601                         /* FIXME: */
6602                         return g_strdup ("");
6603                 case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
6604                         mono_assembly_get_assemblyref (image, idx - 1, &aname);
6605                         return mono_stringify_assembly_name (&aname);
6606                 default:
6607                         g_assert_not_reached ();
6608                 }
6609                 break;
6610         }
6611         case MONO_TOKEN_TYPE_SPEC:
6612                 /* FIXME: */
6613                 return g_strdup ("");
6614         default:
6615                 g_assert_not_reached ();
6616         }
6617
6618         return NULL;
6619 }
6620
6621 /**
6622  * mono_class_get_full:
6623  * @image: the image where the class resides
6624  * @type_token: the token for the class
6625  * @context: the generic context used to evaluate generic instantiations in
6626  *
6627  * Returns: the MonoClass that represents @type_token in @image
6628  */
6629 MonoClass *
6630 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
6631 {
6632         MonoError error;
6633         MonoClass *class = NULL;
6634
6635         if (image->dynamic) {
6636                 int table = mono_metadata_token_table (type_token);
6637
6638                 if (table != MONO_TABLE_TYPEDEF && table != MONO_TABLE_TYPEREF && table != MONO_TABLE_TYPESPEC) {
6639                         mono_loader_set_error_bad_image (g_strdup ("Bad type token."));
6640                         return NULL;
6641                 }
6642                 return mono_lookup_dynamic_token (image, type_token, context);
6643         }
6644
6645         switch (type_token & 0xff000000){
6646         case MONO_TOKEN_TYPE_DEF:
6647                 class = mono_class_create_from_typedef (image, type_token);
6648                 break;          
6649         case MONO_TOKEN_TYPE_REF:
6650                 class = mono_class_from_typeref (image, type_token);
6651                 break;
6652         case MONO_TOKEN_TYPE_SPEC:
6653                 class = mono_class_create_from_typespec (image, type_token, context, &error);
6654                 if (!mono_error_ok (&error)) {
6655                         /*FIXME don't swallow the error message*/
6656                         mono_error_cleanup (&error);
6657                 }
6658                 break;
6659         default:
6660                 g_warning ("unknown token type %x", type_token & 0xff000000);
6661                 g_assert_not_reached ();
6662         }
6663
6664         if (!class){
6665                 char *name = mono_class_name_from_token (image, type_token);
6666                 char *assembly = mono_assembly_name_from_token (image, type_token);
6667                 mono_loader_set_error_type_load (name, assembly);
6668                 g_free (name);
6669                 g_free (assembly);
6670         }
6671
6672         return class;
6673 }
6674
6675
6676 /**
6677  * mono_type_get_full:
6678  * @image: the image where the type resides
6679  * @type_token: the token for the type
6680  * @context: the generic context used to evaluate generic instantiations in
6681  *
6682  * This functions exists to fullfill the fact that sometimes it's desirable to have access to the 
6683  * 
6684  * Returns: the MonoType that represents @type_token in @image
6685  */
6686 MonoType *
6687 mono_type_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
6688 {
6689         MonoError error;
6690         MonoType *type = NULL;
6691         gboolean inflated = FALSE;
6692
6693         //FIXME: this will not fix the very issue for which mono_type_get_full exists -but how to do it then?
6694         if (image->dynamic)
6695                 return mono_class_get_type (mono_lookup_dynamic_token (image, type_token, context));
6696
6697         if ((type_token & 0xff000000) != MONO_TOKEN_TYPE_SPEC) {
6698                 MonoClass *class = mono_class_get_full (image, type_token, context);
6699                 return class ? mono_class_get_type (class) : NULL;
6700         }
6701
6702         type = mono_type_retrieve_from_typespec (image, type_token, context, &inflated, &error);
6703
6704         if (!mono_error_ok (&error)) {
6705                 /*FIXME don't swalloc the error message.*/
6706                 char *name = mono_class_name_from_token (image, type_token);
6707                 char *assembly = mono_assembly_name_from_token (image, type_token);
6708
6709                 g_warning ("Error loading type %s from %s due to %s", name, assembly, mono_error_get_message (&error));
6710
6711                 mono_error_cleanup (&error);
6712                 mono_loader_set_error_type_load (name, assembly);
6713                 return NULL;
6714         }
6715
6716         if (inflated) {
6717                 MonoType *tmp = type;
6718                 type = mono_class_get_type (mono_class_from_mono_type (type));
6719                 /* FIXME: This is a workaround fo the fact that a typespec token sometimes reference to the generic type definition.
6720                  * A MonoClass::byval_arg of a generic type definion has type CLASS.
6721                  * Some parts of mono create a GENERICINST to reference a generic type definition and this generates confict with byval_arg.
6722                  *
6723                  * The long term solution is to chaise this places and make then set MonoType::type correctly.
6724                  * */
6725                 if (type->type != tmp->type)
6726                         type = tmp;
6727                 else
6728                         mono_metadata_free_type (tmp);
6729         }
6730         return type;
6731 }
6732
6733
6734 MonoClass *
6735 mono_class_get (MonoImage *image, guint32 type_token)
6736 {
6737         return mono_class_get_full (image, type_token, NULL);
6738 }
6739
6740 /**
6741  * mono_image_init_name_cache:
6742  *
6743  *  Initializes the class name cache stored in image->name_cache.
6744  *
6745  * LOCKING: Acquires the corresponding image lock.
6746  */
6747 void
6748 mono_image_init_name_cache (MonoImage *image)
6749 {
6750         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
6751         guint32 cols [MONO_TYPEDEF_SIZE];
6752         const char *name;
6753         const char *nspace;
6754         guint32 i, visib, nspace_index;
6755         GHashTable *name_cache2, *nspace_table;
6756
6757         mono_image_lock (image);
6758
6759         if (image->name_cache) {
6760                 mono_image_unlock (image);
6761                 return;
6762         }
6763
6764         image->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
6765
6766         if (image->dynamic) {
6767                 mono_image_unlock (image);
6768                 return;
6769         }
6770
6771         /* Temporary hash table to avoid lookups in the nspace_table */
6772         name_cache2 = g_hash_table_new (NULL, NULL);
6773
6774         for (i = 1; i <= t->rows; ++i) {
6775                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
6776                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
6777                 /*
6778                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
6779                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
6780                  */
6781                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
6782                         continue;
6783                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
6784                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
6785
6786                 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
6787                 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
6788                 if (!nspace_table) {
6789                         nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
6790                         g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
6791                         g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
6792                                                                  nspace_table);
6793                 }
6794                 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
6795         }
6796
6797         /* Load type names from EXPORTEDTYPES table */
6798         {
6799                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
6800                 guint32 cols [MONO_EXP_TYPE_SIZE];
6801                 int i;
6802
6803                 for (i = 0; i < t->rows; ++i) {
6804                         mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
6805                         name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
6806                         nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
6807
6808                         nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
6809                         nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
6810                         if (!nspace_table) {
6811                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
6812                                 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
6813                                 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
6814                                                                          nspace_table);
6815                         }
6816                         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
6817                 }
6818         }
6819
6820         g_hash_table_destroy (name_cache2);
6821         mono_image_unlock (image);
6822 }
6823
6824 /*FIXME Only dynamic assemblies should allow this operation.*/
6825 void
6826 mono_image_add_to_name_cache (MonoImage *image, const char *nspace, 
6827                                                           const char *name, guint32 index)
6828 {
6829         GHashTable *nspace_table;
6830         GHashTable *name_cache;
6831         guint32 old_index;
6832
6833         mono_image_lock (image);
6834
6835         if (!image->name_cache)
6836                 mono_image_init_name_cache (image);
6837
6838         name_cache = image->name_cache;
6839         if (!(nspace_table = g_hash_table_lookup (name_cache, nspace))) {
6840                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
6841                 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
6842         }
6843
6844         if ((old_index = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, (char*) name))))
6845                 g_error ("overrwritting old token %x on image %s for type %s::%s", old_index, image->name, nspace, name);
6846
6847         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
6848
6849         mono_image_unlock (image);
6850 }
6851
6852 typedef struct {
6853         gconstpointer key;
6854         gpointer value;
6855 } FindUserData;
6856
6857 static void
6858 find_nocase (gpointer key, gpointer value, gpointer user_data)
6859 {
6860         char *name = (char*)key;
6861         FindUserData *data = (FindUserData*)user_data;
6862
6863         if (!data->value && (mono_utf8_strcasecmp (name, (char*)data->key) == 0))
6864                 data->value = value;
6865 }
6866
6867 /**
6868  * mono_class_from_name_case:
6869  * @image: The MonoImage where the type is looked up in
6870  * @name_space: the type namespace
6871  * @name: the type short name.
6872  *
6873  * Obtains a MonoClass with a given namespace and a given name which
6874  * is located in the given MonoImage.   The namespace and name
6875  * lookups are case insensitive.
6876  */
6877 MonoClass *
6878 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
6879 {
6880         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
6881         guint32 cols [MONO_TYPEDEF_SIZE];
6882         const char *n;
6883         const char *nspace;
6884         guint32 i, visib;
6885
6886         if (image->dynamic) {
6887                 guint32 token = 0;
6888                 FindUserData user_data;
6889
6890                 mono_image_lock (image);
6891
6892                 if (!image->name_cache)
6893                         mono_image_init_name_cache (image);
6894
6895                 user_data.key = name_space;
6896                 user_data.value = NULL;
6897                 g_hash_table_foreach (image->name_cache, find_nocase, &user_data);
6898
6899                 if (user_data.value) {
6900                         GHashTable *nspace_table = (GHashTable*)user_data.value;
6901
6902                         user_data.key = name;
6903                         user_data.value = NULL;
6904
6905                         g_hash_table_foreach (nspace_table, find_nocase, &user_data);
6906                         
6907                         if (user_data.value)
6908                                 token = GPOINTER_TO_UINT (user_data.value);
6909                 }
6910
6911                 mono_image_unlock (image);
6912                 
6913                 if (token)
6914                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | token);
6915                 else
6916                         return NULL;
6917
6918         }
6919
6920         /* add a cache if needed */
6921         for (i = 1; i <= t->rows; ++i) {
6922                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
6923                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
6924                 /*
6925                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
6926                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
6927                  */
6928                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
6929                         continue;
6930                 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
6931                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
6932                 if (mono_utf8_strcasecmp (n, name) == 0 && mono_utf8_strcasecmp (nspace, name_space) == 0)
6933                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | i);
6934         }
6935         return NULL;
6936 }
6937
6938 static MonoClass*
6939 return_nested_in (MonoClass *class, char *nested)
6940 {
6941         MonoClass *found;
6942         char *s = strchr (nested, '/');
6943         gpointer iter = NULL;
6944
6945         if (s) {
6946                 *s = 0;
6947                 s++;
6948         }
6949
6950         while ((found = mono_class_get_nested_types (class, &iter))) {
6951                 if (strcmp (found->name, nested) == 0) {
6952                         if (s)
6953                                 return return_nested_in (found, s);
6954                         return found;
6955                 }
6956         }
6957         return NULL;
6958 }
6959
6960 static MonoClass*
6961 search_modules (MonoImage *image, const char *name_space, const char *name)
6962 {
6963         MonoTableInfo *file_table = &image->tables [MONO_TABLE_FILE];
6964         MonoImage *file_image;
6965         MonoClass *class;
6966         int i;
6967
6968         /* 
6969          * The EXPORTEDTYPES table only contains public types, so have to search the
6970          * modules as well.
6971          * Note: image->modules contains the contents of the MODULEREF table, while
6972          * the real module list is in the FILE table.
6973          */
6974         for (i = 0; i < file_table->rows; i++) {
6975                 guint32 cols [MONO_FILE_SIZE];
6976                 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
6977                 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
6978                         continue;
6979
6980                 file_image = mono_image_load_file_for_image (image, i + 1);
6981                 if (file_image) {
6982                         class = mono_class_from_name (file_image, name_space, name);
6983                         if (class)
6984                                 return class;
6985                 }
6986         }
6987
6988         return NULL;
6989 }
6990
6991 /**
6992  * mono_class_from_name:
6993  * @image: The MonoImage where the type is looked up in
6994  * @name_space: the type namespace
6995  * @name: the type short name.
6996  *
6997  * Obtains a MonoClass with a given namespace and a given name which
6998  * is located in the given MonoImage.   
6999  */
7000 MonoClass *
7001 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
7002 {
7003         GHashTable *nspace_table;
7004         MonoImage *loaded_image;
7005         guint32 token = 0;
7006         int i;
7007         MonoClass *class;
7008         char *nested;
7009         char buf [1024];
7010
7011         if ((nested = strchr (name, '/'))) {
7012                 int pos = nested - name;
7013                 int len = strlen (name);
7014                 if (len > 1023)
7015                         return NULL;
7016                 memcpy (buf, name, len + 1);
7017                 buf [pos] = 0;
7018                 nested = buf + pos + 1;
7019                 name = buf;
7020         }
7021
7022         if (get_class_from_name) {
7023                 gboolean res = get_class_from_name (image, name_space, name, &class);
7024                 if (res) {
7025                         if (!class)
7026                                 class = search_modules (image, name_space, name);
7027                         if (nested)
7028                                 return class ? return_nested_in (class, nested) : NULL;
7029                         else
7030                                 return class;
7031                 }
7032         }
7033
7034         mono_image_lock (image);
7035
7036         if (!image->name_cache)
7037                 mono_image_init_name_cache (image);
7038
7039         nspace_table = g_hash_table_lookup (image->name_cache, name_space);
7040
7041         if (nspace_table)
7042                 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
7043
7044         mono_image_unlock (image);
7045
7046         if (!token && image->dynamic && image->modules) {
7047                 /* Search modules as well */
7048                 for (i = 0; i < image->module_count; ++i) {
7049                         MonoImage *module = image->modules [i];
7050
7051                         class = mono_class_from_name (module, name_space, name);
7052                         if (class)
7053                                 return class;
7054                 }
7055         }
7056
7057         if (!token) {
7058                 class = search_modules (image, name_space, name);
7059                 if (class)
7060                         return class;
7061         }
7062
7063         if (!token)
7064                 return NULL;
7065
7066         if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
7067                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
7068                 guint32 cols [MONO_EXP_TYPE_SIZE];
7069                 guint32 idx, impl;
7070
7071                 idx = mono_metadata_token_index (token);
7072
7073                 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
7074
7075                 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
7076                 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
7077                         loaded_image = mono_assembly_load_module (image->assembly, impl >> MONO_IMPLEMENTATION_BITS);
7078                         if (!loaded_image)
7079                                 return NULL;
7080                         class = mono_class_from_name (loaded_image, name_space, name);
7081                         if (nested)
7082                                 return return_nested_in (class, nested);
7083                         return class;
7084                 } else if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_ASSEMBLYREF) {
7085                         guint32 assembly_idx;
7086
7087                         assembly_idx = impl >> MONO_IMPLEMENTATION_BITS;
7088
7089                         mono_assembly_load_reference (image, assembly_idx - 1);
7090                         g_assert (image->references [assembly_idx - 1]);
7091                         if (image->references [assembly_idx - 1] == (gpointer)-1)
7092                                 return NULL;                    
7093                         else
7094                                 /* FIXME: Cycle detection */
7095                                 return mono_class_from_name (image->references [assembly_idx - 1]->image, name_space, name);
7096                 } else {
7097                         g_error ("not yet implemented");
7098                 }
7099         }
7100
7101         token = MONO_TOKEN_TYPE_DEF | token;
7102
7103         class = mono_class_get (image, token);
7104         if (nested)
7105                 return return_nested_in (class, nested);
7106         return class;
7107 }
7108
7109 /*FIXME test for interfaces with variant generic arguments*/
7110 gboolean
7111 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc, 
7112                            gboolean check_interfaces)
7113 {
7114         g_assert (klassc->idepth > 0);
7115         if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
7116                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, klassc->interface_id))
7117                         return TRUE;
7118         } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
7119                 int i;
7120
7121                 for (i = 0; i < klass->interface_count; i ++) {
7122                         MonoClass *ic =  klass->interfaces [i];
7123                         if (ic == klassc)
7124                                 return TRUE;
7125                 }
7126         } else {
7127                 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
7128                         return TRUE;
7129         }
7130
7131         /* 
7132          * MS.NET thinks interfaces are a subclass of Object, so we think it as
7133          * well.
7134          */
7135         if (klassc == mono_defaults.object_class)
7136                 return TRUE;
7137
7138         return FALSE;
7139 }
7140
7141 gboolean
7142 mono_class_has_variant_generic_params (MonoClass *klass)
7143 {
7144         int i;
7145         MonoGenericContainer *container;
7146
7147         if (!klass->generic_class)
7148                 return FALSE;
7149
7150         container = klass->generic_class->container_class->generic_container;
7151
7152         for (i = 0; i < container->type_argc; ++i)
7153                 if (mono_generic_container_get_param_info (container, i)->flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT))
7154                         return TRUE;
7155
7156         return FALSE;
7157 }
7158
7159 /**
7160  * @container the generic container from the GTD
7161  * @klass: the class to be assigned to
7162  * @oklass: the source class
7163  * 
7164  * Both klass and oklass must be instances of the same generic interface.
7165  * Return true if @klass can be assigned to a @klass variable
7166  */
7167 static gboolean
7168 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass)
7169 {
7170         int j;
7171         MonoType **klass_argv, **oklass_argv;
7172         MonoClass *klass_gtd = mono_class_get_generic_type_definition (klass);
7173         MonoGenericContainer *container = klass_gtd->generic_container;
7174
7175         /*Viable candidates are instances of the same generic interface*/
7176         if (mono_class_get_generic_type_definition (oklass) != klass_gtd)
7177                 return FALSE;
7178
7179         klass_argv = &klass->generic_class->context.class_inst->type_argv [0];
7180         oklass_argv = &oklass->generic_class->context.class_inst->type_argv [0];
7181
7182         for (j = 0; j < container->type_argc; ++j) {
7183                 MonoClass *param1_class = mono_class_from_mono_type (klass_argv [j]);
7184                 MonoClass *param2_class = mono_class_from_mono_type (oklass_argv [j]);
7185
7186                 if (param1_class->valuetype != param2_class->valuetype)
7187                         return FALSE;
7188
7189                 /*
7190                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
7191                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
7192                  */
7193                 if (param1_class != param2_class) {
7194                         if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_VARIANT) {
7195                                 if (!mono_class_is_assignable_from (param1_class, param2_class))
7196                                         return FALSE;
7197                         } else if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_COVARIANT) {
7198                                 if (!mono_class_is_assignable_from (param2_class, param1_class))
7199                                         return FALSE;
7200                         } else
7201                                 return FALSE;
7202                 }
7203         }
7204         return TRUE;
7205 }
7206
7207 /**
7208  * mono_class_is_assignable_from:
7209  * @klass: the class to be assigned to
7210  * @oklass: the source class
7211  *
7212  * Return: true if an instance of object oklass can be assigned to an
7213  * instance of object @klass
7214  */
7215 gboolean
7216 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
7217 {
7218         /*FIXME this will cause a lot of irrelevant stuff to be loaded.*/
7219         if (!klass->inited)
7220                 mono_class_init (klass);
7221
7222         if (!oklass->inited)
7223                 mono_class_init (oklass);
7224
7225         if (klass->exception_type || oklass->exception_type)
7226                 return FALSE;
7227
7228         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
7229                 return klass == oklass;
7230
7231         if (MONO_CLASS_IS_INTERFACE (klass)) {
7232                 if ((oklass->byval_arg.type == MONO_TYPE_VAR) || (oklass->byval_arg.type == MONO_TYPE_MVAR))
7233                         return FALSE;
7234
7235                 /* interface_offsets might not be set for dynamic classes */
7236                 if (oklass->ref_info_handle && !oklass->interface_bitmap)
7237                         /* 
7238                          * oklass might be a generic type parameter but they have 
7239                          * interface_offsets set.
7240                          */
7241                         return mono_reflection_call_is_assignable_to (oklass, klass);
7242                 if (!oklass->interface_bitmap)
7243                         /* Happens with generic instances of not-yet created dynamic types */
7244                         return FALSE;
7245                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (oklass, klass->interface_id))
7246                         return TRUE;
7247
7248                 if (mono_class_has_variant_generic_params (klass)) {
7249                         MonoError error;
7250                         int i;
7251                         mono_class_setup_interfaces (oklass, &error);
7252                         if (!mono_error_ok (&error)) {
7253                                 mono_error_cleanup (&error);
7254                                 return FALSE;
7255                         }
7256
7257                         /*klass is a generic variant interface, We need to extract from oklass a list of ifaces which are viable candidates.*/
7258                         for (i = 0; i < oklass->interface_offsets_count; ++i) {
7259                                 MonoClass *iface = oklass->interfaces_packed [i];
7260
7261                                 if (mono_class_is_variant_compatible (klass, iface))
7262                                         return TRUE;
7263                         }
7264                 }
7265                 return FALSE;
7266         } else if (klass->delegate) {
7267                 if (mono_class_has_variant_generic_params (klass) && mono_class_is_variant_compatible (klass, oklass))
7268                         return TRUE;
7269         }else if (klass->rank) {
7270                 MonoClass *eclass, *eoclass;
7271
7272                 if (oklass->rank != klass->rank)
7273                         return FALSE;
7274
7275                 /* vectors vs. one dimensional arrays */
7276                 if (oklass->byval_arg.type != klass->byval_arg.type)
7277                         return FALSE;
7278
7279                 eclass = klass->cast_class;
7280                 eoclass = oklass->cast_class;
7281
7282                 /* 
7283                  * a is b does not imply a[] is b[] when a is a valuetype, and
7284                  * b is a reference type.
7285                  */
7286
7287                 if (eoclass->valuetype) {
7288                         if ((eclass == mono_defaults.enum_class) || 
7289                                 (eclass == mono_defaults.enum_class->parent) ||
7290                                 (eclass == mono_defaults.object_class))
7291                                 return FALSE;
7292                 }
7293
7294                 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
7295         } else if (mono_class_is_nullable (klass)) {
7296                 if (mono_class_is_nullable (oklass))
7297                         return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
7298                 else
7299                         return mono_class_is_assignable_from (klass->cast_class, oklass);
7300         } else if (klass == mono_defaults.object_class)
7301                 return TRUE;
7302
7303         return mono_class_has_parent (oklass, klass);
7304 }       
7305
7306 /*Check if @oklass is variant compatible with @klass.*/
7307 static gboolean
7308 mono_class_is_variant_compatible_slow (MonoClass *klass, MonoClass *oklass)
7309 {
7310         int j;
7311         MonoType **klass_argv, **oklass_argv;
7312         MonoClass *klass_gtd = mono_class_get_generic_type_definition (klass);
7313         MonoGenericContainer *container = klass_gtd->generic_container;
7314
7315         /*Viable candidates are instances of the same generic interface*/
7316         if (mono_class_get_generic_type_definition (oklass) != klass_gtd)
7317                 return FALSE;
7318
7319         klass_argv = &klass->generic_class->context.class_inst->type_argv [0];
7320         oklass_argv = &oklass->generic_class->context.class_inst->type_argv [0];
7321
7322         for (j = 0; j < container->type_argc; ++j) {
7323                 MonoClass *param1_class = mono_class_from_mono_type (klass_argv [j]);
7324                 MonoClass *param2_class = mono_class_from_mono_type (oklass_argv [j]);
7325
7326                 if (param1_class->valuetype != param2_class->valuetype)
7327                         return FALSE;
7328
7329                 /*
7330                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
7331                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
7332                  */
7333                 if (param1_class != param2_class) {
7334                         if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_VARIANT) {
7335                                 if (!mono_class_is_assignable_from_slow (param1_class, param2_class))
7336                                         return FALSE;
7337                         } else if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_COVARIANT) {
7338                                 if (!mono_class_is_assignable_from_slow (param2_class, param1_class))
7339                                         return FALSE;
7340                         } else
7341                                 return FALSE;
7342                 }
7343         }
7344         return TRUE;
7345 }
7346 /*Check if @candidate implements the interface @target*/
7347 static gboolean
7348 mono_class_implement_interface_slow (MonoClass *target, MonoClass *candidate)
7349 {
7350         MonoError error;
7351         int i;
7352         gboolean is_variant = mono_class_has_variant_generic_params (target);
7353
7354         if (is_variant && MONO_CLASS_IS_INTERFACE (candidate)) {
7355                 if (mono_class_is_variant_compatible_slow (target, candidate))
7356                         return TRUE;
7357         }
7358
7359         do {
7360                 if (candidate == target)
7361                         return TRUE;
7362
7363                 /*A TypeBuilder can have more interfaces on tb->interfaces than on candidate->interfaces*/
7364                 if (candidate->image->dynamic && !candidate->wastypebuilder) {
7365                         MonoReflectionTypeBuilder *tb = mono_class_get_ref_info (candidate);
7366                         int j;
7367                         if (tb && tb->interfaces) {
7368                                 for (j = mono_array_length (tb->interfaces) - 1; j >= 0; --j) {
7369                                         MonoReflectionType *iface = mono_array_get (tb->interfaces, MonoReflectionType*, j);
7370                                         MonoClass *iface_class = mono_class_from_mono_type (iface->type);
7371                                         if (iface_class == target)
7372                                                 return TRUE;
7373                                         if (is_variant && mono_class_is_variant_compatible_slow (target, iface_class))
7374                                                 return TRUE;
7375                                         if (mono_class_implement_interface_slow (target, iface_class))
7376                                                 return TRUE;
7377                                 }
7378                         }
7379                 } else {
7380                         /*setup_interfaces don't mono_class_init anything*/
7381                         mono_class_setup_interfaces (candidate, &error);
7382                         if (!mono_error_ok (&error)) {
7383                                 mono_error_cleanup (&error);
7384                                 return FALSE;
7385                         }
7386
7387                         for (i = 0; i < candidate->interface_count; ++i) {
7388                                 if (candidate->interfaces [i] == target)
7389                                         return TRUE;
7390                                 
7391                                 if (is_variant && mono_class_is_variant_compatible_slow (target, candidate->interfaces [i]))
7392                                         return TRUE;
7393
7394                                  if (mono_class_implement_interface_slow (target, candidate->interfaces [i]))
7395                                         return TRUE;
7396                         }
7397                 }
7398                 candidate = candidate->parent;
7399         } while (candidate);
7400
7401         return FALSE;
7402 }
7403
7404 /*
7405  * Check if @oklass can be assigned to @klass.
7406  * This function does the same as mono_class_is_assignable_from but is safe to be used from mono_class_init context.
7407  */
7408 gboolean
7409 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate)
7410 {
7411         if (candidate == target)
7412                 return TRUE;
7413         if (target == mono_defaults.object_class)
7414                 return TRUE;
7415
7416         /*setup_supertypes don't mono_class_init anything */
7417         mono_class_setup_supertypes (candidate);
7418         mono_class_setup_supertypes (target);
7419
7420         if (mono_class_has_parent (candidate, target))
7421                 return TRUE;
7422
7423         /*If target is not an interface there is no need to check them.*/
7424         if (MONO_CLASS_IS_INTERFACE (target))
7425                 return mono_class_implement_interface_slow (target, candidate);
7426
7427         if (target->delegate && mono_class_has_variant_generic_params (target))
7428                 return mono_class_is_variant_compatible (target, candidate);
7429
7430         /*FIXME properly handle nullables and arrays */
7431
7432         return FALSE;
7433 }
7434
7435 /**
7436  * mono_class_get_cctor:
7437  * @klass: A MonoClass pointer
7438  *
7439  * Returns: the static constructor of @klass if it exists, NULL otherwise.
7440  */
7441 MonoMethod*
7442 mono_class_get_cctor (MonoClass *klass)
7443 {
7444         MonoCachedClassInfo cached_info;
7445
7446         if (klass->image->dynamic) {
7447                 /* 
7448                  * has_cctor is not set for these classes because mono_class_init () is
7449                  * not run for them.
7450                  */
7451                 return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
7452         }
7453
7454         if (!klass->has_cctor)
7455                 return NULL;
7456
7457         if (mono_class_get_cached_class_info (klass, &cached_info))
7458                 return mono_get_method (klass->image, cached_info.cctor_token, klass);
7459
7460         if (klass->generic_class && !klass->methods)
7461                 return mono_class_get_inflated_method (klass, mono_class_get_cctor (klass->generic_class->container_class));
7462
7463         return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
7464 }
7465
7466 /**
7467  * mono_class_get_finalizer:
7468  * @klass: The MonoClass pointer
7469  *
7470  * Returns: the finalizer method of @klass if it exists, NULL otherwise.
7471  */
7472 MonoMethod*
7473 mono_class_get_finalizer (MonoClass *klass)
7474 {
7475         MonoCachedClassInfo cached_info;
7476
7477         if (!klass->inited)
7478                 mono_class_init (klass);
7479         if (!klass->has_finalize)
7480                 return NULL;
7481
7482         if (mono_class_get_cached_class_info (klass, &cached_info))
7483                 return mono_get_method (cached_info.finalize_image, cached_info.finalize_token, NULL);
7484         else {
7485                 mono_class_setup_vtable (klass);
7486                 return klass->vtable [finalize_slot];
7487         }
7488 }
7489
7490 /**
7491  * mono_class_needs_cctor_run:
7492  * @klass: the MonoClass pointer
7493  * @caller: a MonoMethod describing the caller
7494  *
7495  * Determines whenever the class has a static constructor and whenever it
7496  * needs to be called when executing CALLER.
7497  */
7498 gboolean
7499 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
7500 {
7501         MonoMethod *method;
7502
7503         method = mono_class_get_cctor (klass);
7504         if (method)
7505                 return (method == caller) ? FALSE : TRUE;
7506         else
7507                 return FALSE;
7508 }
7509
7510 /**
7511  * mono_class_array_element_size:
7512  * @klass: 
7513  *
7514  * Returns: the number of bytes an element of type @klass
7515  * uses when stored into an array.
7516  */
7517 gint32
7518 mono_class_array_element_size (MonoClass *klass)
7519 {
7520         MonoType *type = &klass->byval_arg;
7521         
7522 handle_enum:
7523         switch (type->type) {
7524         case MONO_TYPE_I1:
7525         case MONO_TYPE_U1:
7526         case MONO_TYPE_BOOLEAN:
7527                 return 1;
7528         case MONO_TYPE_I2:
7529         case MONO_TYPE_U2:
7530         case MONO_TYPE_CHAR:
7531                 return 2;
7532         case MONO_TYPE_I4:
7533         case MONO_TYPE_U4:
7534         case MONO_TYPE_R4:
7535                 return 4;
7536         case MONO_TYPE_I:
7537         case MONO_TYPE_U:
7538         case MONO_TYPE_PTR:
7539         case MONO_TYPE_CLASS:
7540         case MONO_TYPE_STRING:
7541         case MONO_TYPE_OBJECT:
7542         case MONO_TYPE_SZARRAY:
7543         case MONO_TYPE_ARRAY: 
7544         case MONO_TYPE_VAR:
7545         case MONO_TYPE_MVAR:   
7546                 return sizeof (gpointer);
7547         case MONO_TYPE_I8:
7548         case MONO_TYPE_U8:
7549         case MONO_TYPE_R8:
7550                 return 8;
7551         case MONO_TYPE_VALUETYPE:
7552                 if (type->data.klass->enumtype) {
7553                         type = mono_class_enum_basetype (type->data.klass);
7554                         klass = klass->element_class;
7555                         goto handle_enum;
7556                 }
7557                 return mono_class_instance_size (klass) - sizeof (MonoObject);
7558         case MONO_TYPE_GENERICINST:
7559                 type = &type->data.generic_class->container_class->byval_arg;
7560                 goto handle_enum;
7561
7562         case MONO_TYPE_VOID:
7563                 return 0;
7564                 
7565         default:
7566                 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
7567         }
7568         return -1;
7569 }
7570
7571 /**
7572  * mono_array_element_size:
7573  * @ac: pointer to a #MonoArrayClass
7574  *
7575  * Returns: the size of single array element.
7576  */
7577 gint32
7578 mono_array_element_size (MonoClass *ac)
7579 {
7580         g_assert (ac->rank);
7581         return ac->sizes.element_size;
7582 }
7583
7584 gpointer
7585 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
7586               MonoGenericContext *context)
7587 {
7588         if (image->dynamic) {
7589                 MonoClass *tmp_handle_class;
7590                 gpointer obj = mono_lookup_dynamic_token_class (image, token, TRUE, &tmp_handle_class, context);
7591
7592                 g_assert (tmp_handle_class);
7593                 if (handle_class)
7594                         *handle_class = tmp_handle_class;
7595
7596                 if (tmp_handle_class == mono_defaults.typehandle_class)
7597                         return &((MonoClass*)obj)->byval_arg;
7598                 else
7599                         return obj;
7600         }
7601
7602         switch (token & 0xff000000) {
7603         case MONO_TOKEN_TYPE_DEF:
7604         case MONO_TOKEN_TYPE_REF:
7605         case MONO_TOKEN_TYPE_SPEC: {
7606                 MonoType *type;
7607                 if (handle_class)
7608                         *handle_class = mono_defaults.typehandle_class;
7609                 type = mono_type_get_full (image, token, context);
7610                 if (!type)
7611                         return NULL;
7612                 mono_class_init (mono_class_from_mono_type (type));
7613                 /* We return a MonoType* as handle */
7614                 return type;
7615         }
7616         case MONO_TOKEN_FIELD_DEF: {
7617                 MonoClass *class;
7618                 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
7619                 if (!type)
7620                         return NULL;
7621                 if (handle_class)
7622                         *handle_class = mono_defaults.fieldhandle_class;
7623                 class = mono_class_get_full (image, MONO_TOKEN_TYPE_DEF | type, context);
7624                 if (!class)
7625                         return NULL;
7626                 mono_class_init (class);
7627                 return mono_class_get_field (class, token);
7628         }
7629         case MONO_TOKEN_METHOD_DEF:
7630         case MONO_TOKEN_METHOD_SPEC: {
7631                 MonoMethod *meth;
7632                 meth = mono_get_method_full (image, token, NULL, context);
7633                 if (handle_class)
7634                         *handle_class = mono_defaults.methodhandle_class;
7635                 return meth;
7636         }
7637         case MONO_TOKEN_MEMBER_REF: {
7638                 guint32 cols [MONO_MEMBERREF_SIZE];
7639                 const char *sig;
7640                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
7641                 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
7642                 mono_metadata_decode_blob_size (sig, &sig);
7643                 if (*sig == 0x6) { /* it's a field */
7644                         MonoClass *klass;
7645                         MonoClassField *field;
7646                         field = mono_field_from_token (image, token, &klass, context);
7647                         if (handle_class)
7648                                 *handle_class = mono_defaults.fieldhandle_class;
7649                         return field;
7650                 } else {
7651                         MonoMethod *meth;
7652                         meth = mono_get_method_full (image, token, NULL, context);
7653                         if (handle_class)
7654                                 *handle_class = mono_defaults.methodhandle_class;
7655                         return meth;
7656                 }
7657         }
7658         default:
7659                 g_warning ("Unknown token 0x%08x in ldtoken", token);
7660                 break;
7661         }
7662         return NULL;
7663 }
7664
7665 /**
7666  * This function might need to call runtime functions so it can't be part
7667  * of the metadata library.
7668  */
7669 static MonoLookupDynamicToken lookup_dynamic = NULL;
7670
7671 void
7672 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func)
7673 {
7674         lookup_dynamic = func;
7675 }
7676
7677 gpointer
7678 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context)
7679 {
7680         MonoClass *handle_class;
7681
7682         return lookup_dynamic (image, token, TRUE, &handle_class, context);
7683 }
7684
7685 gpointer
7686 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context)
7687 {
7688         return lookup_dynamic (image, token, valid_token, handle_class, context);
7689 }
7690
7691 static MonoGetCachedClassInfo get_cached_class_info = NULL;
7692
7693 void
7694 mono_install_get_cached_class_info (MonoGetCachedClassInfo func)
7695 {
7696         get_cached_class_info = func;
7697 }
7698
7699 static gboolean
7700 mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
7701 {
7702         if (!get_cached_class_info)
7703                 return FALSE;
7704         else
7705                 return get_cached_class_info (klass, res);
7706 }
7707
7708 void
7709 mono_install_get_class_from_name (MonoGetClassFromName func)
7710 {
7711         get_class_from_name = func;
7712 }
7713
7714 MonoImage*
7715 mono_class_get_image (MonoClass *klass)
7716 {
7717         return klass->image;
7718 }
7719
7720 /**
7721  * mono_class_get_element_class:
7722  * @klass: the MonoClass to act on
7723  *
7724  * Returns: the element class of an array or an enumeration.
7725  */
7726 MonoClass*
7727 mono_class_get_element_class (MonoClass *klass)
7728 {
7729         return klass->element_class;
7730 }
7731
7732 /**
7733  * mono_class_is_valuetype:
7734  * @klass: the MonoClass to act on
7735  *
7736  * Returns: true if the MonoClass represents a ValueType.
7737  */
7738 gboolean
7739 mono_class_is_valuetype (MonoClass *klass)
7740 {
7741         return klass->valuetype;
7742 }
7743
7744 /**
7745  * mono_class_is_enum:
7746  * @klass: the MonoClass to act on
7747  *
7748  * Returns: true if the MonoClass represents an enumeration.
7749  */
7750 gboolean
7751 mono_class_is_enum (MonoClass *klass)
7752 {
7753         return klass->enumtype;
7754 }
7755
7756 /**
7757  * mono_class_enum_basetype:
7758  * @klass: the MonoClass to act on
7759  *
7760  * Returns: the underlying type representation for an enumeration.
7761  */
7762 MonoType*
7763 mono_class_enum_basetype (MonoClass *klass)
7764 {
7765         if (klass->element_class == klass)
7766                 /* SRE or broken types */
7767                 return NULL;
7768         else
7769                 return &klass->element_class->byval_arg;
7770 }
7771
7772 /**
7773  * mono_class_get_parent
7774  * @klass: the MonoClass to act on
7775  *
7776  * Returns: the parent class for this class.
7777  */
7778 MonoClass*
7779 mono_class_get_parent (MonoClass *klass)
7780 {
7781         return klass->parent;
7782 }
7783
7784 /**
7785  * mono_class_get_nesting_type;
7786  * @klass: the MonoClass to act on
7787  *
7788  * Returns: the container type where this type is nested or NULL if this type is not a nested type.
7789  */
7790 MonoClass*
7791 mono_class_get_nesting_type (MonoClass *klass)
7792 {
7793         return klass->nested_in;
7794 }
7795
7796 /**
7797  * mono_class_get_rank:
7798  * @klass: the MonoClass to act on
7799  *
7800  * Returns: the rank for the array (the number of dimensions).
7801  */
7802 int
7803 mono_class_get_rank (MonoClass *klass)
7804 {
7805         return klass->rank;
7806 }
7807
7808 /**
7809  * mono_class_get_flags:
7810  * @klass: the MonoClass to act on
7811  *
7812  * The type flags from the TypeDef table from the metadata.
7813  * see the TYPE_ATTRIBUTE_* definitions on tabledefs.h for the
7814  * different values.
7815  *
7816  * Returns: the flags from the TypeDef table.
7817  */
7818 guint32
7819 mono_class_get_flags (MonoClass *klass)
7820 {
7821         return klass->flags;
7822 }
7823
7824 /**
7825  * mono_class_get_name
7826  * @klass: the MonoClass to act on
7827  *
7828  * Returns: the name of the class.
7829  */
7830 const char*
7831 mono_class_get_name (MonoClass *klass)
7832 {
7833         return klass->name;
7834 }
7835
7836 /**
7837  * mono_class_get_namespace:
7838  * @klass: the MonoClass to act on
7839  *
7840  * Returns: the namespace of the class.
7841  */
7842 const char*
7843 mono_class_get_namespace (MonoClass *klass)
7844 {
7845         return klass->name_space;
7846 }
7847
7848 /**
7849  * mono_class_get_type:
7850  * @klass: the MonoClass to act on
7851  *
7852  * This method returns the internal Type representation for the class.
7853  *
7854  * Returns: the MonoType from the class.
7855  */
7856 MonoType*
7857 mono_class_get_type (MonoClass *klass)
7858 {
7859         return &klass->byval_arg;
7860 }
7861
7862 /**
7863  * mono_class_get_type_token
7864  * @klass: the MonoClass to act on
7865  *
7866  * This method returns type token for the class.
7867  *
7868  * Returns: the type token for the class.
7869  */
7870 guint32
7871 mono_class_get_type_token (MonoClass *klass)
7872 {
7873   return klass->type_token;
7874 }
7875
7876 /**
7877  * mono_class_get_byref_type:
7878  * @klass: the MonoClass to act on
7879  *
7880  * 
7881  */
7882 MonoType*
7883 mono_class_get_byref_type (MonoClass *klass)
7884 {
7885         return &klass->this_arg;
7886 }
7887
7888 /**
7889  * mono_class_num_fields:
7890  * @klass: the MonoClass to act on
7891  *
7892  * Returns: the number of static and instance fields in the class.
7893  */
7894 int
7895 mono_class_num_fields (MonoClass *klass)
7896 {
7897         return klass->field.count;
7898 }
7899
7900 /**
7901  * mono_class_num_methods:
7902  * @klass: the MonoClass to act on
7903  *
7904  * Returns: the number of methods in the class.
7905  */
7906 int
7907 mono_class_num_methods (MonoClass *klass)
7908 {
7909         return klass->method.count;
7910 }
7911
7912 /**
7913  * mono_class_num_properties
7914  * @klass: the MonoClass to act on
7915  *
7916  * Returns: the number of properties in the class.
7917  */
7918 int
7919 mono_class_num_properties (MonoClass *klass)
7920 {
7921         mono_class_setup_properties (klass);
7922
7923         return klass->ext->property.count;
7924 }
7925
7926 /**
7927  * mono_class_num_events:
7928  * @klass: the MonoClass to act on
7929  *
7930  * Returns: the number of events in the class.
7931  */
7932 int
7933 mono_class_num_events (MonoClass *klass)
7934 {
7935         mono_class_setup_events (klass);
7936
7937         return klass->ext->event.count;
7938 }
7939
7940 /**
7941  * mono_class_get_fields:
7942  * @klass: the MonoClass to act on
7943  *
7944  * This routine is an iterator routine for retrieving the fields in a class.
7945  *
7946  * You must pass a gpointer that points to zero and is treated as an opaque handle to
7947  * iterate over all of the elements.  When no more values are
7948  * available, the return value is NULL.
7949  *
7950  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
7951  */
7952 MonoClassField*
7953 mono_class_get_fields (MonoClass* klass, gpointer *iter)
7954 {
7955         MonoClassField* field;
7956         if (!iter)
7957                 return NULL;
7958         if (!*iter) {
7959                 mono_class_setup_fields_locking (klass);
7960                 if (klass->exception_type)
7961                         return NULL;
7962                 /* start from the first */
7963                 if (klass->field.count) {
7964                         return *iter = &klass->fields [0];
7965                 } else {
7966                         /* no fields */
7967                         return NULL;
7968                 }
7969         }
7970         field = *iter;
7971         field++;
7972         if (field < &klass->fields [klass->field.count]) {
7973                 return *iter = field;
7974         }
7975         return NULL;
7976 }
7977
7978 /**
7979  * mono_class_get_methods
7980  * @klass: the MonoClass to act on
7981  *
7982  * This routine is an iterator routine for retrieving the fields in a class.
7983  *
7984  * You must pass a gpointer that points to zero and is treated as an opaque handle to
7985  * iterate over all of the elements.  When no more values are
7986  * available, the return value is NULL.
7987  *
7988  * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
7989  */
7990 MonoMethod*
7991 mono_class_get_methods (MonoClass* klass, gpointer *iter)
7992 {
7993         MonoMethod** method;
7994         if (!iter)
7995                 return NULL;
7996         if (!*iter) {
7997                 mono_class_setup_methods (klass);
7998
7999                 /*
8000                  * We can't fail lookup of methods otherwise the runtime will burst in flames on all sort of places.
8001                  * FIXME we should better report this error to the caller
8002                  */
8003                 if (!klass->methods)
8004                         return NULL;
8005                 /* start from the first */
8006                 if (klass->method.count) {
8007                         *iter = &klass->methods [0];
8008                         return klass->methods [0];
8009                 } else {
8010                         /* no method */
8011                         return NULL;
8012                 }
8013         }
8014         method = *iter;
8015         method++;
8016         if (method < &klass->methods [klass->method.count]) {
8017                 *iter = method;
8018                 return *method;
8019         }
8020         return NULL;
8021 }
8022
8023 /*
8024  * mono_class_get_virtual_methods:
8025  *
8026  *   Iterate over the virtual methods of KLASS.
8027  *
8028  * LOCKING: Assumes the loader lock is held (because of the klass->methods check).
8029  */
8030 static MonoMethod*
8031 mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter)
8032 {
8033         MonoMethod** method;
8034         if (!iter)
8035                 return NULL;
8036         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass) || mono_debug_using_mono_debugger ()) {
8037                 if (!*iter) {
8038                         mono_class_setup_methods (klass);
8039                         /*
8040                          * We can't fail lookup of methods otherwise the runtime will burst in flames on all sort of places.
8041                          * FIXME we should better report this error to the caller
8042                          */
8043                         if (!klass->methods)
8044                                 return NULL;
8045                         /* start from the first */
8046                         method = &klass->methods [0];
8047                 } else {
8048                         method = *iter;
8049                         method++;
8050                 }
8051                 while (method < &klass->methods [klass->method.count]) {
8052                         if (((*method)->flags & METHOD_ATTRIBUTE_VIRTUAL))
8053                                 break;
8054                         method ++;
8055                 }
8056                 if (method < &klass->methods [klass->method.count]) {
8057                         *iter = method;
8058                         return *method;
8059                 } else {
8060                         return NULL;
8061                 }
8062         } else {
8063                 /* Search directly in metadata to avoid calling setup_methods () */
8064                 MonoMethod *res = NULL;
8065                 int i, start_index;
8066
8067                 if (!*iter) {
8068                         start_index = 0;
8069                 } else {
8070                         start_index = GPOINTER_TO_UINT (*iter);
8071                 }
8072
8073                 for (i = start_index; i < klass->method.count; ++i) {
8074                         guint32 flags;
8075
8076                         /* class->method.first points into the methodptr table */
8077                         flags = mono_metadata_decode_table_row_col (klass->image, MONO_TABLE_METHOD, klass->method.first + i, MONO_METHOD_FLAGS);
8078
8079                         if (flags & METHOD_ATTRIBUTE_VIRTUAL)
8080                                 break;
8081                 }
8082
8083                 if (i < klass->method.count) {
8084                         res = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
8085                         /* Add 1 here so the if (*iter) check fails */
8086                         *iter = GUINT_TO_POINTER (i + 1);
8087                         return res;
8088                 } else {
8089                         return NULL;
8090                 }
8091         }
8092 }
8093
8094 /**
8095  * mono_class_get_properties:
8096  * @klass: the MonoClass to act on
8097  *
8098  * This routine is an iterator routine for retrieving the properties in a class.
8099  *
8100  * You must pass a gpointer that points to zero and is treated as an opaque handle to
8101  * iterate over all of the elements.  When no more values are
8102  * available, the return value is NULL.
8103  *
8104  * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
8105  */
8106 MonoProperty*
8107 mono_class_get_properties (MonoClass* klass, gpointer *iter)
8108 {
8109         MonoProperty* property;
8110         if (!iter)
8111                 return NULL;
8112         if (!*iter) {
8113                 mono_class_setup_properties (klass);
8114                 /* start from the first */
8115                 if (klass->ext->property.count) {
8116                         return *iter = &klass->ext->properties [0];
8117                 } else {
8118                         /* no fields */
8119                         return NULL;
8120                 }
8121         }
8122         property = *iter;
8123         property++;
8124         if (property < &klass->ext->properties [klass->ext->property.count]) {
8125                 return *iter = property;
8126         }
8127         return NULL;
8128 }
8129
8130 /**
8131  * mono_class_get_events:
8132  * @klass: the MonoClass to act on
8133  *
8134  * This routine is an iterator routine for retrieving the properties in a class.
8135  *
8136  * You must pass a gpointer that points to zero and is treated as an opaque handle to
8137  * iterate over all of the elements.  When no more values are
8138  * available, the return value is NULL.
8139  *
8140  * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
8141  */
8142 MonoEvent*
8143 mono_class_get_events (MonoClass* klass, gpointer *iter)
8144 {
8145         MonoEvent* event;
8146         if (!iter)
8147                 return NULL;
8148         if (!*iter) {
8149                 mono_class_setup_events (klass);
8150                 /* start from the first */
8151                 if (klass->ext->event.count) {
8152                         return *iter = &klass->ext->events [0];
8153                 } else {
8154                         /* no fields */
8155                         return NULL;
8156                 }
8157         }
8158         event = *iter;
8159         event++;
8160         if (event < &klass->ext->events [klass->ext->event.count]) {
8161                 return *iter = event;
8162         }
8163         return NULL;
8164 }
8165
8166 /**
8167  * mono_class_get_interfaces
8168  * @klass: the MonoClass to act on
8169  *
8170  * This routine is an iterator routine for retrieving the interfaces implemented by this class.
8171  *
8172  * You must pass a gpointer that points to zero and is treated as an opaque handle to
8173  * iterate over all of the elements.  When no more values are
8174  * available, the return value is NULL.
8175  *
8176  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
8177  */
8178 MonoClass*
8179 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
8180 {
8181         MonoError error;
8182         MonoClass** iface;
8183         if (!iter)
8184                 return NULL;
8185         if (!*iter) {
8186                 if (!klass->inited)
8187                         mono_class_init (klass);
8188                 if (!klass->interfaces_inited) {
8189                         mono_class_setup_interfaces (klass, &error);
8190                         if (!mono_error_ok (&error)) {
8191                                 mono_error_cleanup (&error);
8192                                 return NULL;
8193                         }
8194                 }
8195                 /* start from the first */
8196                 if (klass->interface_count) {
8197                         *iter = &klass->interfaces [0];
8198                         return klass->interfaces [0];
8199                 } else {
8200                         /* no interface */
8201                         return NULL;
8202                 }
8203         }
8204         iface = *iter;
8205         iface++;
8206         if (iface < &klass->interfaces [klass->interface_count]) {
8207                 *iter = iface;
8208                 return *iface;
8209         }
8210         return NULL;
8211 }
8212
8213 /**
8214  * mono_class_get_nested_types
8215  * @klass: the MonoClass to act on
8216  *
8217  * This routine is an iterator routine for retrieving the nested types of a class.
8218  * This works only if @klass is non-generic, or a generic type definition.
8219  *
8220  * You must pass a gpointer that points to zero and is treated as an opaque handle to
8221  * iterate over all of the elements.  When no more values are
8222  * available, the return value is NULL.
8223  *
8224  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
8225  */
8226 MonoClass*
8227 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
8228 {
8229         GList *item;
8230         int i;
8231
8232         if (!iter)
8233                 return NULL;
8234         if (!klass->nested_classes_inited) {
8235                 if (!klass->type_token)
8236                         klass->nested_classes_inited = TRUE;
8237                 mono_loader_lock ();
8238                 if (!klass->nested_classes_inited) {
8239                         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, 1);
8240                         while (i) {
8241                                 MonoClass* nclass;
8242                                 guint32 cols [MONO_NESTED_CLASS_SIZE];
8243                                 mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
8244                                 nclass = mono_class_create_from_typedef (klass->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED]);
8245                                 if (!nclass) {
8246                                         mono_loader_clear_error ();
8247                                         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
8248                                         continue;
8249                                 }
8250                                 mono_class_alloc_ext (klass);
8251                                 klass->ext->nested_classes = g_list_prepend_image (klass->image, klass->ext->nested_classes, nclass);
8252
8253                                 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
8254                         }
8255                 }
8256                 mono_memory_barrier ();
8257                 klass->nested_classes_inited = TRUE;
8258                 mono_loader_unlock ();
8259         }
8260
8261         if (!*iter) {
8262                 /* start from the first */
8263                 if (klass->ext && klass->ext->nested_classes) {
8264                         *iter = klass->ext->nested_classes;
8265                         return klass->ext->nested_classes->data;
8266                 } else {
8267                         /* no nested types */
8268                         return NULL;
8269                 }
8270         }
8271         item = *iter;
8272         item = item->next;
8273         if (item) {
8274                 *iter = item;
8275                 return item->data;
8276         }
8277         return NULL;
8278 }
8279
8280 /**
8281  * mono_field_get_name:
8282  * @field: the MonoClassField to act on
8283  *
8284  * Returns: the name of the field.
8285  */
8286 const char*
8287 mono_field_get_name (MonoClassField *field)
8288 {
8289         return field->name;
8290 }
8291
8292 /**
8293  * mono_field_get_type:
8294  * @field: the MonoClassField to act on
8295  *
8296  * Returns: MonoType of the field.
8297  */
8298 MonoType*
8299 mono_field_get_type (MonoClassField *field)
8300 {
8301         MonoError error;
8302         MonoType *type = mono_field_get_type_checked (field, &error);
8303         if (!mono_error_ok (&error)) {
8304                 mono_trace_warning (MONO_TRACE_TYPE, "Could not load field's type due to %s", mono_error_get_message (&error));
8305                 mono_error_cleanup (&error);
8306         }
8307         return type;
8308 }
8309
8310
8311 /**
8312  * mono_field_get_type_checked:
8313  * @field: the MonoClassField to act on
8314  * @error: used to return any erro found while retrieving @field type
8315  *
8316  * Returns: MonoType of the field.
8317  */
8318 MonoType*
8319 mono_field_get_type_checked (MonoClassField *field, MonoError *error)
8320 {
8321         mono_error_init (error);
8322         if (!field->type)
8323                 mono_field_resolve_type (field, error);
8324         return field->type;
8325 }
8326
8327 /**
8328  * mono_field_get_parent:
8329  * @field: the MonoClassField to act on
8330  *
8331  * Returns: MonoClass where the field was defined.
8332  */
8333 MonoClass*
8334 mono_field_get_parent (MonoClassField *field)
8335 {
8336         return field->parent;
8337 }
8338
8339 /**
8340  * mono_field_get_flags;
8341  * @field: the MonoClassField to act on
8342  *
8343  * The metadata flags for a field are encoded using the
8344  * FIELD_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
8345  *
8346  * Returns: the flags for the field.
8347  */
8348 guint32
8349 mono_field_get_flags (MonoClassField *field)
8350 {
8351         if (!field->type)
8352                 return mono_field_resolve_flags (field);
8353         return field->type->attrs;
8354 }
8355
8356 /**
8357  * mono_field_get_offset;
8358  * @field: the MonoClassField to act on
8359  *
8360  * Returns: the field offset.
8361  */
8362 guint32
8363 mono_field_get_offset (MonoClassField *field)
8364 {
8365         return field->offset;
8366 }
8367
8368 static const char *
8369 mono_field_get_rva (MonoClassField *field)
8370 {
8371         guint32 rva;
8372         int field_index;
8373         MonoClass *klass = field->parent;
8374
8375         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA);
8376
8377         if (!klass->ext || !klass->ext->field_def_values) {
8378                 mono_loader_lock ();
8379                 mono_class_alloc_ext (klass);
8380                 if (!klass->ext->field_def_values)
8381                         klass->ext->field_def_values = mono_class_alloc0 (klass, sizeof (MonoFieldDefaultValue) * klass->field.count);
8382                 mono_loader_unlock ();
8383         }
8384
8385         field_index = mono_field_get_index (field);
8386                 
8387         if (!klass->ext->field_def_values [field_index].data && !klass->image->dynamic) {
8388                 mono_metadata_field_info (field->parent->image, klass->field.first + field_index, NULL, &rva, NULL);
8389                 if (!rva)
8390                         g_warning ("field %s in %s should have RVA data, but hasn't", mono_field_get_name (field), field->parent->name);
8391                 klass->ext->field_def_values [field_index].data = mono_image_rva_map (field->parent->image, rva);
8392         }
8393
8394         return klass->ext->field_def_values [field_index].data;
8395 }
8396
8397 /**
8398  * mono_field_get_data;
8399  * @field: the MonoClassField to act on
8400  *
8401  * Returns: pointer to the metadata constant value or to the field
8402  * data if it has an RVA flag.
8403  */
8404 const char *
8405 mono_field_get_data (MonoClassField *field)
8406 {
8407         if (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT) {
8408                 MonoTypeEnum def_type;
8409
8410                 return mono_class_get_field_default_value (field, &def_type);
8411         } else if (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA) {
8412                 return mono_field_get_rva (field);
8413         } else {
8414                 return NULL;
8415         }
8416 }
8417
8418 /**
8419  * mono_property_get_name: 
8420  * @prop: the MonoProperty to act on
8421  *
8422  * Returns: the name of the property
8423  */
8424 const char*
8425 mono_property_get_name (MonoProperty *prop)
8426 {
8427         return prop->name;
8428 }
8429
8430 /**
8431  * mono_property_get_set_method
8432  * @prop: the MonoProperty to act on.
8433  *
8434  * Returns: the setter method of the property (A MonoMethod)
8435  */
8436 MonoMethod*
8437 mono_property_get_set_method (MonoProperty *prop)
8438 {
8439         return prop->set;
8440 }
8441
8442 /**
8443  * mono_property_get_get_method
8444  * @prop: the MonoProperty to act on.
8445  *
8446  * Returns: the setter method of the property (A MonoMethod)
8447  */
8448 MonoMethod*
8449 mono_property_get_get_method (MonoProperty *prop)
8450 {
8451         return prop->get;
8452 }
8453
8454 /**
8455  * mono_property_get_parent:
8456  * @prop: the MonoProperty to act on.
8457  *
8458  * Returns: the MonoClass where the property was defined.
8459  */
8460 MonoClass*
8461 mono_property_get_parent (MonoProperty *prop)
8462 {
8463         return prop->parent;
8464 }
8465
8466 /**
8467  * mono_property_get_flags:
8468  * @prop: the MonoProperty to act on.
8469  *
8470  * The metadata flags for a property are encoded using the
8471  * PROPERTY_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
8472  *
8473  * Returns: the flags for the property.
8474  */
8475 guint32
8476 mono_property_get_flags (MonoProperty *prop)
8477 {
8478         return prop->attrs;
8479 }
8480
8481 /**
8482  * mono_event_get_name:
8483  * @event: the MonoEvent to act on
8484  *
8485  * Returns: the name of the event.
8486  */
8487 const char*
8488 mono_event_get_name (MonoEvent *event)
8489 {
8490         return event->name;
8491 }
8492
8493 /**
8494  * mono_event_get_add_method:
8495  * @event: The MonoEvent to act on.
8496  *
8497  * Returns: the @add' method for the event (a MonoMethod).
8498  */
8499 MonoMethod*
8500 mono_event_get_add_method (MonoEvent *event)
8501 {
8502         return event->add;
8503 }
8504
8505 /**
8506  * mono_event_get_remove_method:
8507  * @event: The MonoEvent to act on.
8508  *
8509  * Returns: the @remove method for the event (a MonoMethod).
8510  */
8511 MonoMethod*
8512 mono_event_get_remove_method (MonoEvent *event)
8513 {
8514         return event->remove;
8515 }
8516
8517 /**
8518  * mono_event_get_raise_method:
8519  * @event: The MonoEvent to act on.
8520  *
8521  * Returns: the @raise method for the event (a MonoMethod).
8522  */
8523 MonoMethod*
8524 mono_event_get_raise_method (MonoEvent *event)
8525 {
8526         return event->raise;
8527 }
8528
8529 /**
8530  * mono_event_get_parent:
8531  * @event: the MonoEvent to act on.
8532  *
8533  * Returns: the MonoClass where the event is defined.
8534  */
8535 MonoClass*
8536 mono_event_get_parent (MonoEvent *event)
8537 {
8538         return event->parent;
8539 }
8540
8541 /**
8542  * mono_event_get_flags
8543  * @event: the MonoEvent to act on.
8544  *
8545  * The metadata flags for an event are encoded using the
8546  * EVENT_* constants.  See the tabledefs.h file for details.
8547  *
8548  * Returns: the flags for the event.
8549  */
8550 guint32
8551 mono_event_get_flags (MonoEvent *event)
8552 {
8553         return event->attrs;
8554 }
8555
8556 /**
8557  * mono_class_get_method_from_name:
8558  * @klass: where to look for the method
8559  * @name_space: name of the method
8560  * @param_count: number of parameters. -1 for any number.
8561  *
8562  * Obtains a MonoMethod with a given name and number of parameters.
8563  * It only works if there are no multiple signatures for any given method name.
8564  */
8565 MonoMethod *
8566 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
8567 {
8568         return mono_class_get_method_from_name_flags (klass, name, param_count, 0);
8569 }
8570
8571 static MonoMethod*
8572 find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags)
8573 {
8574         MonoMethod *res = NULL;
8575         int i;
8576
8577         /* Search directly in the metadata to avoid calling setup_methods () */
8578         for (i = 0; i < klass->method.count; ++i) {
8579                 guint32 cols [MONO_METHOD_SIZE];
8580                 MonoMethod *method;
8581                 MonoMethodSignature *sig;
8582
8583                 /* class->method.first points into the methodptr table */
8584                 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
8585
8586                 if (!strcmp (mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]), name)) {
8587                         method = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
8588                         if (param_count == -1) {
8589                                 res = method;
8590                                 break;
8591                         }
8592                         sig = mono_method_signature (method);
8593                         if (sig && sig->param_count == param_count) {
8594                                 res = method;
8595                                 break;
8596                         }
8597                 }
8598         }
8599
8600         return res;
8601 }
8602
8603 /**
8604  * mono_class_get_method_from_name_flags:
8605  * @klass: where to look for the method
8606  * @name_space: name of the method
8607  * @param_count: number of parameters. -1 for any number.
8608  * @flags: flags which must be set in the method
8609  *
8610  * Obtains a MonoMethod with a given name and number of parameters.
8611  * It only works if there are no multiple signatures for any given method name.
8612  */
8613 MonoMethod *
8614 mono_class_get_method_from_name_flags (MonoClass *klass, const char *name, int param_count, int flags)
8615 {
8616         MonoMethod *res = NULL;
8617         int i;
8618
8619         mono_class_init (klass);
8620
8621         if (klass->generic_class && !klass->methods) {
8622                 res = mono_class_get_method_from_name_flags (klass->generic_class->container_class, name, param_count, flags);
8623                 if (res)
8624                         res = mono_class_inflate_generic_method_full (res, klass, mono_class_get_context (klass));
8625                 return res;
8626         }
8627
8628         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
8629                 mono_class_setup_methods (klass);
8630                 /*
8631                 We can't fail lookup of methods otherwise the runtime will burst in flames on all sort of places.
8632                 See mono/tests/array_load_exception.il
8633                 FIXME we should better report this error to the caller
8634                  */
8635                 if (!klass->methods)
8636                         return NULL;
8637                 for (i = 0; i < klass->method.count; ++i) {
8638                         MonoMethod *method = klass->methods [i];
8639
8640                         if (method->name[0] == name [0] && 
8641                                 !strcmp (name, method->name) &&
8642                                 (param_count == -1 || mono_method_signature (method)->param_count == param_count) &&
8643                                 ((method->flags & flags) == flags)) {
8644                                 res = method;
8645                                 break;
8646                         }
8647                 }
8648         }
8649         else {
8650             res = find_method_in_metadata (klass, name, param_count, flags);
8651         }
8652
8653         return res;
8654 }
8655
8656 /**
8657  * mono_class_set_failure:
8658  * @klass: class in which the failure was detected
8659  * @ex_type: the kind of exception/error to be thrown (later)
8660  * @ex_data: exception data (specific to each type of exception/error)
8661  *
8662  * Keep a detected failure informations in the class for later processing.
8663  * Note that only the first failure is kept.
8664  *
8665  * LOCKING: Acquires the loader lock.
8666  */
8667 gboolean
8668 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data)
8669 {
8670         if (klass->exception_type)
8671                 return FALSE;
8672
8673         mono_loader_lock ();
8674         klass->exception_type = ex_type;
8675         if (ex_data)
8676                 mono_image_property_insert (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA, ex_data);
8677         mono_loader_unlock ();
8678
8679         return TRUE;
8680 }
8681
8682 /*
8683  * mono_class_get_exception_data:
8684  *
8685  *   Return the exception_data property of KLASS.
8686  *
8687  * LOCKING: Acquires the loader lock.
8688  */
8689 gpointer
8690 mono_class_get_exception_data (MonoClass *klass)
8691 {
8692         return mono_image_property_lookup (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA);
8693 }
8694
8695 /**
8696  * mono_classes_init:
8697  *
8698  * Initialize the resources used by this module.
8699  */
8700 void
8701 mono_classes_init (void)
8702 {
8703         mono_counters_register ("Inflated methods size",
8704                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_methods_size);
8705         mono_counters_register ("Inflated classes",
8706                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes);
8707         mono_counters_register ("Inflated classes size",
8708                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes_size);
8709         mono_counters_register ("MonoClass size",
8710                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &classes_size);
8711         mono_counters_register ("MonoClassExt size",
8712                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ext_size);
8713 }
8714
8715 /**
8716  * mono_classes_cleanup:
8717  *
8718  * Free the resources used by this module.
8719  */
8720 void
8721 mono_classes_cleanup (void)
8722 {
8723         if (global_interface_bitset)
8724                 mono_bitset_free (global_interface_bitset);
8725 }
8726
8727 /**
8728  * mono_class_get_exception_for_failure:
8729  * @klass: class in which the failure was detected
8730  *
8731  * Return a constructed MonoException than the caller can then throw
8732  * using mono_raise_exception - or NULL if no failure is present (or
8733  * doesn't result in an exception).
8734  */
8735 MonoException*
8736 mono_class_get_exception_for_failure (MonoClass *klass)
8737 {
8738         gpointer exception_data = mono_class_get_exception_data (klass);
8739
8740         switch (klass->exception_type) {
8741         case MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND: {
8742                 MonoDomain *domain = mono_domain_get ();
8743                 MonoSecurityManager* secman = mono_security_manager_get_methods ();
8744                 MonoMethod *method = exception_data;
8745                 guint32 error = (method) ? MONO_METADATA_INHERITANCEDEMAND_METHOD : MONO_METADATA_INHERITANCEDEMAND_CLASS;
8746                 MonoObject *exc = NULL;
8747                 gpointer args [4];
8748
8749                 args [0] = &error;
8750                 args [1] = mono_assembly_get_object (domain, mono_image_get_assembly (klass->image));
8751                 args [2] = mono_type_get_object (domain, &klass->byval_arg);
8752                 args [3] = (method) ? mono_method_get_object (domain, method, NULL) : NULL;
8753
8754                 mono_runtime_invoke (secman->inheritsecurityexception, NULL, args, &exc);
8755                 return (MonoException*) exc;
8756         }
8757         case MONO_EXCEPTION_TYPE_LOAD: {
8758                 MonoString *name;
8759                 MonoException *ex;
8760                 char *str = mono_type_get_full_name (klass);
8761                 char *astr = klass->image->assembly? mono_stringify_assembly_name (&klass->image->assembly->aname): NULL;
8762                 name = mono_string_new (mono_domain_get (), str);
8763                 g_free (str);
8764                 ex = mono_get_exception_type_load (name, astr);
8765                 g_free (astr);
8766                 return ex;
8767         }
8768         case MONO_EXCEPTION_MISSING_METHOD: {
8769                 char *class_name = exception_data;
8770                 char *assembly_name = class_name + strlen (class_name) + 1;
8771
8772                 return mono_get_exception_missing_method (class_name, assembly_name);
8773         }
8774         case MONO_EXCEPTION_MISSING_FIELD: {
8775                 char *class_name = exception_data;
8776                 char *member_name = class_name + strlen (class_name) + 1;
8777
8778                 return mono_get_exception_missing_field (class_name, member_name);
8779         }
8780         case MONO_EXCEPTION_FILE_NOT_FOUND: {
8781                 char *msg_format = exception_data;
8782                 char *assembly_name = msg_format + strlen (msg_format) + 1;
8783                 char *msg = g_strdup_printf (msg_format, assembly_name);
8784                 MonoException *ex;
8785
8786                 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), assembly_name));
8787
8788                 g_free (msg);
8789
8790                 return ex;
8791         }
8792         case MONO_EXCEPTION_BAD_IMAGE: {
8793                 return mono_get_exception_bad_image_format (exception_data);
8794         }
8795         default: {
8796                 MonoLoaderError *error;
8797                 MonoException *ex;
8798                 
8799                 error = mono_loader_get_last_error ();
8800                 if (error != NULL){
8801                         ex = mono_loader_error_prepare_exception (error);
8802                         return ex;
8803                 }
8804                 
8805                 /* TODO - handle other class related failures */
8806                 return NULL;
8807         }
8808         }
8809 }
8810
8811 static gboolean
8812 is_nesting_type (MonoClass *outer_klass, MonoClass *inner_klass)
8813  {
8814         outer_klass = mono_class_get_generic_type_definition (outer_klass);
8815         inner_klass = mono_class_get_generic_type_definition (inner_klass);
8816         do {
8817                 if (outer_klass == inner_klass)
8818                         return TRUE;
8819                 inner_klass = inner_klass->nested_in;
8820         } while (inner_klass);
8821         return FALSE;
8822 }
8823
8824 MonoClass *
8825 mono_class_get_generic_type_definition (MonoClass *klass)
8826 {
8827         return klass->generic_class ? klass->generic_class->container_class : klass;
8828 }
8829
8830 /*
8831  * Check if @klass is a subtype of @parent ignoring generic instantiations.
8832  * 
8833  * Generic instantiations are ignored for all super types of @klass.
8834  * 
8835  * Visibility checks ignoring generic instantiations.  
8836  */
8837 gboolean
8838 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent)
8839 {
8840         int i;
8841         klass = mono_class_get_generic_type_definition (klass);
8842         parent = mono_class_get_generic_type_definition (parent);
8843         
8844         for (i = 0; i < klass->idepth; ++i) {
8845                 if (parent == mono_class_get_generic_type_definition (klass->supertypes [i]))
8846                         return TRUE;
8847         }
8848         return FALSE;
8849 }
8850 /*
8851  * Subtype can only access parent members with family protection if the site object
8852  * is subclass of Subtype. For example:
8853  * class A { protected int x; }
8854  * class B : A {
8855  *      void valid_access () {
8856  *              B b;
8857  *              b.x = 0;
8858  *  }
8859  *  void invalid_access () {
8860  *              A a;
8861  *              a.x = 0;
8862  *  }
8863  * }
8864  * */
8865 static gboolean
8866 is_valid_family_access (MonoClass *access_klass, MonoClass *member_klass, MonoClass *context_klass)
8867 {
8868         if (!mono_class_has_parent_and_ignore_generics (access_klass, member_klass))
8869                 return FALSE;
8870
8871         if (context_klass == NULL)
8872                 return TRUE;
8873         /*if access_klass is not member_klass context_klass must be type compat*/
8874         if (access_klass != member_klass && !mono_class_has_parent_and_ignore_generics (context_klass, access_klass))
8875                 return FALSE;
8876         return TRUE;
8877 }
8878
8879 static gboolean
8880 can_access_internals (MonoAssembly *accessing, MonoAssembly* accessed)
8881 {
8882         GSList *tmp;
8883         if (accessing == accessed)
8884                 return TRUE;
8885         if (!accessed || !accessing)
8886                 return FALSE;
8887
8888         /* extra safety under CoreCLR - the runtime does not verify the strongname signatures
8889          * anywhere so untrusted friends are not safe to access platform's code internals */
8890         if (mono_security_get_mode () == MONO_SECURITY_MODE_CORE_CLR) {
8891                 if (!mono_security_core_clr_can_access_internals (accessing->image, accessed->image))
8892                         return FALSE;
8893         }
8894
8895         mono_assembly_load_friends (accessed);
8896         for (tmp = accessed->friend_assembly_names; tmp; tmp = tmp->next) {
8897                 MonoAssemblyName *friend = tmp->data;
8898                 /* Be conservative with checks */
8899                 if (!friend->name)
8900                         continue;
8901                 if (strcmp (accessing->aname.name, friend->name))
8902                         continue;
8903                 if (friend->public_key_token [0]) {
8904                         if (!accessing->aname.public_key_token [0])
8905                                 continue;
8906                         if (!mono_public_tokens_are_equal (friend->public_key_token, accessing->aname.public_key_token))
8907                                 continue;
8908                 }
8909                 return TRUE;
8910         }
8911         return FALSE;
8912 }
8913
8914 /*
8915  * If klass is a generic type or if it is derived from a generic type, return the
8916  * MonoClass of the generic definition
8917  * Returns NULL if not found
8918  */
8919 static MonoClass*
8920 get_generic_definition_class (MonoClass *klass)
8921 {
8922         while (klass) {
8923                 if (klass->generic_class && klass->generic_class->container_class)
8924                         return klass->generic_class->container_class;
8925                 klass = klass->parent;
8926         }
8927         return NULL;
8928 }
8929
8930 static gboolean
8931 can_access_instantiation (MonoClass *access_klass, MonoGenericInst *ginst)
8932 {
8933         int i;
8934         for (i = 0; i < ginst->type_argc; ++i) {
8935                 MonoType *type = ginst->type_argv[i];
8936                 switch (type->type) {
8937                 case MONO_TYPE_SZARRAY:
8938                         if (!can_access_type (access_klass, type->data.klass))
8939                                 return FALSE;
8940                         break;
8941                 case MONO_TYPE_ARRAY:
8942                         if (!can_access_type (access_klass, type->data.array->eklass))
8943                                 return FALSE;
8944                         break;
8945                 case MONO_TYPE_PTR:
8946                         if (!can_access_type (access_klass, mono_class_from_mono_type (type->data.type)))
8947                                 return FALSE;
8948                         break;
8949                 case MONO_TYPE_CLASS:
8950                 case MONO_TYPE_VALUETYPE:
8951                 case MONO_TYPE_GENERICINST:
8952                         if (!can_access_type (access_klass, mono_class_from_mono_type (type)))
8953                                 return FALSE;
8954                 }
8955         }
8956         return TRUE;
8957 }
8958
8959 static gboolean
8960 can_access_type (MonoClass *access_klass, MonoClass *member_klass)
8961 {
8962         int access_level;
8963
8964         if (access_klass->element_class && !access_klass->enumtype)
8965                 access_klass = access_klass->element_class;
8966
8967         if (member_klass->element_class && !member_klass->enumtype)
8968                 member_klass = member_klass->element_class;
8969
8970         access_level = member_klass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK;
8971
8972         if (member_klass->byval_arg.type == MONO_TYPE_VAR || member_klass->byval_arg.type == MONO_TYPE_MVAR)
8973                 return TRUE;
8974
8975         if (member_klass->generic_class && !can_access_instantiation (access_klass, member_klass->generic_class->context.class_inst))
8976                 return FALSE;
8977
8978         if (is_nesting_type (access_klass, member_klass) || (access_klass->nested_in && is_nesting_type (access_klass->nested_in, member_klass)))
8979                 return TRUE;
8980
8981         if (member_klass->nested_in && !can_access_type (access_klass, member_klass->nested_in))
8982                 return FALSE;
8983
8984         /*Non nested type with nested visibility. We just fail it.*/
8985         if (access_level >= TYPE_ATTRIBUTE_NESTED_PRIVATE && access_level <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM && member_klass->nested_in == NULL)
8986                 return FALSE;
8987
8988         switch (access_level) {
8989         case TYPE_ATTRIBUTE_NOT_PUBLIC:
8990                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
8991
8992         case TYPE_ATTRIBUTE_PUBLIC:
8993                 return TRUE;
8994
8995         case TYPE_ATTRIBUTE_NESTED_PUBLIC:
8996                 return TRUE;
8997
8998         case TYPE_ATTRIBUTE_NESTED_PRIVATE:
8999                 return is_nesting_type (member_klass, access_klass);
9000
9001         case TYPE_ATTRIBUTE_NESTED_FAMILY:
9002                 return mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in); 
9003
9004         case TYPE_ATTRIBUTE_NESTED_ASSEMBLY:
9005                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
9006
9007         case TYPE_ATTRIBUTE_NESTED_FAM_AND_ASSEM:
9008                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) &&
9009                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
9010
9011         case TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM:
9012                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) ||
9013                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
9014         }
9015         return FALSE;
9016 }
9017
9018 /* FIXME: check visibility of type, too */
9019 static gboolean
9020 can_access_member (MonoClass *access_klass, MonoClass *member_klass, MonoClass* context_klass, int access_level)
9021 {
9022         MonoClass *member_generic_def;
9023         if (((access_klass->generic_class && access_klass->generic_class->container_class) ||
9024                                         access_klass->generic_container) && 
9025                         (member_generic_def = get_generic_definition_class (member_klass))) {
9026                 MonoClass *access_container;
9027
9028                 if (access_klass->generic_container)
9029                         access_container = access_klass;
9030                 else
9031                         access_container = access_klass->generic_class->container_class;
9032
9033                 if (can_access_member (access_container, member_generic_def, context_klass, access_level))
9034                         return TRUE;
9035         }
9036
9037         /* Partition I 8.5.3.2 */
9038         /* the access level values are the same for fields and methods */
9039         switch (access_level) {
9040         case FIELD_ATTRIBUTE_COMPILER_CONTROLLED:
9041                 /* same compilation unit */
9042                 return access_klass->image == member_klass->image;
9043         case FIELD_ATTRIBUTE_PRIVATE:
9044                 return access_klass == member_klass;
9045         case FIELD_ATTRIBUTE_FAM_AND_ASSEM:
9046                 if (is_valid_family_access (access_klass, member_klass, context_klass) &&
9047                     can_access_internals (access_klass->image->assembly, member_klass->image->assembly))
9048                         return TRUE;
9049                 return FALSE;
9050         case FIELD_ATTRIBUTE_ASSEMBLY:
9051                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
9052         case FIELD_ATTRIBUTE_FAMILY:
9053                 if (is_valid_family_access (access_klass, member_klass, context_klass))
9054                         return TRUE;
9055                 return FALSE;
9056         case FIELD_ATTRIBUTE_FAM_OR_ASSEM:
9057                 if (is_valid_family_access (access_klass, member_klass, context_klass))
9058                         return TRUE;
9059                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
9060         case FIELD_ATTRIBUTE_PUBLIC:
9061                 return TRUE;
9062         }
9063         return FALSE;
9064 }
9065
9066 gboolean
9067 mono_method_can_access_field (MonoMethod *method, MonoClassField *field)
9068 {
9069         /* FIXME: check all overlapping fields */
9070         int can = can_access_member (method->klass, field->parent, NULL, mono_field_get_type (field)->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
9071         if (!can) {
9072                 MonoClass *nested = method->klass->nested_in;
9073                 while (nested) {
9074                         can = can_access_member (nested, field->parent, NULL, mono_field_get_type (field)->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
9075                         if (can)
9076                                 return TRUE;
9077                         nested = nested->nested_in;
9078                 }
9079         }
9080         return can;
9081 }
9082
9083 gboolean
9084 mono_method_can_access_method (MonoMethod *method, MonoMethod *called)
9085 {
9086         int can = can_access_member (method->klass, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
9087         if (!can) {
9088                 MonoClass *nested = method->klass->nested_in;
9089                 while (nested) {
9090                         can = can_access_member (nested, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
9091                         if (can)
9092                                 return TRUE;
9093                         nested = nested->nested_in;
9094                 }
9095         }
9096         /* 
9097          * FIXME:
9098          * with generics calls to explicit interface implementations can be expressed
9099          * directly: the method is private, but we must allow it. This may be opening
9100          * a hole or the generics code should handle this differently.
9101          * Maybe just ensure the interface type is public.
9102          */
9103         if ((called->flags & METHOD_ATTRIBUTE_VIRTUAL) && (called->flags & METHOD_ATTRIBUTE_FINAL))
9104                 return TRUE;
9105         return can;
9106 }
9107
9108 /*
9109  * mono_method_can_access_method_full:
9110  * @method: The caller method 
9111  * @called: The called method 
9112  * @context_klass: The static type on stack of the owner @called object used
9113  * 
9114  * This function must be used with instance calls, as they have more strict family accessibility.
9115  * It can be used with static methods, but context_klass should be NULL.
9116  * 
9117  * Returns: TRUE if caller have proper visibility and acessibility to @called
9118  */
9119 gboolean
9120 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass)
9121 {
9122         MonoClass *access_class = method->klass;
9123         MonoClass *member_class = called->klass;
9124         int can = can_access_member (access_class, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
9125         if (!can) {
9126                 MonoClass *nested = access_class->nested_in;
9127                 while (nested) {
9128                         can = can_access_member (nested, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
9129                         if (can)
9130                                 break;
9131                         nested = nested->nested_in;
9132                 }
9133         }
9134
9135         if (!can)
9136                 return FALSE;
9137
9138         can = can_access_type (access_class, member_class);
9139         if (!can) {
9140                 MonoClass *nested = access_class->nested_in;
9141                 while (nested) {
9142                         can = can_access_type (nested, member_class);
9143                         if (can)
9144                                 break;
9145                         nested = nested->nested_in;
9146                 }
9147         }
9148
9149         if (!can)
9150                 return FALSE;
9151
9152         if (called->is_inflated) {
9153                 MonoMethodInflated * infl = (MonoMethodInflated*)called;
9154                 if (infl->context.method_inst && !can_access_instantiation (access_class, infl->context.method_inst))
9155                         return FALSE;
9156         }
9157                 
9158         return TRUE;
9159 }
9160
9161
9162 /*
9163  * mono_method_can_access_field_full:
9164  * @method: The caller method 
9165  * @field: The accessed field
9166  * @context_klass: The static type on stack of the owner @field object used
9167  * 
9168  * This function must be used with instance fields, as they have more strict family accessibility.
9169  * It can be used with static fields, but context_klass should be NULL.
9170  * 
9171  * Returns: TRUE if caller have proper visibility and acessibility to @field
9172  */
9173 gboolean
9174 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass)
9175 {
9176         MonoClass *access_class = method->klass;
9177         MonoClass *member_class = field->parent;
9178         /* FIXME: check all overlapping fields */
9179         int can = can_access_member (access_class, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
9180         if (!can) {
9181                 MonoClass *nested = access_class->nested_in;
9182                 while (nested) {
9183                         can = can_access_member (nested, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
9184                         if (can)
9185                                 break;
9186                         nested = nested->nested_in;
9187                 }
9188         }
9189
9190         if (!can)
9191                 return FALSE;
9192
9193         can = can_access_type (access_class, member_class);
9194         if (!can) {
9195                 MonoClass *nested = access_class->nested_in;
9196                 while (nested) {
9197                         can = can_access_type (nested, member_class);
9198                         if (can)
9199                                 break;
9200                         nested = nested->nested_in;
9201                 }
9202         }
9203
9204         if (!can)
9205                 return FALSE;
9206         return TRUE;
9207 }
9208
9209 /**
9210  * mono_type_is_valid_enum_basetype:
9211  * @type: The MonoType to check
9212  *
9213  * Returns: TRUE if the type can be used as the basetype of an enum
9214  */
9215 gboolean mono_type_is_valid_enum_basetype (MonoType * type) {
9216         switch (type->type) {
9217         case MONO_TYPE_I1:
9218         case MONO_TYPE_U1:
9219         case MONO_TYPE_BOOLEAN:
9220         case MONO_TYPE_I2:
9221         case MONO_TYPE_U2:
9222         case MONO_TYPE_CHAR:
9223         case MONO_TYPE_I4:
9224         case MONO_TYPE_U4:
9225         case MONO_TYPE_I8:
9226         case MONO_TYPE_U8:
9227         case MONO_TYPE_I:
9228         case MONO_TYPE_U:
9229                 return TRUE;
9230         }
9231         return FALSE;
9232 }
9233
9234 /**
9235  * mono_class_is_valid_enum:
9236  * @klass: An enum class to be validated
9237  *
9238  * This method verify the required properties an enum should have.
9239  *  
9240  * Returns: TRUE if the informed enum class is valid 
9241  *
9242  * FIXME: TypeBuilder enums are allowed to implement interfaces, but since they cannot have methods, only empty interfaces are possible
9243  * FIXME: enum types are not allowed to have a cctor, but mono_reflection_create_runtime_class sets has_cctor to 1 for all types
9244  * FIXME: TypeBuilder enums can have any kind of static fields, but the spec is very explicit about that (P II 14.3)
9245  */
9246 gboolean mono_class_is_valid_enum (MonoClass *klass) {
9247         MonoClassField * field;
9248         gpointer iter = NULL;
9249         gboolean found_base_field = FALSE;
9250
9251         g_assert (klass->enumtype);
9252         /* we cannot test against mono_defaults.enum_class, or mcs won't be able to compile the System namespace*/
9253         if (!klass->parent || strcmp (klass->parent->name, "Enum") || strcmp (klass->parent->name_space, "System") ) {
9254                 return FALSE;
9255         }
9256
9257         if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) != TYPE_ATTRIBUTE_AUTO_LAYOUT)
9258                 return FALSE;
9259
9260         while ((field = mono_class_get_fields (klass, &iter))) {
9261                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
9262                         if (found_base_field)
9263                                 return FALSE;
9264                         found_base_field = TRUE;
9265                         if (!mono_type_is_valid_enum_basetype (field->type))
9266                                 return FALSE;
9267                 }
9268         }
9269
9270         if (!found_base_field)
9271                 return FALSE;
9272
9273         if (klass->method.count > 0) 
9274                 return FALSE;
9275
9276         return TRUE;
9277 }
9278
9279 gboolean
9280 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass)
9281 {
9282         return gklass->context.class_inst == gklass->container_class->generic_container->context.class_inst;
9283 }
9284
9285 /*
9286  * mono_class_setup_interface_id:
9287  *
9288  * Initializes MonoClass::interface_id if required.
9289  *
9290  * LOCKING: Acquires the loader lock.
9291  */
9292 void
9293 mono_class_setup_interface_id (MonoClass *class)
9294 {
9295         mono_loader_lock ();
9296         if (MONO_CLASS_IS_INTERFACE (class) && !class->interface_id)
9297                 class->interface_id = mono_get_unique_iid (class);
9298         mono_loader_unlock ();
9299 }
9300
9301 /*
9302  * mono_class_alloc_ext:
9303  *
9304  *   Allocate klass->ext if not already done.
9305  * LOCKING: Assumes the loader lock is held.
9306  */
9307 void
9308 mono_class_alloc_ext (MonoClass *klass)
9309 {
9310         if (!klass->ext) {
9311                 klass->ext = mono_class_alloc0 (klass, sizeof (MonoClassExt));
9312                 class_ext_size += sizeof (MonoClassExt);
9313         }
9314 }
9315
9316 /*
9317  * mono_class_setup_interfaces:
9318  *
9319  *   Initialize class->interfaces/interfaces_count.
9320  * LOCKING: Acquires the loader lock.
9321  * This function can fail the type.
9322  */
9323 void
9324 mono_class_setup_interfaces (MonoClass *klass, MonoError *error)
9325 {
9326         int i;
9327
9328         mono_error_init (error);
9329
9330         if (klass->interfaces_inited)
9331                 return;
9332
9333         mono_loader_lock ();
9334
9335         if (klass->interfaces_inited) {
9336                 mono_loader_unlock ();
9337                 return;
9338         }
9339
9340         if (klass->rank == 1 && klass->byval_arg.type != MONO_TYPE_ARRAY && mono_defaults.generic_ilist_class) {
9341                 MonoType *args [1];
9342
9343                 /* generic IList, ICollection, IEnumerable */
9344                 klass->interface_count = 1;
9345                 klass->interfaces = mono_image_alloc0 (klass->image, sizeof (MonoClass*) * klass->interface_count);
9346
9347                 args [0] = &klass->element_class->byval_arg;
9348                 klass->interfaces [0] = mono_class_bind_generic_parameters (
9349                         mono_defaults.generic_ilist_class, 1, args, FALSE);
9350         } else if (klass->generic_class) {
9351                 MonoClass *gklass = klass->generic_class->container_class;
9352
9353                 klass->interface_count = gklass->interface_count;
9354                 klass->interfaces = mono_class_new0 (klass, MonoClass *, klass->interface_count);
9355                 for (i = 0; i < klass->interface_count; i++) {
9356                         klass->interfaces [i] = mono_class_inflate_generic_class_checked (gklass->interfaces [i], mono_generic_class_get_context (klass->generic_class), error);
9357                         if (!mono_error_ok (error)) {
9358                                 mono_class_set_failure (klass, MONO_EXCEPTION_TYPE_LOAD, g_strdup ("Could not setup the interfaces"));
9359                                 klass->interfaces = NULL;
9360                                 return;
9361                         }
9362                 }
9363         }
9364
9365         mono_memory_barrier ();
9366
9367         klass->interfaces_inited = TRUE;
9368
9369         mono_loader_unlock ();
9370 }
9371
9372 static void
9373 mono_field_resolve_type (MonoClassField *field, MonoError *error)
9374 {
9375         MonoClass *class = field->parent;
9376         MonoImage *image = class->image;
9377         MonoClass *gtd = class->generic_class ? mono_class_get_generic_type_definition (class) : NULL;
9378         int field_idx = field - class->fields;
9379
9380         mono_error_init (error);
9381
9382         if (gtd) {
9383                 MonoClassField *gfield = &gtd->fields [field_idx];
9384                 MonoType *gtype = mono_field_get_type_checked (gfield, error);
9385                 if (!mono_error_ok (error)) {
9386                         char *err_msg = g_strdup_printf ("Could not load field %d type due to: %s", field_idx, mono_error_get_message (error));
9387                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, err_msg);
9388                         g_free (err_msg);
9389                 }
9390
9391                 field->type = mono_class_inflate_generic_type_no_copy (image, gtype, mono_class_get_context (class), error);
9392                 if (!mono_error_ok (error)) {
9393                         char *err_msg = g_strdup_printf ("Could not load field %d type due to: %s", field_idx, mono_error_get_message (error));
9394                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, err_msg);
9395                         g_free (err_msg);
9396                 }
9397         } else {
9398                 const char *sig;
9399                 guint32 cols [MONO_FIELD_SIZE];
9400                 MonoGenericContainer *container = NULL;
9401                 int idx = class->field.first + field_idx;
9402
9403                 /*FIXME, in theory we do not lazy load SRE fields*/
9404                 g_assert (!image->dynamic);
9405
9406                 if (class->generic_container) {
9407                         container = class->generic_container;
9408                 } else if (gtd) {
9409                         container = gtd->generic_container;
9410                         g_assert (container);
9411                 }
9412
9413                 /* class->field.first and idx points into the fieldptr table */
9414                 mono_metadata_decode_table_row (image, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
9415
9416                 if (!mono_verifier_verify_field_signature (image, cols [MONO_FIELD_SIGNATURE], NULL)) {
9417                         mono_error_set_type_load_class (error, class, "Could not verify field %s signature", field->name);
9418                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
9419                         return;
9420                 }
9421
9422                 sig = mono_metadata_blob_heap (image, cols [MONO_FIELD_SIGNATURE]);
9423
9424                 mono_metadata_decode_value (sig, &sig);
9425                 /* FIELD signature == 0x06 */
9426                 g_assert (*sig == 0x06);
9427                 field->type = mono_metadata_parse_type_full (image, container, MONO_PARSE_FIELD, cols [MONO_FIELD_FLAGS], sig + 1, &sig);
9428                 if (!field->type) {
9429                         mono_error_set_type_load_class (error, class, "Could not load field %s type", field->name);
9430                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
9431                         mono_loader_clear_error ();
9432                 }
9433         }
9434 }
9435
9436 static guint32
9437 mono_field_resolve_flags (MonoClassField *field)
9438 {
9439         MonoClass *class = field->parent;
9440         MonoImage *image = class->image;
9441         MonoClass *gtd = class->generic_class ? mono_class_get_generic_type_definition (class) : NULL;
9442         int field_idx = field - class->fields;
9443
9444
9445         if (gtd) {
9446                 MonoClassField *gfield = &gtd->fields [field_idx];
9447                 return mono_field_get_flags (gfield);
9448         } else {
9449                 int idx = class->field.first + field_idx;
9450
9451                 /*FIXME, in theory we do not lazy load SRE fields*/
9452                 g_assert (!image->dynamic);
9453
9454                 return mono_metadata_decode_table_row_col (image, MONO_TABLE_FIELD, idx, MONO_FIELD_FLAGS);
9455         }
9456 }
9457
9458 /**
9459  * mono_class_setup_basic_field_info:
9460  * @class: The class to initialize
9461  *
9462  * Initializes the class->fields array of fields.
9463  * Aquires the loader lock.
9464  */
9465 static void
9466 mono_class_setup_basic_field_info_locking (MonoClass *class)
9467 {
9468         mono_loader_lock ();
9469         mono_class_setup_basic_field_info (class);
9470         mono_loader_unlock ();
9471 }
9472
9473 /**
9474  * mono_class_get_fields_lazy:
9475  * @klass: the MonoClass to act on
9476  *
9477  * This routine is an iterator routine for retrieving the fields in a class.
9478  * Only minimal information about fields are loaded. Accessors must be used
9479  * for all MonoClassField returned.
9480  *
9481  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9482  * iterate over all of the elements.  When no more values are
9483  * available, the return value is NULL.
9484  *
9485  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
9486  */
9487 MonoClassField*
9488 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter)
9489 {
9490         MonoClassField* field;
9491         if (!iter)
9492                 return NULL;
9493         if (!*iter) {
9494                 mono_class_setup_basic_field_info_locking (klass);
9495                 if (!klass->fields)
9496                         return NULL;
9497                 /* start from the first */
9498                 if (klass->field.count) {
9499                         return *iter = &klass->fields [0];
9500                 } else {
9501                         /* no fields */
9502                         return NULL;
9503                 }
9504         }
9505         field = *iter;
9506         field++;
9507         if (field < &klass->fields [klass->field.count]) {
9508                 return *iter = field;
9509         }
9510         return NULL;
9511 }