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