New test.
[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         mono_loader_lock ();
4865
4866         if (!image->array_cache)
4867                 image->array_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4868
4869         if ((rootlist = list = g_hash_table_lookup (image->array_cache, eclass))) {
4870                 for (; list; list = list->next) {
4871                         class = list->data;
4872                         if ((class->rank == rank) && (class->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
4873                                 mono_loader_unlock ();
4874                                 return class;
4875                         }
4876                 }
4877         }
4878
4879         /* for the building corlib use System.Array from it */
4880         if (image->assembly && image->assembly->dynamic && image->assembly_name && strcmp (image->assembly_name, "mscorlib") == 0) {
4881                 parent = mono_class_from_name (image, "System", "Array");
4882                 corlib_type = TRUE;
4883         } else {
4884                 parent = mono_defaults.array_class;
4885                 if (!parent->inited)
4886                         mono_class_init (parent);
4887         }
4888
4889         class = mono_image_alloc0 (image, sizeof (MonoClass));
4890
4891         class->image = image;
4892         class->name_space = eclass->name_space;
4893         nsize = strlen (eclass->name);
4894         name = g_malloc (nsize + 2 + rank + 1);
4895         memcpy (name, eclass->name, nsize);
4896         name [nsize] = '[';
4897         if (rank > 1)
4898                 memset (name + nsize + 1, ',', rank - 1);
4899         if (bounded)
4900                 name [nsize + rank] = '*';
4901         name [nsize + rank + bounded] = ']';
4902         name [nsize + rank + bounded + 1] = 0;
4903         class->name = mono_image_strdup (image, name);
4904         g_free (name);
4905
4906         mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
4907
4908         classes_size += sizeof (MonoClass);
4909
4910         class->type_token = 0;
4911         /* all arrays are marked serializable and sealed, bug #42779 */
4912         class->flags = TYPE_ATTRIBUTE_CLASS | TYPE_ATTRIBUTE_SERIALIZABLE | TYPE_ATTRIBUTE_SEALED |
4913                 (eclass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
4914         class->parent = parent;
4915         class->instance_size = mono_class_instance_size (class->parent);
4916
4917         if (eclass->enumtype && !mono_class_enum_basetype (eclass)) {
4918                 if (!eclass->reflection_info || eclass->wastypebuilder) {
4919                         g_warning ("Only incomplete TypeBuilder objects are allowed to be an enum without base_type");
4920                         g_assert (eclass->reflection_info && !eclass->wastypebuilder);
4921                 }
4922                 /* element_size -1 is ok as this is not an instantitable type*/
4923                 class->sizes.element_size = -1;
4924         } else
4925                 class->sizes.element_size = mono_class_array_element_size (eclass);
4926
4927         mono_class_setup_supertypes (class);
4928
4929         if (eclass->generic_class)
4930                 mono_class_init (eclass);
4931         if (!eclass->size_inited)
4932                 mono_class_setup_fields (eclass);
4933         class->has_references = MONO_TYPE_IS_REFERENCE (&eclass->byval_arg) || eclass->has_references? TRUE: FALSE;
4934
4935         class->rank = rank;
4936         
4937         if (eclass->enumtype)
4938                 class->cast_class = eclass->element_class;
4939         else
4940                 class->cast_class = eclass;
4941
4942         class->element_class = eclass;
4943
4944         if ((rank > 1) || bounded) {
4945                 MonoArrayType *at = mono_image_alloc0 (image, sizeof (MonoArrayType));
4946                 class->byval_arg.type = MONO_TYPE_ARRAY;
4947                 class->byval_arg.data.array = at;
4948                 at->eklass = eclass;
4949                 at->rank = rank;
4950                 /* FIXME: complete.... */
4951         } else {
4952                 class->byval_arg.type = MONO_TYPE_SZARRAY;
4953                 class->byval_arg.data.klass = eclass;
4954         }
4955         class->this_arg = class->byval_arg;
4956         class->this_arg.byref = 1;
4957         if (corlib_type) {
4958                 class->inited = 1;
4959         }
4960
4961         class->generic_container = eclass->generic_container;
4962
4963         list = g_slist_append (rootlist, class);
4964         g_hash_table_insert (image->array_cache, eclass, list);
4965
4966         mono_loader_unlock ();
4967
4968         mono_profiler_class_loaded (class, MONO_PROFILE_OK);
4969
4970         return class;
4971 }
4972
4973 /**
4974  * mono_array_class_get:
4975  * @element_class: element class 
4976  * @rank: the dimension of the array class
4977  *
4978  * Returns: a class object describing the array with element type @element_type and 
4979  * dimension @rank. 
4980  */
4981 MonoClass *
4982 mono_array_class_get (MonoClass *eclass, guint32 rank)
4983 {
4984         return mono_bounded_array_class_get (eclass, rank, FALSE);
4985 }
4986
4987 /**
4988  * mono_class_instance_size:
4989  * @klass: a class 
4990  * 
4991  * Returns: the size of an object instance
4992  */
4993 gint32
4994 mono_class_instance_size (MonoClass *klass)
4995 {       
4996         if (!klass->size_inited)
4997                 mono_class_init (klass);
4998
4999         return klass->instance_size;
5000 }
5001
5002 /**
5003  * mono_class_min_align:
5004  * @klass: a class 
5005  * 
5006  * Returns: minimm alignment requirements 
5007  */
5008 gint32
5009 mono_class_min_align (MonoClass *klass)
5010 {       
5011         if (!klass->size_inited)
5012                 mono_class_init (klass);
5013
5014         return klass->min_align;
5015 }
5016
5017 /**
5018  * mono_class_value_size:
5019  * @klass: a class 
5020  *
5021  * This function is used for value types, and return the
5022  * space and the alignment to store that kind of value object.
5023  *
5024  * Returns: the size of a value of kind @klass
5025  */
5026 gint32
5027 mono_class_value_size      (MonoClass *klass, guint32 *align)
5028 {
5029         gint32 size;
5030
5031         /* fixme: check disable, because we still have external revereces to
5032          * mscorlib and Dummy Objects 
5033          */
5034         /*g_assert (klass->valuetype);*/
5035
5036         size = mono_class_instance_size (klass) - sizeof (MonoObject);
5037
5038         if (align)
5039                 *align = klass->min_align;
5040
5041         return size;
5042 }
5043
5044 /**
5045  * mono_class_data_size:
5046  * @klass: a class 
5047  * 
5048  * Returns: the size of the static class data
5049  */
5050 gint32
5051 mono_class_data_size (MonoClass *klass)
5052 {       
5053         if (!klass->inited)
5054                 mono_class_init (klass);
5055
5056         /* in arrays, sizes.class_size is unioned with element_size
5057          * and arrays have no static fields
5058          */
5059         if (klass->rank)
5060                 return 0;
5061         return klass->sizes.class_size;
5062 }
5063
5064 /*
5065  * Auxiliary routine to mono_class_get_field
5066  *
5067  * Takes a field index instead of a field token.
5068  */
5069 static MonoClassField *
5070 mono_class_get_field_idx (MonoClass *class, int idx)
5071 {
5072         mono_class_setup_fields_locking (class);
5073
5074         while (class) {
5075                 if (class->image->uncompressed_metadata) {
5076                         /* 
5077                          * class->field.first points to the FieldPtr table, while idx points into the
5078                          * Field table, so we have to do a search.
5079                          */
5080                         const char *name = mono_metadata_string_heap (class->image, mono_metadata_decode_row_col (&class->image->tables [MONO_TABLE_FIELD], idx, MONO_FIELD_NAME));
5081                         int i;
5082
5083                         for (i = 0; i < class->field.count; ++i)
5084                                 if (mono_field_get_name (&class->fields [i]) == name)
5085                                         return &class->fields [i];
5086                         g_assert_not_reached ();
5087                 } else {                        
5088                         if (class->field.count) {
5089                                 if ((idx >= class->field.first) && (idx < class->field.first + class->field.count)){
5090                                         return &class->fields [idx - class->field.first];
5091                                 }
5092                         }
5093                 }
5094                 class = class->parent;
5095         }
5096         return NULL;
5097 }
5098
5099 /**
5100  * mono_class_get_field:
5101  * @class: the class to lookup the field.
5102  * @field_token: the field token
5103  *
5104  * Returns: A MonoClassField representing the type and offset of
5105  * the field, or a NULL value if the field does not belong to this
5106  * class.
5107  */
5108 MonoClassField *
5109 mono_class_get_field (MonoClass *class, guint32 field_token)
5110 {
5111         int idx = mono_metadata_token_index (field_token);
5112
5113         g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
5114
5115         return mono_class_get_field_idx (class, idx - 1);
5116 }
5117
5118 /**
5119  * mono_class_get_field_from_name:
5120  * @klass: the class to lookup the field.
5121  * @name: the field name
5122  *
5123  * Search the class @klass and it's parents for a field with the name @name.
5124  * 
5125  * Returns: the MonoClassField pointer of the named field or NULL
5126  */
5127 MonoClassField *
5128 mono_class_get_field_from_name (MonoClass *klass, const char *name)
5129 {
5130         int i;
5131
5132         mono_class_setup_fields_locking (klass);
5133         while (klass) {
5134                 for (i = 0; i < klass->field.count; ++i) {
5135                         if (strcmp (name, mono_field_get_name (&klass->fields [i])) == 0)
5136                                 return &klass->fields [i];
5137                 }
5138                 klass = klass->parent;
5139         }
5140         return NULL;
5141 }
5142
5143 /**
5144  * mono_class_get_field_token:
5145  * @field: the field we need the token of
5146  *
5147  * Get the token of a field. Note that the tokesn is only valid for the image
5148  * the field was loaded from. Don't use this function for fields in dynamic types.
5149  * 
5150  * Returns: the token representing the field in the image it was loaded from.
5151  */
5152 guint32
5153 mono_class_get_field_token (MonoClassField *field)
5154 {
5155         MonoClass *klass = field->parent;
5156         int i;
5157
5158         mono_class_setup_fields_locking (klass);
5159         while (klass) {
5160                 for (i = 0; i < klass->field.count; ++i) {
5161                         if (&klass->fields [i] == field) {
5162                                 int idx = klass->field.first + i + 1;
5163
5164                                 if (klass->image->uncompressed_metadata)
5165                                         idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_FIELD, idx);
5166                                 return mono_metadata_make_token (MONO_TABLE_FIELD, idx);
5167                         }
5168                 }
5169                 klass = klass->parent;
5170         }
5171
5172         g_assert_not_reached ();
5173         return 0;
5174 }
5175
5176 static int
5177 mono_field_get_index (MonoClassField *field)
5178 {
5179         int index = field - field->parent->fields;
5180
5181         g_assert (index >= 0 && index < field->parent->field.count);
5182
5183         return index;
5184 }
5185
5186 /*
5187  * mono_class_get_field_default_value:
5188  *
5189  * Return the default value of the field as a pointer into the metadata blob.
5190  */
5191 const char*
5192 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type)
5193 {
5194         guint32 cindex;
5195         guint32 constant_cols [MONO_CONSTANT_SIZE];
5196         int field_index;
5197         MonoClass *klass = field->parent;
5198
5199         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT);
5200
5201         if (!klass->ext || !klass->ext->field_def_values) {
5202                 mono_loader_lock ();
5203                 mono_class_alloc_ext (klass);
5204                 if (!klass->ext->field_def_values)
5205                         klass->ext->field_def_values = mono_image_alloc0 (klass->image, sizeof (MonoFieldDefaultValue) * klass->field.count);
5206                 mono_loader_unlock ();
5207         }
5208
5209         field_index = mono_field_get_index (field);
5210                 
5211         if (!klass->ext->field_def_values [field_index].data) {
5212                 cindex = mono_metadata_get_constant_index (field->parent->image, mono_class_get_field_token (field), 0);
5213                 g_assert (cindex);
5214                 g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA));
5215
5216                 mono_metadata_decode_row (&field->parent->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
5217                 klass->ext->field_def_values [field_index].def_type = constant_cols [MONO_CONSTANT_TYPE];
5218                 klass->ext->field_def_values [field_index].data = (gpointer)mono_metadata_blob_heap (field->parent->image, constant_cols [MONO_CONSTANT_VALUE]);
5219         }
5220
5221         *def_type = klass->ext->field_def_values [field_index].def_type;
5222         return klass->ext->field_def_values [field_index].data;
5223 }
5224
5225 guint32
5226 mono_class_get_event_token (MonoEvent *event)
5227 {
5228         MonoClass *klass = event->parent;
5229         int i;
5230
5231         while (klass) {
5232                 if (klass->ext) {
5233                         for (i = 0; i < klass->ext->event.count; ++i) {
5234                                 if (&klass->ext->events [i] == event)
5235                                         return mono_metadata_make_token (MONO_TABLE_EVENT, klass->ext->event.first + i + 1);
5236                         }
5237                 }
5238                 klass = klass->parent;
5239         }
5240
5241         g_assert_not_reached ();
5242         return 0;
5243 }
5244
5245 MonoProperty*
5246 mono_class_get_property_from_name (MonoClass *klass, const char *name)
5247 {
5248         while (klass) {
5249                 MonoProperty* p;
5250                 gpointer iter = NULL;
5251                 while ((p = mono_class_get_properties (klass, &iter))) {
5252                         if (! strcmp (name, p->name))
5253                                 return p;
5254                 }
5255                 klass = klass->parent;
5256         }
5257         return NULL;
5258 }
5259
5260 guint32
5261 mono_class_get_property_token (MonoProperty *prop)
5262 {
5263         MonoClass *klass = prop->parent;
5264         while (klass) {
5265                 MonoProperty* p;
5266                 int i = 0;
5267                 gpointer iter = NULL;
5268                 while ((p = mono_class_get_properties (klass, &iter))) {
5269                         if (&klass->ext->properties [i] == prop)
5270                                 return mono_metadata_make_token (MONO_TABLE_PROPERTY, klass->ext->property.first + i + 1);
5271                         
5272                         i ++;
5273                 }
5274                 klass = klass->parent;
5275         }
5276
5277         g_assert_not_reached ();
5278         return 0;
5279 }
5280
5281 char *
5282 mono_class_name_from_token (MonoImage *image, guint32 type_token)
5283 {
5284         const char *name, *nspace;
5285         if (image->dynamic)
5286                 return g_strdup_printf ("DynamicType 0x%08x", type_token);
5287         
5288         switch (type_token & 0xff000000){
5289         case MONO_TOKEN_TYPE_DEF: {
5290                 guint32 cols [MONO_TYPEDEF_SIZE];
5291                 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
5292                 guint tidx = mono_metadata_token_index (type_token);
5293
5294                 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
5295                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5296                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5297                 if (strlen (nspace) == 0)
5298                         return g_strdup_printf ("%s", name);
5299                 else
5300                         return g_strdup_printf ("%s.%s", nspace, name);
5301         }
5302
5303         case MONO_TOKEN_TYPE_REF: {
5304                 guint32 cols [MONO_TYPEREF_SIZE];
5305                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
5306
5307                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5308                 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
5309                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
5310                 if (strlen (nspace) == 0)
5311                         return g_strdup_printf ("%s", name);
5312                 else
5313                         return g_strdup_printf ("%s.%s", nspace, name);
5314         }
5315                 
5316         case MONO_TOKEN_TYPE_SPEC:
5317                 return g_strdup_printf ("Typespec 0x%08x", type_token);
5318         default:
5319                 g_assert_not_reached ();
5320         }
5321
5322         return NULL;
5323 }
5324
5325 static char *
5326 mono_assembly_name_from_token (MonoImage *image, guint32 type_token)
5327 {
5328         if (image->dynamic)
5329                 return g_strdup_printf ("DynamicAssembly %s", image->name);
5330         
5331         switch (type_token & 0xff000000){
5332         case MONO_TOKEN_TYPE_DEF:
5333                 return mono_stringify_assembly_name (&image->assembly->aname);
5334                 break;
5335         case MONO_TOKEN_TYPE_REF: {
5336                 MonoAssemblyName aname;
5337                 guint32 cols [MONO_TYPEREF_SIZE];
5338                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
5339                 guint32 idx;
5340         
5341                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5342
5343                 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
5344                 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
5345                 case MONO_RESOLTION_SCOPE_MODULE:
5346                         /* FIXME: */
5347                         return g_strdup ("");
5348                 case MONO_RESOLTION_SCOPE_MODULEREF:
5349                         /* FIXME: */
5350                         return g_strdup ("");
5351                 case MONO_RESOLTION_SCOPE_TYPEREF:
5352                         /* FIXME: */
5353                         return g_strdup ("");
5354                 case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
5355                         mono_assembly_get_assemblyref (image, idx - 1, &aname);
5356                         return mono_stringify_assembly_name (&aname);
5357                 default:
5358                         g_assert_not_reached ();
5359                 }
5360                 break;
5361         }
5362         case MONO_TOKEN_TYPE_SPEC:
5363                 /* FIXME: */
5364                 return g_strdup ("");
5365         default:
5366                 g_assert_not_reached ();
5367         }
5368
5369         return NULL;
5370 }
5371
5372 /**
5373  * mono_class_get_full:
5374  * @image: the image where the class resides
5375  * @type_token: the token for the class
5376  * @context: the generic context used to evaluate generic instantiations in
5377  *
5378  * Returns: the MonoClass that represents @type_token in @image
5379  */
5380 MonoClass *
5381 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5382 {
5383         MonoClass *class = NULL;
5384
5385         if (image->dynamic) {
5386                 int table = mono_metadata_token_table (type_token);
5387
5388                 if (table != MONO_TABLE_TYPEDEF && table != MONO_TABLE_TYPEREF && table != MONO_TABLE_TYPESPEC) {
5389                         mono_loader_set_error_bad_image (g_strdup ("Bad type token."));
5390                         return NULL;
5391                 }
5392                 return mono_lookup_dynamic_token (image, type_token, context);
5393         }
5394
5395         switch (type_token & 0xff000000){
5396         case MONO_TOKEN_TYPE_DEF:
5397                 class = mono_class_create_from_typedef (image, type_token);
5398                 break;          
5399         case MONO_TOKEN_TYPE_REF:
5400                 class = mono_class_from_typeref (image, type_token);
5401                 break;
5402         case MONO_TOKEN_TYPE_SPEC:
5403                 class = mono_class_create_from_typespec (image, type_token, context);
5404                 break;
5405         default:
5406                 g_warning ("unknown token type %x", type_token & 0xff000000);
5407                 g_assert_not_reached ();
5408         }
5409
5410         if (!class){
5411                 char *name = mono_class_name_from_token (image, type_token);
5412                 char *assembly = mono_assembly_name_from_token (image, type_token);
5413                 mono_loader_set_error_type_load (name, assembly);
5414         }
5415
5416         return class;
5417 }
5418
5419
5420 /**
5421  * mono_type_get_full:
5422  * @image: the image where the type resides
5423  * @type_token: the token for the type
5424  * @context: the generic context used to evaluate generic instantiations in
5425  *
5426  * This functions exists to fullfill the fact that sometimes it's desirable to have access to the 
5427  * 
5428  * Returns: the MonoType that represents @type_token in @image
5429  */
5430 MonoType *
5431 mono_type_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5432 {
5433         MonoType *type = NULL;
5434         gboolean inflated = FALSE;
5435
5436         //FIXME: this will not fix the very issue for which mono_type_get_full exists -but how to do it then?
5437         if (image->dynamic)
5438                 return mono_class_get_type (mono_lookup_dynamic_token (image, type_token, context));
5439
5440         if ((type_token & 0xff000000) != MONO_TOKEN_TYPE_SPEC) {
5441                 MonoClass *class = mono_class_get_full (image, type_token, context);
5442                 return class ? mono_class_get_type (class) : NULL;
5443         }
5444
5445         type = mono_type_retrieve_from_typespec (image, type_token, context, &inflated);
5446
5447         if (!type) {
5448                 char *name = mono_class_name_from_token (image, type_token);
5449                 char *assembly = mono_assembly_name_from_token (image, type_token);
5450                 if (inflated)
5451                         mono_metadata_free_type (type);
5452                 mono_loader_set_error_type_load (name, assembly);
5453         }
5454
5455         if (inflated) {
5456                 MonoType *tmp = type;
5457                 type = mono_class_get_type (mono_class_from_mono_type (type));
5458                 /* FIXME: This is a workaround fo the fact that a typespec token sometimes reference to the generic type definition.
5459                  * A MonoClass::byval_arg of a generic type definion has type CLASS.
5460                  * Some parts of mono create a GENERICINST to reference a generic type definition and this generates confict with byval_arg.
5461                  *
5462                  * The long term solution is to chaise this places and make then set MonoType::type correctly.
5463                  * */
5464                 if (type->type != tmp->type)
5465                         type = tmp;
5466                 else
5467                         mono_metadata_free_type (tmp);
5468         }
5469         return type;
5470 }
5471
5472
5473 MonoClass *
5474 mono_class_get (MonoImage *image, guint32 type_token)
5475 {
5476         return mono_class_get_full (image, type_token, NULL);
5477 }
5478
5479 /**
5480  * mono_image_init_name_cache:
5481  *
5482  *  Initializes the class name cache stored in image->name_cache.
5483  *
5484  * LOCKING: Acquires the loader lock.
5485  */
5486 void
5487 mono_image_init_name_cache (MonoImage *image)
5488 {
5489         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
5490         guint32 cols [MONO_TYPEDEF_SIZE];
5491         const char *name;
5492         const char *nspace;
5493         guint32 i, visib, nspace_index;
5494         GHashTable *name_cache2, *nspace_table;
5495
5496         mono_loader_lock ();
5497
5498         image->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
5499
5500         if (image->dynamic) {
5501                 mono_loader_unlock ();
5502                 return;
5503         }
5504
5505         /* Temporary hash table to avoid lookups in the nspace_table */
5506         name_cache2 = g_hash_table_new (NULL, NULL);
5507
5508         for (i = 1; i <= t->rows; ++i) {
5509                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5510                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5511                 /*
5512                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
5513                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5514                  */
5515                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5516                         continue;
5517                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5518                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5519
5520                 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
5521                 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5522                 if (!nspace_table) {
5523                         nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5524                         g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5525                         g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5526                                                                  nspace_table);
5527                 }
5528                 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
5529         }
5530
5531         /* Load type names from EXPORTEDTYPES table */
5532         {
5533                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5534                 guint32 cols [MONO_EXP_TYPE_SIZE];
5535                 int i;
5536
5537                 for (i = 0; i < t->rows; ++i) {
5538                         mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
5539                         name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
5540                         nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
5541
5542                         nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
5543                         nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5544                         if (!nspace_table) {
5545                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5546                                 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5547                                 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5548                                                                          nspace_table);
5549                         }
5550                         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
5551                 }
5552         }
5553
5554         g_hash_table_destroy (name_cache2);
5555
5556         mono_loader_unlock ();
5557 }
5558
5559 void
5560 mono_image_add_to_name_cache (MonoImage *image, const char *nspace, 
5561                                                           const char *name, guint32 index)
5562 {
5563         GHashTable *nspace_table;
5564         GHashTable *name_cache;
5565
5566         mono_loader_lock ();
5567
5568         if (!image->name_cache)
5569                 mono_image_init_name_cache (image);
5570
5571         name_cache = image->name_cache;
5572         if (!(nspace_table = g_hash_table_lookup (name_cache, nspace))) {
5573                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5574                 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
5575         }
5576         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
5577
5578         mono_loader_unlock ();
5579 }
5580
5581 typedef struct {
5582         gconstpointer key;
5583         gpointer value;
5584 } FindUserData;
5585
5586 static void
5587 find_nocase (gpointer key, gpointer value, gpointer user_data)
5588 {
5589         char *name = (char*)key;
5590         FindUserData *data = (FindUserData*)user_data;
5591
5592         if (!data->value && (g_strcasecmp (name, (char*)data->key) == 0))
5593                 data->value = value;
5594 }
5595
5596 /**
5597  * mono_class_from_name_case:
5598  * @image: The MonoImage where the type is looked up in
5599  * @name_space: the type namespace
5600  * @name: the type short name.
5601  *
5602  * Obtains a MonoClass with a given namespace and a given name which
5603  * is located in the given MonoImage.   The namespace and name
5604  * lookups are case insensitive.
5605  */
5606 MonoClass *
5607 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
5608 {
5609         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
5610         guint32 cols [MONO_TYPEDEF_SIZE];
5611         const char *n;
5612         const char *nspace;
5613         guint32 i, visib;
5614
5615         if (image->dynamic) {
5616                 guint32 token = 0;
5617                 FindUserData user_data;
5618
5619                 mono_loader_lock ();
5620
5621                 if (!image->name_cache)
5622                         mono_image_init_name_cache (image);
5623
5624                 user_data.key = name_space;
5625                 user_data.value = NULL;
5626                 g_hash_table_foreach (image->name_cache, find_nocase, &user_data);
5627
5628                 if (user_data.value) {
5629                         GHashTable *nspace_table = (GHashTable*)user_data.value;
5630
5631                         user_data.key = name;
5632                         user_data.value = NULL;
5633
5634                         g_hash_table_foreach (nspace_table, find_nocase, &user_data);
5635                         
5636                         if (user_data.value)
5637                                 token = GPOINTER_TO_UINT (user_data.value);
5638                 }
5639
5640                 mono_loader_unlock ();
5641                 
5642                 if (token)
5643                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | token);
5644                 else
5645                         return NULL;
5646
5647         }
5648
5649         /* add a cache if needed */
5650         for (i = 1; i <= t->rows; ++i) {
5651                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5652                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5653                 /*
5654                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
5655                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5656                  */
5657                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5658                         continue;
5659                 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5660                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5661                 if (g_strcasecmp (n, name) == 0 && g_strcasecmp (nspace, name_space) == 0)
5662                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | i);
5663         }
5664         return NULL;
5665 }
5666
5667 static MonoClass*
5668 return_nested_in (MonoClass *class, char *nested)
5669 {
5670         MonoClass *found;
5671         char *s = strchr (nested, '/');
5672         gpointer iter = NULL;
5673
5674         if (s) {
5675                 *s = 0;
5676                 s++;
5677         }
5678
5679         while ((found = mono_class_get_nested_types (class, &iter))) {
5680                 if (strcmp (found->name, nested) == 0) {
5681                         if (s)
5682                                 return return_nested_in (found, s);
5683                         return found;
5684                 }
5685         }
5686         return NULL;
5687 }
5688
5689 static MonoClass*
5690 search_modules (MonoImage *image, const char *name_space, const char *name)
5691 {
5692         MonoTableInfo *file_table = &image->tables [MONO_TABLE_FILE];
5693         MonoImage *file_image;
5694         MonoClass *class;
5695         int i;
5696
5697         /* 
5698          * The EXPORTEDTYPES table only contains public types, so have to search the
5699          * modules as well.
5700          * Note: image->modules contains the contents of the MODULEREF table, while
5701          * the real module list is in the FILE table.
5702          */
5703         for (i = 0; i < file_table->rows; i++) {
5704                 guint32 cols [MONO_FILE_SIZE];
5705                 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
5706                 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
5707                         continue;
5708
5709                 file_image = mono_image_load_file_for_image (image, i + 1);
5710                 if (file_image) {
5711                         class = mono_class_from_name (file_image, name_space, name);
5712                         if (class)
5713                                 return class;
5714                 }
5715         }
5716
5717         return NULL;
5718 }
5719
5720 /**
5721  * mono_class_from_name:
5722  * @image: The MonoImage where the type is looked up in
5723  * @name_space: the type namespace
5724  * @name: the type short name.
5725  *
5726  * Obtains a MonoClass with a given namespace and a given name which
5727  * is located in the given MonoImage.   
5728  */
5729 MonoClass *
5730 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
5731 {
5732         GHashTable *nspace_table;
5733         MonoImage *loaded_image;
5734         guint32 token = 0;
5735         int i;
5736         MonoClass *class;
5737         char *nested;
5738         char buf [1024];
5739
5740         if ((nested = strchr (name, '/'))) {
5741                 int pos = nested - name;
5742                 int len = strlen (name);
5743                 if (len > 1023)
5744                         return NULL;
5745                 memcpy (buf, name, len + 1);
5746                 buf [pos] = 0;
5747                 nested = buf + pos + 1;
5748                 name = buf;
5749         }
5750
5751         if (get_class_from_name) {
5752                 gboolean res = get_class_from_name (image, name_space, name, &class);
5753                 if (res) {
5754                         if (!class)
5755                                 class = search_modules (image, name_space, name);
5756                         if (nested)
5757                                 return class ? return_nested_in (class, nested) : NULL;
5758                         else
5759                                 return class;
5760                 }
5761         }
5762
5763         mono_loader_lock ();
5764
5765         if (!image->name_cache)
5766                 mono_image_init_name_cache (image);
5767
5768         nspace_table = g_hash_table_lookup (image->name_cache, name_space);
5769
5770         if (nspace_table)
5771                 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
5772
5773         mono_loader_unlock ();
5774
5775         if (!token && image->dynamic && image->modules) {
5776                 /* Search modules as well */
5777                 for (i = 0; i < image->module_count; ++i) {
5778                         MonoImage *module = image->modules [i];
5779
5780                         class = mono_class_from_name (module, name_space, name);
5781                         if (class)
5782                                 return class;
5783                 }
5784         }
5785
5786         if (!token) {
5787                 class = search_modules (image, name_space, name);
5788                 if (class)
5789                         return class;
5790         }
5791
5792         if (!token)
5793                 return NULL;
5794
5795         if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
5796                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5797                 guint32 cols [MONO_EXP_TYPE_SIZE];
5798                 guint32 idx, impl;
5799
5800                 idx = mono_metadata_token_index (token);
5801
5802                 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
5803
5804                 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
5805                 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
5806                         loaded_image = mono_assembly_load_module (image->assembly, impl >> MONO_IMPLEMENTATION_BITS);
5807                         if (!loaded_image)
5808                                 return NULL;
5809                         class = mono_class_from_name (loaded_image, name_space, name);
5810                         if (nested)
5811                                 return return_nested_in (class, nested);
5812                         return class;
5813                 } else if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_ASSEMBLYREF) {
5814                         MonoAssembly **references = image->references;
5815                         guint32 assembly_idx;
5816
5817                         assembly_idx = impl >> MONO_IMPLEMENTATION_BITS;
5818
5819                         if (!references [assembly_idx - 1])
5820                                 mono_assembly_load_reference (image, assembly_idx - 1);
5821                         g_assert (references == image->references);
5822                         g_assert (references [assembly_idx - 1]);
5823                         if (references [assembly_idx - 1] == (gpointer)-1)
5824                                 return NULL;                    
5825                         else
5826                                 /* FIXME: Cycle detection */
5827                                 return mono_class_from_name (references [assembly_idx - 1]->image, name_space, name);
5828                 } else {
5829                         g_error ("not yet implemented");
5830                 }
5831         }
5832
5833         token = MONO_TOKEN_TYPE_DEF | token;
5834
5835         class = mono_class_get (image, token);
5836         if (nested)
5837                 return return_nested_in (class, nested);
5838         return class;
5839 }
5840
5841 gboolean
5842 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc, 
5843                            gboolean check_interfaces)
5844 {
5845         g_assert (klassc->idepth > 0);
5846         if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
5847                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, klassc->interface_id))
5848                         return TRUE;
5849         } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
5850                 int i;
5851
5852                 for (i = 0; i < klass->interface_count; i ++) {
5853                         MonoClass *ic =  klass->interfaces [i];
5854                         if (ic == klassc)
5855                                 return TRUE;
5856                 }
5857         } else {
5858                 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
5859                         return TRUE;
5860         }
5861
5862         /* 
5863          * MS.NET thinks interfaces are a subclass of Object, so we think it as
5864          * well.
5865          */
5866         if (klassc == mono_defaults.object_class)
5867                 return TRUE;
5868
5869         return FALSE;
5870 }
5871
5872 static gboolean
5873 mono_class_has_variant_generic_params (MonoClass *klass)
5874 {
5875         int i;
5876         MonoGenericContainer *container;
5877
5878         if (!klass->generic_class)
5879                 return FALSE;
5880
5881         container = klass->generic_class->container_class->generic_container;
5882
5883         for (i = 0; i < container->type_argc; ++i)
5884                 if (container->type_params [i].flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT))
5885                         return TRUE;
5886
5887         return FALSE;
5888 }
5889
5890 /**
5891  * mono_class_is_assignable_from:
5892  * @klass: the class to be assigned to
5893  * @oklass: the source class
5894  *
5895  * Return: true if an instance of object oklass can be assigned to an
5896  * instance of object @klass
5897  */
5898 gboolean
5899 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
5900 {
5901         if (!klass->inited)
5902                 mono_class_init (klass);
5903
5904         if (!oklass->inited)
5905                 mono_class_init (oklass);
5906
5907         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
5908                 return klass == oklass;
5909
5910         if (MONO_CLASS_IS_INTERFACE (klass)) {
5911                 if ((oklass->byval_arg.type == MONO_TYPE_VAR) || (oklass->byval_arg.type == MONO_TYPE_MVAR))
5912                         return FALSE;
5913
5914                 /* interface_offsets might not be set for dynamic classes */
5915                 if (oklass->reflection_info && !oklass->interface_bitmap)
5916                         /* 
5917                          * oklass might be a generic type parameter but they have 
5918                          * interface_offsets set.
5919                          */
5920                         return mono_reflection_call_is_assignable_to (oklass, klass);
5921                 if (!oklass->interface_bitmap)
5922                         /* Happens with generic instances of not-yet created dynamic types */
5923                         return FALSE;
5924                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (oklass, klass->interface_id))
5925                         return TRUE;
5926
5927                 if (mono_class_has_variant_generic_params (klass)) {
5928                         if (oklass->generic_class) {
5929                                 int i;
5930                                 gboolean match = FALSE;
5931                                 MonoClass *container_class1 = klass->generic_class->container_class;
5932                                 MonoClass *container_class2 = oklass->generic_class->container_class;
5933
5934                                 /* 
5935                                  * Check whenever the generic definition of oklass implements the 
5936                                  * generic definition of klass. The IMPLEMENTS_INTERFACE stuff is not usable
5937                                  * here since the relevant tables are not set up.
5938                                  */
5939                                 for (i = 0; i < container_class2->interface_offsets_count; ++i)
5940                                         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)))
5941                                                 match = TRUE;
5942
5943                                 if (match) {
5944                                         MonoGenericContainer *container;
5945
5946                                         container = klass->generic_class->container_class->generic_container;
5947
5948                                         match = TRUE;
5949                                         for (i = 0; i < container->type_argc; ++i) {
5950                                                 MonoClass *param1_class = mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [i]);
5951                                                 MonoClass *param2_class = mono_class_from_mono_type (oklass->generic_class->context.class_inst->type_argv [i]);
5952
5953                                                 if (param1_class->valuetype != param2_class->valuetype) {
5954                                                         match = FALSE;
5955                                                         break;
5956                                                 }
5957                                                 /*
5958                                                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
5959                                                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
5960                                                  */
5961                                                 if (param1_class != param2_class) {
5962                                                         if ((container->type_params [i].flags & MONO_GEN_PARAM_VARIANT) && mono_class_is_assignable_from (param1_class, param2_class))
5963                                                                 ;
5964                                                         else if (((container->type_params [i].flags & MONO_GEN_PARAM_COVARIANT) && mono_class_is_assignable_from (param2_class, param1_class)))
5965                                                                 ;
5966                                                         else {
5967                                                                 match = FALSE;
5968                                                                 break;
5969                                                         }
5970                                                 }
5971                                         }
5972
5973                                         if (match)
5974                                                 return TRUE;
5975                                 }
5976                         }
5977                 }
5978         } else if (klass->rank) {
5979                 MonoClass *eclass, *eoclass;
5980
5981                 if (oklass->rank != klass->rank)
5982                         return FALSE;
5983
5984                 /* vectors vs. one dimensional arrays */
5985                 if (oklass->byval_arg.type != klass->byval_arg.type)
5986                         return FALSE;
5987
5988                 eclass = klass->cast_class;
5989                 eoclass = oklass->cast_class;
5990
5991                 /* 
5992                  * a is b does not imply a[] is b[] when a is a valuetype, and
5993                  * b is a reference type.
5994                  */
5995
5996                 if (eoclass->valuetype) {
5997                         if ((eclass == mono_defaults.enum_class) || 
5998                                 (eclass == mono_defaults.enum_class->parent) ||
5999                                 (eclass == mono_defaults.object_class))
6000                                 return FALSE;
6001                 }
6002
6003                 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
6004         } else if (mono_class_is_nullable (klass)) {
6005                 if (mono_class_is_nullable (oklass))
6006                         return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
6007                 else
6008                         return mono_class_is_assignable_from (klass->cast_class, oklass);
6009         } else if (klass == mono_defaults.object_class)
6010                 return TRUE;
6011
6012         return mono_class_has_parent (oklass, klass);
6013 }       
6014
6015 /**
6016  * mono_class_get_cctor:
6017  * @klass: A MonoClass pointer
6018  *
6019  * Returns: the static constructor of @klass if it exists, NULL otherwise.
6020  */
6021 MonoMethod*
6022 mono_class_get_cctor (MonoClass *klass)
6023 {
6024         MonoCachedClassInfo cached_info;
6025
6026         if (!klass->has_cctor)
6027                 return NULL;
6028
6029         if (mono_class_get_cached_class_info (klass, &cached_info))
6030                 return mono_get_method (klass->image, cached_info.cctor_token, klass);
6031
6032         if (klass->generic_class && !klass->methods)
6033                 return mono_class_get_inflated_method (klass, mono_class_get_cctor (klass->generic_class->container_class));
6034
6035         return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
6036 }
6037
6038 /**
6039  * mono_class_get_finalizer:
6040  * @klass: The MonoClass pointer
6041  *
6042  * Returns: the finalizer method of @klass if it exists, NULL otherwise.
6043  */
6044 MonoMethod*
6045 mono_class_get_finalizer (MonoClass *klass)
6046 {
6047         MonoCachedClassInfo cached_info;
6048
6049         if (!klass->inited)
6050                 mono_class_init (klass);
6051         if (!klass->has_finalize)
6052                 return NULL;
6053
6054         if (mono_class_get_cached_class_info (klass, &cached_info))
6055                 return mono_get_method (cached_info.finalize_image, cached_info.finalize_token, NULL);
6056         else {
6057                 mono_class_setup_vtable (klass);
6058                 return klass->vtable [finalize_slot];
6059         }
6060 }
6061
6062 /**
6063  * mono_class_needs_cctor_run:
6064  * @klass: the MonoClass pointer
6065  * @caller: a MonoMethod describing the caller
6066  *
6067  * Determines whenever the class has a static constructor and whenever it
6068  * needs to be called when executing CALLER.
6069  */
6070 gboolean
6071 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
6072 {
6073         MonoMethod *method;
6074
6075         method = mono_class_get_cctor (klass);
6076         if (method)
6077                 return (method == caller) ? FALSE : TRUE;
6078         else
6079                 return TRUE;
6080 }
6081
6082 /**
6083  * mono_class_array_element_size:
6084  * @klass: 
6085  *
6086  * Returns: the number of bytes an element of type @klass
6087  * uses when stored into an array.
6088  */
6089 gint32
6090 mono_class_array_element_size (MonoClass *klass)
6091 {
6092         MonoType *type = &klass->byval_arg;
6093         
6094 handle_enum:
6095         switch (type->type) {
6096         case MONO_TYPE_I1:
6097         case MONO_TYPE_U1:
6098         case MONO_TYPE_BOOLEAN:
6099                 return 1;
6100         case MONO_TYPE_I2:
6101         case MONO_TYPE_U2:
6102         case MONO_TYPE_CHAR:
6103                 return 2;
6104         case MONO_TYPE_I4:
6105         case MONO_TYPE_U4:
6106         case MONO_TYPE_R4:
6107                 return 4;
6108         case MONO_TYPE_I:
6109         case MONO_TYPE_U:
6110         case MONO_TYPE_PTR:
6111         case MONO_TYPE_CLASS:
6112         case MONO_TYPE_STRING:
6113         case MONO_TYPE_OBJECT:
6114         case MONO_TYPE_SZARRAY:
6115         case MONO_TYPE_ARRAY: 
6116         case MONO_TYPE_VAR:
6117         case MONO_TYPE_MVAR:   
6118                 return sizeof (gpointer);
6119         case MONO_TYPE_I8:
6120         case MONO_TYPE_U8:
6121         case MONO_TYPE_R8:
6122                 return 8;
6123         case MONO_TYPE_VALUETYPE:
6124                 if (type->data.klass->enumtype) {
6125                         type = mono_class_enum_basetype (type->data.klass);
6126                         klass = klass->element_class;
6127                         goto handle_enum;
6128                 }
6129                 return mono_class_instance_size (klass) - sizeof (MonoObject);
6130         case MONO_TYPE_GENERICINST:
6131                 type = &type->data.generic_class->container_class->byval_arg;
6132                 goto handle_enum;
6133         default:
6134                 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
6135         }
6136         return -1;
6137 }
6138
6139 /**
6140  * mono_array_element_size:
6141  * @ac: pointer to a #MonoArrayClass
6142  *
6143  * Returns: the size of single array element.
6144  */
6145 gint32
6146 mono_array_element_size (MonoClass *ac)
6147 {
6148         g_assert (ac->rank);
6149         return ac->sizes.element_size;
6150 }
6151
6152 gpointer
6153 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
6154               MonoGenericContext *context)
6155 {
6156         if (image->dynamic) {
6157                 MonoClass *tmp_handle_class;
6158                 gpointer obj = mono_lookup_dynamic_token_class (image, token, TRUE, &tmp_handle_class, context);
6159
6160                 g_assert (tmp_handle_class);
6161                 if (handle_class)
6162                         *handle_class = tmp_handle_class;
6163
6164                 if (tmp_handle_class == mono_defaults.typehandle_class)
6165                         return &((MonoClass*)obj)->byval_arg;
6166                 else
6167                         return obj;
6168         }
6169
6170         switch (token & 0xff000000) {
6171         case MONO_TOKEN_TYPE_DEF:
6172         case MONO_TOKEN_TYPE_REF:
6173         case MONO_TOKEN_TYPE_SPEC: {
6174                 MonoType *type;
6175                 if (handle_class)
6176                         *handle_class = mono_defaults.typehandle_class;
6177                 type = mono_type_get_full (image, token, context);
6178                 if (!type)
6179                         return NULL;
6180                 mono_class_init (mono_class_from_mono_type (type));
6181                 /* We return a MonoType* as handle */
6182                 return type;
6183         }
6184         case MONO_TOKEN_FIELD_DEF: {
6185                 MonoClass *class;
6186                 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
6187                 if (handle_class)
6188                         *handle_class = mono_defaults.fieldhandle_class;
6189                 class = mono_class_get_full (image, MONO_TOKEN_TYPE_DEF | type, context);
6190                 if (!class)
6191                         return NULL;
6192                 mono_class_init (class);
6193                 return mono_class_get_field (class, token);
6194         }
6195         case MONO_TOKEN_METHOD_DEF:
6196         case MONO_TOKEN_METHOD_SPEC: {
6197                 MonoMethod *meth;
6198                 meth = mono_get_method_full (image, token, NULL, context);
6199                 if (handle_class)
6200                         *handle_class = mono_defaults.methodhandle_class;
6201                 return meth;
6202         }
6203         case MONO_TOKEN_MEMBER_REF: {
6204                 guint32 cols [MONO_MEMBERREF_SIZE];
6205                 const char *sig;
6206                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
6207                 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
6208                 mono_metadata_decode_blob_size (sig, &sig);
6209                 if (*sig == 0x6) { /* it's a field */
6210                         MonoClass *klass;
6211                         MonoClassField *field;
6212                         field = mono_field_from_token (image, token, &klass, context);
6213                         if (handle_class)
6214                                 *handle_class = mono_defaults.fieldhandle_class;
6215                         return field;
6216                 } else {
6217                         MonoMethod *meth;
6218                         meth = mono_get_method_full (image, token, NULL, context);
6219                         if (handle_class)
6220                                 *handle_class = mono_defaults.methodhandle_class;
6221                         return meth;
6222                 }
6223         }
6224         default:
6225                 g_warning ("Unknown token 0x%08x in ldtoken", token);
6226                 break;
6227         }
6228         return NULL;
6229 }
6230
6231 /**
6232  * This function might need to call runtime functions so it can't be part
6233  * of the metadata library.
6234  */
6235 static MonoLookupDynamicToken lookup_dynamic = NULL;
6236
6237 void
6238 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func)
6239 {
6240         lookup_dynamic = func;
6241 }
6242
6243 gpointer
6244 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context)
6245 {
6246         MonoClass *handle_class;
6247
6248         return lookup_dynamic (image, token, TRUE, &handle_class, context);
6249 }
6250
6251 gpointer
6252 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context)
6253 {
6254         return lookup_dynamic (image, token, valid_token, handle_class, context);
6255 }
6256
6257 static MonoGetCachedClassInfo get_cached_class_info = NULL;
6258
6259 void
6260 mono_install_get_cached_class_info (MonoGetCachedClassInfo func)
6261 {
6262         get_cached_class_info = func;
6263 }
6264
6265 static gboolean
6266 mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
6267 {
6268         if (!get_cached_class_info)
6269                 return FALSE;
6270         else
6271                 return get_cached_class_info (klass, res);
6272 }
6273
6274 void
6275 mono_install_get_class_from_name (MonoGetClassFromName func)
6276 {
6277         get_class_from_name = func;
6278 }
6279
6280 MonoImage*
6281 mono_class_get_image (MonoClass *klass)
6282 {
6283         return klass->image;
6284 }
6285
6286 /**
6287  * mono_class_get_element_class:
6288  * @klass: the MonoClass to act on
6289  *
6290  * Returns: the element class of an array or an enumeration.
6291  */
6292 MonoClass*
6293 mono_class_get_element_class (MonoClass *klass)
6294 {
6295         return klass->element_class;
6296 }
6297
6298 /**
6299  * mono_class_is_valuetype:
6300  * @klass: the MonoClass to act on
6301  *
6302  * Returns: true if the MonoClass represents a ValueType.
6303  */
6304 gboolean
6305 mono_class_is_valuetype (MonoClass *klass)
6306 {
6307         return klass->valuetype;
6308 }
6309
6310 /**
6311  * mono_class_is_enum:
6312  * @klass: the MonoClass to act on
6313  *
6314  * Returns: true if the MonoClass represents an enumeration.
6315  */
6316 gboolean
6317 mono_class_is_enum (MonoClass *klass)
6318 {
6319         return klass->enumtype;
6320 }
6321
6322 /**
6323  * mono_class_enum_basetype:
6324  * @klass: the MonoClass to act on
6325  *
6326  * Returns: the underlying type representation for an enumeration.
6327  */
6328 MonoType*
6329 mono_class_enum_basetype (MonoClass *klass)
6330 {
6331         if (klass->element_class == klass)
6332                 /* SRE */
6333                 return NULL;
6334         else
6335                 return &klass->element_class->byval_arg;
6336 }
6337
6338 /**
6339  * mono_class_get_parent
6340  * @klass: the MonoClass to act on
6341  *
6342  * Returns: the parent class for this class.
6343  */
6344 MonoClass*
6345 mono_class_get_parent (MonoClass *klass)
6346 {
6347         return klass->parent;
6348 }
6349
6350 /**
6351  * mono_class_get_nesting_type;
6352  * @klass: the MonoClass to act on
6353  *
6354  * Returns: the container type where this type is nested or NULL if this type is not a nested type.
6355  */
6356 MonoClass*
6357 mono_class_get_nesting_type (MonoClass *klass)
6358 {
6359         return klass->nested_in;
6360 }
6361
6362 /**
6363  * mono_class_get_rank:
6364  * @klass: the MonoClass to act on
6365  *
6366  * Returns: the rank for the array (the number of dimensions).
6367  */
6368 int
6369 mono_class_get_rank (MonoClass *klass)
6370 {
6371         return klass->rank;
6372 }
6373
6374 /**
6375  * mono_class_get_flags:
6376  * @klass: the MonoClass to act on
6377  *
6378  * The type flags from the TypeDef table from the metadata.
6379  * see the TYPE_ATTRIBUTE_* definitions on tabledefs.h for the
6380  * different values.
6381  *
6382  * Returns: the flags from the TypeDef table.
6383  */
6384 guint32
6385 mono_class_get_flags (MonoClass *klass)
6386 {
6387         return klass->flags;
6388 }
6389
6390 /**
6391  * mono_class_get_name
6392  * @klass: the MonoClass to act on
6393  *
6394  * Returns: the name of the class.
6395  */
6396 const char*
6397 mono_class_get_name (MonoClass *klass)
6398 {
6399         return klass->name;
6400 }
6401
6402 /**
6403  * mono_class_get_namespace:
6404  * @klass: the MonoClass to act on
6405  *
6406  * Returns: the namespace of the class.
6407  */
6408 const char*
6409 mono_class_get_namespace (MonoClass *klass)
6410 {
6411         return klass->name_space;
6412 }
6413
6414 /**
6415  * mono_class_get_type:
6416  * @klass: the MonoClass to act on
6417  *
6418  * This method returns the internal Type representation for the class.
6419  *
6420  * Returns: the MonoType from the class.
6421  */
6422 MonoType*
6423 mono_class_get_type (MonoClass *klass)
6424 {
6425         return &klass->byval_arg;
6426 }
6427
6428 /**
6429  * mono_class_get_type_token
6430  * @klass: the MonoClass to act on
6431  *
6432  * This method returns type token for the class.
6433  *
6434  * Returns: the type token for the class.
6435  */
6436 guint32
6437 mono_class_get_type_token (MonoClass *klass)
6438 {
6439   return klass->type_token;
6440 }
6441
6442 /**
6443  * mono_class_get_byref_type:
6444  * @klass: the MonoClass to act on
6445  *
6446  * 
6447  */
6448 MonoType*
6449 mono_class_get_byref_type (MonoClass *klass)
6450 {
6451         return &klass->this_arg;
6452 }
6453
6454 /**
6455  * mono_class_num_fields:
6456  * @klass: the MonoClass to act on
6457  *
6458  * Returns: the number of static and instance fields in the class.
6459  */
6460 int
6461 mono_class_num_fields (MonoClass *klass)
6462 {
6463         return klass->field.count;
6464 }
6465
6466 /**
6467  * mono_class_num_methods:
6468  * @klass: the MonoClass to act on
6469  *
6470  * Returns: the number of methods in the class.
6471  */
6472 int
6473 mono_class_num_methods (MonoClass *klass)
6474 {
6475         return klass->method.count;
6476 }
6477
6478 /**
6479  * mono_class_num_properties
6480  * @klass: the MonoClass to act on
6481  *
6482  * Returns: the number of properties in the class.
6483  */
6484 int
6485 mono_class_num_properties (MonoClass *klass)
6486 {
6487         mono_class_setup_properties (klass);
6488
6489         return klass->ext->property.count;
6490 }
6491
6492 /**
6493  * mono_class_num_events:
6494  * @klass: the MonoClass to act on
6495  *
6496  * Returns: the number of events in the class.
6497  */
6498 int
6499 mono_class_num_events (MonoClass *klass)
6500 {
6501         mono_class_setup_events (klass);
6502
6503         return klass->ext->event.count;
6504 }
6505
6506 /**
6507  * mono_class_get_fields:
6508  * @klass: the MonoClass to act on
6509  *
6510  * This routine is an iterator routine for retrieving the fields in a class.
6511  *
6512  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6513  * iterate over all of the elements.  When no more values are
6514  * available, the return value is NULL.
6515  *
6516  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
6517  */
6518 MonoClassField*
6519 mono_class_get_fields (MonoClass* klass, gpointer *iter)
6520 {
6521         MonoClassField* field;
6522         if (!iter)
6523                 return NULL;
6524         if (!*iter) {
6525                 mono_class_setup_fields_locking (klass);
6526                 if (klass->exception_type)
6527                         return NULL;
6528                 /* start from the first */
6529                 if (klass->field.count) {
6530                         return *iter = &klass->fields [0];
6531                 } else {
6532                         /* no fields */
6533                         return NULL;
6534                 }
6535         }
6536         field = *iter;
6537         field++;
6538         if (field < &klass->fields [klass->field.count]) {
6539                 return *iter = field;
6540         }
6541         return NULL;
6542 }
6543
6544 /**
6545  * mono_class_get_methods
6546  * @klass: the MonoClass to act on
6547  *
6548  * This routine is an iterator routine for retrieving the fields in a class.
6549  *
6550  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6551  * iterate over all of the elements.  When no more values are
6552  * available, the return value is NULL.
6553  *
6554  * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
6555  */
6556 MonoMethod*
6557 mono_class_get_methods (MonoClass* klass, gpointer *iter)
6558 {
6559         MonoMethod** method;
6560         if (!iter)
6561                 return NULL;
6562         if (!klass->inited)
6563                 mono_class_init (klass);
6564         if (!*iter) {
6565                 mono_class_setup_methods (klass);
6566                 /* start from the first */
6567                 if (klass->method.count) {
6568                         *iter = &klass->methods [0];
6569                         return klass->methods [0];
6570                 } else {
6571                         /* no method */
6572                         return NULL;
6573                 }
6574         }
6575         method = *iter;
6576         method++;
6577         if (method < &klass->methods [klass->method.count]) {
6578                 *iter = method;
6579                 return *method;
6580         }
6581         return NULL;
6582 }
6583
6584 /*
6585  * mono_class_get_virtual_methods:
6586  *
6587  *   Iterate over the virtual methods of KLASS.
6588  *
6589  * LOCKING: Assumes the loader lock is held (because of the klass->methods check).
6590  */
6591 static MonoMethod*
6592 mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter)
6593 {
6594         MonoMethod** method;
6595         if (!iter)
6596                 return NULL;
6597         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass) || mono_debug_using_mono_debugger ()) {
6598                 if (!*iter) {
6599                         mono_class_setup_methods (klass);
6600                         /* start from the first */
6601                         method = &klass->methods [0];
6602                 } else {
6603                         method = *iter;
6604                         method++;
6605                 }
6606                 while (method < &klass->methods [klass->method.count]) {
6607                         if (((*method)->flags & METHOD_ATTRIBUTE_VIRTUAL))
6608                                 break;
6609                         method ++;
6610                 }
6611                 if (method < &klass->methods [klass->method.count]) {
6612                         *iter = method;
6613                         return *method;
6614                 } else {
6615                         return NULL;
6616                 }
6617         } else {
6618                 /* Search directly in metadata to avoid calling setup_methods () */
6619                 MonoMethod *res = NULL;
6620                 int i, start_index;
6621
6622                 if (!*iter) {
6623                         start_index = 0;
6624                 } else {
6625                         start_index = GPOINTER_TO_UINT (*iter);
6626                 }
6627
6628                 for (i = start_index; i < klass->method.count; ++i) {
6629                         guint32 cols [MONO_METHOD_SIZE];
6630
6631                         /* class->method.first points into the methodptr table */
6632                         mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
6633
6634                         if (cols [MONO_METHOD_FLAGS] & METHOD_ATTRIBUTE_VIRTUAL)
6635                                 break;
6636                 }
6637
6638                 if (i < klass->method.count) {
6639                         res = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
6640                         /* Add 1 here so the if (*iter) check fails */
6641                         *iter = GUINT_TO_POINTER (i + 1);
6642                         return res;
6643                 } else {
6644                         return NULL;
6645                 }
6646         }
6647 }
6648
6649 /**
6650  * mono_class_get_properties:
6651  * @klass: the MonoClass to act on
6652  *
6653  * This routine is an iterator routine for retrieving the properties in a class.
6654  *
6655  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6656  * iterate over all of the elements.  When no more values are
6657  * available, the return value is NULL.
6658  *
6659  * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
6660  */
6661 MonoProperty*
6662 mono_class_get_properties (MonoClass* klass, gpointer *iter)
6663 {
6664         MonoProperty* property;
6665         if (!iter)
6666                 return NULL;
6667         if (!klass->inited)
6668                 mono_class_init (klass);
6669         if (!*iter) {
6670                 mono_class_setup_properties (klass);
6671                 /* start from the first */
6672                 if (klass->ext->property.count) {
6673                         return *iter = &klass->ext->properties [0];
6674                 } else {
6675                         /* no fields */
6676                         return NULL;
6677                 }
6678         }
6679         property = *iter;
6680         property++;
6681         if (property < &klass->ext->properties [klass->ext->property.count]) {
6682                 return *iter = property;
6683         }
6684         return NULL;
6685 }
6686
6687 /**
6688  * mono_class_get_events:
6689  * @klass: the MonoClass to act on
6690  *
6691  * This routine is an iterator routine for retrieving the properties in a class.
6692  *
6693  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6694  * iterate over all of the elements.  When no more values are
6695  * available, the return value is NULL.
6696  *
6697  * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
6698  */
6699 MonoEvent*
6700 mono_class_get_events (MonoClass* klass, gpointer *iter)
6701 {
6702         MonoEvent* event;
6703         if (!iter)
6704                 return NULL;
6705         if (!klass->inited)
6706                 mono_class_init (klass);
6707         if (!*iter) {
6708                 mono_class_setup_events (klass);
6709                 /* start from the first */
6710                 if (klass->ext->event.count) {
6711                         return *iter = &klass->ext->events [0];
6712                 } else {
6713                         /* no fields */
6714                         return NULL;
6715                 }
6716         }
6717         event = *iter;
6718         event++;
6719         if (event < &klass->ext->events [klass->ext->event.count]) {
6720                 return *iter = event;
6721         }
6722         return NULL;
6723 }
6724
6725 /**
6726  * mono_class_get_interfaces
6727  * @klass: the MonoClass to act on
6728  *
6729  * This routine is an iterator routine for retrieving the interfaces implemented by this class.
6730  *
6731  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6732  * iterate over all of the elements.  When no more values are
6733  * available, the return value is NULL.
6734  *
6735  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
6736  */
6737 MonoClass*
6738 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
6739 {
6740         MonoClass** iface;
6741         if (!iter)
6742                 return NULL;
6743         if (!*iter) {
6744                 if (!klass->inited)
6745                         mono_class_init (klass);
6746                 if (!klass->interfaces_inited)
6747                         mono_class_setup_interfaces (klass);
6748                 /* start from the first */
6749                 if (klass->interface_count) {
6750                         *iter = &klass->interfaces [0];
6751                         return klass->interfaces [0];
6752                 } else {
6753                         /* no interface */
6754                         return NULL;
6755                 }
6756         }
6757         iface = *iter;
6758         iface++;
6759         if (iface < &klass->interfaces [klass->interface_count]) {
6760                 *iter = iface;
6761                 return *iface;
6762         }
6763         return NULL;
6764 }
6765
6766 /**
6767  * mono_class_get_nested_types
6768  * @klass: the MonoClass to act on
6769  *
6770  * This routine is an iterator routine for retrieving the nested types of a class.
6771  * This works only if @klass is non-generic, or a generic type definition.
6772  *
6773  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6774  * iterate over all of the elements.  When no more values are
6775  * available, the return value is NULL.
6776  *
6777  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
6778  */
6779 MonoClass*
6780 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
6781 {
6782         GList *item;
6783         int i;
6784
6785         if (!iter)
6786                 return NULL;
6787         if (!klass->inited)
6788                 mono_class_init (klass);
6789         if (!klass->nested_classes_inited) {
6790                 if (!klass->type_token)
6791                         klass->nested_classes_inited = TRUE;
6792                 mono_loader_lock ();
6793                 if (!klass->nested_classes_inited) {
6794                         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, 1);
6795                         while (i) {
6796                                 MonoClass* nclass;
6797                                 guint32 cols [MONO_NESTED_CLASS_SIZE];
6798                                 mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
6799                                 nclass = mono_class_create_from_typedef (klass->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED]);
6800                                 mono_class_alloc_ext (klass);
6801                                 klass->ext->nested_classes = g_list_prepend_image (klass->image, klass->ext->nested_classes, nclass);
6802
6803                                 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
6804                         }
6805                 }
6806                 mono_memory_barrier ();
6807                 klass->nested_classes_inited = TRUE;
6808                 mono_loader_unlock ();
6809         }
6810
6811         if (!*iter) {
6812                 /* start from the first */
6813                 if (klass->ext && klass->ext->nested_classes) {
6814                         *iter = klass->ext->nested_classes;
6815                         return klass->ext->nested_classes->data;
6816                 } else {
6817                         /* no nested types */
6818                         return NULL;
6819                 }
6820         }
6821         item = *iter;
6822         item = item->next;
6823         if (item) {
6824                 *iter = item;
6825                 return item->data;
6826         }
6827         return NULL;
6828 }
6829
6830 /**
6831  * mono_field_get_name:
6832  * @field: the MonoClassField to act on
6833  *
6834  * Returns: the name of the field.
6835  */
6836 const char*
6837 mono_field_get_name (MonoClassField *field)
6838 {
6839         return field->name;
6840 }
6841
6842 /**
6843  * mono_field_get_type:
6844  * @field: the MonoClassField to act on
6845  *
6846  * Returns: MonoType of the field.
6847  */
6848 MonoType*
6849 mono_field_get_type (MonoClassField *field)
6850 {
6851         return field->type;
6852 }
6853
6854 /**
6855  * mono_field_get_type:
6856  * @field: the MonoClassField to act on
6857  *
6858  * Returns: MonoClass where the field was defined.
6859  */
6860 MonoClass*
6861 mono_field_get_parent (MonoClassField *field)
6862 {
6863         return field->parent;
6864 }
6865
6866 /**
6867  * mono_field_get_flags;
6868  * @field: the MonoClassField to act on
6869  *
6870  * The metadata flags for a field are encoded using the
6871  * FIELD_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
6872  *
6873  * Returns: the flags for the field.
6874  */
6875 guint32
6876 mono_field_get_flags (MonoClassField *field)
6877 {
6878         return field->type->attrs;
6879 }
6880
6881 /**
6882  * mono_field_get_offset;
6883  * @field: the MonoClassField to act on
6884  *
6885  * Returns: the field offset.
6886  */
6887 guint32
6888 mono_field_get_offset (MonoClassField *field)
6889 {
6890         return field->offset;
6891 }
6892
6893 static const char *
6894 mono_field_get_rva (MonoClassField *field)
6895 {
6896         guint32 rva;
6897         int field_index;
6898         MonoClass *klass = field->parent;
6899
6900         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA);
6901
6902         if (!klass->ext || !klass->ext->field_def_values) {
6903                 mono_loader_lock ();
6904                 mono_class_alloc_ext (klass);
6905                 if (!klass->ext->field_def_values)
6906                         klass->ext->field_def_values = mono_image_alloc0 (klass->image, sizeof (MonoFieldDefaultValue) * klass->field.count);
6907                 mono_loader_unlock ();
6908         }
6909
6910         field_index = mono_field_get_index (field);
6911                 
6912         if (!klass->ext->field_def_values [field_index].data && !klass->image->dynamic) {
6913                 mono_metadata_field_info (field->parent->image, klass->field.first + field_index, NULL, &rva, NULL);
6914                 if (!rva)
6915                         g_warning ("field %s in %s should have RVA data, but hasn't", mono_field_get_name (field), field->parent->name);
6916                 klass->ext->field_def_values [field_index].data = mono_image_rva_map (field->parent->image, rva);
6917         }
6918
6919         return klass->ext->field_def_values [field_index].data;
6920 }
6921
6922 /**
6923  * mono_field_get_data;
6924  * @field: the MonoClassField to act on
6925  *
6926  * Returns: pointer to the metadata constant value or to the field
6927  * data if it has an RVA flag.
6928  */
6929 const char *
6930 mono_field_get_data (MonoClassField *field)
6931 {
6932         if (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT) {
6933                 MonoTypeEnum def_type;
6934
6935                 return mono_class_get_field_default_value (field, &def_type);
6936         } else if (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA) {
6937                 return mono_field_get_rva (field);
6938         } else {
6939                 return NULL;
6940         }
6941 }
6942
6943 /**
6944  * mono_property_get_name: 
6945  * @prop: the MonoProperty to act on
6946  *
6947  * Returns: the name of the property
6948  */
6949 const char*
6950 mono_property_get_name (MonoProperty *prop)
6951 {
6952         return prop->name;
6953 }
6954
6955 /**
6956  * mono_property_get_set_method
6957  * @prop: the MonoProperty to act on.
6958  *
6959  * Returns: the setter method of the property (A MonoMethod)
6960  */
6961 MonoMethod*
6962 mono_property_get_set_method (MonoProperty *prop)
6963 {
6964         return prop->set;
6965 }
6966
6967 /**
6968  * mono_property_get_get_method
6969  * @prop: the MonoProperty to act on.
6970  *
6971  * Returns: the setter method of the property (A MonoMethod)
6972  */
6973 MonoMethod*
6974 mono_property_get_get_method (MonoProperty *prop)
6975 {
6976         return prop->get;
6977 }
6978
6979 /**
6980  * mono_property_get_parent:
6981  * @prop: the MonoProperty to act on.
6982  *
6983  * Returns: the MonoClass where the property was defined.
6984  */
6985 MonoClass*
6986 mono_property_get_parent (MonoProperty *prop)
6987 {
6988         return prop->parent;
6989 }
6990
6991 /**
6992  * mono_property_get_flags:
6993  * @prop: the MonoProperty to act on.
6994  *
6995  * The metadata flags for a property are encoded using the
6996  * PROPERTY_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
6997  *
6998  * Returns: the flags for the property.
6999  */
7000 guint32
7001 mono_property_get_flags (MonoProperty *prop)
7002 {
7003         return prop->attrs;
7004 }
7005
7006 /**
7007  * mono_event_get_name:
7008  * @event: the MonoEvent to act on
7009  *
7010  * Returns: the name of the event.
7011  */
7012 const char*
7013 mono_event_get_name (MonoEvent *event)
7014 {
7015         return event->name;
7016 }
7017
7018 /**
7019  * mono_event_get_add_method:
7020  * @event: The MonoEvent to act on.
7021  *
7022  * Returns: the @add' method for the event (a MonoMethod).
7023  */
7024 MonoMethod*
7025 mono_event_get_add_method (MonoEvent *event)
7026 {
7027         return event->add;
7028 }
7029
7030 /**
7031  * mono_event_get_remove_method:
7032  * @event: The MonoEvent to act on.
7033  *
7034  * Returns: the @remove method for the event (a MonoMethod).
7035  */
7036 MonoMethod*
7037 mono_event_get_remove_method (MonoEvent *event)
7038 {
7039         return event->remove;
7040 }
7041
7042 /**
7043  * mono_event_get_raise_method:
7044  * @event: The MonoEvent to act on.
7045  *
7046  * Returns: the @raise method for the event (a MonoMethod).
7047  */
7048 MonoMethod*
7049 mono_event_get_raise_method (MonoEvent *event)
7050 {
7051         return event->raise;
7052 }
7053
7054 /**
7055  * mono_event_get_parent:
7056  * @event: the MonoEvent to act on.
7057  *
7058  * Returns: the MonoClass where the event is defined.
7059  */
7060 MonoClass*
7061 mono_event_get_parent (MonoEvent *event)
7062 {
7063         return event->parent;
7064 }
7065
7066 /**
7067  * mono_event_get_flags
7068  * @event: the MonoEvent to act on.
7069  *
7070  * The metadata flags for an event are encoded using the
7071  * EVENT_* constants.  See the tabledefs.h file for details.
7072  *
7073  * Returns: the flags for the event.
7074  */
7075 guint32
7076 mono_event_get_flags (MonoEvent *event)
7077 {
7078         return event->attrs;
7079 }
7080
7081 /**
7082  * mono_class_get_method_from_name:
7083  * @klass: where to look for the method
7084  * @name_space: name of the method
7085  * @param_count: number of parameters. -1 for any number.
7086  *
7087  * Obtains a MonoMethod with a given name and number of parameters.
7088  * It only works if there are no multiple signatures for any given method name.
7089  */
7090 MonoMethod *
7091 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
7092 {
7093         return mono_class_get_method_from_name_flags (klass, name, param_count, 0);
7094 }
7095
7096 static MonoMethod*
7097 find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags)
7098 {
7099         MonoMethod *res = NULL;
7100         int i;
7101
7102         /* Search directly in the metadata to avoid calling setup_methods () */
7103         for (i = 0; i < klass->method.count; ++i) {
7104                 guint32 cols [MONO_METHOD_SIZE];
7105                 MonoMethod *method;
7106
7107                 /* class->method.first points into the methodptr table */
7108                 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
7109
7110                 if (!strcmp (mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]), name)) {
7111                         method = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
7112                         if ((param_count == -1) || mono_method_signature (method)->param_count == param_count) {
7113                                 res = method;
7114                                 break;
7115                         }
7116                 }
7117         }
7118
7119         return res;
7120 }
7121
7122 /**
7123  * mono_class_get_method_from_name_flags:
7124  * @klass: where to look for the method
7125  * @name_space: name of the method
7126  * @param_count: number of parameters. -1 for any number.
7127  * @flags: flags which must be set in the method
7128  *
7129  * Obtains a MonoMethod with a given name and number of parameters.
7130  * It only works if there are no multiple signatures for any given method name.
7131  */
7132 MonoMethod *
7133 mono_class_get_method_from_name_flags (MonoClass *klass, const char *name, int param_count, int flags)
7134 {
7135         MonoMethod *res = NULL;
7136         int i;
7137
7138         mono_class_init (klass);
7139
7140         if (klass->generic_class && !klass->methods) {
7141                 res = mono_class_get_method_from_name_flags (klass->generic_class->container_class, name, param_count, flags);
7142                 if (res)
7143                         res = mono_class_inflate_generic_method_full (res, klass, mono_class_get_context (klass));
7144                 return res;
7145         }
7146
7147         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
7148                 mono_class_setup_methods (klass);
7149                 for (i = 0; i < klass->method.count; ++i) {
7150                         MonoMethod *method = klass->methods [i];
7151
7152                         if (method->name[0] == name [0] && 
7153                                 !strcmp (name, method->name) &&
7154                                 (param_count == -1 || mono_method_signature (method)->param_count == param_count) &&
7155                                 ((method->flags & flags) == flags)) {
7156                                 res = method;
7157                                 break;
7158                         }
7159                 }
7160         }
7161         else {
7162             res = find_method_in_metadata (klass, name, param_count, flags);
7163         }
7164
7165         return res;
7166 }
7167
7168 /**
7169  * mono_class_set_failure:
7170  * @klass: class in which the failure was detected
7171  * @ex_type: the kind of exception/error to be thrown (later)
7172  * @ex_data: exception data (specific to each type of exception/error)
7173  *
7174  * Keep a detected failure informations in the class for later processing.
7175  * Note that only the first failure is kept.
7176  *
7177  * LOCKING: Acquires the loader lock.
7178  */
7179 gboolean
7180 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data)
7181 {
7182         if (klass->exception_type)
7183                 return FALSE;
7184
7185         mono_loader_lock ();
7186         klass->exception_type = ex_type;
7187         if (ex_data)
7188                 mono_image_property_insert (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA, ex_data);
7189         mono_loader_unlock ();
7190
7191         return TRUE;
7192 }
7193
7194 /*
7195  * mono_class_get_exception_data:
7196  *
7197  *   Return the exception_data property of KLASS.
7198  *
7199  * LOCKING: Acquires the loader lock.
7200  */
7201 gpointer
7202 mono_class_get_exception_data (MonoClass *klass)
7203 {
7204         return mono_image_property_lookup (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA);
7205 }
7206
7207 /**
7208  * mono_classes_init:
7209  *
7210  * Initialize the resources used by this module.
7211  */
7212 void
7213 mono_classes_init (void)
7214 {
7215         mono_counters_register ("Inflated methods size",
7216                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_methods_size);
7217         mono_counters_register ("Inflated classes",
7218                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes);
7219         mono_counters_register ("Inflated classes size",
7220                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes_size);
7221         mono_counters_register ("MonoClass size",
7222                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &classes_size);
7223         mono_counters_register ("MonoClassExt size",
7224                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ext_size);
7225 }
7226
7227 /**
7228  * mono_classes_cleanup:
7229  *
7230  * Free the resources used by this module.
7231  */
7232 void
7233 mono_classes_cleanup (void)
7234 {
7235         if (global_interface_bitset)
7236                 mono_bitset_free (global_interface_bitset);
7237 }
7238
7239 /**
7240  * mono_class_get_exception_for_failure:
7241  * @klass: class in which the failure was detected
7242  *
7243  * Return a constructed MonoException than the caller can then throw
7244  * using mono_raise_exception - or NULL if no failure is present (or
7245  * doesn't result in an exception).
7246  */
7247 MonoException*
7248 mono_class_get_exception_for_failure (MonoClass *klass)
7249 {
7250         gpointer exception_data = mono_class_get_exception_data (klass);
7251
7252         switch (klass->exception_type) {
7253         case MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND: {
7254                 MonoDomain *domain = mono_domain_get ();
7255                 MonoSecurityManager* secman = mono_security_manager_get_methods ();
7256                 MonoMethod *method = exception_data;
7257                 guint32 error = (method) ? MONO_METADATA_INHERITANCEDEMAND_METHOD : MONO_METADATA_INHERITANCEDEMAND_CLASS;
7258                 MonoObject *exc = NULL;
7259                 gpointer args [4];
7260
7261                 args [0] = &error;
7262                 args [1] = mono_assembly_get_object (domain, mono_image_get_assembly (klass->image));
7263                 args [2] = mono_type_get_object (domain, &klass->byval_arg);
7264                 args [3] = (method) ? mono_method_get_object (domain, method, NULL) : NULL;
7265
7266                 mono_runtime_invoke (secman->inheritsecurityexception, NULL, args, &exc);
7267                 return (MonoException*) exc;
7268         }
7269         case MONO_EXCEPTION_TYPE_LOAD: {
7270                 MonoString *name;
7271                 MonoException *ex;
7272                 char *str = mono_type_get_full_name (klass);
7273                 char *astr = klass->image->assembly? mono_stringify_assembly_name (&klass->image->assembly->aname): NULL;
7274                 name = mono_string_new (mono_domain_get (), str);
7275                 g_free (str);
7276                 ex = mono_get_exception_type_load (name, astr);
7277                 g_free (astr);
7278                 return ex;
7279         }
7280         case MONO_EXCEPTION_MISSING_METHOD: {
7281                 char *class_name = exception_data;
7282                 char *assembly_name = class_name + strlen (class_name) + 1;
7283
7284                 return mono_get_exception_missing_method (class_name, assembly_name);
7285         }
7286         case MONO_EXCEPTION_MISSING_FIELD: {
7287                 char *class_name = exception_data;
7288                 char *member_name = class_name + strlen (class_name) + 1;
7289
7290                 return mono_get_exception_missing_field (class_name, member_name);
7291         }
7292         case MONO_EXCEPTION_FILE_NOT_FOUND: {
7293                 char *msg_format = exception_data;
7294                 char *assembly_name = msg_format + strlen (msg_format) + 1;
7295                 char *msg = g_strdup_printf (msg_format, assembly_name);
7296                 MonoException *ex;
7297
7298                 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), assembly_name));
7299
7300                 g_free (msg);
7301
7302                 return ex;
7303         }
7304         case MONO_EXCEPTION_BAD_IMAGE: {
7305                 return mono_get_exception_bad_image_format (exception_data);
7306         }
7307         default: {
7308                 MonoLoaderError *error;
7309                 MonoException *ex;
7310                 
7311                 error = mono_loader_get_last_error ();
7312                 if (error != NULL){
7313                         ex = mono_loader_error_prepare_exception (error);
7314                         return ex;
7315                 }
7316                 
7317                 /* TODO - handle other class related failures */
7318                 return NULL;
7319         }
7320         }
7321 }
7322
7323 static gboolean
7324 is_nesting_type (MonoClass *outer_klass, MonoClass *inner_klass)
7325  {
7326         outer_klass = mono_class_get_generic_type_definition (outer_klass);
7327         inner_klass = mono_class_get_generic_type_definition (inner_klass);
7328         do {
7329                 if (outer_klass == inner_klass)
7330                         return TRUE;
7331                 inner_klass = inner_klass->nested_in;
7332         } while (inner_klass);
7333         return FALSE;
7334 }
7335
7336 MonoClass *
7337 mono_class_get_generic_type_definition (MonoClass *klass)
7338 {
7339         return klass->generic_class ? klass->generic_class->container_class : klass;
7340 }
7341
7342 /*
7343  * Check if @klass is a subtype of @parent ignoring generic instantiations.
7344  * 
7345  * Generic instantiations are ignored for all super types of @klass.
7346  * 
7347  * Visibility checks ignoring generic instantiations.  
7348  */
7349 gboolean
7350 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent)
7351 {
7352         int i;
7353         klass = mono_class_get_generic_type_definition (klass);
7354         parent = mono_class_get_generic_type_definition (parent);
7355         
7356         for (i = 0; i < klass->idepth; ++i) {
7357                 if (parent == mono_class_get_generic_type_definition (klass->supertypes [i]))
7358                         return TRUE;
7359         }
7360         return FALSE;
7361 }
7362 /*
7363  * Subtype can only access parent members with family protection if the site object
7364  * is subclass of Subtype. For example:
7365  * class A { protected int x; }
7366  * class B : A {
7367  *      void valid_access () {
7368  *              B b;
7369  *              b.x = 0;
7370  *  }
7371  *  void invalid_access () {
7372  *              A a;
7373  *              a.x = 0;
7374  *  }
7375  * }
7376  * */
7377 static gboolean
7378 is_valid_family_access (MonoClass *access_klass, MonoClass *member_klass, MonoClass *context_klass)
7379 {
7380         if (!mono_class_has_parent_and_ignore_generics (access_klass, member_klass))
7381                 return FALSE;
7382
7383         if (context_klass == NULL)
7384                 return TRUE;
7385         /*if access_klass is not member_klass context_klass must be type compat*/
7386         if (access_klass != member_klass && !mono_class_has_parent_and_ignore_generics (context_klass, access_klass))
7387                 return FALSE;
7388         return TRUE;
7389 }
7390
7391 static gboolean
7392 can_access_internals (MonoAssembly *accessing, MonoAssembly* accessed)
7393 {
7394         GSList *tmp;
7395         if (accessing == accessed)
7396                 return TRUE;
7397         if (!accessed || !accessing)
7398                 return FALSE;
7399         mono_assembly_load_friends (accessed);
7400         for (tmp = accessed->friend_assembly_names; tmp; tmp = tmp->next) {
7401                 MonoAssemblyName *friend = tmp->data;
7402                 /* Be conservative with checks */
7403                 if (!friend->name)
7404                         continue;
7405                 if (strcmp (accessing->aname.name, friend->name))
7406                         continue;
7407                 if (friend->public_key_token [0]) {
7408                         if (!accessing->aname.public_key_token [0])
7409                                 continue;
7410                         if (!mono_public_tokens_are_equal (friend->public_key_token, accessing->aname.public_key_token))
7411                                 continue;
7412                 }
7413                 return TRUE;
7414         }
7415         return FALSE;
7416 }
7417
7418 /*
7419  * If klass is a generic type or if it is derived from a generic type, return the
7420  * MonoClass of the generic definition
7421  * Returns NULL if not found
7422  */
7423 static MonoClass*
7424 get_generic_definition_class (MonoClass *klass)
7425 {
7426         while (klass) {
7427                 if (klass->generic_class && klass->generic_class->container_class)
7428                         return klass->generic_class->container_class;
7429                 klass = klass->parent;
7430         }
7431         return NULL;
7432 }
7433
7434 static gboolean
7435 can_access_instantiation (MonoClass *access_klass, MonoGenericInst *ginst)
7436 {
7437         int i;
7438         for (i = 0; i < ginst->type_argc; ++i) {
7439                 MonoType *type = ginst->type_argv[i];
7440                 if (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR)
7441                         continue;
7442                 if (!can_access_type (access_klass, mono_class_from_mono_type (type)))
7443                         return FALSE;
7444         }
7445         return TRUE;
7446 }
7447
7448 static gboolean
7449 can_access_type (MonoClass *access_klass, MonoClass *member_klass)
7450 {
7451         int access_level = member_klass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK;
7452
7453         if (member_klass->generic_class && !can_access_instantiation (access_klass, member_klass->generic_class->context.class_inst))
7454                 return FALSE;
7455
7456         if (is_nesting_type (access_klass, member_klass) || (access_klass->nested_in && is_nesting_type (access_klass->nested_in, member_klass)))
7457                 return TRUE;
7458
7459         if (member_klass->nested_in && !can_access_type (access_klass, member_klass->nested_in))
7460                 return FALSE;
7461
7462         switch (access_level) {
7463         case TYPE_ATTRIBUTE_NOT_PUBLIC:
7464                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7465
7466         case TYPE_ATTRIBUTE_PUBLIC:
7467                 return TRUE;
7468
7469         case TYPE_ATTRIBUTE_NESTED_PUBLIC:
7470                 return TRUE;
7471
7472         case TYPE_ATTRIBUTE_NESTED_PRIVATE:
7473                 return is_nesting_type (member_klass, access_klass);
7474
7475         case TYPE_ATTRIBUTE_NESTED_FAMILY:
7476                 return mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in); 
7477
7478         case TYPE_ATTRIBUTE_NESTED_ASSEMBLY:
7479                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7480
7481         case TYPE_ATTRIBUTE_NESTED_FAM_AND_ASSEM:
7482                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) &&
7483                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7484
7485         case TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM:
7486                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) ||
7487                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7488         }
7489         return FALSE;
7490 }
7491
7492 /* FIXME: check visibility of type, too */
7493 static gboolean
7494 can_access_member (MonoClass *access_klass, MonoClass *member_klass, MonoClass* context_klass, int access_level)
7495 {
7496         MonoClass *member_generic_def;
7497         if (((access_klass->generic_class && access_klass->generic_class->container_class) ||
7498                                         access_klass->generic_container) && 
7499                         (member_generic_def = get_generic_definition_class (member_klass))) {
7500                 MonoClass *access_container;
7501
7502                 if (access_klass->generic_container)
7503                         access_container = access_klass;
7504                 else
7505                         access_container = access_klass->generic_class->container_class;
7506
7507                 if (can_access_member (access_container, member_generic_def, context_klass, access_level))
7508                         return TRUE;
7509         }
7510
7511         /* Partition I 8.5.3.2 */
7512         /* the access level values are the same for fields and methods */
7513         switch (access_level) {
7514         case FIELD_ATTRIBUTE_COMPILER_CONTROLLED:
7515                 /* same compilation unit */
7516                 return access_klass->image == member_klass->image;
7517         case FIELD_ATTRIBUTE_PRIVATE:
7518                 return access_klass == member_klass;
7519         case FIELD_ATTRIBUTE_FAM_AND_ASSEM:
7520                 if (is_valid_family_access (access_klass, member_klass, context_klass) &&
7521                     can_access_internals (access_klass->image->assembly, member_klass->image->assembly))
7522                         return TRUE;
7523                 return FALSE;
7524         case FIELD_ATTRIBUTE_ASSEMBLY:
7525                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7526         case FIELD_ATTRIBUTE_FAMILY:
7527                 if (is_valid_family_access (access_klass, member_klass, context_klass))
7528                         return TRUE;
7529                 return FALSE;
7530         case FIELD_ATTRIBUTE_FAM_OR_ASSEM:
7531                 if (is_valid_family_access (access_klass, member_klass, context_klass))
7532                         return TRUE;
7533                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7534         case FIELD_ATTRIBUTE_PUBLIC:
7535                 return TRUE;
7536         }
7537         return FALSE;
7538 }
7539
7540 gboolean
7541 mono_method_can_access_field (MonoMethod *method, MonoClassField *field)
7542 {
7543         /* FIXME: check all overlapping fields */
7544         int can = can_access_member (method->klass, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7545         if (!can) {
7546                 MonoClass *nested = method->klass->nested_in;
7547                 while (nested) {
7548                         can = can_access_member (nested, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7549                         if (can)
7550                                 return TRUE;
7551                         nested = nested->nested_in;
7552                 }
7553         }
7554         return can;
7555 }
7556
7557 gboolean
7558 mono_method_can_access_method (MonoMethod *method, MonoMethod *called)
7559 {
7560         int can = can_access_member (method->klass, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7561         if (!can) {
7562                 MonoClass *nested = method->klass->nested_in;
7563                 while (nested) {
7564                         can = can_access_member (nested, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7565                         if (can)
7566                                 return TRUE;
7567                         nested = nested->nested_in;
7568                 }
7569         }
7570         /* 
7571          * FIXME:
7572          * with generics calls to explicit interface implementations can be expressed
7573          * directly: the method is private, but we must allow it. This may be opening
7574          * a hole or the generics code should handle this differently.
7575          * Maybe just ensure the interface type is public.
7576          */
7577         if ((called->flags & METHOD_ATTRIBUTE_VIRTUAL) && (called->flags & METHOD_ATTRIBUTE_FINAL))
7578                 return TRUE;
7579         return can;
7580 }
7581
7582 /*
7583  * mono_method_can_access_method_with_context:
7584  * @method: The caller method 
7585  * @called: The called method 
7586  * @context_klass:TThe static type on stack of the owner @called object used
7587  * 
7588  * This function must be used with instance calls, as they have more strict family accessibility.
7589  * It can be used with static mehthod, but context_klass should be NULL.
7590  * 
7591  * Returns: TRUE if caller have proper visibility and acessibility to @called
7592  */
7593 gboolean
7594 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass)
7595 {
7596         MonoClass *access_class = method->klass;
7597         MonoClass *member_class = called->klass;
7598         int can = can_access_member (access_class, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7599         if (!can) {
7600                 MonoClass *nested = access_class->nested_in;
7601                 while (nested) {
7602                         can = can_access_member (nested, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7603                         if (can)
7604                                 break;
7605                         nested = nested->nested_in;
7606                 }
7607         }
7608
7609         if (!can)
7610                 return FALSE;
7611
7612         if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7613                 return FALSE;
7614
7615         if (called->is_inflated) {
7616                 MonoMethodInflated * infl = (MonoMethodInflated*)called;
7617                 if (infl->context.method_inst && !can_access_instantiation (access_class, infl->context.method_inst))
7618                 return FALSE;
7619         }
7620                 
7621         return TRUE;
7622 }
7623
7624
7625 /*
7626  * mono_method_can_access_method_with_context:
7627  * @method: The caller method 
7628  * @field: The accessed field
7629  * @context_klass: The static type on stack of the owner @field object used
7630  * 
7631  * This function must be used with instance fields, as they have more strict family accessibility.
7632  * It can be used with static fields, but context_klass should be NULL.
7633  * 
7634  * Returns: TRUE if caller have proper visibility and acessibility to @field
7635  */
7636 gboolean
7637 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass)
7638 {
7639         MonoClass *access_class = method->klass;
7640         MonoClass *member_class = field->parent;
7641         /* FIXME: check all overlapping fields */
7642         int can = can_access_member (access_class, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7643         if (!can) {
7644                 MonoClass *nested = access_class->nested_in;
7645                 while (nested) {
7646                         can = can_access_member (nested, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7647                         if (can)
7648                                 break;
7649                         nested = nested->nested_in;
7650                 }
7651         }
7652
7653         if (!can)
7654                 return FALSE;
7655
7656         if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7657                 return FALSE;
7658         return TRUE;
7659 }
7660
7661 /**
7662  * mono_type_is_valid_enum_basetype:
7663  * @type: The MonoType to check
7664  *
7665  * Returns: TRUE if the type can be used as the basetype of an enum
7666  */
7667 gboolean mono_type_is_valid_enum_basetype (MonoType * type) {
7668         switch (type->type) {
7669         case MONO_TYPE_I1:
7670         case MONO_TYPE_U1:
7671         case MONO_TYPE_BOOLEAN:
7672         case MONO_TYPE_I2:
7673         case MONO_TYPE_U2:
7674         case MONO_TYPE_CHAR:
7675         case MONO_TYPE_I4:
7676         case MONO_TYPE_U4:
7677         case MONO_TYPE_I8:
7678         case MONO_TYPE_U8:
7679         case MONO_TYPE_I:
7680         case MONO_TYPE_U:
7681                 return TRUE;
7682         }
7683         return FALSE;
7684 }
7685
7686 /**
7687  * mono_class_is_valid_enum:
7688  * @klass: An enum class to be validated
7689  *
7690  * This method verify the required properties an enum should have.
7691  *  
7692  * Returns: TRUE if the informed enum class is valid 
7693  *
7694  * FIXME: TypeBuilder enums are allowed to implement interfaces, but since they cannot have methods, only empty interfaces are possible
7695  * FIXME: enum types are not allowed to have a cctor, but mono_reflection_create_runtime_class sets has_cctor to 1 for all types
7696  * FIXME: TypeBuilder enums can have any kind of static fields, but the spec is very explicit about that (P II 14.3)
7697  */
7698 gboolean mono_class_is_valid_enum (MonoClass *klass) {
7699         MonoClassField * field;
7700         gpointer iter = NULL;
7701         gboolean found_base_field = FALSE;
7702
7703         g_assert (klass->enumtype);
7704         /* we cannot test against mono_defaults.enum_class, or mcs won't be able to compile the System namespace*/
7705         if (!klass->parent || strcmp (klass->parent->name, "Enum") || strcmp (klass->parent->name_space, "System") ) {
7706                 return FALSE;
7707         }
7708
7709         if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) != TYPE_ATTRIBUTE_AUTO_LAYOUT)
7710                 return FALSE;
7711
7712         while ((field = mono_class_get_fields (klass, &iter))) {
7713                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
7714                         if (found_base_field)
7715                                 return FALSE;
7716                         found_base_field = TRUE;
7717                         if (!mono_type_is_valid_enum_basetype (field->type))
7718                                 return FALSE;
7719                 }
7720         }
7721
7722         if (!found_base_field)
7723                 return FALSE;
7724
7725         if (klass->method.count > 0) 
7726                 return FALSE;
7727
7728         return TRUE;
7729 }
7730
7731 gboolean
7732 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass)
7733 {
7734         return gklass->context.class_inst == gklass->container_class->generic_container->context.class_inst;
7735 }
7736
7737 /*
7738  * mono_class_generic_sharing_enabled:
7739  * @class: a class
7740  *
7741  * Returns whether generic sharing is enabled for class.
7742  *
7743  * This is a stop-gap measure to slowly introduce generic sharing
7744  * until we have all the issues sorted out, at which time this
7745  * function will disappear and generic sharing will always be enabled.
7746  */
7747 gboolean
7748 mono_class_generic_sharing_enabled (MonoClass *class)
7749 {
7750 #if defined(__i386__) || defined(__x86_64__) || defined(__arm__) || defined(__mono_ppc__)
7751         static gboolean supported = TRUE;
7752 #else
7753         /* Not supported by the JIT backends */
7754         static gboolean supported = FALSE;
7755 #endif
7756         static int generic_sharing = MONO_GENERIC_SHARING_NONE;
7757         static gboolean inited = FALSE;
7758
7759         if (!inited) {
7760                 const char *option;
7761
7762                 if (supported)
7763                         generic_sharing = MONO_GENERIC_SHARING_ALL;
7764                 else
7765                         generic_sharing = MONO_GENERIC_SHARING_NONE;
7766
7767                 if ((option = g_getenv ("MONO_GENERIC_SHARING"))) {
7768                         if (strcmp (option, "corlib") == 0)
7769                                 generic_sharing = MONO_GENERIC_SHARING_CORLIB;
7770                         else if (strcmp (option, "collections") == 0)
7771                                 generic_sharing = MONO_GENERIC_SHARING_COLLECTIONS;
7772                         else if (strcmp (option, "all") == 0)
7773                                 generic_sharing = MONO_GENERIC_SHARING_ALL;
7774                         else if (strcmp (option, "none") == 0)
7775                                 generic_sharing = MONO_GENERIC_SHARING_NONE;
7776                         else
7777                                 g_warning ("Unknown generic sharing option `%s'.", option);
7778                 }
7779
7780                 if (!supported)
7781                         generic_sharing = MONO_GENERIC_SHARING_NONE;
7782
7783                 inited = TRUE;
7784         }
7785
7786         switch (generic_sharing) {
7787         case MONO_GENERIC_SHARING_NONE:
7788                 return FALSE;
7789         case MONO_GENERIC_SHARING_ALL:
7790                 return TRUE;
7791         case MONO_GENERIC_SHARING_CORLIB :
7792                 return class->image == mono_defaults.corlib;
7793         case MONO_GENERIC_SHARING_COLLECTIONS:
7794                 if (class->image != mono_defaults.corlib)
7795                         return FALSE;
7796                 while (class->nested_in)
7797                         class = class->nested_in;
7798                 return g_str_has_prefix (class->name_space, "System.Collections.Generic");
7799         default:
7800                 g_assert_not_reached ();
7801         }
7802 }
7803
7804 /*
7805  * mono_class_setup_interface_id:
7806  *
7807  * Initializes MonoClass::interface_id if required.
7808  *
7809  * LOCKING: Acquires the loader lock.
7810  */
7811 void
7812 mono_class_setup_interface_id (MonoClass *class)
7813 {
7814         mono_loader_lock ();
7815         if (MONO_CLASS_IS_INTERFACE (class) && !class->interface_id)
7816                 class->interface_id = mono_get_unique_iid (class);
7817         mono_loader_unlock ();
7818 }
7819
7820 /*
7821  * mono_class_alloc_ext:
7822  *
7823  *   Allocate klass->ext if not already done.
7824  * LOCKING: Assumes the loader lock is held.
7825  */
7826 void
7827 mono_class_alloc_ext (MonoClass *klass)
7828 {
7829         if (!klass->ext) {
7830                 if (klass->generic_class) {
7831                         klass->ext = g_new0 (MonoClassExt, 1);
7832                 } else {
7833                         klass->ext = mono_image_alloc0 (klass->image, sizeof (MonoClassExt));
7834                 }
7835                 class_ext_size += sizeof (MonoClassExt);
7836         }
7837 }
7838
7839 /*
7840  * mono_class_setup_interfaces:
7841  *
7842  *   Initialize class->interfaces/interfaces_count.
7843  * LOCKING: Acquires the loader lock.
7844  */
7845 void
7846 mono_class_setup_interfaces (MonoClass *klass)
7847 {
7848         int i;
7849
7850         if (klass->interfaces_inited)
7851                 return;
7852
7853         mono_loader_lock ();
7854
7855         if (klass->interfaces_inited) {
7856                 mono_loader_unlock ();
7857                 return;
7858         }
7859
7860         if (klass->rank == 1 && klass->byval_arg.type != MONO_TYPE_ARRAY && mono_defaults.generic_ilist_class) {
7861                 MonoType *args [1];
7862
7863                 /* generic IList, ICollection, IEnumerable */
7864                 klass->interface_count = 1;
7865                 klass->interfaces = mono_image_alloc0 (klass->image, sizeof (MonoClass*) * klass->interface_count);
7866
7867                 args [0] = &klass->element_class->byval_arg;
7868                 klass->interfaces [0] = mono_class_bind_generic_parameters (
7869                         mono_defaults.generic_ilist_class, 1, args, FALSE);
7870         } else if (klass->generic_class) {
7871                 MonoClass *gklass = klass->generic_class->container_class;
7872
7873                 klass->interface_count = gklass->interface_count;
7874                 klass->interfaces = g_new0 (MonoClass *, klass->interface_count);
7875                 for (i = 0; i < klass->interface_count; i++)
7876                         klass->interfaces [i] = mono_class_inflate_generic_class (gklass->interfaces [i], mono_generic_class_get_context (klass->generic_class));
7877         }
7878
7879         mono_memory_barrier ();
7880
7881         klass->interfaces_inited = TRUE;
7882
7883         mono_loader_unlock ();
7884 }