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