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