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