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