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