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