[runtime] Decrease the size of the critical section in mono_bounded_array_class_get ().
[mono.git] / mono / metadata / class.c
1 /*
2  * class.c: Class management for the Mono runtime
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *
7  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
8  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
9  * Copyright 2012 Xamarin Inc (http://www.xamarin.com)
10  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
11  */
12 #include <config.h>
13 #ifdef HAVE_ALLOCA_H
14 #include <alloca.h>
15 #endif
16 #include <glib.h>
17 #include <stdio.h>
18 #include <string.h>
19 #include <stdlib.h>
20 #include <mono/metadata/image.h>
21 #include <mono/metadata/image-internals.h>
22 #include <mono/metadata/assembly.h>
23 #include <mono/metadata/assembly-internals.h>
24 #include <mono/metadata/metadata.h>
25 #include <mono/metadata/metadata-internals.h>
26 #include <mono/metadata/profiler-private.h>
27 #include <mono/metadata/tabledefs.h>
28 #include <mono/metadata/tokentype.h>
29 #include <mono/metadata/class-internals.h>
30 #include <mono/metadata/object.h>
31 #include <mono/metadata/appdomain.h>
32 #include <mono/metadata/mono-endian.h>
33 #include <mono/metadata/debug-helpers.h>
34 #include <mono/metadata/reflection.h>
35 #include <mono/metadata/exception.h>
36 #include <mono/metadata/security-manager.h>
37 #include <mono/metadata/security-core-clr.h>
38 #include <mono/metadata/attrdefs.h>
39 #include <mono/metadata/gc-internals.h>
40 #include <mono/metadata/verify-internals.h>
41 #include <mono/metadata/mono-debug.h>
42 #include <mono/utils/mono-counters.h>
43 #include <mono/utils/mono-string.h>
44 #include <mono/utils/mono-error-internals.h>
45 #include <mono/utils/mono-logger-internals.h>
46 #include <mono/utils/mono-memory-model.h>
47 #include <mono/utils/atomic.h>
48 #include <mono/utils/bsearch.h>
49 #include <mono/utils/checked-build.h>
50
51 MonoStats mono_stats;
52
53 gboolean mono_print_vtable = FALSE;
54 gboolean mono_align_small_structs = FALSE;
55
56 /* Statistics */
57 guint32 inflated_classes_size, inflated_methods_size;
58 guint32 classes_size, class_ext_size, class_ext_count;
59 guint32 class_def_count, class_gtd_count, class_ginst_count, class_gparam_count, class_array_count, class_pointer_count;
60
61 /* Low level lock which protects data structures in this module */
62 static mono_mutex_t classes_mutex;
63
64 /* Function supplied by the runtime to find classes by name using information from the AOT file */
65 static MonoGetClassFromName get_class_from_name = NULL;
66
67 static MonoClass * mono_class_create_from_typedef (MonoImage *image, guint32 type_token, MonoError *error);
68 static gboolean mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res);
69 static gboolean can_access_type (MonoClass *access_klass, MonoClass *member_klass);
70 static MonoMethod* find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags);
71 static int generic_array_methods (MonoClass *klass);
72 static void setup_generic_array_ifaces (MonoClass *klass, MonoClass *iface, MonoMethod **methods, int pos);
73
74 static MonoMethod* mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter);
75 static char* mono_assembly_name_from_token (MonoImage *image, guint32 type_token);
76 static void mono_field_resolve_type (MonoClassField *field, MonoError *error);
77 static guint32 mono_field_resolve_flags (MonoClassField *field);
78 static void mono_class_setup_vtable_full (MonoClass *klass, GList *in_setup);
79 static void mono_generic_class_setup_parent (MonoClass *klass, MonoClass *gklass);
80
81 static gboolean mono_class_set_failure (MonoClass *klass, MonoErrorBoxed *boxed_error);
82 static gpointer mono_class_get_exception_data (const MonoClass *klass);
83
84
85 /*
86 We use gclass recording to allow recursive system f types to be referenced by a parent.
87
88 Given the following type hierarchy:
89
90 class TextBox : TextBoxBase<TextBox> {}
91 class TextBoxBase<T> : TextInput<TextBox> where T : TextBoxBase<T> {}
92 class TextInput<T> : Input<T> where T: TextInput<T> {}
93 class Input<T> {}
94
95 The runtime tries to load TextBoxBase<>.
96 To load TextBoxBase<> to do so it must resolve the parent which is TextInput<TextBox>.
97 To instantiate TextInput<TextBox> it must resolve TextInput<> and TextBox.
98 To load TextBox it must resolve the parent which is TextBoxBase<TextBox>.
99
100 At this point the runtime must instantiate TextBoxBase<TextBox>. Both types are partially loaded 
101 at this point, iow, both are registered in the type map and both and a NULL parent. This means
102 that the resulting generic instance will have a NULL parent, which is wrong and will cause breakage.
103
104 To fix that what we do is to record all generic instantes created while resolving the parent of
105 any generic type definition and, after resolved, correct the parent field if needed.
106
107 */
108 static int record_gclass_instantiation;
109 static GSList *gclass_recorded_list;
110 typedef gboolean (*gclass_record_func) (MonoClass*, void*);
111
112 /* This TLS variable points to a GSList of classes which have setup_fields () executing */
113 static MonoNativeTlsKey setup_fields_tls_id;
114
115 static MonoNativeTlsKey init_pending_tls_id;
116
117 static inline void
118 classes_lock (void)
119 {
120         mono_locks_os_acquire (&classes_mutex, ClassesLock);
121 }
122
123 static inline void
124 classes_unlock (void)
125 {
126         mono_locks_os_release (&classes_mutex, ClassesLock);
127 }
128
129 /* 
130  * LOCKING: loader lock must be held until pairing disable_gclass_recording is called.
131 */
132 static void
133 enable_gclass_recording (void)
134 {
135         ++record_gclass_instantiation;
136 }
137
138 /* 
139  * LOCKING: loader lock must be held since pairing enable_gclass_recording was called.
140 */
141 static void
142 disable_gclass_recording (gclass_record_func func, void *user_data)
143 {
144         GSList **head = &gclass_recorded_list;
145
146         g_assert (record_gclass_instantiation > 0);
147         --record_gclass_instantiation;
148
149         while (*head) {
150                 GSList *node = *head;
151                 if (func ((MonoClass*)node->data, user_data)) {
152                         *head = node->next;
153                         g_slist_free_1 (node);
154                 } else {
155                         head = &node->next;
156                 }
157         }
158
159         /* We automatically discard all recorded gclasses when disabled. */
160         if (!record_gclass_instantiation && gclass_recorded_list) {
161                 g_slist_free (gclass_recorded_list);
162                 gclass_recorded_list = NULL;
163         }
164 }
165
166 /**
167  * mono_class_from_typeref:
168  * @image: a MonoImage
169  * @type_token: a TypeRef token
170  *
171  * Creates the MonoClass* structure representing the type defined by
172  * the typeref token valid inside @image.
173  * Returns: The MonoClass* representing the typeref token, NULL ifcould
174  * not be loaded.
175  */
176 MonoClass *
177 mono_class_from_typeref (MonoImage *image, guint32 type_token)
178 {
179         MonoError error;
180         MonoClass *klass = mono_class_from_typeref_checked (image, type_token, &error);
181         g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
182         return klass;
183 }
184
185 /**
186  * mono_class_from_typeref_checked:
187  * @image: a MonoImage
188  * @type_token: a TypeRef token
189  * @error: error return code, if any.
190  *
191  * Creates the MonoClass* structure representing the type defined by
192  * the typeref token valid inside @image.
193  *
194  * Returns: The MonoClass* representing the typeref token, NULL if it could
195  * not be loaded with the @error value filled with the information about the
196  * error.
197  */
198 MonoClass *
199 mono_class_from_typeref_checked (MonoImage *image, guint32 type_token, MonoError *error)
200 {
201         guint32 cols [MONO_TYPEREF_SIZE];
202         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
203         guint32 idx;
204         const char *name, *nspace;
205         MonoClass *res = NULL;
206         MonoImage *module;
207
208         mono_error_init (error);
209
210         if (!mono_verifier_verify_typeref_row (image, (type_token & 0xffffff) - 1, error))
211                 return NULL;
212
213         mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
214
215         name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
216         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
217
218         idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLUTION_SCOPE_BITS;
219         switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLUTION_SCOPE_MASK) {
220         case MONO_RESOLUTION_SCOPE_MODULE:
221                 /*
222                 LAMESPEC The spec says that a null module resolution scope should go through the exported type table.
223                 This is not the observed behavior of existing implementations.
224                 The defacto behavior is that it's just a typedef in disguise.
225                 */
226                 /* a typedef in disguise */
227                 res = mono_class_from_name_checked (image, nspace, name, error);
228                 goto done;
229
230         case MONO_RESOLUTION_SCOPE_MODULEREF:
231                 module = mono_image_load_module_checked (image, idx, error);
232                 if (module)
233                         res = mono_class_from_name_checked (module, nspace, name, error);
234                 goto done;
235
236         case MONO_RESOLUTION_SCOPE_TYPEREF: {
237                 MonoClass *enclosing;
238                 GList *tmp;
239
240                 if (idx == mono_metadata_token_index (type_token)) {
241                         mono_error_set_bad_image (error, image, "Image with self-referencing typeref token %08x.", type_token);
242                         return NULL;
243                 }
244
245                 enclosing = mono_class_from_typeref_checked (image, MONO_TOKEN_TYPE_REF | idx, error); 
246                 return_val_if_nok (error, NULL);
247
248                 MonoClassExt *ext = mono_class_get_ext (enclosing);
249                 if (enclosing->nested_classes_inited && ext) {
250                         /* Micro-optimization: don't scan the metadata tables if enclosing is already inited */
251                         for (tmp = ext->nested_classes; tmp; tmp = tmp->next) {
252                                 res = (MonoClass *)tmp->data;
253                                 if (strcmp (res->name, name) == 0)
254                                         return res;
255                         }
256                 } else {
257                         /* Don't call mono_class_init as we might've been called by it recursively */
258                         int i = mono_metadata_nesting_typedef (enclosing->image, enclosing->type_token, 1);
259                         while (i) {
260                                 guint32 class_nested = mono_metadata_decode_row_col (&enclosing->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, MONO_NESTED_CLASS_NESTED);
261                                 guint32 string_offset = mono_metadata_decode_row_col (&enclosing->image->tables [MONO_TABLE_TYPEDEF], class_nested - 1, MONO_TYPEDEF_NAME);
262                                 const char *nname = mono_metadata_string_heap (enclosing->image, string_offset);
263
264                                 if (strcmp (nname, name) == 0)
265                                         return mono_class_create_from_typedef (enclosing->image, MONO_TOKEN_TYPE_DEF | class_nested, error);
266
267                                 i = mono_metadata_nesting_typedef (enclosing->image, enclosing->type_token, i + 1);
268                         }
269                 }
270                 g_warning ("TypeRef ResolutionScope not yet handled (%d) for %s.%s in image %s", idx, nspace, name, image->name);
271                 goto done;
272         }
273         case MONO_RESOLUTION_SCOPE_ASSEMBLYREF:
274                 break;
275         }
276
277         if (idx > image->tables [MONO_TABLE_ASSEMBLYREF].rows) {
278                 mono_error_set_bad_image (error, image, "Image with invalid assemblyref token %08x.", idx);
279                 return NULL;
280         }
281
282         if (!image->references || !image->references [idx - 1])
283                 mono_assembly_load_reference (image, idx - 1);
284         g_assert (image->references [idx - 1]);
285
286         /* If the assembly did not load, register this as a type load exception */
287         if (image->references [idx - 1] == REFERENCE_MISSING){
288                 MonoAssemblyName aname;
289                 char *human_name;
290                 
291                 mono_assembly_get_assemblyref (image, idx - 1, &aname);
292                 human_name = mono_stringify_assembly_name (&aname);
293                 mono_error_set_assembly_load_simple (error, human_name, image->assembly ? image->assembly->ref_only : FALSE);
294                 return NULL;
295         }
296
297         res = mono_class_from_name_checked (image->references [idx - 1]->image, nspace, name, error);
298
299 done:
300         /* Generic case, should be avoided for when a better error is possible. */
301         if (!res && mono_error_ok (error)) {
302                 char *name = mono_class_name_from_token (image, type_token);
303                 char *assembly = mono_assembly_name_from_token (image, type_token);
304                 mono_error_set_type_load_name (error, name, assembly, "Could not resolve type with token %08x", type_token);
305         }
306         return res;
307 }
308
309
310 static void *
311 mono_image_memdup (MonoImage *image, void *data, guint size)
312 {
313         void *res = mono_image_alloc (image, size);
314         memcpy (res, data, size);
315         return res;
316 }
317         
318 /* Copy everything mono_metadata_free_array free. */
319 MonoArrayType *
320 mono_dup_array_type (MonoImage *image, MonoArrayType *a)
321 {
322         if (image) {
323                 a = (MonoArrayType *)mono_image_memdup (image, a, sizeof (MonoArrayType));
324                 if (a->sizes)
325                         a->sizes = (int *)mono_image_memdup (image, a->sizes, a->numsizes * sizeof (int));
326                 if (a->lobounds)
327                         a->lobounds = (int *)mono_image_memdup (image, a->lobounds, a->numlobounds * sizeof (int));
328         } else {
329                 a = (MonoArrayType *)g_memdup (a, sizeof (MonoArrayType));
330                 if (a->sizes)
331                         a->sizes = (int *)g_memdup (a->sizes, a->numsizes * sizeof (int));
332                 if (a->lobounds)
333                         a->lobounds = (int *)g_memdup (a->lobounds, a->numlobounds * sizeof (int));
334         }
335         return a;
336 }
337
338 /* Copy everything mono_metadata_free_method_signature free. */
339 MonoMethodSignature*
340 mono_metadata_signature_deep_dup (MonoImage *image, MonoMethodSignature *sig)
341 {
342         int i;
343         
344         sig = mono_metadata_signature_dup_full (image, sig);
345         
346         sig->ret = mono_metadata_type_dup (image, sig->ret);
347         for (i = 0; i < sig->param_count; ++i)
348                 sig->params [i] = mono_metadata_type_dup (image, sig->params [i]);
349         
350         return sig;
351 }
352
353 static void
354 _mono_type_get_assembly_name (MonoClass *klass, GString *str)
355 {
356         MonoAssembly *ta = klass->image->assembly;
357         char *name;
358
359         name = mono_stringify_assembly_name (&ta->aname);
360         g_string_append_printf (str, ", %s", name);
361         g_free (name);
362 }
363
364 static inline void
365 mono_type_name_check_byref (MonoType *type, GString *str)
366 {
367         if (type->byref)
368                 g_string_append_c (str, '&');
369 }
370
371 /**
372  * mono_identifier_escape_type_name_chars:
373  * @str: a destination string
374  * @identifier: an IDENTIFIER in internal form
375  *
376  * Returns: str.
377  *
378  * The displayed form of the identifier is appended to str.
379  *
380  * The displayed form of an identifier has the characters ,+&*[]\
381  * that have special meaning in type names escaped with a preceeding
382  * backslash (\) character.
383  */
384 static GString*
385 mono_identifier_escape_type_name_chars (GString* str, const char* identifier)
386 {
387         if (!identifier)
388                 return str;
389
390         size_t n = str->len;
391         // reserve space for common case: there will be no escaped characters.
392         g_string_set_size(str, n + strlen(identifier));
393         g_string_set_size(str, n);
394
395         for (const char* s = identifier; *s != 0 ; s++) {
396                 switch (*s) {
397                 case ',':
398                 case '+':
399                 case '&':
400                 case '*':
401                 case '[':
402                 case ']':
403                 case '\\':
404                         g_string_append_c (str, '\\');
405                         g_string_append_c (str, *s);
406                         break;
407                 default:
408                         g_string_append_c (str, *s);
409                         break;
410                 }
411         }
412         return str;
413 }
414
415 static void
416 mono_type_get_name_recurse (MonoType *type, GString *str, gboolean is_recursed,
417                             MonoTypeNameFormat format)
418 {
419         MonoClass *klass;
420         
421         switch (type->type) {
422         case MONO_TYPE_ARRAY: {
423                 int i, rank = type->data.array->rank;
424                 MonoTypeNameFormat nested_format;
425
426                 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
427                         MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
428
429                 mono_type_get_name_recurse (
430                         &type->data.array->eklass->byval_arg, str, FALSE, nested_format);
431                 g_string_append_c (str, '[');
432                 if (rank == 1)
433                         g_string_append_c (str, '*');
434                 for (i = 1; i < rank; i++)
435                         g_string_append_c (str, ',');
436                 g_string_append_c (str, ']');
437                 
438                 mono_type_name_check_byref (type, str);
439
440                 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
441                         _mono_type_get_assembly_name (type->data.array->eklass, str);
442                 break;
443         }
444         case MONO_TYPE_SZARRAY: {
445                 MonoTypeNameFormat nested_format;
446
447                 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
448                         MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
449
450                 mono_type_get_name_recurse (
451                         &type->data.klass->byval_arg, str, FALSE, nested_format);
452                 g_string_append (str, "[]");
453                 
454                 mono_type_name_check_byref (type, str);
455
456                 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
457                         _mono_type_get_assembly_name (type->data.klass, str);
458                 break;
459         }
460         case MONO_TYPE_PTR: {
461                 MonoTypeNameFormat nested_format;
462
463                 nested_format = format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED ?
464                         MONO_TYPE_NAME_FORMAT_FULL_NAME : format;
465
466                 mono_type_get_name_recurse (
467                         type->data.type, str, FALSE, nested_format);
468                 g_string_append_c (str, '*');
469
470                 mono_type_name_check_byref (type, str);
471
472                 if (format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)
473                         _mono_type_get_assembly_name (mono_class_from_mono_type (type->data.type), str);
474                 break;
475         }
476         case MONO_TYPE_VAR:
477         case MONO_TYPE_MVAR:
478                 if (!mono_generic_param_info (type->data.generic_param))
479                         g_string_append_printf (str, "%s%d", type->type == MONO_TYPE_VAR ? "!" : "!!", type->data.generic_param->num);
480                 else
481                         g_string_append (str, mono_generic_param_info (type->data.generic_param)->name);
482
483                 mono_type_name_check_byref (type, str);
484
485                 break;
486         default:
487                 klass = mono_class_from_mono_type (type);
488                 if (klass->nested_in) {
489                         mono_type_get_name_recurse (
490                                 &klass->nested_in->byval_arg, str, TRUE, format);
491                         if (format == MONO_TYPE_NAME_FORMAT_IL)
492                                 g_string_append_c (str, '.');
493                         else
494                                 g_string_append_c (str, '+');
495                 } else if (*klass->name_space) {
496                         if (format == MONO_TYPE_NAME_FORMAT_IL)
497                                 g_string_append (str, klass->name_space);
498                         else
499                                 mono_identifier_escape_type_name_chars (str, klass->name_space);
500                         g_string_append_c (str, '.');
501                 }
502                 if (format == MONO_TYPE_NAME_FORMAT_IL) {
503                         char *s = strchr (klass->name, '`');
504                         int len = s ? s - klass->name : strlen (klass->name);
505                         g_string_append_len (str, klass->name, len);
506                 } else {
507                         mono_identifier_escape_type_name_chars (str, klass->name);
508                 }
509                 if (is_recursed)
510                         break;
511                 if (mono_class_is_ginst (klass)) {
512                         MonoGenericClass *gclass = mono_class_get_generic_class (klass);
513                         MonoGenericInst *inst = gclass->context.class_inst;
514                         MonoTypeNameFormat nested_format;
515                         int i;
516
517                         nested_format = format == MONO_TYPE_NAME_FORMAT_FULL_NAME ?
518                                 MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED : format;
519
520                         if (format == MONO_TYPE_NAME_FORMAT_IL)
521                                 g_string_append_c (str, '<');
522                         else
523                                 g_string_append_c (str, '[');
524                         for (i = 0; i < inst->type_argc; i++) {
525                                 MonoType *t = inst->type_argv [i];
526
527                                 if (i)
528                                         g_string_append_c (str, ',');
529                                 if ((nested_format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
530                                     (t->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
531                                         g_string_append_c (str, '[');
532                                 mono_type_get_name_recurse (inst->type_argv [i], str, FALSE, nested_format);
533                                 if ((nested_format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
534                                     (t->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
535                                         g_string_append_c (str, ']');
536                         }
537                         if (format == MONO_TYPE_NAME_FORMAT_IL) 
538                                 g_string_append_c (str, '>');
539                         else
540                                 g_string_append_c (str, ']');
541                 } else if (mono_class_is_gtd (klass) &&
542                            (format != MONO_TYPE_NAME_FORMAT_FULL_NAME) &&
543                            (format != MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED)) {
544                         int i;
545
546                         if (format == MONO_TYPE_NAME_FORMAT_IL) 
547                                 g_string_append_c (str, '<');
548                         else
549                                 g_string_append_c (str, '[');
550                         for (i = 0; i < mono_class_get_generic_container (klass)->type_argc; i++) {
551                                 if (i)
552                                         g_string_append_c (str, ',');
553                                 g_string_append (str, mono_generic_container_get_param_info (mono_class_get_generic_container (klass), i)->name);
554                         }
555                         if (format == MONO_TYPE_NAME_FORMAT_IL) 
556                                 g_string_append_c (str, '>');
557                         else
558                                 g_string_append_c (str, ']');
559                 }
560
561                 mono_type_name_check_byref (type, str);
562
563                 if ((format == MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED) &&
564                     (type->type != MONO_TYPE_VAR) && (type->type != MONO_TYPE_MVAR))
565                         _mono_type_get_assembly_name (klass, str);
566                 break;
567         }
568 }
569
570 /**
571  * mono_type_get_name_full:
572  * @type: a type
573  * @format: the format for the return string.
574  *
575  * 
576  * Returns: The string representation in a number of formats:
577  *
578  * if format is MONO_TYPE_NAME_FORMAT_REFLECTION, the return string is
579  * returned in the formatrequired by System.Reflection, this is the
580  * inverse of mono_reflection_parse_type ().
581  *
582  * if format is MONO_TYPE_NAME_FORMAT_IL, it returns a syntax that can
583  * be used by the IL assembler.
584  *
585  * if format is MONO_TYPE_NAME_FORMAT_FULL_NAME
586  *
587  * if format is MONO_TYPE_NAME_FORMAT_ASSEMBLY_QUALIFIED
588  */
589 char*
590 mono_type_get_name_full (MonoType *type, MonoTypeNameFormat format)
591 {
592         GString* result;
593
594         result = g_string_new ("");
595
596         mono_type_get_name_recurse (type, result, FALSE, format);
597
598         return g_string_free (result, FALSE);
599 }
600
601 /**
602  * mono_type_get_full_name:
603  * @class: a class
604  *
605  * Returns: The string representation for type as required by System.Reflection.
606  * The inverse of mono_reflection_parse_type ().
607  */
608 char *
609 mono_type_get_full_name (MonoClass *klass)
610 {
611         return mono_type_get_name_full (mono_class_get_type (klass), MONO_TYPE_NAME_FORMAT_REFLECTION);
612 }
613
614 /**
615  * mono_type_get_name:
616  * @type: a type
617  *
618  * Returns: The string representation for type as it would be represented in IL code.
619  */
620 char*
621 mono_type_get_name (MonoType *type)
622 {
623         return mono_type_get_name_full (type, MONO_TYPE_NAME_FORMAT_IL);
624 }
625
626 /*
627  * mono_type_get_underlying_type:
628  * @type: a type
629  *
630  * Returns: The MonoType for the underlying integer type if @type
631  * is an enum and byref is false, otherwise the type itself.
632  */
633 MonoType*
634 mono_type_get_underlying_type (MonoType *type)
635 {
636         if (type->type == MONO_TYPE_VALUETYPE && type->data.klass->enumtype && !type->byref)
637                 return mono_class_enum_basetype (type->data.klass);
638         if (type->type == MONO_TYPE_GENERICINST && type->data.generic_class->container_class->enumtype && !type->byref)
639                 return mono_class_enum_basetype (type->data.generic_class->container_class);
640         return type;
641 }
642
643 /**
644  * mono_class_is_open_constructed_type:
645  * @type: a type
646  *
647  * Returns: TRUE if type represents a generics open constructed type.
648  * IOW, not all type parameters required for the instantiation have
649  * been provided or it's a generic type definition.
650  *
651  * An open constructed type means it's a non realizable type. Not to
652  * be mixed up with an abstract type - we can't cast or dispatch to
653  * an open type, for example.
654  */
655 gboolean
656 mono_class_is_open_constructed_type (MonoType *t)
657 {
658         switch (t->type) {
659         case MONO_TYPE_VAR:
660         case MONO_TYPE_MVAR:
661                 return TRUE;
662         case MONO_TYPE_SZARRAY:
663                 return mono_class_is_open_constructed_type (&t->data.klass->byval_arg);
664         case MONO_TYPE_ARRAY:
665                 return mono_class_is_open_constructed_type (&t->data.array->eklass->byval_arg);
666         case MONO_TYPE_PTR:
667                 return mono_class_is_open_constructed_type (t->data.type);
668         case MONO_TYPE_GENERICINST:
669                 return t->data.generic_class->context.class_inst->is_open;
670         case MONO_TYPE_CLASS:
671         case MONO_TYPE_VALUETYPE:
672                 return mono_class_is_gtd (t->data.klass);
673         default:
674                 return FALSE;
675         }
676 }
677
678 /*
679 This is a simple function to catch the most common bad instances of generic types.
680 Specially those that might lead to further failures in the runtime.
681 */
682 static gboolean
683 is_valid_generic_argument (MonoType *type)
684 {
685         switch (type->type) {
686         case MONO_TYPE_VOID:
687         //case MONO_TYPE_TYPEDBYREF:
688                 return FALSE;
689         default:
690                 return TRUE;
691         }
692 }
693
694 static MonoType*
695 inflate_generic_type (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error)
696 {
697         mono_error_init (error);
698
699         switch (type->type) {
700         case MONO_TYPE_MVAR: {
701                 MonoType *nt;
702                 int num = mono_type_get_generic_param_num (type);
703                 MonoGenericInst *inst = context->method_inst;
704                 if (!inst)
705                         return NULL;
706                 if (num >= inst->type_argc) {
707                         MonoGenericParamInfo *info = mono_generic_param_info (type->data.generic_param);
708                         mono_error_set_bad_image (error, image, "MVAR %d (%s) cannot be expanded in this context with %d instantiations",
709                                 num, info ? info->name : "", inst->type_argc);
710                         return NULL;
711                 }
712
713                 if (!is_valid_generic_argument (inst->type_argv [num])) {
714                         MonoGenericParamInfo *info = mono_generic_param_info (type->data.generic_param);
715                         mono_error_set_bad_image (error, image, "MVAR %d (%s) cannot be expanded with type 0x%x",
716                                 num, info ? info->name : "", inst->type_argv [num]->type);
717                         return NULL;                    
718                 }
719                 /*
720                  * Note that the VAR/MVAR cases are different from the rest.  The other cases duplicate @type,
721                  * while the VAR/MVAR duplicates a type from the context.  So, we need to ensure that the
722                  * ->byref and ->attrs from @type are propagated to the returned type.
723                  */
724                 nt = mono_metadata_type_dup (image, inst->type_argv [num]);
725                 nt->byref = type->byref;
726                 nt->attrs = type->attrs;
727                 return nt;
728         }
729         case MONO_TYPE_VAR: {
730                 MonoType *nt;
731                 int num = mono_type_get_generic_param_num (type);
732                 MonoGenericInst *inst = context->class_inst;
733                 if (!inst)
734                         return NULL;
735                 if (num >= inst->type_argc) {
736                         MonoGenericParamInfo *info = mono_generic_param_info (type->data.generic_param);
737                         mono_error_set_bad_image (error, image, "VAR %d (%s) cannot be expanded in this context with %d instantiations",
738                                 num, info ? info->name : "", inst->type_argc);
739                         return NULL;
740                 }
741                 if (!is_valid_generic_argument (inst->type_argv [num])) {
742                         MonoGenericParamInfo *info = mono_generic_param_info (type->data.generic_param);
743                         mono_error_set_bad_image (error, image, "VAR %d (%s) cannot be expanded with type 0x%x",
744                                 num, info ? info->name : "", inst->type_argv [num]->type);
745                         return NULL;                    
746                 }
747                 nt = mono_metadata_type_dup (image, inst->type_argv [num]);
748                 nt->byref = type->byref;
749                 nt->attrs = type->attrs;
750                 return nt;
751         }
752         case MONO_TYPE_SZARRAY: {
753                 MonoClass *eclass = type->data.klass;
754                 MonoType *nt, *inflated = inflate_generic_type (NULL, &eclass->byval_arg, context, error);
755                 if (!inflated || !mono_error_ok (error))
756                         return NULL;
757                 nt = mono_metadata_type_dup (image, type);
758                 nt->data.klass = mono_class_from_mono_type (inflated);
759                 mono_metadata_free_type (inflated);
760                 return nt;
761         }
762         case MONO_TYPE_ARRAY: {
763                 MonoClass *eclass = type->data.array->eklass;
764                 MonoType *nt, *inflated = inflate_generic_type (NULL, &eclass->byval_arg, context, error);
765                 if (!inflated || !mono_error_ok (error))
766                         return NULL;
767                 nt = mono_metadata_type_dup (image, type);
768                 nt->data.array->eklass = mono_class_from_mono_type (inflated);
769                 mono_metadata_free_type (inflated);
770                 return nt;
771         }
772         case MONO_TYPE_GENERICINST: {
773                 MonoGenericClass *gclass = type->data.generic_class;
774                 MonoGenericInst *inst;
775                 MonoType *nt;
776                 if (!gclass->context.class_inst->is_open)
777                         return NULL;
778
779                 inst = mono_metadata_inflate_generic_inst (gclass->context.class_inst, context, error);
780                 return_val_if_nok (error, NULL);
781
782                 if (inst != gclass->context.class_inst)
783                         gclass = mono_metadata_lookup_generic_class (gclass->container_class, inst, gclass->is_dynamic);
784
785                 if (gclass == type->data.generic_class)
786                         return NULL;
787
788                 nt = mono_metadata_type_dup (image, type);
789                 nt->data.generic_class = gclass;
790                 return nt;
791         }
792         case MONO_TYPE_CLASS:
793         case MONO_TYPE_VALUETYPE: {
794                 MonoClass *klass = type->data.klass;
795                 MonoGenericContainer *container = mono_class_try_get_generic_container (klass);
796                 MonoGenericInst *inst;
797                 MonoGenericClass *gclass = NULL;
798                 MonoType *nt;
799
800                 if (!container)
801                         return NULL;
802
803                 /* We can't use context->class_inst directly, since it can have more elements */
804                 inst = mono_metadata_inflate_generic_inst (container->context.class_inst, context, error);
805                 return_val_if_nok (error, NULL);
806
807                 if (inst == container->context.class_inst)
808                         return NULL;
809
810                 gclass = mono_metadata_lookup_generic_class (klass, inst, image_is_dynamic (klass->image));
811
812                 nt = mono_metadata_type_dup (image, type);
813                 nt->type = MONO_TYPE_GENERICINST;
814                 nt->data.generic_class = gclass;
815                 return nt;
816         }
817         default:
818                 return NULL;
819         }
820         return NULL;
821 }
822
823 MonoGenericContext *
824 mono_generic_class_get_context (MonoGenericClass *gclass)
825 {
826         return &gclass->context;
827 }
828
829 MonoGenericContext *
830 mono_class_get_context (MonoClass *klass)
831 {
832         MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
833         return gklass ? mono_generic_class_get_context (gklass) : NULL;
834 }
835
836 /*
837  * mono_class_inflate_generic_type_with_mempool:
838  * @mempool: a mempool
839  * @type: a type
840  * @context: a generics context
841  * @error: error context
842  *
843  * The same as mono_class_inflate_generic_type, but allocates the MonoType
844  * from mempool if it is non-NULL.  If it is NULL, the MonoType is
845  * allocated on the heap and is owned by the caller.
846  * The returned type can potentially be the same as TYPE, so it should not be
847  * modified by the caller, and it should be freed using mono_metadata_free_type ().
848  */
849 MonoType*
850 mono_class_inflate_generic_type_with_mempool (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error)
851 {
852         MonoType *inflated = NULL;
853         mono_error_init (error);
854
855         if (context)
856                 inflated = inflate_generic_type (image, type, context, error);
857         return_val_if_nok (error, NULL);
858
859         if (!inflated) {
860                 MonoType *shared = mono_metadata_get_shared_type (type);
861
862                 if (shared) {
863                         return shared;
864                 } else {
865                         return mono_metadata_type_dup (image, type);
866                 }
867         }
868
869         mono_stats.inflated_type_count++;
870         return inflated;
871 }
872
873 /*
874  * mono_class_inflate_generic_type:
875  * @type: a type
876  * @context: a generics context
877  *
878  * If @type is a generic type and @context is not NULL, instantiate it using the 
879  * generics context @context.
880  *
881  * Returns: The instantiated type or a copy of @type. The returned MonoType is allocated
882  * on the heap and is owned by the caller. Returns NULL on error.
883  *
884  * @deprecated Please use mono_class_inflate_generic_type_checked instead
885  */
886 MonoType*
887 mono_class_inflate_generic_type (MonoType *type, MonoGenericContext *context)
888 {
889         MonoError error;
890         MonoType *result;
891         result = mono_class_inflate_generic_type_checked (type, context, &error);
892         mono_error_cleanup (&error);
893         return result;
894 }
895
896 /*
897  * mono_class_inflate_generic_type:
898  * @type: a type
899  * @context: a generics context
900  * @error: error context to use
901  *
902  * If @type is a generic type and @context is not NULL, instantiate it using the 
903  * generics context @context.
904  *
905  * Returns: The instantiated type or a copy of @type. The returned MonoType is allocated
906  * on the heap and is owned by the caller.
907  */
908 MonoType*
909 mono_class_inflate_generic_type_checked (MonoType *type, MonoGenericContext *context, MonoError *error)
910 {
911         return mono_class_inflate_generic_type_with_mempool (NULL, type, context, error);
912 }
913
914 /*
915  * mono_class_inflate_generic_type_no_copy:
916  *
917  *   Same as inflate_generic_type_with_mempool, but return TYPE if no inflation
918  * was done.
919  */
920 static MonoType*
921 mono_class_inflate_generic_type_no_copy (MonoImage *image, MonoType *type, MonoGenericContext *context, MonoError *error)
922 {
923         MonoType *inflated = NULL; 
924
925         mono_error_init (error);
926         if (context) {
927                 inflated = inflate_generic_type (image, type, context, error);
928                 return_val_if_nok (error, NULL);
929         }
930
931         if (!inflated)
932                 return type;
933
934         mono_stats.inflated_type_count++;
935         return inflated;
936 }
937
938 /*
939  * mono_class_inflate_generic_class:
940  *
941  *   Inflate the class @gklass with @context. Set @error on failure.
942  */
943 MonoClass*
944 mono_class_inflate_generic_class_checked (MonoClass *gklass, MonoGenericContext *context, MonoError *error)
945 {
946         MonoClass *res;
947         MonoType *inflated;
948
949         inflated = mono_class_inflate_generic_type_checked (&gklass->byval_arg, context, error);
950         return_val_if_nok (error, NULL);
951
952         res = mono_class_from_mono_type (inflated);
953         mono_metadata_free_type (inflated);
954
955         return res;
956 }
957
958 static MonoGenericContext
959 inflate_generic_context (MonoGenericContext *context, MonoGenericContext *inflate_with, MonoError *error)
960 {
961         MonoGenericInst *class_inst = NULL;
962         MonoGenericInst *method_inst = NULL;
963         MonoGenericContext res = { NULL, NULL };
964
965         mono_error_init (error);
966
967         if (context->class_inst) {
968                 class_inst = mono_metadata_inflate_generic_inst (context->class_inst, inflate_with, error);
969                 if (!mono_error_ok (error))
970                         goto fail;
971         }
972
973         if (context->method_inst) {
974                 method_inst = mono_metadata_inflate_generic_inst (context->method_inst, inflate_with, error);
975                 if (!mono_error_ok (error))
976                         goto fail;
977         }
978
979         res.class_inst = class_inst;
980         res.method_inst = method_inst;
981 fail:
982         return res;
983 }
984
985 /*
986  * mono_class_inflate_generic_method:
987  * @method: a generic method
988  * @context: a generics context
989  *
990  * Instantiate the generic method @method using the generics context @context.
991  *
992  * Returns: The new instantiated method
993  */
994 MonoMethod *
995 mono_class_inflate_generic_method (MonoMethod *method, MonoGenericContext *context)
996 {
997         return mono_class_inflate_generic_method_full (method, NULL, context);
998 }
999
1000 MonoMethod *
1001 mono_class_inflate_generic_method_checked (MonoMethod *method, MonoGenericContext *context, MonoError *error)
1002 {
1003         return mono_class_inflate_generic_method_full_checked (method, NULL, context, error);
1004 }
1005
1006 /**
1007  * mono_class_inflate_generic_method_full:
1008  *
1009  * Instantiate method @method with the generic context @context.
1010  * BEWARE: All non-trivial fields are invalid, including klass, signature, and header.
1011  *         Use mono_method_signature () and mono_method_get_header () to get the correct values.
1012  */
1013 MonoMethod*
1014 mono_class_inflate_generic_method_full (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context)
1015 {
1016         MonoError error;
1017         MonoMethod *res = mono_class_inflate_generic_method_full_checked (method, klass_hint, context, &error);
1018         if (!mono_error_ok (&error))
1019                 /*FIXME do proper error handling - on this case, kill this function. */
1020                 g_error ("Could not inflate generic method due to %s", mono_error_get_message (&error)); 
1021
1022         return res;
1023 }
1024
1025 /**
1026  * mono_class_inflate_generic_method_full_checked:
1027  * Same as mono_class_inflate_generic_method_full but return failure using @error.
1028  */
1029 MonoMethod*
1030 mono_class_inflate_generic_method_full_checked (MonoMethod *method, MonoClass *klass_hint, MonoGenericContext *context, MonoError *error)
1031 {
1032         MonoMethod *result;
1033         MonoMethodInflated *iresult, *cached;
1034         MonoMethodSignature *sig;
1035         MonoGenericContext tmp_context;
1036
1037         mono_error_init (error);
1038
1039         /* The `method' has already been instantiated before => we need to peel out the instantiation and create a new context */
1040         while (method->is_inflated) {
1041                 MonoGenericContext *method_context = mono_method_get_context (method);
1042                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
1043
1044                 tmp_context = inflate_generic_context (method_context, context, error);
1045                 return_val_if_nok (error, NULL);
1046
1047                 context = &tmp_context;
1048
1049                 if (mono_metadata_generic_context_equal (method_context, context))
1050                         return method;
1051
1052                 method = imethod->declaring;
1053         }
1054
1055         /*
1056          * A method only needs to be inflated if the context has argument for which it is
1057          * parametric. Eg:
1058          * 
1059          * class Foo<T> { void Bar(); } - doesn't need to be inflated if only mvars' are supplied
1060          * class Foo { void Bar<T> (); } - doesn't need to be if only vars' are supplied
1061          * 
1062          */
1063         if (!((method->is_generic && context->method_inst) || 
1064                 (mono_class_is_gtd (method->klass) && context->class_inst)))
1065                 return method;
1066
1067         iresult = g_new0 (MonoMethodInflated, 1);
1068         iresult->context = *context;
1069         iresult->declaring = method;
1070
1071         if (!context->method_inst && method->is_generic)
1072                 iresult->context.method_inst = mono_method_get_generic_container (method)->context.method_inst;
1073
1074         if (!context->class_inst) {
1075                 g_assert (!mono_class_is_ginst (iresult->declaring->klass));
1076                 if (mono_class_is_gtd (iresult->declaring->klass))
1077                         iresult->context.class_inst = mono_class_get_generic_container (iresult->declaring->klass)->context.class_inst;
1078         }
1079         /* This can happen with some callers like mono_object_get_virtual_method () */
1080         if (!mono_class_is_gtd (iresult->declaring->klass) && !mono_class_is_ginst (iresult->declaring->klass))
1081                 iresult->context.class_inst = NULL;
1082
1083         MonoImageSet *set = mono_metadata_get_image_set_for_method (iresult);
1084
1085         // check cache
1086         mono_image_set_lock (set);
1087         cached = (MonoMethodInflated *)g_hash_table_lookup (set->gmethod_cache, iresult);
1088         mono_image_set_unlock (set);
1089
1090         if (cached) {
1091                 g_free (iresult);
1092                 return (MonoMethod*)cached;
1093         }
1094
1095         mono_stats.inflated_method_count++;
1096
1097         inflated_methods_size += sizeof (MonoMethodInflated);
1098
1099         sig = mono_method_signature (method);
1100         if (!sig) {
1101                 char *name = mono_type_get_full_name (method->klass);
1102                 mono_error_set_bad_image (error, method->klass->image, "Could not resolve signature of method %s:%s", name, method->name);
1103                 g_free (name);
1104                 goto fail;
1105         }
1106
1107         if (sig->pinvoke) {
1108                 memcpy (&iresult->method.pinvoke, method, sizeof (MonoMethodPInvoke));
1109         } else {
1110                 memcpy (&iresult->method.method, method, sizeof (MonoMethod));
1111         }
1112
1113         result = (MonoMethod *) iresult;
1114         result->is_inflated = TRUE;
1115         result->is_generic = FALSE;
1116         result->sre_method = FALSE;
1117         result->signature = NULL;
1118
1119         if (method->wrapper_type) {
1120                 MonoMethodWrapper *mw = (MonoMethodWrapper*)method;
1121                 MonoMethodWrapper *resw = (MonoMethodWrapper*)result;
1122                 int len = GPOINTER_TO_INT (((void**)mw->method_data) [0]);
1123
1124                 resw->method_data = (void **)g_malloc (sizeof (gpointer) * (len + 1));
1125                 memcpy (resw->method_data, mw->method_data, sizeof (gpointer) * (len + 1));
1126         }
1127
1128         if (iresult->context.method_inst) {
1129                 /* Set the generic_container of the result to the generic_container of method */
1130                 MonoGenericContainer *generic_container = mono_method_get_generic_container (method);
1131
1132                 if (generic_container && iresult->context.method_inst == generic_container->context.method_inst) {
1133                         result->is_generic = 1;
1134                         mono_method_set_generic_container (result, generic_container);
1135                 }
1136         }
1137
1138         if (klass_hint) {
1139                 MonoGenericClass *gklass_hint = mono_class_try_get_generic_class (klass_hint);
1140                 if (gklass_hint && (gklass_hint->container_class != method->klass || gklass_hint->context.class_inst != context->class_inst))
1141                         klass_hint = NULL;
1142         }
1143
1144         if (mono_class_is_gtd (method->klass))
1145                 result->klass = klass_hint;
1146
1147         if (!result->klass) {
1148                 MonoType *inflated = inflate_generic_type (NULL, &method->klass->byval_arg, context, error);
1149                 if (!mono_error_ok (error)) 
1150                         goto fail;
1151
1152                 result->klass = inflated ? mono_class_from_mono_type (inflated) : method->klass;
1153                 if (inflated)
1154                         mono_metadata_free_type (inflated);
1155         }
1156
1157         /*
1158          * FIXME: This should hold, but it doesn't:
1159          *
1160          * if (result->is_inflated && mono_method_get_context (result)->method_inst &&
1161          *              mono_method_get_context (result)->method_inst == mono_method_get_generic_container (((MonoMethodInflated*)result)->declaring)->context.method_inst) {
1162          *      g_assert (result->is_generic);
1163          * }
1164          *
1165          * Fixing this here causes other things to break, hence a very
1166          * ugly hack in mini-trampolines.c - see
1167          * is_generic_method_definition().
1168          */
1169
1170         // check cache
1171         mono_image_set_lock (set);
1172         cached = (MonoMethodInflated *)g_hash_table_lookup (set->gmethod_cache, iresult);
1173         if (!cached) {
1174                 g_hash_table_insert (set->gmethod_cache, iresult, iresult);
1175                 iresult->owner = set;
1176                 cached = iresult;
1177         }
1178         mono_image_set_unlock (set);
1179
1180         return (MonoMethod*)cached;
1181
1182 fail:
1183         g_free (iresult);
1184         return NULL;
1185 }
1186
1187 /**
1188  * mono_get_inflated_method:
1189  *
1190  * Obsolete.  We keep it around since it's mentioned in the public API.
1191  */
1192 MonoMethod*
1193 mono_get_inflated_method (MonoMethod *method)
1194 {
1195         return method;
1196 }
1197
1198 /*
1199  * mono_method_get_context_general:
1200  * @method: a method
1201  * @uninflated: handle uninflated methods?
1202  *
1203  * Returns the generic context of a method or NULL if it doesn't have
1204  * one.  For an inflated method that's the context stored in the
1205  * method.  Otherwise it's in the method's generic container or in the
1206  * generic container of the method's class.
1207  */
1208 MonoGenericContext*
1209 mono_method_get_context_general (MonoMethod *method, gboolean uninflated)
1210 {
1211         if (method->is_inflated) {
1212                 MonoMethodInflated *imethod = (MonoMethodInflated *) method;
1213                 return &imethod->context;
1214         }
1215         if (!uninflated)
1216                 return NULL;
1217         if (method->is_generic)
1218                 return &(mono_method_get_generic_container (method)->context);
1219         if (mono_class_is_gtd (method->klass))
1220                 return &mono_class_get_generic_container (method->klass)->context;
1221         return NULL;
1222 }
1223
1224 /*
1225  * mono_method_get_context:
1226  * @method: a method
1227  *
1228  * Returns the generic context for method if it's inflated, otherwise
1229  * NULL.
1230  */
1231 MonoGenericContext*
1232 mono_method_get_context (MonoMethod *method)
1233 {
1234         return mono_method_get_context_general (method, FALSE);
1235 }
1236
1237 /*
1238  * mono_method_get_generic_container:
1239  *
1240  *   Returns the generic container of METHOD, which should be a generic method definition.
1241  * Returns NULL if METHOD is not a generic method definition.
1242  * LOCKING: Acquires the loader lock.
1243  */
1244 MonoGenericContainer*
1245 mono_method_get_generic_container (MonoMethod *method)
1246 {
1247         MonoGenericContainer *container;
1248
1249         if (!method->is_generic)
1250                 return NULL;
1251
1252         container = (MonoGenericContainer *)mono_image_property_lookup (method->klass->image, method, MONO_METHOD_PROP_GENERIC_CONTAINER);
1253         g_assert (container);
1254
1255         return container;
1256 }
1257
1258 /*
1259  * mono_method_set_generic_container:
1260  *
1261  *   Sets the generic container of METHOD to CONTAINER.
1262  * LOCKING: Acquires the image lock.
1263  */
1264 void
1265 mono_method_set_generic_container (MonoMethod *method, MonoGenericContainer* container)
1266 {
1267         g_assert (method->is_generic);
1268
1269         mono_image_property_insert (method->klass->image, method, MONO_METHOD_PROP_GENERIC_CONTAINER, container);
1270 }
1271
1272 /** 
1273  * mono_class_find_enum_basetype:
1274  * @class: The enum class
1275  *
1276  *   Determine the basetype of an enum by iterating through its fields. We do this
1277  * in a separate function since it is cheaper than calling mono_class_setup_fields.
1278  */
1279 static MonoType*
1280 mono_class_find_enum_basetype (MonoClass *klass, MonoError *error)
1281 {
1282         MonoGenericContainer *container = NULL;
1283         MonoImage *m = klass->image;
1284         const int top = mono_class_get_field_count (klass);
1285         int i, first_field_idx;
1286
1287         g_assert (klass->enumtype);
1288
1289         mono_error_init (error);
1290
1291         container = mono_class_try_get_generic_container (klass);
1292         if (mono_class_is_ginst (klass)) {
1293                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
1294
1295                 container = mono_class_get_generic_container (gklass);
1296                 g_assert (container);
1297         }
1298
1299         /*
1300          * Fetch all the field information.
1301          */
1302         first_field_idx = mono_class_get_first_field_idx (klass);
1303         for (i = 0; i < top; i++){
1304                 const char *sig;
1305                 guint32 cols [MONO_FIELD_SIZE];
1306                 int idx = first_field_idx + i;
1307                 MonoType *ftype;
1308
1309                 /* first_field_idx and idx points into the fieldptr table */
1310                 mono_metadata_decode_table_row (m, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
1311
1312                 if (cols [MONO_FIELD_FLAGS] & FIELD_ATTRIBUTE_STATIC) //no need to decode static fields
1313                         continue;
1314
1315                 if (!mono_verifier_verify_field_signature (klass->image, cols [MONO_FIELD_SIGNATURE], NULL)) {
1316                         mono_error_set_bad_image (error, klass->image, "Invalid field signature %x", cols [MONO_FIELD_SIGNATURE]);
1317                         goto fail;
1318                 }
1319
1320                 sig = mono_metadata_blob_heap (m, cols [MONO_FIELD_SIGNATURE]);
1321                 mono_metadata_decode_value (sig, &sig);
1322                 /* FIELD signature == 0x06 */
1323                 if (*sig != 0x06) {
1324                         mono_error_set_bad_image (error, klass->image, "Invalid field signature %x, expected 0x6 but got %x", cols [MONO_FIELD_SIGNATURE], *sig);
1325                         goto fail;
1326                 }
1327
1328                 ftype = mono_metadata_parse_type_checked (m, container, cols [MONO_FIELD_FLAGS], FALSE, sig + 1, &sig, error);
1329                 if (!ftype)
1330                         goto fail;
1331
1332                 if (mono_class_is_ginst (klass)) {
1333                         //FIXME do we leak here?
1334                         ftype = mono_class_inflate_generic_type_checked (ftype, mono_class_get_context (klass), error);
1335                         if (!mono_error_ok (error))
1336                                 goto fail;
1337                         ftype->attrs = cols [MONO_FIELD_FLAGS];
1338                 }
1339
1340                 return ftype;
1341         }
1342         mono_error_set_type_load_class (error, klass, "Could not find base type");
1343
1344 fail:
1345         return NULL;
1346 }
1347
1348 /*
1349  * Checks for MonoClass::has_failure without resolving all MonoType's into MonoClass'es
1350  */
1351 static gboolean
1352 mono_type_has_exceptions (MonoType *type)
1353 {
1354         switch (type->type) {
1355         case MONO_TYPE_CLASS:
1356         case MONO_TYPE_VALUETYPE:
1357         case MONO_TYPE_SZARRAY:
1358                 return mono_class_has_failure (type->data.klass);
1359         case MONO_TYPE_ARRAY:
1360                 return mono_class_has_failure (type->data.array->eklass);
1361         case MONO_TYPE_GENERICINST:
1362                 return mono_class_has_failure (mono_generic_class_get_class (type->data.generic_class));
1363         default:
1364                 return FALSE;
1365         }
1366 }
1367
1368 void
1369 mono_error_set_for_class_failure (MonoError *oerror, const MonoClass *klass)
1370 {
1371         g_assert (mono_class_has_failure (klass));
1372         MonoErrorBoxed *box = (MonoErrorBoxed*)mono_class_get_exception_data (klass);
1373         mono_error_set_from_boxed (oerror, box);
1374 }
1375
1376
1377 /*
1378  * mono_class_alloc:
1379  *
1380  *   Allocate memory for some data belonging to CLASS, either from its image's mempool,
1381  * or from the heap.
1382  */
1383 gpointer
1384 mono_class_alloc (MonoClass *klass, int size)
1385 {
1386         MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
1387         if (gklass)
1388                 return mono_image_set_alloc (gklass->owner, size);
1389         else
1390                 return mono_image_alloc (klass->image, size);
1391 }
1392
1393 gpointer
1394 mono_class_alloc0 (MonoClass *klass, int size)
1395 {
1396         gpointer res;
1397
1398         res = mono_class_alloc (klass, size);
1399         memset (res, 0, size);
1400         return res;
1401 }
1402
1403 #define mono_class_new0(klass,struct_type, n_structs)           \
1404     ((struct_type *) mono_class_alloc0 ((klass), ((gsize) sizeof (struct_type)) * ((gsize) (n_structs))))
1405
1406 /**
1407  * mono_class_setup_basic_field_info:
1408  * @class: The class to initialize
1409  *
1410  * Initializes the following fields in MonoClass:
1411  * * klass->fields (only field->parent and field->name)
1412  * * klass->field.count
1413  * * klass->first_field_idx
1414  * LOCKING: Acquires the loader lock
1415  */
1416 static void
1417 mono_class_setup_basic_field_info (MonoClass *klass)
1418 {
1419         MonoGenericClass *gklass;
1420         MonoClassField *field;
1421         MonoClassField *fields;
1422         MonoClass *gtd;
1423         MonoImage *image;
1424         int i, top;
1425
1426         if (klass->fields)
1427                 return;
1428
1429         gklass = mono_class_try_get_generic_class (klass);
1430         gtd = gklass ? mono_class_get_generic_type_definition (klass) : NULL;
1431         image = klass->image;
1432
1433
1434         if (gklass && image_is_dynamic (gklass->container_class->image) && !gklass->container_class->wastypebuilder) {
1435                 /*
1436                  * This happens when a generic instance of an unfinished generic typebuilder
1437                  * is used as an element type for creating an array type. We can't initialize
1438                  * the fields of this class using the fields of gklass, since gklass is not
1439                  * finished yet, fields could be added to it later.
1440                  */
1441                 return;
1442         }
1443
1444         if (gtd) {
1445                 mono_class_setup_basic_field_info (gtd);
1446
1447                 mono_loader_lock ();
1448                 mono_class_set_field_count (klass, mono_class_get_field_count (gtd));
1449                 mono_loader_unlock ();
1450         }
1451
1452         top = mono_class_get_field_count (klass);
1453
1454         fields = (MonoClassField *)mono_class_alloc0 (klass, sizeof (MonoClassField) * top);
1455
1456         /*
1457          * Fetch all the field information.
1458          */
1459         int first_field_idx = mono_class_has_static_metadata (klass) ? mono_class_get_first_field_idx (klass) : 0;
1460         for (i = 0; i < top; i++) {
1461                 field = &fields [i];
1462                 field->parent = klass;
1463
1464                 if (gtd) {
1465                         field->name = mono_field_get_name (&gtd->fields [i]);
1466                 } else {
1467                         int idx = first_field_idx + i;
1468                         /* first_field_idx and idx points into the fieldptr table */
1469                         guint32 name_idx = mono_metadata_decode_table_row_col (image, MONO_TABLE_FIELD, idx, MONO_FIELD_NAME);
1470                         /* The name is needed for fieldrefs */
1471                         field->name = mono_metadata_string_heap (image, name_idx);
1472                 }
1473         }
1474
1475         mono_memory_barrier ();
1476
1477         mono_loader_lock ();
1478         if (!klass->fields)
1479                 klass->fields = fields;
1480         mono_loader_unlock ();
1481 }
1482
1483 /**
1484  * mono_class_set_failure_causedby_class:
1485  * @klass: the class that is failing
1486  * @caused_by: the class that caused the failure
1487  * @msg: Why @klass is failing.
1488  * 
1489  * If @caused_by has a failure, sets a TypeLoadException failure on
1490  * @klass with message "@msg, due to: {@caused_by message}".
1491  *
1492  * Returns: TRUE if a failiure was set, or FALSE if @caused_by doesn't have a failure.
1493  */
1494 static gboolean
1495 mono_class_set_type_load_failure_causedby_class (MonoClass *klass, const MonoClass *caused_by, const gchar* msg)
1496 {
1497         if (mono_class_has_failure (caused_by)) {
1498                 MonoError cause_error;
1499                 mono_error_init (&cause_error);
1500                 mono_error_set_for_class_failure (&cause_error, caused_by);
1501                 mono_class_set_type_load_failure (klass, "%s, due to: %s", msg, mono_error_get_message (&cause_error));
1502                 mono_error_cleanup (&cause_error);
1503                 return TRUE;
1504         } else {
1505                 return FALSE;
1506         }
1507 }
1508
1509
1510 /** 
1511  * mono_class_setup_fields:
1512  * @klass: The class to initialize
1513  *
1514  * Initializes klass->fields, computes class layout and sizes.
1515  * typebuilder_setup_fields () is the corresponding function for dynamic classes.
1516  * Sets the following fields in @klass:
1517  *  - all the fields initialized by mono_class_init_sizes ()
1518  *  - element_class/cast_class (for enums)
1519  *  - field->type/offset for all fields
1520  *  - fields_inited
1521  *
1522  * LOCKING: Acquires the loader lock.
1523  */
1524 void
1525 mono_class_setup_fields (MonoClass *klass)
1526 {
1527         MonoError error;
1528         MonoImage *m = klass->image;
1529         int top;
1530         guint32 layout = mono_class_get_flags (klass) & TYPE_ATTRIBUTE_LAYOUT_MASK;
1531         int i;
1532         guint32 real_size = 0;
1533         guint32 packing_size = 0;
1534         int instance_size;
1535         gboolean explicit_size;
1536         MonoClassField *field;
1537         MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
1538         MonoClass *gtd = gklass ? mono_class_get_generic_type_definition (klass) : NULL;
1539
1540         if (klass->fields_inited)
1541                 return;
1542
1543         if (gklass && image_is_dynamic (gklass->container_class->image) && !gklass->container_class->wastypebuilder) {
1544                 /*
1545                  * This happens when a generic instance of an unfinished generic typebuilder
1546                  * is used as an element type for creating an array type. We can't initialize
1547                  * the fields of this class using the fields of gklass, since gklass is not
1548                  * finished yet, fields could be added to it later.
1549                  */
1550                 return;
1551         }
1552
1553         mono_class_setup_basic_field_info (klass);
1554         top = mono_class_get_field_count (klass);
1555
1556         if (gtd) {
1557                 mono_class_setup_fields (gtd);
1558                 if (mono_class_set_type_load_failure_causedby_class (klass, gtd, "Generic type definition failed"))
1559                         return;
1560         }
1561
1562         instance_size = 0;
1563         if (klass->parent) {
1564                 /* For generic instances, klass->parent might not have been initialized */
1565                 mono_class_init (klass->parent);
1566                 mono_class_setup_fields (klass->parent);
1567                 if (mono_class_set_type_load_failure_causedby_class (klass, klass->parent, "Could not set up parent class"))
1568                         return;
1569                 instance_size = klass->parent->instance_size;
1570         } else {
1571                 instance_size = sizeof (MonoObject);
1572         }
1573
1574         /* Get the real size */
1575         explicit_size = mono_metadata_packing_from_typedef (klass->image, klass->type_token, &packing_size, &real_size);
1576         if (explicit_size)
1577                 instance_size += real_size;
1578
1579         /*
1580          * This function can recursively call itself.
1581          * Prevent infinite recursion by using a list in TLS.
1582          */
1583         GSList *init_list = (GSList *)mono_native_tls_get_value (setup_fields_tls_id);
1584         if (g_slist_find (init_list, klass))
1585                 return;
1586         init_list = g_slist_prepend (init_list, klass);
1587         mono_native_tls_set_value (setup_fields_tls_id, init_list);
1588
1589         /*
1590          * Fetch all the field information.
1591          */
1592         int first_field_idx = mono_class_has_static_metadata (klass) ? mono_class_get_first_field_idx (klass) : 0;
1593         for (i = 0; i < top; i++) {
1594                 int idx = first_field_idx + i;
1595                 field = &klass->fields [i];
1596
1597                 if (!field->type) {
1598                         mono_field_resolve_type (field, &error);
1599                         if (!mono_error_ok (&error)) {
1600                                 /*mono_field_resolve_type already failed class*/
1601                                 mono_error_cleanup (&error);
1602                                 break;
1603                         }
1604                         if (!field->type)
1605                                 g_error ("could not resolve %s:%s\n", mono_type_get_full_name(klass), field->name);
1606                         g_assert (field->type);
1607                 }
1608
1609                 if (mono_field_is_deleted (field))
1610                         continue;
1611                 if (layout == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
1612                         guint32 uoffset;
1613                         mono_metadata_field_info (m, idx, &uoffset, NULL, NULL);
1614                         int offset = uoffset;
1615
1616                         if (offset == (guint32)-1 && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1617                                 mono_class_set_type_load_failure (klass, "Missing field layout info for %s", field->name);
1618                                 break;
1619                         }
1620                         if (offset < -1) { /*-1 is used to encode special static fields */
1621                                 mono_class_set_type_load_failure (klass, "Field '%s' has a negative offset %d", field->name, offset);
1622                                 break;
1623                         }
1624                         if (mono_class_is_gtd (klass)) {
1625                                 mono_class_set_type_load_failure (klass, "Generic class cannot have explicit layout.");
1626                                 break;
1627                         }
1628                 }
1629                 if (mono_type_has_exceptions (field->type)) {
1630                         char *class_name = mono_type_get_full_name (klass);
1631                         char *type_name = mono_type_full_name (field->type);
1632
1633                         mono_class_set_type_load_failure (klass, "");
1634                         g_warning ("Invalid type %s for instance field %s:%s", type_name, class_name, field->name);
1635                         g_free (class_name);
1636                         g_free (type_name);
1637                         break;
1638                 }
1639                 /* The def_value of fields is compute lazily during vtable creation */
1640         }
1641
1642         if (!mono_class_has_failure (klass)) {
1643                 mono_loader_lock ();
1644                 mono_class_layout_fields (klass, instance_size, packing_size, FALSE);
1645                 mono_loader_unlock ();
1646         }
1647
1648         init_list = g_slist_remove (init_list, klass);
1649         mono_native_tls_set_value (setup_fields_tls_id, init_list);
1650 }
1651
1652 static void
1653 init_sizes_with_info (MonoClass *klass, MonoCachedClassInfo *cached_info)
1654 {
1655         if (cached_info) {
1656                 klass->instance_size = cached_info->instance_size;
1657                 klass->sizes.class_size = cached_info->class_size;
1658                 klass->packing_size = cached_info->packing_size;
1659                 klass->min_align = cached_info->min_align;
1660                 klass->blittable = cached_info->blittable;
1661                 klass->has_references = cached_info->has_references;
1662                 klass->has_static_refs = cached_info->has_static_refs;
1663                 klass->no_special_static_fields = cached_info->no_special_static_fields;
1664         }
1665         else {
1666                 if (!klass->size_inited)
1667                         mono_class_setup_fields (klass);
1668         }
1669 }
1670 /*
1671
1672  * mono_class_init_sizes:
1673  *
1674  *   Initializes the size related fields of @klass without loading all field data if possible.
1675  * Sets the following fields in @klass:
1676  * - instance_size
1677  * - sizes.class_size
1678  * - packing_size
1679  * - min_align
1680  * - blittable
1681  * - has_references
1682  * - has_static_refs
1683  * - size_inited
1684  * Can fail the class.
1685  *
1686  * LOCKING: Acquires the loader lock.
1687  */
1688 static void
1689 mono_class_init_sizes (MonoClass *klass)
1690 {
1691         MonoCachedClassInfo cached_info;
1692         gboolean has_cached_info;
1693
1694         if (klass->size_inited)
1695                 return;
1696
1697         has_cached_info = mono_class_get_cached_class_info (klass, &cached_info);
1698
1699         init_sizes_with_info (klass, has_cached_info ? &cached_info : NULL);
1700 }
1701
1702 /*
1703  * mono_type_get_basic_type_from_generic:
1704  * @type: a type
1705  *
1706  * Returns a closed type corresponding to the possibly open type
1707  * passed to it.
1708  */
1709 MonoType*
1710 mono_type_get_basic_type_from_generic (MonoType *type)
1711 {
1712         /* When we do generic sharing we let type variables stand for reference/primitive types. */
1713         if (!type->byref && (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR) &&
1714                 (!type->data.generic_param->gshared_constraint || type->data.generic_param->gshared_constraint->type == MONO_TYPE_OBJECT))
1715                 return &mono_defaults.object_class->byval_arg;
1716         return type;
1717 }
1718
1719 static gboolean
1720 class_has_references (MonoClass *klass)
1721 {
1722         mono_class_init_sizes (klass);
1723
1724         /*
1725          * has_references is not set if this is called recursively, but this is not a problem since this is only used
1726          * during field layout, and instance fields are initialized before static fields, and instance fields can't
1727          * embed themselves.
1728          */
1729         return klass->has_references;
1730 }
1731
1732 static gboolean
1733 type_has_references (MonoClass *klass, MonoType *ftype)
1734 {
1735         if (MONO_TYPE_IS_REFERENCE (ftype) || IS_GC_REFERENCE (klass, ftype) || ((MONO_TYPE_ISSTRUCT (ftype) && class_has_references (mono_class_from_mono_type (ftype)))))
1736                 return TRUE;
1737         if (!ftype->byref && (ftype->type == MONO_TYPE_VAR || ftype->type == MONO_TYPE_MVAR)) {
1738                 MonoGenericParam *gparam = ftype->data.generic_param;
1739
1740                 if (gparam->gshared_constraint)
1741                         return class_has_references (mono_class_from_mono_type (gparam->gshared_constraint));
1742         }
1743         return FALSE;
1744 }
1745
1746 /*
1747  * mono_class_layout_fields:
1748  * @class: a class
1749  * @base_instance_size: base instance size
1750  * @packing_size:
1751  *
1752  * This contains the common code for computing the layout of classes and sizes.
1753  * This should only be called from mono_class_setup_fields () and
1754  * typebuilder_setup_fields ().
1755  *
1756  * LOCKING: Acquires the loader lock
1757  */
1758 void
1759 mono_class_layout_fields (MonoClass *klass, int base_instance_size, int packing_size, gboolean sre)
1760 {
1761         int i;
1762         const int top = mono_class_get_field_count (klass);
1763         guint32 layout = mono_class_get_flags (klass) & TYPE_ATTRIBUTE_LAYOUT_MASK;
1764         guint32 pass, passes, real_size;
1765         gboolean gc_aware_layout = FALSE;
1766         gboolean has_static_fields = FALSE;
1767         gboolean has_references = FALSE;
1768         gboolean has_static_refs = FALSE;
1769         MonoClassField *field;
1770         gboolean blittable;
1771         int instance_size = base_instance_size;
1772         int class_size, min_align;
1773         int *field_offsets;
1774         gboolean *fields_has_references;
1775
1776         /*
1777          * We want to avoid doing complicated work inside locks, so we compute all the required
1778          * information and write it to @klass inside a lock.
1779          */
1780         if (klass->fields_inited)
1781                 return;
1782
1783         if ((packing_size & 0xffffff00) != 0) {
1784                 mono_class_set_type_load_failure (klass, "Could not load struct '%s' with packing size %d >= 256", klass->name, packing_size);
1785                 return;
1786         }
1787
1788         if (klass->parent) {
1789                 min_align = klass->parent->min_align;
1790                 /* we use | since it may have been set already */
1791                 has_references = klass->has_references | klass->parent->has_references;
1792         } else {
1793                 min_align = 1;
1794         }
1795         /* We can't really enable 16 bytes alignment until the GC supports it.
1796         The whole layout/instance size code must be reviewed because we do alignment calculation in terms of the
1797         boxed instance, which leads to unexplainable holes at the beginning of an object embedding a simd type.
1798         Bug #506144 is an example of this issue.
1799
1800          if (klass->simd_type)
1801                 min_align = 16;
1802          */
1803
1804         /*
1805          * When we do generic sharing we need to have layout
1806          * information for open generic classes (either with a generic
1807          * context containing type variables or with a generic
1808          * container), so we don't return in that case anymore.
1809          */
1810
1811         if (klass->enumtype) {
1812                 for (i = 0; i < top; i++) {
1813                         field = &klass->fields [i];
1814                         if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1815                                 klass->cast_class = klass->element_class = mono_class_from_mono_type (field->type);
1816                                 break;
1817                         }
1818                 }
1819
1820                 if (!mono_class_enum_basetype (klass)) {
1821                         mono_class_set_type_load_failure (klass, "The enumeration's base type is invalid.");
1822                         return;
1823                 }
1824         }
1825
1826         /*
1827          * Enable GC aware auto layout: in this mode, reference
1828          * fields are grouped together inside objects, increasing collector 
1829          * performance.
1830          * Requires that all classes whose layout is known to native code be annotated
1831          * with [StructLayout (LayoutKind.Sequential)]
1832          * Value types have gc_aware_layout disabled by default, as per
1833          * what the default is for other runtimes.
1834          */
1835          /* corlib is missing [StructLayout] directives in many places */
1836         if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT) {
1837                 if (!klass->valuetype)
1838                         gc_aware_layout = TRUE;
1839         }
1840
1841         /* Compute klass->blittable */
1842         blittable = TRUE;
1843         if (klass->parent)
1844                 blittable = klass->parent->blittable;
1845         if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT && !(mono_is_corlib_image (klass->image) && !strcmp (klass->name_space, "System") && !strcmp (klass->name, "ValueType")) && top)
1846                 blittable = FALSE;
1847         for (i = 0; i < top; i++) {
1848                 field = &klass->fields [i];
1849
1850                 if (mono_field_is_deleted (field))
1851                         continue;
1852                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1853                         continue;
1854                 if (blittable) {
1855                         if (field->type->byref || MONO_TYPE_IS_REFERENCE (field->type)) {
1856                                 blittable = FALSE;
1857                         } else {
1858                                 MonoClass *field_class = mono_class_from_mono_type (field->type);
1859                                 if (field_class) {
1860                                         mono_class_setup_fields (field_class);
1861                                         if (mono_class_has_failure (field_class)) {
1862                                                 MonoError field_error;
1863                                                 mono_error_init (&field_error);
1864                                                 mono_error_set_for_class_failure (&field_error, field_class);
1865                                                 mono_class_set_type_load_failure (klass, "Could not set up field '%s' due to: %s", field->name, mono_error_get_message (&field_error));
1866                                                 mono_error_cleanup (&field_error);
1867                                                 break;
1868                                         }
1869                                 }
1870                                 if (!field_class || !field_class->blittable)
1871                                         blittable = FALSE;
1872                         }
1873                 }
1874                 if (klass->enumtype)
1875                         blittable = klass->element_class->blittable;
1876         }
1877         if (mono_class_has_failure (klass))
1878                 return;
1879         if (klass == mono_defaults.string_class)
1880                 blittable = FALSE;
1881
1882         /* Compute klass->has_references */
1883         /* 
1884          * Process non-static fields first, since static fields might recursively
1885          * refer to the class itself.
1886          */
1887         for (i = 0; i < top; i++) {
1888                 MonoType *ftype;
1889
1890                 field = &klass->fields [i];
1891
1892                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
1893                         ftype = mono_type_get_underlying_type (field->type);
1894                         ftype = mono_type_get_basic_type_from_generic (ftype);
1895                         if (type_has_references (klass, ftype))
1896                                 has_references = TRUE;
1897                 }
1898         }
1899
1900         /*
1901          * Compute field layout and total size (not considering static fields)
1902          */
1903         field_offsets = g_new0 (int, top);
1904         fields_has_references = g_new0 (gboolean, top);
1905         int first_field_idx = mono_class_has_static_metadata (klass) ? mono_class_get_first_field_idx (klass) : 0;
1906         switch (layout) {
1907         case TYPE_ATTRIBUTE_AUTO_LAYOUT:
1908         case TYPE_ATTRIBUTE_SEQUENTIAL_LAYOUT:
1909                 if (gc_aware_layout)
1910                         passes = 2;
1911                 else
1912                         passes = 1;
1913
1914                 if (layout != TYPE_ATTRIBUTE_AUTO_LAYOUT)
1915                         passes = 1;
1916
1917                 if (klass->parent) {
1918                         mono_class_setup_fields (klass->parent);
1919                         if (mono_class_set_type_load_failure_causedby_class (klass, klass->parent, "Cannot initialize parent class"))
1920                                 return;
1921                         real_size = klass->parent->instance_size;
1922                 } else {
1923                         real_size = sizeof (MonoObject);
1924                 }
1925
1926                 for (pass = 0; pass < passes; ++pass) {
1927                         for (i = 0; i < top; i++){
1928                                 gint32 align;
1929                                 guint32 size;
1930                                 MonoType *ftype;
1931
1932                                 field = &klass->fields [i];
1933
1934                                 if (mono_field_is_deleted (field))
1935                                         continue;
1936                                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1937                                         continue;
1938
1939                                 ftype = mono_type_get_underlying_type (field->type);
1940                                 ftype = mono_type_get_basic_type_from_generic (ftype);
1941                                 if (gc_aware_layout) {
1942                                         fields_has_references [i] = type_has_references (klass, ftype);
1943                                         if (fields_has_references [i]) {
1944                                                 if (pass == 1)
1945                                                         continue;
1946                                         } else {
1947                                                 if (pass == 0)
1948                                                         continue;
1949                                         }
1950                                 }
1951
1952                                 if ((top == 1) && (instance_size == sizeof (MonoObject)) &&
1953                                         (strcmp (mono_field_get_name (field), "$PRIVATE$") == 0)) {
1954                                         /* This field is a hack inserted by MCS to empty structures */
1955                                         continue;
1956                                 }
1957
1958                                 size = mono_type_size (field->type, &align);
1959                         
1960                                 /* FIXME (LAMESPEC): should we also change the min alignment according to pack? */
1961                                 align = packing_size ? MIN (packing_size, align): align;
1962                                 /* if the field has managed references, we need to force-align it
1963                                  * see bug #77788
1964                                  */
1965                                 if (type_has_references (klass, ftype))
1966                                         align = MAX (align, sizeof (gpointer));
1967
1968                                 min_align = MAX (align, min_align);
1969                                 field_offsets [i] = real_size;
1970                                 if (align) {
1971                                         field_offsets [i] += align - 1;
1972                                         field_offsets [i] &= ~(align - 1);
1973                                 }
1974                                 /*TypeBuilders produce all sort of weird things*/
1975                                 g_assert (image_is_dynamic (klass->image) || field_offsets [i] > 0);
1976                                 real_size = field_offsets [i] + size;
1977                         }
1978
1979                         /* Make SIMD types as big as a SIMD register since they can be stored into using simd stores */
1980                         if (klass->simd_type)
1981                                 real_size = MAX (real_size, sizeof (MonoObject) + 16);
1982                         instance_size = MAX (real_size, instance_size);
1983        
1984                         if (instance_size & (min_align - 1)) {
1985                                 instance_size += min_align - 1;
1986                                 instance_size &= ~(min_align - 1);
1987                         }
1988                 }
1989                 break;
1990         case TYPE_ATTRIBUTE_EXPLICIT_LAYOUT: {
1991                 guint8 *ref_bitmap;
1992
1993                 real_size = 0;
1994                 for (i = 0; i < top; i++) {
1995                         gint32 align;
1996                         guint32 size;
1997                         MonoType *ftype;
1998
1999                         field = &klass->fields [i];
2000
2001                         /*
2002                          * There must be info about all the fields in a type if it
2003                          * uses explicit layout.
2004                          */
2005                         if (mono_field_is_deleted (field))
2006                                 continue;
2007                         if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
2008                                 continue;
2009
2010                         size = mono_type_size (field->type, &align);
2011                         align = packing_size ? MIN (packing_size, align): align;
2012                         min_align = MAX (align, min_align);
2013
2014                         if (sre) {
2015                                 /* Already set by typebuilder_setup_fields () */
2016                                 field_offsets [i] = field->offset + sizeof (MonoObject);
2017                         } else {
2018                                 int idx = first_field_idx + i;
2019                                 guint32 offset;
2020                                 mono_metadata_field_info (klass->image, idx, &offset, NULL, NULL);
2021                                 field_offsets [i] = offset + sizeof (MonoObject);
2022                         }
2023                         ftype = mono_type_get_underlying_type (field->type);
2024                         ftype = mono_type_get_basic_type_from_generic (ftype);
2025                         if (type_has_references (klass, ftype)) {
2026                                 if (field_offsets [i] % sizeof (gpointer)) {
2027                                         mono_class_set_type_load_failure (klass, "Reference typed field '%s' has explicit offset that is not pointer-size aligned.", field->name);
2028                                 }
2029                         }
2030
2031                         /*
2032                          * Calc max size.
2033                          */
2034                         real_size = MAX (real_size, size + field_offsets [i]);
2035                 }
2036
2037                 if (klass->has_references) {
2038                         ref_bitmap = g_new0 (guint8, real_size / sizeof (gpointer));
2039
2040                         /* Check for overlapping reference and non-reference fields */
2041                         for (i = 0; i < top; i++) {
2042                                 MonoType *ftype;
2043
2044                                 field = &klass->fields [i];
2045
2046                                 if (mono_field_is_deleted (field))
2047                                         continue;
2048                                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
2049                                         continue;
2050                                 ftype = mono_type_get_underlying_type (field->type);
2051                                 if (MONO_TYPE_IS_REFERENCE (ftype))
2052                                         ref_bitmap [field_offsets [i] / sizeof (gpointer)] = 1;
2053                         }
2054                         for (i = 0; i < top; i++) {
2055                                 field = &klass->fields [i];
2056
2057                                 if (mono_field_is_deleted (field))
2058                                         continue;
2059                                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
2060                                         continue;
2061
2062                                 // FIXME: Too much code does this
2063 #if 0
2064                                 if (!MONO_TYPE_IS_REFERENCE (field->type) && ref_bitmap [field_offsets [i] / sizeof (gpointer)]) {
2065                                         mono_class_set_type_load_failure (klass, "Could not load type '%s' because it contains an object field at offset %d that is incorrectly aligned or overlapped by a non-object field.", klass->name, field_offsets [i]);
2066                                 }
2067 #endif
2068                         }
2069                         g_free (ref_bitmap);
2070                 }
2071
2072                 instance_size = MAX (real_size, instance_size);
2073                 if (instance_size & (min_align - 1)) {
2074                         instance_size += min_align - 1;
2075                         instance_size &= ~(min_align - 1);
2076                 }
2077                 break;
2078         }
2079         }
2080
2081         if (layout != TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
2082                 /*
2083                  * This leads to all kinds of problems with nested structs, so only
2084                  * enable it when a MONO_DEBUG property is set.
2085                  *
2086                  * For small structs, set min_align to at least the struct size to improve
2087                  * performance, and since the JIT memset/memcpy code assumes this and generates 
2088                  * unaligned accesses otherwise. See #78990 for a testcase.
2089                  */
2090                 if (mono_align_small_structs && top) {
2091                         if (instance_size <= sizeof (MonoObject) + sizeof (gpointer))
2092                                 min_align = MAX (min_align, instance_size - sizeof (MonoObject));
2093                 }
2094         }
2095
2096         if (klass->byval_arg.type == MONO_TYPE_VAR || klass->byval_arg.type == MONO_TYPE_MVAR)
2097                 instance_size = sizeof (MonoObject) + mono_type_stack_size_internal (&klass->byval_arg, NULL, TRUE);
2098         else if (klass->byval_arg.type == MONO_TYPE_PTR)
2099                 instance_size = sizeof (MonoObject) + sizeof (gpointer);
2100
2101         /* Publish the data */
2102         mono_loader_lock ();
2103         if (klass->instance_size && !klass->image->dynamic) {
2104                 /* Might be already set using cached info */
2105                 if (klass->instance_size != instance_size) {
2106                         /* Emit info to help debugging */
2107                         g_print ("%s\n", mono_class_full_name (klass));
2108                         g_print ("%d %d %d %d\n", klass->instance_size, instance_size, klass->blittable, blittable);
2109                         g_print ("%d %d %d %d\n", klass->has_references, has_references, klass->packing_size, packing_size);
2110                         g_print ("%d %d\n", klass->min_align, min_align);
2111                         for (i = 0; i < top; ++i) {
2112                                 field = &klass->fields [i];
2113                                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
2114                                         printf ("  %s %d %d %d\n", klass->fields [i].name, klass->fields [i].offset, field_offsets [i], fields_has_references [i]);
2115                         }
2116                 }
2117                 g_assert (klass->instance_size == instance_size);
2118         } else {
2119                 klass->instance_size = instance_size;
2120         }
2121         klass->blittable = blittable;
2122         klass->has_references = has_references;
2123         klass->packing_size = packing_size;
2124         klass->min_align = min_align;
2125         for (i = 0; i < top; ++i) {
2126                 field = &klass->fields [i];
2127                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
2128                         klass->fields [i].offset = field_offsets [i];
2129         }
2130
2131         mono_memory_barrier ();
2132         klass->size_inited = 1;
2133         mono_loader_unlock ();
2134
2135         /*
2136          * Compute static field layout and size
2137          * Static fields can reference the class itself, so this has to be
2138          * done after instance_size etc. are initialized.
2139          */
2140         class_size = 0;
2141         for (i = 0; i < top; i++) {
2142                 gint32 align;
2143                 guint32 size;
2144
2145                 field = &klass->fields [i];
2146                         
2147                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC) || field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
2148                         continue;
2149                 if (mono_field_is_deleted (field))
2150                         continue;
2151
2152                 if (mono_type_has_exceptions (field->type)) {
2153                         mono_class_set_type_load_failure (klass, "Field '%s' has an invalid type.", field->name);
2154                         break;
2155                 }
2156
2157                 has_static_fields = TRUE;
2158
2159                 size = mono_type_size (field->type, &align);
2160                 field_offsets [i] = class_size;
2161                 /*align is always non-zero here*/
2162                 field_offsets [i] += align - 1;
2163                 field_offsets [i] &= ~(align - 1);
2164                 class_size = field_offsets [i] + size;
2165         }
2166
2167         if (has_static_fields && class_size == 0)
2168                 /* Simplify code which depends on class_size != 0 if the class has static fields */
2169                 class_size = 8;
2170
2171         /* Compute klass->has_static_refs */
2172         has_static_refs = FALSE;
2173         for (i = 0; i < top; i++) {
2174                 MonoType *ftype;
2175
2176                 field = &klass->fields [i];
2177
2178                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC) {
2179                         ftype = mono_type_get_underlying_type (field->type);
2180                         ftype = mono_type_get_basic_type_from_generic (ftype);
2181                         if (type_has_references (klass, ftype))
2182                                 has_static_refs = TRUE;
2183                 }
2184         }
2185
2186         /*valuetypes can't be neither bigger than 1Mb or empty. */
2187         if (klass->valuetype && (klass->instance_size <= 0 || klass->instance_size > (0x100000 + sizeof (MonoObject))))
2188                 mono_class_set_type_load_failure (klass, "Value type instance size (%d) cannot be zero, negative, or bigger than 1Mb", klass->instance_size);
2189
2190         /* Publish the data */
2191         mono_loader_lock ();
2192         if (!klass->rank)
2193                 klass->sizes.class_size = class_size;
2194         klass->has_static_refs = has_static_refs;
2195         for (i = 0; i < top; ++i) {
2196                 field = &klass->fields [i];
2197
2198                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
2199                         field->offset = field_offsets [i];
2200         }
2201
2202         mono_memory_barrier ();
2203         klass->fields_inited = 1;
2204         mono_loader_unlock ();
2205
2206         g_free (field_offsets);
2207         g_free (fields_has_references);
2208 }
2209
2210 static MonoMethod*
2211 create_array_method (MonoClass *klass, const char *name, MonoMethodSignature *sig)
2212 {
2213         MonoMethod *method;
2214
2215         method = (MonoMethod *) mono_image_alloc0 (klass->image, sizeof (MonoMethodPInvoke));
2216         method->klass = klass;
2217         method->flags = METHOD_ATTRIBUTE_PUBLIC;
2218         method->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
2219         method->signature = sig;
2220         method->name = name;
2221         method->slot = -1;
2222         /* .ctor */
2223         if (name [0] == '.') {
2224                 method->flags |= METHOD_ATTRIBUTE_RT_SPECIAL_NAME | METHOD_ATTRIBUTE_SPECIAL_NAME;
2225         } else {
2226                 method->iflags |= METHOD_IMPL_ATTRIBUTE_RUNTIME;
2227         }
2228         return method;
2229 }
2230
2231 /*
2232  * mono_class_setup_methods:
2233  * @class: a class
2234  *
2235  *   Initializes the 'methods' array in CLASS.
2236  * Calling this method should be avoided if possible since it allocates a lot 
2237  * of long-living MonoMethod structures.
2238  * Methods belonging to an interface are assigned a sequential slot starting
2239  * from 0.
2240  *
2241  * On failure this function sets klass->has_failure and stores a MonoErrorBoxed with details
2242  */
2243 void
2244 mono_class_setup_methods (MonoClass *klass)
2245 {
2246         int i, count;
2247         MonoMethod **methods;
2248
2249         if (klass->methods)
2250                 return;
2251
2252         if (mono_class_is_ginst (klass)) {
2253                 MonoError error;
2254                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
2255
2256                 mono_class_init (gklass);
2257                 if (!mono_class_has_failure (gklass))
2258                         mono_class_setup_methods (gklass);
2259                 if (mono_class_set_type_load_failure_causedby_class (klass, gklass, "Generic type definition failed to load"))
2260                         return;
2261
2262                 /* The + 1 makes this always non-NULL to pass the check in mono_class_setup_methods () */
2263                 count = mono_class_get_method_count (gklass);
2264                 methods = (MonoMethod **)mono_class_alloc0 (klass, sizeof (MonoMethod*) * (count + 1));
2265
2266                 for (i = 0; i < count; i++) {
2267                         methods [i] = mono_class_inflate_generic_method_full_checked (
2268                                 gklass->methods [i], klass, mono_class_get_context (klass), &error);
2269                         if (!mono_error_ok (&error)) {
2270                                 char *method = mono_method_full_name (gklass->methods [i], TRUE);
2271                                 mono_class_set_type_load_failure (klass, "Could not inflate method %s due to %s", method, mono_error_get_message (&error));
2272
2273                                 g_free (method);
2274                                 mono_error_cleanup (&error);
2275                                 return;                         
2276                         }
2277                 }
2278         } else if (klass->rank) {
2279                 MonoError error;
2280                 MonoMethod *amethod;
2281                 MonoMethodSignature *sig;
2282                 int count_generic = 0, first_generic = 0;
2283                 int method_num = 0;
2284                 gboolean jagged_ctor = FALSE;
2285
2286                 count = 3 + (klass->rank > 1? 2: 1);
2287
2288                 mono_class_setup_interfaces (klass, &error);
2289                 g_assert (mono_error_ok (&error)); /*FIXME can this fail for array types?*/
2290
2291                 if (klass->rank == 1 && klass->element_class->rank) {
2292                         jagged_ctor = TRUE;
2293                         count ++;
2294                 }
2295
2296                 if (klass->interface_count) {
2297                         count_generic = generic_array_methods (klass);
2298                         first_generic = count;
2299                         count += klass->interface_count * count_generic;
2300                 }
2301
2302                 methods = (MonoMethod **)mono_class_alloc0 (klass, sizeof (MonoMethod*) * count);
2303
2304                 sig = mono_metadata_signature_alloc (klass->image, klass->rank);
2305                 sig->ret = &mono_defaults.void_class->byval_arg;
2306                 sig->pinvoke = TRUE;
2307                 sig->hasthis = TRUE;
2308                 for (i = 0; i < klass->rank; ++i)
2309                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
2310
2311                 amethod = create_array_method (klass, ".ctor", sig);
2312                 methods [method_num++] = amethod;
2313                 if (klass->rank > 1) {
2314                         sig = mono_metadata_signature_alloc (klass->image, klass->rank * 2);
2315                         sig->ret = &mono_defaults.void_class->byval_arg;
2316                         sig->pinvoke = TRUE;
2317                         sig->hasthis = TRUE;
2318                         for (i = 0; i < klass->rank * 2; ++i)
2319                                 sig->params [i] = &mono_defaults.int32_class->byval_arg;
2320
2321                         amethod = create_array_method (klass, ".ctor", sig);
2322                         methods [method_num++] = amethod;
2323                 }
2324
2325                 if (jagged_ctor) {
2326                         /* Jagged arrays have an extra ctor in .net which creates an array of arrays */
2327                         sig = mono_metadata_signature_alloc (klass->image, klass->rank + 1);
2328                         sig->ret = &mono_defaults.void_class->byval_arg;
2329                         sig->pinvoke = TRUE;
2330                         sig->hasthis = TRUE;
2331                         for (i = 0; i < klass->rank + 1; ++i)
2332                                 sig->params [i] = &mono_defaults.int32_class->byval_arg;
2333                         amethod = create_array_method (klass, ".ctor", sig);
2334                         methods [method_num++] = amethod;
2335                 }
2336
2337                 /* element Get (idx11, [idx2, ...]) */
2338                 sig = mono_metadata_signature_alloc (klass->image, klass->rank);
2339                 sig->ret = &klass->element_class->byval_arg;
2340                 sig->pinvoke = TRUE;
2341                 sig->hasthis = TRUE;
2342                 for (i = 0; i < klass->rank; ++i)
2343                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
2344                 amethod = create_array_method (klass, "Get", sig);
2345                 methods [method_num++] = amethod;
2346                 /* element& Address (idx11, [idx2, ...]) */
2347                 sig = mono_metadata_signature_alloc (klass->image, klass->rank);
2348                 sig->ret = &klass->element_class->this_arg;
2349                 sig->pinvoke = TRUE;
2350                 sig->hasthis = TRUE;
2351                 for (i = 0; i < klass->rank; ++i)
2352                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
2353                 amethod = create_array_method (klass, "Address", sig);
2354                 methods [method_num++] = amethod;
2355                 /* void Set (idx11, [idx2, ...], element) */
2356                 sig = mono_metadata_signature_alloc (klass->image, klass->rank + 1);
2357                 sig->ret = &mono_defaults.void_class->byval_arg;
2358                 sig->pinvoke = TRUE;
2359                 sig->hasthis = TRUE;
2360                 for (i = 0; i < klass->rank; ++i)
2361                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
2362                 sig->params [i] = &klass->element_class->byval_arg;
2363                 amethod = create_array_method (klass, "Set", sig);
2364                 methods [method_num++] = amethod;
2365
2366                 for (i = 0; i < klass->interface_count; i++)
2367                         setup_generic_array_ifaces (klass, klass->interfaces [i], methods, first_generic + i * count_generic);
2368         } else if (mono_class_has_static_metadata (klass)) {
2369                 MonoError error;
2370                 int first_idx = mono_class_get_first_method_idx (klass);
2371
2372                 count = mono_class_get_method_count (klass);
2373                 methods = (MonoMethod **)mono_class_alloc (klass, sizeof (MonoMethod*) * count);
2374                 for (i = 0; i < count; ++i) {
2375                         int idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_METHOD, first_idx + i + 1);
2376                         methods [i] = mono_get_method_checked (klass->image, MONO_TOKEN_METHOD_DEF | idx, klass, NULL, &error);
2377                         if (!methods [i]) {
2378                                 mono_class_set_type_load_failure (klass, "Could not load method %d due to %s", i, mono_error_get_message (&error));
2379                                 mono_error_cleanup (&error);
2380                         }
2381                 }
2382         } else {
2383                 methods = (MonoMethod **)mono_class_alloc (klass, sizeof (MonoMethod*) * 1);
2384                 count = 0;
2385         }
2386
2387         if (MONO_CLASS_IS_INTERFACE (klass)) {
2388                 int slot = 0;
2389                 /*Only assign slots to virtual methods as interfaces are allowed to have static methods.*/
2390                 for (i = 0; i < count; ++i) {
2391                         if (methods [i]->flags & METHOD_ATTRIBUTE_VIRTUAL)
2392                                 methods [i]->slot = slot++;
2393                 }
2394         }
2395
2396         mono_image_lock (klass->image);
2397
2398         if (!klass->methods) {
2399                 mono_class_set_method_count (klass, count);
2400
2401                 /* Needed because of the double-checking locking pattern */
2402                 mono_memory_barrier ();
2403
2404                 klass->methods = methods;
2405         }
2406
2407         mono_image_unlock (klass->image);
2408 }
2409
2410 /*
2411  * mono_class_get_method_by_index:
2412  *
2413  *   Returns klass->methods [index], initializing klass->methods if neccesary.
2414  *
2415  * LOCKING: Acquires the loader lock.
2416  */
2417 MonoMethod*
2418 mono_class_get_method_by_index (MonoClass *klass, int index)
2419 {
2420         MonoError error;
2421
2422         MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
2423         /* Avoid calling setup_methods () if possible */
2424         if (gklass && !klass->methods) {
2425                 MonoMethod *m;
2426
2427                 m = mono_class_inflate_generic_method_full_checked (
2428                                 gklass->container_class->methods [index], klass, mono_class_get_context (klass), &error);
2429                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow the error */
2430                 /*
2431                  * If setup_methods () is called later for this class, no duplicates are created,
2432                  * since inflate_generic_method guarantees that only one instance of a method
2433                  * is created for each context.
2434                  */
2435                 /*
2436                 mono_class_setup_methods (klass);
2437                 g_assert (m == klass->methods [index]);
2438                 */
2439                 return m;
2440         } else {
2441                 mono_class_setup_methods (klass);
2442                 if (mono_class_has_failure (klass)) /*FIXME do proper error handling*/
2443                         return NULL;
2444                 g_assert (index >= 0 && index < mono_class_get_method_count (klass));
2445                 return klass->methods [index];
2446         }
2447 }       
2448
2449 /*
2450  * mono_class_get_inflated_method:
2451  *
2452  *   Given an inflated class CLASS and a method METHOD which should be a method of
2453  * CLASS's generic definition, return the inflated method corresponding to METHOD.
2454  */
2455 MonoMethod*
2456 mono_class_get_inflated_method (MonoClass *klass, MonoMethod *method)
2457 {
2458         MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
2459         int i, mcount;
2460
2461         g_assert (method->klass == gklass);
2462
2463         mono_class_setup_methods (gklass);
2464         g_assert (!mono_class_has_failure (gklass)); /*FIXME do proper error handling*/
2465
2466         mcount = mono_class_get_method_count (gklass);
2467         for (i = 0; i < mcount; ++i) {
2468                 if (gklass->methods [i] == method) {
2469                         if (klass->methods) {
2470                                 return klass->methods [i];
2471                         } else {
2472                                 MonoError error;
2473                                 MonoMethod *result = mono_class_inflate_generic_method_full_checked (gklass->methods [i], klass, mono_class_get_context (klass), &error);
2474                                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow this error */
2475                                 return result;
2476                         }
2477                 }
2478         }
2479
2480         return NULL;
2481 }       
2482
2483 /*
2484  * mono_class_get_vtable_entry:
2485  *
2486  *   Returns klass->vtable [offset], computing it if neccesary. Returns NULL on failure.
2487  * LOCKING: Acquires the loader lock.
2488  */
2489 MonoMethod*
2490 mono_class_get_vtable_entry (MonoClass *klass, int offset)
2491 {
2492         MonoMethod *m;
2493
2494         if (klass->rank == 1) {
2495                 /* 
2496                  * szarrays do not overwrite any methods of Array, so we can avoid
2497                  * initializing their vtables in some cases.
2498                  */
2499                 mono_class_setup_vtable (klass->parent);
2500                 if (offset < klass->parent->vtable_size)
2501                         return klass->parent->vtable [offset];
2502         }
2503
2504         if (mono_class_is_ginst (klass)) {
2505                 MonoError error;
2506                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
2507                 mono_class_setup_vtable (gklass);
2508                 m = gklass->vtable [offset];
2509
2510                 m = mono_class_inflate_generic_method_full_checked (m, klass, mono_class_get_context (klass), &error);
2511                 g_assert (mono_error_ok (&error)); /* FIXME don't swallow this error */
2512         } else {
2513                 mono_class_setup_vtable (klass);
2514                 if (mono_class_has_failure (klass))
2515                         return NULL;
2516                 m = klass->vtable [offset];
2517         }
2518
2519         return m;
2520 }
2521
2522 /*
2523  * mono_class_get_vtable_size:
2524  *
2525  *   Return the vtable size for KLASS.
2526  */
2527 int
2528 mono_class_get_vtable_size (MonoClass *klass)
2529 {
2530         mono_class_setup_vtable (klass);
2531
2532         return klass->vtable_size;
2533 }
2534
2535 /*
2536  * mono_class_setup_properties:
2537  *
2538  *   Initialize klass->ext.property and klass->ext.properties.
2539  *
2540  * This method can fail the class.
2541  */
2542 static void
2543 mono_class_setup_properties (MonoClass *klass)
2544 {
2545         guint startm, endm, i, j;
2546         guint32 cols [MONO_PROPERTY_SIZE];
2547         MonoTableInfo *msemt = &klass->image->tables [MONO_TABLE_METHODSEMANTICS];
2548         MonoProperty *properties;
2549         guint32 last;
2550         int first, count;
2551
2552         MonoClassExt *ext = mono_class_get_ext (klass);
2553         if (ext && ext->properties)
2554                 return;
2555
2556         if (mono_class_is_ginst (klass)) {
2557                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
2558
2559                 mono_class_init (gklass);
2560                 mono_class_setup_properties (gklass);
2561                 if (mono_class_set_type_load_failure_causedby_class (klass, gklass, "Generic type definition failed to load"))
2562                         return;
2563
2564                 MonoClassExt *gext = mono_class_get_ext (gklass);
2565                 properties = mono_class_new0 (klass, MonoProperty, gext->property.count + 1);
2566
2567                 for (i = 0; i < gext->property.count; i++) {
2568                         MonoError error;
2569                         MonoProperty *prop = &properties [i];
2570
2571                         *prop = gext->properties [i];
2572
2573                         if (prop->get)
2574                                 prop->get = mono_class_inflate_generic_method_full_checked (
2575                                         prop->get, klass, mono_class_get_context (klass), &error);
2576                         if (prop->set)
2577                                 prop->set = mono_class_inflate_generic_method_full_checked (
2578                                         prop->set, klass, mono_class_get_context (klass), &error);
2579
2580                         g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
2581                         prop->parent = klass;
2582                 }
2583
2584                 first = gext->property.first;
2585                 count = gext->property.count;
2586         } else {
2587                 first = mono_metadata_properties_from_typedef (klass->image, mono_metadata_token_index (klass->type_token) - 1, &last);
2588                 count = last - first;
2589
2590                 if (count) {
2591                         mono_class_setup_methods (klass);
2592                         if (mono_class_has_failure (klass))
2593                                 return;
2594                 }
2595
2596                 properties = (MonoProperty *)mono_class_alloc0 (klass, sizeof (MonoProperty) * count);
2597                 for (i = first; i < last; ++i) {
2598                         mono_metadata_decode_table_row (klass->image, MONO_TABLE_PROPERTY, i, cols, MONO_PROPERTY_SIZE);
2599                         properties [i - first].parent = klass;
2600                         properties [i - first].attrs = cols [MONO_PROPERTY_FLAGS];
2601                         properties [i - first].name = mono_metadata_string_heap (klass->image, cols [MONO_PROPERTY_NAME]);
2602
2603                         startm = mono_metadata_methods_from_property (klass->image, i, &endm);
2604                         int first_idx = mono_class_get_first_method_idx (klass);
2605                         for (j = startm; j < endm; ++j) {
2606                                 MonoMethod *method;
2607
2608                                 mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
2609
2610                                 if (klass->image->uncompressed_metadata) {
2611                                         MonoError error;
2612                                         /* It seems like the MONO_METHOD_SEMA_METHOD column needs no remapping */
2613                                         method = mono_get_method_checked (klass->image, MONO_TOKEN_METHOD_DEF | cols [MONO_METHOD_SEMA_METHOD], klass, NULL, &error);
2614                                         mono_error_cleanup (&error); /* FIXME don't swallow this error */
2615                                 } else {
2616                                         method = klass->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - first_idx];
2617                                 }
2618
2619                                 switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
2620                                 case METHOD_SEMANTIC_SETTER:
2621                                         properties [i - first].set = method;
2622                                         break;
2623                                 case METHOD_SEMANTIC_GETTER:
2624                                         properties [i - first].get = method;
2625                                         break;
2626                                 default:
2627                                         break;
2628                                 }
2629                         }
2630                 }
2631         }
2632
2633         mono_class_alloc_ext (klass);
2634         ext = mono_class_get_ext (klass);
2635
2636         mono_image_lock (klass->image);
2637
2638         if (ext->properties) {
2639                 /* We leak 'properties' which was allocated from the image mempool */
2640                 mono_image_unlock (klass->image);
2641                 return;
2642         }
2643
2644         ext->property.first = first;
2645         ext->property.count = count;
2646
2647         /* Flush any pending writes as we do double checked locking on klass->ext->properties */
2648         mono_memory_barrier ();
2649
2650         /* Leave this assignment as the last op in the function */
2651         ext->properties = properties;
2652
2653         mono_image_unlock (klass->image);
2654 }
2655
2656 static MonoMethod**
2657 inflate_method_listz (MonoMethod **methods, MonoClass *klass, MonoGenericContext *context)
2658 {
2659         MonoMethod **om, **retval;
2660         int count;
2661
2662         for (om = methods, count = 0; *om; ++om, ++count)
2663                 ;
2664
2665         retval = g_new0 (MonoMethod*, count + 1);
2666         count = 0;
2667         for (om = methods, count = 0; *om; ++om, ++count) {
2668                 MonoError error;
2669                 retval [count] = mono_class_inflate_generic_method_full_checked (*om, klass, context, &error);
2670                 g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
2671         }
2672
2673         return retval;
2674 }
2675
2676 /*This method can fail the class.*/
2677 static void
2678 mono_class_setup_events (MonoClass *klass)
2679 {
2680         int first, count;
2681         guint startm, endm, i, j;
2682         guint32 cols [MONO_EVENT_SIZE];
2683         MonoTableInfo *msemt = &klass->image->tables [MONO_TABLE_METHODSEMANTICS];
2684         guint32 last;
2685         MonoEvent *events;
2686
2687         MonoClassExt *ext = mono_class_get_ext (klass);
2688         if (ext && ext->events)
2689                 return;
2690
2691         if (mono_class_is_ginst (klass)) {
2692                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
2693                 MonoGenericContext *context = NULL;
2694
2695                 mono_class_setup_events (gklass);
2696                 if (mono_class_set_type_load_failure_causedby_class (klass, gklass, "Generic type definition failed to load"))
2697                         return;
2698
2699                 MonoClassExt *gext = mono_class_get_ext (gklass);
2700                 first = gext->event.first;
2701                 count = gext->event.count;
2702
2703                 events = mono_class_new0 (klass, MonoEvent, count);
2704
2705                 if (count)
2706                         context = mono_class_get_context (klass);
2707
2708                 for (i = 0; i < count; i++) {
2709                         MonoError error;
2710                         MonoEvent *event = &events [i];
2711                         MonoEvent *gevent = &gext->events [i];
2712
2713                         mono_error_init (&error); //since we do conditional calls, we must ensure the default value is ok
2714
2715                         event->parent = klass;
2716                         event->name = gevent->name;
2717                         event->add = gevent->add ? mono_class_inflate_generic_method_full_checked (gevent->add, klass, context, &error) : NULL;
2718                         g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
2719                         event->remove = gevent->remove ? mono_class_inflate_generic_method_full_checked (gevent->remove, klass, context, &error) : NULL;
2720                         g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
2721                         event->raise = gevent->raise ? mono_class_inflate_generic_method_full_checked (gevent->raise, klass, context, &error) : NULL;
2722                         g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
2723
2724 #ifndef MONO_SMALL_CONFIG
2725                         event->other = gevent->other ? inflate_method_listz (gevent->other, klass, context) : NULL;
2726 #endif
2727                         event->attrs = gevent->attrs;
2728                 }
2729         } else {
2730                 first = mono_metadata_events_from_typedef (klass->image, mono_metadata_token_index (klass->type_token) - 1, &last);
2731                 count = last - first;
2732
2733                 if (count) {
2734                         mono_class_setup_methods (klass);
2735                         if (mono_class_has_failure (klass)) {
2736                                 return;
2737                         }
2738                 }
2739
2740                 events = (MonoEvent *)mono_class_alloc0 (klass, sizeof (MonoEvent) * count);
2741                 for (i = first; i < last; ++i) {
2742                         MonoEvent *event = &events [i - first];
2743
2744                         mono_metadata_decode_table_row (klass->image, MONO_TABLE_EVENT, i, cols, MONO_EVENT_SIZE);
2745                         event->parent = klass;
2746                         event->attrs = cols [MONO_EVENT_FLAGS];
2747                         event->name = mono_metadata_string_heap (klass->image, cols [MONO_EVENT_NAME]);
2748
2749                         startm = mono_metadata_methods_from_event (klass->image, i, &endm);
2750                         int first_idx = mono_class_get_first_method_idx (klass);
2751                         for (j = startm; j < endm; ++j) {
2752                                 MonoMethod *method;
2753
2754                                 mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
2755
2756                                 if (klass->image->uncompressed_metadata) {
2757                                         MonoError error;
2758                                         /* It seems like the MONO_METHOD_SEMA_METHOD column needs no remapping */
2759                                         method = mono_get_method_checked (klass->image, MONO_TOKEN_METHOD_DEF | cols [MONO_METHOD_SEMA_METHOD], klass, NULL, &error);
2760                                         mono_error_cleanup (&error); /* FIXME don't swallow this error */
2761                                 } else {
2762                                         method = klass->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - first_idx];
2763                                 }
2764
2765                                 switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
2766                                 case METHOD_SEMANTIC_ADD_ON:
2767                                         event->add = method;
2768                                         break;
2769                                 case METHOD_SEMANTIC_REMOVE_ON:
2770                                         event->remove = method;
2771                                         break;
2772                                 case METHOD_SEMANTIC_FIRE:
2773                                         event->raise = method;
2774                                         break;
2775                                 case METHOD_SEMANTIC_OTHER: {
2776 #ifndef MONO_SMALL_CONFIG
2777                                         int n = 0;
2778
2779                                         if (event->other == NULL) {
2780                                                 event->other = g_new0 (MonoMethod*, 2);
2781                                         } else {
2782                                                 while (event->other [n])
2783                                                         n++;
2784                                                 event->other = (MonoMethod **)g_realloc (event->other, (n + 2) * sizeof (MonoMethod*));
2785                                         }
2786                                         event->other [n] = method;
2787                                         /* NULL terminated */
2788                                         event->other [n + 1] = NULL;
2789 #endif
2790                                         break;
2791                                 }
2792                                 default:
2793                                         break;
2794                                 }
2795                         }
2796                 }
2797         }
2798
2799         mono_class_alloc_ext (klass);
2800         ext = mono_class_get_ext (klass);
2801
2802         mono_image_lock (klass->image);
2803
2804         if (ext->events) {
2805                 mono_image_unlock (klass->image);
2806                 return;
2807         }
2808
2809         ext->event.first = first;
2810         ext->event.count = count;
2811
2812         /* Flush any pending writes as we do double checked locking on klass->ext.events */
2813         mono_memory_barrier ();
2814
2815         /* Leave this assignment as the last op in the function */
2816         ext->events = events;
2817
2818         mono_image_unlock (klass->image);
2819 }
2820
2821 /*
2822  * Global pool of interface IDs, represented as a bitset.
2823  * LOCKING: Protected by the classes lock.
2824  */
2825 static MonoBitSet *global_interface_bitset = NULL;
2826
2827 /*
2828  * mono_unload_interface_ids:
2829  * @bitset: bit set of interface IDs
2830  *
2831  * When an image is unloaded, the interface IDs associated with
2832  * the image are put back in the global pool of IDs so the numbers
2833  * can be reused.
2834  */
2835 void
2836 mono_unload_interface_ids (MonoBitSet *bitset)
2837 {
2838         classes_lock ();
2839         mono_bitset_sub (global_interface_bitset, bitset);
2840         classes_unlock ();
2841 }
2842
2843 void
2844 mono_unload_interface_id (MonoClass *klass)
2845 {
2846         if (global_interface_bitset && klass->interface_id) {
2847                 classes_lock ();
2848                 mono_bitset_clear (global_interface_bitset, klass->interface_id);
2849                 classes_unlock ();
2850         }
2851 }
2852
2853 /**
2854  * mono_get_unique_iid:
2855  * @class: interface
2856  *
2857  * Assign a unique integer ID to the interface represented by @class.
2858  * The ID will positive and as small as possible.
2859  * LOCKING: Acquires the classes lock.
2860  * Returns: The new ID.
2861  */
2862 static guint32
2863 mono_get_unique_iid (MonoClass *klass)
2864 {
2865         int iid;
2866         
2867         g_assert (MONO_CLASS_IS_INTERFACE (klass));
2868
2869         classes_lock ();
2870
2871         if (!global_interface_bitset) {
2872                 global_interface_bitset = mono_bitset_new (128, 0);
2873         }
2874
2875         iid = mono_bitset_find_first_unset (global_interface_bitset, -1);
2876         if (iid < 0) {
2877                 int old_size = mono_bitset_size (global_interface_bitset);
2878                 MonoBitSet *new_set = mono_bitset_clone (global_interface_bitset, old_size * 2);
2879                 mono_bitset_free (global_interface_bitset);
2880                 global_interface_bitset = new_set;
2881                 iid = old_size;
2882         }
2883         mono_bitset_set (global_interface_bitset, iid);
2884         /* set the bit also in the per-image set */
2885         if (!mono_class_is_ginst (klass)) {
2886                 if (klass->image->interface_bitset) {
2887                         if (iid >= mono_bitset_size (klass->image->interface_bitset)) {
2888                                 MonoBitSet *new_set = mono_bitset_clone (klass->image->interface_bitset, iid + 1);
2889                                 mono_bitset_free (klass->image->interface_bitset);
2890                                 klass->image->interface_bitset = new_set;
2891                         }
2892                 } else {
2893                         klass->image->interface_bitset = mono_bitset_new (iid + 1, 0);
2894                 }
2895                 mono_bitset_set (klass->image->interface_bitset, iid);
2896         }
2897
2898         classes_unlock ();
2899
2900 #ifndef MONO_SMALL_CONFIG
2901         if (mono_print_vtable) {
2902                 int generic_id;
2903                 char *type_name = mono_type_full_name (&klass->byval_arg);
2904                 MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
2905                 if (gklass && !gklass->context.class_inst->is_open) {
2906                         generic_id = gklass->context.class_inst->id;
2907                         g_assert (generic_id != 0);
2908                 } else {
2909                         generic_id = 0;
2910                 }
2911                 printf ("Interface: assigned id %d to %s|%s|%d\n", iid, klass->image->name, type_name, generic_id);
2912                 g_free (type_name);
2913         }
2914 #endif
2915
2916         /* I've confirmed iids safe past 16 bits, however bitset code uses a signed int while testing.
2917          * Once this changes, it should be safe for us to allow 2^32-1 interfaces, until then 2^31-2 is the max. */
2918         g_assert (iid < INT_MAX);
2919         return iid;
2920 }
2921
2922 static void
2923 collect_implemented_interfaces_aux (MonoClass *klass, GPtrArray **res, GHashTable **ifaces, MonoError *error)
2924 {
2925         int i;
2926         MonoClass *ic;
2927
2928         mono_class_setup_interfaces (klass, error);
2929         return_if_nok (error);
2930
2931         for (i = 0; i < klass->interface_count; i++) {
2932                 ic = klass->interfaces [i];
2933
2934                 if (*res == NULL)
2935                         *res = g_ptr_array_new ();
2936                 if (*ifaces == NULL)
2937                         *ifaces = g_hash_table_new (NULL, NULL);
2938                 if (g_hash_table_lookup (*ifaces, ic))
2939                         continue;
2940                 g_ptr_array_add (*res, ic);
2941                 g_hash_table_insert (*ifaces, ic, ic);
2942                 mono_class_init (ic);
2943                 if (mono_class_has_failure (ic)) {
2944                         mono_error_set_type_load_class (error, ic, "Error Loading class");
2945                         return;
2946                 }
2947
2948                 collect_implemented_interfaces_aux (ic, res, ifaces, error);
2949                 return_if_nok (error);
2950         }
2951 }
2952
2953 GPtrArray*
2954 mono_class_get_implemented_interfaces (MonoClass *klass, MonoError *error)
2955 {
2956         GPtrArray *res = NULL;
2957         GHashTable *ifaces = NULL;
2958
2959         collect_implemented_interfaces_aux (klass, &res, &ifaces, error);
2960         if (ifaces)
2961                 g_hash_table_destroy (ifaces);
2962         if (!mono_error_ok (error)) {
2963                 if (res)
2964                         g_ptr_array_free (res, TRUE);
2965                 return NULL;
2966         }
2967         return res;
2968 }
2969
2970 static int
2971 compare_interface_ids (const void *p_key, const void *p_element)
2972 {
2973         const MonoClass *key = (const MonoClass *)p_key;
2974         const MonoClass *element = *(const MonoClass **)p_element;
2975         
2976         return (key->interface_id - element->interface_id);
2977 }
2978
2979 /*FIXME verify all callers if they should switch to mono_class_interface_offset_with_variance*/
2980 int
2981 mono_class_interface_offset (MonoClass *klass, MonoClass *itf)
2982 {
2983         MonoClass **result = (MonoClass **)mono_binary_search (
2984                         itf,
2985                         klass->interfaces_packed,
2986                         klass->interface_offsets_count,
2987                         sizeof (MonoClass *),
2988                         compare_interface_ids);
2989         if (result) {
2990                 return klass->interface_offsets_packed [result - (klass->interfaces_packed)];
2991         } else {
2992                 return -1;
2993         }
2994 }
2995
2996 /**
2997  * mono_class_interface_offset_with_variance:
2998  * 
2999  * Return the interface offset of @itf in @klass. Sets @non_exact_match to TRUE if the match required variance check
3000  * If @itf is an interface with generic variant arguments, try to find the compatible one.
3001  *
3002  * Note that this function is responsible for resolving ambiguities. Right now we use whatever ordering interfaces_packed gives us.
3003  *
3004  * FIXME figure out MS disambiguation rules and fix this function.
3005  */
3006 int
3007 mono_class_interface_offset_with_variance (MonoClass *klass, MonoClass *itf, gboolean *non_exact_match)
3008 {
3009         int i = mono_class_interface_offset (klass, itf);
3010         *non_exact_match = FALSE;
3011         if (i >= 0)
3012                 return i;
3013         
3014         if (!mono_class_has_variant_generic_params (itf))
3015                 return -1;
3016
3017         for (i = 0; i < klass->interface_offsets_count; i++) {
3018                 if (mono_class_is_variant_compatible (itf, klass->interfaces_packed [i], FALSE)) {
3019                         *non_exact_match = TRUE;
3020                         return klass->interface_offsets_packed [i];
3021                 }
3022         }
3023
3024         return -1;
3025 }
3026
3027 static void
3028 print_implemented_interfaces (MonoClass *klass)
3029 {
3030         char *name;
3031         MonoError error;
3032         GPtrArray *ifaces = NULL;
3033         int i;
3034         int ancestor_level = 0;
3035
3036         name = mono_type_get_full_name (klass);
3037         printf ("Packed interface table for class %s has size %d\n", name, klass->interface_offsets_count);
3038         g_free (name);
3039
3040         for (i = 0; i < klass->interface_offsets_count; i++)
3041                 printf ("  [%03d][UUID %03d][SLOT %03d][SIZE  %03d] interface %s.%s\n", i,
3042                                 klass->interfaces_packed [i]->interface_id,
3043                                 klass->interface_offsets_packed [i],
3044                                 mono_class_get_method_count (klass->interfaces_packed [i]),
3045                                 klass->interfaces_packed [i]->name_space,
3046                                 klass->interfaces_packed [i]->name );
3047         printf ("Interface flags: ");
3048         for (i = 0; i <= klass->max_interface_id; i++)
3049                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, i))
3050                         printf ("(%d,T)", i);
3051                 else
3052                         printf ("(%d,F)", i);
3053         printf ("\n");
3054         printf ("Dump interface flags:");
3055 #ifdef COMPRESSED_INTERFACE_BITMAP
3056         {
3057                 const uint8_t* p = klass->interface_bitmap;
3058                 i = klass->max_interface_id;
3059                 while (i > 0) {
3060                         printf (" %d x 00 %02X", p [0], p [1]);
3061                         i -= p [0] * 8;
3062                         i -= 8;
3063                 }
3064         }
3065 #else
3066         for (i = 0; i < ((((klass->max_interface_id + 1) >> 3)) + (((klass->max_interface_id + 1) & 7)? 1 :0)); i++)
3067                 printf (" %02X", klass->interface_bitmap [i]);
3068 #endif
3069         printf ("\n");
3070         while (klass != NULL) {
3071                 printf ("[LEVEL %d] Implemented interfaces by class %s:\n", ancestor_level, klass->name);
3072                 ifaces = mono_class_get_implemented_interfaces (klass, &error);
3073                 if (!mono_error_ok (&error)) {
3074                         printf ("  Type failed due to %s\n", mono_error_get_message (&error));
3075                         mono_error_cleanup (&error);
3076                 } else if (ifaces) {
3077                         for (i = 0; i < ifaces->len; i++) {
3078                                 MonoClass *ic = (MonoClass *)g_ptr_array_index (ifaces, i);
3079                                 printf ("  [UIID %d] interface %s\n", ic->interface_id, ic->name);
3080                                 printf ("  [%03d][UUID %03d][SLOT %03d][SIZE  %03d] interface %s.%s\n", i,
3081                                                 ic->interface_id,
3082                                                 mono_class_interface_offset (klass, ic),
3083                                                 mono_class_get_method_count (ic),
3084                                                 ic->name_space,
3085                                                 ic->name );
3086                         }
3087                         g_ptr_array_free (ifaces, TRUE);
3088                 }
3089                 ancestor_level ++;
3090                 klass = klass->parent;
3091         }
3092 }
3093
3094 static MonoClass*
3095 inflate_class_one_arg (MonoClass *gtype, MonoClass *arg0)
3096 {
3097         MonoType *args [1];
3098         args [0] = &arg0->byval_arg;
3099
3100         return mono_class_bind_generic_parameters (gtype, 1, args, FALSE);
3101 }
3102
3103 static MonoClass*
3104 array_class_get_if_rank (MonoClass *klass, guint rank)
3105 {
3106         return rank ? mono_array_class_get (klass, rank) : klass;
3107 }
3108
3109 static void
3110 fill_valuetype_array_derived_types (MonoClass **valuetype_types, MonoClass *eclass, int rank)
3111 {
3112         valuetype_types [0] = eclass;
3113         if (eclass == mono_defaults.int16_class)
3114                 valuetype_types [1] = mono_defaults.uint16_class;
3115         else if (eclass == mono_defaults.uint16_class)
3116                 valuetype_types [1] = mono_defaults.int16_class;
3117         else if (eclass == mono_defaults.int32_class)
3118                 valuetype_types [1] = mono_defaults.uint32_class;
3119         else if (eclass == mono_defaults.uint32_class)
3120                 valuetype_types [1] = mono_defaults.int32_class;
3121         else if (eclass == mono_defaults.int64_class)
3122                 valuetype_types [1] = mono_defaults.uint64_class;
3123         else if (eclass == mono_defaults.uint64_class)
3124                 valuetype_types [1] = mono_defaults.int64_class;
3125         else if (eclass == mono_defaults.byte_class)
3126                 valuetype_types [1] = mono_defaults.sbyte_class;
3127         else if (eclass == mono_defaults.sbyte_class)
3128                 valuetype_types [1] = mono_defaults.byte_class;
3129         else if (eclass->enumtype && mono_class_enum_basetype (eclass))
3130                 valuetype_types [1] = mono_class_from_mono_type (mono_class_enum_basetype (eclass));
3131 }
3132
3133 static GENERATE_GET_CLASS_WITH_CACHE (generic_icollection, System.Collections.Generic, ICollection`1)
3134 static GENERATE_GET_CLASS_WITH_CACHE (generic_ienumerable, System.Collections.Generic, IEnumerable`1)
3135 static GENERATE_GET_CLASS_WITH_CACHE (generic_ienumerator, System.Collections.Generic, IEnumerator`1)
3136 static GENERATE_GET_CLASS_WITH_CACHE (generic_ireadonlylist, System.Collections.Generic, IReadOnlyList`1)
3137 static GENERATE_GET_CLASS_WITH_CACHE (generic_ireadonlycollection, System.Collections.Generic, IReadOnlyCollection`1)
3138
3139 /* this won't be needed once bug #325495 is completely fixed
3140  * though we'll need something similar to know which interfaces to allow
3141  * in arrays when they'll be lazyly created
3142  * 
3143  * FIXME: System.Array/InternalEnumerator don't need all this interface fabrication machinery.
3144  * MS returns diferrent types based on which instance is called. For example:
3145  *      object obj = new byte[10][];
3146  *      Type a = ((IEnumerable<byte[]>)obj).GetEnumerator ().GetType ();
3147  *      Type b = ((IEnumerable<IList<byte>>)obj).GetEnumerator ().GetType ();
3148  *      a != b ==> true
3149  * 
3150  * Fixing this should kill quite some code, save some bits and improve compatibility.
3151  */
3152 static MonoClass**
3153 get_implicit_generic_array_interfaces (MonoClass *klass, int *num, int *is_enumerator)
3154 {
3155         MonoClass *eclass = klass->element_class;
3156         MonoClass* generic_icollection_class;
3157         MonoClass* generic_ienumerable_class;
3158         MonoClass* generic_ienumerator_class;
3159         MonoClass* generic_ireadonlylist_class;
3160         MonoClass* generic_ireadonlycollection_class;
3161         MonoClass *valuetype_types[2] = { NULL, NULL };
3162         MonoClass **interfaces = NULL;
3163         int i, nifaces, interface_count, real_count, original_rank;
3164         int all_interfaces;
3165         gboolean internal_enumerator;
3166         gboolean eclass_is_valuetype;
3167
3168         if (!mono_defaults.generic_ilist_class) {
3169                 *num = 0;
3170                 return NULL;
3171         }
3172         internal_enumerator = FALSE;
3173         eclass_is_valuetype = FALSE;
3174         original_rank = eclass->rank;
3175         if (klass->byval_arg.type != MONO_TYPE_SZARRAY) {
3176                 MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
3177                 if (gklass && klass->nested_in == mono_defaults.array_class && strcmp (klass->name, "InternalEnumerator`1") == 0)        {
3178                         /*
3179                          * For a Enumerator<T[]> we need to get the list of interfaces for T.
3180                          */
3181                         eclass = mono_class_from_mono_type (gklass->context.class_inst->type_argv [0]);
3182                         original_rank = eclass->rank;
3183                         if (!eclass->rank)
3184                                 eclass = eclass->element_class;
3185                         internal_enumerator = TRUE;
3186                         *is_enumerator = TRUE;
3187                 } else {
3188                         *num = 0;
3189                         return NULL;
3190                 }
3191         }
3192
3193         /* 
3194          * with this non-lazy impl we can't implement all the interfaces so we do just the minimal stuff
3195          * for deep levels of arrays of arrays (string[][] has all the interfaces, string[][][] doesn't)
3196          */
3197         all_interfaces = eclass->rank && eclass->element_class->rank? FALSE: TRUE;
3198
3199         generic_icollection_class = mono_class_get_generic_icollection_class ();
3200         generic_ienumerable_class = mono_class_get_generic_ienumerable_class ();
3201         generic_ienumerator_class = mono_class_get_generic_ienumerator_class ();
3202         generic_ireadonlylist_class = mono_class_get_generic_ireadonlylist_class ();
3203         generic_ireadonlycollection_class = mono_class_get_generic_ireadonlycollection_class ();
3204
3205         mono_class_init (eclass);
3206
3207         /*
3208          * Arrays in 2.0 need to implement a number of generic interfaces
3209          * (IList`1, ICollection`1, IEnumerable`1 for a number of types depending
3210          * on the element class). For net 4.5, we also need to implement IReadOnlyList`1/IReadOnlyCollection`1.
3211          * We collect the types needed to build the
3212          * instantiations in interfaces at intervals of 3/5, because 3/5 are
3213          * the generic interfaces needed to implement.
3214          *
3215          * On 4.5, as an optimization, we don't expand ref classes for the variant generic interfaces
3216          * (IEnumerator, IReadOnlyList and IReadOnlyColleciton). The regular dispatch code can handle those cases.
3217          */
3218         if (eclass->valuetype) {
3219                 nifaces = generic_ireadonlylist_class ? 5 : 3;
3220                 fill_valuetype_array_derived_types (valuetype_types, eclass, original_rank);
3221
3222                 /* IList, ICollection, IEnumerable, IReadOnlyList`1 */
3223                 real_count = interface_count = valuetype_types [1] ? (nifaces * 2) : nifaces;
3224                 if (internal_enumerator) {
3225                         ++real_count;
3226                         if (valuetype_types [1])
3227                                 ++real_count;
3228                 }
3229
3230                 interfaces = (MonoClass **)g_malloc0 (sizeof (MonoClass*) * real_count);
3231                 interfaces [0] = valuetype_types [0];
3232                 if (valuetype_types [1])
3233                         interfaces [nifaces] = valuetype_types [1];
3234
3235                 eclass_is_valuetype = TRUE;
3236         } else {
3237                 int j;
3238                 int idepth = eclass->idepth;
3239                 if (!internal_enumerator)
3240                         idepth--;
3241                 nifaces = generic_ireadonlylist_class ? 2 : 3;
3242
3243                 // FIXME: This doesn't seem to work/required for generic params
3244                 if (!(eclass->this_arg.type == MONO_TYPE_VAR || eclass->this_arg.type == MONO_TYPE_MVAR || (image_is_dynamic (eclass->image) && !eclass->wastypebuilder)))
3245                         mono_class_setup_interface_offsets (eclass);
3246
3247                 interface_count = all_interfaces? eclass->interface_offsets_count: eclass->interface_count;
3248                 /* we add object for interfaces and the supertypes for the other
3249                  * types. The last of the supertypes is the element class itself which we
3250                  * already created the explicit interfaces for (so we include it for IEnumerator
3251                  * and exclude it for arrays).
3252                  */
3253                 if (MONO_CLASS_IS_INTERFACE (eclass))
3254                         interface_count++;
3255                 else
3256                         interface_count += idepth;
3257                 if (eclass->rank && eclass->element_class->valuetype) {
3258                         fill_valuetype_array_derived_types (valuetype_types, eclass->element_class, original_rank);
3259                         if (valuetype_types [1])
3260                                 ++interface_count;
3261                 }
3262                 /* IList, ICollection, IEnumerable, IReadOnlyList */
3263                 interface_count *= nifaces;
3264                 real_count = interface_count;
3265                 if (internal_enumerator) {
3266                         real_count += (MONO_CLASS_IS_INTERFACE (eclass) ? 1 : idepth) + eclass->interface_offsets_count;
3267                         if (valuetype_types [1])
3268                                 ++real_count;
3269                 }
3270                 interfaces = (MonoClass **)g_malloc0 (sizeof (MonoClass*) * real_count);
3271                 if (MONO_CLASS_IS_INTERFACE (eclass)) {
3272                         interfaces [0] = mono_defaults.object_class;
3273                         j = nifaces;
3274                 } else {
3275                         j = 0;
3276                         for (i = 0; i < idepth; i++) {
3277                                 mono_class_init (eclass->supertypes [i]);
3278                                 interfaces [j] = eclass->supertypes [i];
3279                                 j += nifaces;
3280                         }
3281                 }
3282                 if (all_interfaces) {
3283                         for (i = 0; i < eclass->interface_offsets_count; i++) {
3284                                 interfaces [j] = eclass->interfaces_packed [i];
3285                                 j += nifaces;
3286                         }
3287                 } else {
3288                         for (i = 0; i < eclass->interface_count; i++) {
3289                                 interfaces [j] = eclass->interfaces [i];
3290                                 j += nifaces;
3291                         }
3292                 }
3293                 if (valuetype_types [1]) {
3294                         interfaces [j] = array_class_get_if_rank (valuetype_types [1], original_rank);
3295                         j += nifaces;
3296                 }
3297         }
3298
3299         /* instantiate the generic interfaces */
3300         for (i = 0; i < interface_count; i += nifaces) {
3301                 MonoClass *iface = interfaces [i];
3302
3303                 interfaces [i + 0] = inflate_class_one_arg (mono_defaults.generic_ilist_class, iface);
3304                 interfaces [i + 1] = inflate_class_one_arg (generic_icollection_class, iface);
3305
3306                 if (eclass->valuetype) {
3307                         interfaces [i + 2] = inflate_class_one_arg (generic_ienumerable_class, iface);
3308                         if (generic_ireadonlylist_class) {
3309                                 interfaces [i + 3] = inflate_class_one_arg (generic_ireadonlylist_class, iface);
3310                                 interfaces [i + 4] = inflate_class_one_arg (generic_ireadonlycollection_class, iface);
3311                         }
3312                 } else {
3313                         if (!generic_ireadonlylist_class)
3314                                 interfaces [i + 2] = inflate_class_one_arg (generic_ienumerable_class, iface);
3315                 }
3316         }
3317         if (internal_enumerator) {
3318                 int j;
3319                 /* instantiate IEnumerator<iface> */
3320                 for (i = 0; i < interface_count; i++) {
3321                         interfaces [i] = inflate_class_one_arg (generic_ienumerator_class, interfaces [i]);
3322                 }
3323                 j = interface_count;
3324                 if (!eclass_is_valuetype) {
3325                         if (MONO_CLASS_IS_INTERFACE (eclass)) {
3326                                 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, mono_defaults.object_class);
3327                                 j ++;
3328                         } else {
3329                                 for (i = 0; i < eclass->idepth; i++) {
3330                                         interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, eclass->supertypes [i]);
3331                                         j ++;
3332                                 }
3333                         }
3334                         for (i = 0; i < eclass->interface_offsets_count; i++) {
3335                                 interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, eclass->interfaces_packed [i]);
3336                                 j ++;
3337                         }
3338                 } else {
3339                         interfaces [j++] = inflate_class_one_arg (generic_ienumerator_class, array_class_get_if_rank (valuetype_types [0], original_rank));
3340                 }
3341                 if (valuetype_types [1])
3342                         interfaces [j] = inflate_class_one_arg (generic_ienumerator_class, array_class_get_if_rank (valuetype_types [1], original_rank));
3343         }
3344 #if 0
3345         {
3346         char *type_name = mono_type_get_name_full (&klass->byval_arg, 0);
3347         for (i = 0; i  < real_count; ++i) {
3348                 char *name = mono_type_get_name_full (&interfaces [i]->byval_arg, 0);
3349                 g_print ("%s implements %s\n", type_name, name);
3350                 g_free (name);
3351         }
3352         g_free (type_name);
3353         }
3354 #endif
3355         *num = real_count;
3356         return interfaces;
3357 }
3358
3359 static int
3360 find_array_interface (MonoClass *klass, const char *name)
3361 {
3362         int i;
3363         for (i = 0; i < klass->interface_count; ++i) {
3364                 if (strcmp (klass->interfaces [i]->name, name) == 0)
3365                         return i;
3366         }
3367         return -1;
3368 }
3369
3370 /*
3371  * Return the number of virtual methods.
3372  * Even for interfaces we can't simply return the number of methods as all CLR types are allowed to have static methods.
3373  * Return -1 on failure.
3374  * FIXME It would be nice if this information could be cached somewhere.
3375  */
3376 static int
3377 count_virtual_methods (MonoClass *klass)
3378 {
3379         int i, mcount, vcount = 0;
3380         guint32 flags;
3381         klass = mono_class_get_generic_type_definition (klass); /*We can find this information by looking at the GTD*/
3382
3383         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
3384                 mono_class_setup_methods (klass);
3385                 if (mono_class_has_failure (klass))
3386                         return -1;
3387
3388                 mcount = mono_class_get_method_count (klass);
3389                 for (i = 0; i < mcount; ++i) {
3390                         flags = klass->methods [i]->flags;
3391                         if (flags & METHOD_ATTRIBUTE_VIRTUAL)
3392                                 ++vcount;
3393                 }
3394         } else {
3395                 int first_idx = mono_class_get_first_method_idx (klass);
3396                 mcount = mono_class_get_method_count (klass);
3397                 for (i = 0; i < mcount; ++i) {
3398                         flags = mono_metadata_decode_table_row_col (klass->image, MONO_TABLE_METHOD, first_idx + i, MONO_METHOD_FLAGS);
3399
3400                         if (flags & METHOD_ATTRIBUTE_VIRTUAL)
3401                                 ++vcount;
3402                 }
3403         }
3404         return vcount;
3405 }
3406
3407 static int
3408 find_interface (int num_ifaces, MonoClass **interfaces_full, MonoClass *ic)
3409 {
3410         int m, l = 0;
3411         if (!num_ifaces)
3412                 return -1;
3413         while (1) {
3414                 if (l > num_ifaces)
3415                         return -1;
3416                 m = (l + num_ifaces) / 2;
3417                 if (interfaces_full [m] == ic)
3418                         return m;
3419                 if (l == num_ifaces)
3420                         return -1;
3421                 if (!interfaces_full [m] || interfaces_full [m]->interface_id > ic->interface_id) {
3422                         num_ifaces = m - 1;
3423                 } else {
3424                         l =  m + 1;
3425                 }
3426         }
3427 }
3428
3429 static int
3430 find_interface_offset (int num_ifaces, MonoClass **interfaces_full, int *interface_offsets_full, MonoClass *ic)
3431 {
3432         int i = find_interface (num_ifaces, interfaces_full, ic);
3433         if (i >= 0)
3434                 return interface_offsets_full [i];
3435         return -1;
3436 }
3437
3438 static mono_bool
3439 set_interface_and_offset (int num_ifaces, MonoClass **interfaces_full, int *interface_offsets_full, MonoClass *ic, int offset, mono_bool force_set)
3440 {
3441         int i = find_interface (num_ifaces, interfaces_full, ic);
3442         if (i >= 0) {
3443                 if (!force_set)
3444                         return TRUE;
3445                 interface_offsets_full [i] = offset;
3446                 return FALSE;
3447         }
3448         for (i = 0; i < num_ifaces; ++i) {
3449                 if (interfaces_full [i]) {
3450                         int end;
3451                         if (interfaces_full [i]->interface_id < ic->interface_id)
3452                                 continue;
3453                         end = i + 1;
3454                         while (end < num_ifaces && interfaces_full [end]) end++;
3455                         memmove (interfaces_full + i + 1, interfaces_full + i, sizeof (MonoClass*) * (end - i));
3456                         memmove (interface_offsets_full + i + 1, interface_offsets_full + i, sizeof (int) * (end - i));
3457                 }
3458                 interfaces_full [i] = ic;
3459                 interface_offsets_full [i] = offset;
3460                 break;
3461         }
3462         return FALSE;
3463 }
3464
3465 #ifdef COMPRESSED_INTERFACE_BITMAP
3466
3467 /*
3468  * Compressed interface bitmap design.
3469  *
3470  * Interface bitmaps take a large amount of memory, because their size is
3471  * linear with the maximum interface id assigned in the process (each interface
3472  * is assigned a unique id as it is loaded). The number of interface classes
3473  * is high because of the many implicit interfaces implemented by arrays (we'll
3474  * need to lazy-load them in the future).
3475  * Most classes implement a very small number of interfaces, so the bitmap is
3476  * sparse. This bitmap needs to be checked by interface casts, so access to the
3477  * needed bit must be fast and doable with few jit instructions.
3478  *
3479  * The current compression format is as follows:
3480  * *) it is a sequence of one or more two-byte elements
3481  * *) the first byte in the element is the count of empty bitmap bytes
3482  * at the current bitmap position
3483  * *) the second byte in the element is an actual bitmap byte at the current
3484  * bitmap position
3485  *
3486  * As an example, the following compressed bitmap bytes:
3487  *      0x07 0x01 0x00 0x7
3488  * correspond to the following bitmap:
3489  *      0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x07
3490  *
3491  * Each two-byte element can represent up to 2048 bitmap bits, but as few as a single
3492  * bitmap byte for non-sparse sequences. In practice the interface bitmaps created
3493  * during a gmcs bootstrap are reduced to less tha 5% of the original size.
3494  */
3495
3496 /**
3497  * mono_compress_bitmap:
3498  * @dest: destination buffer
3499  * @bitmap: bitmap buffer
3500  * @size: size of @bitmap in bytes
3501  *
3502  * This is a mono internal function.
3503  * The @bitmap data is compressed into a format that is small but
3504  * still searchable in few instructions by the JIT and runtime.
3505  * The compressed data is stored in the buffer pointed to by the
3506  * @dest array. Passing a #NULL value for @dest allows to just compute
3507  * the size of the buffer.
3508  * This compression algorithm assumes the bits set in the bitmap are
3509  * few and far between, like in interface bitmaps.
3510  * Returns: The size of the compressed bitmap in bytes.
3511  */
3512 int
3513 mono_compress_bitmap (uint8_t *dest, const uint8_t *bitmap, int size)
3514 {
3515         int numz = 0;
3516         int res = 0;
3517         const uint8_t *end = bitmap + size;
3518         while (bitmap < end) {
3519                 if (*bitmap || numz == 255) {
3520                         if (dest) {
3521                                 *dest++ = numz;
3522                                 *dest++ = *bitmap;
3523                         }
3524                         res += 2;
3525                         numz = 0;
3526                         bitmap++;
3527                         continue;
3528                 }
3529                 bitmap++;
3530                 numz++;
3531         }
3532         if (numz) {
3533                 res += 2;
3534                 if (dest) {
3535                         *dest++ = numz;
3536                         *dest++ = 0;
3537                 }
3538         }
3539         return res;
3540 }
3541
3542 /**
3543  * mono_class_interface_match:
3544  * @bitmap: a compressed bitmap buffer
3545  * @id: the index to check in the bitmap
3546  *
3547  * This is a mono internal function.
3548  * Checks if a bit is set in a compressed interface bitmap. @id must
3549  * be already checked for being smaller than the maximum id encoded in the
3550  * bitmap.
3551  *
3552  * Returns: A non-zero value if bit @id is set in the bitmap @bitmap,
3553  * #FALSE otherwise.
3554  */
3555 int
3556 mono_class_interface_match (const uint8_t *bitmap, int id)
3557 {
3558         while (TRUE) {
3559                 id -= bitmap [0] * 8;
3560                 if (id < 8) {
3561                         if (id < 0)
3562                                 return 0;
3563                         return bitmap [1] & (1 << id);
3564                 }
3565                 bitmap += 2;
3566                 id -= 8;
3567         }
3568 }
3569 #endif
3570
3571 /*
3572  * Return -1 on failure and set klass->has_failure and store a MonoErrorBoxed with the details.
3573  * LOCKING: Acquires the loader lock.
3574  */
3575 static int
3576 setup_interface_offsets (MonoClass *klass, int cur_slot, gboolean overwrite)
3577 {
3578         MonoError error;
3579         MonoClass *k, *ic;
3580         int i, j, num_ifaces;
3581         guint32 max_iid;
3582         MonoClass **interfaces_full = NULL;
3583         int *interface_offsets_full = NULL;
3584         GPtrArray *ifaces;
3585         GPtrArray **ifaces_array = NULL;
3586         int interface_offsets_count;
3587         MonoClass **array_interfaces = NULL;
3588         int num_array_interfaces;
3589         int is_enumerator = FALSE;
3590
3591         mono_loader_lock ();
3592
3593         mono_class_setup_supertypes (klass);
3594         /* 
3595          * get the implicit generic interfaces for either the arrays or for System.Array/InternalEnumerator<T>
3596          * implicit interfaces have the property that they are assigned the same slot in the
3597          * vtables for compatible interfaces
3598          */
3599         array_interfaces = get_implicit_generic_array_interfaces (klass, &num_array_interfaces, &is_enumerator);
3600
3601         /* compute maximum number of slots and maximum interface id */
3602         max_iid = 0;
3603         num_ifaces = num_array_interfaces; /* this can include duplicated ones */
3604         ifaces_array = g_new0 (GPtrArray *, klass->idepth);
3605         for (j = 0; j < klass->idepth; j++) {
3606                 k = klass->supertypes [j];
3607                 g_assert (k);
3608                 num_ifaces += k->interface_count;
3609                 for (i = 0; i < k->interface_count; i++) {
3610                         ic = k->interfaces [i];
3611
3612                         mono_class_init (ic);
3613
3614                         if (max_iid < ic->interface_id)
3615                                 max_iid = ic->interface_id;
3616                 }
3617                 ifaces = mono_class_get_implemented_interfaces (k, &error);
3618                 if (!mono_error_ok (&error)) {
3619                         char *name = mono_type_get_full_name (k);
3620                         mono_class_set_type_load_failure (klass, "Error getting the interfaces of %s due to %s", name, mono_error_get_message (&error));
3621                         g_free (name);
3622                         mono_error_cleanup (&error);
3623                         cur_slot = -1;
3624                         goto end;
3625                 }
3626                 if (ifaces) {
3627                         num_ifaces += ifaces->len;
3628                         for (i = 0; i < ifaces->len; ++i) {
3629                                 ic = (MonoClass *)g_ptr_array_index (ifaces, i);
3630                                 if (max_iid < ic->interface_id)
3631                                         max_iid = ic->interface_id;
3632                         }
3633                         ifaces_array [j] = ifaces;
3634                 }
3635         }
3636
3637         for (i = 0; i < num_array_interfaces; ++i) {
3638                 ic = array_interfaces [i];
3639                 mono_class_init (ic);
3640                 if (max_iid < ic->interface_id)
3641                         max_iid = ic->interface_id;
3642         }
3643
3644         if (MONO_CLASS_IS_INTERFACE (klass)) {
3645                 num_ifaces++;
3646                 if (max_iid < klass->interface_id)
3647                         max_iid = klass->interface_id;
3648         }
3649
3650         /* compute vtable offset for interfaces */
3651         interfaces_full = (MonoClass **)g_malloc0 (sizeof (MonoClass*) * num_ifaces);
3652         interface_offsets_full = (int *)g_malloc (sizeof (int) * num_ifaces);
3653
3654         for (i = 0; i < num_ifaces; i++)
3655                 interface_offsets_full [i] = -1;
3656
3657         /* skip the current class */
3658         for (j = 0; j < klass->idepth - 1; j++) {
3659                 k = klass->supertypes [j];
3660                 ifaces = ifaces_array [j];
3661
3662                 if (ifaces) {
3663                         for (i = 0; i < ifaces->len; ++i) {
3664                                 int io;
3665                                 ic = (MonoClass *)g_ptr_array_index (ifaces, i);
3666                                 
3667                                 /*Force the sharing of interface offsets between parent and subtypes.*/
3668                                 io = mono_class_interface_offset (k, ic);
3669                                 g_assert (io >= 0);
3670                                 set_interface_and_offset (num_ifaces, interfaces_full, interface_offsets_full, ic, io, TRUE);
3671                         }
3672                 }
3673         }
3674
3675         g_assert (klass == klass->supertypes [klass->idepth - 1]);
3676         ifaces = ifaces_array [klass->idepth - 1];
3677         if (ifaces) {
3678                 for (i = 0; i < ifaces->len; ++i) {
3679                         int count;
3680                         ic = (MonoClass *)g_ptr_array_index (ifaces, i);
3681                         if (set_interface_and_offset (num_ifaces, interfaces_full, interface_offsets_full, ic, cur_slot, FALSE))
3682                                 continue;
3683                         count = count_virtual_methods (ic);
3684                         if (count == -1) {
3685                                 char *name = mono_type_get_full_name (ic);
3686                                 mono_class_set_type_load_failure (klass, "Error calculating interface offset of %s", name);
3687                                 g_free (name);
3688                                 cur_slot = -1;
3689                                 goto end;
3690                         }
3691                         cur_slot += count;
3692                 }
3693         }
3694
3695         if (MONO_CLASS_IS_INTERFACE (klass))
3696                 set_interface_and_offset (num_ifaces, interfaces_full, interface_offsets_full, klass, cur_slot, TRUE);
3697
3698         if (num_array_interfaces) {
3699                 if (is_enumerator) {
3700                         int ienumerator_idx = find_array_interface (klass, "IEnumerator`1");
3701                         int ienumerator_offset = find_interface_offset (num_ifaces, interfaces_full, interface_offsets_full, klass->interfaces [ienumerator_idx]);
3702                         g_assert (ienumerator_offset >= 0);
3703                         for (i = 0; i < num_array_interfaces; ++i) {
3704                                 ic = array_interfaces [i];
3705                                 if (strcmp (ic->name, "IEnumerator`1") == 0)
3706                                         set_interface_and_offset (num_ifaces, interfaces_full, interface_offsets_full, ic, ienumerator_offset, TRUE);
3707                                 else
3708                                         g_assert_not_reached ();
3709                                 /*g_print ("type %s has %s offset at %d (%s)\n", klass->name, ic->name, interface_offsets_full [ic->interface_id], klass->interfaces [0]->name);*/
3710                         }
3711                 } else {
3712                         int ilist_offset, icollection_offset, ienumerable_offset, ireadonlylist_offset, ireadonlycollection_offset;
3713                         int ilist_iface_idx = find_array_interface (klass, "IList`1");
3714                         MonoClass* ilist_class = klass->interfaces [ilist_iface_idx];
3715                         int ireadonlylist_iface_idx = find_array_interface (klass, "IReadOnlyList`1");
3716                         MonoClass* ireadonlylist_class = ireadonlylist_iface_idx != -1 ? klass->interfaces [ireadonlylist_iface_idx] : NULL;
3717                         int icollection_iface_idx = find_array_interface (ilist_class, "ICollection`1");
3718                         int ienumerable_iface_idx = find_array_interface (ilist_class, "IEnumerable`1");
3719                         int ireadonlycollection_iface_idx = ireadonlylist_iface_idx != -1 ? find_array_interface (ireadonlylist_class, "IReadOnlyCollection`1") : -1;
3720                         ilist_offset = find_interface_offset (num_ifaces, interfaces_full, interface_offsets_full, klass->interfaces [ilist_iface_idx]);
3721                         icollection_offset = find_interface_offset (num_ifaces, interfaces_full, interface_offsets_full, ilist_class->interfaces [icollection_iface_idx]);
3722                         ienumerable_offset = find_interface_offset (num_ifaces, interfaces_full, interface_offsets_full, ilist_class->interfaces [ienumerable_iface_idx]);
3723                         ireadonlylist_offset = ireadonlylist_iface_idx != -1 ? find_interface_offset (num_ifaces, interfaces_full, interface_offsets_full, klass->interfaces [ireadonlylist_iface_idx]) : -1;
3724                         ireadonlycollection_offset = ireadonlycollection_iface_idx != -1 ? find_interface_offset (num_ifaces, interfaces_full, interface_offsets_full, ireadonlylist_class->interfaces [ireadonlycollection_iface_idx]) : -1;
3725                         g_assert (ilist_offset >= 0 && icollection_offset >= 0 && ienumerable_offset >= 0);
3726                         for (i = 0; i < num_array_interfaces; ++i) {
3727                                 int offset;
3728                                 ic = array_interfaces [i];
3729                                 if (mono_class_get_generic_class (ic)->container_class == mono_defaults.generic_ilist_class)
3730                                         offset = ilist_offset;
3731                                 else if (strcmp (ic->name, "ICollection`1") == 0)
3732                                         offset = icollection_offset;
3733                                 else if (strcmp (ic->name, "IEnumerable`1") == 0)
3734                                         offset = ienumerable_offset;
3735                                 else if (strcmp (ic->name, "IReadOnlyList`1") == 0)
3736                                         offset = ireadonlylist_offset;
3737                                 else if (strcmp (ic->name, "IReadOnlyCollection`1") == 0)
3738                                         offset = ireadonlycollection_offset;
3739                                 else
3740                                         g_assert_not_reached ();
3741                                 set_interface_and_offset (num_ifaces, interfaces_full, interface_offsets_full, ic, offset, TRUE);
3742                                 /*g_print ("type %s has %s offset at %d (%s)\n", klass->name, ic->name, offset, klass->interfaces [0]->name);*/
3743                         }
3744                 }
3745         }
3746
3747         for (interface_offsets_count = 0, i = 0; i < num_ifaces; i++) {
3748                 if (interface_offsets_full [i] != -1)
3749                         interface_offsets_count ++;
3750         }
3751
3752         /* Publish the data */
3753         klass->max_interface_id = max_iid;
3754         /*
3755          * We might get called multiple times:
3756          * - mono_class_init ()
3757          * - mono_class_setup_vtable ().
3758          * - mono_class_setup_interface_offsets ().
3759          * mono_class_setup_interface_offsets () passes 0 as CUR_SLOT, so the computed interface offsets will be invalid. This
3760          * means we have to overwrite those when called from other places (#4440).
3761          */
3762         if (klass->interfaces_packed) {
3763                 if (!overwrite)
3764                         g_assert (klass->interface_offsets_count == interface_offsets_count);
3765         } else {
3766                 uint8_t *bitmap;
3767                 int bsize;
3768                 klass->interface_offsets_count = interface_offsets_count;
3769                 klass->interfaces_packed = (MonoClass **)mono_class_alloc (klass, sizeof (MonoClass*) * interface_offsets_count);
3770                 klass->interface_offsets_packed = (guint16 *)mono_class_alloc (klass, sizeof (guint16) * interface_offsets_count);
3771                 bsize = (sizeof (guint8) * ((max_iid + 1) >> 3)) + (((max_iid + 1) & 7)? 1 :0);
3772 #ifdef COMPRESSED_INTERFACE_BITMAP
3773                 bitmap = g_malloc0 (bsize);
3774 #else
3775                 bitmap = (uint8_t *)mono_class_alloc0 (klass, bsize);
3776 #endif
3777                 for (i = 0; i < interface_offsets_count; i++) {
3778                         guint32 id = interfaces_full [i]->interface_id;
3779                         bitmap [id >> 3] |= (1 << (id & 7));
3780                         klass->interfaces_packed [i] = interfaces_full [i];
3781                         klass->interface_offsets_packed [i] = interface_offsets_full [i];
3782                         /*if (num_array_interfaces)
3783                           g_print ("type %s has %s offset at %d\n", mono_type_get_name_full (&klass->byval_arg, 0), mono_type_get_name_full (&interfaces_full [i]->byval_arg, 0), interface_offsets_full [i]);*/
3784                 }
3785 #ifdef COMPRESSED_INTERFACE_BITMAP
3786                 i = mono_compress_bitmap (NULL, bitmap, bsize);
3787                 klass->interface_bitmap = mono_class_alloc0 (klass, i);
3788                 mono_compress_bitmap (klass->interface_bitmap, bitmap, bsize);
3789                 g_free (bitmap);
3790 #else
3791                 klass->interface_bitmap = bitmap;
3792 #endif
3793         }
3794 end:
3795         mono_loader_unlock ();
3796
3797         g_free (interfaces_full);
3798         g_free (interface_offsets_full);
3799         g_free (array_interfaces);
3800         for (i = 0; i < klass->idepth; i++) {
3801                 ifaces = ifaces_array [i];
3802                 if (ifaces)
3803                         g_ptr_array_free (ifaces, TRUE);
3804         }
3805         g_free (ifaces_array);
3806         
3807         //printf ("JUST DONE: ");
3808         //print_implemented_interfaces (klass);
3809
3810         return cur_slot;
3811 }
3812
3813 /*
3814  * Setup interface offsets for interfaces. 
3815  * Initializes:
3816  * - klass->max_interface_id
3817  * - klass->interface_offsets_count
3818  * - klass->interfaces_packed
3819  * - klass->interface_offsets_packed
3820  * - klass->interface_bitmap
3821  *
3822  * This function can fail @class.
3823  */
3824 void
3825 mono_class_setup_interface_offsets (MonoClass *klass)
3826 {
3827         setup_interface_offsets (klass, 0, FALSE);
3828 }
3829
3830 /*Checks if @klass has @parent as one of it's parents type gtd
3831  *
3832  * For example:
3833  *      Foo<T>
3834  *      Bar<T> : Foo<Bar<Bar<T>>>
3835  *
3836  */
3837 static gboolean
3838 mono_class_has_gtd_parent (MonoClass *klass, MonoClass *parent)
3839 {
3840         klass = mono_class_get_generic_type_definition (klass);
3841         parent = mono_class_get_generic_type_definition (parent);
3842         mono_class_setup_supertypes (klass);
3843         mono_class_setup_supertypes (parent);
3844
3845         return klass->idepth >= parent->idepth &&
3846                 mono_class_get_generic_type_definition (klass->supertypes [parent->idepth - 1]) == parent;
3847 }
3848
3849 gboolean
3850 mono_class_check_vtable_constraints (MonoClass *klass, GList *in_setup)
3851 {
3852         MonoGenericInst *ginst;
3853         int i;
3854
3855         if (!mono_class_is_ginst (klass)) {
3856                 mono_class_setup_vtable_full (klass, in_setup);
3857                 return !mono_class_has_failure (klass);
3858         }
3859
3860         mono_class_setup_vtable_full (mono_class_get_generic_type_definition (klass), in_setup);
3861         if (mono_class_set_type_load_failure_causedby_class (klass, mono_class_get_generic_class (klass)->container_class, "Failed to load generic definition vtable"))
3862                 return FALSE;
3863
3864         ginst = mono_class_get_generic_class (klass)->context.class_inst;
3865         for (i = 0; i < ginst->type_argc; ++i) {
3866                 MonoClass *arg;
3867                 if (ginst->type_argv [i]->type != MONO_TYPE_GENERICINST)
3868                         continue;
3869                 arg = mono_class_from_mono_type (ginst->type_argv [i]);
3870                 /*Those 2 will be checked by mono_class_setup_vtable itself*/
3871                 if (mono_class_has_gtd_parent (klass, arg) || mono_class_has_gtd_parent (arg, klass))
3872                         continue;
3873                 if (!mono_class_check_vtable_constraints (arg, in_setup)) {
3874                         mono_class_set_type_load_failure (klass, "Failed to load generic parameter %d", i);
3875                         return FALSE;
3876                 }
3877         }
3878         return TRUE;
3879 }
3880  
3881 /*
3882  * mono_class_setup_vtable:
3883  *
3884  *   Creates the generic vtable of CLASS.
3885  * Initializes the following fields in MonoClass:
3886  * - vtable
3887  * - vtable_size
3888  * Plus all the fields initialized by setup_interface_offsets ().
3889  * If there is an error during vtable construction, klass->has_failure
3890  * is set and details are stored in a MonoErrorBoxed.
3891  *
3892  * LOCKING: Acquires the loader lock.
3893  */
3894 void
3895 mono_class_setup_vtable (MonoClass *klass)
3896 {
3897         mono_class_setup_vtable_full (klass, NULL);
3898 }
3899
3900 static void
3901 mono_class_setup_vtable_full (MonoClass *klass, GList *in_setup)
3902 {
3903         MonoError error;
3904         MonoMethod **overrides;
3905         MonoGenericContext *context;
3906         guint32 type_token;
3907         int onum = 0;
3908         gboolean ok = TRUE;
3909
3910         if (klass->vtable)
3911                 return;
3912
3913         if (MONO_CLASS_IS_INTERFACE (klass)) {
3914                 /* This sets method->slot for all methods if this is an interface */
3915                 mono_class_setup_methods (klass);
3916                 return;
3917         }
3918
3919         if (mono_class_has_failure (klass))
3920                 return;
3921
3922         if (g_list_find (in_setup, klass))
3923                 return;
3924
3925         mono_loader_lock ();
3926
3927         if (klass->vtable) {
3928                 mono_loader_unlock ();
3929                 return;
3930         }
3931
3932         mono_stats.generic_vtable_count ++;
3933         in_setup = g_list_prepend (in_setup, klass);
3934
3935         if (mono_class_is_ginst (klass)) {
3936                 if (!mono_class_check_vtable_constraints (klass, in_setup)) {
3937                         mono_loader_unlock ();
3938                         g_list_remove (in_setup, klass);
3939                         return;
3940                 }
3941
3942                 context = mono_class_get_context (klass);
3943                 type_token = mono_class_get_generic_class (klass)->container_class->type_token;
3944         } else {
3945                 context = (MonoGenericContext *) mono_class_try_get_generic_container (klass); //FIXME is this a case of a try?
3946                 type_token = klass->type_token;
3947         }
3948
3949         if (image_is_dynamic (klass->image)) {
3950                 /* Generic instances can have zero method overrides without causing any harm.
3951                  * This is true since we don't do layout all over again for them, we simply inflate
3952                  * the layout of the parent.
3953                  */
3954                 mono_reflection_get_dynamic_overrides (klass, &overrides, &onum, &error);
3955                 if (!is_ok (&error)) {
3956                         mono_loader_unlock ();
3957                         g_list_remove (in_setup, klass);
3958                         mono_class_set_type_load_failure (klass, "Could not load list of method overrides due to %s", mono_error_get_message (&error));
3959                         mono_error_cleanup (&error);
3960                         return;
3961                 }
3962         } else {
3963                 /* The following call fails if there are missing methods in the type */
3964                 /* FIXME it's probably a good idea to avoid this for generic instances. */
3965                 ok = mono_class_get_overrides_full (klass->image, type_token, &overrides, &onum, context);
3966         }
3967
3968         if (ok)
3969                 mono_class_setup_vtable_general (klass, overrides, onum, in_setup);
3970         else
3971                 mono_class_set_type_load_failure (klass, "Could not load list of method overrides");
3972                 
3973         g_free (overrides);
3974
3975         mono_loader_unlock ();
3976         g_list_remove (in_setup, klass);
3977
3978         return;
3979 }
3980
3981 #define DEBUG_INTERFACE_VTABLE_CODE 0
3982 #define TRACE_INTERFACE_VTABLE_CODE 0
3983 #define VERIFY_INTERFACE_VTABLE_CODE 0
3984 #define VTABLE_SELECTOR (1)
3985
3986 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
3987 #define DEBUG_INTERFACE_VTABLE(stmt) do {\
3988         if (!(VTABLE_SELECTOR)) break; \
3989         stmt;\
3990 } while (0)
3991 #else
3992 #define DEBUG_INTERFACE_VTABLE(stmt)
3993 #endif
3994
3995 #if TRACE_INTERFACE_VTABLE_CODE
3996 #define TRACE_INTERFACE_VTABLE(stmt) do {\
3997         if (!(VTABLE_SELECTOR)) break; \
3998         stmt;\
3999 } while (0)
4000 #else
4001 #define TRACE_INTERFACE_VTABLE(stmt)
4002 #endif
4003
4004 #if VERIFY_INTERFACE_VTABLE_CODE
4005 #define VERIFY_INTERFACE_VTABLE(stmt) do {\
4006         if (!(VTABLE_SELECTOR)) break; \
4007         stmt;\
4008 } while (0)
4009 #else
4010 #define VERIFY_INTERFACE_VTABLE(stmt)
4011 #endif
4012
4013
4014 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
4015 static char*
4016 mono_signature_get_full_desc (MonoMethodSignature *sig, gboolean include_namespace)
4017 {
4018         int i;
4019         char *result;
4020         GString *res = g_string_new ("");
4021         
4022         g_string_append_c (res, '(');
4023         for (i = 0; i < sig->param_count; ++i) {
4024                 if (i > 0)
4025                         g_string_append_c (res, ',');
4026                 mono_type_get_desc (res, sig->params [i], include_namespace);
4027         }
4028         g_string_append (res, ")=>");
4029         if (sig->ret != NULL) {
4030                 mono_type_get_desc (res, sig->ret, include_namespace);
4031         } else {
4032                 g_string_append (res, "NULL");
4033         }
4034         result = res->str;
4035         g_string_free (res, FALSE);
4036         return result;
4037 }
4038 static void
4039 print_method_signatures (MonoMethod *im, MonoMethod *cm) {
4040         char *im_sig = mono_signature_get_full_desc (mono_method_signature (im), TRUE);
4041         char *cm_sig = mono_signature_get_full_desc (mono_method_signature (cm), TRUE);
4042         printf ("(IM \"%s\", CM \"%s\")", im_sig, cm_sig);
4043         g_free (im_sig);
4044         g_free (cm_sig);
4045         
4046 }
4047
4048 #endif
4049 static gboolean
4050 is_wcf_hack_disabled (void)
4051 {
4052         static gboolean disabled;
4053         static gboolean inited = FALSE;
4054         if (!inited) {
4055                 disabled = g_getenv ("MONO_DISABLE_WCF_HACK") != NULL;
4056                 inited = TRUE;
4057         }
4058         return disabled;
4059 }
4060
4061 static gboolean
4062 check_interface_method_override (MonoClass *klass, MonoMethod *im, MonoMethod *cm, gboolean require_newslot, gboolean interface_is_explicitly_implemented_by_class, gboolean slot_is_empty)
4063 {
4064         MonoMethodSignature *cmsig, *imsig;
4065         if (strcmp (im->name, cm->name) == 0) {
4066                 if (! (cm->flags & METHOD_ATTRIBUTE_PUBLIC)) {
4067                         TRACE_INTERFACE_VTABLE (printf ("[PUBLIC CHECK FAILED]"));
4068                         return FALSE;
4069                 }
4070                 if (! slot_is_empty) {
4071                         if (require_newslot) {
4072                                 if (! interface_is_explicitly_implemented_by_class) {
4073                                         TRACE_INTERFACE_VTABLE (printf ("[NOT EXPLICIT IMPLEMENTATION IN FULL SLOT REFUSED]"));
4074                                         return FALSE;
4075                                 }
4076                                 if (! (cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
4077                                         TRACE_INTERFACE_VTABLE (printf ("[NEWSLOT CHECK FAILED]"));
4078                                         return FALSE;
4079                                 }
4080                         } else {
4081                                 TRACE_INTERFACE_VTABLE (printf ("[FULL SLOT REFUSED]"));
4082                         }
4083                 }
4084                 cmsig = mono_method_signature (cm);
4085                 imsig = mono_method_signature (im);
4086                 if (!cmsig || !imsig) {
4087                         mono_class_set_type_load_failure (klass, "Could not resolve the signature of a virtual method");
4088                         return FALSE;
4089                 }
4090
4091                 if (! mono_metadata_signature_equal (cmsig, imsig)) {
4092                         TRACE_INTERFACE_VTABLE (printf ("[SIGNATURE CHECK FAILED  "));
4093                         TRACE_INTERFACE_VTABLE (print_method_signatures (im, cm));
4094                         TRACE_INTERFACE_VTABLE (printf ("]"));
4095                         return FALSE;
4096                 }
4097                 TRACE_INTERFACE_VTABLE (printf ("[SECURITY CHECKS]"));
4098                 if (mono_security_core_clr_enabled ())
4099                         mono_security_core_clr_check_override (klass, cm, im);
4100
4101                 TRACE_INTERFACE_VTABLE (printf ("[NAME CHECK OK]"));
4102                 if (is_wcf_hack_disabled () && !mono_method_can_access_method_full (cm, im, NULL)) {
4103                         char *body_name = mono_method_full_name (cm, TRUE);
4104                         char *decl_name = mono_method_full_name (im, TRUE);
4105                         mono_class_set_type_load_failure (klass, "Method %s overrides method '%s' which is not accessible", body_name, decl_name);
4106                         g_free (body_name);
4107                         g_free (decl_name);
4108                         return FALSE;
4109                 }
4110
4111                 return TRUE;
4112         } else {
4113                 MonoClass *ic = im->klass;
4114                 const char *ic_name_space = ic->name_space;
4115                 const char *ic_name = ic->name;
4116                 char *subname;
4117                 
4118                 if (! require_newslot) {
4119                         TRACE_INTERFACE_VTABLE (printf ("[INJECTED METHOD REFUSED]"));
4120                         return FALSE;
4121                 }
4122                 if (cm->klass->rank == 0) {
4123                         TRACE_INTERFACE_VTABLE (printf ("[RANK CHECK FAILED]"));
4124                         return FALSE;
4125                 }
4126                 cmsig = mono_method_signature (cm);
4127                 imsig = mono_method_signature (im);
4128                 if (!cmsig || !imsig) {
4129                         mono_class_set_type_load_failure (klass, "Could not resolve the signature of a virtual method");
4130                         return FALSE;
4131                 }
4132
4133                 if (! mono_metadata_signature_equal (cmsig, imsig)) {
4134                         TRACE_INTERFACE_VTABLE (printf ("[(INJECTED) SIGNATURE CHECK FAILED  "));
4135                         TRACE_INTERFACE_VTABLE (print_method_signatures (im, cm));
4136                         TRACE_INTERFACE_VTABLE (printf ("]"));
4137                         return FALSE;
4138                 }
4139                 if (mono_class_get_image (ic) != mono_defaults.corlib) {
4140                         TRACE_INTERFACE_VTABLE (printf ("[INTERFACE CORLIB CHECK FAILED]"));
4141                         return FALSE;
4142                 }
4143                 if ((ic_name_space == NULL) || (strcmp (ic_name_space, "System.Collections.Generic") != 0)) {
4144                         TRACE_INTERFACE_VTABLE (printf ("[INTERFACE NAMESPACE CHECK FAILED]"));
4145                         return FALSE;
4146                 }
4147                 if ((ic_name == NULL) || ((strcmp (ic_name, "IEnumerable`1") != 0) && (strcmp (ic_name, "ICollection`1") != 0) && (strcmp (ic_name, "IList`1") != 0) && (strcmp (ic_name, "IReadOnlyList`1") != 0) && (strcmp (ic_name, "IReadOnlyCollection`1") != 0))) {
4148                         TRACE_INTERFACE_VTABLE (printf ("[INTERFACE NAME CHECK FAILED]"));
4149                         return FALSE;
4150                 }
4151                 
4152                 subname = strstr (cm->name, ic_name_space);
4153                 if (subname != cm->name) {
4154                         TRACE_INTERFACE_VTABLE (printf ("[ACTUAL NAMESPACE CHECK FAILED]"));
4155                         return FALSE;
4156                 }
4157                 subname += strlen (ic_name_space);
4158                 if (subname [0] != '.') {
4159                         TRACE_INTERFACE_VTABLE (printf ("[FIRST DOT CHECK FAILED]"));
4160                         return FALSE;
4161                 }
4162                 subname ++;
4163                 if (strstr (subname, ic_name) != subname) {
4164                         TRACE_INTERFACE_VTABLE (printf ("[ACTUAL CLASS NAME CHECK FAILED]"));
4165                         return FALSE;
4166                 }
4167                 subname += strlen (ic_name);
4168                 if (subname [0] != '.') {
4169                         TRACE_INTERFACE_VTABLE (printf ("[SECOND DOT CHECK FAILED]"));
4170                         return FALSE;
4171                 }
4172                 subname ++;
4173                 if (strcmp (subname, im->name) != 0) {
4174                         TRACE_INTERFACE_VTABLE (printf ("[METHOD NAME CHECK FAILED]"));
4175                         return FALSE;
4176                 }
4177                 
4178                 TRACE_INTERFACE_VTABLE (printf ("[SECURITY CHECKS (INJECTED CASE)]"));
4179                 if (mono_security_core_clr_enabled ())
4180                         mono_security_core_clr_check_override (klass, cm, im);
4181
4182                 TRACE_INTERFACE_VTABLE (printf ("[INJECTED INTERFACE CHECK OK]"));
4183                 if (is_wcf_hack_disabled () && !mono_method_can_access_method_full (cm, im, NULL)) {
4184                         char *body_name = mono_method_full_name (cm, TRUE);
4185                         char *decl_name = mono_method_full_name (im, TRUE);
4186                         mono_class_set_type_load_failure (klass, "Method %s overrides method '%s' which is not accessible", body_name, decl_name);
4187                         g_free (body_name);
4188                         g_free (decl_name);
4189                         return FALSE;
4190                 }
4191                 
4192                 return TRUE;
4193         }
4194 }
4195
4196 #if (TRACE_INTERFACE_VTABLE_CODE|DEBUG_INTERFACE_VTABLE_CODE)
4197 static void
4198 foreach_override (gpointer key, gpointer value, gpointer user_data) {
4199         MonoMethod *method = key;
4200         MonoMethod *override = value;
4201         MonoClass *method_class = mono_method_get_class (method);
4202         MonoClass *override_class = mono_method_get_class (override);
4203         
4204         printf ("  Method '%s.%s:%s' has override '%s.%s:%s'\n",
4205                         mono_class_get_namespace (method_class), mono_class_get_name (method_class), mono_method_get_name (method),
4206                         mono_class_get_namespace (override_class), mono_class_get_name (override_class), mono_method_get_name (override));
4207 }
4208 static void
4209 print_overrides (GHashTable *override_map, const char *message) {
4210         if (override_map) {
4211                 printf ("Override map \"%s\" START:\n", message);
4212                 g_hash_table_foreach (override_map, foreach_override, NULL);
4213                 printf ("Override map \"%s\" END.\n", message);
4214         } else {
4215                 printf ("Override map \"%s\" EMPTY.\n", message);
4216         }
4217 }
4218 static void
4219 print_vtable_full (MonoClass *klass, MonoMethod** vtable, int size, int first_non_interface_slot, const char *message, gboolean print_interfaces) {
4220         char *full_name = mono_type_full_name (&klass->byval_arg);
4221         int i;
4222         int parent_size;
4223         
4224         printf ("*** Vtable for class '%s' at \"%s\" (size %d)\n", full_name, message, size);
4225         
4226         if (print_interfaces) {
4227                 print_implemented_interfaces (klass);
4228                 printf ("* Interfaces for class '%s' done.\nStarting vtable (size %d):\n", full_name, size);
4229         }
4230         
4231         if (klass->parent) {
4232                 parent_size = klass->parent->vtable_size;
4233         } else {
4234                 parent_size = 0;
4235         }
4236         for (i = 0; i < size; ++i) {
4237                 MonoMethod *cm = vtable [i];
4238                 char *cm_name = cm ? mono_method_full_name (cm, TRUE) : g_strdup ("nil");
4239                 char newness = (i < parent_size) ? 'O' : ((i < first_non_interface_slot) ? 'I' : 'N');
4240
4241                 printf ("  [%c][%03d][INDEX %03d] %s [%p]\n", newness, i, cm ? cm->slot : - 1, cm_name, cm);
4242                 g_free (cm_name);
4243         }
4244
4245         g_free (full_name);
4246 }
4247 #endif
4248
4249 #if VERIFY_INTERFACE_VTABLE_CODE
4250 static int
4251 mono_method_try_get_vtable_index (MonoMethod *method)
4252 {
4253         if (method->is_inflated && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
4254                 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
4255                 if (imethod->declaring->is_generic)
4256                         return imethod->declaring->slot;
4257         }
4258         return method->slot;
4259 }
4260
4261 static void
4262 mono_class_verify_vtable (MonoClass *klass)
4263 {
4264         int i, count;
4265         char *full_name = mono_type_full_name (&klass->byval_arg);
4266
4267         printf ("*** Verifying VTable of class '%s' \n", full_name);
4268         g_free (full_name);
4269         full_name = NULL;
4270         
4271         if (!klass->methods)
4272                 return;
4273
4274         count = mono_class_method_count (klass);
4275         for (i = 0; i < count; ++i) {
4276                 MonoMethod *cm = klass->methods [i];
4277                 int slot;
4278
4279                 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL))
4280                         continue;
4281
4282                 g_free (full_name);
4283                 full_name = mono_method_full_name (cm, TRUE);
4284
4285                 slot = mono_method_try_get_vtable_index (cm);
4286                 if (slot >= 0) {
4287                         if (slot >= klass->vtable_size) {
4288                                 printf ("\tInvalid method %s at index %d with vtable of length %d\n", full_name, slot, klass->vtable_size);
4289                                 continue;
4290                         }
4291
4292                         if (slot >= 0 && klass->vtable [slot] != cm && (klass->vtable [slot])) {
4293                                 char *other_name = klass->vtable [slot] ? mono_method_full_name (klass->vtable [slot], TRUE) : g_strdup ("[null value]");
4294                                 printf ("\tMethod %s has slot %d but vtable has %s on it\n", full_name, slot, other_name);
4295                                 g_free (other_name);
4296                         }
4297                 } else
4298                         printf ("\tVirtual method %s does n't have an assigned slot\n", full_name);
4299         }
4300         g_free (full_name);
4301 }
4302 #endif
4303
4304 static void
4305 print_unimplemented_interface_method_info (MonoClass *klass, MonoClass *ic, MonoMethod *im, int im_slot, MonoMethod **overrides, int onum)
4306 {
4307         int index, mcount;
4308         char *method_signature;
4309         char *type_name;
4310         
4311         for (index = 0; index < onum; ++index) {
4312                 mono_trace_warning (MONO_TRACE_TYPE, " at slot %d: %s (%d) overrides %s (%d)", im_slot, overrides [index*2+1]->name,
4313                          overrides [index*2+1]->slot, overrides [index*2]->name, overrides [index*2]->slot);
4314         }
4315         method_signature = mono_signature_get_desc (mono_method_signature (im), FALSE);
4316         type_name = mono_type_full_name (&klass->byval_arg);
4317         mono_trace_warning (MONO_TRACE_TYPE, "no implementation for interface method %s::%s(%s) in class %s",
4318                 mono_type_get_name (&ic->byval_arg), im->name, method_signature, type_name);
4319         g_free (method_signature);
4320         g_free (type_name);
4321         mono_class_setup_methods (klass);
4322         if (mono_class_has_failure (klass)) {
4323                 char *name = mono_type_get_full_name (klass);
4324                 mono_trace_warning (MONO_TRACE_TYPE, "CLASS %s failed to resolve methods", name);
4325                 g_free (name);
4326                 return;
4327         }
4328         mcount = mono_class_get_method_count (klass);
4329         for (index = 0; index < mcount; ++index) {
4330                 MonoMethod *cm = klass->methods [index];
4331                 method_signature = mono_signature_get_desc (mono_method_signature (cm), TRUE);
4332
4333                 mono_trace_warning (MONO_TRACE_TYPE, "METHOD %s(%s)", cm->name, method_signature);
4334                 g_free (method_signature);
4335         }
4336 }
4337
4338 static MonoMethod*
4339 mono_method_get_method_definition (MonoMethod *method)
4340 {
4341         while (method->is_inflated)
4342                 method = ((MonoMethodInflated*)method)->declaring;
4343         return method;
4344 }
4345
4346 static gboolean
4347 verify_class_overrides (MonoClass *klass, MonoMethod **overrides, int onum)
4348 {
4349         int i;
4350
4351         for (i = 0; i < onum; ++i) {
4352                 MonoMethod *decl = overrides [i * 2];
4353                 MonoMethod *body = overrides [i * 2 + 1];
4354
4355                 if (mono_class_get_generic_type_definition (body->klass) != mono_class_get_generic_type_definition (klass)) {
4356                         mono_class_set_type_load_failure (klass, "Method belongs to a different class than the declared one");
4357                         return FALSE;
4358                 }
4359
4360                 if (!(body->flags & METHOD_ATTRIBUTE_VIRTUAL) || (body->flags & METHOD_ATTRIBUTE_STATIC)) {
4361                         if (body->flags & METHOD_ATTRIBUTE_STATIC)
4362                                 mono_class_set_type_load_failure (klass, "Method must not be static to override a base type");
4363                         else
4364                                 mono_class_set_type_load_failure (klass, "Method must be virtual to override a base type");
4365                         return FALSE;
4366                 }
4367
4368                 if (!(decl->flags & METHOD_ATTRIBUTE_VIRTUAL) || (decl->flags & METHOD_ATTRIBUTE_STATIC)) {
4369                         if (body->flags & METHOD_ATTRIBUTE_STATIC)
4370                                 mono_class_set_type_load_failure (klass, "Cannot override a static method in a base type");
4371                         else
4372                                 mono_class_set_type_load_failure (klass, "Cannot override a non virtual method in a base type");
4373                         return FALSE;
4374                 }
4375
4376                 if (!mono_class_is_assignable_from_slow (decl->klass, klass)) {
4377                         mono_class_set_type_load_failure (klass, "Method overrides a class or interface that is not extended or implemented by this type");
4378                         return FALSE;
4379                 }
4380
4381                 body = mono_method_get_method_definition (body);
4382                 decl = mono_method_get_method_definition (decl);
4383
4384                 if (is_wcf_hack_disabled () && !mono_method_can_access_method_full (body, decl, NULL)) {
4385                         char *body_name = mono_method_full_name (body, TRUE);
4386                         char *decl_name = mono_method_full_name (decl, TRUE);
4387                         mono_class_set_type_load_failure (klass, "Method %s overrides method '%s' which is not accessible", body_name, decl_name);
4388                         g_free (body_name);
4389                         g_free (decl_name);
4390                         return FALSE;
4391                 }
4392         }
4393         return TRUE;
4394 }
4395
4396 static gboolean
4397 mono_class_need_stelemref_method (MonoClass *klass)
4398 {
4399         return klass->rank == 1 && MONO_TYPE_IS_REFERENCE (&klass->element_class->byval_arg);
4400 }
4401
4402 /*
4403  * LOCKING: this is supposed to be called with the loader lock held.
4404  */
4405 void
4406 mono_class_setup_vtable_general (MonoClass *klass, MonoMethod **overrides, int onum, GList *in_setup)
4407 {
4408         MonoError error;
4409         MonoClass *k, *ic;
4410         MonoMethod **vtable = NULL;
4411         int i, max_vtsize = 0, cur_slot = 0;
4412         guint32 max_iid;
4413         GPtrArray *ifaces = NULL;
4414         GHashTable *override_map = NULL;
4415         MonoMethod *cm;
4416 #if (DEBUG_INTERFACE_VTABLE_CODE|TRACE_INTERFACE_VTABLE_CODE)
4417         int first_non_interface_slot;
4418 #endif
4419         GSList *virt_methods = NULL, *l;
4420         int stelemref_slot = 0;
4421
4422         if (klass->vtable)
4423                 return;
4424
4425         if (overrides && !verify_class_overrides (klass, overrides, onum))
4426                 return;
4427
4428         ifaces = mono_class_get_implemented_interfaces (klass, &error);
4429         if (!mono_error_ok (&error)) {
4430                 char *name = mono_type_get_full_name (klass);
4431                 mono_class_set_type_load_failure (klass, "Could not resolve %s interfaces due to %s", name, mono_error_get_message (&error));
4432                 g_free (name);
4433                 mono_error_cleanup (&error);
4434                 return;
4435         } else if (ifaces) {
4436                 for (i = 0; i < ifaces->len; i++) {
4437                         MonoClass *ic = (MonoClass *)g_ptr_array_index (ifaces, i);
4438                         max_vtsize += mono_class_get_method_count (ic);
4439                 }
4440                 g_ptr_array_free (ifaces, TRUE);
4441                 ifaces = NULL;
4442         }
4443         
4444         if (klass->parent) {
4445                 mono_class_init (klass->parent);
4446                 mono_class_setup_vtable_full (klass->parent, in_setup);
4447
4448                 if (mono_class_set_type_load_failure_causedby_class (klass, klass->parent, "Parent class failed to load"))
4449                         return;
4450
4451                 max_vtsize += klass->parent->vtable_size;
4452                 cur_slot = klass->parent->vtable_size;
4453         }
4454
4455         max_vtsize += mono_class_get_method_count (klass);
4456
4457         /*Array have a slot for stelemref*/
4458         if (mono_class_need_stelemref_method (klass)) {
4459                 stelemref_slot = cur_slot;
4460                 ++max_vtsize;
4461                 ++cur_slot;
4462         }
4463
4464         /* printf ("METAINIT %s.%s\n", klass->name_space, klass->name); */
4465
4466         cur_slot = setup_interface_offsets (klass, cur_slot, TRUE);
4467         if (cur_slot == -1) /*setup_interface_offsets fails the type.*/
4468                 return;
4469
4470         max_iid = klass->max_interface_id;
4471         DEBUG_INTERFACE_VTABLE (first_non_interface_slot = cur_slot);
4472
4473         /* Optimized version for generic instances */
4474         if (mono_class_is_ginst (klass)) {
4475                 MonoError error;
4476                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
4477                 MonoMethod **tmp;
4478
4479                 mono_class_setup_vtable_full (gklass, in_setup);
4480                 if (mono_class_set_type_load_failure_causedby_class (klass, gklass, "Could not load generic definition"))
4481                         return;
4482
4483                 tmp = (MonoMethod **)mono_class_alloc0 (klass, sizeof (gpointer) * gklass->vtable_size);
4484                 klass->vtable_size = gklass->vtable_size;
4485                 for (i = 0; i < gklass->vtable_size; ++i)
4486                         if (gklass->vtable [i]) {
4487                                 MonoMethod *inflated = mono_class_inflate_generic_method_full_checked (gklass->vtable [i], klass, mono_class_get_context (klass), &error);
4488                                 if (!mono_error_ok (&error)) {
4489                                         mono_class_set_type_load_failure (klass, "Could not inflate method due to %s", mono_error_get_message (&error));
4490                                         mono_error_cleanup (&error);
4491                                         return;
4492                                 }
4493                                 tmp [i] = inflated;
4494                                 tmp [i]->slot = gklass->vtable [i]->slot;
4495                         }
4496                 mono_memory_barrier ();
4497                 klass->vtable = tmp;
4498
4499                 /* Have to set method->slot for abstract virtual methods */
4500                 if (klass->methods && gklass->methods) {
4501                         int mcount = mono_class_get_method_count (klass);
4502                         for (i = 0; i < mcount; ++i)
4503                                 if (klass->methods [i]->slot == -1)
4504                                         klass->methods [i]->slot = gklass->methods [i]->slot;
4505                 }
4506
4507                 return;
4508         }
4509
4510         vtable = (MonoMethod **)g_malloc0 (sizeof (gpointer) * max_vtsize);
4511
4512         if (klass->parent && klass->parent->vtable_size) {
4513                 MonoClass *parent = klass->parent;
4514                 int i;
4515                 
4516                 memcpy (vtable, parent->vtable,  sizeof (gpointer) * parent->vtable_size);
4517                 
4518                 // Also inherit parent interface vtables, just as a starting point.
4519                 // This is needed otherwise bug-77127.exe fails when the property methods
4520                 // have different names in the iterface and the class, because for child
4521                 // classes the ".override" information is not used anymore.
4522                 for (i = 0; i < parent->interface_offsets_count; i++) {
4523                         MonoClass *parent_interface = parent->interfaces_packed [i];
4524                         int interface_offset = mono_class_interface_offset (klass, parent_interface);
4525                         /*FIXME this is now dead code as this condition will never hold true.
4526                         Since interface offsets are inherited then the offset of an interface implemented
4527                         by a parent will never be the out of it's vtable boundary.
4528                         */
4529                         if (interface_offset >= parent->vtable_size) {
4530                                 int parent_interface_offset = mono_class_interface_offset (parent, parent_interface);
4531                                 int j;
4532                                 
4533                                 mono_class_setup_methods (parent_interface); /*FIXME Just kill this whole chunk of dead code*/
4534                                 TRACE_INTERFACE_VTABLE (printf ("    +++ Inheriting interface %s.%s\n", parent_interface->name_space, parent_interface->name));
4535                                 int mcount = mono_class_get_method_count (parent_interface);
4536                                 for (j = 0; j < mcount && !mono_class_has_failure (klass); j++) {
4537                                         vtable [interface_offset + j] = parent->vtable [parent_interface_offset + j];
4538                                         TRACE_INTERFACE_VTABLE (printf ("    --- Inheriting: [%03d][(%03d)+(%03d)] => [%03d][(%03d)+(%03d)]\n",
4539                                                         parent_interface_offset + j, parent_interface_offset, j,
4540                                                         interface_offset + j, interface_offset, j));
4541                                 }
4542                         }
4543                         
4544                 }
4545         }
4546
4547         /*Array have a slot for stelemref*/
4548         if (mono_class_need_stelemref_method (klass)) {
4549                 MonoMethod *method = mono_marshal_get_virtual_stelemref (klass);
4550                 if (!method->slot)
4551                         method->slot = stelemref_slot;
4552                 else
4553                         g_assert (method->slot == stelemref_slot);
4554
4555                 vtable [stelemref_slot] = method;
4556         }
4557
4558         TRACE_INTERFACE_VTABLE (print_vtable_full (klass, vtable, cur_slot, first_non_interface_slot, "AFTER INHERITING PARENT VTABLE", TRUE));
4559         /* override interface methods */
4560         for (i = 0; i < onum; i++) {
4561                 MonoMethod *decl = overrides [i*2];
4562                 if (MONO_CLASS_IS_INTERFACE (decl->klass)) {
4563                         int dslot;
4564                         dslot = mono_method_get_vtable_slot (decl);
4565                         if (dslot == -1) {
4566                                 mono_class_set_type_load_failure (klass, "");
4567                                 goto fail;
4568                         }
4569
4570                         dslot += mono_class_interface_offset (klass, decl->klass);
4571                         vtable [dslot] = overrides [i*2 + 1];
4572                         vtable [dslot]->slot = dslot;
4573                         if (!override_map)
4574                                 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
4575
4576                         g_hash_table_insert (override_map, overrides [i * 2], overrides [i * 2 + 1]);
4577
4578                         if (mono_security_core_clr_enabled ())
4579                                 mono_security_core_clr_check_override (klass, vtable [dslot], decl);
4580                 }
4581         }
4582         TRACE_INTERFACE_VTABLE (print_overrides (override_map, "AFTER OVERRIDING INTERFACE METHODS"));
4583         TRACE_INTERFACE_VTABLE (print_vtable_full (klass, vtable, cur_slot, first_non_interface_slot, "AFTER OVERRIDING INTERFACE METHODS", FALSE));
4584
4585         /*
4586          * Create a list of virtual methods to avoid calling 
4587          * mono_class_get_virtual_methods () which is slow because of the metadata
4588          * optimization.
4589          */
4590         {
4591                 gpointer iter = NULL;
4592                 MonoMethod *cm;
4593
4594                 virt_methods = NULL;
4595                 while ((cm = mono_class_get_virtual_methods (klass, &iter))) {
4596                         virt_methods = g_slist_prepend (virt_methods, cm);
4597                 }
4598                 if (mono_class_has_failure (klass))
4599                         goto fail;
4600         }
4601         
4602         // Loop on all implemented interfaces...
4603         for (i = 0; i < klass->interface_offsets_count; i++) {
4604                 MonoClass *parent = klass->parent;
4605                 int ic_offset;
4606                 gboolean interface_is_explicitly_implemented_by_class;
4607                 int im_index;
4608                 
4609                 ic = klass->interfaces_packed [i];
4610                 ic_offset = mono_class_interface_offset (klass, ic);
4611
4612                 mono_class_setup_methods (ic);
4613                 if (mono_class_has_failure (ic))
4614                         goto fail;
4615                 
4616                 // Check if this interface is explicitly implemented (instead of just inherited)
4617                 if (parent != NULL) {
4618                         int implemented_interfaces_index;
4619                         interface_is_explicitly_implemented_by_class = FALSE;
4620                         for (implemented_interfaces_index = 0; implemented_interfaces_index < klass->interface_count; implemented_interfaces_index++) {
4621                                 if (ic == klass->interfaces [implemented_interfaces_index]) {
4622                                         interface_is_explicitly_implemented_by_class = TRUE;
4623                                         break;
4624                                 }
4625                         }
4626                 } else {
4627                         interface_is_explicitly_implemented_by_class = TRUE;
4628                 }
4629                 
4630                 // Loop on all interface methods...
4631                 int mcount = mono_class_get_method_count (ic);
4632                 for (im_index = 0; im_index < mcount; im_index++) {
4633                         MonoMethod *im = ic->methods [im_index];
4634                         int im_slot = ic_offset + im->slot;
4635                         MonoMethod *override_im = (override_map != NULL) ? (MonoMethod *)g_hash_table_lookup (override_map, im) : NULL;
4636                         
4637                         if (im->flags & METHOD_ATTRIBUTE_STATIC)
4638                                 continue;
4639
4640                         TRACE_INTERFACE_VTABLE (printf ("\tchecking iface method %s\n", mono_method_full_name (im,1)));
4641
4642                         // If there is an explicit implementation, just use it right away,
4643                         // otherwise look for a matching method
4644                         if (override_im == NULL) {
4645                                 int cm_index;
4646                                 MonoMethod *cm;
4647
4648                                 // First look for a suitable method among the class methods
4649                                 for (l = virt_methods; l; l = l->next) {
4650                                         cm = (MonoMethod *)l->data;
4651                                         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)));
4652                                         if (check_interface_method_override (klass, im, cm, TRUE, interface_is_explicitly_implemented_by_class, (vtable [im_slot] == NULL))) {
4653                                                 TRACE_INTERFACE_VTABLE (printf ("[check ok]: ASSIGNING"));
4654                                                 vtable [im_slot] = cm;
4655                                                 /* Why do we need this? */
4656                                                 if (cm->slot < 0) {
4657                                                         cm->slot = im_slot;
4658                                                 }
4659                                         }
4660                                         TRACE_INTERFACE_VTABLE (printf ("\n"));
4661                                         if (mono_class_has_failure (klass))  /*Might be set by check_interface_method_override*/
4662                                                 goto fail;
4663                                 }
4664                                 
4665                                 // If the slot is still empty, look in all the inherited virtual methods...
4666                                 if ((vtable [im_slot] == NULL) && klass->parent != NULL) {
4667                                         MonoClass *parent = klass->parent;
4668                                         // Reverse order, so that last added methods are preferred
4669                                         for (cm_index = parent->vtable_size - 1; cm_index >= 0; cm_index--) {
4670                                                 MonoMethod *cm = parent->vtable [cm_index];
4671                                                 
4672                                                 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));
4673                                                 if ((cm != NULL) && check_interface_method_override (klass, im, cm, FALSE, FALSE, TRUE)) {
4674                                                         TRACE_INTERFACE_VTABLE (printf ("[everything ok]: ASSIGNING"));
4675                                                         vtable [im_slot] = cm;
4676                                                         /* Why do we need this? */
4677                                                         if (cm->slot < 0) {
4678                                                                 cm->slot = im_slot;
4679                                                         }
4680                                                         break;
4681                                                 }
4682                                                 if (mono_class_has_failure (klass)) /*Might be set by check_interface_method_override*/
4683                                                         goto fail;
4684                                                 TRACE_INTERFACE_VTABLE ((cm != NULL) && printf ("\n"));
4685                                         }
4686                                 }
4687                         } else {
4688                                 g_assert (vtable [im_slot] == override_im);
4689                         }
4690                 }
4691         }
4692         
4693         // If the class is not abstract, check that all its interface slots are full.
4694         // The check is done here and not directly at the end of the loop above because
4695         // it can happen (for injected generic array interfaces) that the same slot is
4696         // processed multiple times (those interfaces have overlapping slots), and it
4697         // will not always be the first pass the one that fills the slot.
4698         if (!mono_class_is_abstract (klass)) {
4699                 for (i = 0; i < klass->interface_offsets_count; i++) {
4700                         int ic_offset;
4701                         int im_index;
4702                         
4703                         ic = klass->interfaces_packed [i];
4704                         ic_offset = mono_class_interface_offset (klass, ic);
4705                         
4706                         int mcount = mono_class_get_method_count (ic);
4707                         for (im_index = 0; im_index < mcount; im_index++) {
4708                                 MonoMethod *im = ic->methods [im_index];
4709                                 int im_slot = ic_offset + im->slot;
4710                                 
4711                                 if (im->flags & METHOD_ATTRIBUTE_STATIC)
4712                                         continue;
4713
4714                                 TRACE_INTERFACE_VTABLE (printf ("      [class is not abstract, checking slot %d for interface '%s'.'%s', method %s, slot check is %d]\n",
4715                                                 im_slot, ic->name_space, ic->name, im->name, (vtable [im_slot] == NULL)));
4716                                 if (vtable [im_slot] == NULL) {
4717                                         print_unimplemented_interface_method_info (klass, ic, im, im_slot, overrides, onum);
4718                                         goto fail;
4719                                 }
4720                         }
4721                 }
4722         }
4723
4724         TRACE_INTERFACE_VTABLE (print_vtable_full (klass, vtable, cur_slot, first_non_interface_slot, "AFTER SETTING UP INTERFACE METHODS", FALSE));
4725         for (l = virt_methods; l; l = l->next) {
4726                 cm = (MonoMethod *)l->data;
4727                 /*
4728                  * If the method is REUSE_SLOT, we must check in the
4729                  * base class for a method to override.
4730                  */
4731                 if (!(cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
4732                         int slot = -1;
4733                         for (k = klass->parent; k ; k = k->parent) {
4734                                 gpointer k_iter;
4735                                 MonoMethod *m1;
4736
4737                                 k_iter = NULL;
4738                                 while ((m1 = mono_class_get_virtual_methods (k, &k_iter))) {
4739                                         MonoMethodSignature *cmsig, *m1sig;
4740
4741                                         cmsig = mono_method_signature (cm);
4742                                         m1sig = mono_method_signature (m1);
4743
4744                                         if (!cmsig || !m1sig) {
4745                                                 /* FIXME proper error message */
4746                                                 mono_class_set_type_load_failure (klass, "");
4747                                                 return;
4748                                         }
4749
4750                                         if (!strcmp(cm->name, m1->name) && 
4751                                             mono_metadata_signature_equal (cmsig, m1sig)) {
4752
4753                                                 if (mono_security_core_clr_enabled ())
4754                                                         mono_security_core_clr_check_override (klass, cm, m1);
4755
4756                                                 slot = mono_method_get_vtable_slot (m1);
4757                                                 if (slot == -1)
4758                                                         goto fail;
4759
4760                                                 if (is_wcf_hack_disabled () && !mono_method_can_access_method_full (cm, m1, NULL)) {
4761                                                         char *body_name = mono_method_full_name (cm, TRUE);
4762                                                         char *decl_name = mono_method_full_name (m1, TRUE);
4763                                                         mono_class_set_type_load_failure (klass, "Method %s overrides method '%s' which is not accessible", body_name, decl_name);
4764                                                         g_free (body_name);
4765                                                         g_free (decl_name);
4766                                                         goto fail;
4767                                                 }
4768
4769                                                 g_assert (cm->slot < max_vtsize);
4770                                                 if (!override_map)
4771                                                         override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
4772                                                 TRACE_INTERFACE_VTABLE (printf ("adding iface override from %s [%p] to %s [%p]\n",
4773                                                         mono_method_full_name (m1, 1), m1,
4774                                                         mono_method_full_name (cm, 1), cm));
4775                                                 g_hash_table_insert (override_map, m1, cm);
4776                                                 break;
4777                                         }
4778                                 }
4779                                 if (mono_class_has_failure (k))
4780                                         goto fail;
4781                                 
4782                                 if (slot >= 0) 
4783                                         break;
4784                         }
4785                         if (slot >= 0)
4786                                 cm->slot = slot;
4787                 }
4788
4789                 /*Non final newslot methods must be given a non-interface vtable slot*/
4790                 if ((cm->flags & METHOD_ATTRIBUTE_NEW_SLOT) && !(cm->flags & METHOD_ATTRIBUTE_FINAL) && cm->slot >= 0)
4791                         cm->slot = -1;
4792
4793                 if (cm->slot < 0)
4794                         cm->slot = cur_slot++;
4795
4796                 if (!(cm->flags & METHOD_ATTRIBUTE_ABSTRACT))
4797                         vtable [cm->slot] = cm;
4798         }
4799
4800         /* override non interface methods */
4801         for (i = 0; i < onum; i++) {
4802                 MonoMethod *decl = overrides [i*2];
4803                 if (!MONO_CLASS_IS_INTERFACE (decl->klass)) {
4804                         g_assert (decl->slot != -1);
4805                         vtable [decl->slot] = overrides [i*2 + 1];
4806                         overrides [i * 2 + 1]->slot = decl->slot;
4807                         if (!override_map)
4808                                 override_map = g_hash_table_new (mono_aligned_addr_hash, NULL);
4809                         TRACE_INTERFACE_VTABLE (printf ("adding explicit override from %s [%p] to %s [%p]\n", 
4810                                 mono_method_full_name (decl, 1), decl,
4811                                 mono_method_full_name (overrides [i * 2 + 1], 1), overrides [i * 2 + 1]));
4812                         g_hash_table_insert (override_map, decl, overrides [i * 2 + 1]);
4813
4814                         if (mono_security_core_clr_enabled ())
4815                                 mono_security_core_clr_check_override (klass, vtable [decl->slot], decl);
4816                 }
4817         }
4818
4819         /*
4820          * If a method occupies more than one place in the vtable, and it is
4821          * overriden, then change the other occurances too.
4822          */
4823         if (override_map) {
4824                 MonoMethod *cm;
4825
4826                 for (i = 0; i < max_vtsize; ++i)
4827                         if (vtable [i]) {
4828                                 TRACE_INTERFACE_VTABLE (printf ("checking slot %d method %s[%p] for overrides\n", i, mono_method_full_name (vtable [i], 1), vtable [i]));
4829
4830                                 cm = (MonoMethod *)g_hash_table_lookup (override_map, vtable [i]);
4831                                 if (cm)
4832                                         vtable [i] = cm;
4833                         }
4834
4835                 g_hash_table_destroy (override_map);
4836                 override_map = NULL;
4837         }
4838
4839         g_slist_free (virt_methods);
4840         virt_methods = NULL;
4841
4842         /* Ensure that all vtable slots are filled with concrete instance methods */
4843         if (!mono_class_is_abstract (klass)) {
4844                 for (i = 0; i < cur_slot; ++i) {
4845                         if (vtable [i] == NULL || (vtable [i]->flags & (METHOD_ATTRIBUTE_ABSTRACT | METHOD_ATTRIBUTE_STATIC))) {
4846                                 char *type_name = mono_type_get_full_name (klass);
4847                                 char *method_name = vtable [i] ? mono_method_full_name (vtable [i], TRUE) : g_strdup ("none");
4848                                 mono_class_set_type_load_failure (klass, "Type %s has invalid vtable method slot %d with method %s", type_name, i, method_name);
4849                                 g_free (type_name);
4850                                 g_free (method_name);
4851                                 g_free (vtable);
4852                                 return;
4853                         }
4854                 }
4855         }
4856
4857         if (mono_class_is_ginst (klass)) {
4858                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
4859
4860                 mono_class_init (gklass);
4861
4862                 klass->vtable_size = MAX (gklass->vtable_size, cur_slot);
4863         } else {
4864                 /* Check that the vtable_size value computed in mono_class_init () is correct */
4865                 if (klass->vtable_size)
4866                         g_assert (cur_slot == klass->vtable_size);
4867                 klass->vtable_size = cur_slot;
4868         }
4869
4870         /* Try to share the vtable with our parent. */
4871         if (klass->parent && (klass->parent->vtable_size == klass->vtable_size) && (memcmp (klass->parent->vtable, vtable, sizeof (gpointer) * klass->vtable_size) == 0)) {
4872                 mono_memory_barrier ();
4873                 klass->vtable = klass->parent->vtable;
4874         } else {
4875                 MonoMethod **tmp = (MonoMethod **)mono_class_alloc0 (klass, sizeof (gpointer) * klass->vtable_size);
4876                 memcpy (tmp, vtable,  sizeof (gpointer) * klass->vtable_size);
4877                 mono_memory_barrier ();
4878                 klass->vtable = tmp;
4879         }
4880
4881         DEBUG_INTERFACE_VTABLE (print_vtable_full (klass, klass->vtable, klass->vtable_size, first_non_interface_slot, "FINALLY", FALSE));
4882         if (mono_print_vtable) {
4883                 int icount = 0;
4884
4885                 print_implemented_interfaces (klass);
4886                 
4887                 for (i = 0; i <= max_iid; i++)
4888                         if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, i))
4889                                 icount++;
4890
4891                 printf ("VTable %s (vtable entries = %d, interfaces = %d)\n", mono_type_full_name (&klass->byval_arg),
4892                         klass->vtable_size, icount);
4893
4894                 for (i = 0; i < cur_slot; ++i) {
4895                         MonoMethod *cm;
4896                
4897                         cm = vtable [i];
4898                         if (cm) {
4899                                 printf ("  slot assigned: %03d, slot index: %03d %s\n", i, cm->slot,
4900                                         mono_method_full_name (cm, TRUE));
4901                         }
4902                 }
4903
4904
4905                 if (icount) {
4906                         printf ("Interfaces %s.%s (max_iid = %d)\n", klass->name_space,
4907                                 klass->name, max_iid);
4908         
4909                         for (i = 0; i < klass->interface_count; i++) {
4910                                 ic = klass->interfaces [i];
4911                                 printf ("  slot offset: %03d, method count: %03d, iid: %03d %s\n",  
4912                                         mono_class_interface_offset (klass, ic),
4913                                         count_virtual_methods (ic), ic->interface_id, mono_type_full_name (&ic->byval_arg));
4914                         }
4915
4916                         for (k = klass->parent; k ; k = k->parent) {
4917                                 for (i = 0; i < k->interface_count; i++) {
4918                                         ic = k->interfaces [i]; 
4919                                         printf ("  parent slot offset: %03d, method count: %03d, iid: %03d %s\n",  
4920                                                 mono_class_interface_offset (klass, ic),
4921                                                 count_virtual_methods (ic), ic->interface_id, mono_type_full_name (&ic->byval_arg));
4922                                 }
4923                         }
4924                 }
4925         }
4926
4927         g_free (vtable);
4928
4929         VERIFY_INTERFACE_VTABLE (mono_class_verify_vtable (klass));
4930         return;
4931
4932 fail:
4933         {
4934         char *name = mono_type_get_full_name (klass);
4935         mono_class_set_type_load_failure (klass, "VTable setup of type %s failed", name);
4936         g_free (name);
4937         g_free (vtable);
4938         if (override_map)
4939                 g_hash_table_destroy (override_map);
4940         if (virt_methods)
4941                 g_slist_free (virt_methods);
4942         }
4943 }
4944
4945 /*
4946  * mono_method_get_vtable_slot:
4947  *
4948  *   Returns method->slot, computing it if neccesary. Return -1 on failure.
4949  * LOCKING: Acquires the loader lock.
4950  *
4951  * FIXME Use proper MonoError machinery here.
4952  */
4953 int
4954 mono_method_get_vtable_slot (MonoMethod *method)
4955 {
4956         if (method->slot == -1) {
4957                 mono_class_setup_vtable (method->klass);
4958                 if (mono_class_has_failure (method->klass))
4959                         return -1;
4960                 if (method->slot == -1) {
4961                         MonoClass *gklass;
4962                         int i, mcount;
4963
4964                         if (!mono_class_is_ginst (method->klass)) {
4965                                 g_assert (method->is_inflated);
4966                                 return mono_method_get_vtable_slot (((MonoMethodInflated*)method)->declaring);
4967                         }
4968
4969                         /* This can happen for abstract methods of generic instances due to the shortcut code in mono_class_setup_vtable_general (). */
4970                         g_assert (mono_class_is_ginst (method->klass));
4971                         gklass = mono_class_get_generic_class (method->klass)->container_class;
4972                         mono_class_setup_methods (method->klass);
4973                         g_assert (method->klass->methods);
4974                         mcount = mono_class_get_method_count (method->klass);
4975                         for (i = 0; i < mcount; ++i) {
4976                                 if (method->klass->methods [i] == method)
4977                                         break;
4978                         }
4979                         g_assert (i < mcount);
4980                         g_assert (gklass->methods);
4981                         method->slot = gklass->methods [i]->slot;
4982                 }
4983                 g_assert (method->slot != -1);
4984         }
4985         return method->slot;
4986 }
4987
4988 /**
4989  * mono_method_get_vtable_index:
4990  * @method: a method
4991  *
4992  * Returns the index into the runtime vtable to access the method or,
4993  * in the case of a virtual generic method, the virtual generic method
4994  * thunk. Returns -1 on failure.
4995  *
4996  * FIXME Use proper MonoError machinery here.
4997  */
4998 int
4999 mono_method_get_vtable_index (MonoMethod *method)
5000 {
5001         if (method->is_inflated && (method->flags & METHOD_ATTRIBUTE_VIRTUAL)) {
5002                 MonoMethodInflated *imethod = (MonoMethodInflated*)method;
5003                 if (imethod->declaring->is_generic)
5004                         return mono_method_get_vtable_slot (imethod->declaring);
5005         }
5006         return mono_method_get_vtable_slot (method);
5007 }
5008
5009 static MonoMethod *default_ghc = NULL;
5010 static MonoMethod *default_finalize = NULL;
5011 static int finalize_slot = -1;
5012 static int ghc_slot = -1;
5013
5014 static void
5015 initialize_object_slots (MonoClass *klass)
5016 {
5017         int i;
5018         if (default_ghc)
5019                 return;
5020         if (klass == mono_defaults.object_class) {
5021                 mono_class_setup_vtable (klass);
5022                 for (i = 0; i < klass->vtable_size; ++i) {
5023                         MonoMethod *cm = klass->vtable [i];
5024        
5025                         if (!strcmp (cm->name, "GetHashCode"))
5026                                 ghc_slot = i;
5027                         else if (!strcmp (cm->name, "Finalize"))
5028                                 finalize_slot = i;
5029                 }
5030
5031                 g_assert (ghc_slot > 0);
5032                 default_ghc = klass->vtable [ghc_slot];
5033
5034                 g_assert (finalize_slot > 0);
5035                 default_finalize = klass->vtable [finalize_slot];
5036         }
5037 }
5038
5039 typedef struct {
5040         MonoMethod *array_method;
5041         char *name;
5042 } GenericArrayMethodInfo;
5043
5044 static int generic_array_method_num = 0;
5045 static GenericArrayMethodInfo *generic_array_method_info = NULL;
5046
5047 static int
5048 generic_array_methods (MonoClass *klass)
5049 {
5050         int i, count_generic = 0, mcount;
5051         GList *list = NULL, *tmp;
5052         if (generic_array_method_num)
5053                 return generic_array_method_num;
5054         mono_class_setup_methods (klass->parent); /*This is setting up System.Array*/
5055         g_assert (!mono_class_has_failure (klass->parent)); /*So hitting this assert is a huge problem*/
5056         mcount = mono_class_get_method_count (klass->parent);
5057         for (i = 0; i < mcount; i++) {
5058                 MonoMethod *m = klass->parent->methods [i];
5059                 if (!strncmp (m->name, "InternalArray__", 15)) {
5060                         count_generic++;
5061                         list = g_list_prepend (list, m);
5062                 }
5063         }
5064         list = g_list_reverse (list);
5065         generic_array_method_info = (GenericArrayMethodInfo *)mono_image_alloc (mono_defaults.corlib, sizeof (GenericArrayMethodInfo) * count_generic);
5066         i = 0;
5067         for (tmp = list; tmp; tmp = tmp->next) {
5068                 const char *mname, *iname;
5069                 gchar *name;
5070                 MonoMethod *m = (MonoMethod *)tmp->data;
5071                 const char *ireadonlylist_prefix = "InternalArray__IReadOnlyList_";
5072                 const char *ireadonlycollection_prefix = "InternalArray__IReadOnlyCollection_";
5073
5074                 generic_array_method_info [i].array_method = m;
5075                 if (!strncmp (m->name, "InternalArray__ICollection_", 27)) {
5076                         iname = "System.Collections.Generic.ICollection`1.";
5077                         mname = m->name + 27;
5078                 } else if (!strncmp (m->name, "InternalArray__IEnumerable_", 27)) {
5079                         iname = "System.Collections.Generic.IEnumerable`1.";
5080                         mname = m->name + 27;
5081                 } else if (!strncmp (m->name, ireadonlylist_prefix, strlen (ireadonlylist_prefix))) {
5082                         iname = "System.Collections.Generic.IReadOnlyList`1.";
5083                         mname = m->name + strlen (ireadonlylist_prefix);
5084                 } else if (!strncmp (m->name, ireadonlycollection_prefix, strlen (ireadonlycollection_prefix))) {
5085                         iname = "System.Collections.Generic.IReadOnlyCollection`1.";
5086                         mname = m->name + strlen (ireadonlycollection_prefix);
5087                 } else if (!strncmp (m->name, "InternalArray__", 15)) {
5088                         iname = "System.Collections.Generic.IList`1.";
5089                         mname = m->name + 15;
5090                 } else {
5091                         g_assert_not_reached ();
5092                 }
5093
5094                 name = (gchar *)mono_image_alloc (mono_defaults.corlib, strlen (iname) + strlen (mname) + 1);
5095                 strcpy (name, iname);
5096                 strcpy (name + strlen (iname), mname);
5097                 generic_array_method_info [i].name = name;
5098                 i++;
5099         }
5100         /*g_print ("array generic methods: %d\n", count_generic);*/
5101
5102         generic_array_method_num = count_generic;
5103         g_list_free (list);
5104         return generic_array_method_num;
5105 }
5106
5107 static void
5108 setup_generic_array_ifaces (MonoClass *klass, MonoClass *iface, MonoMethod **methods, int pos)
5109 {
5110         MonoGenericContext tmp_context;
5111         int i;
5112
5113         tmp_context.class_inst = NULL;
5114         tmp_context.method_inst = mono_class_get_generic_class (iface)->context.class_inst;
5115         //g_print ("setting up array interface: %s\n", mono_type_get_name_full (&iface->byval_arg, 0));
5116
5117         for (i = 0; i < generic_array_method_num; i++) {
5118                 MonoError error;
5119                 MonoMethod *m = generic_array_method_info [i].array_method;
5120                 MonoMethod *inflated;
5121
5122                 inflated = mono_class_inflate_generic_method_checked (m, &tmp_context, &error);
5123                 g_assert (mono_error_ok (&error)); /*FIXME proper error handling*/
5124                 methods [pos++] = mono_marshal_get_generic_array_helper (klass, iface, generic_array_method_info [i].name, inflated);
5125         }
5126 }
5127
5128 static char*
5129 concat_two_strings_with_zero (MonoImage *image, const char *s1, const char *s2)
5130 {
5131         int null_length = strlen ("(null)");
5132         int len = (s1 ? strlen (s1) : null_length) + (s2 ? strlen (s2) : null_length) + 2;
5133         char *s = (char *)mono_image_alloc (image, len);
5134         int result;
5135
5136         result = g_snprintf (s, len, "%s%c%s", s1 ? s1 : "(null)", '\0', s2 ? s2 : "(null)");
5137         g_assert (result == len - 1);
5138
5139         return s;
5140 }
5141
5142 /**
5143  * mono_class_init:
5144  * @klass: the class to initialize
5145  *
5146  *   Compute the instance_size, class_size and other infos that cannot be 
5147  * computed at mono_class_get() time. Also compute vtable_size if possible. 
5148  * Returns TRUE on success or FALSE if there was a problem in loading
5149  * the type (incorrect assemblies, missing assemblies, methods, etc).
5150  * Initializes the following fields in @klass:
5151  * - all the fields initialized by mono_class_init_sizes ()
5152  * - has_cctor
5153  * - ghcimpl
5154  * - inited
5155  *
5156  * LOCKING: Acquires the loader lock.
5157  */
5158 gboolean
5159 mono_class_init (MonoClass *klass)
5160 {
5161         int i, vtable_size = 0, array_method_count = 0;
5162         MonoCachedClassInfo cached_info;
5163         gboolean has_cached_info;
5164         gboolean locked = FALSE;
5165         gboolean ghcimpl = FALSE;
5166         gboolean has_cctor = FALSE;
5167         int first_iface_slot = 0;
5168         
5169         g_assert (klass);
5170
5171         /* Double-checking locking pattern */
5172         if (klass->inited || mono_class_has_failure (klass))
5173                 return !mono_class_has_failure (klass);
5174
5175         /*g_print ("Init class %s\n", mono_type_get_full_name (klass));*/
5176
5177         /*
5178          * This function can recursively call itself.
5179          */
5180         GSList *init_list = (GSList *)mono_native_tls_get_value (init_pending_tls_id);
5181         if (g_slist_find (init_list, klass)) {
5182                 mono_class_set_type_load_failure (klass, "Recursive type definition detected");
5183                 goto leave;
5184         }
5185         init_list = g_slist_prepend (init_list, klass);
5186         mono_native_tls_set_value (init_pending_tls_id, init_list);
5187
5188         /*
5189          * We want to avoid doing complicated work inside locks, so we compute all the required
5190          * information and write it to @klass inside a lock.
5191          */
5192
5193         if (mono_verifier_is_enabled_for_class (klass) && !mono_verifier_verify_class (klass)) {
5194                 mono_class_set_type_load_failure (klass, "%s", concat_two_strings_with_zero (klass->image, klass->name, klass->image->assembly_name));
5195                 goto leave;
5196         }
5197
5198         if (klass->byval_arg.type == MONO_TYPE_ARRAY || klass->byval_arg.type == MONO_TYPE_SZARRAY) {
5199                 MonoClass *element_class = klass->element_class;
5200                 if (!element_class->inited) 
5201                         mono_class_init (element_class);
5202                 if (mono_class_set_type_load_failure_causedby_class (klass, element_class, "Could not load array element class"))
5203                         goto leave;
5204         }
5205
5206         mono_stats.initialized_class_count++;
5207
5208         if (mono_class_is_ginst (klass) && !mono_class_get_generic_class (klass)->is_dynamic) {
5209                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
5210
5211                 mono_class_init (gklass);
5212                 if (mono_class_set_type_load_failure_causedby_class (klass, gklass, "Generic Type Definition failed to init"))
5213                         goto leave;
5214
5215                 mono_class_setup_interface_id (klass);
5216         }
5217
5218         if (klass->parent && !klass->parent->inited)
5219                 mono_class_init (klass->parent);
5220
5221         has_cached_info = mono_class_get_cached_class_info (klass, &cached_info);
5222
5223         /* Compute instance size etc. */
5224         init_sizes_with_info (klass, has_cached_info ? &cached_info : NULL);
5225         if (mono_class_has_failure (klass))
5226                 goto leave;
5227
5228         mono_class_setup_supertypes (klass);
5229
5230         if (!default_ghc)
5231                 initialize_object_slots (klass);
5232
5233         /* 
5234          * Initialize the rest of the data without creating a generic vtable if possible.
5235          * If possible, also compute vtable_size, so mono_class_create_runtime_vtable () can
5236          * also avoid computing a generic vtable.
5237          */
5238         if (has_cached_info) {
5239                 /* AOT case */
5240                 vtable_size = cached_info.vtable_size;
5241                 ghcimpl = cached_info.ghcimpl;
5242                 has_cctor = cached_info.has_cctor;
5243         } else if (klass->rank == 1 && klass->byval_arg.type == MONO_TYPE_SZARRAY) {
5244                 /* SZARRAY can have 2 vtable layouts, with and without the stelemref method.
5245                  * The first slot if for array with.
5246                  */
5247                 static int szarray_vtable_size[2] = { 0 };
5248
5249                 int slot = MONO_TYPE_IS_REFERENCE (&klass->element_class->byval_arg) ? 0 : 1;
5250
5251                 /* SZARRAY case */
5252                 if (!szarray_vtable_size [slot]) {
5253                         mono_class_setup_vtable (klass);
5254                         szarray_vtable_size [slot] = klass->vtable_size;
5255                         vtable_size = klass->vtable_size;
5256                 } else {
5257                         vtable_size = szarray_vtable_size[slot];
5258                 }
5259         } else if (mono_class_is_ginst (klass) && !MONO_CLASS_IS_INTERFACE (klass)) {
5260                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
5261
5262                 /* Generic instance case */
5263                 ghcimpl = gklass->ghcimpl;
5264                 has_cctor = gklass->has_cctor;
5265
5266                 mono_class_setup_vtable (gklass);
5267                 if (mono_class_set_type_load_failure_causedby_class (klass, gklass, "Generic type definition failed to init"))
5268                         goto leave;
5269
5270                 vtable_size = gklass->vtable_size;
5271         } else {
5272                 /* General case */
5273
5274                 /* ghcimpl is not currently used
5275                 klass->ghcimpl = 1;
5276                 if (klass->parent) {
5277                         MonoMethod *cmethod = klass->vtable [ghc_slot];
5278                         if (cmethod->is_inflated)
5279                                 cmethod = ((MonoMethodInflated*)cmethod)->declaring;
5280                         if (cmethod == default_ghc) {
5281                                 klass->ghcimpl = 0;
5282                         }
5283                 }
5284                 */
5285
5286                 /* C# doesn't allow interfaces to have cctors */
5287                 if (!MONO_CLASS_IS_INTERFACE (klass) || klass->image != mono_defaults.corlib) {
5288                         MonoMethod *cmethod = NULL;
5289
5290                         if (mono_class_is_ginst (klass)) {
5291                                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
5292
5293                                 /* Generic instance case */
5294                                 ghcimpl = gklass->ghcimpl;
5295                                 has_cctor = gklass->has_cctor;
5296                         } else if (klass->type_token && !image_is_dynamic(klass->image)) {
5297                                 cmethod = find_method_in_metadata (klass, ".cctor", 0, METHOD_ATTRIBUTE_SPECIAL_NAME);
5298                                 /* The find_method function ignores the 'flags' argument */
5299                                 if (cmethod && (cmethod->flags & METHOD_ATTRIBUTE_SPECIAL_NAME))
5300                                         has_cctor = 1;
5301                         } else {
5302                                 mono_class_setup_methods (klass);
5303                                 if (mono_class_has_failure (klass))
5304                                         goto leave;
5305
5306                                 int mcount = mono_class_get_method_count (klass);
5307                                 for (i = 0; i < mcount; ++i) {
5308                                         MonoMethod *method = klass->methods [i];
5309                                         if ((method->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) && 
5310                                                 (strcmp (".cctor", method->name) == 0)) {
5311                                                 has_cctor = 1;
5312                                                 break;
5313                                         }
5314                                 }
5315                         }
5316                 }
5317         }
5318
5319         if (klass->rank) {
5320                 array_method_count = 3 + (klass->rank > 1? 2: 1);
5321
5322                 if (klass->interface_count) {
5323                         int count_generic = generic_array_methods (klass);
5324                         array_method_count += klass->interface_count * count_generic;
5325                 }
5326         }
5327
5328         if (klass->parent) {
5329                 if (!klass->parent->vtable_size)
5330                         mono_class_setup_vtable (klass->parent);
5331                 if (mono_class_set_type_load_failure_causedby_class (klass, klass->parent, "Parent class vtable failed to initialize"))
5332                         goto leave;
5333                 g_assert (klass->parent->vtable_size);
5334                 first_iface_slot = klass->parent->vtable_size;
5335                 if (mono_class_need_stelemref_method (klass))
5336                         ++first_iface_slot;
5337         }
5338
5339         /*
5340          * Do the actual changes to @klass inside the loader lock
5341          */
5342         mono_loader_lock ();
5343         locked = TRUE;
5344
5345         if (klass->inited || mono_class_has_failure (klass)) {
5346                 mono_loader_unlock ();
5347                 /* Somebody might have gotten in before us */
5348                 return !mono_class_has_failure (klass);
5349         }
5350
5351         mono_stats.initialized_class_count++;
5352
5353         if (mono_class_is_ginst (klass) && !mono_class_get_generic_class (klass)->is_dynamic)
5354                 mono_stats.generic_class_count++;
5355
5356         if (mono_class_is_ginst (klass) || image_is_dynamic (klass->image) || !klass->type_token || (has_cached_info && !cached_info.has_nested_classes))
5357                 klass->nested_classes_inited = TRUE;
5358         klass->ghcimpl = ghcimpl;
5359         klass->has_cctor = has_cctor;
5360         if (vtable_size)
5361                 klass->vtable_size = vtable_size;
5362         if (has_cached_info) {
5363                 klass->has_finalize = cached_info.has_finalize;
5364                 klass->has_finalize_inited = TRUE;
5365         }
5366         if (klass->rank)
5367                 mono_class_set_method_count (klass, array_method_count);
5368
5369         mono_loader_unlock ();
5370         locked = FALSE;
5371
5372         setup_interface_offsets (klass, first_iface_slot, TRUE);
5373
5374         if (mono_security_core_clr_enabled ())
5375                 mono_security_core_clr_check_inheritance (klass);
5376
5377         if (mono_class_is_ginst (klass) && !mono_verifier_class_is_valid_generic_instantiation (klass))
5378                 mono_class_set_type_load_failure (klass, "Invalid generic instantiation");
5379
5380         goto leave;
5381
5382  leave:
5383         init_list = g_slist_remove (init_list, klass);
5384         mono_native_tls_set_value (init_pending_tls_id, init_list);
5385
5386         /* Because of the double-checking locking pattern */
5387         mono_memory_barrier ();
5388         klass->inited = 1;
5389
5390         if (locked)
5391                 mono_loader_unlock ();
5392
5393         return !mono_class_has_failure (klass);
5394 }
5395
5396 /*
5397  * mono_class_has_finalizer:
5398  *
5399  *   Return whenever KLASS has a finalizer, initializing klass->has_finalizer in the
5400  * process.
5401  */
5402 gboolean
5403 mono_class_has_finalizer (MonoClass *klass)
5404 {
5405         gboolean has_finalize = FALSE;
5406
5407         if (klass->has_finalize_inited)
5408                 return klass->has_finalize;
5409
5410         /* Interfaces and valuetypes are not supposed to have finalizers */
5411         if (!(MONO_CLASS_IS_INTERFACE (klass) || klass->valuetype)) {
5412                 MonoMethod *cmethod = NULL;
5413
5414                 if (klass->rank == 1 && klass->byval_arg.type == MONO_TYPE_SZARRAY) {
5415                 } else if (mono_class_is_ginst (klass)) {
5416                         MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
5417
5418                         has_finalize = mono_class_has_finalizer (gklass);
5419                 } else if (klass->parent && klass->parent->has_finalize) {
5420                         has_finalize = TRUE;
5421                 } else {
5422                         if (klass->parent) {
5423                                 /*
5424                                  * Can't search in metadata for a method named Finalize, because that
5425                                  * ignores overrides.
5426                                  */
5427                                 mono_class_setup_vtable (klass);
5428                                 if (mono_class_has_failure (klass))
5429                                         cmethod = NULL;
5430                                 else
5431                                         cmethod = klass->vtable [finalize_slot];
5432                         }
5433
5434                         if (cmethod) {
5435                                 g_assert (klass->vtable_size > finalize_slot);
5436
5437                                 if (klass->parent) {
5438                                         if (cmethod->is_inflated)
5439                                                 cmethod = ((MonoMethodInflated*)cmethod)->declaring;
5440                                         if (cmethod != default_finalize)
5441                                                 has_finalize = TRUE;
5442                                 }
5443                         }
5444                 }
5445         }
5446
5447         mono_image_lock (klass->image);
5448
5449         if (!klass->has_finalize_inited) {
5450                 klass->has_finalize = has_finalize ? 1 : 0;
5451
5452                 mono_memory_barrier ();
5453                 klass->has_finalize_inited = TRUE;
5454         }
5455
5456         mono_image_unlock (klass->image);
5457
5458         return klass->has_finalize;
5459 }
5460
5461 gboolean
5462 mono_is_corlib_image (MonoImage *image)
5463 {
5464         return image == mono_defaults.corlib;
5465 }
5466
5467 /*
5468  * LOCKING: this assumes the loader lock is held
5469  */
5470 void
5471 mono_class_setup_mono_type (MonoClass *klass)
5472 {
5473         const char *name = klass->name;
5474         const char *nspace = klass->name_space;
5475         gboolean is_corlib = mono_is_corlib_image (klass->image);
5476
5477         klass->this_arg.byref = 1;
5478         klass->this_arg.data.klass = klass;
5479         klass->this_arg.type = MONO_TYPE_CLASS;
5480         klass->byval_arg.data.klass = klass;
5481         klass->byval_arg.type = MONO_TYPE_CLASS;
5482
5483         if (is_corlib && !strcmp (nspace, "System")) {
5484                 if (!strcmp (name, "ValueType")) {
5485                         /*
5486                          * do not set the valuetype bit for System.ValueType.
5487                          * klass->valuetype = 1;
5488                          */
5489                         klass->blittable = TRUE;
5490                 } else if (!strcmp (name, "Enum")) {
5491                         /*
5492                          * do not set the valuetype bit for System.Enum.
5493                          * klass->valuetype = 1;
5494                          */
5495                         klass->valuetype = 0;
5496                         klass->enumtype = 0;
5497                 } else if (!strcmp (name, "Object")) {
5498                         klass->byval_arg.type = MONO_TYPE_OBJECT;
5499                         klass->this_arg.type = MONO_TYPE_OBJECT;
5500                 } else if (!strcmp (name, "String")) {
5501                         klass->byval_arg.type = MONO_TYPE_STRING;
5502                         klass->this_arg.type = MONO_TYPE_STRING;
5503                 } else if (!strcmp (name, "TypedReference")) {
5504                         klass->byval_arg.type = MONO_TYPE_TYPEDBYREF;
5505                         klass->this_arg.type = MONO_TYPE_TYPEDBYREF;
5506                 }
5507         }
5508
5509         if (klass->valuetype) {
5510                 int t = MONO_TYPE_VALUETYPE;
5511
5512                 if (is_corlib && !strcmp (nspace, "System")) {
5513                         switch (*name) {
5514                         case 'B':
5515                                 if (!strcmp (name, "Boolean")) {
5516                                         t = MONO_TYPE_BOOLEAN;
5517                                 } else if (!strcmp(name, "Byte")) {
5518                                         t = MONO_TYPE_U1;
5519                                         klass->blittable = TRUE;                                                
5520                                 }
5521                                 break;
5522                         case 'C':
5523                                 if (!strcmp (name, "Char")) {
5524                                         t = MONO_TYPE_CHAR;
5525                                 }
5526                                 break;
5527                         case 'D':
5528                                 if (!strcmp (name, "Double")) {
5529                                         t = MONO_TYPE_R8;
5530                                         klass->blittable = TRUE;                                                
5531                                 }
5532                                 break;
5533                         case 'I':
5534                                 if (!strcmp (name, "Int32")) {
5535                                         t = MONO_TYPE_I4;
5536                                         klass->blittable = TRUE;
5537                                 } else if (!strcmp(name, "Int16")) {
5538                                         t = MONO_TYPE_I2;
5539                                         klass->blittable = TRUE;
5540                                 } else if (!strcmp(name, "Int64")) {
5541                                         t = MONO_TYPE_I8;
5542                                         klass->blittable = TRUE;
5543                                 } else if (!strcmp(name, "IntPtr")) {
5544                                         t = MONO_TYPE_I;
5545                                         klass->blittable = TRUE;
5546                                 }
5547                                 break;
5548                         case 'S':
5549                                 if (!strcmp (name, "Single")) {
5550                                         t = MONO_TYPE_R4;
5551                                         klass->blittable = TRUE;                                                
5552                                 } else if (!strcmp(name, "SByte")) {
5553                                         t = MONO_TYPE_I1;
5554                                         klass->blittable = TRUE;
5555                                 }
5556                                 break;
5557                         case 'U':
5558                                 if (!strcmp (name, "UInt32")) {
5559                                         t = MONO_TYPE_U4;
5560                                         klass->blittable = TRUE;
5561                                 } else if (!strcmp(name, "UInt16")) {
5562                                         t = MONO_TYPE_U2;
5563                                         klass->blittable = TRUE;
5564                                 } else if (!strcmp(name, "UInt64")) {
5565                                         t = MONO_TYPE_U8;
5566                                         klass->blittable = TRUE;
5567                                 } else if (!strcmp(name, "UIntPtr")) {
5568                                         t = MONO_TYPE_U;
5569                                         klass->blittable = TRUE;
5570                                 }
5571                                 break;
5572                         case 'T':
5573                                 if (!strcmp (name, "TypedReference")) {
5574                                         t = MONO_TYPE_TYPEDBYREF;
5575                                         klass->blittable = TRUE;
5576                                 }
5577                                 break;
5578                         case 'V':
5579                                 if (!strcmp (name, "Void")) {
5580                                         t = MONO_TYPE_VOID;
5581                                 }
5582                                 break;
5583                         default:
5584                                 break;
5585                         }
5586                 }
5587                 klass->byval_arg.type = (MonoTypeEnum)t;
5588                 klass->this_arg.type = (MonoTypeEnum)t;
5589         }
5590
5591         if (MONO_CLASS_IS_INTERFACE (klass))
5592                 klass->interface_id = mono_get_unique_iid (klass);
5593 }
5594
5595 #ifndef DISABLE_COM
5596 /*
5597  * COM initialization is delayed until needed.
5598  * However when a [ComImport] attribute is present on a type it will trigger
5599  * the initialization. This is not a problem unless the BCL being executed 
5600  * lacks the types that COM depends on (e.g. Variant on Silverlight).
5601  */
5602 static void
5603 init_com_from_comimport (MonoClass *klass)
5604 {
5605         /* we don't always allow COM initialization under the CoreCLR (e.g. Moonlight does not require it) */
5606         if (mono_security_core_clr_enabled ()) {
5607                 /* but some other CoreCLR user could requires it for their platform (i.e. trusted) code */
5608                 if (!mono_security_core_clr_determine_platform_image (klass->image)) {
5609                         /* but it can not be made available for application (i.e. user code) since all COM calls
5610                          * are considered native calls. In this case we fail with a TypeLoadException (just like
5611                          * Silverlight 2 does */
5612                         mono_class_set_type_load_failure (klass, "");
5613                         return;
5614                 }
5615         }
5616
5617         /* FIXME : we should add an extra checks to ensure COM can be initialized properly before continuing */
5618 }
5619 #endif /*DISABLE_COM*/
5620
5621 /*
5622  * LOCKING: this assumes the loader lock is held
5623  */
5624 void
5625 mono_class_setup_parent (MonoClass *klass, MonoClass *parent)
5626 {
5627         gboolean system_namespace;
5628         gboolean is_corlib = mono_is_corlib_image (klass->image);
5629
5630         system_namespace = !strcmp (klass->name_space, "System") && is_corlib;
5631
5632         /* if root of the hierarchy */
5633         if (system_namespace && !strcmp (klass->name, "Object")) {
5634                 klass->parent = NULL;
5635                 klass->instance_size = sizeof (MonoObject);
5636                 return;
5637         }
5638         if (!strcmp (klass->name, "<Module>")) {
5639                 klass->parent = NULL;
5640                 klass->instance_size = 0;
5641                 return;
5642         }
5643
5644         if (!MONO_CLASS_IS_INTERFACE (klass)) {
5645                 /* Imported COM Objects always derive from __ComObject. */
5646 #ifndef DISABLE_COM
5647                 if (MONO_CLASS_IS_IMPORT (klass)) {
5648                         init_com_from_comimport (klass);
5649                         if (parent == mono_defaults.object_class)
5650                                 parent = mono_class_get_com_object_class ();
5651                 }
5652 #endif
5653                 if (!parent) {
5654                         /* set the parent to something useful and safe, but mark the type as broken */
5655                         parent = mono_defaults.object_class;
5656                         mono_class_set_type_load_failure (klass, "");
5657                         g_assert (parent);
5658                 }
5659
5660                 klass->parent = parent;
5661
5662                 if (mono_class_is_ginst (parent) && !parent->name) {
5663                         /*
5664                          * If the parent is a generic instance, we may get
5665                          * called before it is fully initialized, especially
5666                          * before it has its name.
5667                          */
5668                         return;
5669                 }
5670
5671 #ifndef DISABLE_REMOTING
5672                 klass->marshalbyref = parent->marshalbyref;
5673                 klass->contextbound  = parent->contextbound;
5674 #endif
5675
5676                 klass->delegate  = parent->delegate;
5677
5678                 if (MONO_CLASS_IS_IMPORT (klass) || mono_class_is_com_object (parent))
5679                         mono_class_set_is_com_object (klass);
5680                 
5681                 if (system_namespace) {
5682 #ifndef DISABLE_REMOTING
5683                         if (klass->name [0] == 'M' && !strcmp (klass->name, "MarshalByRefObject"))
5684                                 klass->marshalbyref = 1;
5685
5686                         if (klass->name [0] == 'C' && !strcmp (klass->name, "ContextBoundObject")) 
5687                                 klass->contextbound  = 1;
5688 #endif
5689                         if (klass->name [0] == 'D' && !strcmp (klass->name, "Delegate")) 
5690                                 klass->delegate  = 1;
5691                 }
5692
5693                 if (klass->parent->enumtype || (mono_is_corlib_image (klass->parent->image) && (strcmp (klass->parent->name, "ValueType") == 0) && 
5694                                                 (strcmp (klass->parent->name_space, "System") == 0)))
5695                         klass->valuetype = 1;
5696                 if (mono_is_corlib_image (klass->parent->image) && ((strcmp (klass->parent->name, "Enum") == 0) && (strcmp (klass->parent->name_space, "System") == 0))) {
5697                         klass->valuetype = klass->enumtype = 1;
5698                 }
5699                 /*klass->enumtype = klass->parent->enumtype; */
5700         } else {
5701                 /* initialize com types if COM interfaces are present */
5702 #ifndef DISABLE_COM
5703                 if (MONO_CLASS_IS_IMPORT (klass))
5704                         init_com_from_comimport (klass);
5705 #endif
5706                 klass->parent = NULL;
5707         }
5708
5709 }
5710
5711 /*
5712  * mono_class_setup_supertypes:
5713  * @class: a class
5714  *
5715  * Build the data structure needed to make fast type checks work.
5716  * This currently sets two fields in @class:
5717  *  - idepth: distance between @class and System.Object in the type
5718  *    hierarchy + 1
5719  *  - supertypes: array of classes: each element has a class in the hierarchy
5720  *    starting from @class up to System.Object
5721  * 
5722  * LOCKING: Acquires the loader lock.
5723  */
5724 void
5725 mono_class_setup_supertypes (MonoClass *klass)
5726 {
5727         int ms, idepth;
5728         MonoClass **supertypes;
5729
5730         mono_atomic_load_acquire (supertypes, MonoClass **, &klass->supertypes);
5731         if (supertypes)
5732                 return;
5733
5734         if (klass->parent && !klass->parent->supertypes)
5735                 mono_class_setup_supertypes (klass->parent);
5736         if (klass->parent)
5737                 idepth = klass->parent->idepth + 1;
5738         else
5739                 idepth = 1;
5740
5741         ms = MAX (MONO_DEFAULT_SUPERTABLE_SIZE, idepth);
5742         supertypes = (MonoClass **)mono_class_alloc0 (klass, sizeof (MonoClass *) * ms);
5743
5744         if (klass->parent) {
5745                 CHECKED_METADATA_WRITE_PTR ( supertypes [idepth - 1] , klass );
5746
5747                 int supertype_idx;
5748                 for (supertype_idx = 0; supertype_idx < klass->parent->idepth; supertype_idx++)
5749                         CHECKED_METADATA_WRITE_PTR ( supertypes [supertype_idx] , klass->parent->supertypes [supertype_idx] );
5750         } else {
5751                 CHECKED_METADATA_WRITE_PTR ( supertypes [0] , klass );
5752         }
5753
5754         mono_memory_barrier ();
5755
5756         mono_loader_lock ();
5757         klass->idepth = idepth;
5758         /* Needed so idepth is visible before supertypes is set */
5759         mono_memory_barrier ();
5760         klass->supertypes = supertypes;
5761         mono_loader_unlock ();
5762 }
5763
5764 static gboolean
5765 fix_gclass_incomplete_instantiation (MonoClass *gclass, void *user_data)
5766 {
5767         MonoClass *gtd = (MonoClass*)user_data;
5768         /* Only try to fix generic instances of @gtd */
5769         if (mono_class_get_generic_class (gclass)->container_class != gtd)
5770                 return FALSE;
5771
5772         /* Check if the generic instance has no parent. */
5773         if (gtd->parent && !gclass->parent)
5774                 mono_generic_class_setup_parent (gclass, gtd);
5775
5776         return TRUE;
5777 }
5778
5779 static void
5780 mono_class_set_failure_and_error (MonoClass *klass, MonoError *error, const char *msg)
5781 {
5782         mono_class_set_type_load_failure (klass, "%s", msg);
5783         mono_error_set_type_load_class (error, klass, "%s", msg);
5784 }
5785
5786 /**
5787  * mono_class_create_from_typedef:
5788  * @image: image where the token is valid
5789  * @type_token:  typedef token
5790  * @error:  used to return any error found while creating the type
5791  *
5792  * Create the MonoClass* representing the specified type token.
5793  * @type_token must be a TypeDef token.
5794  *
5795  * FIXME: don't return NULL on failure, just the the caller figure it out.
5796  */
5797 static MonoClass *
5798 mono_class_create_from_typedef (MonoImage *image, guint32 type_token, MonoError *error)
5799 {
5800         MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
5801         MonoClass *klass, *parent = NULL;
5802         guint32 cols [MONO_TYPEDEF_SIZE];
5803         guint32 cols_next [MONO_TYPEDEF_SIZE];
5804         guint tidx = mono_metadata_token_index (type_token);
5805         MonoGenericContext *context = NULL;
5806         const char *name, *nspace;
5807         guint icount = 0; 
5808         MonoClass **interfaces;
5809         guint32 field_last, method_last;
5810         guint32 nesting_tokeen;
5811
5812         mono_error_init (error);
5813
5814         if (mono_metadata_token_table (type_token) != MONO_TABLE_TYPEDEF || tidx > tt->rows) {
5815                 mono_error_set_bad_image (error, image, "Invalid typedef token %x", type_token);
5816                 return NULL;
5817         }
5818
5819         mono_loader_lock ();
5820
5821         if ((klass = (MonoClass *)mono_internal_hash_table_lookup (&image->class_cache, GUINT_TO_POINTER (type_token)))) {
5822                 mono_loader_unlock ();
5823                 return klass;
5824         }
5825
5826         mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
5827         
5828         name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
5829         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
5830
5831         if (mono_metadata_has_generic_params (image, type_token)) {
5832                 klass = mono_image_alloc0 (image, sizeof (MonoClassGtd));
5833                 klass->class_kind = MONO_CLASS_GTD;
5834                 classes_size += sizeof (MonoClassGtd);
5835                 ++class_gtd_count;
5836         } else {
5837                 klass = mono_image_alloc0 (image, sizeof (MonoClassDef));
5838                 klass->class_kind = MONO_CLASS_DEF;
5839                 classes_size += sizeof (MonoClassDef);
5840                 ++class_def_count;
5841         }
5842
5843         klass->name = name;
5844         klass->name_space = nspace;
5845
5846         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
5847
5848         klass->image = image;
5849         klass->type_token = type_token;
5850         mono_class_set_flags (klass, cols [MONO_TYPEDEF_FLAGS]);
5851
5852         mono_internal_hash_table_insert (&image->class_cache, GUINT_TO_POINTER (type_token), klass);
5853
5854         /*
5855          * Check whether we're a generic type definition.
5856          */
5857         if (mono_class_is_gtd (klass)) {
5858                 MonoGenericContainer *generic_container = mono_metadata_load_generic_params (image, klass->type_token, NULL);
5859                 generic_container->owner.klass = klass;
5860                 generic_container->is_anonymous = FALSE; // Owner class is now known, container is no longer anonymous
5861                 context = &generic_container->context;
5862                 mono_class_set_generic_container (klass, generic_container);
5863                 enable_gclass_recording ();
5864         }
5865
5866         if (cols [MONO_TYPEDEF_EXTENDS]) {
5867                 MonoClass *tmp;
5868                 guint32 parent_token = mono_metadata_token_from_dor (cols [MONO_TYPEDEF_EXTENDS]);
5869
5870                 if (mono_metadata_token_table (parent_token) == MONO_TABLE_TYPESPEC) {
5871                         /*WARNING: this must satisfy mono_metadata_type_hash*/
5872                         klass->this_arg.byref = 1;
5873                         klass->this_arg.data.klass = klass;
5874                         klass->this_arg.type = MONO_TYPE_CLASS;
5875                         klass->byval_arg.data.klass = klass;
5876                         klass->byval_arg.type = MONO_TYPE_CLASS;
5877                 }
5878                 parent = mono_class_get_checked (image, parent_token, error);
5879                 if (parent && context) /* Always inflate */
5880                         parent = mono_class_inflate_generic_class_checked (parent, context, error);
5881
5882                 if (parent == NULL) {
5883                         mono_class_set_type_load_failure (klass, "%s", mono_error_get_message (error));
5884                         goto parent_failure;
5885                 }
5886
5887                 for (tmp = parent; tmp; tmp = tmp->parent) {
5888                         if (tmp == klass) {
5889                                 mono_class_set_failure_and_error (klass, error, "Cycle found while resolving parent");
5890                                 goto parent_failure;
5891                         }
5892                         if (mono_class_is_gtd (klass) && mono_class_is_ginst (tmp) && mono_class_get_generic_class (tmp)->container_class == klass) {
5893                                 mono_class_set_failure_and_error (klass, error, "Parent extends generic instance of this type");
5894                                 goto parent_failure;
5895                         }
5896                 }
5897         }
5898
5899         mono_class_setup_parent (klass, parent);
5900
5901         /* uses ->valuetype, which is initialized by mono_class_setup_parent above */
5902         mono_class_setup_mono_type (klass);
5903
5904         if (mono_class_is_gtd (klass))
5905                 disable_gclass_recording (fix_gclass_incomplete_instantiation, klass);
5906
5907         /* 
5908          * This might access klass->byval_arg for recursion generated by generic constraints,
5909          * so it has to come after setup_mono_type ().
5910          */
5911         if ((nesting_tokeen = mono_metadata_nested_in_typedef (image, type_token))) {
5912                 klass->nested_in = mono_class_create_from_typedef (image, nesting_tokeen, error);
5913                 if (!mono_error_ok (error)) {
5914                         /*FIXME implement a mono_class_set_failure_from_mono_error */
5915                         mono_class_set_type_load_failure (klass, "%s",  mono_error_get_message (error));
5916                         mono_loader_unlock ();
5917                         mono_profiler_class_loaded (klass, MONO_PROFILE_FAILED);
5918                         return NULL;
5919                 }
5920         }
5921
5922         if ((mono_class_get_flags (klass) & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_UNICODE_CLASS)
5923                 klass->unicode = 1;
5924
5925 #ifdef HOST_WIN32
5926         if ((mono_class_get_flags (klass) & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_AUTO_CLASS)
5927                 klass->unicode = 1;
5928 #endif
5929
5930         klass->cast_class = klass->element_class = klass;
5931
5932         if (!klass->enumtype) {
5933                 if (!mono_metadata_interfaces_from_typedef_full (
5934                             image, type_token, &interfaces, &icount, FALSE, context, error)){
5935
5936                         mono_class_set_type_load_failure (klass, "%s", mono_error_get_message (error));
5937                         mono_loader_unlock ();
5938                         mono_profiler_class_loaded (klass, MONO_PROFILE_FAILED);
5939                         return NULL;
5940                 }
5941
5942                 /* This is required now that it is possible for more than 2^16 interfaces to exist. */
5943                 g_assert(icount <= 65535);
5944
5945                 klass->interfaces = interfaces;
5946                 klass->interface_count = icount;
5947                 klass->interfaces_inited = 1;
5948         }
5949
5950         /*g_print ("Load class %s\n", name);*/
5951
5952         /*
5953          * Compute the field and method lists
5954          */
5955         int first_field_idx = cols [MONO_TYPEDEF_FIELD_LIST] - 1;
5956         mono_class_set_first_field_idx (klass, first_field_idx);
5957         int first_method_idx = cols [MONO_TYPEDEF_METHOD_LIST] - 1;
5958         mono_class_set_first_method_idx (klass, first_method_idx);
5959
5960         if (tt->rows > tidx){           
5961                 mono_metadata_decode_row (tt, tidx, cols_next, MONO_TYPEDEF_SIZE);
5962                 field_last  = cols_next [MONO_TYPEDEF_FIELD_LIST] - 1;
5963                 method_last = cols_next [MONO_TYPEDEF_METHOD_LIST] - 1;
5964         } else {
5965                 field_last  = image->tables [MONO_TABLE_FIELD].rows;
5966                 method_last = image->tables [MONO_TABLE_METHOD].rows;
5967         }
5968
5969         if (cols [MONO_TYPEDEF_FIELD_LIST] && 
5970             cols [MONO_TYPEDEF_FIELD_LIST] <= image->tables [MONO_TABLE_FIELD].rows)
5971                 mono_class_set_field_count (klass, field_last - first_field_idx);
5972         if (cols [MONO_TYPEDEF_METHOD_LIST] <= image->tables [MONO_TABLE_METHOD].rows)
5973                 mono_class_set_method_count (klass, method_last - first_method_idx);
5974
5975         /* reserve space to store vector pointer in arrays */
5976         if (mono_is_corlib_image (image) && !strcmp (nspace, "System") && !strcmp (name, "Array")) {
5977                 klass->instance_size += 2 * sizeof (gpointer);
5978                 g_assert (mono_class_get_field_count (klass) == 0);
5979         }
5980
5981         if (klass->enumtype) {
5982                 MonoType *enum_basetype = mono_class_find_enum_basetype (klass, error);
5983                 if (!enum_basetype) {
5984                         /*set it to a default value as the whole runtime can't handle this to be null*/
5985                         klass->cast_class = klass->element_class = mono_defaults.int32_class;
5986                         mono_class_set_type_load_failure (klass, "%s", mono_error_get_message (error));
5987                         mono_loader_unlock ();
5988                         mono_profiler_class_loaded (klass, MONO_PROFILE_FAILED);
5989                         return NULL;
5990                 }
5991                 klass->cast_class = klass->element_class = mono_class_from_mono_type (enum_basetype);
5992         }
5993
5994         /*
5995          * If we're a generic type definition, load the constraints.
5996          * We must do this after the class has been constructed to make certain recursive scenarios
5997          * work.
5998          */
5999         if (mono_class_is_gtd (klass) && !mono_metadata_load_generic_param_constraints_checked (image, type_token, mono_class_get_generic_container (klass), error)) {
6000                 mono_class_set_type_load_failure (klass, "Could not load generic parameter constrains due to %s", mono_error_get_message (error));
6001                 mono_loader_unlock ();
6002                 mono_profiler_class_loaded (klass, MONO_PROFILE_FAILED);
6003                 return NULL;
6004         }
6005
6006         if (klass->image->assembly_name && !strcmp (klass->image->assembly_name, "Mono.Simd") && !strcmp (nspace, "Mono.Simd")) {
6007                 if (!strncmp (name, "Vector", 6))
6008                         klass->simd_type = !strcmp (name + 6, "2d") || !strcmp (name + 6, "2ul") || !strcmp (name + 6, "2l") || !strcmp (name + 6, "4f") || !strcmp (name + 6, "4ui") || !strcmp (name + 6, "4i") || !strcmp (name + 6, "8s") || !strcmp (name + 6, "8us") || !strcmp (name + 6, "16b") || !strcmp (name + 6, "16sb");
6009         } else if (klass->image->assembly_name && !strcmp (klass->image->assembly_name, "System.Numerics") && !strcmp (nspace, "System.Numerics")) {
6010                 if (!strcmp (name, "Vector2") || !strcmp (name, "Vector3") || !strcmp (name, "Vector4"))
6011                         klass->simd_type = 1;
6012         } else if (klass->image->assembly_name && !strcmp (klass->image->assembly_name, "System.Numerics.Vectors") && !strcmp (nspace, "System.Numerics")) {
6013                 if (!strcmp (name, "Vector`1"))
6014                         klass->simd_type = 1;
6015         }
6016
6017         mono_loader_unlock ();
6018
6019         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
6020
6021         return klass;
6022
6023 parent_failure:
6024         mono_class_setup_mono_type (klass);
6025         mono_loader_unlock ();
6026         mono_profiler_class_loaded (klass, MONO_PROFILE_FAILED);
6027         return NULL;
6028 }
6029
6030 /** Is klass a Nullable<T> ginst? */
6031 gboolean
6032 mono_class_is_nullable (MonoClass *klass)
6033 {
6034         MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
6035         return gklass && gklass->container_class == mono_defaults.generic_nullable_class;
6036 }
6037
6038
6039 /** if klass is T? return T */
6040 MonoClass*
6041 mono_class_get_nullable_param (MonoClass *klass)
6042 {
6043        g_assert (mono_class_is_nullable (klass));
6044        return mono_class_from_mono_type (mono_class_get_generic_class (klass)->context.class_inst->type_argv [0]);
6045 }
6046
6047 static void
6048 mono_generic_class_setup_parent (MonoClass *klass, MonoClass *gtd)
6049 {
6050         if (gtd->parent) {
6051                 MonoError error;
6052                 MonoGenericClass *gclass = mono_class_get_generic_class (klass);
6053
6054                 klass->parent = mono_class_inflate_generic_class_checked (gtd->parent, mono_generic_class_get_context (gclass), &error);
6055                 if (!mono_error_ok (&error)) {
6056                         /*Set parent to something safe as the runtime doesn't handle well this kind of failure.*/
6057                         klass->parent = mono_defaults.object_class;
6058                         mono_class_set_type_load_failure (klass, "Parent is a generic type instantiation that failed due to: %s", mono_error_get_message (&error));
6059                         mono_error_cleanup (&error);
6060                 }
6061         }
6062         if (klass->parent)
6063                 mono_class_setup_parent (klass, klass->parent);
6064
6065         if (klass->enumtype) {
6066                 klass->cast_class = gtd->cast_class;
6067                 klass->element_class = gtd->element_class;
6068         }
6069 }
6070
6071
6072 /*
6073  * Create the `MonoClass' for an instantiation of a generic type.
6074  * We only do this if we actually need it.
6075  */
6076 MonoClass*
6077 mono_generic_class_get_class (MonoGenericClass *gclass)
6078 {
6079         MonoClass *klass, *gklass;
6080
6081         if (gclass->cached_class)
6082                 return gclass->cached_class;
6083
6084         mono_loader_lock ();
6085         if (gclass->cached_class) {
6086                 mono_loader_unlock ();
6087                 return gclass->cached_class;
6088         }
6089
6090         klass = (MonoClass *)mono_image_set_alloc0 (gclass->owner, sizeof (MonoClassGenericInst));
6091
6092         gklass = gclass->container_class;
6093
6094         if (record_gclass_instantiation > 0)
6095                 gclass_recorded_list = g_slist_append (gclass_recorded_list, klass);
6096
6097         if (gklass->nested_in) {
6098                 /* The nested_in type should not be inflated since it's possible to produce a nested type with less generic arguments*/
6099                 klass->nested_in = gklass->nested_in;
6100         }
6101
6102         klass->name = gklass->name;
6103         klass->name_space = gklass->name_space;
6104         
6105         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
6106         
6107         klass->image = gklass->image;
6108         klass->type_token = gklass->type_token;
6109
6110         klass->class_kind = MONO_CLASS_GINST;
6111         //FIXME add setter
6112         ((MonoClassGenericInst*)klass)->generic_class = gclass;
6113
6114         klass->byval_arg.type = MONO_TYPE_GENERICINST;
6115         klass->this_arg.type = klass->byval_arg.type;
6116         klass->this_arg.data.generic_class = klass->byval_arg.data.generic_class = gclass;
6117         klass->this_arg.byref = TRUE;
6118         klass->enumtype = gklass->enumtype;
6119         klass->valuetype = gklass->valuetype;
6120         klass->simd_type = gklass->simd_type;
6121
6122         klass->cast_class = klass->element_class = klass;
6123
6124         if (mono_class_is_nullable (klass))
6125                 klass->cast_class = klass->element_class = mono_class_get_nullable_param (klass);
6126
6127         /*
6128          * We're not interested in the nested classes of a generic instance.
6129          * We use the generic type definition to look for nested classes.
6130          */
6131
6132         mono_generic_class_setup_parent (klass, gklass);
6133
6134         if (gclass->is_dynamic) {
6135                 /*
6136                  * We don't need to do any init workf with unbaked typebuilders. Generic instances created at this point will be later unregistered and/or fixed.
6137                  * This is to avoid work that would probably give wrong results as fields change as we build the TypeBuilder.
6138                  * See remove_instantiations_of_and_ensure_contents in reflection.c and its usage in reflection.c to understand the fixup stage of SRE banking.
6139                 */
6140                 if (!gklass->wastypebuilder)
6141                         klass->inited = 1;
6142
6143                 mono_class_setup_supertypes (klass);
6144
6145                 if (klass->enumtype) {
6146                         /*
6147                          * For enums, gklass->fields might not been set, but instance_size etc. is 
6148                          * already set in mono_reflection_create_internal_class (). For non-enums,
6149                          * these will be computed normally in mono_class_layout_fields ().
6150                          */
6151                         klass->instance_size = gklass->instance_size;
6152                         klass->sizes.class_size = gklass->sizes.class_size;
6153                         mono_memory_barrier ();
6154                         klass->size_inited = 1;
6155                 }
6156         }
6157
6158         mono_memory_barrier ();
6159         gclass->cached_class = klass;
6160
6161         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
6162
6163         ++class_ginst_count;
6164         inflated_classes_size += sizeof (MonoClassGenericInst);
6165         
6166         mono_loader_unlock ();
6167
6168         return klass;
6169 }
6170
6171 static MonoImage *
6172 get_image_for_container (MonoGenericContainer *container)
6173 {
6174         MonoImage *result;
6175         if (container->is_anonymous) {
6176                 result = container->owner.image;
6177         } else {
6178                 MonoClass *klass;
6179                 if (container->is_method) {
6180                         MonoMethod *method = container->owner.method;
6181                         g_assert_checked (method);
6182                         klass = method->klass;
6183                 } else {
6184                         klass = container->owner.klass;
6185                 }
6186                 g_assert_checked (klass);
6187                 result = klass->image;
6188         }
6189         g_assert (result);
6190         return result;
6191 }
6192
6193 MonoImage *
6194 get_image_for_generic_param (MonoGenericParam *param)
6195 {
6196         MonoGenericContainer *container = mono_generic_param_owner (param);
6197         g_assert_checked (container);
6198         return get_image_for_container (container);
6199 }
6200
6201 // Make a string in the designated image consisting of a single integer.
6202 #define INT_STRING_SIZE 16
6203 char *
6204 make_generic_name_string (MonoImage *image, int num)
6205 {
6206         char *name = (char *)mono_image_alloc0 (image, INT_STRING_SIZE);
6207         g_snprintf (name, INT_STRING_SIZE, "%d", num);
6208         return name;
6209 }
6210
6211 // This is called by mono_class_from_generic_parameter_internal when a new class must be created.
6212 // pinfo is derived from param by the caller for us.
6213 static MonoClass*
6214 make_generic_param_class (MonoGenericParam *param, MonoGenericParamInfo *pinfo)
6215 {
6216         MonoClass *klass, **ptr;
6217         int count, pos, i;
6218         MonoGenericContainer *container = mono_generic_param_owner (param);
6219         g_assert_checked (container);
6220
6221         MonoImage *image = get_image_for_container (container);
6222         gboolean is_mvar = container->is_method;
6223         gboolean is_anonymous = container->is_anonymous;
6224
6225         klass = (MonoClass *)mono_image_alloc0 (image, sizeof (MonoClassGenericParam));
6226         klass->class_kind = MONO_CLASS_GPARAM;
6227         classes_size += sizeof (MonoClassGenericParam);
6228         ++class_gparam_count;
6229
6230         if (pinfo) {
6231                 CHECKED_METADATA_WRITE_PTR_EXEMPT ( klass->name , pinfo->name );
6232         } else {
6233                 int n = mono_generic_param_num (param);
6234                 CHECKED_METADATA_WRITE_PTR_LOCAL ( klass->name , make_generic_name_string (image, n) );
6235         }
6236
6237         if (is_anonymous) {
6238                 CHECKED_METADATA_WRITE_PTR_EXEMPT ( klass->name_space ,  "" );
6239         } else if (is_mvar) {
6240                 MonoMethod *omethod = container->owner.method;
6241                 CHECKED_METADATA_WRITE_PTR_EXEMPT ( klass->name_space , (omethod && omethod->klass) ? omethod->klass->name_space : "" );
6242         } else {
6243                 MonoClass *oklass = container->owner.klass;
6244                 CHECKED_METADATA_WRITE_PTR_EXEMPT ( klass->name_space , oklass ? oklass->name_space : "" );
6245         }
6246
6247         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
6248
6249         // Count non-NULL items in pinfo->constraints
6250         count = 0;
6251         if (pinfo)
6252                 for (ptr = pinfo->constraints; ptr && *ptr; ptr++, count++)
6253                         ;
6254
6255         pos = 0;
6256         if ((count > 0) && !MONO_CLASS_IS_INTERFACE (pinfo->constraints [0])) {
6257                 CHECKED_METADATA_WRITE_PTR ( klass->parent , pinfo->constraints [0] );
6258                 pos++;
6259         } else if (pinfo && pinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) {
6260                 CHECKED_METADATA_WRITE_PTR ( klass->parent , mono_class_load_from_name (mono_defaults.corlib, "System", "ValueType") );
6261         } else {
6262                 CHECKED_METADATA_WRITE_PTR ( klass->parent , mono_defaults.object_class );
6263         }
6264
6265         if (count - pos > 0) {
6266                 klass->interface_count = count - pos;
6267                 CHECKED_METADATA_WRITE_PTR_LOCAL ( klass->interfaces , (MonoClass **)mono_image_alloc0 (image, sizeof (MonoClass *) * (count - pos)) );
6268                 klass->interfaces_inited = TRUE;
6269                 for (i = pos; i < count; i++)
6270                         CHECKED_METADATA_WRITE_PTR ( klass->interfaces [i - pos] , pinfo->constraints [i] );
6271         }
6272
6273         CHECKED_METADATA_WRITE_PTR_EXEMPT ( klass->image , image );
6274
6275         klass->inited = TRUE;
6276         CHECKED_METADATA_WRITE_PTR_LOCAL ( klass->cast_class ,    klass );
6277         CHECKED_METADATA_WRITE_PTR_LOCAL ( klass->element_class , klass );
6278
6279         klass->byval_arg.type = is_mvar ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
6280         klass->this_arg.type = klass->byval_arg.type;
6281         CHECKED_METADATA_WRITE_PTR ( klass->this_arg.data.generic_param ,  param );
6282         CHECKED_METADATA_WRITE_PTR ( klass->byval_arg.data.generic_param , param );
6283         klass->this_arg.byref = TRUE;
6284
6285         /* We don't use type_token for VAR since only classes can use it (not arrays, pointer, VARs, etc) */
6286         klass->sizes.generic_param_token = pinfo ? pinfo->token : 0;
6287
6288         /*Init these fields to sane values*/
6289         klass->min_align = 1;
6290         /*
6291          * This makes sure the the value size of this class is equal to the size of the types the gparam is
6292          * constrained to, the JIT depends on this.
6293          */
6294         klass->instance_size = sizeof (MonoObject) + mono_type_stack_size_internal (&klass->byval_arg, NULL, TRUE);
6295         mono_memory_barrier ();
6296         klass->size_inited = 1;
6297
6298         mono_class_setup_supertypes (klass);
6299
6300         if (count - pos > 0) {
6301                 mono_class_setup_vtable (klass->parent);
6302                 if (mono_class_has_failure (klass->parent))
6303                         mono_class_set_type_load_failure (klass, "Failed to setup parent interfaces");
6304                 else
6305                         setup_interface_offsets (klass, klass->parent->vtable_size, TRUE);
6306         }
6307
6308         return klass;
6309 }
6310
6311 #define FAST_CACHE_SIZE 16
6312
6313 /*
6314  * get_anon_gparam_class and set_anon_gparam_class are helpers for mono_class_from_generic_parameter_internal.
6315  * The latter will sometimes create MonoClasses for anonymous generic params. To prevent this being wasteful,
6316  * we cache the MonoClasses.
6317  * FIXME: It would be better to instead cache anonymous MonoGenericParams, and allow anonymous params to point directly to classes using the pklass field.
6318  * LOCKING: Takes the image lock depending on @take_lock.
6319  */
6320 static MonoClass *
6321 get_anon_gparam_class (MonoGenericParam *param, gboolean take_lock)
6322 {
6323         int n = mono_generic_param_num (param);
6324         MonoImage *image = get_image_for_generic_param (param);
6325         gboolean is_mvar = mono_generic_param_owner (param)->is_method;
6326         MonoClass *klass = NULL;
6327         GHashTable *ht;
6328
6329         g_assert (image);
6330
6331         // For params with a small num and no constraints, we use a "fast" cache which does simple num lookup in an array.
6332         // For high numbers or constraints we have to use pointer hashes.
6333         if (param->gshared_constraint) {
6334                 ht = is_mvar ? image->mvar_cache_constrained : image->var_cache_constrained;
6335                 if (ht) {
6336                         if (take_lock)
6337                                 mono_image_lock (image);
6338                         klass = (MonoClass *)g_hash_table_lookup (ht, param);
6339                         if (take_lock)
6340                                 mono_image_unlock (image);
6341                 }
6342                 return klass;
6343         }
6344
6345         if (n < FAST_CACHE_SIZE) {
6346                 if (is_mvar)
6347                         return image->mvar_cache_fast ? image->mvar_cache_fast [n] : NULL;
6348                 else
6349                         return image->var_cache_fast ? image->var_cache_fast [n] : NULL;
6350         } else {
6351                 ht = is_mvar ? image->mvar_cache_slow : image->var_cache_slow;
6352                 if (ht) {
6353                         if (take_lock)
6354                                 mono_image_lock (image);
6355                         klass = (MonoClass *)g_hash_table_lookup (ht, GINT_TO_POINTER (n));
6356                         if (take_lock)
6357                                 mono_image_unlock (image);
6358                 }
6359                 return klass;
6360         }
6361 }
6362
6363 /*
6364  * LOCKING: Image lock (param->image) must be held
6365  */
6366 static void
6367 set_anon_gparam_class (MonoGenericParam *param, MonoClass *klass)
6368 {
6369         int n = mono_generic_param_num (param);
6370         MonoImage *image = get_image_for_generic_param (param);
6371         gboolean is_mvar = mono_generic_param_owner (param)->is_method;
6372
6373         g_assert (image);
6374
6375         if (param->gshared_constraint) {
6376                 GHashTable *ht = is_mvar ? image->mvar_cache_constrained : image->var_cache_constrained;
6377                 if (!ht) {
6378                         ht = g_hash_table_new ((GHashFunc)mono_metadata_generic_param_hash, (GEqualFunc)mono_metadata_generic_param_equal);
6379                         mono_memory_barrier ();
6380                         if (is_mvar)
6381                                 image->mvar_cache_constrained = ht;
6382                         else
6383                                 image->var_cache_constrained = ht;
6384                 }
6385                 g_hash_table_insert (ht, param, klass);
6386         } else if (n < FAST_CACHE_SIZE) {
6387                 if (is_mvar) {
6388                         /* Requires locking to avoid droping an already published class */
6389                         if (!image->mvar_cache_fast)
6390                                 image->mvar_cache_fast = (MonoClass **)mono_image_alloc0 (image, sizeof (MonoClass*) * FAST_CACHE_SIZE);
6391                         image->mvar_cache_fast [n] = klass;
6392                 } else {
6393                         if (!image->var_cache_fast)
6394                                 image->var_cache_fast = (MonoClass **)mono_image_alloc0 (image, sizeof (MonoClass*) * FAST_CACHE_SIZE);
6395                         image->var_cache_fast [n] = klass;
6396                 }
6397         } else {
6398                 GHashTable *ht = is_mvar ? image->mvar_cache_slow : image->var_cache_slow;
6399                 if (!ht) {
6400                         ht = is_mvar ? image->mvar_cache_slow : image->var_cache_slow;
6401                         if (!ht) {
6402                                 ht = g_hash_table_new (NULL, NULL);
6403                                 mono_memory_barrier ();
6404                                 if (is_mvar)
6405                                         image->mvar_cache_slow = ht;
6406                                 else
6407                                         image->var_cache_slow = ht;
6408                         }
6409                 }
6410                 g_hash_table_insert (ht, GINT_TO_POINTER (n), klass);
6411         }
6412 }
6413
6414 /*
6415  * LOCKING: Acquires the image lock (@image).
6416  */
6417 MonoClass *
6418 mono_class_from_generic_parameter_internal (MonoGenericParam *param)
6419 {
6420         MonoImage *image = get_image_for_generic_param (param);
6421         MonoGenericParamInfo *pinfo = mono_generic_param_info (param);
6422         MonoClass *klass, *klass2;
6423
6424         // If a klass already exists for this object and is cached, return it.
6425         if (pinfo) // Non-anonymous
6426                 klass = pinfo->pklass;
6427         else     // Anonymous
6428                 klass = get_anon_gparam_class (param, TRUE);
6429
6430         if (klass)
6431                 return klass;
6432
6433         // Create a new klass
6434         klass = make_generic_param_class (param, pinfo);
6435
6436         // Now we need to cache the klass we created.
6437         // But since we wait to grab the lock until after creating the klass, we need to check to make sure
6438         // another thread did not get in and cache a klass ahead of us. In that case, return their klass
6439         // and allow our newly-created klass object to just leak.
6440         mono_memory_barrier ();
6441
6442         mono_image_lock (image);
6443
6444     // Here "klass2" refers to the klass potentially created by the other thread.
6445         if (pinfo) // Repeat check from above
6446                 klass2 = pinfo->pklass;
6447         else
6448                 klass2 = get_anon_gparam_class (param, FALSE);
6449
6450         if (klass2) {
6451                 klass = klass2;
6452         } else {
6453                 // Cache here
6454                 if (pinfo)
6455                         pinfo->pklass = klass;
6456                 else
6457                         set_anon_gparam_class (param, klass);
6458         }
6459         mono_image_unlock (image);
6460
6461         /* FIXME: Should this go inside 'make_generic_param_klass'? */
6462         if (klass2)
6463                 mono_profiler_class_loaded (klass2, MONO_PROFILE_FAILED); // Alert profiler about botched class create
6464         else
6465                 mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
6466
6467         return klass;
6468 }
6469
6470 /**
6471  * mono_class_from_generic_parameter:
6472  * @param: Parameter to find/construct a class for.
6473  * @arg2: Is ignored.
6474  * @arg3: Is ignored.
6475  */
6476 MonoClass *
6477 mono_class_from_generic_parameter (MonoGenericParam *param, MonoImage *arg2 G_GNUC_UNUSED, gboolean arg3 G_GNUC_UNUSED)
6478 {
6479         return mono_class_from_generic_parameter_internal (param);
6480 }
6481
6482
6483 MonoClass *
6484 mono_ptr_class_get (MonoType *type)
6485 {
6486         MonoClass *result;
6487         MonoClass *el_class;
6488         MonoImage *image;
6489         char *name;
6490
6491         el_class = mono_class_from_mono_type (type);
6492         image = el_class->image;
6493
6494         mono_image_lock (image);
6495         if (image->ptr_cache) {
6496                 if ((result = (MonoClass *)g_hash_table_lookup (image->ptr_cache, el_class))) {
6497                         mono_image_unlock (image);
6498                         return result;
6499                 }
6500         }
6501         mono_image_unlock (image);
6502         
6503         result = (MonoClass *)mono_image_alloc0 (image, sizeof (MonoClassPointer));
6504
6505         classes_size += sizeof (MonoClassPointer);
6506         ++class_pointer_count;
6507
6508         result->parent = NULL; /* no parent for PTR types */
6509         result->name_space = el_class->name_space;
6510         name = g_strdup_printf ("%s*", el_class->name);
6511         result->name = mono_image_strdup (image, name);
6512         result->class_kind = MONO_CLASS_POINTER;
6513         g_free (name);
6514
6515         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
6516
6517         result->image = el_class->image;
6518         result->inited = TRUE;
6519         result->instance_size = sizeof (MonoObject) + sizeof (gpointer);
6520         result->cast_class = result->element_class = el_class;
6521         result->blittable = TRUE;
6522
6523         result->byval_arg.type = MONO_TYPE_PTR;
6524         result->this_arg.type = result->byval_arg.type;
6525         result->this_arg.data.type = result->byval_arg.data.type = &result->element_class->byval_arg;
6526         result->this_arg.byref = TRUE;
6527
6528         mono_class_setup_supertypes (result);
6529
6530         mono_image_lock (image);
6531         if (image->ptr_cache) {
6532                 MonoClass *result2;
6533                 if ((result2 = (MonoClass *)g_hash_table_lookup (image->ptr_cache, el_class))) {
6534                         mono_image_unlock (image);
6535                         mono_profiler_class_loaded (result, MONO_PROFILE_FAILED);
6536                         return result2;
6537                 }
6538         } else {
6539                 image->ptr_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
6540         }
6541         g_hash_table_insert (image->ptr_cache, el_class, result);
6542         mono_image_unlock (image);
6543
6544         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
6545
6546         return result;
6547 }
6548
6549 static MonoClass *
6550 mono_fnptr_class_get (MonoMethodSignature *sig)
6551 {
6552         MonoClass *result;
6553         static GHashTable *ptr_hash = NULL;
6554
6555         /* FIXME: These should be allocate from a mempool as well, but which one ? */
6556
6557         mono_loader_lock ();
6558
6559         if (!ptr_hash)
6560                 ptr_hash = g_hash_table_new (mono_aligned_addr_hash, NULL);
6561         
6562         if ((result = (MonoClass *)g_hash_table_lookup (ptr_hash, sig))) {
6563                 mono_loader_unlock ();
6564                 return result;
6565         }
6566         result = g_new0 (MonoClass, 1);
6567
6568         classes_size += sizeof (MonoClassPointer);
6569         ++class_pointer_count;
6570
6571         result->parent = NULL; /* no parent for PTR types */
6572         result->name_space = "System";
6573         result->name = "MonoFNPtrFakeClass";
6574         result->class_kind = MONO_CLASS_POINTER;
6575
6576         mono_profiler_class_event (result, MONO_PROFILE_START_LOAD);
6577
6578         result->image = mono_defaults.corlib; /* need to fix... */
6579         result->inited = TRUE;
6580         result->instance_size = sizeof (MonoObject) + sizeof (gpointer);
6581         result->cast_class = result->element_class = result;
6582         result->blittable = TRUE;
6583
6584         result->byval_arg.type = MONO_TYPE_FNPTR;
6585         result->this_arg.type = result->byval_arg.type;
6586         result->this_arg.data.method = result->byval_arg.data.method = sig;
6587         result->this_arg.byref = TRUE;
6588         result->blittable = TRUE;
6589
6590         mono_class_setup_supertypes (result);
6591
6592         g_hash_table_insert (ptr_hash, sig, result);
6593
6594         mono_loader_unlock ();
6595
6596         mono_profiler_class_loaded (result, MONO_PROFILE_OK);
6597
6598         return result;
6599 }
6600
6601 /**
6602  * mono_class_from_mono_type:
6603  * @type: describes the type to return
6604  *
6605  * This returns a MonoClass for the specified MonoType, the value is never NULL.
6606  */
6607 MonoClass *
6608 mono_class_from_mono_type (MonoType *type)
6609 {
6610         switch (type->type) {
6611         case MONO_TYPE_OBJECT:
6612                 return type->data.klass? type->data.klass: mono_defaults.object_class;
6613         case MONO_TYPE_VOID:
6614                 return type->data.klass? type->data.klass: mono_defaults.void_class;
6615         case MONO_TYPE_BOOLEAN:
6616                 return type->data.klass? type->data.klass: mono_defaults.boolean_class;
6617         case MONO_TYPE_CHAR:
6618                 return type->data.klass? type->data.klass: mono_defaults.char_class;
6619         case MONO_TYPE_I1:
6620                 return type->data.klass? type->data.klass: mono_defaults.sbyte_class;
6621         case MONO_TYPE_U1:
6622                 return type->data.klass? type->data.klass: mono_defaults.byte_class;
6623         case MONO_TYPE_I2:
6624                 return type->data.klass? type->data.klass: mono_defaults.int16_class;
6625         case MONO_TYPE_U2:
6626                 return type->data.klass? type->data.klass: mono_defaults.uint16_class;
6627         case MONO_TYPE_I4:
6628                 return type->data.klass? type->data.klass: mono_defaults.int32_class;
6629         case MONO_TYPE_U4:
6630                 return type->data.klass? type->data.klass: mono_defaults.uint32_class;
6631         case MONO_TYPE_I:
6632                 return type->data.klass? type->data.klass: mono_defaults.int_class;
6633         case MONO_TYPE_U:
6634                 return type->data.klass? type->data.klass: mono_defaults.uint_class;
6635         case MONO_TYPE_I8:
6636                 return type->data.klass? type->data.klass: mono_defaults.int64_class;
6637         case MONO_TYPE_U8:
6638                 return type->data.klass? type->data.klass: mono_defaults.uint64_class;
6639         case MONO_TYPE_R4:
6640                 return type->data.klass? type->data.klass: mono_defaults.single_class;
6641         case MONO_TYPE_R8:
6642                 return type->data.klass? type->data.klass: mono_defaults.double_class;
6643         case MONO_TYPE_STRING:
6644                 return type->data.klass? type->data.klass: mono_defaults.string_class;
6645         case MONO_TYPE_TYPEDBYREF:
6646                 return type->data.klass? type->data.klass: mono_defaults.typed_reference_class;
6647         case MONO_TYPE_ARRAY:
6648                 return mono_bounded_array_class_get (type->data.array->eklass, type->data.array->rank, TRUE);
6649         case MONO_TYPE_PTR:
6650                 return mono_ptr_class_get (type->data.type);
6651         case MONO_TYPE_FNPTR:
6652                 return mono_fnptr_class_get (type->data.method);
6653         case MONO_TYPE_SZARRAY:
6654                 return mono_array_class_get (type->data.klass, 1);
6655         case MONO_TYPE_CLASS:
6656         case MONO_TYPE_VALUETYPE:
6657                 return type->data.klass;
6658         case MONO_TYPE_GENERICINST:
6659                 return mono_generic_class_get_class (type->data.generic_class);
6660         case MONO_TYPE_MVAR:
6661         case MONO_TYPE_VAR:
6662                 return mono_class_from_generic_parameter_internal (type->data.generic_param);
6663         default:
6664                 g_warning ("mono_class_from_mono_type: implement me 0x%02x\n", type->type);
6665                 g_assert_not_reached ();
6666         }
6667
6668         // Yes, this returns NULL, even if it is documented as not doing so, but there
6669         // is no way for the code to make it this far, due to the assert above.
6670         return NULL;
6671 }
6672
6673 /**
6674  * mono_type_retrieve_from_typespec
6675  * @image: context where the image is created
6676  * @type_spec:  typespec token
6677  * @context: the generic context used to evaluate generic instantiations in
6678  */
6679 static MonoType *
6680 mono_type_retrieve_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, gboolean *did_inflate, MonoError *error)
6681 {
6682         MonoType *t = mono_type_create_from_typespec_checked (image, type_spec, error);
6683
6684         *did_inflate = FALSE;
6685
6686         if (!t)
6687                 return NULL;
6688
6689         if (context && (context->class_inst || context->method_inst)) {
6690                 MonoType *inflated = inflate_generic_type (NULL, t, context, error);
6691
6692                 if (!mono_error_ok (error)) {
6693                         return NULL;
6694                 }
6695
6696                 if (inflated) {
6697                         t = inflated;
6698                         *did_inflate = TRUE;
6699                 }
6700         }
6701         return t;
6702 }
6703
6704 /**
6705  * mono_class_create_from_typespec
6706  * @image: context where the image is created
6707  * @type_spec:  typespec token
6708  * @context: the generic context used to evaluate generic instantiations in
6709  */
6710 static MonoClass *
6711 mono_class_create_from_typespec (MonoImage *image, guint32 type_spec, MonoGenericContext *context, MonoError *error)
6712 {
6713         MonoClass *ret;
6714         gboolean inflated = FALSE;
6715         MonoType *t = mono_type_retrieve_from_typespec (image, type_spec, context, &inflated, error);
6716         return_val_if_nok (error, NULL);
6717         ret = mono_class_from_mono_type (t);
6718         if (inflated)
6719                 mono_metadata_free_type (t);
6720         return ret;
6721 }
6722
6723 /**
6724  * mono_bounded_array_class_get:
6725  * @element_class: element class 
6726  * @rank: the dimension of the array class
6727  * @bounded: whenever the array has non-zero bounds
6728  *
6729  * Returns: A class object describing the array with element type @element_type and 
6730  * dimension @rank. 
6731  */
6732 MonoClass *
6733 mono_bounded_array_class_get (MonoClass *eclass, guint32 rank, gboolean bounded)
6734 {
6735         MonoImage *image;
6736         MonoClass *klass, *cached, *k;
6737         MonoClass *parent = NULL;
6738         GSList *list, *rootlist = NULL;
6739         int nsize;
6740         char *name;
6741
6742         g_assert (rank <= 255);
6743
6744         if (rank > 1)
6745                 /* bounded only matters for one-dimensional arrays */
6746                 bounded = FALSE;
6747
6748         image = eclass->image;
6749
6750         /* Check cache */
6751         cached = NULL;
6752         if (rank == 1 && !bounded) {
6753                 /*
6754                  * This case is very frequent not just during compilation because of calls
6755                  * from mono_class_from_mono_type (), mono_array_new (),
6756                  * Array:CreateInstance (), etc, so use a separate cache + a separate lock.
6757                  */
6758                 mono_os_mutex_lock (&image->szarray_cache_lock);
6759                 if (!image->szarray_cache)
6760                         image->szarray_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
6761                 cached = (MonoClass *)g_hash_table_lookup (image->szarray_cache, eclass);
6762                 mono_os_mutex_unlock (&image->szarray_cache_lock);
6763         } else {
6764                 mono_loader_lock ();
6765                 if (!image->array_cache)
6766                         image->array_cache = g_hash_table_new (mono_aligned_addr_hash, NULL);
6767                 rootlist = (GSList *)g_hash_table_lookup (image->array_cache, eclass);
6768                 for (list = rootlist; list; list = list->next) {
6769                         k = (MonoClass *)list->data;
6770                         if ((k->rank == rank) && (k->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
6771                                 cached = k;
6772                                 break;
6773                         }
6774                 }
6775                 mono_loader_unlock ();
6776         }
6777         if (cached)
6778                 return cached;
6779
6780         parent = mono_defaults.array_class;
6781         if (!parent->inited)
6782                 mono_class_init (parent);
6783
6784         klass = (MonoClass *)mono_image_alloc0 (image, sizeof (MonoClassArray));
6785
6786         klass->image = image;
6787         klass->name_space = eclass->name_space;
6788         klass->class_kind = MONO_CLASS_ARRAY;
6789
6790         nsize = strlen (eclass->name);
6791         name = (char *)g_malloc (nsize + 2 + rank + 1);
6792         memcpy (name, eclass->name, nsize);
6793         name [nsize] = '[';
6794         if (rank > 1)
6795                 memset (name + nsize + 1, ',', rank - 1);
6796         if (bounded)
6797                 name [nsize + rank] = '*';
6798         name [nsize + rank + bounded] = ']';
6799         name [nsize + rank + bounded + 1] = 0;
6800         klass->name = mono_image_strdup (image, name);
6801         g_free (name);
6802
6803         klass->type_token = 0;
6804         klass->parent = parent;
6805         klass->instance_size = mono_class_instance_size (klass->parent);
6806
6807         if (eclass->byval_arg.type == MONO_TYPE_TYPEDBYREF || eclass->byval_arg.type == MONO_TYPE_VOID) {
6808                 /*Arrays of those two types are invalid.*/
6809                 MonoError prepared_error;
6810                 mono_error_init (&prepared_error);
6811                 mono_error_set_invalid_program (&prepared_error, "Arrays of void or System.TypedReference types are invalid.");
6812                 mono_class_set_failure (klass, mono_error_box (&prepared_error, klass->image));
6813                 mono_error_cleanup (&prepared_error);
6814         } else if (eclass->enumtype && !mono_class_enum_basetype (eclass)) {
6815                 guint32 ref_info_handle = mono_class_get_ref_info_handle (eclass);
6816                 if (!ref_info_handle || eclass->wastypebuilder) {
6817                         g_warning ("Only incomplete TypeBuilder objects are allowed to be an enum without base_type");
6818                         g_assert (ref_info_handle && !eclass->wastypebuilder);
6819                 }
6820                 /* element_size -1 is ok as this is not an instantitable type*/
6821                 klass->sizes.element_size = -1;
6822         } else
6823                 klass->sizes.element_size = mono_class_array_element_size (eclass);
6824
6825         mono_class_setup_supertypes (klass);
6826
6827         if (mono_class_is_ginst (eclass))
6828                 mono_class_init (eclass);
6829         if (!eclass->size_inited)
6830                 mono_class_setup_fields (eclass);
6831         mono_class_set_type_load_failure_causedby_class (klass, eclass, "Could not load array element type");
6832         /*FIXME we fail the array type, but we have to let other fields be set.*/
6833
6834         klass->has_references = MONO_TYPE_IS_REFERENCE (&eclass->byval_arg) || eclass->has_references? TRUE: FALSE;
6835
6836         klass->rank = rank;
6837         
6838         if (eclass->enumtype)
6839                 klass->cast_class = eclass->element_class;
6840         else
6841                 klass->cast_class = eclass;
6842
6843         switch (klass->cast_class->byval_arg.type) {
6844         case MONO_TYPE_I1:
6845                 klass->cast_class = mono_defaults.byte_class;
6846                 break;
6847         case MONO_TYPE_U2:
6848                 klass->cast_class = mono_defaults.int16_class;
6849                 break;
6850         case MONO_TYPE_U4:
6851 #if SIZEOF_VOID_P == 4
6852         case MONO_TYPE_I:
6853         case MONO_TYPE_U:
6854 #endif
6855                 klass->cast_class = mono_defaults.int32_class;
6856                 break;
6857         case MONO_TYPE_U8:
6858 #if SIZEOF_VOID_P == 8
6859         case MONO_TYPE_I:
6860         case MONO_TYPE_U:
6861 #endif
6862                 klass->cast_class = mono_defaults.int64_class;
6863                 break;
6864         default:
6865                 break;
6866         }
6867
6868         klass->element_class = eclass;
6869
6870         if ((rank > 1) || bounded) {
6871                 MonoArrayType *at = (MonoArrayType *)mono_image_alloc0 (image, sizeof (MonoArrayType));
6872                 klass->byval_arg.type = MONO_TYPE_ARRAY;
6873                 klass->byval_arg.data.array = at;
6874                 at->eklass = eclass;
6875                 at->rank = rank;
6876                 /* FIXME: complete.... */
6877         } else {
6878                 klass->byval_arg.type = MONO_TYPE_SZARRAY;
6879                 klass->byval_arg.data.klass = eclass;
6880         }
6881         klass->this_arg = klass->byval_arg;
6882         klass->this_arg.byref = 1;
6883
6884         mono_loader_lock ();
6885
6886         /* Check cache again */
6887         cached = NULL;
6888         if (rank == 1 && !bounded) {
6889                 mono_os_mutex_lock (&image->szarray_cache_lock);
6890                 cached = (MonoClass *)g_hash_table_lookup (image->szarray_cache, eclass);
6891                 mono_os_mutex_unlock (&image->szarray_cache_lock);
6892         } else {
6893                 rootlist = (GSList *)g_hash_table_lookup (image->array_cache, eclass);
6894                 for (list = rootlist; list; list = list->next) {
6895                         k = (MonoClass *)list->data;
6896                         if ((k->rank == rank) && (k->byval_arg.type == (((rank > 1) || bounded) ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
6897                                 cached = k;
6898                                 break;
6899                         }
6900                 }
6901         }
6902         if (cached) {
6903                 mono_loader_unlock ();
6904                 return cached;
6905         }
6906
6907         mono_profiler_class_event (klass, MONO_PROFILE_START_LOAD);
6908
6909         classes_size += sizeof (MonoClassArray);
6910         ++class_array_count;
6911
6912         if (rank == 1 && !bounded) {
6913                 mono_os_mutex_lock (&image->szarray_cache_lock);
6914                 g_hash_table_insert (image->szarray_cache, eclass, klass);
6915                 mono_os_mutex_unlock (&image->szarray_cache_lock);
6916         } else {
6917                 list = g_slist_append (rootlist, klass);
6918                 g_hash_table_insert (image->array_cache, eclass, list);
6919         }
6920
6921         mono_loader_unlock ();
6922
6923         mono_profiler_class_loaded (klass, MONO_PROFILE_OK);
6924
6925         return klass;
6926 }
6927
6928 /**
6929  * mono_array_class_get:
6930  * @element_class: element class 
6931  * @rank: the dimension of the array class
6932  *
6933  * Returns: A class object describing the array with element type @element_type and 
6934  * dimension @rank. 
6935  */
6936 MonoClass *
6937 mono_array_class_get (MonoClass *eclass, guint32 rank)
6938 {
6939         return mono_bounded_array_class_get (eclass, rank, FALSE);
6940 }
6941
6942 /**
6943  * mono_class_instance_size:
6944  * @klass: a class 
6945  *
6946  * Use to get the size of a class in bytes.
6947  *
6948  * Returns: The size of an object instance
6949  */
6950 gint32
6951 mono_class_instance_size (MonoClass *klass)
6952 {       
6953         if (!klass->size_inited)
6954                 mono_class_init (klass);
6955
6956         return klass->instance_size;
6957 }
6958
6959 /**
6960  * mono_class_min_align:
6961  * @klass: a class 
6962  *
6963  * Use to get the computed minimum alignment requirements for the specified class.
6964  *
6965  * Returns: minimum alignment requirements
6966  */
6967 gint32
6968 mono_class_min_align (MonoClass *klass)
6969 {       
6970         if (!klass->size_inited)
6971                 mono_class_init (klass);
6972
6973         return klass->min_align;
6974 }
6975
6976 /**
6977  * mono_class_value_size:
6978  * @klass: a class 
6979  *
6980  * This function is used for value types, and return the
6981  * space and the alignment to store that kind of value object.
6982  *
6983  * Returns: the size of a value of kind @klass
6984  */
6985 gint32
6986 mono_class_value_size (MonoClass *klass, guint32 *align)
6987 {
6988         gint32 size;
6989
6990         /* fixme: check disable, because we still have external revereces to
6991          * mscorlib and Dummy Objects 
6992          */
6993         /*g_assert (klass->valuetype);*/
6994
6995         size = mono_class_instance_size (klass) - sizeof (MonoObject);
6996
6997         if (align)
6998                 *align = klass->min_align;
6999
7000         return size;
7001 }
7002
7003 /**
7004  * mono_class_data_size:
7005  * @klass: a class 
7006  * 
7007  * Returns: The size of the static class data
7008  */
7009 gint32
7010 mono_class_data_size (MonoClass *klass)
7011 {       
7012         if (!klass->inited)
7013                 mono_class_init (klass);
7014         /* This can happen with dynamically created types */
7015         if (!klass->fields_inited)
7016                 mono_class_setup_fields (klass);
7017
7018         /* in arrays, sizes.class_size is unioned with element_size
7019          * and arrays have no static fields
7020          */
7021         if (klass->rank)
7022                 return 0;
7023         return klass->sizes.class_size;
7024 }
7025
7026 /*
7027  * Auxiliary routine to mono_class_get_field
7028  *
7029  * Takes a field index instead of a field token.
7030  */
7031 static MonoClassField *
7032 mono_class_get_field_idx (MonoClass *klass, int idx)
7033 {
7034         mono_class_setup_fields (klass);
7035         if (mono_class_has_failure (klass))
7036                 return NULL;
7037
7038         while (klass) {
7039                 int first_field_idx = mono_class_get_first_field_idx (klass);
7040                 int fcount = mono_class_get_field_count (klass);
7041                 if (klass->image->uncompressed_metadata) {
7042                         /* 
7043                          * first_field_idx points to the FieldPtr table, while idx points into the
7044                          * Field table, so we have to do a search.
7045                          */
7046                         /*FIXME this is broken for types with multiple fields with the same name.*/
7047                         const char *name = mono_metadata_string_heap (klass->image, mono_metadata_decode_row_col (&klass->image->tables [MONO_TABLE_FIELD], idx, MONO_FIELD_NAME));
7048                         int i;
7049
7050                         for (i = 0; i < fcount; ++i)
7051                                 if (mono_field_get_name (&klass->fields [i]) == name)
7052                                         return &klass->fields [i];
7053                         g_assert_not_reached ();
7054                 } else {                        
7055                         if (fcount) {
7056                                 if ((idx >= first_field_idx) && (idx < first_field_idx + fcount)){
7057                                         return &klass->fields [idx - first_field_idx];
7058                                 }
7059                         }
7060                 }
7061                 klass = klass->parent;
7062         }
7063         return NULL;
7064 }
7065
7066 /**
7067  * mono_class_get_field:
7068  * @class: the class to lookup the field.
7069  * @field_token: the field token
7070  *
7071  * Returns: A MonoClassField representing the type and offset of
7072  * the field, or a NULL value if the field does not belong to this
7073  * class.
7074  */
7075 MonoClassField *
7076 mono_class_get_field (MonoClass *klass, guint32 field_token)
7077 {
7078         int idx = mono_metadata_token_index (field_token);
7079
7080         g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
7081
7082         return mono_class_get_field_idx (klass, idx - 1);
7083 }
7084
7085 /**
7086  * mono_class_get_field_from_name:
7087  * @klass: the class to lookup the field.
7088  * @name: the field name
7089  *
7090  * Search the class @klass and it's parents for a field with the name @name.
7091  * 
7092  * Returns: The MonoClassField pointer of the named field or NULL
7093  */
7094 MonoClassField *
7095 mono_class_get_field_from_name (MonoClass *klass, const char *name)
7096 {
7097         return mono_class_get_field_from_name_full (klass, name, NULL);
7098 }
7099
7100 /**
7101  * mono_class_get_field_from_name_full:
7102  * @klass: the class to lookup the field.
7103  * @name: the field name
7104  * @type: the type of the fields. This optional.
7105  *
7106  * Search the class @klass and it's parents for a field with the name @name and type @type.
7107  *
7108  * If @klass is an inflated generic type, the type comparison is done with the equivalent field
7109  * of its generic type definition.
7110  *
7111  * Returns: The MonoClassField pointer of the named field or NULL
7112  */
7113 MonoClassField *
7114 mono_class_get_field_from_name_full (MonoClass *klass, const char *name, MonoType *type)
7115 {
7116         int i;
7117
7118         mono_class_setup_fields (klass);
7119         if (mono_class_has_failure (klass))
7120                 return NULL;
7121
7122         while (klass) {
7123                 int fcount = mono_class_get_field_count (klass);
7124                 for (i = 0; i < fcount; ++i) {
7125                         MonoClassField *field = &klass->fields [i];
7126
7127                         if (strcmp (name, mono_field_get_name (field)) != 0)
7128                                 continue;
7129
7130                         if (type) {
7131                                 MonoType *field_type = mono_metadata_get_corresponding_field_from_generic_type_definition (field)->type;
7132                                 if (!mono_metadata_type_equal_full (type, field_type, TRUE))
7133                                         continue;
7134                         }
7135                         return field;
7136                 }
7137                 klass = klass->parent;
7138         }
7139         return NULL;
7140 }
7141
7142 /**
7143  * mono_class_get_field_token:
7144  * @field: the field we need the token of
7145  *
7146  * Get the token of a field. Note that the tokesn is only valid for the image
7147  * the field was loaded from. Don't use this function for fields in dynamic types.
7148  * 
7149  * Returns: The token representing the field in the image it was loaded from.
7150  */
7151 guint32
7152 mono_class_get_field_token (MonoClassField *field)
7153 {
7154         MonoClass *klass = field->parent;
7155         int i;
7156
7157         mono_class_setup_fields (klass);
7158
7159         while (klass) {
7160                 if (!klass->fields)
7161                         return 0;
7162                 int first_field_idx = mono_class_get_first_field_idx (klass);
7163                 int fcount = mono_class_get_field_count (klass);
7164                 for (i = 0; i < fcount; ++i) {
7165                         if (&klass->fields [i] == field) {
7166                                 int idx = first_field_idx + i + 1;
7167
7168                                 if (klass->image->uncompressed_metadata)
7169                                         idx = mono_metadata_translate_token_index (klass->image, MONO_TABLE_FIELD, idx);
7170                                 return mono_metadata_make_token (MONO_TABLE_FIELD, idx);
7171                         }
7172                 }
7173                 klass = klass->parent;
7174         }
7175
7176         g_assert_not_reached ();
7177         return 0;
7178 }
7179
7180 static int
7181 mono_field_get_index (MonoClassField *field)
7182 {
7183         int index = field - field->parent->fields;
7184         g_assert (index >= 0 && index < mono_class_get_field_count (field->parent));
7185
7186         return index;
7187 }
7188
7189 /*
7190  * mono_class_get_field_default_value:
7191  *
7192  * Return the default value of the field as a pointer into the metadata blob.
7193  */
7194 const char*
7195 mono_class_get_field_default_value (MonoClassField *field, MonoTypeEnum *def_type)
7196 {
7197         guint32 cindex;
7198         guint32 constant_cols [MONO_CONSTANT_SIZE];
7199         int field_index;
7200         MonoClass *klass = field->parent;
7201
7202         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT);
7203
7204         MonoClassExt *ext = mono_class_get_ext (klass);
7205         if (!ext || !ext->field_def_values) {
7206                 MonoFieldDefaultValue *def_values;
7207
7208                 mono_class_alloc_ext (klass);
7209                 ext = mono_class_get_ext (klass);
7210
7211                 def_values = (MonoFieldDefaultValue *)mono_class_alloc0 (klass, sizeof (MonoFieldDefaultValue) * mono_class_get_field_count (klass));
7212
7213                 mono_image_lock (klass->image);
7214                 mono_memory_barrier ();
7215                 if (!ext->field_def_values)
7216                         ext->field_def_values = def_values;
7217                 mono_image_unlock (klass->image);
7218         }
7219
7220         field_index = mono_field_get_index (field);
7221                 
7222         if (!ext->field_def_values [field_index].data) {
7223                 cindex = mono_metadata_get_constant_index (field->parent->image, mono_class_get_field_token (field), 0);
7224                 if (!cindex)
7225                         return NULL;
7226
7227                 g_assert (!(field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA));
7228
7229                 mono_metadata_decode_row (&field->parent->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
7230                 ext->field_def_values [field_index].def_type = (MonoTypeEnum)constant_cols [MONO_CONSTANT_TYPE];
7231                 ext->field_def_values [field_index].data = (const char *)mono_metadata_blob_heap (field->parent->image, constant_cols [MONO_CONSTANT_VALUE]);
7232         }
7233
7234         *def_type = ext->field_def_values [field_index].def_type;
7235         return ext->field_def_values [field_index].data;
7236 }
7237
7238 static int
7239 mono_property_get_index (MonoProperty *prop)
7240 {
7241         MonoClassExt *ext = mono_class_get_ext (prop->parent);
7242         int index = prop - ext->properties;
7243
7244         g_assert (index >= 0 && index < ext->property.count);
7245
7246         return index;
7247 }
7248
7249 /*
7250  * mono_class_get_property_default_value:
7251  *
7252  * Return the default value of the field as a pointer into the metadata blob.
7253  */
7254 const char*
7255 mono_class_get_property_default_value (MonoProperty *property, MonoTypeEnum *def_type)
7256 {
7257         guint32 cindex;
7258         guint32 constant_cols [MONO_CONSTANT_SIZE];
7259         MonoClass *klass = property->parent;
7260
7261         g_assert (property->attrs & PROPERTY_ATTRIBUTE_HAS_DEFAULT);
7262         /*
7263          * We don't cache here because it is not used by C# so it's quite rare, but
7264          * we still do the lookup in klass->ext because that is where the data
7265          * is stored for dynamic assemblies.
7266          */
7267
7268         if (image_is_dynamic (klass->image)) {
7269                 MonoClassExt *ext = mono_class_get_ext (klass);
7270                 int prop_index = mono_property_get_index (property);
7271                 if (ext->prop_def_values && ext->prop_def_values [prop_index].data) {
7272                         *def_type = ext->prop_def_values [prop_index].def_type;
7273                         return ext->prop_def_values [prop_index].data;
7274                 }
7275                 return NULL;
7276         }
7277         cindex = mono_metadata_get_constant_index (klass->image, mono_class_get_property_token (property), 0);
7278         if (!cindex)
7279                 return NULL;
7280
7281         mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_CONSTANT], cindex - 1, constant_cols, MONO_CONSTANT_SIZE);
7282         *def_type = (MonoTypeEnum)constant_cols [MONO_CONSTANT_TYPE];
7283         return (const char *)mono_metadata_blob_heap (klass->image, constant_cols [MONO_CONSTANT_VALUE]);
7284 }
7285
7286 guint32
7287 mono_class_get_event_token (MonoEvent *event)
7288 {
7289         MonoClass *klass = event->parent;
7290         int i;
7291
7292         while (klass) {
7293                 MonoClassExt *ext = mono_class_get_ext (klass);
7294                 if (ext) {
7295                         for (i = 0; i < ext->event.count; ++i) {
7296                                 if (&ext->events [i] == event)
7297                                         return mono_metadata_make_token (MONO_TABLE_EVENT, ext->event.first + i + 1);
7298                         }
7299                 }
7300                 klass = klass->parent;
7301         }
7302
7303         g_assert_not_reached ();
7304         return 0;
7305 }
7306
7307 /**
7308  * mono_class_get_property_from_name:
7309  * @klass: a class
7310  * @name: name of the property to lookup in the specified class
7311  *
7312  * Use this method to lookup a property in a class
7313  * Returns: the MonoProperty with the given name, or NULL if the property
7314  * does not exist on the @klass.
7315  */
7316 MonoProperty*
7317 mono_class_get_property_from_name (MonoClass *klass, const char *name)
7318 {
7319         while (klass) {
7320                 MonoProperty* p;
7321                 gpointer iter = NULL;
7322                 while ((p = mono_class_get_properties (klass, &iter))) {
7323                         if (! strcmp (name, p->name))
7324                                 return p;
7325                 }
7326                 klass = klass->parent;
7327         }
7328         return NULL;
7329 }
7330
7331 /**
7332  * mono_class_get_property_token:
7333  * @prop: MonoProperty to query
7334  *
7335  * Returns: The ECMA token for the specified property.
7336  */
7337 guint32
7338 mono_class_get_property_token (MonoProperty *prop)
7339 {
7340         MonoClass *klass = prop->parent;
7341         while (klass) {
7342                 MonoProperty* p;
7343                 int i = 0;
7344                 gpointer iter = NULL;
7345                 MonoClassExt *ext = mono_class_get_ext (klass);
7346                 while ((p = mono_class_get_properties (klass, &iter))) {
7347                         if (&ext->properties [i] == prop)
7348                                 return mono_metadata_make_token (MONO_TABLE_PROPERTY, ext->property.first + i + 1);
7349                         
7350                         i ++;
7351                 }
7352                 klass = klass->parent;
7353         }
7354
7355         g_assert_not_reached ();
7356         return 0;
7357 }
7358
7359 char *
7360 mono_class_name_from_token (MonoImage *image, guint32 type_token)
7361 {
7362         const char *name, *nspace;
7363         if (image_is_dynamic (image))
7364                 return g_strdup_printf ("DynamicType 0x%08x", type_token);
7365         
7366         switch (type_token & 0xff000000){
7367         case MONO_TOKEN_TYPE_DEF: {
7368                 guint32 cols [MONO_TYPEDEF_SIZE];
7369                 MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
7370                 guint tidx = mono_metadata_token_index (type_token);
7371
7372                 if (tidx > tt->rows)
7373                         return g_strdup_printf ("Invalid type token 0x%08x", type_token);
7374
7375                 mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
7376                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
7377                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
7378                 if (strlen (nspace) == 0)
7379                         return g_strdup_printf ("%s", name);
7380                 else
7381                         return g_strdup_printf ("%s.%s", nspace, name);
7382         }
7383
7384         case MONO_TOKEN_TYPE_REF: {
7385                 MonoError error;
7386                 guint32 cols [MONO_TYPEREF_SIZE];
7387                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
7388                 guint tidx = mono_metadata_token_index (type_token);
7389
7390                 if (tidx > t->rows)
7391                         return g_strdup_printf ("Invalid type token 0x%08x", type_token);
7392
7393                 if (!mono_verifier_verify_typeref_row (image, tidx - 1, &error)) {
7394                         char *msg = g_strdup_printf ("Invalid type token 0x%08x due to '%s'", type_token, mono_error_get_message (&error));
7395                         mono_error_cleanup (&error);
7396                         return msg;
7397                 }
7398
7399                 mono_metadata_decode_row (t, tidx-1, cols, MONO_TYPEREF_SIZE);
7400                 name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
7401                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
7402                 if (strlen (nspace) == 0)
7403                         return g_strdup_printf ("%s", name);
7404                 else
7405                         return g_strdup_printf ("%s.%s", nspace, name);
7406         }
7407                 
7408         case MONO_TOKEN_TYPE_SPEC:
7409                 return g_strdup_printf ("Typespec 0x%08x", type_token);
7410         default:
7411                 return g_strdup_printf ("Invalid type token 0x%08x", type_token);
7412         }
7413 }
7414
7415 static char *
7416 mono_assembly_name_from_token (MonoImage *image, guint32 type_token)
7417 {
7418         if (image_is_dynamic (image))
7419                 return g_strdup_printf ("DynamicAssembly %s", image->name);
7420         
7421         switch (type_token & 0xff000000){
7422         case MONO_TOKEN_TYPE_DEF:
7423                 if (image->assembly)
7424                         return mono_stringify_assembly_name (&image->assembly->aname);
7425                 else if (image->assembly_name)
7426                         return g_strdup (image->assembly_name);
7427                 return g_strdup_printf ("%s", image->name ? image->name : "[Could not resolve assembly name");
7428         case MONO_TOKEN_TYPE_REF: {
7429                 MonoError error;
7430                 MonoAssemblyName aname;
7431                 guint32 cols [MONO_TYPEREF_SIZE];
7432                 MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
7433                 guint32 idx = mono_metadata_token_index (type_token);
7434
7435                 if (idx > t->rows)
7436                         return g_strdup_printf ("Invalid type token 0x%08x", type_token);
7437         
7438                 if (!mono_verifier_verify_typeref_row (image, idx - 1, &error)) {
7439                         char *msg = g_strdup_printf ("Invalid type token 0x%08x due to '%s'", type_token, mono_error_get_message (&error));
7440                         mono_error_cleanup (&error);
7441                         return msg;
7442                 }
7443                 mono_metadata_decode_row (t, idx-1, cols, MONO_TYPEREF_SIZE);
7444
7445                 idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLUTION_SCOPE_BITS;
7446                 switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLUTION_SCOPE_MASK) {
7447                 case MONO_RESOLUTION_SCOPE_MODULE:
7448                         /* FIXME: */
7449                         return g_strdup ("");
7450                 case MONO_RESOLUTION_SCOPE_MODULEREF:
7451                         /* FIXME: */
7452                         return g_strdup ("");
7453                 case MONO_RESOLUTION_SCOPE_TYPEREF:
7454                         /* FIXME: */
7455                         return g_strdup ("");
7456                 case MONO_RESOLUTION_SCOPE_ASSEMBLYREF:
7457                         mono_assembly_get_assemblyref (image, idx - 1, &aname);
7458                         return mono_stringify_assembly_name (&aname);
7459                 default:
7460                         g_assert_not_reached ();
7461                 }
7462                 break;
7463         }
7464         case MONO_TOKEN_TYPE_SPEC:
7465                 /* FIXME: */
7466                 return g_strdup ("");
7467         default:
7468                 g_assert_not_reached ();
7469         }
7470
7471         return NULL;
7472 }
7473
7474 /**
7475  * mono_class_get_full:
7476  * @image: the image where the class resides
7477  * @type_token: the token for the class
7478  * @context: the generic context used to evaluate generic instantiations in
7479  * @deprecated: Functions that expose MonoGenericContext are going away in mono 4.0
7480  *
7481  * Returns: The MonoClass that represents @type_token in @image
7482  */
7483 MonoClass *
7484 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
7485 {
7486         MonoError error;
7487         MonoClass *klass;
7488         klass = mono_class_get_checked (image, type_token, &error);
7489
7490         if (klass && context && mono_metadata_token_table (type_token) == MONO_TABLE_TYPESPEC)
7491                 klass = mono_class_inflate_generic_class_checked (klass, context, &error);
7492
7493         g_assert (mono_error_ok (&error)); /* FIXME deprecate this function and forbit the runtime from using it. */
7494         return klass;
7495 }
7496
7497
7498 MonoClass *
7499 mono_class_get_and_inflate_typespec_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error)
7500 {
7501         MonoClass *klass;
7502
7503         mono_error_init (error);
7504         klass = mono_class_get_checked (image, type_token, error);
7505
7506         if (klass && context && mono_metadata_token_table (type_token) == MONO_TABLE_TYPESPEC)
7507                 klass = mono_class_inflate_generic_class_checked (klass, context, error);
7508
7509         return klass;
7510 }
7511 /**
7512  * mono_class_get_checked:
7513  * @image: the image where the class resides
7514  * @type_token: the token for the class
7515  * @error: error object to return any error
7516  *
7517  * Returns: The MonoClass that represents @type_token in @image, or NULL on error.
7518  */
7519 MonoClass *
7520 mono_class_get_checked (MonoImage *image, guint32 type_token, MonoError *error)
7521 {
7522         MonoClass *klass = NULL;
7523
7524         mono_error_init (error);
7525
7526         if (image_is_dynamic (image)) {
7527                 int table = mono_metadata_token_table (type_token);
7528
7529                 if (table != MONO_TABLE_TYPEDEF && table != MONO_TABLE_TYPEREF && table != MONO_TABLE_TYPESPEC) {
7530                         mono_error_set_bad_image (error, image,"Bad token table for dynamic image: %x", table);
7531                         return NULL;
7532                 }
7533                 klass = (MonoClass *)mono_lookup_dynamic_token (image, type_token, NULL, error);
7534                 goto done;
7535         }
7536
7537         switch (type_token & 0xff000000){
7538         case MONO_TOKEN_TYPE_DEF:
7539                 klass = mono_class_create_from_typedef (image, type_token, error);
7540                 break;          
7541         case MONO_TOKEN_TYPE_REF:
7542                 klass = mono_class_from_typeref_checked (image, type_token, error);
7543                 break;
7544         case MONO_TOKEN_TYPE_SPEC:
7545                 klass = mono_class_create_from_typespec (image, type_token, NULL, error);
7546                 break;
7547         default:
7548                 mono_error_set_bad_image (error, image, "Unknown type token %x", type_token & 0xff000000);
7549         }
7550
7551 done:
7552         /* Generic case, should be avoided for when a better error is possible. */
7553         if (!klass && mono_error_ok (error)) {
7554                 char *name = mono_class_name_from_token (image, type_token);
7555                 char *assembly = mono_assembly_name_from_token (image, type_token);
7556                 mono_error_set_type_load_name (error, name, assembly, "Could not resolve type with token %08x", type_token);
7557         }
7558
7559         return klass;
7560 }
7561
7562
7563 /**
7564  * mono_type_get_checked:
7565  * @image: the image where the type resides
7566  * @type_token: the token for the type
7567  * @context: the generic context used to evaluate generic instantiations in
7568  * @error: Error handling context
7569  *
7570  * This functions exists to fullfill the fact that sometimes it's desirable to have access to the 
7571  * 
7572  * Returns: The MonoType that represents @type_token in @image
7573  */
7574 MonoType *
7575 mono_type_get_checked (MonoImage *image, guint32 type_token, MonoGenericContext *context, MonoError *error)
7576 {
7577         MonoType *type = NULL;
7578         gboolean inflated = FALSE;
7579
7580         mono_error_init (error);
7581
7582         //FIXME: this will not fix the very issue for which mono_type_get_full exists -but how to do it then?
7583         if (image_is_dynamic (image)) {
7584                 MonoClass *klass = (MonoClass *)mono_lookup_dynamic_token (image, type_token, context, error);
7585                 return_val_if_nok (error, NULL);
7586                 return mono_class_get_type (klass);
7587         }
7588
7589         if ((type_token & 0xff000000) != MONO_TOKEN_TYPE_SPEC) {
7590                 MonoClass *klass = mono_class_get_checked (image, type_token, error);
7591
7592                 if (!klass) {
7593                         return NULL;
7594                 }
7595
7596                 g_assert (klass);
7597                 return mono_class_get_type (klass);
7598         }
7599
7600         type = mono_type_retrieve_from_typespec (image, type_token, context, &inflated, error);
7601
7602         if (!type) {
7603                 return NULL;
7604         }
7605
7606         if (inflated) {
7607                 MonoType *tmp = type;
7608                 type = mono_class_get_type (mono_class_from_mono_type (type));
7609                 /* FIXME: This is a workaround fo the fact that a typespec token sometimes reference to the generic type definition.
7610                  * A MonoClass::byval_arg of a generic type definion has type CLASS.
7611                  * Some parts of mono create a GENERICINST to reference a generic type definition and this generates confict with byval_arg.
7612                  *
7613                  * The long term solution is to chaise this places and make then set MonoType::type correctly.
7614                  * */
7615                 if (type->type != tmp->type)
7616                         type = tmp;
7617                 else
7618                         mono_metadata_free_type (tmp);
7619         }
7620         return type;
7621 }
7622
7623 /**
7624  * mono_class_get:
7625  * @image: image where the class token will be looked up.
7626  * @type_token: a type token from the image
7627  *
7628  * Returns the MonoClass with the given @type_token on the @image
7629  */
7630 MonoClass *
7631 mono_class_get (MonoImage *image, guint32 type_token)
7632 {
7633         return mono_class_get_full (image, type_token, NULL);
7634 }
7635
7636 /**
7637  * mono_image_init_name_cache:
7638  *
7639  *  Initializes the class name cache stored in image->name_cache.
7640  *
7641  * LOCKING: Acquires the corresponding image lock.
7642  */
7643 void
7644 mono_image_init_name_cache (MonoImage *image)
7645 {
7646         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
7647         guint32 cols [MONO_TYPEDEF_SIZE];
7648         const char *name;
7649         const char *nspace;
7650         guint32 i, visib, nspace_index;
7651         GHashTable *name_cache2, *nspace_table, *the_name_cache;
7652
7653         if (image->name_cache)
7654                 return;
7655
7656         the_name_cache = g_hash_table_new (g_str_hash, g_str_equal);
7657
7658         if (image_is_dynamic (image)) {
7659                 mono_image_lock (image);
7660                 if (image->name_cache) {
7661                         /* Somebody initialized it before us */
7662                         g_hash_table_destroy (the_name_cache);
7663                 } else {
7664                         mono_atomic_store_release (&image->name_cache, the_name_cache);
7665                 }
7666                 mono_image_unlock (image);
7667                 return;
7668         }
7669
7670         /* Temporary hash table to avoid lookups in the nspace_table */
7671         name_cache2 = g_hash_table_new (NULL, NULL);
7672
7673         for (i = 1; i <= t->rows; ++i) {
7674                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
7675                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
7676                 /*
7677                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
7678                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
7679                  */
7680                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
7681                         continue;
7682                 name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
7683                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
7684
7685                 nspace_index = cols [MONO_TYPEDEF_NAMESPACE];
7686                 nspace_table = (GHashTable *)g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
7687                 if (!nspace_table) {
7688                         nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
7689                         g_hash_table_insert (the_name_cache, (char*)nspace, nspace_table);
7690                         g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
7691                                                                  nspace_table);
7692                 }
7693                 g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (i));
7694         }
7695
7696         /* Load type names from EXPORTEDTYPES table */
7697         {
7698                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
7699                 guint32 cols [MONO_EXP_TYPE_SIZE];
7700                 int i;
7701
7702                 for (i = 0; i < t->rows; ++i) {
7703                         mono_metadata_decode_row (t, i, cols, MONO_EXP_TYPE_SIZE);
7704
7705                         guint32 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
7706                         if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_EXP_TYPE)
7707                                 /* Nested type */
7708                                 continue;
7709
7710                         name = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAME]);
7711                         nspace = mono_metadata_string_heap (image, cols [MONO_EXP_TYPE_NAMESPACE]);
7712
7713                         nspace_index = cols [MONO_EXP_TYPE_NAMESPACE];
7714                         nspace_table = (GHashTable *)g_hash_table_lookup (name_cache2, GUINT_TO_POINTER (nspace_index));
7715                         if (!nspace_table) {
7716                                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
7717                                 g_hash_table_insert (the_name_cache, (char*)nspace, nspace_table);
7718                                 g_hash_table_insert (name_cache2, GUINT_TO_POINTER (nspace_index),
7719                                                                          nspace_table);
7720                         }
7721                         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (mono_metadata_make_token (MONO_TABLE_EXPORTEDTYPE, i + 1)));
7722                 }
7723         }
7724
7725         g_hash_table_destroy (name_cache2);
7726
7727         mono_image_lock (image);
7728         if (image->name_cache) {
7729                 /* Somebody initialized it before us */
7730                 g_hash_table_destroy (the_name_cache);
7731         } else {
7732                 mono_atomic_store_release (&image->name_cache, the_name_cache);
7733         }
7734         mono_image_unlock (image);
7735 }
7736
7737 /*FIXME Only dynamic assemblies should allow this operation.*/
7738 void
7739 mono_image_add_to_name_cache (MonoImage *image, const char *nspace, 
7740                                                           const char *name, guint32 index)
7741 {
7742         GHashTable *nspace_table;
7743         GHashTable *name_cache;
7744         guint32 old_index;
7745
7746         mono_image_init_name_cache (image);
7747         mono_image_lock (image);
7748
7749         name_cache = image->name_cache;
7750         if (!(nspace_table = (GHashTable *)g_hash_table_lookup (name_cache, nspace))) {
7751                 nspace_table = g_hash_table_new (g_str_hash, g_str_equal);
7752                 g_hash_table_insert (name_cache, (char *)nspace, (char *)nspace_table);
7753         }
7754
7755         if ((old_index = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, (char*) name))))
7756                 g_error ("overrwritting old token %x on image %s for type %s::%s", old_index, image->name, nspace, name);
7757
7758         g_hash_table_insert (nspace_table, (char *) name, GUINT_TO_POINTER (index));
7759
7760         mono_image_unlock (image);
7761 }
7762
7763 typedef struct {
7764         gconstpointer key;
7765         gpointer value;
7766 } FindUserData;
7767
7768 static void
7769 find_nocase (gpointer key, gpointer value, gpointer user_data)
7770 {
7771         char *name = (char*)key;
7772         FindUserData *data = (FindUserData*)user_data;
7773
7774         if (!data->value && (mono_utf8_strcasecmp (name, (char*)data->key) == 0))
7775                 data->value = value;
7776 }
7777
7778 /**
7779  * mono_class_from_name_case:
7780  * @image: The MonoImage where the type is looked up in
7781  * @name_space: the type namespace
7782  * @name: the type short name.
7783  * @deprecated: use the mono_class_from_name_case_checked variant instead.
7784  *
7785  * Obtains a MonoClass with a given namespace and a given name which
7786  * is located in the given MonoImage.   The namespace and name
7787  * lookups are case insensitive.
7788  */
7789 MonoClass *
7790 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
7791 {
7792         MonoError error;
7793         MonoClass *res = mono_class_from_name_case_checked (image, name_space, name, &error);
7794         mono_error_cleanup (&error);
7795
7796         return res;
7797 }
7798
7799 /**
7800  * mono_class_from_name_case:
7801  * @image: The MonoImage where the type is looked up in
7802  * @name_space: the type namespace
7803  * @name: the type short name.
7804  * @error: if 
7805  *
7806  * Obtains a MonoClass with a given namespace and a given name which
7807  * is located in the given MonoImage.   The namespace and name
7808  * lookups are case insensitive.
7809  *
7810  * Returns: The MonoClass if the given namespace and name were found, or NULL if it
7811  * was not found.   The @error object will contain information about the problem
7812  * in that case.
7813  */
7814 MonoClass *
7815 mono_class_from_name_case_checked (MonoImage *image, const char *name_space, const char *name, MonoError *error)
7816 {
7817         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
7818         guint32 cols [MONO_TYPEDEF_SIZE];
7819         const char *n;
7820         const char *nspace;
7821         guint32 i, visib;
7822
7823         mono_error_init (error);
7824
7825         if (image_is_dynamic (image)) {
7826                 guint32 token = 0;
7827                 FindUserData user_data;
7828
7829                 mono_image_init_name_cache (image);
7830                 mono_image_lock (image);
7831
7832                 user_data.key = name_space;
7833                 user_data.value = NULL;
7834                 g_hash_table_foreach (image->name_cache, find_nocase, &user_data);
7835
7836                 if (user_data.value) {
7837                         GHashTable *nspace_table = (GHashTable*)user_data.value;
7838
7839                         user_data.key = name;
7840                         user_data.value = NULL;
7841
7842                         g_hash_table_foreach (nspace_table, find_nocase, &user_data);
7843                         
7844                         if (user_data.value)
7845                                 token = GPOINTER_TO_UINT (user_data.value);
7846                 }
7847
7848                 mono_image_unlock (image);
7849                 
7850                 if (token)
7851                         return mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF | token, error);
7852                 else
7853                         return NULL;
7854
7855         }
7856
7857         /* add a cache if needed */
7858         for (i = 1; i <= t->rows; ++i) {
7859                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
7860                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
7861                 /*
7862                  * Nested types are accessed from the nesting name.  We use the fact that nested types use different visibility flags
7863                  * than toplevel types, thus avoiding the need to grovel through the NESTED_TYPE table
7864                  */
7865                 if (visib >= TYPE_ATTRIBUTE_NESTED_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM)
7866                         continue;
7867                 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
7868                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
7869                 if (mono_utf8_strcasecmp (n, name) == 0 && mono_utf8_strcasecmp (nspace, name_space) == 0)
7870                         return mono_class_get_checked (image, MONO_TOKEN_TYPE_DEF | i, error);
7871         }
7872         return NULL;
7873 }
7874
7875 static MonoClass*
7876 return_nested_in (MonoClass *klass, char *nested)
7877 {
7878         MonoClass *found;
7879         char *s = strchr (nested, '/');
7880         gpointer iter = NULL;
7881
7882         if (s) {
7883                 *s = 0;
7884                 s++;
7885         }
7886
7887         while ((found = mono_class_get_nested_types (klass, &iter))) {
7888                 if (strcmp (found->name, nested) == 0) {
7889                         if (s)
7890                                 return return_nested_in (found, s);
7891                         return found;
7892                 }
7893         }
7894         return NULL;
7895 }
7896
7897 static MonoClass*
7898 search_modules (MonoImage *image, const char *name_space, const char *name, MonoError *error)
7899 {
7900         MonoTableInfo *file_table = &image->tables [MONO_TABLE_FILE];
7901         MonoImage *file_image;
7902         MonoClass *klass;
7903         int i;
7904
7905         mono_error_init (error);
7906
7907         /* 
7908          * The EXPORTEDTYPES table only contains public types, so have to search the
7909          * modules as well.
7910          * Note: image->modules contains the contents of the MODULEREF table, while
7911          * the real module list is in the FILE table.
7912          */
7913         for (i = 0; i < file_table->rows; i++) {
7914                 guint32 cols [MONO_FILE_SIZE];
7915                 mono_metadata_decode_row (file_table, i, cols, MONO_FILE_SIZE);
7916                 if (cols [MONO_FILE_FLAGS] == FILE_CONTAINS_NO_METADATA)
7917                         continue;
7918
7919                 file_image = mono_image_load_file_for_image_checked (image, i + 1, error);
7920                 if (file_image) {
7921                         klass = mono_class_from_name_checked (file_image, name_space, name, error);
7922                         if (klass || !is_ok (error))
7923                                 return klass;
7924                 }
7925         }
7926
7927         return NULL;
7928 }
7929
7930 static MonoClass *
7931 mono_class_from_name_checked_aux (MonoImage *image, const char* name_space, const char *name, GHashTable* visited_images, MonoError *error)
7932 {
7933         GHashTable *nspace_table;
7934         MonoImage *loaded_image;
7935         guint32 token = 0;
7936         int i;
7937         MonoClass *klass;
7938         char *nested;
7939         char buf [1024];
7940
7941         mono_error_init (error);
7942
7943         // Checking visited images avoids stack overflows when cyclic references exist.
7944         if (g_hash_table_lookup (visited_images, image))
7945                 return NULL;
7946
7947         g_hash_table_insert (visited_images, image, GUINT_TO_POINTER(1));
7948
7949         if ((nested = strchr (name, '/'))) {
7950                 int pos = nested - name;
7951                 int len = strlen (name);
7952                 if (len > 1023)
7953                         return NULL;
7954                 memcpy (buf, name, len + 1);
7955                 buf [pos] = 0;
7956                 nested = buf + pos + 1;
7957                 name = buf;
7958         }
7959
7960         /* FIXME: get_class_from_name () can't handle types in the EXPORTEDTYPE table */
7961         if (get_class_from_name && image->tables [MONO_TABLE_EXPORTEDTYPE].rows == 0) {
7962                 gboolean res = get_class_from_name (image, name_space, name, &klass);
7963                 if (res) {
7964                         if (!klass) {
7965                                 klass = search_modules (image, name_space, name, error);
7966                                 if (!is_ok (error))
7967                                         return NULL;
7968                         }
7969                         if (nested)
7970                                 return klass ? return_nested_in (klass, nested) : NULL;
7971                         else
7972                                 return klass;
7973                 }
7974         }
7975
7976         mono_image_init_name_cache (image);
7977         mono_image_lock (image);
7978
7979         nspace_table = (GHashTable *)g_hash_table_lookup (image->name_cache, name_space);
7980
7981         if (nspace_table)
7982                 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
7983
7984         mono_image_unlock (image);
7985
7986         if (!token && image_is_dynamic (image) && image->modules) {
7987                 /* Search modules as well */
7988                 for (i = 0; i < image->module_count; ++i) {
7989                         MonoImage *module = image->modules [i];
7990
7991                         klass = mono_class_from_name_checked (module, name_space, name, error);
7992                         if (klass || !is_ok (error))
7993                                 return klass;
7994                 }
7995         }
7996
7997         if (!token) {
7998                 klass = search_modules (image, name_space, name, error);
7999                 if (klass || !is_ok (error))
8000                         return klass;
8001                 return NULL;
8002         }
8003
8004         if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
8005                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
8006                 guint32 cols [MONO_EXP_TYPE_SIZE];
8007                 guint32 idx, impl;
8008
8009                 idx = mono_metadata_token_index (token);
8010
8011                 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
8012
8013                 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
8014                 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
8015                         loaded_image = mono_assembly_load_module_checked (image->assembly, impl >> MONO_IMPLEMENTATION_BITS, error);
8016                         if (!loaded_image)
8017                                 return NULL;
8018                         klass = mono_class_from_name_checked_aux (loaded_image, name_space, name, visited_images, error);
8019                         if (nested)
8020                                 return klass ? return_nested_in (klass, nested) : NULL;
8021                         return klass;
8022                 } else if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_ASSEMBLYREF) {
8023                         guint32 assembly_idx;
8024
8025                         assembly_idx = impl >> MONO_IMPLEMENTATION_BITS;
8026
8027                         mono_assembly_load_reference (image, assembly_idx - 1);
8028                         g_assert (image->references [assembly_idx - 1]);
8029                         if (image->references [assembly_idx - 1] == (gpointer)-1)
8030                                 return NULL;                    
8031                         klass = mono_class_from_name_checked_aux (image->references [assembly_idx - 1]->image, name_space, name, visited_images, error);
8032                         if (nested)
8033                                 return klass ? return_nested_in (klass, nested) : NULL;
8034                         return klass;
8035                 } else {
8036                         g_assert_not_reached ();
8037                 }
8038         }
8039
8040         token = MONO_TOKEN_TYPE_DEF | token;
8041
8042         klass = mono_class_get_checked (image, token, error);
8043         if (nested)
8044                 return return_nested_in (klass, nested);
8045         return klass;
8046 }
8047
8048 /**
8049  * mono_class_from_name_checked:
8050  * @image: The MonoImage where the type is looked up in
8051  * @name_space: the type namespace
8052  * @name: the type short name.
8053  *
8054  * Obtains a MonoClass with a given namespace and a given name which
8055  * is located in the given MonoImage.
8056  *
8057  * Works like mono_class_from_name, but error handling is tricky. It can return NULL and have no error
8058  * set if the class was not found or it will return NULL and set the error if there was a loading error.
8059  */
8060 MonoClass *
8061 mono_class_from_name_checked (MonoImage *image, const char* name_space, const char *name, MonoError *error)
8062 {
8063         MonoClass *klass;
8064         GHashTable *visited_images;
8065
8066         visited_images = g_hash_table_new (g_direct_hash, g_direct_equal);
8067
8068         klass = mono_class_from_name_checked_aux (image, name_space, name, visited_images, error);
8069
8070         g_hash_table_destroy (visited_images);
8071
8072         return klass;
8073 }
8074
8075 /**
8076  * mono_class_from_name:
8077  * @image: The MonoImage where the type is looked up in
8078  * @name_space: the type namespace
8079  * @name: the type short name.
8080  *
8081  * Obtains a MonoClass with a given namespace and a given name which
8082  * is located in the given MonoImage.
8083  *
8084  * To reference nested classes, use the "/" character as a separator.
8085  * For example use "Foo/Bar" to reference the class Bar that is nested
8086  * inside Foo, like this: "class Foo { class Bar {} }".
8087  */
8088 MonoClass *
8089 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
8090 {
8091         MonoError error;
8092         MonoClass *klass;
8093
8094         klass = mono_class_from_name_checked (image, name_space, name, &error);
8095         mono_error_cleanup (&error); /* FIXME Don't swallow the error */
8096
8097         return klass;
8098 }
8099
8100 /**
8101  * mono_class_load_from_name:
8102  * @image: The MonoImage where the type is looked up in
8103  * @name_space: the type namespace
8104  * @name: the type short name.
8105  *
8106  * This function works exactly like mono_class_from_name but it will abort if the class is not found.
8107  * This function should be used by the runtime for critical types to which there's no way to recover but crash
8108  * If they are missing. Thing of System.Object or System.String.
8109  */
8110 MonoClass *
8111 mono_class_load_from_name (MonoImage *image, const char* name_space, const char *name)
8112 {
8113         MonoError error;
8114         MonoClass *klass;
8115
8116         klass = mono_class_from_name_checked (image, name_space, name, &error);
8117         if (!klass)
8118                 g_error ("Runtime critical type %s.%s not found", name_space, name);
8119         if (!mono_error_ok (&error))
8120                 g_error ("Could not load runtime critical type %s.%s due to %s", name_space, name, mono_error_get_message (&error));
8121         return klass;
8122 }
8123
8124 /**
8125  * mono_class_try_load_from_name:
8126  * @image: The MonoImage where the type is looked up in
8127  * @name_space: the type namespace
8128  * @name: the type short name.
8129  *
8130  * This function tries to load a type, returning the class was found or NULL otherwise.
8131  * This function should be used by the runtime when probing for optional types, those that could have being linked out.
8132  *
8133  * Big design consideration. This function aborts if there was an error loading the type. This prevents us from missing
8134  * a type that we would otherwise assume to be available but was not due some error.
8135  *
8136  */
8137 MonoClass*
8138 mono_class_try_load_from_name (MonoImage *image, const char* name_space, const char *name)
8139 {
8140         MonoError error;
8141         MonoClass *klass;
8142
8143         klass = mono_class_from_name_checked (image, name_space, name, &error);
8144         if (!mono_error_ok (&error))
8145                 g_error ("Could not load runtime critical type %s.%s due to %s", name_space, name, mono_error_get_message (&error));
8146         return klass;
8147 }
8148
8149
8150 /**
8151  * mono_class_is_subclass_of:
8152  * @klass: class to probe if it is a subclass of another one
8153  * @klassc: the class we suspect is the base class
8154  * @check_interfaces: whether we should perform interface checks
8155  *
8156  * This method determines whether @klass is a subclass of @klassc.
8157  *
8158  * If the @check_interfaces flag is set, then if @klassc is an interface
8159  * this method return TRUE if the @klass implements the interface or
8160  * if @klass is an interface, if one of its base classes is @klass.
8161  *
8162  * If @check_interfaces is false then, then if @klass is not an interface
8163  * then it returns TRUE if the @klass is a subclass of @klassc.
8164  *
8165  * if @klass is an interface and @klassc is System.Object, then this function
8166  * return true.
8167  *
8168  */
8169 gboolean
8170 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc, 
8171                            gboolean check_interfaces)
8172 {
8173         /* FIXME test for interfaces with variant generic arguments */
8174         mono_class_init (klass);
8175         mono_class_init (klassc);
8176         
8177         if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
8178                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (klass, klassc->interface_id))
8179                         return TRUE;
8180         } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
8181                 int i;
8182
8183                 for (i = 0; i < klass->interface_count; i ++) {
8184                         MonoClass *ic =  klass->interfaces [i];
8185                         if (ic == klassc)
8186                                 return TRUE;
8187                 }
8188         } else {
8189                 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
8190                         return TRUE;
8191         }
8192
8193         /* 
8194          * MS.NET thinks interfaces are a subclass of Object, so we think it as
8195          * well.
8196          */
8197         if (klassc == mono_defaults.object_class)
8198                 return TRUE;
8199
8200         return FALSE;
8201 }
8202
8203 static gboolean
8204 mono_type_is_generic_argument (MonoType *type)
8205 {
8206         return type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR;
8207 }
8208
8209 gboolean
8210 mono_class_has_variant_generic_params (MonoClass *klass)
8211 {
8212         int i;
8213         MonoGenericContainer *container;
8214
8215         if (!mono_class_is_ginst (klass))
8216                 return FALSE;
8217
8218         container = mono_class_get_generic_container (mono_class_get_generic_class (klass)->container_class);
8219
8220         for (i = 0; i < container->type_argc; ++i)
8221                 if (mono_generic_container_get_param_info (container, i)->flags & (MONO_GEN_PARAM_VARIANT|MONO_GEN_PARAM_COVARIANT))
8222                         return TRUE;
8223
8224         return FALSE;
8225 }
8226
8227 static gboolean
8228 mono_gparam_is_reference_conversible (MonoClass *target, MonoClass *candidate, gboolean check_for_reference_conv)
8229 {
8230         if (target == candidate)
8231                 return TRUE;
8232
8233         if (check_for_reference_conv &&
8234                 mono_type_is_generic_argument (&target->byval_arg) &&
8235                 mono_type_is_generic_argument (&candidate->byval_arg)) {
8236                 MonoGenericParam *gparam = candidate->byval_arg.data.generic_param;
8237                 MonoGenericParamInfo *pinfo = mono_generic_param_info (gparam);
8238
8239                 if (!pinfo || (pinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) == 0)
8240                         return FALSE;
8241         }
8242         if (!mono_class_is_assignable_from (target, candidate))
8243                 return FALSE;
8244         return TRUE;
8245 }
8246
8247 /**
8248  * @container the generic container from the GTD
8249  * @klass: the class to be assigned to
8250  * @oklass: the source class
8251  * 
8252  * Both @klass and @oklass must be instances of the same generic interface.
8253  *
8254  * Returns: TRUE if @klass can be assigned to a @klass variable
8255  */
8256 gboolean
8257 mono_class_is_variant_compatible (MonoClass *klass, MonoClass *oklass, gboolean check_for_reference_conv)
8258 {
8259         int j;
8260         MonoType **klass_argv, **oklass_argv;
8261         MonoClass *klass_gtd = mono_class_get_generic_type_definition (klass);
8262         MonoGenericContainer *container = mono_class_get_generic_container (klass_gtd);
8263
8264         if (klass == oklass)
8265                 return TRUE;
8266
8267         /*Viable candidates are instances of the same generic interface*/
8268         if (mono_class_get_generic_type_definition (oklass) != klass_gtd || oklass == klass_gtd)
8269                 return FALSE;
8270
8271         klass_argv = &mono_class_get_generic_class (klass)->context.class_inst->type_argv [0];
8272         oklass_argv = &mono_class_get_generic_class (oklass)->context.class_inst->type_argv [0];
8273
8274         for (j = 0; j < container->type_argc; ++j) {
8275                 MonoClass *param1_class = mono_class_from_mono_type (klass_argv [j]);
8276                 MonoClass *param2_class = mono_class_from_mono_type (oklass_argv [j]);
8277
8278                 if (param1_class->valuetype != param2_class->valuetype || (param1_class->valuetype && param1_class != param2_class))
8279                         return FALSE;
8280
8281                 /*
8282                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
8283                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
8284                  */
8285                 if (param1_class != param2_class) {
8286                         if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_VARIANT) {
8287                                 if (!mono_gparam_is_reference_conversible (param1_class, param2_class, check_for_reference_conv))
8288                                         return FALSE;
8289                         } else if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_COVARIANT) {
8290                                 if (!mono_gparam_is_reference_conversible (param2_class, param1_class, check_for_reference_conv))
8291                                         return FALSE;
8292                         } else
8293                                 return FALSE;
8294                 }
8295         }
8296         return TRUE;
8297 }
8298
8299 static gboolean
8300 mono_gparam_is_assignable_from (MonoClass *target, MonoClass *candidate)
8301 {
8302         MonoGenericParam *gparam, *ogparam;
8303         MonoGenericParamInfo *tinfo, *cinfo;
8304         MonoClass **candidate_class;
8305         gboolean class_constraint_satisfied, valuetype_constraint_satisfied;
8306         int tmask, cmask;
8307
8308         if (target == candidate)
8309                 return TRUE;
8310         if (target->byval_arg.type != candidate->byval_arg.type)
8311                 return FALSE;
8312
8313         gparam = target->byval_arg.data.generic_param;
8314         ogparam = candidate->byval_arg.data.generic_param;
8315         tinfo = mono_generic_param_info (gparam);
8316         cinfo = mono_generic_param_info (ogparam);
8317
8318         class_constraint_satisfied = FALSE;
8319         valuetype_constraint_satisfied = FALSE;
8320
8321         /*candidate must have a super set of target's special constraints*/
8322         tmask = tinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
8323         cmask = cinfo->flags & GENERIC_PARAMETER_ATTRIBUTE_SPECIAL_CONSTRAINTS_MASK;
8324
8325         if (cinfo->constraints) {
8326                 for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
8327                         MonoClass *cc = *candidate_class;
8328
8329                         if (mono_type_is_reference (&cc->byval_arg) && !MONO_CLASS_IS_INTERFACE (cc))
8330                                 class_constraint_satisfied = TRUE;
8331                         else if (!mono_type_is_reference (&cc->byval_arg) && !MONO_CLASS_IS_INTERFACE (cc))
8332                                 valuetype_constraint_satisfied = TRUE;
8333                 }
8334         }
8335         class_constraint_satisfied |= (cmask & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) != 0;
8336         valuetype_constraint_satisfied |= (cmask & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) != 0;
8337
8338         if ((tmask & GENERIC_PARAMETER_ATTRIBUTE_REFERENCE_TYPE_CONSTRAINT) && !class_constraint_satisfied)
8339                 return FALSE;
8340         if ((tmask & GENERIC_PARAMETER_ATTRIBUTE_VALUE_TYPE_CONSTRAINT) && !valuetype_constraint_satisfied)
8341                 return FALSE;
8342         if ((tmask & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) && !((cmask & GENERIC_PARAMETER_ATTRIBUTE_CONSTRUCTOR_CONSTRAINT) ||
8343                 valuetype_constraint_satisfied)) {
8344                 return FALSE;
8345         }
8346
8347
8348         /*candidate type constraints must be a superset of target's*/
8349         if (tinfo->constraints) {
8350                 MonoClass **target_class;
8351                 for (target_class = tinfo->constraints; *target_class; ++target_class) {
8352                         MonoClass *tc = *target_class;
8353
8354                         /*
8355                          * A constraint from @target might inflate into @candidate itself and in that case we don't need
8356                          * check it's constraints since it satisfy the constraint by itself.
8357                          */
8358                         if (mono_metadata_type_equal (&tc->byval_arg, &candidate->byval_arg))
8359                                 continue;
8360
8361                         if (!cinfo->constraints)
8362                                 return FALSE;
8363
8364                         for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
8365                                 MonoClass *cc = *candidate_class;
8366
8367                                 if (mono_class_is_assignable_from (tc, cc))
8368                                         break;
8369
8370                                 /*
8371                                  * This happens when we have the following:
8372                                  *
8373                                  * Bar<K> where K : IFace
8374                                  * Foo<T, U> where T : U where U : IFace
8375                                  *      ...
8376                                  *      Bar<T> <- T here satisfy K constraint transitively through to U's constraint
8377                                  *
8378                                  */
8379                                 if (mono_type_is_generic_argument (&cc->byval_arg)) {
8380                                         if (mono_gparam_is_assignable_from (target, cc))
8381                                                 break;
8382                                 }
8383                         }
8384                         if (!*candidate_class)
8385                                 return FALSE;
8386                 }
8387         }
8388
8389         /*candidate itself must have a constraint that satisfy target*/
8390         if (cinfo->constraints) {
8391                 for (candidate_class = cinfo->constraints; *candidate_class; ++candidate_class) {
8392                         MonoClass *cc = *candidate_class;
8393                         if (mono_class_is_assignable_from (target, cc))
8394                                 return TRUE;
8395                 }
8396         }
8397         return FALSE;
8398 }
8399
8400 /**
8401  * mono_class_is_assignable_from:
8402  * @klass: the class to be assigned to
8403  * @oklass: the source class
8404  *
8405  * Returns: TRUE if an instance of object oklass can be assigned to an
8406  * instance of object @klass
8407  */
8408 gboolean
8409 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
8410 {
8411         MonoError error;
8412         /*FIXME this will cause a lot of irrelevant stuff to be loaded.*/
8413         if (!klass->inited)
8414                 mono_class_init (klass);
8415
8416         if (!oklass->inited)
8417                 mono_class_init (oklass);
8418
8419         if (mono_class_has_failure (klass) || mono_class_has_failure  (oklass))
8420                 return FALSE;
8421
8422         if (mono_type_is_generic_argument (&klass->byval_arg)) {
8423                 if (!mono_type_is_generic_argument (&oklass->byval_arg))
8424                         return FALSE;
8425                 return mono_gparam_is_assignable_from (klass, oklass);
8426         }
8427
8428         if (MONO_CLASS_IS_INTERFACE (klass)) {
8429                 if ((oklass->byval_arg.type == MONO_TYPE_VAR) || (oklass->byval_arg.type == MONO_TYPE_MVAR)) {
8430                         MonoGenericParam *gparam = oklass->byval_arg.data.generic_param;
8431                         MonoClass **constraints = mono_generic_container_get_param_info (gparam->owner, gparam->num)->constraints;
8432                         int i;
8433
8434                         if (constraints) {
8435                                 for (i = 0; constraints [i]; ++i) {
8436                                         if (mono_class_is_assignable_from (klass, constraints [i]))
8437                                                 return TRUE;
8438                                 }
8439                         }
8440
8441                         return FALSE;
8442                 }
8443
8444                 /* interface_offsets might not be set for dynamic classes */
8445                 if (mono_class_get_ref_info_handle (oklass) && !oklass->interface_bitmap) {
8446                         /* 
8447                          * oklass might be a generic type parameter but they have 
8448                          * interface_offsets set.
8449                          */
8450                         gboolean result = mono_reflection_call_is_assignable_to (oklass, klass, &error);
8451                         if (!is_ok (&error)) {
8452                                 mono_error_cleanup (&error);
8453                                 return FALSE;
8454                         }
8455                         return result;
8456                 }
8457                 if (!oklass->interface_bitmap)
8458                         /* Happens with generic instances of not-yet created dynamic types */
8459                         return FALSE;
8460                 if (MONO_CLASS_IMPLEMENTS_INTERFACE (oklass, klass->interface_id))
8461                         return TRUE;
8462
8463                 if (mono_class_has_variant_generic_params (klass)) {
8464                         int i;
8465                         mono_class_setup_interfaces (oklass, &error);
8466                         if (!mono_error_ok (&error)) {
8467                                 mono_error_cleanup (&error);
8468                                 return FALSE;
8469                         }
8470
8471                         /*klass is a generic variant interface, We need to extract from oklass a list of ifaces which are viable candidates.*/
8472                         for (i = 0; i < oklass->interface_offsets_count; ++i) {
8473                                 MonoClass *iface = oklass->interfaces_packed [i];
8474
8475                                 if (mono_class_is_variant_compatible (klass, iface, FALSE))
8476                                         return TRUE;
8477                         }
8478                 }
8479                 return FALSE;
8480         } else if (klass->delegate) {
8481                 if (mono_class_has_variant_generic_params (klass) && mono_class_is_variant_compatible (klass, oklass, FALSE))
8482                         return TRUE;
8483         }else if (klass->rank) {
8484                 MonoClass *eclass, *eoclass;
8485
8486                 if (oklass->rank != klass->rank)
8487                         return FALSE;
8488
8489                 /* vectors vs. one dimensional arrays */
8490                 if (oklass->byval_arg.type != klass->byval_arg.type)
8491                         return FALSE;
8492
8493                 eclass = klass->cast_class;
8494                 eoclass = oklass->cast_class;
8495
8496                 /* 
8497                  * a is b does not imply a[] is b[] when a is a valuetype, and
8498                  * b is a reference type.
8499                  */
8500
8501                 if (eoclass->valuetype) {
8502                         if ((eclass == mono_defaults.enum_class) || 
8503                                 (eclass == mono_defaults.enum_class->parent) ||
8504                                 (eclass == mono_defaults.object_class))
8505                                 return FALSE;
8506                 }
8507
8508                 return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
8509         } else if (mono_class_is_nullable (klass)) {
8510                 if (mono_class_is_nullable (oklass))
8511                         return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
8512                 else
8513                         return mono_class_is_assignable_from (klass->cast_class, oklass);
8514         } else if (klass == mono_defaults.object_class)
8515                 return TRUE;
8516
8517         return mono_class_has_parent (oklass, klass);
8518 }       
8519
8520 /*Check if @oklass is variant compatible with @klass.*/
8521 static gboolean
8522 mono_class_is_variant_compatible_slow (MonoClass *klass, MonoClass *oklass)
8523 {
8524         int j;
8525         MonoType **klass_argv, **oklass_argv;
8526         MonoClass *klass_gtd = mono_class_get_generic_type_definition (klass);
8527         MonoGenericContainer *container = mono_class_get_generic_container (klass_gtd);
8528
8529         /*Viable candidates are instances of the same generic interface*/
8530         if (mono_class_get_generic_type_definition (oklass) != klass_gtd || oklass == klass_gtd)
8531                 return FALSE;
8532
8533         klass_argv = &mono_class_get_generic_class (klass)->context.class_inst->type_argv [0];
8534         oklass_argv = &mono_class_get_generic_class (oklass)->context.class_inst->type_argv [0];
8535
8536         for (j = 0; j < container->type_argc; ++j) {
8537                 MonoClass *param1_class = mono_class_from_mono_type (klass_argv [j]);
8538                 MonoClass *param2_class = mono_class_from_mono_type (oklass_argv [j]);
8539
8540                 if (param1_class->valuetype != param2_class->valuetype)
8541                         return FALSE;
8542
8543                 /*
8544                  * The _VARIANT and _COVARIANT constants should read _COVARIANT and
8545                  * _CONTRAVARIANT, but they are in a public header so we can't fix it.
8546                  */
8547                 if (param1_class != param2_class) {
8548                         if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_VARIANT) {
8549                                 if (!mono_class_is_assignable_from_slow (param1_class, param2_class))
8550                                         return FALSE;
8551                         } else if (mono_generic_container_get_param_info (container, j)->flags & MONO_GEN_PARAM_COVARIANT) {
8552                                 if (!mono_class_is_assignable_from_slow (param2_class, param1_class))
8553                                         return FALSE;
8554                         } else
8555                                 return FALSE;
8556                 }
8557         }
8558         return TRUE;
8559 }
8560 /*Check if @candidate implements the interface @target*/
8561 static gboolean
8562 mono_class_implement_interface_slow (MonoClass *target, MonoClass *candidate)
8563 {
8564         MonoError error;
8565         int i;
8566         gboolean is_variant = mono_class_has_variant_generic_params (target);
8567
8568         if (is_variant && MONO_CLASS_IS_INTERFACE (candidate)) {
8569                 if (mono_class_is_variant_compatible_slow (target, candidate))
8570                         return TRUE;
8571         }
8572
8573         do {
8574                 if (candidate == target)
8575                         return TRUE;
8576
8577                 /*A TypeBuilder can have more interfaces on tb->interfaces than on candidate->interfaces*/
8578                 if (image_is_dynamic (candidate->image) && !candidate->wastypebuilder) {
8579                         MonoReflectionTypeBuilder *tb = (MonoReflectionTypeBuilder *)mono_class_get_ref_info (candidate);
8580                         int j;
8581                         if (tb && tb->interfaces) {
8582                                 for (j = mono_array_length (tb->interfaces) - 1; j >= 0; --j) {
8583                                         MonoReflectionType *iface = mono_array_get (tb->interfaces, MonoReflectionType*, j);
8584                                         MonoClass *iface_class;
8585
8586                                         /* we can't realize the type here since it can do pretty much anything. */
8587                                         if (!iface->type)
8588                                                 continue;
8589                                         iface_class = mono_class_from_mono_type (iface->type);
8590                                         if (iface_class == target)
8591                                                 return TRUE;
8592                                         if (is_variant && mono_class_is_variant_compatible_slow (target, iface_class))
8593                                                 return TRUE;
8594                                         if (mono_class_implement_interface_slow (target, iface_class))
8595                                                 return TRUE;
8596                                 }
8597                         }
8598                 } else {
8599                         /*setup_interfaces don't mono_class_init anything*/
8600                         /*FIXME this doesn't handle primitive type arrays.
8601                         ICollection<sbyte> x byte [] won't work because candidate->interfaces, for byte[], won't have IList<sbyte>.
8602                         A possible way to fix this would be to move that to setup_interfaces from setup_interface_offsets.
8603                         */
8604                         mono_class_setup_interfaces (candidate, &error);
8605                         if (!mono_error_ok (&error)) {
8606                                 mono_error_cleanup (&error);
8607                                 return FALSE;
8608                         }
8609
8610                         for (i = 0; i < candidate->interface_count; ++i) {
8611                                 if (candidate->interfaces [i] == target)
8612                                         return TRUE;
8613                                 
8614                                 if (is_variant && mono_class_is_variant_compatible_slow (target, candidate->interfaces [i]))
8615                                         return TRUE;
8616
8617                                  if (mono_class_implement_interface_slow (target, candidate->interfaces [i]))
8618                                         return TRUE;
8619                         }
8620                 }
8621                 candidate = candidate->parent;
8622         } while (candidate);
8623
8624         return FALSE;
8625 }
8626
8627 /*
8628  * Check if @oklass can be assigned to @klass.
8629  * This function does the same as mono_class_is_assignable_from but is safe to be used from mono_class_init context.
8630  */
8631 gboolean
8632 mono_class_is_assignable_from_slow (MonoClass *target, MonoClass *candidate)
8633 {
8634         if (candidate == target)
8635                 return TRUE;
8636         if (target == mono_defaults.object_class)
8637                 return TRUE;
8638
8639         if (mono_class_has_parent (candidate, target))
8640                 return TRUE;
8641
8642         /*If target is not an interface there is no need to check them.*/
8643         if (MONO_CLASS_IS_INTERFACE (target))
8644                 return mono_class_implement_interface_slow (target, candidate);
8645
8646         if (target->delegate && mono_class_has_variant_generic_params (target))
8647                 return mono_class_is_variant_compatible (target, candidate, FALSE);
8648
8649         if (target->rank) {
8650                 MonoClass *eclass, *eoclass;
8651
8652                 if (target->rank != candidate->rank)
8653                         return FALSE;
8654
8655                 /* vectors vs. one dimensional arrays */
8656                 if (target->byval_arg.type != candidate->byval_arg.type)
8657                         return FALSE;
8658
8659                 eclass = target->cast_class;
8660                 eoclass = candidate->cast_class;
8661
8662                 /*
8663                  * a is b does not imply a[] is b[] when a is a valuetype, and
8664                  * b is a reference type.
8665                  */
8666
8667                 if (eoclass->valuetype) {
8668                         if ((eclass == mono_defaults.enum_class) ||
8669                                 (eclass == mono_defaults.enum_class->parent) ||
8670                                 (eclass == mono_defaults.object_class))
8671                                 return FALSE;
8672                 }
8673
8674                 return mono_class_is_assignable_from_slow (target->cast_class, candidate->cast_class);
8675         }
8676         /*FIXME properly handle nullables */
8677         /*FIXME properly handle (M)VAR */
8678         return FALSE;
8679 }
8680
8681 /**
8682  * mono_class_get_cctor:
8683  * @klass: A MonoClass pointer
8684  *
8685  * Returns: The static constructor of @klass if it exists, NULL otherwise.
8686  */
8687 MonoMethod*
8688 mono_class_get_cctor (MonoClass *klass)
8689 {
8690         MonoCachedClassInfo cached_info;
8691
8692         if (image_is_dynamic (klass->image)) {
8693                 /* 
8694                  * has_cctor is not set for these classes because mono_class_init () is
8695                  * not run for them.
8696                  */
8697                 return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
8698         }
8699
8700         if (!klass->has_cctor)
8701                 return NULL;
8702
8703         if (mono_class_get_cached_class_info (klass, &cached_info)) {
8704                 MonoError error;
8705                 MonoMethod *result = mono_get_method_checked (klass->image, cached_info.cctor_token, klass, NULL, &error);
8706                 if (!mono_error_ok (&error))
8707                         g_error ("Could not lookup class cctor from cached metadata due to %s", mono_error_get_message (&error));
8708                 return result;
8709         }
8710
8711         if (mono_class_is_ginst (klass) && !klass->methods)
8712                 return mono_class_get_inflated_method (klass, mono_class_get_cctor (mono_class_get_generic_class (klass)->container_class));
8713
8714         return mono_class_get_method_from_name_flags (klass, ".cctor", -1, METHOD_ATTRIBUTE_SPECIAL_NAME);
8715 }
8716
8717 /**
8718  * mono_class_get_finalizer:
8719  * @klass: The MonoClass pointer
8720  *
8721  * Returns: The finalizer method of @klass if it exists, NULL otherwise.
8722  */
8723 MonoMethod*
8724 mono_class_get_finalizer (MonoClass *klass)
8725 {
8726         MonoCachedClassInfo cached_info;
8727
8728         if (!klass->inited)
8729                 mono_class_init (klass);
8730         if (!mono_class_has_finalizer (klass))
8731                 return NULL;
8732
8733         if (mono_class_get_cached_class_info (klass, &cached_info)) {
8734                 MonoError error;
8735                 MonoMethod *result = mono_get_method_checked (cached_info.finalize_image, cached_info.finalize_token, NULL, NULL, &error);
8736                 if (!mono_error_ok (&error))
8737                         g_error ("Could not lookup finalizer from cached metadata due to %s", mono_error_get_message (&error));
8738                 return result;
8739         }else {
8740                 mono_class_setup_vtable (klass);
8741                 return klass->vtable [finalize_slot];
8742         }
8743 }
8744
8745 /**
8746  * mono_class_needs_cctor_run:
8747  * @klass: the MonoClass pointer
8748  * @caller: a MonoMethod describing the caller
8749  *
8750  * Determines whenever the class has a static constructor and whenever it
8751  * needs to be called when executing CALLER.
8752  */
8753 gboolean
8754 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
8755 {
8756         MonoMethod *method;
8757
8758         method = mono_class_get_cctor (klass);
8759         if (method)
8760                 return (method == caller) ? FALSE : TRUE;
8761         else
8762                 return FALSE;
8763 }
8764
8765 /**
8766  * mono_class_array_element_size:
8767  * @klass: 
8768  *
8769  * Returns: The number of bytes an element of type @klass
8770  * uses when stored into an array.
8771  */
8772 gint32
8773 mono_class_array_element_size (MonoClass *klass)
8774 {
8775         MonoType *type = &klass->byval_arg;
8776         
8777 handle_enum:
8778         switch (type->type) {
8779         case MONO_TYPE_I1:
8780         case MONO_TYPE_U1:
8781         case MONO_TYPE_BOOLEAN:
8782                 return 1;
8783         case MONO_TYPE_I2:
8784         case MONO_TYPE_U2:
8785         case MONO_TYPE_CHAR:
8786                 return 2;
8787         case MONO_TYPE_I4:
8788         case MONO_TYPE_U4:
8789         case MONO_TYPE_R4:
8790                 return 4;
8791         case MONO_TYPE_I:
8792         case MONO_TYPE_U:
8793         case MONO_TYPE_PTR:
8794         case MONO_TYPE_CLASS:
8795         case MONO_TYPE_STRING:
8796         case MONO_TYPE_OBJECT:
8797         case MONO_TYPE_SZARRAY:
8798         case MONO_TYPE_ARRAY: 
8799                 return sizeof (gpointer);
8800         case MONO_TYPE_I8:
8801         case MONO_TYPE_U8:
8802         case MONO_TYPE_R8:
8803                 return 8;
8804         case MONO_TYPE_VALUETYPE:
8805                 if (type->data.klass->enumtype) {
8806                         type = mono_class_enum_basetype (type->data.klass);
8807                         klass = klass->element_class;
8808                         goto handle_enum;
8809                 }
8810                 return mono_class_instance_size (klass) - sizeof (MonoObject);
8811         case MONO_TYPE_GENERICINST:
8812                 type = &type->data.generic_class->container_class->byval_arg;
8813                 goto handle_enum;
8814         case MONO_TYPE_VAR:
8815         case MONO_TYPE_MVAR: {
8816                 int align;
8817
8818                 return mono_type_size (type, &align);
8819         }
8820         case MONO_TYPE_VOID:
8821                 return 0;
8822                 
8823         default:
8824                 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
8825         }
8826         return -1;
8827 }
8828
8829 /**
8830  * mono_array_element_size:
8831  * @ac: pointer to a #MonoArrayClass
8832  *
8833  * Returns: The size of single array element.
8834  */
8835 gint32
8836 mono_array_element_size (MonoClass *ac)
8837 {
8838         g_assert (ac->rank);
8839         return ac->sizes.element_size;
8840 }
8841
8842 gpointer
8843 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
8844               MonoGenericContext *context)
8845 {
8846         MonoError error;
8847         gpointer res = mono_ldtoken_checked (image, token, handle_class, context, &error);
8848         g_assert (mono_error_ok (&error));
8849         return res;
8850 }
8851
8852 gpointer
8853 mono_ldtoken_checked (MonoImage *image, guint32 token, MonoClass **handle_class,
8854               MonoGenericContext *context, MonoError *error)
8855 {
8856         mono_error_init (error);
8857
8858         if (image_is_dynamic (image)) {
8859                 MonoClass *tmp_handle_class;
8860                 gpointer obj = mono_lookup_dynamic_token_class (image, token, TRUE, &tmp_handle_class, context, error);
8861
8862                 mono_error_assert_ok (error);
8863                 g_assert (tmp_handle_class);
8864                 if (handle_class)
8865                         *handle_class = tmp_handle_class;
8866
8867                 if (tmp_handle_class == mono_defaults.typehandle_class)
8868                         return &((MonoClass*)obj)->byval_arg;
8869                 else
8870                         return obj;
8871         }
8872
8873         switch (token & 0xff000000) {
8874         case MONO_TOKEN_TYPE_DEF:
8875         case MONO_TOKEN_TYPE_REF:
8876         case MONO_TOKEN_TYPE_SPEC: {
8877                 MonoType *type;
8878                 if (handle_class)
8879                         *handle_class = mono_defaults.typehandle_class;
8880                 type = mono_type_get_checked (image, token, context, error);
8881                 if (!type)
8882                         return NULL;
8883
8884                 mono_class_init (mono_class_from_mono_type (type));
8885                 /* We return a MonoType* as handle */
8886                 return type;
8887         }
8888         case MONO_TOKEN_FIELD_DEF: {
8889                 MonoClass *klass;
8890                 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
8891                 if (!type) {
8892                         mono_error_set_bad_image (error, image, "Bad ldtoken %x", token);
8893                         return NULL;
8894                 }
8895                 if (handle_class)
8896                         *handle_class = mono_defaults.fieldhandle_class;
8897                 klass = mono_class_get_and_inflate_typespec_checked (image, MONO_TOKEN_TYPE_DEF | type, context, error);
8898                 if (!klass)
8899                         return NULL;
8900
8901                 mono_class_init (klass);
8902                 return mono_class_get_field (klass, token);
8903         }
8904         case MONO_TOKEN_METHOD_DEF:
8905         case MONO_TOKEN_METHOD_SPEC: {
8906                 MonoMethod *meth;
8907                 meth = mono_get_method_checked (image, token, NULL, context, error);
8908                 if (handle_class)
8909                         *handle_class = mono_defaults.methodhandle_class;
8910                 if (!meth)
8911                         return NULL;
8912
8913                 return meth;
8914         }
8915         case MONO_TOKEN_MEMBER_REF: {
8916                 guint32 cols [MONO_MEMBERREF_SIZE];
8917                 const char *sig;
8918                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
8919                 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
8920                 mono_metadata_decode_blob_size (sig, &sig);
8921                 if (*sig == 0x6) { /* it's a field */
8922                         MonoClass *klass;
8923                         MonoClassField *field;
8924                         field = mono_field_from_token_checked (image, token, &klass, context, error);
8925                         if (handle_class)
8926                                 *handle_class = mono_defaults.fieldhandle_class;
8927                         return field;
8928                 } else {
8929                         MonoMethod *meth;
8930                         meth = mono_get_method_checked (image, token, NULL, context, error);
8931                         if (handle_class)
8932                                 *handle_class = mono_defaults.methodhandle_class;
8933                         return meth;
8934                 }
8935         }
8936         default:
8937                 mono_error_set_bad_image (error, image, "Bad ldtoken %x", token);
8938         }
8939         return NULL;
8940 }
8941
8942 gpointer
8943 mono_lookup_dynamic_token (MonoImage *image, guint32 token, MonoGenericContext *context, MonoError *error)
8944 {
8945         MonoClass *handle_class;
8946         mono_error_init (error);
8947         return mono_reflection_lookup_dynamic_token (image, token, TRUE, &handle_class, context, error);
8948 }
8949
8950 gpointer
8951 mono_lookup_dynamic_token_class (MonoImage *image, guint32 token, gboolean valid_token, MonoClass **handle_class, MonoGenericContext *context, MonoError *error)
8952 {
8953         return mono_reflection_lookup_dynamic_token (image, token, valid_token, handle_class, context, error);
8954 }
8955
8956 static MonoGetCachedClassInfo get_cached_class_info = NULL;
8957
8958 void
8959 mono_install_get_cached_class_info (MonoGetCachedClassInfo func)
8960 {
8961         get_cached_class_info = func;
8962 }
8963
8964 static gboolean
8965 mono_class_get_cached_class_info (MonoClass *klass, MonoCachedClassInfo *res)
8966 {
8967         if (!get_cached_class_info)
8968                 return FALSE;
8969         else
8970                 return get_cached_class_info (klass, res);
8971 }
8972
8973 void
8974 mono_install_get_class_from_name (MonoGetClassFromName func)
8975 {
8976         get_class_from_name = func;
8977 }
8978
8979 /**
8980  * mono_class_get_image:
8981  *
8982  * Use this method to get the `MonoImage*` where this class came from.
8983  *
8984  * Returns: The image where this class is defined.
8985  */
8986 MonoImage*
8987 mono_class_get_image (MonoClass *klass)
8988 {
8989         return klass->image;
8990 }
8991
8992 /**
8993  * mono_class_get_element_class:
8994  * @klass: the MonoClass to act on
8995  *
8996  * Use this function to get the element class of an array.
8997  *
8998  * Returns: The element class of an array.
8999  */
9000 MonoClass*
9001 mono_class_get_element_class (MonoClass *klass)
9002 {
9003         return klass->element_class;
9004 }
9005
9006 /**
9007  * mono_class_is_valuetype:
9008  * @klass: the MonoClass to act on
9009  *
9010  * Use this method to determine if the provided `MonoClass*` represents a value type,
9011  * or a reference type.
9012  *
9013  * Returns: TRUE if the MonoClass represents a ValueType, FALSE if it represents a reference type.
9014  */
9015 gboolean
9016 mono_class_is_valuetype (MonoClass *klass)
9017 {
9018         return klass->valuetype;
9019 }
9020
9021 /**
9022  * mono_class_is_enum:
9023  * @klass: the MonoClass to act on
9024  *
9025  * Use this function to determine if the provided `MonoClass*` represents an enumeration.
9026  *
9027  * Returns: TRUE if the MonoClass represents an enumeration.
9028  */
9029 gboolean
9030 mono_class_is_enum (MonoClass *klass)
9031 {
9032         return klass->enumtype;
9033 }
9034
9035 /**
9036  * mono_class_enum_basetype:
9037  * @klass: the MonoClass to act on
9038  *
9039  * Use this function to get the underlying type for an enumeration value.
9040  * 
9041  * Returns: The underlying type representation for an enumeration.
9042  */
9043 MonoType*
9044 mono_class_enum_basetype (MonoClass *klass)
9045 {
9046         if (klass->element_class == klass)
9047                 /* SRE or broken types */
9048                 return NULL;
9049         else
9050                 return &klass->element_class->byval_arg;
9051 }
9052
9053 /**
9054  * mono_class_get_parent
9055  * @klass: the MonoClass to act on
9056  *
9057  * Returns: The parent class for this class.
9058  */
9059 MonoClass*
9060 mono_class_get_parent (MonoClass *klass)
9061 {
9062         return klass->parent;
9063 }
9064
9065 /**
9066  * mono_class_get_nesting_type:
9067  * @klass: the MonoClass to act on
9068  *
9069  * Use this function to obtain the class that the provided `MonoClass*` is nested on.
9070  *
9071  * If the return is NULL, this indicates that this class is not nested.
9072  *
9073  * Returns: The container type where this type is nested or NULL if this type is not a nested type.
9074  */
9075 MonoClass*
9076 mono_class_get_nesting_type (MonoClass *klass)
9077 {
9078         return klass->nested_in;
9079 }
9080
9081 /**
9082  * mono_class_get_rank:
9083  * @klass: the MonoClass to act on
9084  *
9085  * Returns: The rank for the array (the number of dimensions).
9086  */
9087 int
9088 mono_class_get_rank (MonoClass *klass)
9089 {
9090         return klass->rank;
9091 }
9092
9093 /**
9094  * mono_class_get_name
9095  * @klass: the MonoClass to act on
9096  *
9097  * Returns: The name of the class.
9098  */
9099 const char*
9100 mono_class_get_name (MonoClass *klass)
9101 {
9102         return klass->name;
9103 }
9104
9105 /**
9106  * mono_class_get_namespace:
9107  * @klass: the MonoClass to act on
9108  *
9109  * Returns: The namespace of the class.
9110  */
9111 const char*
9112 mono_class_get_namespace (MonoClass *klass)
9113 {
9114         return klass->name_space;
9115 }
9116
9117 /**
9118  * mono_class_get_type:
9119  * @klass: the MonoClass to act on
9120  *
9121  * This method returns the internal Type representation for the class.
9122  *
9123  * Returns: The MonoType from the class.
9124  */
9125 MonoType*
9126 mono_class_get_type (MonoClass *klass)
9127 {
9128         return &klass->byval_arg;
9129 }
9130
9131 /**
9132  * mono_class_get_type_token:
9133  * @klass: the MonoClass to act on
9134  *
9135  * This method returns type token for the class.
9136  *
9137  * Returns: The type token for the class.
9138  */
9139 guint32
9140 mono_class_get_type_token (MonoClass *klass)
9141 {
9142   return klass->type_token;
9143 }
9144
9145 /**
9146  * mono_class_get_byref_type:
9147  * @klass: the MonoClass to act on
9148  *
9149  * 
9150  */
9151 MonoType*
9152 mono_class_get_byref_type (MonoClass *klass)
9153 {
9154         return &klass->this_arg;
9155 }
9156
9157 /**
9158  * mono_class_num_fields:
9159  * @klass: the MonoClass to act on
9160  *
9161  * Returns: The number of static and instance fields in the class.
9162  */
9163 int
9164 mono_class_num_fields (MonoClass *klass)
9165 {
9166         return mono_class_get_field_count (klass);
9167 }
9168
9169 /**
9170  * mono_class_num_methods:
9171  * @klass: the MonoClass to act on
9172  *
9173  * Returns: The number of methods in the class.
9174  */
9175 int
9176 mono_class_num_methods (MonoClass *klass)
9177 {
9178         return mono_class_get_method_count (klass);
9179 }
9180
9181 /**
9182  * mono_class_num_properties
9183  * @klass: the MonoClass to act on
9184  *
9185  * Returns: The number of properties in the class.
9186  */
9187 int
9188 mono_class_num_properties (MonoClass *klass)
9189 {
9190         mono_class_setup_properties (klass);
9191
9192         return mono_class_get_ext (klass)->property.count;
9193 }
9194
9195 /**
9196  * mono_class_num_events:
9197  * @klass: the MonoClass to act on
9198  *
9199  * Returns: The number of events in the class.
9200  */
9201 int
9202 mono_class_num_events (MonoClass *klass)
9203 {
9204         mono_class_setup_events (klass);
9205
9206         return mono_class_get_ext (klass)->event.count;
9207 }
9208
9209 /**
9210  * mono_class_get_fields:
9211  * @klass: the MonoClass to act on
9212  *
9213  * This routine is an iterator routine for retrieving the fields in a class.
9214  *
9215  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9216  * iterate over all of the elements.  When no more values are
9217  * available, the return value is NULL.
9218  *
9219  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
9220  */
9221 MonoClassField*
9222 mono_class_get_fields (MonoClass* klass, gpointer *iter)
9223 {
9224         MonoClassField* field;
9225         if (!iter)
9226                 return NULL;
9227         if (!*iter) {
9228                 mono_class_setup_fields (klass);
9229                 if (mono_class_has_failure (klass))
9230                         return NULL;
9231                 /* start from the first */
9232                 if (mono_class_get_field_count (klass)) {
9233                         *iter = &klass->fields [0];
9234                         return &klass->fields [0];
9235                 } else {
9236                         /* no fields */
9237                         return NULL;
9238                 }
9239         }
9240         field = (MonoClassField *)*iter;
9241         field++;
9242         if (field < &klass->fields [mono_class_get_field_count (klass)]) {
9243                 *iter = field;
9244                 return field;
9245         }
9246         return NULL;
9247 }
9248
9249 /**
9250  * mono_class_get_methods
9251  * @klass: the MonoClass to act on
9252  *
9253  * This routine is an iterator routine for retrieving the fields in a class.
9254  *
9255  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9256  * iterate over all of the elements.  When no more values are
9257  * available, the return value is NULL.
9258  *
9259  * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
9260  */
9261 MonoMethod*
9262 mono_class_get_methods (MonoClass* klass, gpointer *iter)
9263 {
9264         MonoMethod** method;
9265         if (!iter)
9266                 return NULL;
9267         if (!*iter) {
9268                 mono_class_setup_methods (klass);
9269
9270                 /*
9271                  * We can't fail lookup of methods otherwise the runtime will burst in flames on all sort of places.
9272                  * FIXME we should better report this error to the caller
9273                  */
9274                 if (!klass->methods)
9275                         return NULL;
9276                 /* start from the first */
9277                 if (mono_class_get_method_count (klass)) {
9278                         *iter = &klass->methods [0];
9279                         return klass->methods [0];
9280                 } else {
9281                         /* no method */
9282                         return NULL;
9283                 }
9284         }
9285         method = (MonoMethod **)*iter;
9286         method++;
9287         if (method < &klass->methods [mono_class_get_method_count (klass)]) {
9288                 *iter = method;
9289                 return *method;
9290         }
9291         return NULL;
9292 }
9293
9294 /*
9295  * mono_class_get_virtual_methods:
9296  *
9297  *   Iterate over the virtual methods of KLASS.
9298  *
9299  * LOCKING: Assumes the loader lock is held (because of the klass->methods check).
9300  */
9301 static MonoMethod*
9302 mono_class_get_virtual_methods (MonoClass* klass, gpointer *iter)
9303 {
9304         MonoMethod** method;
9305         if (!iter)
9306                 return NULL;
9307         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
9308                 if (!*iter) {
9309                         mono_class_setup_methods (klass);
9310                         /*
9311                          * We can't fail lookup of methods otherwise the runtime will burst in flames on all sort of places.
9312                          * FIXME we should better report this error to the caller
9313                          */
9314                         if (!klass->methods)
9315                                 return NULL;
9316                         /* start from the first */
9317                         method = &klass->methods [0];
9318                 } else {
9319                         method = (MonoMethod **)*iter;
9320                         method++;
9321                 }
9322                 int mcount = mono_class_get_method_count (klass);
9323                 while (method < &klass->methods [mcount]) {
9324                         if (*method && ((*method)->flags & METHOD_ATTRIBUTE_VIRTUAL))
9325                                 break;
9326                         method ++;
9327                 }
9328                 if (method < &klass->methods [mcount]) {
9329                         *iter = method;
9330                         return *method;
9331                 } else {
9332                         return NULL;
9333                 }
9334         } else {
9335                 /* Search directly in metadata to avoid calling setup_methods () */
9336                 MonoMethod *res = NULL;
9337                 int i, start_index;
9338
9339                 if (!*iter) {
9340                         start_index = 0;
9341                 } else {
9342                         start_index = GPOINTER_TO_UINT (*iter);
9343                 }
9344
9345                 int first_idx = mono_class_get_first_method_idx (klass);
9346                 int mcount = mono_class_get_method_count (klass);
9347                 for (i = start_index; i < mcount; ++i) {
9348                         guint32 flags;
9349
9350                         /* first_idx points into the methodptr table */
9351                         flags = mono_metadata_decode_table_row_col (klass->image, MONO_TABLE_METHOD, first_idx + i, MONO_METHOD_FLAGS);
9352
9353                         if (flags & METHOD_ATTRIBUTE_VIRTUAL)
9354                                 break;
9355                 }
9356
9357                 if (i < mcount) {
9358                         MonoError error;
9359                         res = mono_get_method_checked (klass->image, MONO_TOKEN_METHOD_DEF | (first_idx + i + 1), klass, NULL, &error);
9360                         mono_error_cleanup (&error); /* FIXME don't swallow the error */
9361
9362                         /* Add 1 here so the if (*iter) check fails */
9363                         *iter = GUINT_TO_POINTER (i + 1);
9364                         return res;
9365                 } else {
9366                         return NULL;
9367                 }
9368         }
9369 }
9370
9371 /**
9372  * mono_class_get_properties:
9373  * @klass: the MonoClass to act on
9374  *
9375  * This routine is an iterator routine for retrieving the properties in a class.
9376  *
9377  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9378  * iterate over all of the elements.  When no more values are
9379  * available, the return value is NULL.
9380  *
9381  * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
9382  */
9383 MonoProperty*
9384 mono_class_get_properties (MonoClass* klass, gpointer *iter)
9385 {
9386         MonoProperty* property;
9387         if (!iter)
9388                 return NULL;
9389         if (!*iter) {
9390                 mono_class_setup_properties (klass);
9391                 MonoClassExt *ext = mono_class_get_ext (klass);
9392                 /* start from the first */
9393                 if (ext->property.count) {
9394                         *iter = &ext->properties [0];
9395                         return (MonoProperty *)*iter;
9396                 } else {
9397                         /* no fields */
9398                         return NULL;
9399                 }
9400         }
9401         property = (MonoProperty *)*iter;
9402         property++;
9403         MonoClassExt *ext = mono_class_get_ext (klass);
9404         if (property < &ext->properties [ext->property.count]) {
9405                 *iter = property;
9406                 return (MonoProperty *)*iter;
9407         }
9408         return NULL;
9409 }
9410
9411 /**
9412  * mono_class_get_events:
9413  * @klass: the MonoClass to act on
9414  *
9415  * This routine is an iterator routine for retrieving the properties in a class.
9416  *
9417  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9418  * iterate over all of the elements.  When no more values are
9419  * available, the return value is NULL.
9420  *
9421  * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
9422  */
9423 MonoEvent*
9424 mono_class_get_events (MonoClass* klass, gpointer *iter)
9425 {
9426         MonoEvent* event;
9427         if (!iter)
9428                 return NULL;
9429         if (!*iter) {
9430                 mono_class_setup_events (klass);
9431                 MonoClassExt *ext = mono_class_get_ext (klass);
9432                 /* start from the first */
9433                 if (ext->event.count) {
9434                         *iter = &ext->events [0];
9435                         return (MonoEvent *)*iter;
9436                 } else {
9437                         /* no fields */
9438                         return NULL;
9439                 }
9440         }
9441         event = (MonoEvent *)*iter;
9442         event++;
9443         MonoClassExt *ext = mono_class_get_ext (klass);
9444         if (event < &ext->events [ext->event.count]) {
9445                 *iter = event;
9446                 return (MonoEvent *)*iter;
9447         }
9448         return NULL;
9449 }
9450
9451 /**
9452  * mono_class_get_interfaces
9453  * @klass: the MonoClass to act on
9454  *
9455  * This routine is an iterator routine for retrieving the interfaces implemented by this class.
9456  *
9457  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9458  * iterate over all of the elements.  When no more values are
9459  * available, the return value is NULL.
9460  *
9461  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
9462  */
9463 MonoClass*
9464 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
9465 {
9466         MonoError error;
9467         MonoClass** iface;
9468         if (!iter)
9469                 return NULL;
9470         if (!*iter) {
9471                 if (!klass->inited)
9472                         mono_class_init (klass);
9473                 if (!klass->interfaces_inited) {
9474                         mono_class_setup_interfaces (klass, &error);
9475                         if (!mono_error_ok (&error)) {
9476                                 mono_error_cleanup (&error);
9477                                 return NULL;
9478                         }
9479                 }
9480                 /* start from the first */
9481                 if (klass->interface_count) {
9482                         *iter = &klass->interfaces [0];
9483                         return klass->interfaces [0];
9484                 } else {
9485                         /* no interface */
9486                         return NULL;
9487                 }
9488         }
9489         iface = (MonoClass **)*iter;
9490         iface++;
9491         if (iface < &klass->interfaces [klass->interface_count]) {
9492                 *iter = iface;
9493                 return *iface;
9494         }
9495         return NULL;
9496 }
9497
9498 static void
9499 setup_nested_types (MonoClass *klass)
9500 {
9501         MonoError error;
9502         GList *classes, *nested_classes, *l;
9503         int i;
9504
9505         if (klass->nested_classes_inited)
9506                 return;
9507
9508         if (!klass->type_token)
9509                 klass->nested_classes_inited = TRUE;
9510
9511         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, 1);
9512         classes = NULL;
9513         while (i) {
9514                 MonoClass* nclass;
9515                 guint32 cols [MONO_NESTED_CLASS_SIZE];
9516                 mono_metadata_decode_row (&klass->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
9517                 nclass = mono_class_create_from_typedef (klass->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED], &error);
9518                 if (!mono_error_ok (&error)) {
9519                         /*FIXME don't swallow the error message*/
9520                         mono_error_cleanup (&error);
9521
9522                         i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
9523                         continue;
9524                 }
9525
9526                 classes = g_list_prepend (classes, nclass);
9527
9528                 i = mono_metadata_nesting_typedef (klass->image, klass->type_token, i + 1);
9529         }
9530
9531         mono_class_alloc_ext (klass);
9532
9533         nested_classes = NULL;
9534         for (l = classes; l; l = l->next)
9535                 nested_classes = g_list_prepend_image (klass->image, nested_classes, l->data);
9536         g_list_free (classes);
9537
9538         mono_image_lock (klass->image);
9539
9540         mono_memory_barrier ();
9541         if (!klass->nested_classes_inited) {
9542                 mono_class_get_ext (klass)->nested_classes = nested_classes;
9543                 mono_memory_barrier ();
9544                 klass->nested_classes_inited = TRUE;
9545         }
9546
9547         mono_image_unlock (klass->image);
9548 }
9549
9550 /**
9551  * mono_class_get_nested_types
9552  * @klass: the MonoClass to act on
9553  *
9554  * This routine is an iterator routine for retrieving the nested types of a class.
9555  * This works only if @klass is non-generic, or a generic type definition.
9556  *
9557  * You must pass a gpointer that points to zero and is treated as an opaque handle to
9558  * iterate over all of the elements.  When no more values are
9559  * available, the return value is NULL.
9560  *
9561  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
9562  */
9563 MonoClass*
9564 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
9565 {
9566         GList *item;
9567
9568         if (!iter)
9569                 return NULL;
9570         if (!klass->nested_classes_inited)
9571                 setup_nested_types (klass);
9572
9573         if (!*iter) {
9574                 MonoClassExt *ext = mono_class_get_ext (klass);
9575                 /* start from the first */
9576                 if (ext && ext->nested_classes) {
9577                         *iter = ext->nested_classes;
9578                         return (MonoClass *)ext->nested_classes->data;
9579                 } else {
9580                         /* no nested types */
9581                         return NULL;
9582                 }
9583         }
9584         item = (GList *)*iter;
9585         item = item->next;
9586         if (item) {
9587                 *iter = item;
9588                 return (MonoClass *)item->data;
9589         }
9590         return NULL;
9591 }
9592
9593
9594 /**
9595  * mono_class_is_delegate
9596  * @klass: the MonoClass to act on
9597  *
9598  * Returns: TRUE if the MonoClass represents a System.Delegate.
9599  */
9600 mono_bool
9601 mono_class_is_delegate (MonoClass *klass)
9602 {
9603         return klass->delegate;
9604 }
9605
9606 /**
9607  * mono_class_implements_interface
9608  * @klass: The MonoClass to act on
9609  * @interface: The interface to check if @klass implements.
9610  *
9611  * Returns: TRUE if @klass implements @interface.
9612  */
9613 mono_bool
9614 mono_class_implements_interface (MonoClass* klass, MonoClass* iface)
9615 {
9616         return mono_class_is_assignable_from (iface, klass);
9617 }
9618
9619 /**
9620  * mono_field_get_name:
9621  * @field: the MonoClassField to act on
9622  *
9623  * Returns: The name of the field.
9624  */
9625 const char*
9626 mono_field_get_name (MonoClassField *field)
9627 {
9628         return field->name;
9629 }
9630
9631 /**
9632  * mono_field_get_type:
9633  * @field: the MonoClassField to act on
9634  *
9635  * Returns: MonoType of the field.
9636  */
9637 MonoType*
9638 mono_field_get_type (MonoClassField *field)
9639 {
9640         MonoError error;
9641         MonoType *type = mono_field_get_type_checked (field, &error);
9642         if (!mono_error_ok (&error)) {
9643                 mono_trace_warning (MONO_TRACE_TYPE, "Could not load field's type due to %s", mono_error_get_message (&error));
9644                 mono_error_cleanup (&error);
9645         }
9646         return type;
9647 }
9648
9649
9650 /**
9651  * mono_field_get_type_checked:
9652  * @field: the MonoClassField to act on
9653  * @error: used to return any erro found while retrieving @field type
9654  *
9655  * Returns: MonoType of the field.
9656  */
9657 MonoType*
9658 mono_field_get_type_checked (MonoClassField *field, MonoError *error)
9659 {
9660         mono_error_init (error);
9661         if (!field->type)
9662                 mono_field_resolve_type (field, error);
9663         return field->type;
9664 }
9665
9666 /**
9667  * mono_field_get_parent:
9668  * @field: the MonoClassField to act on
9669  *
9670  * Returns: MonoClass where the field was defined.
9671  */
9672 MonoClass*
9673 mono_field_get_parent (MonoClassField *field)
9674 {
9675         return field->parent;
9676 }
9677
9678 /**
9679  * mono_field_get_flags;
9680  * @field: the MonoClassField to act on
9681  *
9682  * The metadata flags for a field are encoded using the
9683  * FIELD_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
9684  *
9685  * Returns: The flags for the field.
9686  */
9687 guint32
9688 mono_field_get_flags (MonoClassField *field)
9689 {
9690         if (!field->type)
9691                 return mono_field_resolve_flags (field);
9692         return field->type->attrs;
9693 }
9694
9695 /**
9696  * mono_field_get_offset:
9697  * @field: the MonoClassField to act on
9698  *
9699  * Returns: The field offset.
9700  */
9701 guint32
9702 mono_field_get_offset (MonoClassField *field)
9703 {
9704         return field->offset;
9705 }
9706
9707 static const char *
9708 mono_field_get_rva (MonoClassField *field)
9709 {
9710         guint32 rva;
9711         int field_index;
9712         MonoClass *klass = field->parent;
9713         MonoFieldDefaultValue *field_def_values;
9714
9715         g_assert (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA);
9716
9717         MonoClassExt *ext = mono_class_get_ext (klass);
9718         if (!ext || !ext->field_def_values) {
9719                 mono_class_alloc_ext (klass);
9720                 ext = mono_class_get_ext (klass);
9721
9722                 field_def_values = (MonoFieldDefaultValue *)mono_class_alloc0 (klass, sizeof (MonoFieldDefaultValue) * mono_class_get_field_count (klass));
9723
9724                 mono_image_lock (klass->image);
9725                 if (!ext->field_def_values)
9726                         ext->field_def_values = field_def_values;
9727                 mono_image_unlock (klass->image);
9728         }
9729
9730         field_index = mono_field_get_index (field);
9731                 
9732         if (!ext->field_def_values [field_index].data && !image_is_dynamic (klass->image)) {
9733                 int first_field_idx = mono_class_get_first_field_idx (klass);
9734                 mono_metadata_field_info (field->parent->image, first_field_idx + field_index, NULL, &rva, NULL);
9735                 if (!rva)
9736                         g_warning ("field %s in %s should have RVA data, but hasn't", mono_field_get_name (field), field->parent->name);
9737                 ext->field_def_values [field_index].data = mono_image_rva_map (field->parent->image, rva);
9738         }
9739
9740         return ext->field_def_values [field_index].data;
9741 }
9742
9743 /**
9744  * mono_field_get_data:
9745  * @field: the MonoClassField to act on
9746  *
9747  * Returns: A pointer to the metadata constant value or to the field
9748  * data if it has an RVA flag.
9749  */
9750 const char *
9751 mono_field_get_data (MonoClassField *field)
9752 {
9753         if (field->type->attrs & FIELD_ATTRIBUTE_HAS_DEFAULT) {
9754                 MonoTypeEnum def_type;
9755
9756                 return mono_class_get_field_default_value (field, &def_type);
9757         } else if (field->type->attrs & FIELD_ATTRIBUTE_HAS_FIELD_RVA) {
9758                 return mono_field_get_rva (field);
9759         } else {
9760                 return NULL;
9761         }
9762 }
9763
9764 /**
9765  * mono_property_get_name: 
9766  * @prop: the MonoProperty to act on
9767  *
9768  * Returns: The name of the property
9769  */
9770 const char*
9771 mono_property_get_name (MonoProperty *prop)
9772 {
9773         return prop->name;
9774 }
9775
9776 /**
9777  * mono_property_get_set_method
9778  * @prop: the MonoProperty to act on.
9779  *
9780  * Returns: The setter method of the property (A MonoMethod)
9781  */
9782 MonoMethod*
9783 mono_property_get_set_method (MonoProperty *prop)
9784 {
9785         return prop->set;
9786 }
9787
9788 /**
9789  * mono_property_get_get_method
9790  * @prop: the MonoProperty to act on.
9791  *
9792  * Returns: The setter method of the property (A MonoMethod)
9793  */
9794 MonoMethod*
9795 mono_property_get_get_method (MonoProperty *prop)
9796 {
9797         return prop->get;
9798 }
9799
9800 /**
9801  * mono_property_get_parent:
9802  * @prop: the MonoProperty to act on.
9803  *
9804  * Returns: The MonoClass where the property was defined.
9805  */
9806 MonoClass*
9807 mono_property_get_parent (MonoProperty *prop)
9808 {
9809         return prop->parent;
9810 }
9811
9812 /**
9813  * mono_property_get_flags:
9814  * @prop: the MonoProperty to act on.
9815  *
9816  * The metadata flags for a property are encoded using the
9817  * PROPERTY_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
9818  *
9819  * Returns: The flags for the property.
9820  */
9821 guint32
9822 mono_property_get_flags (MonoProperty *prop)
9823 {
9824         return prop->attrs;
9825 }
9826
9827 /**
9828  * mono_event_get_name:
9829  * @event: the MonoEvent to act on
9830  *
9831  * Returns: The name of the event.
9832  */
9833 const char*
9834 mono_event_get_name (MonoEvent *event)
9835 {
9836         return event->name;
9837 }
9838
9839 /**
9840  * mono_event_get_add_method:
9841  * @event: The MonoEvent to act on.
9842  *
9843  * Returns: The @add' method for the event (a MonoMethod).
9844  */
9845 MonoMethod*
9846 mono_event_get_add_method (MonoEvent *event)
9847 {
9848         return event->add;
9849 }
9850
9851 /**
9852  * mono_event_get_remove_method:
9853  * @event: The MonoEvent to act on.
9854  *
9855  * Returns: The @remove method for the event (a MonoMethod).
9856  */
9857 MonoMethod*
9858 mono_event_get_remove_method (MonoEvent *event)
9859 {
9860         return event->remove;
9861 }
9862
9863 /**
9864  * mono_event_get_raise_method:
9865  * @event: The MonoEvent to act on.
9866  *
9867  * Returns: The @raise method for the event (a MonoMethod).
9868  */
9869 MonoMethod*
9870 mono_event_get_raise_method (MonoEvent *event)
9871 {
9872         return event->raise;
9873 }
9874
9875 /**
9876  * mono_event_get_parent:
9877  * @event: the MonoEvent to act on.
9878  *
9879  * Returns: The MonoClass where the event is defined.
9880  */
9881 MonoClass*
9882 mono_event_get_parent (MonoEvent *event)
9883 {
9884         return event->parent;
9885 }
9886
9887 /**
9888  * mono_event_get_flags
9889  * @event: the MonoEvent to act on.
9890  *
9891  * The metadata flags for an event are encoded using the
9892  * EVENT_* constants.  See the tabledefs.h file for details.
9893  *
9894  * Returns: The flags for the event.
9895  */
9896 guint32
9897 mono_event_get_flags (MonoEvent *event)
9898 {
9899         return event->attrs;
9900 }
9901
9902 /**
9903  * mono_class_get_method_from_name:
9904  * @klass: where to look for the method
9905  * @name: name of the method
9906  * @param_count: number of parameters. -1 for any number.
9907  *
9908  * Obtains a MonoMethod with a given name and number of parameters.
9909  * It only works if there are no multiple signatures for any given method name.
9910  */
9911 MonoMethod *
9912 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
9913 {
9914         return mono_class_get_method_from_name_flags (klass, name, param_count, 0);
9915 }
9916
9917 static MonoMethod*
9918 find_method_in_metadata (MonoClass *klass, const char *name, int param_count, int flags)
9919 {
9920         MonoMethod *res = NULL;
9921         int i;
9922
9923         /* Search directly in the metadata to avoid calling setup_methods () */
9924         int first_idx = mono_class_get_first_method_idx (klass);
9925         int mcount = mono_class_get_method_count (klass);
9926         for (i = 0; i < mcount; ++i) {
9927                 MonoError error;
9928                 guint32 cols [MONO_METHOD_SIZE];
9929                 MonoMethod *method;
9930                 MonoMethodSignature *sig;
9931
9932                 /* first_idx points into the methodptr table */
9933                 mono_metadata_decode_table_row (klass->image, MONO_TABLE_METHOD, first_idx + i, cols, MONO_METHOD_SIZE);
9934
9935                 if (!strcmp (mono_metadata_string_heap (klass->image, cols [MONO_METHOD_NAME]), name)) {
9936                         method = mono_get_method_checked (klass->image, MONO_TOKEN_METHOD_DEF | (first_idx + i + 1), klass, NULL, &error);
9937                         if (!method) {
9938                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
9939                                 continue;
9940                         }
9941                         if (param_count == -1) {
9942                                 res = method;
9943                                 break;
9944                         }
9945                         sig = mono_method_signature_checked (method, &error);
9946                         if (!sig) {
9947                                 mono_error_cleanup (&error); /* FIXME don't swallow the error */
9948                                 continue;
9949                         }
9950                         if (sig->param_count == param_count) {
9951                                 res = method;
9952                                 break;
9953                         }
9954                 }
9955         }
9956
9957         return res;
9958 }
9959
9960 /**
9961  * mono_class_get_method_from_name_flags:
9962  * @klass: where to look for the method
9963  * @name_space: name of the method
9964  * @param_count: number of parameters. -1 for any number.
9965  * @flags: flags which must be set in the method
9966  *
9967  * Obtains a MonoMethod with a given name and number of parameters.
9968  * It only works if there are no multiple signatures for any given method name.
9969  */
9970 MonoMethod *
9971 mono_class_get_method_from_name_flags (MonoClass *klass, const char *name, int param_count, int flags)
9972 {
9973         MonoMethod *res = NULL;
9974         int i;
9975
9976         mono_class_init (klass);
9977
9978         if (mono_class_is_ginst (klass) && !klass->methods) {
9979                 res = mono_class_get_method_from_name_flags (mono_class_get_generic_class (klass)->container_class, name, param_count, flags);
9980                 if (res) {
9981                         MonoError error;
9982                         res = mono_class_inflate_generic_method_full_checked (res, klass, mono_class_get_context (klass), &error);
9983                         if (!mono_error_ok (&error))
9984                                 mono_error_cleanup (&error); /*FIXME don't swallow the error */
9985                 }
9986                 return res;
9987         }
9988
9989         if (klass->methods || !MONO_CLASS_HAS_STATIC_METADATA (klass)) {
9990                 mono_class_setup_methods (klass);
9991                 /*
9992                 We can't fail lookup of methods otherwise the runtime will burst in flames on all sort of places.
9993                 See mono/tests/array_load_exception.il
9994                 FIXME we should better report this error to the caller
9995                  */
9996                 if (!klass->methods)
9997                         return NULL;
9998                 int mcount = mono_class_get_method_count (klass);
9999                 for (i = 0; i < mcount; ++i) {
10000                         MonoMethod *method = klass->methods [i];
10001
10002                         if (method->name[0] == name [0] && 
10003                                 !strcmp (name, method->name) &&
10004                                 (param_count == -1 || mono_method_signature (method)->param_count == param_count) &&
10005                                 ((method->flags & flags) == flags)) {
10006                                 res = method;
10007                                 break;
10008                         }
10009                 }
10010         }
10011         else {
10012             res = find_method_in_metadata (klass, name, param_count, flags);
10013         }
10014
10015         return res;
10016 }
10017
10018 /**
10019  * mono_class_set_failure:
10020  * @klass: class in which the failure was detected
10021  * @ex_type: the kind of exception/error to be thrown (later)
10022  * @ex_data: exception data (specific to each type of exception/error)
10023  *
10024  * Keep a detected failure informations in the class for later processing.
10025  * Note that only the first failure is kept.
10026  *
10027  * LOCKING: Acquires the loader lock.
10028  */
10029 static gboolean
10030 mono_class_set_failure (MonoClass *klass, MonoErrorBoxed *boxed_error)
10031 {
10032         g_assert (boxed_error != NULL);
10033
10034         if (mono_class_has_failure (klass))
10035                 return FALSE;
10036
10037         mono_loader_lock ();
10038         klass->has_failure = 1;
10039         mono_image_property_insert (klass->image, klass, MONO_CLASS_PROP_EXCEPTION_DATA, boxed_error);
10040         mono_loader_unlock ();
10041
10042         return TRUE;
10043 }
10044
10045 gboolean
10046 mono_class_has_failure (const MonoClass *klass)
10047 {
10048         g_assert (klass != NULL);
10049         return klass->has_failure != 0;
10050 }
10051
10052
10053 /**
10054  * mono_class_set_type_load_failure:
10055  * @klass: class in which the failure was detected
10056  * @fmt: Printf-style error message string.
10057  *
10058  * Collect detected failure informaion in the class for later processing.
10059  * The error is stored as a MonoErrorBoxed as with mono_error_set_type_load_class ()
10060  * Note that only the first failure is kept.
10061  *
10062  * Returns FALSE if a failure was already set on the class, or TRUE otherwise.
10063  *
10064  * LOCKING: Acquires the loader lock.
10065  */
10066 gboolean
10067 mono_class_set_type_load_failure (MonoClass *klass, const char * fmt, ...)
10068 {
10069         MonoError prepare_error;
10070         va_list args;
10071
10072         if (mono_class_has_failure (klass))
10073                 return FALSE;
10074         
10075         mono_error_init (&prepare_error);
10076         
10077         va_start (args, fmt);
10078         mono_error_vset_type_load_class (&prepare_error, klass, fmt, args);
10079         va_end (args);
10080
10081         MonoErrorBoxed *box = mono_error_box (&prepare_error, klass->image);
10082         mono_error_cleanup (&prepare_error);
10083         return mono_class_set_failure (klass, box);
10084 }
10085
10086 /*
10087  * mono_class_get_exception_data:
10088  *
10089  *   Return the exception_data property of KLASS.
10090  *
10091  * LOCKING: Acquires the loader lock.
10092  */
10093 static gpointer
10094 mono_class_get_exception_data (const MonoClass *klass)
10095 {
10096         return mono_image_property_lookup (klass->image, (MonoClass*)klass, MONO_CLASS_PROP_EXCEPTION_DATA);
10097 }
10098
10099 /**
10100  * mono_classes_init:
10101  *
10102  * Initialize the resources used by this module.
10103  */
10104 void
10105 mono_classes_init (void)
10106 {
10107         mono_os_mutex_init (&classes_mutex);
10108
10109         mono_native_tls_alloc (&setup_fields_tls_id, NULL);
10110         mono_native_tls_alloc (&init_pending_tls_id, NULL);
10111
10112         mono_counters_register ("MonoClassDef count",
10113                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_def_count);
10114         mono_counters_register ("MonoClassGtd count",
10115                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_gtd_count);
10116         mono_counters_register ("MonoClassGenericInst count",
10117                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ginst_count);
10118         mono_counters_register ("MonoClassGenericParam count",
10119                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_gparam_count);
10120         mono_counters_register ("MonoClassArray count",
10121                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_array_count);
10122         mono_counters_register ("MonoClassPointer count",
10123                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_pointer_count);
10124         mono_counters_register ("Inflated methods size",
10125                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_methods_size);
10126         mono_counters_register ("Inflated classes size",
10127                                                         MONO_COUNTER_GENERICS | MONO_COUNTER_INT, &inflated_classes_size);
10128         mono_counters_register ("MonoClass size",
10129                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &classes_size);
10130         mono_counters_register ("MonoClassExt size",
10131                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ext_size);
10132
10133         mono_counters_register ("MonoClassExt count",
10134                                                         MONO_COUNTER_METADATA | MONO_COUNTER_INT, &class_ext_count);
10135 }
10136
10137 /**
10138  * mono_classes_cleanup:
10139  *
10140  * Free the resources used by this module.
10141  */
10142 void
10143 mono_classes_cleanup (void)
10144 {
10145         mono_native_tls_free (setup_fields_tls_id);
10146         mono_native_tls_free (init_pending_tls_id);
10147
10148         if (global_interface_bitset)
10149                 mono_bitset_free (global_interface_bitset);
10150         global_interface_bitset = NULL;
10151         mono_os_mutex_destroy (&classes_mutex);
10152 }
10153
10154 /**
10155  * mono_class_get_exception_for_failure:
10156  * @klass: class in which the failure was detected
10157  *
10158  * Return a constructed MonoException than the caller can then throw
10159  * using mono_raise_exception - or NULL if no failure is present (or
10160  * doesn't result in an exception).
10161  */
10162 MonoException*
10163 mono_class_get_exception_for_failure (MonoClass *klass)
10164 {
10165         if (!mono_class_has_failure (klass))
10166                 return NULL;
10167         MonoError unboxed_error;
10168         mono_error_init (&unboxed_error);
10169         mono_error_set_for_class_failure (&unboxed_error, klass);
10170         return mono_error_convert_to_exception (&unboxed_error);
10171 }
10172
10173 static gboolean
10174 is_nesting_type (MonoClass *outer_klass, MonoClass *inner_klass)
10175  {
10176         outer_klass = mono_class_get_generic_type_definition (outer_klass);
10177         inner_klass = mono_class_get_generic_type_definition (inner_klass);
10178         do {
10179                 if (outer_klass == inner_klass)
10180                         return TRUE;
10181                 inner_klass = inner_klass->nested_in;
10182         } while (inner_klass);
10183         return FALSE;
10184 }
10185
10186 MonoClass *
10187 mono_class_get_generic_type_definition (MonoClass *klass)
10188 {
10189         MonoGenericClass *gklass =  mono_class_try_get_generic_class (klass);
10190         return gklass ? gklass->container_class : klass;
10191 }
10192
10193 /*
10194  * Check if @klass is a subtype of @parent ignoring generic instantiations.
10195  * 
10196  * Generic instantiations are ignored for all super types of @klass.
10197  * 
10198  * Visibility checks ignoring generic instantiations.  
10199  */
10200 gboolean
10201 mono_class_has_parent_and_ignore_generics (MonoClass *klass, MonoClass *parent)
10202 {
10203         int i;
10204         klass = mono_class_get_generic_type_definition (klass);
10205         parent = mono_class_get_generic_type_definition (parent);
10206         mono_class_setup_supertypes (klass);
10207
10208         for (i = 0; i < klass->idepth; ++i) {
10209                 if (parent == mono_class_get_generic_type_definition (klass->supertypes [i]))
10210                         return TRUE;
10211         }
10212         return FALSE;
10213 }
10214 /*
10215  * Subtype can only access parent members with family protection if the site object
10216  * is subclass of Subtype. For example:
10217  * class A { protected int x; }
10218  * class B : A {
10219  *      void valid_access () {
10220  *              B b;
10221  *              b.x = 0;
10222  *  }
10223  *  void invalid_access () {
10224  *              A a;
10225  *              a.x = 0;
10226  *  }
10227  * }
10228  * */
10229 static gboolean
10230 is_valid_family_access (MonoClass *access_klass, MonoClass *member_klass, MonoClass *context_klass)
10231 {
10232         if (!mono_class_has_parent_and_ignore_generics (access_klass, member_klass))
10233                 return FALSE;
10234
10235         if (context_klass == NULL)
10236                 return TRUE;
10237         /*if access_klass is not member_klass context_klass must be type compat*/
10238         if (access_klass != member_klass && !mono_class_has_parent_and_ignore_generics (context_klass, access_klass))
10239                 return FALSE;
10240         return TRUE;
10241 }
10242
10243 static gboolean
10244 can_access_internals (MonoAssembly *accessing, MonoAssembly* accessed)
10245 {
10246         GSList *tmp;
10247         if (accessing == accessed)
10248                 return TRUE;
10249         if (!accessed || !accessing)
10250                 return FALSE;
10251
10252         /* extra safety under CoreCLR - the runtime does not verify the strongname signatures
10253          * anywhere so untrusted friends are not safe to access platform's code internals */
10254         if (mono_security_core_clr_enabled ()) {
10255                 if (!mono_security_core_clr_can_access_internals (accessing->image, accessed->image))
10256                         return FALSE;
10257         }
10258
10259         mono_assembly_load_friends (accessed);
10260         for (tmp = accessed->friend_assembly_names; tmp; tmp = tmp->next) {
10261                 MonoAssemblyName *friend_ = (MonoAssemblyName *)tmp->data;
10262                 /* Be conservative with checks */
10263                 if (!friend_->name)
10264                         continue;
10265                 if (strcmp (accessing->aname.name, friend_->name))
10266                         continue;
10267                 if (friend_->public_key_token [0]) {
10268                         if (!accessing->aname.public_key_token [0])
10269                                 continue;
10270                         if (!mono_public_tokens_are_equal (friend_->public_key_token, accessing->aname.public_key_token))
10271                                 continue;
10272                 }
10273                 return TRUE;
10274         }
10275         return FALSE;
10276 }
10277
10278 /*
10279  * If klass is a generic type or if it is derived from a generic type, return the
10280  * MonoClass of the generic definition
10281  * Returns NULL if not found
10282  */
10283 static MonoClass*
10284 get_generic_definition_class (MonoClass *klass)
10285 {
10286         while (klass) {
10287                 MonoGenericClass *gklass = mono_class_try_get_generic_class (klass);
10288                 if (gklass && gklass->container_class)
10289                         return gklass->container_class;
10290                 klass = klass->parent;
10291         }
10292         return NULL;
10293 }
10294
10295 static gboolean
10296 can_access_instantiation (MonoClass *access_klass, MonoGenericInst *ginst)
10297 {
10298         int i;
10299         for (i = 0; i < ginst->type_argc; ++i) {
10300                 MonoType *type = ginst->type_argv[i];
10301                 switch (type->type) {
10302                 case MONO_TYPE_SZARRAY:
10303                         if (!can_access_type (access_klass, type->data.klass))
10304                                 return FALSE;
10305                         break;
10306                 case MONO_TYPE_ARRAY:
10307                         if (!can_access_type (access_klass, type->data.array->eklass))
10308                                 return FALSE;
10309                         break;
10310                 case MONO_TYPE_PTR:
10311                         if (!can_access_type (access_klass, mono_class_from_mono_type (type->data.type)))
10312                                 return FALSE;
10313                         break;
10314                 case MONO_TYPE_CLASS:
10315                 case MONO_TYPE_VALUETYPE:
10316                 case MONO_TYPE_GENERICINST:
10317                         if (!can_access_type (access_klass, mono_class_from_mono_type (type)))
10318                                 return FALSE;
10319                 default:
10320                         break;
10321                 }
10322         }
10323         return TRUE;
10324 }
10325
10326 static gboolean
10327 can_access_type (MonoClass *access_klass, MonoClass *member_klass)
10328 {
10329         int access_level;
10330
10331         if (access_klass == member_klass)
10332                 return TRUE;
10333
10334         if (access_klass->image->assembly && access_klass->image->assembly->corlib_internal)
10335                 return TRUE;
10336
10337         if (access_klass->element_class && !access_klass->enumtype)
10338                 access_klass = access_klass->element_class;
10339
10340         if (member_klass->element_class && !member_klass->enumtype)
10341                 member_klass = member_klass->element_class;
10342
10343         access_level = mono_class_get_flags (member_klass) & TYPE_ATTRIBUTE_VISIBILITY_MASK;
10344
10345         if (member_klass->byval_arg.type == MONO_TYPE_VAR || member_klass->byval_arg.type == MONO_TYPE_MVAR)
10346                 return TRUE;
10347
10348         if (mono_class_is_ginst (member_klass) && !can_access_instantiation (access_klass, mono_class_get_generic_class (member_klass)->context.class_inst))
10349                 return FALSE;
10350
10351         if (is_nesting_type (access_klass, member_klass) || (access_klass->nested_in && is_nesting_type (access_klass->nested_in, member_klass)))
10352                 return TRUE;
10353
10354         if (member_klass->nested_in && !can_access_type (access_klass, member_klass->nested_in))
10355                 return FALSE;
10356
10357         /*Non nested type with nested visibility. We just fail it.*/
10358         if (access_level >= TYPE_ATTRIBUTE_NESTED_PRIVATE && access_level <= TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM && member_klass->nested_in == NULL)
10359                 return FALSE;
10360
10361         switch (access_level) {
10362         case TYPE_ATTRIBUTE_NOT_PUBLIC:
10363                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
10364
10365         case TYPE_ATTRIBUTE_PUBLIC:
10366                 return TRUE;
10367
10368         case TYPE_ATTRIBUTE_NESTED_PUBLIC:
10369                 return TRUE;
10370
10371         case TYPE_ATTRIBUTE_NESTED_PRIVATE:
10372                 return is_nesting_type (member_klass, access_klass);
10373
10374         case TYPE_ATTRIBUTE_NESTED_FAMILY:
10375                 return mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in); 
10376
10377         case TYPE_ATTRIBUTE_NESTED_ASSEMBLY:
10378                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
10379
10380         case TYPE_ATTRIBUTE_NESTED_FAM_AND_ASSEM:
10381                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) &&
10382                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
10383
10384         case TYPE_ATTRIBUTE_NESTED_FAM_OR_ASSEM:
10385                 return can_access_internals (access_klass->image->assembly, member_klass->nested_in->image->assembly) ||
10386                         mono_class_has_parent_and_ignore_generics (access_klass, member_klass->nested_in);
10387         }
10388         return FALSE;
10389 }
10390
10391 /* FIXME: check visibility of type, too */
10392 static gboolean
10393 can_access_member (MonoClass *access_klass, MonoClass *member_klass, MonoClass* context_klass, int access_level)
10394 {
10395         MonoClass *member_generic_def;
10396         if (access_klass->image->assembly && access_klass->image->assembly->corlib_internal)
10397                 return TRUE;
10398
10399         MonoGenericClass *access_gklass = mono_class_try_get_generic_class (access_klass);
10400         if (((access_gklass && access_gklass->container_class) ||
10401                                         mono_class_is_gtd (access_klass)) && 
10402                         (member_generic_def = get_generic_definition_class (member_klass))) {
10403                 MonoClass *access_container;
10404
10405                 if (mono_class_is_gtd (access_klass))
10406                         access_container = access_klass;
10407                 else
10408                         access_container = access_gklass->container_class;
10409
10410                 if (can_access_member (access_container, member_generic_def, context_klass, access_level))
10411                         return TRUE;
10412         }
10413
10414         /* Partition I 8.5.3.2 */
10415         /* the access level values are the same for fields and methods */
10416         switch (access_level) {
10417         case FIELD_ATTRIBUTE_COMPILER_CONTROLLED:
10418                 /* same compilation unit */
10419                 return access_klass->image == member_klass->image;
10420         case FIELD_ATTRIBUTE_PRIVATE:
10421                 return access_klass == member_klass;
10422         case FIELD_ATTRIBUTE_FAM_AND_ASSEM:
10423                 if (is_valid_family_access (access_klass, member_klass, context_klass) &&
10424                     can_access_internals (access_klass->image->assembly, member_klass->image->assembly))
10425                         return TRUE;
10426                 return FALSE;
10427         case FIELD_ATTRIBUTE_ASSEMBLY:
10428                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
10429         case FIELD_ATTRIBUTE_FAMILY:
10430                 if (is_valid_family_access (access_klass, member_klass, context_klass))
10431                         return TRUE;
10432                 return FALSE;
10433         case FIELD_ATTRIBUTE_FAM_OR_ASSEM:
10434                 if (is_valid_family_access (access_klass, member_klass, context_klass))
10435                         return TRUE;
10436                 return can_access_internals (access_klass->image->assembly, member_klass->image->assembly);
10437         case FIELD_ATTRIBUTE_PUBLIC:
10438                 return TRUE;
10439         }
10440         return FALSE;
10441 }
10442
10443 /**
10444  * mono_method_can_access_field:
10445  * @method: Method that will attempt to access the field
10446  * @field: the field to access
10447  *
10448  * Used to determine if a method is allowed to access the specified field.
10449  *
10450  * Returns: TRUE if the given @method is allowed to access the @field while following
10451  * the accessibility rules of the CLI.
10452  */
10453 gboolean
10454 mono_method_can_access_field (MonoMethod *method, MonoClassField *field)
10455 {
10456         /* FIXME: check all overlapping fields */
10457         int can = can_access_member (method->klass, field->parent, NULL, mono_field_get_type (field)->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
10458         if (!can) {
10459                 MonoClass *nested = method->klass->nested_in;
10460                 while (nested) {
10461                         can = can_access_member (nested, field->parent, NULL, mono_field_get_type (field)->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
10462                         if (can)
10463                                 return TRUE;
10464                         nested = nested->nested_in;
10465                 }
10466         }
10467         return can;
10468 }
10469
10470 /**
10471  * mono_method_can_access_method:
10472  * @method: Method that will attempt to access the other method
10473  * @called: the method that we want to probe for accessibility.
10474  *
10475  * Used to determine if the @method is allowed to access the specified @called method.
10476  *
10477  * Returns: TRUE if the given @method is allowed to invoke the @called while following
10478  * the accessibility rules of the CLI.
10479  */
10480 gboolean
10481 mono_method_can_access_method (MonoMethod *method, MonoMethod *called)
10482 {
10483         method = mono_method_get_method_definition (method);
10484         called = mono_method_get_method_definition (called);
10485         return mono_method_can_access_method_full (method, called, NULL);
10486 }
10487
10488 /*
10489  * mono_method_can_access_method_full:
10490  * @method: The caller method 
10491  * @called: The called method 
10492  * @context_klass: The static type on stack of the owner @called object used
10493  * 
10494  * This function must be used with instance calls, as they have more strict family accessibility.
10495  * It can be used with static methods, but context_klass should be NULL.
10496  * 
10497  * Returns: TRUE if caller have proper visibility and acessibility to @called
10498  */
10499 gboolean
10500 mono_method_can_access_method_full (MonoMethod *method, MonoMethod *called, MonoClass *context_klass)
10501 {
10502         /* Wrappers are except from access checks */
10503         if (method->wrapper_type != MONO_WRAPPER_NONE || called->wrapper_type != MONO_WRAPPER_NONE)
10504                 return TRUE;
10505
10506         MonoClass *access_class = method->klass;
10507         MonoClass *member_class = called->klass;
10508         int can = can_access_member (access_class, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
10509         if (!can) {
10510                 MonoClass *nested = access_class->nested_in;
10511                 while (nested) {
10512                         can = can_access_member (nested, member_class, context_klass, called->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK);
10513                         if (can)
10514                                 break;
10515                         nested = nested->nested_in;
10516                 }
10517         }
10518
10519         if (!can)
10520                 return FALSE;
10521
10522         can = can_access_type (access_class, member_class);
10523         if (!can) {
10524                 MonoClass *nested = access_class->nested_in;
10525                 while (nested) {
10526                         can = can_access_type (nested, member_class);
10527                         if (can)
10528                                 break;
10529                         nested = nested->nested_in;
10530                 }
10531         }
10532
10533         if (!can)
10534                 return FALSE;
10535
10536         if (called->is_inflated) {
10537                 MonoMethodInflated * infl = (MonoMethodInflated*)called;
10538                 if (infl->context.method_inst && !can_access_instantiation (access_class, infl->context.method_inst))
10539                         return FALSE;
10540         }
10541                 
10542         return TRUE;
10543 }
10544
10545
10546 /*
10547  * mono_method_can_access_field_full:
10548  * @method: The caller method 
10549  * @field: The accessed field
10550  * @context_klass: The static type on stack of the owner @field object used
10551  * 
10552  * This function must be used with instance fields, as they have more strict family accessibility.
10553  * It can be used with static fields, but context_klass should be NULL.
10554  * 
10555  * Returns: TRUE if caller have proper visibility and acessibility to @field
10556  */
10557 gboolean
10558 mono_method_can_access_field_full (MonoMethod *method, MonoClassField *field, MonoClass *context_klass)
10559 {
10560         MonoClass *access_class = method->klass;
10561         MonoClass *member_class = field->parent;
10562         /* FIXME: check all overlapping fields */
10563         int can = can_access_member (access_class, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
10564         if (!can) {
10565                 MonoClass *nested = access_class->nested_in;
10566                 while (nested) {
10567                         can = can_access_member (nested, member_class, context_klass, field->type->attrs & FIELD_ATTRIBUTE_FIELD_ACCESS_MASK);
10568                         if (can)
10569                                 break;
10570                         nested = nested->nested_in;
10571                 }
10572         }
10573
10574         if (!can)
10575                 return FALSE;
10576
10577         can = can_access_type (access_class, member_class);
10578         if (!can) {
10579                 MonoClass *nested = access_class->nested_in;
10580                 while (nested) {
10581                         can = can_access_type (nested, member_class);
10582                         if (can)
10583                                 break;
10584                         nested = nested->nested_in;
10585                 }
10586         }
10587
10588         if (!can)
10589                 return FALSE;
10590         return TRUE;
10591 }
10592
10593 /*
10594  * mono_class_can_access_class:
10595  * @source_class: The source class 
10596  * @target_class: The accessed class
10597  * 
10598  * This function returns is @target_class is visible to @source_class
10599  * 
10600  * Returns: TRUE if source have proper visibility and acessibility to target
10601  */
10602 gboolean
10603 mono_class_can_access_class (MonoClass *source_class, MonoClass *target_class)
10604 {
10605         return can_access_type (source_class, target_class);
10606 }
10607
10608 /**
10609  * mono_type_is_valid_enum_basetype:
10610  * @type: The MonoType to check
10611  *
10612  * Returns: TRUE if the type can be used as the basetype of an enum
10613  */
10614 gboolean mono_type_is_valid_enum_basetype (MonoType * type) {
10615         switch (type->type) {
10616         case MONO_TYPE_I1:
10617         case MONO_TYPE_U1:
10618         case MONO_TYPE_BOOLEAN:
10619         case MONO_TYPE_I2:
10620         case MONO_TYPE_U2:
10621         case MONO_TYPE_CHAR:
10622         case MONO_TYPE_I4:
10623         case MONO_TYPE_U4:
10624         case MONO_TYPE_I8:
10625         case MONO_TYPE_U8:
10626         case MONO_TYPE_I:
10627         case MONO_TYPE_U:
10628                 return TRUE;
10629         default:
10630                 return FALSE;
10631         }
10632 }
10633
10634 /**
10635  * mono_class_is_valid_enum:
10636  * @klass: An enum class to be validated
10637  *
10638  * This method verify the required properties an enum should have.
10639  *  
10640  * Returns: TRUE if the informed enum class is valid 
10641  *
10642  * FIXME: TypeBuilder enums are allowed to implement interfaces, but since they cannot have methods, only empty interfaces are possible
10643  * FIXME: enum types are not allowed to have a cctor, but mono_reflection_create_runtime_class sets has_cctor to 1 for all types
10644  * FIXME: TypeBuilder enums can have any kind of static fields, but the spec is very explicit about that (P II 14.3)
10645  */
10646 gboolean
10647 mono_class_is_valid_enum (MonoClass *klass)
10648 {
10649         MonoClassField * field;
10650         gpointer iter = NULL;
10651         gboolean found_base_field = FALSE;
10652
10653         g_assert (klass->enumtype);
10654         /* we cannot test against mono_defaults.enum_class, or mcs won't be able to compile the System namespace*/
10655         if (!klass->parent || strcmp (klass->parent->name, "Enum") || strcmp (klass->parent->name_space, "System") ) {
10656                 return FALSE;
10657         }
10658
10659         if (!mono_class_is_auto_layout (klass))
10660                 return FALSE;
10661
10662         while ((field = mono_class_get_fields (klass, &iter))) {
10663                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
10664                         if (found_base_field)
10665                                 return FALSE;
10666                         found_base_field = TRUE;
10667                         if (!mono_type_is_valid_enum_basetype (field->type))
10668                                 return FALSE;
10669                 }
10670         }
10671
10672         if (!found_base_field)
10673                 return FALSE;
10674
10675         if (mono_class_get_method_count (klass) > 0)
10676                 return FALSE;
10677
10678         return TRUE;
10679 }
10680
10681 gboolean
10682 mono_generic_class_is_generic_type_definition (MonoGenericClass *gklass)
10683 {
10684         return gklass->context.class_inst == mono_class_get_generic_container (gklass->container_class)->context.class_inst;
10685 }
10686
10687 /*
10688  * mono_class_setup_interface_id:
10689  *
10690  * Initializes MonoClass::interface_id if required.
10691  *
10692  * LOCKING: Acquires the loader lock.
10693  */
10694 void
10695 mono_class_setup_interface_id (MonoClass *klass)
10696 {
10697         mono_loader_lock ();
10698         if (MONO_CLASS_IS_INTERFACE (klass) && !klass->interface_id)
10699                 klass->interface_id = mono_get_unique_iid (klass);
10700         mono_loader_unlock ();
10701 }
10702
10703 /*
10704  * mono_class_alloc_ext:
10705  *
10706  *   Allocate klass->ext if not already done.
10707  */
10708 void
10709 mono_class_alloc_ext (MonoClass *klass)
10710 {
10711         MonoClassExt *ext;
10712
10713         if (mono_class_get_ext (klass))
10714                 return;
10715
10716         ext = (MonoClassExt *)mono_class_alloc0 (klass, sizeof (MonoClassExt));
10717         mono_image_lock (klass->image);
10718         mono_memory_barrier ();
10719         if (!mono_class_get_ext (klass))
10720                 mono_class_set_ext (klass, ext);
10721         class_ext_size += sizeof (MonoClassExt);
10722         ++class_ext_count;
10723         mono_image_unlock (klass->image);
10724 }
10725
10726 /*
10727  * mono_class_setup_interfaces:
10728  *
10729  *   Initialize klass->interfaces/interfaces_count.
10730  * LOCKING: Acquires the loader lock.
10731  * This function can fail the type.
10732  */
10733 void
10734 mono_class_setup_interfaces (MonoClass *klass, MonoError *error)
10735 {
10736         int i, interface_count;
10737         MonoClass **interfaces;
10738
10739         mono_error_init (error);
10740
10741         if (klass->interfaces_inited)
10742                 return;
10743
10744         if (klass->rank == 1 && klass->byval_arg.type != MONO_TYPE_ARRAY) {
10745                 MonoType *args [1];
10746
10747                 /* generic IList, ICollection, IEnumerable */
10748                 interface_count = mono_defaults.generic_ireadonlylist_class ? 2 : 1;
10749                 interfaces = (MonoClass **)mono_image_alloc0 (klass->image, sizeof (MonoClass*) * interface_count);
10750
10751                 args [0] = &klass->element_class->byval_arg;
10752                 interfaces [0] = mono_class_bind_generic_parameters (
10753                         mono_defaults.generic_ilist_class, 1, args, FALSE);
10754                 if (interface_count > 1)
10755                         interfaces [1] = mono_class_bind_generic_parameters (
10756                            mono_defaults.generic_ireadonlylist_class, 1, args, FALSE);
10757         } else if (mono_class_is_ginst (klass)) {
10758                 MonoClass *gklass = mono_class_get_generic_class (klass)->container_class;
10759
10760                 mono_class_setup_interfaces (gklass, error);
10761                 if (!mono_error_ok (error)) {
10762                         mono_class_set_type_load_failure (klass, "Could not setup the interfaces");
10763                         return;
10764                 }
10765
10766                 interface_count = gklass->interface_count;
10767                 interfaces = mono_class_new0 (klass, MonoClass *, interface_count);
10768                 for (i = 0; i < interface_count; i++) {
10769                         interfaces [i] = mono_class_inflate_generic_class_checked (gklass->interfaces [i], mono_generic_class_get_context (mono_class_get_generic_class (klass)), error);
10770                         if (!mono_error_ok (error)) {
10771                                 mono_class_set_type_load_failure (klass, "Could not setup the interfaces");
10772                                 return;
10773                         }
10774                 }
10775         } else {
10776                 interface_count = 0;
10777                 interfaces = NULL;
10778         }
10779
10780         mono_image_lock (klass->image);
10781
10782         if (!klass->interfaces_inited) {
10783                 klass->interface_count = interface_count;
10784                 klass->interfaces = interfaces;
10785
10786                 mono_memory_barrier ();
10787
10788                 klass->interfaces_inited = TRUE;
10789         }
10790
10791         mono_image_unlock (klass->image);
10792 }
10793
10794 static void
10795 mono_field_resolve_type (MonoClassField *field, MonoError *error)
10796 {
10797         MonoClass *klass = field->parent;
10798         MonoImage *image = klass->image;
10799         MonoClass *gtd = mono_class_is_ginst (klass) ? mono_class_get_generic_type_definition (klass) : NULL;
10800         MonoType *ftype;
10801         int field_idx = field - klass->fields;
10802
10803         mono_error_init (error);
10804
10805         if (gtd) {
10806                 MonoClassField *gfield = &gtd->fields [field_idx];
10807                 MonoType *gtype = mono_field_get_type_checked (gfield, error);
10808                 if (!mono_error_ok (error)) {
10809                         char *full_name = mono_type_get_full_name (gtd);
10810                         mono_class_set_type_load_failure (klass, "Could not load generic type of field '%s:%s' (%d) due to: %s", full_name, gfield->name, field_idx, mono_error_get_message (error));
10811                         g_free (full_name);
10812                 }
10813
10814                 ftype = mono_class_inflate_generic_type_no_copy (image, gtype, mono_class_get_context (klass), error);
10815                 if (!mono_error_ok (error)) {
10816                         char *full_name = mono_type_get_full_name (klass);
10817                         mono_class_set_type_load_failure (klass, "Could not load instantiated type of field '%s:%s' (%d) due to: %s", full_name, field->name, field_idx, mono_error_get_message (error));
10818                         g_free (full_name);
10819                 }
10820         } else {
10821                 const char *sig;
10822                 guint32 cols [MONO_FIELD_SIZE];
10823                 MonoGenericContainer *container = NULL;
10824                 int idx = mono_class_get_first_field_idx (klass) + field_idx;
10825
10826                 /*FIXME, in theory we do not lazy load SRE fields*/
10827                 g_assert (!image_is_dynamic (image));
10828
10829                 if (mono_class_is_gtd (klass)) {
10830                         container = mono_class_get_generic_container (klass);
10831                 } else if (gtd) {
10832                         container = mono_class_get_generic_container (gtd);
10833                         g_assert (container);
10834                 }
10835
10836                 /* first_field_idx and idx points into the fieldptr table */
10837                 mono_metadata_decode_table_row (image, MONO_TABLE_FIELD, idx, cols, MONO_FIELD_SIZE);
10838
10839                 if (!mono_verifier_verify_field_signature (image, cols [MONO_FIELD_SIGNATURE], NULL)) {
10840                         char *full_name = mono_type_get_full_name (klass);
10841                         mono_error_set_type_load_class (error, klass, "Could not verify field '%s:%s' signature", full_name, field->name);;
10842                         mono_class_set_type_load_failure (klass, "%s", mono_error_get_message (error));
10843                         g_free (full_name);
10844                         return;
10845                 }
10846
10847                 sig = mono_metadata_blob_heap (image, cols [MONO_FIELD_SIGNATURE]);
10848
10849                 mono_metadata_decode_value (sig, &sig);
10850                 /* FIELD signature == 0x06 */
10851                 g_assert (*sig == 0x06);
10852
10853                 ftype = mono_metadata_parse_type_checked (image, container, cols [MONO_FIELD_FLAGS], FALSE, sig + 1, &sig, error);
10854                 if (!ftype) {
10855                         char *full_name = mono_type_get_full_name (klass);
10856                         mono_class_set_type_load_failure (klass, "Could not load type of field '%s:%s' (%d) due to: %s", full_name, field->name, field_idx, mono_error_get_message (error));
10857                         g_free (full_name);
10858                 }
10859         }
10860         mono_memory_barrier ();
10861         field->type = ftype;
10862 }
10863
10864 static guint32
10865 mono_field_resolve_flags (MonoClassField *field)
10866 {
10867         MonoClass *klass = field->parent;
10868         MonoImage *image = klass->image;
10869         MonoClass *gtd = mono_class_is_ginst (klass) ? mono_class_get_generic_type_definition (klass) : NULL;
10870         int field_idx = field - klass->fields;
10871
10872
10873         if (gtd) {
10874                 MonoClassField *gfield = &gtd->fields [field_idx];
10875                 return mono_field_get_flags (gfield);
10876         } else {
10877                 int idx = mono_class_get_first_field_idx (klass) + field_idx;
10878
10879                 /*FIXME, in theory we do not lazy load SRE fields*/
10880                 g_assert (!image_is_dynamic (image));
10881
10882                 return mono_metadata_decode_table_row_col (image, MONO_TABLE_FIELD, idx, MONO_FIELD_FLAGS);
10883         }
10884 }
10885
10886 /**
10887  * mono_class_get_fields_lazy:
10888  * @klass: the MonoClass to act on
10889  *
10890  * This routine is an iterator routine for retrieving the fields in a class.
10891  * Only minimal information about fields are loaded. Accessors must be used
10892  * for all MonoClassField returned.
10893  *
10894  * You must pass a gpointer that points to zero and is treated as an opaque handle to
10895  * iterate over all of the elements.  When no more values are
10896  * available, the return value is NULL.
10897  *
10898  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
10899  */
10900 MonoClassField*
10901 mono_class_get_fields_lazy (MonoClass* klass, gpointer *iter)
10902 {
10903         MonoClassField* field;
10904         if (!iter)
10905                 return NULL;
10906         if (!*iter) {
10907                 mono_class_setup_basic_field_info (klass);
10908                 if (!klass->fields)
10909                         return NULL;
10910                 /* start from the first */
10911                 if (mono_class_get_field_count (klass)) {
10912                         *iter = &klass->fields [0];
10913                         return (MonoClassField *)*iter;
10914                 } else {
10915                         /* no fields */
10916                         return NULL;
10917                 }
10918         }
10919         field = (MonoClassField *)*iter;
10920         field++;
10921         if (field < &klass->fields [mono_class_get_field_count (klass)]) {
10922                 *iter = field;
10923                 return (MonoClassField *)*iter;
10924         }
10925         return NULL;
10926 }
10927
10928 char*
10929 mono_class_full_name (MonoClass *klass)
10930 {
10931         return mono_type_full_name (&klass->byval_arg);
10932 }
10933
10934 /* Declare all shared lazy type lookup functions */
10935 GENERATE_TRY_GET_CLASS_WITH_CACHE (safehandle, System.Runtime.InteropServices, SafeHandle)