New tests, update.
[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->parent) {
3779                                 /* FIXME: Optimize this */
3780                                 mono_class_setup_vtable (class);
3781                                 if (class->exception_type || mono_loader_get_last_error ())
3782                                         goto fail;
3783                                 cmethod = class->vtable [finalize_slot];
3784                         }
3785
3786                         if (cmethod) {
3787                                 /* Check that this is really the finalizer method */
3788                                 mono_class_setup_vtable (class);
3789                                 if (class->exception_type || mono_loader_get_last_error ())
3790                                         goto fail;
3791
3792                                 class->has_finalize = 0;
3793                                 if (class->parent) { 
3794                                         cmethod = class->vtable [finalize_slot];
3795                                         if (cmethod->is_inflated)
3796                                                 cmethod = ((MonoMethodInflated*)cmethod)->declaring;
3797                                         if (cmethod != default_finalize) {
3798                                                 class->has_finalize = 1;
3799                                         }
3800                                 }
3801                         }
3802                 }
3803
3804                 /* C# doesn't allow interfaces to have cctors */
3805                 if (!MONO_CLASS_IS_INTERFACE (class) || class->image != mono_defaults.corlib) {
3806                         MonoMethod *cmethod = NULL;
3807
3808                         if (class->type_token) {
3809                                 cmethod = find_method_in_metadata (class, ".cctor", 0, METHOD_ATTRIBUTE_SPECIAL_NAME);
3810                                 /* The find_method function ignores the 'flags' argument */
3811                                 if (cmethod && (cmethod->flags & METHOD_ATTRIBUTE_SPECIAL_NAME))
3812                                         class->has_cctor = 1;
3813                         } else {
3814                                 mono_class_setup_methods (class);
3815
3816                                 for (i = 0; i < class->method.count; ++i) {
3817                                         MonoMethod *method = class->methods [i];
3818                                         if ((method->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) && 
3819                                                 (strcmp (".cctor", method->name) == 0)) {
3820                                                 class->has_cctor = 1;
3821                                                 break;
3822                                         }
3823                                 }
3824                         }
3825                 }
3826         }
3827
3828         if (!mono_setup_vtable_in_class_init) {
3829                 /*
3830                  * This is an embedding API break, since the caller might assume that 
3831                  * mono_class_init () constructs a generic vtable, so vtable construction errors
3832                  * are visible right after the mono_class_init (), and not after 
3833                  * mono_class_vtable ().
3834                  */
3835                 if (class->parent) {
3836                         /* This will compute class->parent->vtable_size for some classes */
3837                         mono_class_init (class->parent);
3838                         if (class->parent->exception_type || mono_loader_get_last_error ())
3839                                 goto fail;
3840                         if (!class->parent->vtable_size) {
3841                                 /* FIXME: Get rid of this somehow */
3842                                 mono_class_setup_vtable (class->parent);
3843                                 if (class->parent->exception_type || mono_loader_get_last_error ())
3844                                         goto fail;
3845                         }
3846                         setup_interface_offsets (class, class->parent->vtable_size);
3847                 } else {
3848                         setup_interface_offsets (class, 0);
3849                 }
3850         } else {
3851                 mono_class_setup_vtable (class);
3852
3853                 if (MONO_CLASS_IS_INTERFACE (class))
3854                         setup_interface_offsets (class, 0);
3855         }
3856
3857         if (mono_verifier_is_enabled_for_class (class) && !mono_verifier_verify_class (class)) {
3858                 mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, concat_two_strings_with_zero (class->image, class->name, class->image->assembly_name));
3859                 class_init_ok = FALSE;
3860         }
3861
3862         goto leave;
3863
3864  fail:
3865         class_init_ok = FALSE;
3866
3867  leave:
3868         /* Because of the double-checking locking pattern */
3869         mono_memory_barrier ();
3870         class->inited = 1;
3871         class->init_pending = 0;
3872
3873         if (mono_loader_get_last_error ()) {
3874                 if (class->exception_type == MONO_EXCEPTION_NONE)
3875                         set_failure_from_loader_error (class, mono_loader_get_last_error ());
3876
3877                 mono_loader_clear_error ();
3878         }
3879
3880         mono_loader_unlock ();
3881
3882         if (mono_debugger_class_init_func)
3883                 mono_debugger_class_init_func (class);
3884
3885         return class_init_ok;
3886 }
3887
3888 static gboolean
3889 is_corlib_image (MonoImage *image)
3890 {
3891         /* FIXME: allow the dynamic case for our compilers and with full trust */
3892         if (image->dynamic)
3893                 return image->assembly && !strcmp (image->assembly->aname.name, "mscorlib");
3894         else
3895                 return image == mono_defaults.corlib;
3896 }
3897
3898 /*
3899  * LOCKING: this assumes the loader lock is held
3900  */
3901 void
3902 mono_class_setup_mono_type (MonoClass *class)
3903 {
3904         const char *name = class->name;
3905         const char *nspace = class->name_space;
3906         gboolean is_corlib = is_corlib_image (class->image);
3907
3908         class->this_arg.byref = 1;
3909         class->this_arg.data.klass = class;
3910         class->this_arg.type = MONO_TYPE_CLASS;
3911         class->byval_arg.data.klass = class;
3912         class->byval_arg.type = MONO_TYPE_CLASS;
3913
3914         if (is_corlib && !strcmp (nspace, "System")) {
3915                 if (!strcmp (name, "ValueType")) {
3916                         /*
3917                          * do not set the valuetype bit for System.ValueType.
3918                          * class->valuetype = 1;
3919                          */
3920                         class->blittable = TRUE;
3921                 } else if (!strcmp (name, "Enum")) {
3922                         /*
3923                          * do not set the valuetype bit for System.Enum.
3924                          * class->valuetype = 1;
3925                          */
3926                         class->valuetype = 0;
3927                         class->enumtype = 0;
3928                 } else if (!strcmp (name, "Object")) {
3929                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_OBJECT;
3930                 } else if (!strcmp (name, "String")) {
3931                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_STRING;
3932                 } else if (!strcmp (name, "TypedReference")) {
3933                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_TYPEDBYREF;
3934                 }
3935         }
3936
3937         if (class->valuetype) {
3938                 int t = MONO_TYPE_VALUETYPE;
3939
3940                 if (is_corlib && !strcmp (nspace, "System")) {
3941                         switch (*name) {
3942                         case 'B':
3943                                 if (!strcmp (name, "Boolean")) {
3944                                         t = MONO_TYPE_BOOLEAN;
3945                                 } else if (!strcmp(name, "Byte")) {
3946                                         t = MONO_TYPE_U1;
3947                                         class->blittable = TRUE;                                                
3948                                 }
3949                                 break;
3950                         case 'C':
3951                                 if (!strcmp (name, "Char")) {
3952                                         t = MONO_TYPE_CHAR;
3953                                 }
3954                                 break;
3955                         case 'D':
3956                                 if (!strcmp (name, "Double")) {
3957                                         t = MONO_TYPE_R8;
3958                                         class->blittable = TRUE;                                                
3959                                 }
3960                                 break;
3961                         case 'I':
3962                                 if (!strcmp (name, "Int32")) {
3963                                         t = MONO_TYPE_I4;
3964                                         class->blittable = TRUE;
3965                                 } else if (!strcmp(name, "Int16")) {
3966                                         t = MONO_TYPE_I2;
3967                                         class->blittable = TRUE;
3968                                 } else if (!strcmp(name, "Int64")) {
3969                                         t = MONO_TYPE_I8;
3970                                         class->blittable = TRUE;
3971                                 } else if (!strcmp(name, "IntPtr")) {
3972                                         t = MONO_TYPE_I;
3973                                         class->blittable = TRUE;
3974                                 }
3975                                 break;
3976                         case 'S':
3977                                 if (!strcmp (name, "Single")) {
3978                                         t = MONO_TYPE_R4;
3979                                         class->blittable = TRUE;                                                
3980                                 } else if (!strcmp(name, "SByte")) {
3981                                         t = MONO_TYPE_I1;
3982                                         class->blittable = TRUE;
3983                                 }
3984                                 break;
3985                         case 'U':
3986                                 if (!strcmp (name, "UInt32")) {
3987                                         t = MONO_TYPE_U4;
3988                                         class->blittable = TRUE;
3989                                 } else if (!strcmp(name, "UInt16")) {
3990                                         t = MONO_TYPE_U2;
3991                                         class->blittable = TRUE;
3992                                 } else if (!strcmp(name, "UInt64")) {
3993                                         t = MONO_TYPE_U8;
3994                                         class->blittable = TRUE;
3995                                 } else if (!strcmp(name, "UIntPtr")) {
3996                                         t = MONO_TYPE_U;
3997                                         class->blittable = TRUE;
3998                                 }
3999                                 break;
4000                         case 'T':
4001                                 if (!strcmp (name, "TypedReference")) {
4002                                         t = MONO_TYPE_TYPEDBYREF;
4003                                         class->blittable = TRUE;
4004                                 }
4005                                 break;
4006                         case 'V':
4007                                 if (!strcmp (name, "Void")) {
4008                                         t = MONO_TYPE_VOID;
4009                                 }
4010                                 break;
4011                         default:
4012                                 break;
4013                         }
4014                 }
4015                 class->this_arg.type = class->byval_arg.type = t;
4016         }
4017
4018         if (MONO_CLASS_IS_INTERFACE (class))
4019                 class->interface_id = mono_get_unique_iid (class);
4020
4021 }
4022
4023 /*
4024  * LOCKING: this assumes the loader lock is held
4025  */
4026 void
4027 mono_class_setup_parent (MonoClass *class, MonoClass *parent)
4028 {
4029         gboolean system_namespace;
4030         gboolean is_corlib = is_corlib_image (class->image);
4031
4032         system_namespace = !strcmp (class->name_space, "System") && is_corlib;
4033
4034         /* if root of the hierarchy */
4035         if (system_namespace && !strcmp (class->name, "Object")) {
4036                 class->parent = NULL;
4037                 class->instance_size = sizeof (MonoObject);
4038                 return;
4039         }
4040         if (!strcmp (class->name, "<Module>")) {
4041                 class->parent = NULL;
4042                 class->instance_size = 0;
4043                 return;
4044         }
4045
4046         if (!MONO_CLASS_IS_INTERFACE (class)) {
4047                 /* Imported COM Objects always derive from __ComObject. */
4048                 if (MONO_CLASS_IS_IMPORT (class)) {
4049                         mono_init_com_types ();
4050                         if (parent == mono_defaults.object_class)
4051                                 parent = mono_defaults.com_object_class;
4052                 }
4053                 if (!parent) {
4054                         /* set the parent to something useful and safe, but mark the type as broken */
4055                         parent = mono_defaults.object_class;
4056                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4057                 }
4058
4059                 class->parent = parent;
4060
4061                 if (parent->generic_class && !parent->name) {
4062                         /*
4063                          * If the parent is a generic instance, we may get
4064                          * called before it is fully initialized, especially
4065                          * before it has its name.
4066                          */
4067                         return;
4068                 }
4069
4070                 class->marshalbyref = parent->marshalbyref;
4071                 class->contextbound  = parent->contextbound;
4072                 class->delegate  = parent->delegate;
4073                 if (MONO_CLASS_IS_IMPORT (class))
4074                         class->is_com_object = 1;
4075                 else
4076                         class->is_com_object = parent->is_com_object;
4077                 
4078                 if (system_namespace) {
4079                         if (*class->name == 'M' && !strcmp (class->name, "MarshalByRefObject"))
4080                                 class->marshalbyref = 1;
4081
4082                         if (*class->name == 'C' && !strcmp (class->name, "ContextBoundObject")) 
4083                                 class->contextbound  = 1;
4084
4085                         if (*class->name == 'D' && !strcmp (class->name, "Delegate")) 
4086                                 class->delegate  = 1;
4087                 }
4088
4089                 if (class->parent->enumtype || (is_corlib_image (class->parent->image) && (strcmp (class->parent->name, "ValueType") == 0) && 
4090                                                 (strcmp (class->parent->name_space, "System") == 0)))
4091                         class->valuetype = 1;
4092                 if (is_corlib_image (class->parent->image) && ((strcmp (class->parent->name, "Enum") == 0) && (strcmp (class->parent->name_space, "System") == 0))) {
4093                         class->valuetype = class->enumtype = 1;
4094                 }
4095                 /*class->enumtype = class->parent->enumtype; */
4096                 mono_class_setup_supertypes (class);
4097         } else {
4098                 /* initialize com types if COM interfaces are present */
4099                 if (MONO_CLASS_IS_IMPORT (class))
4100                         mono_init_com_types ();
4101                 class->parent = NULL;
4102         }
4103
4104 }
4105
4106 /*
4107  * mono_class_setup_supertypes:
4108  * @class: a class
4109  *
4110  * Build the data structure needed to make fast type checks work.
4111  * This currently sets two fields in @class:
4112  *  - idepth: distance between @class and System.Object in the type
4113  *    hierarchy + 1
4114  *  - supertypes: array of classes: each element has a class in the hierarchy
4115  *    starting from @class up to System.Object
4116  * 
4117  * LOCKING: this assumes the loader lock is held
4118  */
4119 void
4120 mono_class_setup_supertypes (MonoClass *class)
4121 {
4122         int ms;
4123
4124         if (class->supertypes)
4125                 return;
4126
4127         if (class->parent && !class->parent->supertypes)
4128                 mono_class_setup_supertypes (class->parent);
4129         if (class->parent)
4130                 class->idepth = class->parent->idepth + 1;
4131         else
4132                 class->idepth = 1;
4133
4134         ms = MAX (MONO_DEFAULT_SUPERTABLE_SIZE, class->idepth);
4135         class->supertypes = mono_image_alloc0 (class->image, sizeof (MonoClass *) * ms);
4136
4137         if (class->parent) {
4138                 class->supertypes [class->idepth - 1] = class;
4139                 memcpy (class->supertypes, class->parent->supertypes, class->parent->idepth * sizeof (gpointer));
4140         } else {
4141                 class->supertypes [0] = class;
4142         }
4143 }
4144
4145 /**
4146  * mono_class_create_from_typedef:
4147  * @image: image where the token is valid
4148  * @type_token:  typedef token
4149  *
4150  * Create the MonoClass* representing the specified type token.
4151  * @type_token must be a TypeDef token.
4152  */
4153 static MonoClass *
4154 mono_class_create_from_typedef (MonoImage *image, guint32 type_token)
4155 {
4156         MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
4157         MonoClass *class, *parent = NULL;
4158         guint32 cols [MONO_TYPEDEF_SIZE];
4159         guint32 cols_next [MONO_TYPEDEF_SIZE];
4160         guint tidx = mono_metadata_token_index (type_token);
4161         MonoGenericContext *context = NULL;
4162         const char *name, *nspace;
4163         guint icount = 0; 
4164         MonoClass **interfaces;
4165         guint32 field_last, method_last;
4166         guint32 nesting_tokeen;
4167
4168         mono_loader_lock ();
4169
4170         if ((class = mono_internal_hash_table_lookup (&image->class_cache, GUINT_TO_POINTER (type_token)))) {
4171                 mono_loader_unlock ();
4172                 return class;
4173         }
4174
4175         g_assert (mono_metadata_token_table (type_token) == MONO_TABLE_TYPEDEF);
4176
4177         mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
4178         
4179         name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
4180         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
4181
4182         class = mono_image_alloc0 (image, sizeof (MonoClass));
4183
4184         class->name = name;
4185         class->name_space = nspace;
4186
4187         mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
4188
4189         class->image = image;
4190         class->type_token = type_token;
4191         class->flags = cols [MONO_TYPEDEF_FLAGS];
4192
4193         mono_internal_hash_table_insert (&image->class_cache, GUINT_TO_POINTER (type_token), class);
4194
4195         /*
4196          * Check whether we're a generic type definition.
4197          */
4198         class->generic_container = mono_metadata_load_generic_params (image, class->type_token, NULL);
4199         if (class->generic_container) {
4200                 class->generic_container->owner.klass = class;
4201                 context = &class->generic_container->context;
4202         }
4203
4204         if (cols [MONO_TYPEDEF_EXTENDS]) {
4205                 parent = mono_class_get_full (
4206                         image, mono_metadata_token_from_dor (cols [MONO_TYPEDEF_EXTENDS]), context);
4207                 if (parent == NULL){
4208                         mono_internal_hash_table_remove (&image->class_cache, GUINT_TO_POINTER (type_token));
4209                         mono_loader_unlock ();
4210                         mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4211                         return NULL;
4212                 }
4213         }
4214
4215         /* do this early so it's available for interfaces in setup_mono_type () */
4216         if ((nesting_tokeen = mono_metadata_nested_in_typedef (image, type_token)))
4217                 class->nested_in = mono_class_create_from_typedef (image, nesting_tokeen);
4218
4219         mono_class_setup_parent (class, parent);
4220
4221         /* uses ->valuetype, which is initialized by mono_class_setup_parent above */
4222         mono_class_setup_mono_type (class);
4223
4224         if (!class->enumtype) {
4225                 if (!mono_metadata_interfaces_from_typedef_full (
4226                             image, type_token, &interfaces, &icount, context)){
4227                         mono_loader_unlock ();
4228                         mono_profiler_class_loaded (class, MONO_PROFILE_FAILED);
4229                         return NULL;
4230                 }
4231
4232                 class->interfaces = interfaces;
4233                 class->interface_count = icount;
4234         }
4235
4236         if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_UNICODE_CLASS)
4237                 class->unicode = 1;
4238
4239 #if PLATFORM_WIN32
4240         if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_AUTO_CLASS)
4241                 class->unicode = 1;
4242 #endif
4243
4244         class->cast_class = class->element_class = class;
4245
4246         /*g_print ("Load class %s\n", name);*/
4247
4248         /*
4249          * Compute the field and method lists
4250          */
4251         class->field.first  = cols [MONO_TYPEDEF_FIELD_LIST] - 1;
4252         class->method.first = cols [MONO_TYPEDEF_METHOD_LIST] - 1;
4253
4254         if (tt->rows > tidx){           
4255                 mono_metadata_decode_row (tt, tidx, cols_next, MONO_TYPEDEF_SIZE);
4256                 field_last  = cols_next [MONO_TYPEDEF_FIELD_LIST] - 1;
4257                 method_last = cols_next [MONO_TYPEDEF_METHOD_LIST] - 1;
4258         } else {
4259                 field_last  = image->tables [MONO_TABLE_FIELD].rows;
4260                 method_last = image->tables [MONO_TABLE_METHOD].rows;
4261         }
4262
4263         if (cols [MONO_TYPEDEF_FIELD_LIST] && 
4264             cols [MONO_TYPEDEF_FIELD_LIST] <= image->tables [MONO_TABLE_FIELD].rows)
4265                 class->field.count = field_last - class->field.first;
4266         else
4267                 class->field.count = 0;
4268
4269         if (cols [MONO_TYPEDEF_METHOD_LIST] <= image->tables [MONO_TABLE_METHOD].rows)
4270                 class->method.count = method_last - class->method.first;
4271         else
4272                 class->method.count = 0;
4273
4274         /* reserve space to store vector pointer in arrays */
4275         if (!strcmp (nspace, "System") && !strcmp (name, "Array")) {
4276                 class->instance_size += 2 * sizeof (gpointer);
4277                 g_assert (class->field.count == 0);
4278         }
4279
4280         if (class->enumtype) {
4281                 class->enum_basetype = mono_class_find_enum_basetype (class);
4282                 if (!class->enum_basetype) {
4283                         mono_class_set_failure (class, MONO_EXCEPTION_TYPE_LOAD, NULL);
4284                         mono_loader_unlock ();
4285                         return NULL;
4286                 }
4287                 class->cast_class = class->element_class = mono_class_from_mono_type (class->enum_basetype);
4288         }
4289
4290         /*
4291          * If we're a generic type definition, load the constraints.
4292          * We must do this after the class has been constructed to make certain recursive scenarios
4293          * work.
4294          */
4295         if (class->generic_container)
4296                 mono_metadata_load_generic_param_constraints (
4297                         image, type_token, class->generic_container);
4298
4299         if (class->image->assembly_name && !strcmp (class->image->assembly_name, "Mono.Simd") && !strcmp (nspace, "Mono.Simd")) {
4300                 if (!strncmp (name, "Vector", 6))
4301                         class->simd_type = !strcmp (name + 6, "4f") || !strcmp (name + 6, "4u") || !strcmp (name + 6, "8u") || !strcmp (name + 6, "16u");
4302         }
4303
4304         mono_loader_unlock ();
4305
4306         mono_profiler_class_loaded (class, MONO_PROFILE_OK);
4307
4308         return class;
4309 }
4310
4311 /** is klass Nullable<T>? */
4312 gboolean
4313 mono_class_is_nullable (MonoClass *klass)
4314 {
4315        return klass->generic_class != NULL &&
4316                klass->generic_class->container_class == mono_defaults.generic_nullable_class;
4317 }
4318
4319
4320 /** if klass is T? return T */
4321 MonoClass*
4322 mono_class_get_nullable_param (MonoClass *klass)
4323 {
4324        g_assert (mono_class_is_nullable (klass));
4325        return mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [0]);
4326 }
4327
4328 /*
4329  * Create the `MonoClass' for an instantiation of a generic type.
4330  * We only do this if we actually need it.
4331  */
4332 MonoClass*
4333 mono_generic_class_get_class (MonoGenericClass *gclass)
4334 {
4335         MonoClass *klass, *gklass;
4336         int i;
4337
4338         mono_loader_lock ();
4339         if (gclass->cached_class) {
4340                 mono_loader_unlock ();
4341                 return gclass->cached_class;
4342         }
4343
4344         gclass->cached_class = g_malloc0 (sizeof (MonoClass));
4345         klass = gclass->cached_class;
4346
4347         gklass = gclass->container_class;
4348
4349         if (gklass->nested_in) {
4350                 /* 
4351                  * FIXME: the nested type context should include everything the
4352                  * nesting context should have, but it may also have additional
4353                  * generic parameters...
4354                  */
4355                 MonoType *inflated = mono_class_inflate_generic_type (
4356                         &gklass->nested_in->byval_arg, mono_generic_class_get_context (gclass));
4357                 klass->nested_in = mono_class_from_mono_type (inflated);
4358                 mono_metadata_free_type (inflated);
4359         }
4360
4361         klass->name = gklass->name;
4362         klass->name_space = gklass->name_space;
4363         
4364         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
4365         
4366         klass->image = gklass->image;
4367         klass->flags = gklass->flags;
4368         klass->type_token = gklass->type_token;
4369         klass->field.count = gklass->field.count;
4370         klass->property.count = gklass->property.count;
4371
4372         klass->generic_class = gclass;
4373
4374         klass->this_arg.type = klass->byval_arg.type = MONO_TYPE_GENERICINST;
4375         klass->this_arg.data.generic_class = klass->byval_arg.data.generic_class = gclass;
4376         klass->this_arg.byref = TRUE;
4377         klass->enumtype = gklass->enumtype;
4378         klass->valuetype = gklass->valuetype;
4379
4380         klass->cast_class = klass->element_class = klass;
4381
4382         if (mono_class_is_nullable (klass))
4383                 klass->cast_class = klass->element_class = mono_class_get_nullable_param (klass);
4384
4385         klass->interface_count = gklass->interface_count;
4386         klass->interfaces = g_new0 (MonoClass *, klass->interface_count);
4387         for (i = 0; i < klass->interface_count; i++) {
4388                 MonoType *it = &gklass->interfaces [i]->byval_arg;
4389                 MonoType *inflated = mono_class_inflate_generic_type (it, mono_generic_class_get_context (gclass));
4390                 klass->interfaces [i] = mono_class_from_mono_type (inflated);
4391                 mono_metadata_free_type (inflated);
4392         }
4393
4394         /*
4395          * We're not interested in the nested classes of a generic instance.
4396          * We use the generic type definition to look for nested classes.
4397          */
4398         klass->nested_classes = NULL;
4399
4400         if (gklass->parent) {
4401                 MonoType *inflated = mono_class_inflate_generic_type (
4402                         &gklass->parent->byval_arg, mono_generic_class_get_context (gclass));
4403
4404                 klass->parent = mono_class_from_mono_type (inflated);
4405                 mono_metadata_free_type (inflated);
4406         }
4407
4408         if (klass->parent)
4409                 mono_class_setup_parent (klass, klass->parent);
4410
4411         if (klass->enumtype) {
4412                 klass->enum_basetype = gklass->enum_basetype;
4413                 klass->cast_class = gklass->cast_class;
4414         }
4415
4416         if (gclass->is_dynamic) {
4417                 klass->inited = 1;
4418
4419                 mono_class_setup_supertypes (klass);
4420
4421                 if (klass->enumtype) {
4422                         /*
4423                          * For enums, gklass->fields might not been set, but instance_size etc. is 
4424                          * already set in mono_reflection_create_internal_class (). For non-enums,
4425                          * these will be computed normally in mono_class_layout_fields ().
4426                          */
4427                         klass->instance_size = gklass->instance_size;
4428                         klass->sizes.class_size = gklass->sizes.class_size;
4429                         klass->size_inited = 1;
4430                 }
4431         }
4432
4433         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
4434         
4435         mono_loader_unlock ();
4436
4437         return klass;
4438 }
4439
4440 MonoClass *
4441 mono_class_from_generic_parameter (MonoGenericParam *param, MonoImage *image, gboolean is_mvar)
4442 {
4443         MonoClass *klass, **ptr;
4444         int count, pos, i;
4445
4446         mono_loader_lock ();
4447
4448         if (param->pklass) {
4449                 mono_loader_unlock ();
4450                 return param->pklass;
4451         }
4452
4453         if (!image && param->owner) {
4454                 if (is_mvar) {
4455                         MonoMethod *method = param->owner->owner.method;
4456                         image = (method && method->klass) ? method->klass->image : NULL;
4457                 } else {
4458                         MonoClass *klass = param->owner->owner.klass;
4459                         // FIXME: 'klass' should not be null
4460                         //        But, monodis creates GenericContainers without associating a owner to it
4461                         image = klass ? klass->image : NULL;
4462                 }
4463         }
4464         if (!image)
4465                 /* FIXME: */
4466                 image = mono_defaults.corlib;
4467
4468         klass = param->pklass = mono_image_alloc0 (image, sizeof (MonoClass));
4469
4470         if (param->name)
4471                 klass->name = param->name;
4472         else {
4473                 klass->name = mono_image_alloc0 (image, 16);
4474                 sprintf ((char*)klass->name, is_mvar ? "!!%d" : "!%d", param->num);
4475         }
4476         klass->name_space = "";
4477         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
4478         
4479         for (count = 0, ptr = param->constraints; ptr && *ptr; ptr++, count++)
4480                 ;
4481
4482         pos = 0;
4483         if ((count > 0) && !MONO_CLASS_IS_INTERFACE (param->constraints [0])) {
4484                 klass->parent = param->constraints [0];
4485                 pos++;
4486         } else if (param->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT)
4487                 klass->parent = mono_class_from_name (mono_defaults.corlib, "System", "ValueType");
4488         else
4489                 klass->parent = mono_defaults.object_class;
4490
4491         if (count - pos > 0) {
4492                 klass->interface_count = count - pos;
4493                 klass->interfaces = mono_image_alloc0 (image, sizeof (MonoClass *) * (count - pos));
4494                 for (i = pos; i < count; i++)
4495                         klass->interfaces [i - pos] = param->constraints [i];
4496         }
4497
4498         if (!image)
4499                 image = mono_defaults.corlib;
4500
4501         klass->image = image;
4502
4503         klass->inited = TRUE;
4504         klass->cast_class = klass->element_class = klass;
4505         klass->enum_basetype = &klass->element_class->byval_arg;
4506         klass->flags = TYPE_ATTRIBUTE_PUBLIC;
4507
4508         klass->this_arg.type = klass->byval_arg.type = is_mvar ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
4509         klass->this_arg.data.generic_param = klass->byval_arg.data.generic_param = param;
4510         klass->this_arg.byref = TRUE;
4511
4512         if (param->owner) {
4513                 guint32 owner;
4514                 guint32 cols [MONO_GENERICPARAM_SIZE];
4515                 MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
4516                 i = 0;
4517
4518                 if (is_mvar && param->owner->owner.method)
4519                          i = mono_metadata_get_generic_param_row (image, param->owner->owner.method->token, &owner);
4520                 else if (!is_mvar && param->owner->owner.klass)
4521                          i = mono_metadata_get_generic_param_row (image, param->owner->owner.klass->type_token, &owner);
4522
4523                 if (i) {
4524                         mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
4525                         do {
4526                                 if (cols [MONO_GENERICPARAM_NUMBER] == param->num) {
4527                                         klass->sizes.generic_param_token = i | MONO_TOKEN_GENERIC_PARAM;
4528                                         break;
4529                                 }
4530                                 if (++i > tdef->rows)
4531                                         break;
4532                                 mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
4533                         } while (cols [MONO_GENERICPARAM_OWNER] == owner);
4534                 }
4535         }
4536
4537         mono_class_setup_supertypes (klass);
4538
4539         mono_loader_unlock ();
4540
4541         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
4542
4543         return klass;
4544 }
4545
4546 MonoClass *
4547 mono_ptr_class_get (MonoType *type)
4548 {
4549         MonoClass *result;
4550         MonoClass *el_class;
4551         MonoImage *image;
4552         char *name;
4553
4554         el_class = mono_class_from_mono_type (type);
4555         image = el_class->image;
4556
4557         mono_loader_lock ();
4558
4559         if (!image->ptr_cache)
4560                 image->ptr_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4561
4562         if ((result = g_hash_table_lookup (image->ptr_cache, el_class))) {
4563                 mono_loader_unlock ();
4564                 return result;
4565         }
4566         result = mono_image_alloc0 (image, sizeof (MonoClass));
4567
4568         result->parent = NULL; /* no parent for PTR types */
4569         result->name_space = el_class->name_space;
4570         name = g_strdup_printf ("%s*", el_class->name);
4571         result->name = mono_image_strdup (image, name);
4572         g_free (name);
4573
4574         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
4575
4576         result->image = el_class->image;
4577         result->inited = TRUE;
4578         result->flags = TYPE_ATTRIBUTE_CLASS | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
4579         /* Can pointers get boxed? */
4580         result->instance_size = sizeof (gpointer);
4581         result->cast_class = result->element_class = el_class;
4582         result->enum_basetype = &result->element_class->byval_arg;
4583         result->blittable = TRUE;
4584
4585         result->this_arg.type = result->byval_arg.type = MONO_TYPE_PTR;
4586         result->this_arg.data.type = result->byval_arg.data.type = result->enum_basetype;
4587         result->this_arg.byref = TRUE;
4588
4589         mono_class_setup_supertypes (result);
4590
4591         g_hash_table_insert (image->ptr_cache, el_class, result);
4592
4593         mono_loader_unlock ();
4594
4595         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
4596
4597         return result;
4598 }
4599
4600 static MonoClass *
4601 mono_fnptr_class_get (MonoMethodSignature *sig)
4602 {
4603         MonoClass *result;
4604         static GHashTable *ptr_hash = NULL;
4605
4606         /* FIXME: These should be allocate from a mempool as well, but which one ? */
4607
4608         mono_loader_lock ();
4609
4610         if (!ptr_hash)
4611                 ptr_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
4612         
4613         if ((result = g_hash_table_lookup (ptr_hash, sig))) {
4614                 mono_loader_unlock ();
4615                 return result;
4616         }
4617         result = g_new0 (MonoClass, 1);
4618
4619         result->parent = NULL; /* no parent for PTR types */
4620         result->name_space = "System";
4621         result->name = "MonoFNPtrFakeClass";
4622
4623         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
4624
4625         result->image = mono_defaults.corlib; /* need to fix... */
4626         result->inited = TRUE;
4627         result->flags = TYPE_ATTRIBUTE_CLASS; /* | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK); */
4628         /* Can pointers get boxed? */
4629         result->instance_size = sizeof (gpointer);
4630         result->cast_class = result->element_class = result;
4631         result->blittable = TRUE;
4632
4633         result->this_arg.type = result->byval_arg.type = MONO_TYPE_FNPTR;
4634         result->this_arg.data.method = result->byval_arg.data.method = sig;
4635         result->this_arg.byref = TRUE;
4636         result->enum_basetype = &result->element_class->byval_arg;
4637         result->blittable = TRUE;
4638
4639         mono_class_setup_supertypes (result);
4640
4641         g_hash_table_insert (ptr_hash, sig, result);
4642
4643         mono_loader_unlock ();
4644
4645         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
4646
4647         return result;
4648 }
4649
4650 MonoClass *
4651 mono_class_from_mono_type (MonoType *type)
4652 {
4653         switch (type->type) {
4654         case MONO_TYPE_OBJECT:
4655                 return type->data.klass? type->data.klass: mono_defaults.object_class;
4656         case MONO_TYPE_VOID:
4657                 return type->data.klass? type->data.klass: mono_defaults.void_class;
4658         case MONO_TYPE_BOOLEAN:
4659                 return type->data.klass? type->data.klass: mono_defaults.boolean_class;
4660         case MONO_TYPE_CHAR:
4661                 return type->data.klass? type->data.klass: mono_defaults.char_class;
4662         case MONO_TYPE_I1:
4663                 return type->data.klass? type->data.klass: mono_defaults.sbyte_class;
4664         case MONO_TYPE_U1:
4665                 return type->data.klass? type->data.klass: mono_defaults.byte_class;
4666         case MONO_TYPE_I2:
4667                 return type->data.klass? type->data.klass: mono_defaults.int16_class;
4668         case MONO_TYPE_U2:
4669                 return type->data.klass? type->data.klass: mono_defaults.uint16_class;
4670         case MONO_TYPE_I4:
4671                 return type->data.klass? type->data.klass: mono_defaults.int32_class;
4672         case MONO_TYPE_U4:
4673                 return type->data.klass? type->data.klass: mono_defaults.uint32_class;
4674         case MONO_TYPE_I:
4675                 return type->data.klass? type->data.klass: mono_defaults.int_class;
4676         case MONO_TYPE_U:
4677                 return type->data.klass? type->data.klass: mono_defaults.uint_class;
4678         case MONO_TYPE_I8:
4679                 return type->data.klass? type->data.klass: mono_defaults.int64_class;
4680         case MONO_TYPE_U8:
4681                 return type->data.klass? type->data.klass: mono_defaults.uint64_class;
4682         case MONO_TYPE_R4:
4683                 return type->data.klass? type->data.klass: mono_defaults.single_class;
4684         case MONO_TYPE_R8:
4685                 return type->data.klass? type->data.klass: mono_defaults.double_class;
4686         case MONO_TYPE_STRING:
4687                 return type->data.klass? type->data.klass: mono_defaults.string_class;
4688         case MONO_TYPE_TYPEDBYREF:
4689                 return type->data.klass? type->data.klass: mono_defaults.typed_reference_class;
4690         case MONO_TYPE_ARRAY:
4691                 return mono_bounded_array_class_get (type->data.array->eklass, type->data.array->rank, TRUE);
4692         case MONO_TYPE_PTR:
4693                 return mono_ptr_class_get (type->data.type);
4694         case MONO_TYPE_FNPTR:
4695                 return mono_fnptr_class_get (type->data.method);
4696         case MONO_TYPE_SZARRAY:
4697                 return mono_array_class_get (type->data.klass, 1);
4698         case MONO_TYPE_CLASS:
4699         case MONO_TYPE_VALUETYPE:
4700                 return type->data.klass;
4701         case MONO_TYPE_GENERICINST:
4702                 return mono_generic_class_get_class (type->data.generic_class);
4703         case MONO_TYPE_VAR:
4704                 return mono_class_from_generic_parameter (type->data.generic_param, NULL, FALSE);
4705         case MONO_TYPE_MVAR:
4706                 return mono_class_from_generic_parameter (type->data.generic_param, NULL, TRUE);
4707         default:
4708                 g_warning ("mono_class_from_mono_type: implement me 0x%02x\n", type->type);
4709                 g_assert_not_reached ();
4710         }
4711         
4712         return NULL;
4713 }
4714
4715 /**
4716  * mono_type_retrieve_from_typespec
4717  * @image: context where the image is created
4718  * @type_spec:  typespec token
4719  * @context: the generic context used to evaluate generic instantiations in
4720  */
4721 static MonoType *
4722 mono_type_retrieve_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, gboolean *did_inflate)
4723 {
4724         MonoType *t = mono_type_create_from_typespec (image, type_spec);
4725         if (!t)
4726                 return NULL;
4727         if (context && (context->class_inst || context->method_inst)) {
4728                 MonoType *inflated = inflate_generic_type (NULL, t, context);
4729                 if (inflated) {
4730                         t = inflated;
4731                         *did_inflate = TRUE;
4732                 }
4733         }
4734         return t;
4735 }
4736
4737 /**
4738  * mono_class_create_from_typespec
4739  * @image: context where the image is created
4740  * @type_spec:  typespec token
4741  * @context: the generic context used to evaluate generic instantiations in
4742  */
4743 static MonoClass *
4744 mono_class_create_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context)
4745 {
4746         MonoClass *ret;
4747         gboolean inflated = FALSE;
4748         MonoType *t = mono_type_retrieve_from_typespec (image, type_spec, context, &inflated);
4749         if (!t)
4750                 return NULL;
4751         ret = mono_class_from_mono_type (t);
4752         if (inflated)
4753                 mono_metadata_free_type (t);
4754         return ret;
4755 }
4756
4757 /**
4758  * mono_bounded_array_class_get:
4759  * @element_class: element class 
4760  * @rank: the dimension of the array class
4761  * @bounded: whenever the array has non-zero bounds
4762  *
4763  * Returns: a class object describing the array with element type @element_type and 
4764  * dimension @rank. 
4765  */
4766 MonoClass *
4767 mono_bounded_array_class_get (MonoClass *eclass, guint32 rank, gboolean bounded)
4768 {
4769         MonoImage *image;
4770         MonoClass *class;
4771         MonoClass *parent = NULL;
4772         GSList *list, *rootlist;
4773         int nsize;
4774         char *name;
4775         gboolean corlib_type = FALSE;
4776
4777         g_assert (rank <= 255);
4778
4779         if (rank > 1)
4780                 /* bounded only matters for one-dimensional arrays */
4781                 bounded = FALSE;
4782
4783         image = eclass->image;
4784
4785         mono_loader_lock ();
4786
4787         if (!image->array_cache)
4788                 image->array_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
4789
4790         if ((rootlist = list = g_hash_table_lookup (image->array_cache, eclass))) {
4791                 for (; list; list = list->next) {
4792                         class = list->data;
4793                         if ((class->rank == rank) && (class->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
4794                                 mono_loader_unlock ();
4795                                 return class;
4796                         }
4797                 }
4798         }
4799
4800         /* for the building corlib use System.Array from it */
4801         if (image->assembly && image->assembly->dynamic && image->assembly_name && strcmp (image->assembly_name, "mscorlib") == 0) {
4802                 parent = mono_class_from_name (image, "System", "Array");
4803                 corlib_type = TRUE;
4804         } else {
4805                 parent = mono_defaults.array_class;
4806                 if (!parent->inited)
4807                         mono_class_init (parent);
4808         }
4809
4810         class = mono_image_alloc0 (image, sizeof (MonoClass));
4811
4812         class->image = image;
4813         class->name_space = eclass->name_space;
4814         nsize = strlen (eclass->name);
4815         name = g_malloc (nsize + 2 + rank + 1);
4816         memcpy (name, eclass->name, nsize);
4817         name [nsize] = '[';
4818         if (rank > 1)
4819                 memset (name + nsize + 1, ',', rank - 1);
4820         if (bounded)
4821                 name [nsize + rank] = '*';
4822         name [nsize + rank + bounded] = ']';
4823         name [nsize + rank + bounded + 1] = 0;
4824         class->name = mono_image_strdup (image, name);
4825         g_free (name);
4826
4827         mono_profiler_class_event (class, MONO_PROFILE_START_LOAD);
4828
4829         class->type_token = 0;
4830         /* all arrays are marked serializable and sealed, bug #42779 */
4831         class->flags = TYPE_ATTRIBUTE_CLASS | TYPE_ATTRIBUTE_SERIALIZABLE | TYPE_ATTRIBUTE_SEALED |
4832                 (eclass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
4833         class->parent = parent;
4834         class->instance_size = mono_class_instance_size (class->parent);
4835
4836         if (eclass->enumtype && !eclass->enum_basetype) {
4837                 if (!eclass->reflection_info || eclass->wastypebuilder) {
4838                         g_warning ("Only incomplete TypeBuilder objects are allowed to be an enum without base_type");
4839                         g_assert (eclass->reflection_info && !eclass->wastypebuilder);
4840                 }
4841                 /* element_size -1 is ok as this is not an instantitable type*/
4842                 class->sizes.element_size = -1;
4843         } else
4844                 class->sizes.element_size = mono_class_array_element_size (eclass);
4845
4846         mono_class_setup_supertypes (class);
4847
4848         if (mono_defaults.generic_ilist_class && !bounded && rank == 1) {
4849                 MonoType *args [1];
4850
4851                 /* generic IList, ICollection, IEnumerable */
4852                 class->interface_count = 1;
4853                 class->interfaces = mono_image_alloc0 (image, sizeof (MonoClass*) * class->interface_count);
4854
4855                 args [0] = &eclass->byval_arg;
4856                 class->interfaces [0] = mono_class_bind_generic_parameters (
4857                         mono_defaults.generic_ilist_class, 1, args, FALSE);
4858         }
4859
4860         if (eclass->generic_class)
4861                 mono_class_init (eclass);
4862         if (!eclass->size_inited)
4863                 mono_class_setup_fields (eclass);
4864         class->has_references = MONO_TYPE_IS_REFERENCE (&eclass->byval_arg) || eclass->has_references? TRUE: FALSE;
4865
4866         class->rank = rank;
4867         
4868         if (eclass->enumtype)
4869                 class->cast_class = eclass->element_class;
4870         else
4871                 class->cast_class = eclass;
4872
4873         class->element_class = eclass;
4874
4875         if ((rank > 1) || bounded) {
4876                 MonoArrayType *at = mono_image_alloc0 (image, sizeof (MonoArrayType));
4877                 class->byval_arg.type = MONO_TYPE_ARRAY;
4878                 class->byval_arg.data.array = at;
4879                 at->eklass = eclass;
4880                 at->rank = rank;
4881                 /* FIXME: complete.... */
4882         } else {
4883                 class->byval_arg.type = MONO_TYPE_SZARRAY;
4884                 class->byval_arg.data.klass = eclass;
4885         }
4886         class->this_arg = class->byval_arg;
4887         class->this_arg.byref = 1;
4888         if (corlib_type) {
4889                 class->inited = 1;
4890         }
4891
4892         class->generic_container = eclass->generic_container;
4893
4894         list = g_slist_append (rootlist, class);
4895         g_hash_table_insert (image->array_cache, eclass, list);
4896
4897         mono_loader_unlock ();
4898
4899         mono_profiler_class_loaded (class, MONO_PROFILE_OK);
4900
4901         return class;
4902 }
4903
4904 /**
4905  * mono_array_class_get:
4906  * @element_class: element class 
4907  * @rank: the dimension of the array class
4908  *
4909  * Returns: a class object describing the array with element type @element_type and 
4910  * dimension @rank. 
4911  */
4912 MonoClass *
4913 mono_array_class_get (MonoClass *eclass, guint32 rank)
4914 {
4915         return mono_bounded_array_class_get (eclass, rank, FALSE);
4916 }
4917
4918 /**
4919  * mono_class_instance_size:
4920  * @klass: a class 
4921  * 
4922  * Returns: the size of an object instance
4923  */
4924 gint32
4925 mono_class_instance_size (MonoClass *klass)
4926 {       
4927         if (!klass->size_inited)
4928                 mono_class_init (klass);
4929
4930         return klass->instance_size;
4931 }
4932
4933 /**
4934  * mono_class_min_align:
4935  * @klass: a class 
4936  * 
4937  * Returns: minimm alignment requirements 
4938  */
4939 gint32
4940 mono_class_min_align (MonoClass *klass)
4941 {       
4942         if (!klass->size_inited)
4943                 mono_class_init (klass);
4944
4945         return klass->min_align;
4946 }
4947
4948 /**
4949  * mono_class_value_size:
4950  * @klass: a class 
4951  *
4952  * This function is used for value types, and return the
4953  * space and the alignment to store that kind of value object.
4954  *
4955  * Returns: the size of a value of kind @klass
4956  */
4957 gint32
4958 mono_class_value_size      (MonoClass *klass, guint32 *align)
4959 {
4960         gint32 size;
4961
4962         /* fixme: check disable, because we still have external revereces to
4963          * mscorlib and Dummy Objects 
4964          */
4965         /*g_assert (klass->valuetype);*/
4966
4967         size = mono_class_instance_size (klass) - sizeof (MonoObject);
4968
4969         if (align)
4970                 *align = klass->min_align;
4971
4972         return size;
4973 }
4974
4975 /**
4976  * mono_class_data_size:
4977  * @klass: a class 
4978  * 
4979  * Returns: the size of the static class data
4980  */
4981 gint32
4982 mono_class_data_size (MonoClass *klass)
4983 {       
4984         if (!klass->inited)
4985                 mono_class_init (klass);
4986
4987         /* in arrays, sizes.class_size is unioned with element_size
4988          * and arrays have no static fields
4989          */
4990         if (klass->rank)
4991                 return 0;
4992         return klass->sizes.class_size;
4993 }
4994
4995 /*
4996  * Auxiliary routine to mono_class_get_field
4997  *
4998  * Takes a field index instead of a field token.
4999  */
5000 static MonoClassField *
5001 mono_class_get_field_idx (MonoClass *class, int idx)
5002 {
5003         mono_class_setup_fields_locking (class);
5004
5005         while (class) {
5006                 if (class->image->uncompressed_metadata) {
5007                         /* 
5008                          * class->field.first points to the FieldPtr table, while idx points into the
5009                          * Field table, so we have to do a search.
5010                          */
5011                         const char *name = mono_metadata_string_heap (class->image, mono_metadata_decode_row_col (&class->image->tables [MONO_TABLE_FIELD], idx, MONO_FIELD_NAME));
5012                         int i;
5013
5014                         for (i = 0; i < class->field.count; ++i)
5015                                 if (class->fields [i].name == name)
5016                                         return &class->fields [i];
5017                         g_assert_not_reached ();
5018                 } else {                        
5019                         if (class->field.count) {
5020                                 if ((idx >= class->field.first) && (idx < class->field.first + class->field.count)){
5021                                         return &class->fields [idx - class->field.first];
5022                                 }
5023                         }
5024                 }
5025                 class = class->parent;
5026         }
5027         return NULL;
5028 }
5029
5030 /**
5031  * mono_class_get_field:
5032  * @class: the class to lookup the field.
5033  * @field_token: the field token
5034  *
5035  * Returns: A MonoClassField representing the type and offset of
5036  * the field, or a NULL value if the field does not belong to this
5037  * class.
5038  */
5039 MonoClassField *
5040 mono_class_get_field (MonoClass *class, guint32 field_token)
5041 {
5042         int idx = mono_metadata_token_index (field_token);
5043
5044         g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
5045
5046         return mono_class_get_field_idx (class, idx - 1);
5047 }
5048
5049 /**
5050  * mono_class_get_field_from_name:
5051  * @klass: the class to lookup the field.
5052  * @name: the field name
5053  *
5054  * Search the class @klass and it's parents for a field with the name @name.
5055  * 
5056  * Returns: the MonoClassField pointer of the named field or NULL
5057  */
5058 MonoClassField *
5059 mono_class_get_field_from_name (MonoClass *klass, const char *name)
5060 {
5061         int i;
5062
5063         mono_class_setup_fields_locking (klass);
5064         while (klass) {
5065                 for (i = 0; i < klass->field.count; ++i) {
5066                         if (strcmp (name, klass->fields [i].name) == 0)
5067                                 return &klass->fields [i];
5068                 }
5069                 klass = klass->parent;
5070         }
5071         return NULL;
5072 }
5073
5074 /**
5075  * mono_class_get_field_token:
5076  * @field: the field we need the token of
5077  *
5078  * Get the token of a field. Note that the tokesn is only valid for the image
5079  * the field was loaded from. Don't use this function for fields in dynamic types.
5080  * 
5081  * Returns: the token representing the field in the image it was loaded from.
5082  */
5083 guint32
5084 mono_class_get_field_token (MonoClassField *field)
5085 {
5086         MonoClass *klass = field->parent;
5087         int i;
5088
5089         mono_class_setup_fields_locking (klass);
5090         while (klass) {
5091                 for (i = 0; i < klass->field.count; ++i) {
5092                         if (&klass->fields [i] == field) {
5093                                 int idx = klass->field.first + i + 1;
5094
5095                                 if (klass->image->uncompressed_metadata)
5096                                         idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_FIELD, idx);
5097                                 return mono_metadata_make_token (MONO_TABLE_FIELD, idx);
5098                         }
5099                 }
5100                 klass = klass->parent;
5101         }
5102
5103         g_assert_not_reached ();
5104         return 0;
5105 }
5106
5107 /*
5108  * mono_class_get_field_default_value:
5109  *
5110  * Return the default value of the field as a pointer into the metadata blob.
5111  */
5112 const char*
5113 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type)
5114 {
5115         guint32 cindex;
5116         guint32 constant_cols [MONO_CONSTANT_SIZE];
5117
5118         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT);
5119
5120         if (!field->data) {
5121                 cindex = mono_metadata_get_constant_index (field->parent->image, mono_class_get_field_token (field), 0);
5122                 g_assert (cindex);
5123                 g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA));
5124
5125                 mono_metadata_decode_row (&field->parent->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
5126                 field->def_type = constant_cols [MONO_CONSTANT_TYPE];
5127                 field->data = (gpointer)mono_metadata_blob_heap (field->parent->image, constant_cols [MONO_CONSTANT_VALUE]);
5128         }
5129
5130         *def_type = field->def_type;
5131         return field->data;
5132 }
5133
5134 guint32
5135 mono_class_get_event_token (MonoEvent *event)
5136 {
5137         MonoClass *klass = event->parent;
5138         int i;
5139
5140         while (klass) {
5141                 for (i = 0; i < klass->event.count; ++i) {
5142                         if (&klass->events [i] == event)
5143                                 return mono_metadata_make_token (MONO_TABLE_EVENT, klass->event.first + i + 1);
5144                 }
5145                 klass = klass->parent;
5146         }
5147
5148         g_assert_not_reached ();
5149         return 0;
5150 }
5151
5152 MonoProperty*
5153 mono_class_get_property_from_name (MonoClass *klass, const char *name)
5154 {
5155         while (klass) {
5156                 MonoProperty* p;
5157                 gpointer iter = NULL;
5158                 while ((p = mono_class_get_properties (klass, &iter))) {
5159                         if (! strcmp (name, p->name))
5160                                 return p;
5161                 }
5162                 klass = klass->parent;
5163         }
5164         return NULL;
5165 }
5166
5167 guint32
5168 mono_class_get_property_token (MonoProperty *prop)
5169 {
5170         MonoClass *klass = prop->parent;
5171         while (klass) {
5172                 MonoProperty* p;
5173                 int i = 0;
5174                 gpointer iter = NULL;
5175                 while ((p = mono_class_get_properties (klass, &iter))) {
5176                         if (&klass->properties [i] == prop)
5177                                 return mono_metadata_make_token (MONO_TABLE_PROPERTY, klass->property.first + i + 1);
5178                         
5179                         i ++;
5180                 }
5181                 klass = klass->parent;
5182         }
5183
5184         g_assert_not_reached ();
5185         return 0;
5186 }
5187
5188 char *
5189 mono_class_name_from_token (MonoImage *image, guint32 type_token)
5190 {
5191         const char *name, *nspace;
5192         if (image->dynamic)
5193                 return g_strdup_printf ("DynamicType 0x%08x", type_token);
5194         
5195         switch (type_token & 0xff000000){
5196         case MONO_TOKEN_TYPE_DEF: {
5197                 guint32 cols [MONO_TYPEDEF_SIZE];
5198                 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
5199                 guint tidx = mono_metadata_token_index (type_token);
5200
5201                 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
5202                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5203                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5204                 if (strlen (nspace) == 0)
5205                         return g_strdup_printf ("%s", name);
5206                 else
5207                         return g_strdup_printf ("%s.%s", nspace, name);
5208         }
5209
5210         case MONO_TOKEN_TYPE_REF: {
5211                 guint32 cols [MONO_TYPEREF_SIZE];
5212                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
5213
5214                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5215                 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
5216                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
5217                 if (strlen (nspace) == 0)
5218                         return g_strdup_printf ("%s", name);
5219                 else
5220                         return g_strdup_printf ("%s.%s", nspace, name);
5221         }
5222                 
5223         case MONO_TOKEN_TYPE_SPEC:
5224                 return g_strdup_printf ("Typespec 0x%08x", type_token);
5225         default:
5226                 g_assert_not_reached ();
5227         }
5228
5229         return NULL;
5230 }
5231
5232 static char *
5233 mono_assembly_name_from_token (MonoImage *image, guint32 type_token)
5234 {
5235         if (image->dynamic)
5236                 return g_strdup_printf ("DynamicAssembly %s", image->name);
5237         
5238         switch (type_token & 0xff000000){
5239         case MONO_TOKEN_TYPE_DEF:
5240                 return mono_stringify_assembly_name (&image->assembly->aname);
5241                 break;
5242         case MONO_TOKEN_TYPE_REF: {
5243                 MonoAssemblyName aname;
5244                 guint32 cols [MONO_TYPEREF_SIZE];
5245                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
5246                 guint32 idx;
5247         
5248                 mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
5249
5250                 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
5251                 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
5252                 case MONO_RESOLTION_SCOPE_MODULE:
5253                         /* FIXME: */
5254                         return g_strdup ("");
5255                 case MONO_RESOLTION_SCOPE_MODULEREF:
5256                         /* FIXME: */
5257                         return g_strdup ("");
5258                 case MONO_RESOLTION_SCOPE_TYPEREF:
5259                         /* FIXME: */
5260                         return g_strdup ("");
5261                 case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
5262                         mono_assembly_get_assemblyref (image, idx - 1, &aname);
5263                         return mono_stringify_assembly_name (&aname);
5264                 default:
5265                         g_assert_not_reached ();
5266                 }
5267                 break;
5268         }
5269         case MONO_TOKEN_TYPE_SPEC:
5270                 /* FIXME: */
5271                 return g_strdup ("");
5272         default:
5273                 g_assert_not_reached ();
5274         }
5275
5276         return NULL;
5277 }
5278
5279 /**
5280  * mono_class_get_full:
5281  * @image: the image where the class resides
5282  * @type_token: the token for the class
5283  * @context: the generic context used to evaluate generic instantiations in
5284  *
5285  * Returns: the MonoClass that represents @type_token in @image
5286  */
5287 MonoClass *
5288 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5289 {
5290         MonoClass *class = NULL;
5291
5292         if (image->dynamic) {
5293                 int table = mono_metadata_token_table (type_token);
5294
5295                 if (table != MONO_TABLE_TYPEDEF && table != MONO_TABLE_TYPEREF && table != MONO_TABLE_TYPESPEC) {
5296                         mono_loader_set_error_bad_image (g_strdup ("Bad type token."));
5297                         return NULL;
5298                 }
5299                 return mono_lookup_dynamic_token (image, type_token, context);
5300         }
5301
5302         switch (type_token & 0xff000000){
5303         case MONO_TOKEN_TYPE_DEF:
5304                 class = mono_class_create_from_typedef (image, type_token);
5305                 break;          
5306         case MONO_TOKEN_TYPE_REF:
5307                 class = mono_class_from_typeref (image, type_token);
5308                 break;
5309         case MONO_TOKEN_TYPE_SPEC:
5310                 class = mono_class_create_from_typespec (image, type_token, context);
5311                 break;
5312         default:
5313                 g_warning ("unknown token type %x", type_token & 0xff000000);
5314                 g_assert_not_reached ();
5315         }
5316
5317         if (!class){
5318                 char *name = mono_class_name_from_token (image, type_token);
5319                 char *assembly = mono_assembly_name_from_token (image, type_token);
5320                 mono_loader_set_error_type_load (name, assembly);
5321         }
5322
5323         return class;
5324 }
5325
5326
5327 /**
5328  * mono_type_get_full:
5329  * @image: the image where the type resides
5330  * @type_token: the token for the type
5331  * @context: the generic context used to evaluate generic instantiations in
5332  *
5333  * This functions exists to fullfill the fact that sometimes it's desirable to have access to the 
5334  * 
5335  * Returns: the MonoType that represents @type_token in @image
5336  */
5337 MonoType *
5338 mono_type_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
5339 {
5340         MonoType *type = NULL;
5341         gboolean inflated = FALSE;
5342
5343         //FIXME: this will not fix the very issue for which mono_type_get_full exists -but how to do it then?
5344         if (image->dynamic)
5345                 return mono_class_get_type (mono_lookup_dynamic_token (image, type_token, context));
5346
5347         if ((type_token & 0xff000000) != MONO_TOKEN_TYPE_SPEC) {
5348                 MonoClass *class = mono_class_get_full (image, type_token, context);
5349                 return class ? mono_class_get_type (class) : NULL;
5350         }
5351
5352         type = mono_type_retrieve_from_typespec (image, type_token, context, &inflated);
5353
5354         if (!type) {
5355                 char *name = mono_class_name_from_token (image, type_token);
5356                 char *assembly = mono_assembly_name_from_token (image, type_token);
5357                 if (inflated)
5358                         mono_metadata_free_type (type);
5359                 mono_loader_set_error_type_load (name, assembly);
5360         }
5361
5362         if (inflated) {
5363                 MonoType *tmp = type;
5364                 type = mono_class_get_type (mono_class_from_mono_type (type));
5365                 /* FIXME: This is a workaround fo the fact that a typespec token sometimes reference to the generic type definition.
5366                  * A MonoClass::byval_arg of a generic type definion has type CLASS.
5367                  * Some parts of mono create a GENERICINST to reference a generic type definition and this generates confict with byval_arg.
5368                  *
5369                  * The long term solution is to chaise this places and make then set MonoType::type correctly.
5370                  * */
5371                 if (type->type != tmp->type)
5372                         type = tmp;
5373                 else
5374                         mono_metadata_free_type (tmp);
5375         }
5376         return type;
5377 }
5378
5379
5380 MonoClass *
5381 mono_class_get (MonoImage *image, guint32 type_token)
5382 {
5383         return mono_class_get_full (image, type_token, NULL);
5384 }
5385
5386 /**
5387  * mono_image_init_name_cache:
5388  *
5389  *  Initializes the class name cache stored in image->name_cache.
5390  *
5391  * LOCKING: Acquires the loader lock.
5392  */
5393 void
5394 mono_image_init_name_cache (MonoImage *image)
5395 {
5396         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
5397         guint32 cols [MONO_TYPEDEF_SIZE];
5398         const char *name;
5399         const char *nspace;
5400         guint32 i, visib, nspace_index;
5401         GHashTable *name_cache2, *nspace_table;
5402
5403         mono_loader_lock ();
5404
5405         image->name_cache = g_hash_table_new (g_str_hash, g_str_equal);
5406
5407         if (image->dynamic) {
5408                 mono_loader_unlock ();
5409                 return;
5410         }
5411
5412         /* Temporary hash table to avoid lookups in the nspace_table */
5413         name_cache2 = g_hash_table_new (NULL, NULL);
5414
5415         for (i = 1; i <= t->rows; ++i) {
5416                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5417                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5418                 /*
5419                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
5420                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5421                  */
5422                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5423                         continue;
5424                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5425                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5426
5427                 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
5428                 nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5429                 if (!nspace_table) {
5430                         nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5431                         g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5432                         g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5433                                                                  nspace_table);
5434                 }
5435                 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
5436         }
5437
5438         /* Load type names from EXPORTEDTYPES table */
5439         {
5440                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5441                 guint32 cols [MONO_EXP_TYPE_SIZE];
5442                 int i;
5443
5444                 for (i = 0; i < t->rows; ++i) {
5445                         mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
5446                         name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
5447                         nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
5448
5449                         nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
5450                         nspace_table = g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
5451                         if (!nspace_table) {
5452                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5453                                 g_hash_table_insert (image->name_cache, (char*)nspace, nspace_table);
5454                                 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
5455                                                                          nspace_table);
5456                         }
5457                         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
5458                 }
5459         }
5460
5461         g_hash_table_destroy (name_cache2);
5462
5463         mono_loader_unlock ();
5464 }
5465
5466 void
5467 mono_image_add_to_name_cache (MonoImage *image, const char *nspace, 
5468                                                           const char *name, guint32 index)
5469 {
5470         GHashTable *nspace_table;
5471         GHashTable *name_cache;
5472
5473         mono_loader_lock ();
5474
5475         if (!image->name_cache)
5476                 mono_image_init_name_cache (image);
5477
5478         name_cache = image->name_cache;
5479         if (!(nspace_table = g_hash_table_lookup (name_cache, nspace))) {
5480                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
5481                 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
5482         }
5483         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
5484
5485         mono_loader_unlock ();
5486 }
5487
5488 typedef struct {
5489         gconstpointer key;
5490         gpointer value;
5491 } FindUserData;
5492
5493 static void
5494 find_nocase (gpointer key, gpointer value, gpointer user_data)
5495 {
5496         char *name = (char*)key;
5497         FindUserData *data = (FindUserData*)user_data;
5498
5499         if (!data->value && (g_strcasecmp (name, (char*)data->key) == 0))
5500                 data->value = value;
5501 }
5502
5503 /**
5504  * mono_class_from_name_case:
5505  * @image: The MonoImage where the type is looked up in
5506  * @name_space: the type namespace
5507  * @name: the type short name.
5508  *
5509  * Obtains a MonoClass with a given namespace and a given name which
5510  * is located in the given MonoImage.   The namespace and name
5511  * lookups are case insensitive.
5512  */
5513 MonoClass *
5514 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
5515 {
5516         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
5517         guint32 cols [MONO_TYPEDEF_SIZE];
5518         const char *n;
5519         const char *nspace;
5520         guint32 i, visib;
5521
5522         if (image->dynamic) {
5523                 guint32 token = 0;
5524                 FindUserData user_data;
5525
5526                 mono_loader_lock ();
5527
5528                 if (!image->name_cache)
5529                         mono_image_init_name_cache (image);
5530
5531                 user_data.key = name_space;
5532                 user_data.value = NULL;
5533                 g_hash_table_foreach (image->name_cache, find_nocase, &user_data);
5534
5535                 if (user_data.value) {
5536                         GHashTable *nspace_table = (GHashTable*)user_data.value;
5537
5538                         user_data.key = name;
5539                         user_data.value = NULL;
5540
5541                         g_hash_table_foreach (nspace_table, find_nocase, &user_data);
5542                         
5543                         if (user_data.value)
5544                                 token = GPOINTER_TO_UINT (user_data.value);
5545                 }
5546
5547                 mono_loader_unlock ();
5548                 
5549                 if (token)
5550                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | token);
5551                 else
5552                         return NULL;
5553
5554         }
5555
5556         /* add a cache if needed */
5557         for (i = 1; i <= t->rows; ++i) {
5558                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
5559                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
5560                 /*
5561                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
5562                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
5563                  */
5564                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
5565                         continue;
5566                 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5567                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5568                 if (g_strcasecmp (n, name) == 0 && g_strcasecmp (nspace, name_space) == 0)
5569                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | i);
5570         }
5571         return NULL;
5572 }
5573
5574 static MonoClass*
5575 return_nested_in (MonoClass *class, char *nested)
5576 {
5577         MonoClass *found;
5578         char *s = strchr (nested, '/');
5579         gpointer iter = NULL;
5580
5581         if (s) {
5582                 *s = 0;
5583                 s++;
5584         }
5585
5586         while ((found = mono_class_get_nested_types (class, &iter))) {
5587                 if (strcmp (found->name, nested) == 0) {
5588                         if (s)
5589                                 return return_nested_in (found, s);
5590                         return found;
5591                 }
5592         }
5593         return NULL;
5594 }
5595
5596 static MonoClass*
5597 search_modules (MonoImage *image, const char *name_space, const char *name)
5598 {
5599         MonoTableInfo *file_table = &image->tables [MONO_TABLE_FILE];
5600         MonoImage *file_image;
5601         MonoClass *class;
5602         int i;
5603
5604         /* 
5605          * The EXPORTEDTYPES table only contains public types, so have to search the
5606          * modules as well.
5607          * Note: image->modules contains the contents of the MODULEREF table, while
5608          * the real module list is in the FILE table.
5609          */
5610         for (i = 0; i < file_table->rows; i++) {
5611                 guint32 cols [MONO_FILE_SIZE];
5612                 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
5613                 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
5614                         continue;
5615
5616                 file_image = mono_image_load_file_for_image (image, i + 1);
5617                 if (file_image) {
5618                         class = mono_class_from_name (file_image, name_space, name);
5619                         if (class)
5620                                 return class;
5621                 }
5622         }
5623
5624         return NULL;
5625 }
5626
5627 /**
5628  * mono_class_from_name:
5629  * @image: The MonoImage where the type is looked up in
5630  * @name_space: the type namespace
5631  * @name: the type short name.
5632  *
5633  * Obtains a MonoClass with a given namespace and a given name which
5634  * is located in the given MonoImage.   
5635  */
5636 MonoClass *
5637 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
5638 {
5639         GHashTable *nspace_table;
5640         MonoImage *loaded_image;
5641         guint32 token = 0;
5642         int i;
5643         MonoClass *class;
5644         char *nested;
5645         char buf [1024];
5646
5647         if ((nested = strchr (name, '/'))) {
5648                 int pos = nested - name;
5649                 int len = strlen (name);
5650                 if (len > 1023)
5651                         return NULL;
5652                 memcpy (buf, name, len + 1);
5653                 buf [pos] = 0;
5654                 nested = buf + pos + 1;
5655                 name = buf;
5656         }
5657
5658         if (get_class_from_name) {
5659                 gboolean res = get_class_from_name (image, name_space, name, &class);
5660                 if (res) {
5661                         if (!class)
5662                                 class = search_modules (image, name_space, name);
5663                         if (nested)
5664                                 return class ? return_nested_in (class, nested) : NULL;
5665                         else
5666                                 return class;
5667                 }
5668         }
5669
5670         mono_loader_lock ();
5671
5672         if (!image->name_cache)
5673                 mono_image_init_name_cache (image);
5674
5675         nspace_table = g_hash_table_lookup (image->name_cache, name_space);
5676
5677         if (nspace_table)
5678                 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
5679
5680         mono_loader_unlock ();
5681
5682         if (!token && image->dynamic && image->modules) {
5683                 /* Search modules as well */
5684                 for (i = 0; i < image->module_count; ++i) {
5685                         MonoImage *module = image->modules [i];
5686
5687                         class = mono_class_from_name (module, name_space, name);
5688                         if (class)
5689                                 return class;
5690                 }
5691         }
5692
5693         if (!token) {
5694                 class = search_modules (image, name_space, name);
5695                 if (class)
5696                         return class;
5697         }
5698
5699         if (!token)
5700                 return NULL;
5701
5702         if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
5703                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
5704                 guint32 cols [MONO_EXP_TYPE_SIZE];
5705                 guint32 idx, impl;
5706
5707                 idx = mono_metadata_token_index (token);
5708
5709                 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
5710
5711                 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
5712                 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
5713                         loaded_image = mono_assembly_load_module (image->assembly, impl >> MONO_IMPLEMENTATION_BITS);
5714                         if (!loaded_image)
5715                                 return NULL;
5716                         class = mono_class_from_name (loaded_image, name_space, name);
5717                         if (nested)
5718                                 return return_nested_in (class, nested);
5719                         return class;
5720                 } else if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_ASSEMBLYREF) {
5721                         MonoAssembly **references = image->references;
5722                         guint32 assembly_idx;
5723
5724                         assembly_idx = impl >> MONO_IMPLEMENTATION_BITS;
5725
5726                         if (!references [assembly_idx - 1])
5727                                 mono_assembly_load_reference (image, assembly_idx - 1);
5728                         g_assert (references == image->references);
5729                         g_assert (references [assembly_idx - 1]);
5730                         if (references [assembly_idx - 1] == (gpointer)-1)
5731                                 return NULL;                    
5732                         else
5733                                 /* FIXME: Cycle detection */
5734                                 return mono_class_from_name (references [assembly_idx - 1]->image, name_space, name);
5735                 } else {
5736                         g_error ("not yet implemented");
5737                 }
5738         }
5739
5740         token = MONO_TOKEN_TYPE_DEF | token;
5741
5742         class = mono_class_get (image, token);
5743         if (nested)
5744                 return return_nested_in (class, nested);
5745         return class;
5746 }
5747
5748 gboolean
5749 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc, 
5750                            gboolean check_interfaces)
5751 {
5752         g_assert (klassc->idepth > 0);
5753         if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
5754                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, klassc->interface_id))
5755                         return TRUE;
5756         } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
5757                 int i;
5758
5759                 for (i = 0; i < klass->interface_count; i ++) {
5760                         MonoClass *ic =  klass->interfaces [i];
5761                         if (ic == klassc)
5762                                 return TRUE;
5763                 }
5764         } else {
5765                 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
5766                         return TRUE;
5767         }
5768
5769         /* 
5770          * MS.NET thinks interfaces are a subclass of Object, so we think it as
5771          * well.
5772          */
5773         if (klassc == mono_defaults.object_class)
5774                 return TRUE;
5775
5776         return FALSE;
5777 }
5778
5779 static gboolean
5780 mono_class_has_variant_generic_params (MonoClass *klass)
5781 {
5782         int i;
5783         MonoGenericContainer *container;
5784
5785         if (!klass->generic_class)
5786                 return FALSE;
5787
5788         container = klass->generic_class->container_class->generic_container;
5789
5790         for (i = 0; i < container->type_argc; ++i)
5791                 if (container->type_params [i].flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT))
5792                         return TRUE;
5793
5794         return FALSE;
5795 }
5796
5797 /**
5798  * mono_class_is_assignable_from:
5799  * @klass: the class to be assigned to
5800  * @oklass: the source class
5801  *
5802  * Return: true if an instance of object oklass can be assigned to an
5803  * instance of object @klass
5804  */
5805 gboolean
5806 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
5807 {
5808         if (!klass->inited)
5809                 mono_class_init (klass);
5810
5811         if (!oklass->inited)
5812                 mono_class_init (oklass);
5813
5814         if ((klass->byval_arg.type == MONO_TYPE_VAR) || (klass->byval_arg.type == MONO_TYPE_MVAR))
5815                 return klass == oklass;
5816
5817         if (MONO_CLASS_IS_INTERFACE (klass)) {
5818                 if ((oklass->byval_arg.type == MONO_TYPE_VAR) || (oklass->byval_arg.type == MONO_TYPE_MVAR))
5819                         return FALSE;
5820
5821                 /* interface_offsets might not be set for dynamic classes */
5822                 if (oklass->reflection_info && !oklass->interface_bitmap)
5823                         /* 
5824                          * oklass might be a generic type parameter but they have 
5825                          * interface_offsets set.
5826                          */
5827                         return mono_reflection_call_is_assignable_to (oklass, klass);
5828                 if (!oklass->interface_bitmap)
5829                         /* Happens with generic instances of not-yet created dynamic types */
5830                         return FALSE;
5831                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (oklass, klass->interface_id))
5832                         return TRUE;
5833
5834                 if (mono_class_has_variant_generic_params (klass)) {
5835                         if (oklass->generic_class) {
5836                                 int i;
5837                                 gboolean match = FALSE;
5838                                 MonoClass *container_class1 = klass->generic_class->container_class;
5839                                 MonoClass *container_class2 = oklass->generic_class->container_class;
5840
5841                                 /* 
5842                                  * Check whenever the generic definition of oklass implements the 
5843                                  * generic definition of klass. The IMPLEMENTS_INTERFACE stuff is not usable
5844                                  * here since the relevant tables are not set up.
5845                                  */
5846                                 for (i = 0; i < container_class2->interface_offsets_count; ++i)
5847                                         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)))
5848                                                 match = TRUE;
5849
5850                                 if (match) {
5851                                         MonoGenericContainer *container;
5852
5853                                         container = klass->generic_class->container_class->generic_container;
5854
5855                                         match = TRUE;
5856                                         for (i = 0; i < container->type_argc; ++i) {
5857                                                 MonoClass *param1_class = mono_class_from_mono_type (klass->generic_class->context.class_inst->type_argv [i]);
5858                                                 MonoClass *param2_class = mono_class_from_mono_type (oklass->generic_class->context.class_inst->type_argv [i]);
5859
5860                                                 if (param1_class->valuetype != param2_class->valuetype) {
5861                                                         match = FALSE;
5862                                                         break;
5863                                                 }
5864                                                 /*
5865                                                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
5866                                                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
5867                                                  */
5868                                                 if (param1_class != param2_class) {
5869                                                         if ((container->type_params [i].flags & MONO_GEN_PARAM_VARIANT) && mono_class_is_assignable_from (param1_class, param2_class))
5870                                                                 ;
5871                                                         else if (((container->type_params [i].flags & MONO_GEN_PARAM_COVARIANT) && mono_class_is_assignable_from (param2_class, param1_class)))
5872                                                                 ;
5873                                                         else {
5874                                                                 match = FALSE;
5875                                                                 break;
5876                                                         }
5877                                                 }
5878                                         }
5879
5880                                         if (match)
5881                                                 return TRUE;
5882                                 }
5883                         }
5884                 }
5885         } else if (klass->rank) {
5886                 MonoClass *eclass, *eoclass;
5887
5888                 if (oklass->rank != klass->rank)
5889                         return FALSE;
5890
5891                 /* vectors vs. one dimensional arrays */
5892                 if (oklass->byval_arg.type != klass->byval_arg.type)
5893                         return FALSE;
5894
5895                 eclass = klass->cast_class;
5896                 eoclass = oklass->cast_class;
5897
5898                 /* 
5899                  * a is b does not imply a[] is b[] when a is a valuetype, and
5900                  * b is a reference type.
5901                  */
5902
5903                 if (eoclass->valuetype) {
5904                         if ((eclass == mono_defaults.enum_class) || 
5905                                 (eclass == mono_defaults.enum_class->parent) ||
5906                                 (eclass == mono_defaults.object_class))
5907                                 return FALSE;
5908                 }
5909
5910                 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
5911         } else if (mono_class_is_nullable (klass)) {
5912                 if (mono_class_is_nullable (oklass))
5913                         return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
5914                 else
5915                         return mono_class_is_assignable_from (klass->cast_class, oklass);
5916         } else if (klass == mono_defaults.object_class)
5917                 return TRUE;
5918
5919         return mono_class_has_parent (oklass, klass);
5920 }       
5921
5922 /**
5923  * mono_class_get_cctor:
5924  * @klass: A MonoClass pointer
5925  *
5926  * Returns: the static constructor of @klass if it exists, NULL otherwise.
5927  */
5928 MonoMethod*
5929 mono_class_get_cctor (MonoClass *klass)
5930 {
5931         MonoCachedClassInfo cached_info;
5932
5933         if (!klass->has_cctor)
5934                 return NULL;
5935
5936         if (mono_class_get_cached_class_info (klass, &cached_info))
5937                 return mono_get_method (klass->image, cached_info.cctor_token, klass);
5938
5939         return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
5940 }
5941
5942 /**
5943  * mono_class_get_finalizer:
5944  * @klass: The MonoClass pointer
5945  *
5946  * Returns: the finalizer method of @klass if it exists, NULL otherwise.
5947  */
5948 MonoMethod*
5949 mono_class_get_finalizer (MonoClass *klass)
5950 {
5951         MonoCachedClassInfo cached_info;
5952
5953         if (!klass->inited)
5954                 mono_class_init (klass);
5955         if (!klass->has_finalize)
5956                 return NULL;
5957
5958         if (mono_class_get_cached_class_info (klass, &cached_info))
5959                 return mono_get_method (cached_info.finalize_image, cached_info.finalize_token, NULL);
5960         else {
5961                 mono_class_setup_vtable (klass);
5962                 return klass->vtable [finalize_slot];
5963         }
5964 }
5965
5966 /**
5967  * mono_class_needs_cctor_run:
5968  * @klass: the MonoClass pointer
5969  * @caller: a MonoMethod describing the caller
5970  *
5971  * Determines whenever the class has a static constructor and whenever it
5972  * needs to be called when executing CALLER.
5973  */
5974 gboolean
5975 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
5976 {
5977         MonoMethod *method;
5978
5979         method = mono_class_get_cctor (klass);
5980         if (method)
5981                 return (method == caller) ? FALSE : TRUE;
5982         else
5983                 return TRUE;
5984 }
5985
5986 /**
5987  * mono_class_array_element_size:
5988  * @klass: 
5989  *
5990  * Returns: the number of bytes an element of type @klass
5991  * uses when stored into an array.
5992  */
5993 gint32
5994 mono_class_array_element_size (MonoClass *klass)
5995 {
5996         MonoType *type = &klass->byval_arg;
5997         
5998 handle_enum:
5999         switch (type->type) {
6000         case MONO_TYPE_I1:
6001         case MONO_TYPE_U1:
6002         case MONO_TYPE_BOOLEAN:
6003                 return 1;
6004         case MONO_TYPE_I2:
6005         case MONO_TYPE_U2:
6006         case MONO_TYPE_CHAR:
6007                 return 2;
6008         case MONO_TYPE_I4:
6009         case MONO_TYPE_U4:
6010         case MONO_TYPE_R4:
6011                 return 4;
6012         case MONO_TYPE_I:
6013         case MONO_TYPE_U:
6014         case MONO_TYPE_PTR:
6015         case MONO_TYPE_CLASS:
6016         case MONO_TYPE_STRING:
6017         case MONO_TYPE_OBJECT:
6018         case MONO_TYPE_SZARRAY:
6019         case MONO_TYPE_ARRAY: 
6020         case MONO_TYPE_VAR:
6021         case MONO_TYPE_MVAR:   
6022                 return sizeof (gpointer);
6023         case MONO_TYPE_I8:
6024         case MONO_TYPE_U8:
6025         case MONO_TYPE_R8:
6026                 return 8;
6027         case MONO_TYPE_VALUETYPE:
6028                 if (type->data.klass->enumtype) {
6029                         type = type->data.klass->enum_basetype;
6030                         klass = klass->element_class;
6031                         goto handle_enum;
6032                 }
6033                 return mono_class_instance_size (klass) - sizeof (MonoObject);
6034         case MONO_TYPE_GENERICINST:
6035                 type = &type->data.generic_class->container_class->byval_arg;
6036                 goto handle_enum;
6037         default:
6038                 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
6039         }
6040         return -1;
6041 }
6042
6043 /**
6044  * mono_array_element_size:
6045  * @ac: pointer to a #MonoArrayClass
6046  *
6047  * Returns: the size of single array element.
6048  */
6049 gint32
6050 mono_array_element_size (MonoClass *ac)
6051 {
6052         g_assert (ac->rank);
6053         return ac->sizes.element_size;
6054 }
6055
6056 gpointer
6057 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
6058               MonoGenericContext *context)
6059 {
6060         if (image->dynamic) {
6061                 MonoClass *tmp_handle_class;
6062                 gpointer obj = mono_lookup_dynamic_token_class (image, token, TRUE, &tmp_handle_class, context);
6063
6064                 g_assert (tmp_handle_class);
6065                 if (handle_class)
6066                         *handle_class = tmp_handle_class;
6067
6068                 if (tmp_handle_class == mono_defaults.typehandle_class)
6069                         return &((MonoClass*)obj)->byval_arg;
6070                 else
6071                         return obj;
6072         }
6073
6074         switch (token & 0xff000000) {
6075         case MONO_TOKEN_TYPE_DEF:
6076         case MONO_TOKEN_TYPE_REF:
6077         case MONO_TOKEN_TYPE_SPEC: {
6078                 MonoType *type;
6079                 if (handle_class)
6080                         *handle_class = mono_defaults.typehandle_class;
6081                 type = mono_type_get_full (image, token, context);
6082                 if (!type)
6083                         return NULL;
6084                 mono_class_init (mono_class_from_mono_type (type));
6085                 /* We return a MonoType* as handle */
6086                 return type;
6087         }
6088         case MONO_TOKEN_FIELD_DEF: {
6089                 MonoClass *class;
6090                 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
6091                 if (handle_class)
6092                         *handle_class = mono_defaults.fieldhandle_class;
6093                 class = mono_class_get_full (image, MONO_TOKEN_TYPE_DEF | type, context);
6094                 if (!class)
6095                         return NULL;
6096                 mono_class_init (class);
6097                 return mono_class_get_field (class, token);
6098         }
6099         case MONO_TOKEN_METHOD_DEF:
6100         case MONO_TOKEN_METHOD_SPEC: {
6101                 MonoMethod *meth;
6102                 meth = mono_get_method_full (image, token, NULL, context);
6103                 if (handle_class)
6104                         *handle_class = mono_defaults.methodhandle_class;
6105                 return meth;
6106         }
6107         case MONO_TOKEN_MEMBER_REF: {
6108                 guint32 cols [MONO_MEMBERREF_SIZE];
6109                 const char *sig;
6110                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
6111                 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
6112                 mono_metadata_decode_blob_size (sig, &sig);
6113                 if (*sig == 0x6) { /* it's a field */
6114                         MonoClass *klass;
6115                         MonoClassField *field;
6116                         field = mono_field_from_token (image, token, &klass, context);
6117                         if (handle_class)
6118                                 *handle_class = mono_defaults.fieldhandle_class;
6119                         return field;
6120                 } else {
6121                         MonoMethod *meth;
6122                         meth = mono_get_method_full (image, token, NULL, context);
6123                         if (handle_class)
6124                                 *handle_class = mono_defaults.methodhandle_class;
6125                         return meth;
6126                 }
6127         }
6128         default:
6129                 g_warning ("Unknown token 0x%08x in ldtoken", token);
6130                 break;
6131         }
6132         return NULL;
6133 }
6134
6135 /**
6136  * This function might need to call runtime functions so it can't be part
6137  * of the metadata library.
6138  */
6139 static MonoLookupDynamicToken lookup_dynamic = NULL;
6140
6141 void
6142 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func)
6143 {
6144         lookup_dynamic = func;
6145 }
6146
6147 gpointer
6148 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context)
6149 {
6150         MonoClass *handle_class;
6151
6152         return lookup_dynamic (image, token, TRUE, &handle_class, context);
6153 }
6154
6155 gpointer
6156 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context)
6157 {
6158         return lookup_dynamic (image, token, valid_token, handle_class, context);
6159 }
6160
6161 static MonoGetCachedClassInfo get_cached_class_info = NULL;
6162
6163 void
6164 mono_install_get_cached_class_info (MonoGetCachedClassInfo func)
6165 {
6166         get_cached_class_info = func;
6167 }
6168
6169 static gboolean
6170 mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
6171 {
6172         if (!get_cached_class_info)
6173                 return FALSE;
6174         else
6175                 return get_cached_class_info (klass, res);
6176 }
6177
6178 void
6179 mono_install_get_class_from_name (MonoGetClassFromName func)
6180 {
6181         get_class_from_name = func;
6182 }
6183
6184 MonoImage*
6185 mono_class_get_image (MonoClass *klass)
6186 {
6187         return klass->image;
6188 }
6189
6190 /**
6191  * mono_class_get_element_class:
6192  * @klass: the MonoClass to act on
6193  *
6194  * Returns: the element class of an array or an enumeration.
6195  */
6196 MonoClass*
6197 mono_class_get_element_class (MonoClass *klass)
6198 {
6199         return klass->element_class;
6200 }
6201
6202 /**
6203  * mono_class_is_valuetype:
6204  * @klass: the MonoClass to act on
6205  *
6206  * Returns: true if the MonoClass represents a ValueType.
6207  */
6208 gboolean
6209 mono_class_is_valuetype (MonoClass *klass)
6210 {
6211         return klass->valuetype;
6212 }
6213
6214 /**
6215  * mono_class_is_enum:
6216  * @klass: the MonoClass to act on
6217  *
6218  * Returns: true if the MonoClass represents an enumeration.
6219  */
6220 gboolean
6221 mono_class_is_enum (MonoClass *klass)
6222 {
6223         return klass->enumtype;
6224 }
6225
6226 /**
6227  * mono_class_enum_basetype:
6228  * @klass: the MonoClass to act on
6229  *
6230  * Returns: the underlying type representation for an enumeration.
6231  */
6232 MonoType*
6233 mono_class_enum_basetype (MonoClass *klass)
6234 {
6235         return klass->enum_basetype;
6236 }
6237
6238 /**
6239  * mono_class_get_parent
6240  * @klass: the MonoClass to act on
6241  *
6242  * Returns: the parent class for this class.
6243  */
6244 MonoClass*
6245 mono_class_get_parent (MonoClass *klass)
6246 {
6247         return klass->parent;
6248 }
6249
6250 /**
6251  * mono_class_get_nesting_type;
6252  * @klass: the MonoClass to act on
6253  *
6254  * Returns: the container type where this type is nested or NULL if this type is not a nested type.
6255  */
6256 MonoClass*
6257 mono_class_get_nesting_type (MonoClass *klass)
6258 {
6259         return klass->nested_in;
6260 }
6261
6262 /**
6263  * mono_class_get_rank:
6264  * @klass: the MonoClass to act on
6265  *
6266  * Returns: the rank for the array (the number of dimensions).
6267  */
6268 int
6269 mono_class_get_rank (MonoClass *klass)
6270 {
6271         return klass->rank;
6272 }
6273
6274 /**
6275  * mono_class_get_flags:
6276  * @klass: the MonoClass to act on
6277  *
6278  * The type flags from the TypeDef table from the metadata.
6279  * see the TYPE_ATTRIBUTE_* definitions on tabledefs.h for the
6280  * different values.
6281  *
6282  * Returns: the flags from the TypeDef table.
6283  */
6284 guint32
6285 mono_class_get_flags (MonoClass *klass)
6286 {
6287         return klass->flags;
6288 }
6289
6290 /**
6291  * mono_class_get_name
6292  * @klass: the MonoClass to act on
6293  *
6294  * Returns: the name of the class.
6295  */
6296 const char*
6297 mono_class_get_name (MonoClass *klass)
6298 {
6299         return klass->name;
6300 }
6301
6302 /**
6303  * mono_class_get_namespace:
6304  * @klass: the MonoClass to act on
6305  *
6306  * Returns: the namespace of the class.
6307  */
6308 const char*
6309 mono_class_get_namespace (MonoClass *klass)
6310 {
6311         return klass->name_space;
6312 }
6313
6314 /**
6315  * mono_class_get_type:
6316  * @klass: the MonoClass to act on
6317  *
6318  * This method returns the internal Type representation for the class.
6319  *
6320  * Returns: the MonoType from the class.
6321  */
6322 MonoType*
6323 mono_class_get_type (MonoClass *klass)
6324 {
6325         return &klass->byval_arg;
6326 }
6327
6328 /**
6329  * mono_class_get_type_token
6330  * @klass: the MonoClass to act on
6331  *
6332  * This method returns type token for the class.
6333  *
6334  * Returns: the type token for the class.
6335  */
6336 guint32
6337 mono_class_get_type_token (MonoClass *klass)
6338 {
6339   return klass->type_token;
6340 }
6341
6342 /**
6343  * mono_class_get_byref_type:
6344  * @klass: the MonoClass to act on
6345  *
6346  * 
6347  */
6348 MonoType*
6349 mono_class_get_byref_type (MonoClass *klass)
6350 {
6351         return &klass->this_arg;
6352 }
6353
6354 /**
6355  * mono_class_num_fields:
6356  * @klass: the MonoClass to act on
6357  *
6358  * Returns: the number of static and instance fields in the class.
6359  */
6360 int
6361 mono_class_num_fields (MonoClass *klass)
6362 {
6363         return klass->field.count;
6364 }
6365
6366 /**
6367  * mono_class_num_methods:
6368  * @klass: the MonoClass to act on
6369  *
6370  * Returns: the number of methods in the class.
6371  */
6372 int
6373 mono_class_num_methods (MonoClass *klass)
6374 {
6375         return klass->method.count;
6376 }
6377
6378 /**
6379  * mono_class_num_properties
6380  * @klass: the MonoClass to act on
6381  *
6382  * Returns: the number of properties in the class.
6383  */
6384 int
6385 mono_class_num_properties (MonoClass *klass)
6386 {
6387         mono_class_setup_properties (klass);
6388
6389         return klass->property.count;
6390 }
6391
6392 /**
6393  * mono_class_num_events:
6394  * @klass: the MonoClass to act on
6395  *
6396  * Returns: the number of events in the class.
6397  */
6398 int
6399 mono_class_num_events (MonoClass *klass)
6400 {
6401         mono_class_setup_events (klass);
6402
6403         return klass->event.count;
6404 }
6405
6406 /**
6407  * mono_class_get_fields:
6408  * @klass: the MonoClass to act on
6409  *
6410  * This routine is an iterator routine for retrieving the fields in a class.
6411  *
6412  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6413  * iterate over all of the elements.  When no more values are
6414  * available, the return value is NULL.
6415  *
6416  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
6417  */
6418 MonoClassField*
6419 mono_class_get_fields (MonoClass* klass, gpointer *iter)
6420 {
6421         MonoClassField* field;
6422         if (!iter)
6423                 return NULL;
6424         if (!*iter) {
6425                 mono_class_setup_fields_locking (klass);
6426                 /* start from the first */
6427                 if (klass->field.count) {
6428                         return *iter = &klass->fields [0];
6429                 } else {
6430                         /* no fields */
6431                         return NULL;
6432                 }
6433         }
6434         field = *iter;
6435         field++;
6436         if (field < &klass->fields [klass->field.count]) {
6437                 return *iter = field;
6438         }
6439         return NULL;
6440 }
6441
6442 /**
6443  * mono_class_get_methods
6444  * @klass: the MonoClass to act on
6445  *
6446  * This routine is an iterator routine for retrieving the fields in a class.
6447  *
6448  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6449  * iterate over all of the elements.  When no more values are
6450  * available, the return value is NULL.
6451  *
6452  * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
6453  */
6454 MonoMethod*
6455 mono_class_get_methods (MonoClass* klass, gpointer *iter)
6456 {
6457         MonoMethod** method;
6458         if (!iter)
6459                 return NULL;
6460         if (!klass->inited)
6461                 mono_class_init (klass);
6462         if (!*iter) {
6463                 mono_class_setup_methods (klass);
6464                 /* start from the first */
6465                 if (klass->method.count) {
6466                         *iter = &klass->methods [0];
6467                         return klass->methods [0];
6468                 } else {
6469                         /* no method */
6470                         return NULL;
6471                 }
6472         }
6473         method = *iter;
6474         method++;
6475         if (method < &klass->methods [klass->method.count]) {
6476                 *iter = method;
6477                 return *method;
6478         }
6479         return NULL;
6480 }
6481
6482 /**
6483  * mono_class_get_properties:
6484  * @klass: the MonoClass to act on
6485  *
6486  * This routine is an iterator routine for retrieving the properties in a class.
6487  *
6488  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6489  * iterate over all of the elements.  When no more values are
6490  * available, the return value is NULL.
6491  *
6492  * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
6493  */
6494 MonoProperty*
6495 mono_class_get_properties (MonoClass* klass, gpointer *iter)
6496 {
6497         MonoProperty* property;
6498         if (!iter)
6499                 return NULL;
6500         if (!klass->inited)
6501                 mono_class_init (klass);
6502         if (!*iter) {
6503                 mono_class_setup_properties (klass);
6504                 /* start from the first */
6505                 if (klass->property.count) {
6506                         return *iter = &klass->properties [0];
6507                 } else {
6508                         /* no fields */
6509                         return NULL;
6510                 }
6511         }
6512         property = *iter;
6513         property++;
6514         if (property < &klass->properties [klass->property.count]) {
6515                 return *iter = property;
6516         }
6517         return NULL;
6518 }
6519
6520 /**
6521  * mono_class_get_events:
6522  * @klass: the MonoClass to act on
6523  *
6524  * This routine is an iterator routine for retrieving the properties in a class.
6525  *
6526  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6527  * iterate over all of the elements.  When no more values are
6528  * available, the return value is NULL.
6529  *
6530  * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
6531  */
6532 MonoEvent*
6533 mono_class_get_events (MonoClass* klass, gpointer *iter)
6534 {
6535         MonoEvent* event;
6536         if (!iter)
6537                 return NULL;
6538         if (!klass->inited)
6539                 mono_class_init (klass);
6540         if (!*iter) {
6541                 mono_class_setup_events (klass);
6542                 /* start from the first */
6543                 if (klass->event.count) {
6544                         return *iter = &klass->events [0];
6545                 } else {
6546                         /* no fields */
6547                         return NULL;
6548                 }
6549         }
6550         event = *iter;
6551         event++;
6552         if (event < &klass->events [klass->event.count]) {
6553                 return *iter = event;
6554         }
6555         return NULL;
6556 }
6557
6558 /**
6559  * mono_class_get_interfaces
6560  * @klass: the MonoClass to act on
6561  *
6562  * This routine is an iterator routine for retrieving the interfaces implemented by this class.
6563  *
6564  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6565  * iterate over all of the elements.  When no more values are
6566  * available, the return value is NULL.
6567  *
6568  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
6569  */
6570 MonoClass*
6571 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
6572 {
6573         MonoClass** iface;
6574         if (!iter)
6575                 return NULL;
6576         if (!klass->inited)
6577                 mono_class_init (klass);
6578         if (!*iter) {
6579                 /* start from the first */
6580                 if (klass->interface_count) {
6581                         *iter = &klass->interfaces [0];
6582                         return klass->interfaces [0];
6583                 } else {
6584                         /* no interface */
6585                         return NULL;
6586                 }
6587         }
6588         iface = *iter;
6589         iface++;
6590         if (iface < &klass->interfaces [klass->interface_count]) {
6591                 *iter = iface;
6592                 return *iface;
6593         }
6594         return NULL;
6595 }
6596
6597 /**
6598  * mono_class_get_nested_types
6599  * @klass: the MonoClass to act on
6600  *
6601  * This routine is an iterator routine for retrieving the nested types of a class.
6602  * This works only if @klass is non-generic, or a generic type definition.
6603  *
6604  * You must pass a gpointer that points to zero and is treated as an opaque handle to
6605  * iterate over all of the elements.  When no more values are
6606  * available, the return value is NULL.
6607  *
6608  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
6609  */
6610 MonoClass*
6611 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
6612 {
6613         GList *item;
6614         int i;
6615
6616         if (!iter)
6617                 return NULL;
6618         if (!klass->inited)
6619                 mono_class_init (klass);
6620         if (!klass->nested_classes_inited) {
6621                 if (!klass->type_token)
6622                         klass->nested_classes_inited = TRUE;
6623                 mono_loader_lock ();
6624                 if (!klass->nested_classes_inited) {
6625                         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, 1);
6626                         while (i) {
6627                                 MonoClass* nclass;
6628                                 guint32 cols [MONO_NESTED_CLASS_SIZE];
6629                                 mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
6630                                 nclass = mono_class_create_from_typedef (klass->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED]);
6631                                 klass->nested_classes = g_list_prepend_mempool (klass->nested_classes, klass->image->mempool, nclass);
6632
6633                                 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
6634                         }
6635                 }
6636                 mono_memory_barrier ();
6637                 klass->nested_classes_inited = TRUE;
6638                 mono_loader_unlock ();
6639         }
6640
6641         if (!*iter) {
6642                 /* start from the first */
6643                 if (klass->nested_classes) {
6644                         *iter = klass->nested_classes;
6645                         return klass->nested_classes->data;
6646                 } else {
6647                         /* no nested types */
6648                         return NULL;
6649                 }
6650         }
6651         item = *iter;
6652         item = item->next;
6653         if (item) {
6654                 *iter = item;
6655                 return item->data;
6656         }
6657         return NULL;
6658 }
6659
6660 /**
6661  * mono_field_get_name:
6662  * @field: the MonoClassField to act on
6663  *
6664  * Returns: the name of the field.
6665  */
6666 const char*
6667 mono_field_get_name (MonoClassField *field)
6668 {
6669         return field->name;
6670 }
6671
6672 /**
6673  * mono_field_get_type:
6674  * @field: the MonoClassField to act on
6675  *
6676  * Returns: MonoType of the field.
6677  */
6678 MonoType*
6679 mono_field_get_type (MonoClassField *field)
6680 {
6681         return field->type;
6682 }
6683
6684 /**
6685  * mono_field_get_type:
6686  * @field: the MonoClassField to act on
6687  *
6688  * Returns: MonoClass where the field was defined.
6689  */
6690 MonoClass*
6691 mono_field_get_parent (MonoClassField *field)
6692 {
6693         return field->parent;
6694 }
6695
6696 /**
6697  * mono_field_get_flags;
6698  * @field: the MonoClassField to act on
6699  *
6700  * The metadata flags for a field are encoded using the
6701  * FIELD_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
6702  *
6703  * Returns: the flags for the field.
6704  */
6705 guint32
6706 mono_field_get_flags (MonoClassField *field)
6707 {
6708         return field->type->attrs;
6709 }
6710
6711 /**
6712  * mono_field_get_offset;
6713  * @field: the MonoClassField to act on
6714  *
6715  * Returns: the field offset.
6716  */
6717 guint32
6718 mono_field_get_offset (MonoClassField *field)
6719 {
6720         return field->offset;
6721 }
6722
6723 /**
6724  * mono_field_get_data;
6725  * @field: the MonoClassField to act on
6726  *
6727  * Returns: pointer to the metadata constant value or to the field
6728  * data if it has an RVA flag.
6729  */
6730 const char *
6731 mono_field_get_data  (MonoClassField *field)
6732 {
6733   return field->data;
6734 }
6735
6736 /**
6737  * mono_property_get_name: 
6738  * @prop: the MonoProperty to act on
6739  *
6740  * Returns: the name of the property
6741  */
6742 const char*
6743 mono_property_get_name (MonoProperty *prop)
6744 {
6745         return prop->name;
6746 }
6747
6748 /**
6749  * mono_property_get_set_method
6750  * @prop: the MonoProperty to act on.
6751  *
6752  * Returns: the setter method of the property (A MonoMethod)
6753  */
6754 MonoMethod*
6755 mono_property_get_set_method (MonoProperty *prop)
6756 {
6757         return prop->set;
6758 }
6759
6760 /**
6761  * mono_property_get_get_method
6762  * @prop: the MonoProperty to act on.
6763  *
6764  * Returns: the setter method of the property (A MonoMethod)
6765  */
6766 MonoMethod*
6767 mono_property_get_get_method (MonoProperty *prop)
6768 {
6769         return prop->get;
6770 }
6771
6772 /**
6773  * mono_property_get_parent:
6774  * @prop: the MonoProperty to act on.
6775  *
6776  * Returns: the MonoClass where the property was defined.
6777  */
6778 MonoClass*
6779 mono_property_get_parent (MonoProperty *prop)
6780 {
6781         return prop->parent;
6782 }
6783
6784 /**
6785  * mono_property_get_flags:
6786  * @prop: the MonoProperty to act on.
6787  *
6788  * The metadata flags for a property are encoded using the
6789  * PROPERTY_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
6790  *
6791  * Returns: the flags for the property.
6792  */
6793 guint32
6794 mono_property_get_flags (MonoProperty *prop)
6795 {
6796         return prop->attrs;
6797 }
6798
6799 /**
6800  * mono_event_get_name:
6801  * @event: the MonoEvent to act on
6802  *
6803  * Returns: the name of the event.
6804  */
6805 const char*
6806 mono_event_get_name (MonoEvent *event)
6807 {
6808         return event->name;
6809 }
6810
6811 /**
6812  * mono_event_get_add_method:
6813  * @event: The MonoEvent to act on.
6814  *
6815  * Returns: the @add' method for the event (a MonoMethod).
6816  */
6817 MonoMethod*
6818 mono_event_get_add_method (MonoEvent *event)
6819 {
6820         return event->add;
6821 }
6822
6823 /**
6824  * mono_event_get_remove_method:
6825  * @event: The MonoEvent to act on.
6826  *
6827  * Returns: the @remove method for the event (a MonoMethod).
6828  */
6829 MonoMethod*
6830 mono_event_get_remove_method (MonoEvent *event)
6831 {
6832         return event->remove;
6833 }
6834
6835 /**
6836  * mono_event_get_raise_method:
6837  * @event: The MonoEvent to act on.
6838  *
6839  * Returns: the @raise method for the event (a MonoMethod).
6840  */
6841 MonoMethod*
6842 mono_event_get_raise_method (MonoEvent *event)
6843 {
6844         return event->raise;
6845 }
6846
6847 /**
6848  * mono_event_get_parent:
6849  * @event: the MonoEvent to act on.
6850  *
6851  * Returns: the MonoClass where the event is defined.
6852  */
6853 MonoClass*
6854 mono_event_get_parent (MonoEvent *event)
6855 {
6856         return event->parent;
6857 }
6858
6859 /**
6860  * mono_event_get_flags
6861  * @event: the MonoEvent to act on.
6862  *
6863  * The metadata flags for an event are encoded using the
6864  * EVENT_* constants.  See the tabledefs.h file for details.
6865  *
6866  * Returns: the flags for the event.
6867  */
6868 guint32
6869 mono_event_get_flags (MonoEvent *event)
6870 {
6871         return event->attrs;
6872 }
6873
6874 /**
6875  * mono_class_get_method_from_name:
6876  * @klass: where to look for the method
6877  * @name_space: name of the method
6878  * @param_count: number of parameters. -1 for any number.
6879  *
6880  * Obtains a MonoMethod with a given name and number of parameters.
6881  * It only works if there are no multiple signatures for any given method name.
6882  */
6883 MonoMethod *
6884 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
6885 {
6886         return mono_class_get_method_from_name_flags (klass, name, param_count, 0);
6887 }
6888
6889 static MonoMethod*
6890 find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags)
6891 {
6892         MonoMethod *res = NULL;
6893         int i;
6894
6895         /* Search directly in the metadata to avoid calling setup_methods () */
6896         for (i = 0; i < klass->method.count; ++i) {
6897                 guint32 cols [MONO_METHOD_SIZE];
6898                 MonoMethod *method;
6899
6900                 /* class->method.first points into the methodptr table */
6901                 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, klass->method.first + i, cols, MONO_METHOD_SIZE);
6902
6903                 if (!strcmp (mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]), name)) {
6904                         method = mono_get_method (klass->image, MONO_TOKEN_METHOD_DEF | (klass->method.first + i + 1), klass);
6905                         if ((param_count == -1) || mono_method_signature (method)->param_count == param_count) {
6906                                 res = method;
6907                                 break;
6908                         }
6909                 }
6910         }
6911
6912         return res;
6913 }
6914
6915 /**
6916  * mono_class_get_method_from_name_flags:
6917  * @klass: where to look for the method
6918  * @name_space: name of the method
6919  * @param_count: number of parameters. -1 for any number.
6920  * @flags: flags which must be set in the method
6921  *
6922  * Obtains a MonoMethod with a given name and number of parameters.
6923  * It only works if there are no multiple signatures for any given method name.
6924  */
6925 MonoMethod *
6926 mono_class_get_method_from_name_flags (MonoClass *klass, const char *name, int param_count, int flags)
6927 {
6928         MonoMethod *res = NULL;
6929         int i;
6930
6931         mono_class_init (klass);
6932
6933         if (klass->methods || klass->generic_class) {
6934                 mono_class_setup_methods (klass);
6935                 for (i = 0; i < klass->method.count; ++i) {
6936                         MonoMethod *method = klass->methods [i];
6937
6938                         if (method->name[0] == name [0] && 
6939                                 !strcmp (name, method->name) &&
6940                                 (param_count == -1 || mono_method_signature (method)->param_count == param_count) &&
6941                                 ((method->flags & flags) == flags)) {
6942                                 res = method;
6943                                 break;
6944                         }
6945                 }
6946         }
6947         else {
6948             res = find_method_in_metadata (klass, name, param_count, flags);
6949         }
6950
6951         return res;
6952 }
6953
6954 /**
6955  * mono_class_set_failure:
6956  * @klass: class in which the failure was detected
6957  * @ex_type: the kind of exception/error to be thrown (later)
6958  * @ex_data: exception data (specific to each type of exception/error)
6959  *
6960  * Keep a detected failure informations in the class for later processing.
6961  * Note that only the first failure is kept.
6962  *
6963  * LOCKING: Acquires the loader lock.
6964  */
6965 gboolean
6966 mono_class_set_failure (MonoClass *klass, guint32 ex_type, void *ex_data)
6967 {
6968         if (klass->exception_type)
6969                 return FALSE;
6970
6971         mono_loader_lock ();
6972         klass->exception_type = ex_type;
6973         if (ex_data)
6974                 mono_property_hash_insert (klass->image->property_hash, klass, MONO_CLASS_PROP_EXCEPTION_DATA, ex_data);
6975         mono_loader_unlock ();
6976
6977         return TRUE;
6978 }
6979
6980 /*
6981  * mono_class_get_exception_data:
6982  *
6983  *   Return the exception_data property of KLASS.
6984  *
6985  * LOCKING: Acquires the loader lock.
6986  */
6987 gpointer
6988 mono_class_get_exception_data (MonoClass *klass)
6989 {
6990         gpointer res;
6991
6992         mono_loader_lock ();
6993         res = mono_property_hash_lookup (klass->image->property_hash, klass, MONO_CLASS_PROP_EXCEPTION_DATA);
6994         mono_loader_unlock ();
6995         return res;
6996 }
6997
6998 /**
6999  * mono_classes_init:
7000  *
7001  * Initialize the resources used by this module.
7002  */
7003 void
7004 mono_classes_init (void)
7005 {
7006 }
7007
7008 /**
7009  * mono_classes_cleanup:
7010  *
7011  * Free the resources used by this module.
7012  */
7013 void
7014 mono_classes_cleanup (void)
7015 {
7016         if (global_interface_bitset)
7017                 mono_bitset_free (global_interface_bitset);
7018 }
7019
7020 /**
7021  * mono_class_get_exception_for_failure:
7022  * @klass: class in which the failure was detected
7023  *
7024  * Return a constructed MonoException than the caller can then throw
7025  * using mono_raise_exception - or NULL if no failure is present (or
7026  * doesn't result in an exception).
7027  */
7028 MonoException*
7029 mono_class_get_exception_for_failure (MonoClass *klass)
7030 {
7031         gpointer exception_data = mono_class_get_exception_data (klass);
7032
7033         switch (klass->exception_type) {
7034         case MONO_EXCEPTION_SECURITY_INHERITANCEDEMAND: {
7035                 MonoDomain *domain = mono_domain_get ();
7036                 MonoSecurityManager* secman = mono_security_manager_get_methods ();
7037                 MonoMethod *method = exception_data;
7038                 guint32 error = (method) ? MONO_METADATA_INHERITANCEDEMAND_METHOD : MONO_METADATA_INHERITANCEDEMAND_CLASS;
7039                 MonoObject *exc = NULL;
7040                 gpointer args [4];
7041
7042                 args [0] = &error;
7043                 args [1] = mono_assembly_get_object (domain, mono_image_get_assembly (klass->image));
7044                 args [2] = mono_type_get_object (domain, &klass->byval_arg);
7045                 args [3] = (method) ? mono_method_get_object (domain, method, NULL) : NULL;
7046
7047                 mono_runtime_invoke (secman->inheritsecurityexception, NULL, args, &exc);
7048                 return (MonoException*) exc;
7049         }
7050         case MONO_EXCEPTION_TYPE_LOAD: {
7051                 MonoString *name;
7052                 MonoException *ex;
7053                 char *str = mono_type_get_full_name (klass);
7054                 char *astr = klass->image->assembly? mono_stringify_assembly_name (&klass->image->assembly->aname): NULL;
7055                 name = mono_string_new (mono_domain_get (), str);
7056                 g_free (str);
7057                 ex = mono_get_exception_type_load (name, astr);
7058                 g_free (astr);
7059                 return ex;
7060         }
7061         case MONO_EXCEPTION_MISSING_METHOD: {
7062                 char *class_name = exception_data;
7063                 char *assembly_name = class_name + strlen (class_name) + 1;
7064
7065                 return mono_get_exception_missing_method (class_name, assembly_name);
7066         }
7067         case MONO_EXCEPTION_MISSING_FIELD: {
7068                 char *class_name = exception_data;
7069                 char *member_name = class_name + strlen (class_name) + 1;
7070
7071                 return mono_get_exception_missing_field (class_name, member_name);
7072         }
7073         case MONO_EXCEPTION_FILE_NOT_FOUND: {
7074                 char *msg_format = exception_data;
7075                 char *assembly_name = msg_format + strlen (msg_format) + 1;
7076                 char *msg = g_strdup_printf (msg_format, assembly_name);
7077                 MonoException *ex;
7078
7079                 ex = mono_get_exception_file_not_found2 (msg, mono_string_new (mono_domain_get (), assembly_name));
7080
7081                 g_free (msg);
7082
7083                 return ex;
7084         }
7085         case MONO_EXCEPTION_BAD_IMAGE: {
7086                 return mono_get_exception_bad_image_format (exception_data);
7087         }
7088         default: {
7089                 MonoLoaderError *error;
7090                 MonoException *ex;
7091                 
7092                 error = mono_loader_get_last_error ();
7093                 if (error != NULL){
7094                         ex = mono_loader_error_prepare_exception (error);
7095                         return ex;
7096                 }
7097                 
7098                 /* TODO - handle other class related failures */
7099                 return NULL;
7100         }
7101         }
7102 }
7103
7104 static gboolean
7105 is_nesting_type (MonoClass *outer_klass, MonoClass *inner_klass)
7106  {
7107         outer_klass = mono_class_get_generic_type_definition (outer_klass);
7108         inner_klass = mono_class_get_generic_type_definition (inner_klass);
7109         do {
7110                 if (outer_klass == inner_klass)
7111                         return TRUE;
7112                 inner_klass = inner_klass->nested_in;
7113         } while (inner_klass);
7114         return FALSE;
7115 }
7116
7117 MonoClass *
7118 mono_class_get_generic_type_definition (MonoClass *klass)
7119 {
7120         return klass->generic_class ? klass->generic_class->container_class : klass;
7121 }
7122
7123 /*
7124  * Check if @klass is a subtype of @parent ignoring generic instantiations.
7125  * 
7126  * Generic instantiations are ignored for all super types of @klass.
7127  * 
7128  * Visibility checks ignoring generic instantiations.  
7129  */
7130 static gboolean
7131 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent)
7132 {
7133         int i;
7134         klass = mono_class_get_generic_type_definition (klass);
7135         parent = mono_class_get_generic_type_definition (parent);
7136         
7137         for (i = 0; i < klass->idepth; ++i) {
7138                 if (parent == mono_class_get_generic_type_definition (klass->supertypes [i]))
7139                         return TRUE;
7140         }
7141         return FALSE;
7142 }
7143 /*
7144  * Subtype can only access parent members with family protection if the site object
7145  * is subclass of Subtype. For example:
7146  * class A { protected int x; }
7147  * class B : A {
7148  *      void valid_access () {
7149  *              B b;
7150  *              b.x = 0;
7151  *  }
7152  *  void invalid_access () {
7153  *              A a;
7154  *              a.x = 0;
7155  *  }
7156  * }
7157  * */
7158 static gboolean
7159 is_valid_family_access (MonoClass *access_klass, MonoClass *member_klass, MonoClass *context_klass)
7160 {
7161         if (!mono_class_has_parent_and_ignore_generics (access_klass, member_klass))
7162                 return FALSE;
7163
7164         if (context_klass == NULL)
7165                 return TRUE;
7166         /*if access_klass is not member_klass context_klass must be type compat*/
7167         if (access_klass != member_klass && !mono_class_has_parent_and_ignore_generics (context_klass, access_klass))
7168                 return FALSE;
7169         return TRUE;
7170 }
7171
7172 static gboolean
7173 can_access_internals (MonoAssembly *accessing, MonoAssembly* accessed)
7174 {
7175         GSList *tmp;
7176         if (accessing == accessed)
7177                 return TRUE;
7178         if (!accessed || !accessing)
7179                 return FALSE;
7180         mono_assembly_load_friends (accessed);
7181         for (tmp = accessed->friend_assembly_names; tmp; tmp = tmp->next) {
7182                 MonoAssemblyName *friend = tmp->data;
7183                 /* Be conservative with checks */
7184                 if (!friend->name)
7185                         continue;
7186                 if (strcmp (accessing->aname.name, friend->name))
7187                         continue;
7188                 if (friend->public_key_token [0]) {
7189                         if (!accessing->aname.public_key_token [0])
7190                                 continue;
7191                         if (!mono_public_tokens_are_equal (friend->public_key_token, accessing->aname.public_key_token))
7192                                 continue;
7193                 }
7194                 return TRUE;
7195         }
7196         return FALSE;
7197 }
7198
7199 /*
7200  * If klass is a generic type or if it is derived from a generic type, return the
7201  * MonoClass of the generic definition
7202  * Returns NULL if not found
7203  */
7204 static MonoClass*
7205 get_generic_definition_class (MonoClass *klass)
7206 {
7207         while (klass) {
7208                 if (klass->generic_class && klass->generic_class->container_class)
7209                         return klass->generic_class->container_class;
7210                 klass = klass->parent;
7211         }
7212         return NULL;
7213 }
7214
7215 static gboolean
7216 can_access_instantiation (MonoClass *access_klass, MonoGenericInst *ginst)
7217 {
7218         int i;
7219         for (i = 0; i < ginst->type_argc; ++i) {
7220                 MonoType *type = ginst->type_argv[i];
7221                 if (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR)
7222                         continue;
7223                 if (!can_access_type (access_klass, mono_class_from_mono_type (type)))
7224                         return FALSE;
7225         }
7226         return TRUE;
7227 }
7228
7229 static gboolean
7230 can_access_type (MonoClass *access_klass, MonoClass *member_klass)
7231 {
7232         int access_level = member_klass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK;
7233
7234         if (member_klass->generic_class && !can_access_instantiation (access_klass, member_klass->generic_class->context.class_inst))
7235                 return FALSE;
7236
7237         if (is_nesting_type (access_klass, member_klass) || (access_klass->nested_in && is_nesting_type (access_klass->nested_in, member_klass)))
7238                 return TRUE;
7239
7240         if (member_klass->nested_in && !can_access_type (access_klass, member_klass->nested_in))
7241                 return FALSE;
7242
7243         switch (access_level) {
7244         case TYPE_ATTRIBUTE_NOT_PUBLIC:
7245                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7246
7247         case TYPE_ATTRIBUTE_PUBLIC:
7248                 return TRUE;
7249
7250         case TYPE_ATTRIBUTE_NESTED_PUBLIC:
7251                 return TRUE;
7252
7253         case TYPE_ATTRIBUTE_NESTED_PRIVATE:
7254                 return is_nesting_type (member_klass, access_klass);
7255
7256         case TYPE_ATTRIBUTE_NESTED_FAMILY:
7257                 return mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in); 
7258
7259         case TYPE_ATTRIBUTE_NESTED_ASSEMBLY:
7260                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7261
7262         case TYPE_ATTRIBUTE_NESTED_FAM_AND_ASSEM:
7263                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) &&
7264                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7265
7266         case TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM:
7267                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) ||
7268                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
7269         }
7270         return FALSE;
7271 }
7272
7273 /* FIXME: check visibility of type, too */
7274 static gboolean
7275 can_access_member (MonoClass *access_klass, MonoClass *member_klass, MonoClass* context_klass, int access_level)
7276 {
7277         MonoClass *member_generic_def;
7278         if (((access_klass->generic_class && access_klass->generic_class->container_class) ||
7279                                         access_klass->generic_container) && 
7280                         (member_generic_def = get_generic_definition_class (member_klass))) {
7281                 MonoClass *access_container;
7282
7283                 if (access_klass->generic_container)
7284                         access_container = access_klass;
7285                 else
7286                         access_container = access_klass->generic_class->container_class;
7287
7288                 if (can_access_member (access_container, member_generic_def, context_klass, access_level))
7289                         return TRUE;
7290         }
7291
7292         /* Partition I 8.5.3.2 */
7293         /* the access level values are the same for fields and methods */
7294         switch (access_level) {
7295         case FIELD_ATTRIBUTE_COMPILER_CONTROLLED:
7296                 /* same compilation unit */
7297                 return access_klass->image == member_klass->image;
7298         case FIELD_ATTRIBUTE_PRIVATE:
7299                 return access_klass == member_klass;
7300         case FIELD_ATTRIBUTE_FAM_AND_ASSEM:
7301                 if (is_valid_family_access (access_klass, member_klass, context_klass) &&
7302                     can_access_internals (access_klass->image->assembly, member_klass->image->assembly))
7303                         return TRUE;
7304                 return FALSE;
7305         case FIELD_ATTRIBUTE_ASSEMBLY:
7306                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7307         case FIELD_ATTRIBUTE_FAMILY:
7308                 if (is_valid_family_access (access_klass, member_klass, context_klass))
7309                         return TRUE;
7310                 return FALSE;
7311         case FIELD_ATTRIBUTE_FAM_OR_ASSEM:
7312                 if (is_valid_family_access (access_klass, member_klass, context_klass))
7313                         return TRUE;
7314                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
7315         case FIELD_ATTRIBUTE_PUBLIC:
7316                 return TRUE;
7317         }
7318         return FALSE;
7319 }
7320
7321 gboolean
7322 mono_method_can_access_field (MonoMethod *method, MonoClassField *field)
7323 {
7324         /* FIXME: check all overlapping fields */
7325         int can = can_access_member (method->klass, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7326         if (!can) {
7327                 MonoClass *nested = method->klass->nested_in;
7328                 while (nested) {
7329                         can = can_access_member (nested, field->parent, NULL, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7330                         if (can)
7331                                 return TRUE;
7332                         nested = nested->nested_in;
7333                 }
7334         }
7335         return can;
7336 }
7337
7338 gboolean
7339 mono_method_can_access_method (MonoMethod *method, MonoMethod *called)
7340 {
7341         int can = can_access_member (method->klass, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7342         if (!can) {
7343                 MonoClass *nested = method->klass->nested_in;
7344                 while (nested) {
7345                         can = can_access_member (nested, called->klass, NULL, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7346                         if (can)
7347                                 return TRUE;
7348                         nested = nested->nested_in;
7349                 }
7350         }
7351         /* 
7352          * FIXME:
7353          * with generics calls to explicit interface implementations can be expressed
7354          * directly: the method is private, but we must allow it. This may be opening
7355          * a hole or the generics code should handle this differently.
7356          * Maybe just ensure the interface type is public.
7357          */
7358         if ((called->flags & METHOD_ATTRIBUTE_VIRTUAL) && (called->flags & METHOD_ATTRIBUTE_FINAL))
7359                 return TRUE;
7360         return can;
7361 }
7362
7363 /*
7364  * mono_method_can_access_method_with_context:
7365  * @method: The caller method 
7366  * @called: The called method 
7367  * @context_klass:TThe static type on stack of the owner @called object used
7368  * 
7369  * This function must be used with instance calls, as they have more strict family accessibility.
7370  * It can be used with static mehthod, but context_klass should be NULL.
7371  * 
7372  * Returns: TRUE if caller have proper visibility and acessibility to @called
7373  */
7374 gboolean
7375 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass)
7376 {
7377         MonoClass *access_class = method->klass;
7378         MonoClass *member_class = called->klass;
7379         int can = can_access_member (access_class, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7380         if (!can) {
7381                 MonoClass *nested = access_class->nested_in;
7382                 while (nested) {
7383                         can = can_access_member (nested, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
7384                         if (can)
7385                                 break;
7386                         nested = nested->nested_in;
7387                 }
7388         }
7389
7390         if (!can)
7391                 return FALSE;
7392
7393         if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7394                 return FALSE;
7395
7396         if (called->is_inflated) {
7397                 MonoMethodInflated * infl = (MonoMethodInflated*)called;
7398                 if (infl->context.method_inst && !can_access_instantiation (access_class, infl->context.method_inst))
7399                 return FALSE;
7400         }
7401                 
7402         return TRUE;
7403 }
7404
7405
7406 /*
7407  * mono_method_can_access_method_with_context:
7408  * @method: The caller method 
7409  * @field: The accessed field
7410  * @context_klass: The static type on stack of the owner @field object used
7411  * 
7412  * This function must be used with instance fields, as they have more strict family accessibility.
7413  * It can be used with static fields, but context_klass should be NULL.
7414  * 
7415  * Returns: TRUE if caller have proper visibility and acessibility to @field
7416  */
7417 gboolean
7418 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass)
7419 {
7420         MonoClass *access_class = method->klass;
7421         MonoClass *member_class = field->parent;
7422         /* FIXME: check all overlapping fields */
7423         int can = can_access_member (access_class, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7424         if (!can) {
7425                 MonoClass *nested = access_class->nested_in;
7426                 while (nested) {
7427                         can = can_access_member (nested, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
7428                         if (can)
7429                                 break;
7430                         nested = nested->nested_in;
7431                 }
7432         }
7433
7434         if (!can)
7435                 return FALSE;
7436
7437         if (!can_access_type (access_class, member_class) && (!access_class->nested_in || !can_access_type (access_class->nested_in, member_class)))
7438                 return FALSE;
7439         return TRUE;
7440 }
7441
7442 /**
7443  * mono_type_is_valid_enum_basetype:
7444  * @type: The MonoType to check
7445  *
7446  * Returns: TRUE if the type can be used as the basetype of an enum
7447  */
7448 gboolean mono_type_is_valid_enum_basetype (MonoType * type) {
7449         switch (type->type) {
7450         case MONO_TYPE_I1:
7451         case MONO_TYPE_U1:
7452         case MONO_TYPE_BOOLEAN:
7453         case MONO_TYPE_I2:
7454         case MONO_TYPE_U2:
7455         case MONO_TYPE_CHAR:
7456         case MONO_TYPE_I4:
7457         case MONO_TYPE_U4:
7458         case MONO_TYPE_I8:
7459         case MONO_TYPE_U8:
7460         case MONO_TYPE_I:
7461         case MONO_TYPE_U:
7462                 return TRUE;
7463         }
7464         return FALSE;
7465 }
7466
7467 /**
7468  * mono_class_is_valid_enum:
7469  * @klass: An enum class to be validated
7470  *
7471  * This method verify the required properties an enum should have.
7472  *  
7473  * Returns: TRUE if the informed enum class is valid 
7474  *
7475  * FIXME: TypeBuilder enums are allowed to implement interfaces, but since they cannot have methods, only empty interfaces are possible
7476  * FIXME: enum types are not allowed to have a cctor, but mono_reflection_create_runtime_class sets has_cctor to 1 for all types
7477  * FIXME: TypeBuilder enums can have any kind of static fields, but the spec is very explicit about that (P II 14.3)
7478  */
7479 gboolean mono_class_is_valid_enum (MonoClass *klass) {
7480         MonoClassField * field;
7481         gpointer iter = NULL;
7482         gboolean found_base_field = FALSE;
7483
7484         g_assert (klass->enumtype);
7485         /* we cannot test against mono_defaults.enum_class, or mcs won't be able to compile the System namespace*/
7486         if (!klass->parent || strcmp (klass->parent->name, "Enum") || strcmp (klass->parent->name_space, "System") ) {
7487                 return FALSE;
7488         }
7489
7490         if ((klass->flags & TYPE_ATTRIBUTE_LAYOUT_MASK) != TYPE_ATTRIBUTE_AUTO_LAYOUT)
7491                 return FALSE;
7492
7493         while ((field = mono_class_get_fields (klass, &iter))) {
7494                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
7495                         if (found_base_field)
7496                                 return FALSE;
7497                         found_base_field = TRUE;
7498                         if (!mono_type_is_valid_enum_basetype (field->type))
7499                                 return FALSE;
7500                 }
7501         }
7502
7503         if (!found_base_field)
7504                 return FALSE;
7505
7506         if (klass->method.count > 0) 
7507                 return FALSE;
7508
7509         return TRUE;
7510 }
7511
7512 gboolean
7513 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass)
7514 {
7515         return gklass->context.class_inst == gklass->container_class->generic_container->context.class_inst;
7516 }
7517
7518 /*
7519  * mono_class_generic_sharing_enabled:
7520  * @class: a class
7521  *
7522  * Returns whether generic sharing is enabled for class.
7523  *
7524  * This is a stop-gap measure to slowly introduce generic sharing
7525  * until we have all the issues sorted out, at which time this
7526  * function will disappear and generic sharing will always be enabled.
7527  */
7528 gboolean
7529 mono_class_generic_sharing_enabled (MonoClass *class)
7530 {
7531 #if defined(__i386__) || defined(__x86_64__) || defined(__arm__) || defined(__ppc__) || defined(__powerpc__)
7532         static gboolean supported = TRUE;
7533 #else
7534         /* Not supported by the JIT backends */
7535         static gboolean supported = FALSE;
7536 #endif
7537         static int generic_sharing = MONO_GENERIC_SHARING_NONE;
7538         static gboolean inited = FALSE;
7539
7540         if (!inited) {
7541                 const char *option;
7542
7543                 if (supported)
7544                         generic_sharing = MONO_GENERIC_SHARING_ALL;
7545                 else
7546                         generic_sharing = MONO_GENERIC_SHARING_NONE;
7547
7548                 if ((option = g_getenv ("MONO_GENERIC_SHARING"))) {
7549                         if (strcmp (option, "corlib") == 0)
7550                                 generic_sharing = MONO_GENERIC_SHARING_CORLIB;
7551                         else if (strcmp (option, "collections") == 0)
7552                                 generic_sharing = MONO_GENERIC_SHARING_COLLECTIONS;
7553                         else if (strcmp (option, "all") == 0)
7554                                 generic_sharing = MONO_GENERIC_SHARING_ALL;
7555                         else if (strcmp (option, "none") == 0)
7556                                 generic_sharing = MONO_GENERIC_SHARING_NONE;
7557                         else
7558                                 g_warning ("Unknown generic sharing option `%s'.", option);
7559                 }
7560
7561                 if (!supported)
7562                         generic_sharing = MONO_GENERIC_SHARING_NONE;
7563
7564                 inited = TRUE;
7565         }
7566
7567         switch (generic_sharing) {
7568         case MONO_GENERIC_SHARING_NONE:
7569                 return FALSE;
7570         case MONO_GENERIC_SHARING_ALL:
7571                 return TRUE;
7572         case MONO_GENERIC_SHARING_CORLIB :
7573                 return class->image == mono_defaults.corlib;
7574         case MONO_GENERIC_SHARING_COLLECTIONS:
7575                 if (class->image != mono_defaults.corlib)
7576                         return FALSE;
7577                 while (class->nested_in)
7578                         class = class->nested_in;
7579                 return g_str_has_prefix (class->name_space, "System.Collections.Generic");
7580         default:
7581                 g_assert_not_reached ();
7582         }
7583 }