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