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