Hmm, this breaks the build :-(
[mono.git] / mono / metadata / class.c
1 /*
2  * class.c: Class management for the Mono runtime
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *
7  * (C) 2001 Ximian, Inc.
8  *
9  * Possible Optimizations:
10  *     in mono_class_create, do not allocate the class right away,
11  *     but wait until you know the size of the FieldMap, so that
12  *     the class embeds directly the FieldMap after the vtable.
13  *
14  * 
15  */
16 #include <config.h>
17 #include <glib.h>
18 #include <stdio.h>
19 #include <string.h>
20 #include <stdlib.h>
21 #include <signal.h>
22 #include <mono/metadata/image.h>
23 #include <mono/metadata/assembly.h>
24 #include <mono/metadata/cil-coff.h>
25 #include <mono/metadata/metadata.h>
26 #include <mono/metadata/metadata-internals.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/mono-debug-debugger.h>
36 #include <mono/os/gc_wrapper.h>
37
38 MonoStats mono_stats;
39
40 gboolean mono_print_vtable = FALSE;
41
42 static MonoClass * mono_class_create_from_typedef (MonoImage *image, guint32 type_token);
43
44 void (*mono_debugger_start_class_init_func) (MonoClass *klass) = NULL;
45 void (*mono_debugger_class_init_func) (MonoClass *klass) = NULL;
46
47 MonoClass *
48 mono_class_from_typeref (MonoImage *image, guint32 type_token)
49 {
50         guint32 cols [MONO_TYPEREF_SIZE];
51         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEREF];
52         guint32 idx;
53         const char *name, *nspace;
54         MonoClass *res;
55         MonoAssembly **references;
56
57         mono_metadata_decode_row (t, (type_token&0xffffff)-1, cols, MONO_TYPEREF_SIZE);
58
59         name = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAME]);
60         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEREF_NAMESPACE]);
61         
62         idx = cols [MONO_TYPEREF_SCOPE] >> MONO_RESOLTION_SCOPE_BITS;
63         switch (cols [MONO_TYPEREF_SCOPE] & MONO_RESOLTION_SCOPE_MASK) {
64         case MONO_RESOLTION_SCOPE_MODULE:
65                 if (!idx)
66                         g_error ("null ResolutionScope not yet handled");
67                 /* a typedef in disguise */
68                 return mono_class_from_name (image, nspace, name);
69         case MONO_RESOLTION_SCOPE_MODULEREF:
70                 return mono_class_from_name (image->modules [idx - 1], nspace, name);
71         case MONO_RESOLTION_SCOPE_TYPEREF: {
72                 MonoClass *enclosing = mono_class_from_typeref (image, MONO_TOKEN_TYPE_REF | idx);
73                 GList *tmp;
74                 mono_class_init (enclosing);
75                 for (tmp = enclosing->nested_classes; tmp; tmp = tmp->next) {
76                         res = tmp->data;
77                         if (strcmp (res->name, name) == 0)
78                                 return res;
79                 }
80                 g_warning ("TypeRef ResolutionScope not yet handled (%d)", idx);
81                 return NULL;
82         }
83         case MONO_RESOLTION_SCOPE_ASSEMBLYREF:
84                 break;
85         }
86
87         references = image->references;
88         if (!references [idx-1])
89                 mono_assembly_load_reference (image, idx - 1);
90         if (references [idx - 1] == (gpointer)-1)
91                 return NULL;
92
93         image = references [idx-1]->image;
94
95         return mono_class_from_name (image, nspace, name);
96 }
97
98 static MonoType*
99 dup_type (MonoType* t, const MonoType *original)
100 {
101         MonoType *r = g_new0 (MonoType, 1);
102         *r = *t;
103         r->attrs = original->attrs;
104         r->byref = original->byref;
105         mono_stats.generics_metadata_size += sizeof (MonoType);
106         return r;
107 }
108
109 static void
110 mono_type_get_name_recurse (MonoType *type, GString *str, gboolean is_recursed,
111                             gboolean include_ns, gboolean include_arity)
112 {
113         MonoClass *klass;
114         
115         switch (type->type) {
116         case MONO_TYPE_ARRAY: {
117                 int i, rank = type->data.array->rank;
118
119                 mono_type_get_name_recurse (
120                         &type->data.array->eklass->byval_arg, str,
121                         FALSE, include_ns, include_arity);
122                 g_string_append_c (str, '[');
123                 for (i = 1; i < rank; i++)
124                         g_string_append_c (str, ',');
125                 g_string_append_c (str, ']');
126                 break;
127         }
128         case MONO_TYPE_SZARRAY:
129                 mono_type_get_name_recurse (
130                         &type->data.klass->byval_arg, str, FALSE, include_ns, include_arity);
131                 g_string_append (str, "[]");
132                 break;
133         case MONO_TYPE_PTR:
134                 mono_type_get_name_recurse (type->data.type, str, FALSE, include_ns, include_arity);
135                 g_string_append_c (str, '*');
136                 break;
137         default:
138                 klass = mono_class_from_mono_type (type);
139                 if (klass->nested_in) {
140                         mono_type_get_name_recurse (
141                                 &klass->nested_in->byval_arg, str, TRUE, include_ns, include_arity);
142                         g_string_append_c (str, '+');
143                 }
144                 if (include_ns && *klass->name_space) {
145                         g_string_append (str, klass->name_space);
146                         g_string_append_c (str, '.');
147                 }
148                 if (!include_arity) {
149                         char *s = strchr (klass->name, '`');
150                         int len = s ? s - klass->name : strlen (klass->name);
151
152                         g_string_append_len (str, klass->name, len);
153                 } else
154                         g_string_append (str, klass->name);
155                 if (is_recursed)
156                         break;
157                 if (klass->generic_class) {
158                         MonoGenericClass *gclass = klass->generic_class;
159                         int i;
160
161                         g_string_append_c (str, '[');
162                         for (i = 0; i < gclass->inst->type_argc; i++) {
163                                 if (i)
164                                         g_string_append_c (str, ',');
165                                 mono_type_get_name_recurse (
166                                         gclass->inst->type_argv [i], str, FALSE, include_ns, include_arity);
167                         }
168                         g_string_append_c (str, ']');
169                 } else if (klass->generic_container) {
170                         int i;
171
172                         g_string_append_c (str, '[');
173                         for (i = 0; i < klass->generic_container->type_argc; i++) {
174                                 if (i)
175                                         g_string_append_c (str, ',');
176                                 g_string_append (str, klass->generic_container->type_params [i].name);
177                         }
178                         g_string_append_c (str, ']');
179                 }
180                 break;
181         }
182 }
183
184 /**
185  * mono_type_get_name:
186  * @type: a type
187  *
188  * Returns: the string representation for type as required by System.Reflection.
189  * The inverse of mono_reflection_parse_type ().
190  */
191 static char*
192 _mono_type_get_name (MonoType *type, gboolean is_recursed, gboolean include_ns,
193                      gboolean include_arity)
194 {
195         GString* result = g_string_new ("");
196         mono_type_get_name_recurse (type, result, is_recursed, include_ns, include_arity);
197
198         if (type->byref)
199                 g_string_append_c (result, '&');
200
201         return g_string_free (result, FALSE);
202 }
203
204 char*
205 mono_type_get_name (MonoType *type)
206 {
207         return _mono_type_get_name (type, TRUE, TRUE, TRUE);
208 }
209
210 char*
211 mono_type_get_full_name (MonoType *type)
212 {
213         return _mono_type_get_name (type, FALSE, TRUE, TRUE);
214 }
215
216 MonoType*
217 mono_type_get_underlying_type (MonoType *type)
218 {
219         switch (type->type) {
220         case MONO_TYPE_VALUETYPE:
221                 if (type->data.klass->enumtype)
222                         return type->data.klass->enum_basetype;
223                 break;
224         case MONO_TYPE_GENERICINST:
225                 return mono_type_get_underlying_type (type->data.generic_class->generic_type);
226         default:
227                 break;
228         }
229
230         return type;
231 }
232
233 gboolean
234 mono_class_is_open_constructed_type (MonoType *t)
235 {
236         switch (t->type) {
237         case MONO_TYPE_VAR:
238         case MONO_TYPE_MVAR:
239                 return TRUE;
240         case MONO_TYPE_SZARRAY:
241                 return mono_class_is_open_constructed_type (&t->data.klass->byval_arg);
242         case MONO_TYPE_ARRAY:
243                 return mono_class_is_open_constructed_type (&t->data.array->eklass->byval_arg);
244         case MONO_TYPE_PTR:
245                 return mono_class_is_open_constructed_type (t->data.type);
246         case MONO_TYPE_GENERICINST: {
247                 MonoGenericClass *gclass = t->data.generic_class;
248                 int i;
249
250                 if (mono_class_is_open_constructed_type (gclass->generic_type))
251                         return TRUE;
252                 for (i = 0; i < gclass->inst->type_argc; i++)
253                         if (mono_class_is_open_constructed_type (gclass->inst->type_argv [i]))
254                                 return TRUE;
255                 return FALSE;
256         }
257         default:
258                 return FALSE;
259         }
260 }
261
262 static MonoType*
263 inflate_generic_type (MonoType *type, MonoGenericContext *context)
264 {
265         switch (type->type) {
266         case MONO_TYPE_MVAR:
267                 if (context->gmethod && context->gmethod->inst->type_argv)
268                         return dup_type (
269                                 context->gmethod->inst->type_argv [type->data.generic_param->num],
270                                 type);
271                 else
272                         return NULL;
273         case MONO_TYPE_VAR:
274                 if (context->gclass)
275                         return dup_type (
276                                 context->gclass->inst->type_argv [type->data.generic_param->num],
277                                 type);
278                 else
279                         return NULL;
280         case MONO_TYPE_SZARRAY: {
281                 MonoClass *eclass = type->data.klass;
282                 MonoType *nt, *inflated = inflate_generic_type (&eclass->byval_arg, context);
283                 if (!inflated)
284                         return NULL;
285                 nt = dup_type (type, type);
286                 nt->data.klass = mono_class_from_mono_type (inflated);
287                 return nt;
288         }
289         case MONO_TYPE_GENERICINST: {
290                 MonoGenericClass *ogclass = type->data.generic_class;
291                 MonoGenericClass *ngclass, *cached;
292                 MonoType *nt;
293                 int i;
294
295                 ngclass = g_new0 (MonoGenericClass, 1);
296                 *ngclass = *ogclass;
297
298                 ngclass->inst = mono_metadata_inflate_generic_inst (ogclass->inst, context);
299
300                 ngclass->klass = NULL;
301
302                 ngclass->context = g_new0 (MonoGenericContext, 1);
303                 ngclass->context->container = ngclass->container;
304                 ngclass->context->gclass = ngclass;
305
306                 ngclass->dynamic_info = NULL;
307                 ngclass->initialized = FALSE;
308
309                 mono_loader_lock ();
310                 cached = mono_metadata_lookup_generic_class (ngclass);
311                 if (cached) {
312                         g_free (ngclass);
313                         mono_loader_unlock ();
314
315                         nt = dup_type (type, type);
316                         nt->data.generic_class = cached;
317                         return nt;
318                 }
319
320                 mono_class_create_generic (ngclass);
321                 mono_class_create_generic_2 (ngclass);
322
323                 mono_stats.generic_instance_count++;
324                 mono_stats.generics_metadata_size += sizeof (MonoGenericClass) +
325                         sizeof (MonoGenericContext) +
326                         ngclass->inst->type_argc * sizeof (MonoType);
327
328                 nt = dup_type (type, type);
329                 nt->data.generic_class = ngclass;
330                 mono_loader_unlock ();
331                 return nt;
332         }
333         default:
334                 return NULL;
335         }
336         return NULL;
337 }
338
339 MonoType*
340 mono_class_inflate_generic_type (MonoType *type, MonoGenericContext *context)
341 {
342         MonoType *inflated = inflate_generic_type (type, context);
343
344         if (!inflated)
345                 return dup_type (type, type);
346
347         mono_stats.inflated_type_count++;
348         return inflated;
349 }
350
351 MonoMethodSignature*
352 mono_class_inflate_generic_signature (MonoImage *image, MonoMethodSignature *sig, MonoGenericContext *context)
353 {
354         MonoMethodSignature *res;
355         gboolean is_open;
356         int i;
357
358         if (!context)
359                 return sig;
360
361         res = mono_metadata_signature_alloc (image, sig->param_count);
362         res->ret = mono_class_inflate_generic_type (sig->ret, context);
363         is_open = mono_class_is_open_constructed_type (res->ret);
364         for (i = 0; i < sig->param_count; ++i) {
365                 res->params [i] = mono_class_inflate_generic_type (sig->params [i], context);
366                 if (!is_open)
367                         is_open = mono_class_is_open_constructed_type (res->params [i]);
368         }
369         res->hasthis = sig->hasthis;
370         res->explicit_this = sig->explicit_this;
371         res->call_convention = sig->call_convention;
372         res->generic_param_count = sig->generic_param_count;
373         res->sentinelpos = sig->sentinelpos;
374         res->has_type_parameters = is_open;
375         res->is_inflated = 1;
376         return res;
377 }
378
379 static MonoMethodHeader*
380 inflate_generic_header (MonoMethodHeader *header, MonoGenericContext *context)
381 {
382         MonoMethodHeader *res;
383         int i;
384         res = g_malloc0 (sizeof (MonoMethodHeader) + sizeof (gpointer) * header->num_locals);
385         res->code = header->code;
386         res->code_size = header->code_size;
387         res->max_stack = header->max_stack;
388         res->num_clauses = header->num_clauses;
389         res->init_locals = header->init_locals;
390         res->num_locals = header->num_locals;
391         res->clauses = header->clauses;
392         for (i = 0; i < header->num_locals; ++i)
393                 res->locals [i] = mono_class_inflate_generic_type (header->locals [i], context);
394         return res;
395 }
396
397 MonoMethod*
398 mono_class_inflate_generic_method (MonoMethod *method, MonoGenericContext *context,
399                                    MonoClass *klass)
400 {
401         MonoMethodInflated *result;
402         MonoClass *rklass;
403
404         if ((method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL) ||
405             (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL))
406                 return method;
407
408         mono_stats.inflated_method_count++;
409         mono_stats.generics_metadata_size +=
410                 sizeof (MonoMethodInflated) - sizeof (MonoMethodNormal);
411
412         result = g_new0 (MonoMethodInflated, 1);
413         result->nmethod = *(MonoMethodNormal*)method;
414
415         if (mono_method_get_header (method))
416                 result->nmethod.header = inflate_generic_header (
417                         mono_method_get_header (method), context);
418
419         if (klass)
420                 rklass = result->nmethod.method.klass = klass;
421         else {
422                 MonoType *declaring = mono_class_inflate_generic_type (&method->klass->byval_arg, context);
423                 rklass = result->nmethod.method.klass = mono_class_from_mono_type (declaring);
424         }
425
426         result->nmethod.method.signature = mono_class_inflate_generic_signature (
427                 method->klass->image, method->signature, context);
428
429         if (context->gmethod) {
430                 result->context = g_new0 (MonoGenericContext, 1);
431                 result->context->container = context->gmethod->container;
432                 result->context->gmethod = context->gmethod;
433                 result->context->gclass = rklass->generic_class;
434
435                 mono_stats.generics_metadata_size += sizeof (MonoGenericContext);
436         } else if (rklass->generic_class)
437                 result->context = rklass->generic_class->context;
438
439         if (method->signature->is_inflated)
440                 result->declaring = ((MonoMethodInflated *) method)->declaring;
441         else
442                 result->declaring = method;
443
444         return (MonoMethod *) result;
445 }
446
447 /** 
448  * class_compute_field_layout:
449  * @m: pointer to the metadata.
450  * @class: The class to initialize
451  *
452  * Initializes the class->fields.
453  *
454  * Currently we only support AUTO_LAYOUT, and do not even try to do
455  * a good job at it.  This is temporary to get the code for Paolo.
456  */
457 static void
458 class_compute_field_layout (MonoClass *class)
459 {
460         MonoImage *m = class->image; 
461         const int top = class->field.count;
462         guint32 layout = class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK;
463         MonoTableInfo *t = &m->tables [MONO_TABLE_FIELD];
464         int i, blittable = TRUE, real_size = 0;
465         guint32 rva;
466         guint32 packing_size = 0;
467         gboolean explicit_size;
468         MonoClassField *field;
469
470         if (class->size_inited)
471                 return;
472
473         if (class->parent) {
474                 if (!class->parent->size_inited)
475                         class_compute_field_layout (class->parent);
476                 class->instance_size += class->parent->instance_size;
477                 class->min_align = class->parent->min_align;
478                 blittable = class->parent->blittable;
479         } else {
480                 class->instance_size = sizeof (MonoObject);
481                 class->min_align = 1;
482         }
483
484         /* Get the real size */
485         explicit_size = mono_metadata_packing_from_typedef (class->image, class->type_token, &packing_size, &real_size);
486
487         if (explicit_size) {
488                 g_assert ((packing_size & 0xfffffff0) == 0);
489                 class->packing_size = packing_size;
490                 real_size += class->instance_size;
491         }
492
493         if (!top) {
494                 if (explicit_size && real_size) {
495                         class->instance_size = MAX (real_size, class->instance_size);
496                 }
497                 class->size_inited = 1;
498                 class->blittable = blittable;
499                 return;
500         }
501
502         if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT)
503                 blittable = FALSE;
504
505         class->fields = g_new0 (MonoClassField, top);
506
507         /*
508          * Fetch all the field information.
509          */
510         for (i = 0; i < top; i++){
511                 const char *sig;
512                 guint32 cols [MONO_FIELD_SIZE];
513                 int idx = class->field.first + i;
514                 MonoGenericContainer *container = NULL;
515
516                 field = &class->fields [i];
517                 mono_metadata_decode_row (t, idx, cols, MONO_FIELD_SIZE);
518                 /* The name is needed for fieldrefs */
519                 field->name = mono_metadata_string_heap (m, cols [MONO_FIELD_NAME]);
520                 sig = mono_metadata_blob_heap (m, cols [MONO_FIELD_SIGNATURE]);
521                 mono_metadata_decode_value (sig, &sig);
522                 /* FIELD signature == 0x06 */
523                 g_assert (*sig == 0x06);
524                 if (class->generic_container)
525                         container = class->generic_container;
526                 else if (class->generic_class) {
527                         g_assert (class->generic_class->container);
528                         container = class->generic_class->container;
529                 }
530                 field->type = mono_metadata_parse_type_full (
531                         m, (MonoGenericContext *) container, MONO_PARSE_FIELD,
532                         cols [MONO_FIELD_FLAGS], sig + 1, &sig);
533                 if (mono_field_is_deleted (field))
534                         continue;
535                 if (class->generic_class) {
536                         field->type = mono_class_inflate_generic_type (
537                                 field->type, class->generic_class->context);
538                         field->type->attrs = cols [MONO_FIELD_FLAGS];
539                 }
540
541                 field->parent = class;
542
543                 /* Only do these checks if we still think this type is blittable */
544                 if (blittable && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC)) {
545                         if (field->type->byref || MONO_TYPE_IS_REFERENCE (field->type)) {
546                                 blittable = FALSE;
547                         } else {
548                                 MonoClass *field_class = mono_class_from_mono_type (field->type);
549                                 if (!field_class || !field_class->blittable)
550                                         blittable = FALSE;
551                         }
552                 }
553
554                 if (layout == TYPE_ATTRIBUTE_EXPLICIT_LAYOUT) {
555                         mono_metadata_field_info (m, idx, &field->offset, NULL, NULL);
556                         if (field->offset == (guint32)-1 && !(field->type->attrs & FIELD_ATTRIBUTE_STATIC))
557                                 g_warning ("%s not initialized correctly (missing field layout info for %s)", class->name, field->name);
558                 }
559
560                 if (cols [MONO_FIELD_FLAGS] & FIELD_ATTRIBUTE_HAS_FIELD_RVA) {
561                         mono_metadata_field_info (m, idx, NULL, &rva, NULL);
562                         if (!rva)
563                                 g_warning ("field %s in %s should have RVA data, but hasn't", field->name, class->name);
564                         field->data = mono_image_rva_map (class->image, rva);
565                 }
566
567                 if (class->enumtype && !(cols [MONO_FIELD_FLAGS] & FIELD_ATTRIBUTE_STATIC)) {
568                         class->enum_basetype = field->type;
569                         class->cast_class = class->element_class = mono_class_from_mono_type (class->enum_basetype);
570                         blittable = class->element_class->blittable;
571                 }
572
573                 /* The def_value of fields is compute lazily during vtable creation */
574         }
575
576         if (class == mono_defaults.string_class)
577                 blittable = FALSE;
578
579         class->blittable = blittable;
580
581         if (class->enumtype && !class->enum_basetype) {
582                 if (!((strcmp (class->name, "Enum") == 0) && (strcmp (class->name_space, "System") == 0)))
583                         G_BREAKPOINT ();
584         }
585         if (explicit_size && real_size) {
586                 class->instance_size = MAX (real_size, class->instance_size);
587         }
588
589         if (class->generic_container ||
590             (class->generic_class && class->generic_class->inst->is_open))
591                 return;
592
593         mono_class_layout_fields (class);
594 }
595
596 void
597 mono_class_layout_fields (MonoClass *class)
598 {
599         int i;
600         const int top = class->field.count;
601         guint32 layout = class->flags & TYPE_ATTRIBUTE_LAYOUT_MASK;
602         guint32 pass, passes, real_size;
603         gboolean gc_aware_layout = FALSE;
604         MonoClassField *field;
605
606         /*
607          * Enable GC aware auto layout: in this mode, reference
608          * fields are grouped together inside objects, increasing collector 
609          * performance.
610          * Requires that all classes whose layout is known to native code be annotated
611          * with [StructLayout (LayoutKind.Sequential)]
612          * Value types have gc_aware_layout disabled by default, as per
613          * what the default is for other runtimes.
614          */
615          /* corlib is missing [StructLayout] directives in many places */
616         if (layout == TYPE_ATTRIBUTE_AUTO_LAYOUT) {
617                 if (class->image != mono_defaults.corlib &&
618                         class->byval_arg.type != MONO_TYPE_VALUETYPE)
619                         gc_aware_layout = TRUE;
620         }
621
622         /*
623          * Compute field layout and total size (not considering static fields)
624          */
625
626         switch (layout) {
627         case TYPE_ATTRIBUTE_AUTO_LAYOUT:
628         case TYPE_ATTRIBUTE_SEQUENTIAL_LAYOUT:
629
630                 if (gc_aware_layout)
631                         passes = 2;
632                 else
633                         passes = 1;
634
635                 if (layout != TYPE_ATTRIBUTE_AUTO_LAYOUT)
636                         passes = 1;
637
638                 if (class->parent)
639                         real_size = class->parent->instance_size;
640                 else
641                         real_size = sizeof (MonoObject);
642
643                 for (pass = 0; pass < passes; ++pass) {
644                         for (i = 0; i < top; i++){
645                                 int size, align;
646                                 field = &class->fields [i];
647
648                                 if (mono_field_is_deleted (field))
649                                         continue;
650                                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
651                                         continue;
652
653                                 if (gc_aware_layout) {
654                                         /* 
655                                          * We process fields with reference type in the first pass,
656                                          * and fields with non-reference type in the second pass.
657                                          * We use IS_POINTER instead of IS_REFERENCE because in
658                                          * some internal structures, we store GC_MALLOCed memory
659                                          * in IntPtr fields...
660                                          */
661                                         if (MONO_TYPE_IS_POINTER (field->type)) {
662                                                 if (pass == 1)
663                                                         continue;
664                                         } else {
665                                                 if (pass == 0)
666                                                         continue;
667                                         }
668                                 }
669
670                                 if ((top == 1) && (class->instance_size == sizeof (MonoObject)) &&
671                                         (strcmp (field->name, "$PRIVATE$") == 0)) {
672                                         /* This field is a hack inserted by MCS to empty structures */
673                                         continue;
674                                 }
675
676                                 size = mono_type_size (field->type, &align);
677                         
678                                 /* FIXME (LAMESPEC): should we also change the min alignment according to pack? */
679                                 align = class->packing_size ? MIN (class->packing_size, align): align;
680                                 class->min_align = MAX (align, class->min_align);
681                                 field->offset = real_size;
682                                 field->offset += align - 1;
683                                 field->offset &= ~(align - 1);
684                                 real_size = field->offset + size;
685                         }
686
687                         class->instance_size = MAX (real_size, class->instance_size);
688        
689                         if (class->instance_size & (class->min_align - 1)) {
690                                 class->instance_size += class->min_align - 1;
691                                 class->instance_size &= ~(class->min_align - 1);
692                         }
693                 }
694                 break;
695         case TYPE_ATTRIBUTE_EXPLICIT_LAYOUT:
696                 real_size = 0;
697                 for (i = 0; i < top; i++) {
698                         int size, align;
699                         field = &class->fields [i];
700
701                         /*
702                          * There must be info about all the fields in a type if it
703                          * uses explicit layout.
704                          */
705
706                         if (mono_field_is_deleted (field))
707                                 continue;
708                         if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
709                                 continue;
710
711                         size = mono_type_size (field->type, &align);
712                         
713                         /*
714                          * When we get here, field->offset is already set by the
715                          * loader (for either runtime fields or fields loaded from metadata).
716                          * The offset is from the start of the object: this works for both
717                          * classes and valuetypes.
718                          */
719                         field->offset += sizeof (MonoObject);
720
721                         /*
722                          * Calc max size.
723                          */
724                         real_size = MAX (real_size, size + field->offset);
725                 }
726                 class->instance_size = MAX (real_size, class->instance_size);
727                 break;
728         }
729
730         class->size_inited = 1;
731
732         /*
733          * Compute static field layout and size
734          */
735         for (i = 0; i < top; i++){
736                 int size, align;
737                 field = &class->fields [i];
738                         
739                 if (!(field->type->attrs & FIELD_ATTRIBUTE_STATIC) || field->type->attrs & FIELD_ATTRIBUTE_LITERAL)
740                         continue;
741                 if (mono_field_is_deleted (field))
742                         continue;
743                         
744                 size = mono_type_size (field->type, &align);
745                 field->offset = class->class_size;
746                 field->offset += align - 1;
747                 field->offset &= ~(align - 1);
748                 class->class_size = field->offset + size;
749         }
750 }
751
752 static void
753 init_properties (MonoClass *class)
754 {
755         guint startm, endm, i, j;
756         guint32 cols [MONO_PROPERTY_SIZE];
757         MonoTableInfo *pt = &class->image->tables [MONO_TABLE_PROPERTY];
758         MonoTableInfo *msemt = &class->image->tables [MONO_TABLE_METHODSEMANTICS];
759
760         class->property.first = mono_metadata_properties_from_typedef (class->image, mono_metadata_token_index (class->type_token) - 1, &class->property.last);
761         class->property.count = class->property.last - class->property.first;
762
763         class->properties = g_new0 (MonoProperty, class->property.count);
764         for (i = class->property.first; i < class->property.last; ++i) {
765                 mono_metadata_decode_row (pt, i, cols, MONO_PROPERTY_SIZE);
766                 class->properties [i - class->property.first].parent = class;
767                 class->properties [i - class->property.first].attrs = cols [MONO_PROPERTY_FLAGS];
768                 class->properties [i - class->property.first].name = mono_metadata_string_heap (class->image, cols [MONO_PROPERTY_NAME]);
769
770                 startm = mono_metadata_methods_from_property (class->image, i, &endm);
771                 for (j = startm; j < endm; ++j) {
772                         mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
773                         switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
774                         case METHOD_SEMANTIC_SETTER:
775                                 class->properties [i - class->property.first].set = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
776                                 break;
777                         case METHOD_SEMANTIC_GETTER:
778                                 class->properties [i - class->property.first].get = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
779                                 break;
780                         default:
781                                 break;
782                         }
783                 }
784         }
785 }
786
787 static void
788 init_events (MonoClass *class)
789 {
790         guint startm, endm, i, j;
791         guint32 cols [MONO_EVENT_SIZE];
792         MonoTableInfo *pt = &class->image->tables [MONO_TABLE_EVENT];
793         MonoTableInfo *msemt = &class->image->tables [MONO_TABLE_METHODSEMANTICS];
794
795         class->event.first = mono_metadata_events_from_typedef (class->image, mono_metadata_token_index (class->type_token) - 1, &class->event.last);
796         class->event.count = class->event.last - class->event.first;
797
798         class->events = g_new0 (MonoEvent, class->event.count);
799         for (i = class->event.first; i < class->event.last; ++i) {
800                 MonoEvent *event = &class->events [i - class->event.first];
801                         
802                 mono_metadata_decode_row (pt, i, cols, MONO_EVENT_SIZE);
803                 event->parent = class;
804                 event->attrs = cols [MONO_EVENT_FLAGS];
805                 event->name = mono_metadata_string_heap (class->image, cols [MONO_EVENT_NAME]);
806
807                 startm = mono_metadata_methods_from_event (class->image, i, &endm);
808                 for (j = startm; j < endm; ++j) {
809                         mono_metadata_decode_row (msemt, j, cols, MONO_METHOD_SEMA_SIZE);
810                         switch (cols [MONO_METHOD_SEMA_SEMANTICS]) {
811                         case METHOD_SEMANTIC_ADD_ON:
812                                 event->add = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
813                                 break;
814                         case METHOD_SEMANTIC_REMOVE_ON:
815                                 event->remove = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
816                                 break;
817                         case METHOD_SEMANTIC_FIRE:
818                                 event->raise = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
819                                 break;
820                         case METHOD_SEMANTIC_OTHER: {
821                                 int n = 0;
822
823                                 if (event->other == NULL) {
824                                         event->other = g_new0 (MonoMethod*, 1);
825                                 } else {
826                                         while (event->other [n])
827                                                 n++;
828                                         event->other = g_realloc (event->other, (n + 1) * sizeof (MonoMethod*));
829                                 }
830                                 event->other [n] = class->methods [cols [MONO_METHOD_SEMA_METHOD] - 1 - class->method.first];
831                                 break;
832                         }
833                         default:
834                                 break;
835                         }
836                 }
837         }
838 }
839
840 static guint
841 mono_get_unique_iid (MonoClass *class)
842 {
843         static GHashTable *iid_hash = NULL;
844         static guint iid = 0;
845
846         char *str;
847         gpointer value;
848         
849         g_assert (MONO_CLASS_IS_INTERFACE (class));
850
851         mono_loader_lock ();
852
853         if (!iid_hash)
854                 iid_hash = g_hash_table_new (g_str_hash, g_str_equal);
855
856         str = g_strdup_printf ("%s|%s.%s\n", class->image->name, class->name_space, class->name);
857
858         if (g_hash_table_lookup_extended (iid_hash, str, NULL, &value)) {
859                 mono_loader_unlock ();
860                 g_free (str);
861                 return (guint)value;
862         } else {
863                 g_hash_table_insert (iid_hash, str, (gpointer)iid);
864                 ++iid;
865         }
866
867         mono_loader_unlock ();
868
869         return iid - 1;
870 }
871
872 static void
873 collect_implemented_interfaces_aux (MonoClass *klass, GPtrArray **res)
874 {
875         int i;
876         MonoClass *ic;
877         
878         for (i = 0; i < klass->interface_count; i++) {
879                 ic = klass->interfaces [i];
880
881                 if (*res == NULL)
882                         *res = g_ptr_array_new ();
883                 g_ptr_array_add (*res, ic);
884
885                 collect_implemented_interfaces_aux (ic, res);
886         }
887 }
888
889 GPtrArray*
890 mono_class_get_implemented_interfaces (MonoClass *klass)
891 {
892         GPtrArray *res = NULL;
893
894         collect_implemented_interfaces_aux (klass, &res);
895         return res;
896 }
897
898 static int
899 setup_interface_offsets (MonoClass *class, int cur_slot)
900 {
901         MonoClass *k, *ic;
902         int i, max_iid;
903         GPtrArray *ifaces;
904
905         /* compute maximum number of slots and maximum interface id */
906         max_iid = 0;
907         for (k = class; k ; k = k->parent) {
908                 for (i = 0; i < k->interface_count; i++) {
909                         ic = k->interfaces [i];
910
911                         if (!ic->inited)
912                                 mono_class_init (ic);
913
914                         if (max_iid < ic->interface_id)
915                                 max_iid = ic->interface_id;
916                 }
917         }
918
919         if (MONO_CLASS_IS_INTERFACE (class)) {
920                 if (max_iid < class->interface_id)
921                         max_iid = class->interface_id;
922         }
923         class->max_interface_id = max_iid;
924         /* compute vtable offset for interfaces */
925         class->interface_offsets = g_malloc (sizeof (gpointer) * (max_iid + 1));
926
927         for (i = 0; i <= max_iid; i++)
928                 class->interface_offsets [i] = -1;
929
930         ifaces = mono_class_get_implemented_interfaces (class);
931         if (ifaces) {
932                 for (i = 0; i < ifaces->len; ++i) {
933                         ic = g_ptr_array_index (ifaces, i);
934                         class->interface_offsets [ic->interface_id] = cur_slot;
935                         cur_slot += ic->method.count;
936                 }
937                 g_ptr_array_free (ifaces, TRUE);
938         }
939
940         for (k = class->parent; k ; k = k->parent) {
941                 ifaces = mono_class_get_implemented_interfaces (k);
942                 if (ifaces) {
943                         for (i = 0; i < ifaces->len; ++i) {
944                                 ic = g_ptr_array_index (ifaces, i);
945
946                                 if (class->interface_offsets [ic->interface_id] == -1) {
947                                         int io = k->interface_offsets [ic->interface_id];
948
949                                         g_assert (io >= 0);
950
951                                         class->interface_offsets [ic->interface_id] = io;
952                                 }
953                         }
954                         g_ptr_array_free (ifaces, TRUE);
955                 }
956         }
957
958         if (MONO_CLASS_IS_INTERFACE (class))
959                 class->interface_offsets [class->interface_id] = cur_slot;
960
961         return cur_slot;
962 }
963
964 void
965 mono_class_setup_vtable (MonoClass *class, MonoMethod **overrides, int onum)
966 {
967         MonoClass *k, *ic;
968         MonoMethod **vtable;
969         int i, max_vtsize = 0, max_iid, cur_slot = 0;
970         GPtrArray *ifaces;
971         MonoGHashTable *override_map = NULL;
972
973         /* setup_vtable() must be called only once on the type */
974         if (class->interface_offsets) {
975                 g_warning ("vtable already computed in %s.%s", class->name_space, class->name);
976                 return;
977         }
978
979         ifaces = mono_class_get_implemented_interfaces (class);
980         if (ifaces) {
981                 for (i = 0; i < ifaces->len; i++) {
982                         MonoClass *ic = g_ptr_array_index (ifaces, i);
983                         max_vtsize += ic->method.count;
984                 }
985                 g_ptr_array_free (ifaces, TRUE);
986         }
987         
988         if (class->parent) {
989                 max_vtsize += class->parent->vtable_size;
990                 cur_slot = class->parent->vtable_size;
991         }
992
993         max_vtsize += class->method.count;
994
995         vtable = alloca (sizeof (gpointer) * max_vtsize);
996         memset (vtable, 0, sizeof (gpointer) * max_vtsize);
997
998         /* printf ("METAINIT %s.%s\n", class->name_space, class->name); */
999
1000         cur_slot = setup_interface_offsets (class, cur_slot);
1001         max_iid = class->max_interface_id;
1002
1003         if (class->parent && class->parent->vtable_size)
1004                 memcpy (vtable, class->parent->vtable,  sizeof (gpointer) * class->parent->vtable_size);
1005
1006         /* override interface methods */
1007         for (i = 0; i < onum; i++) {
1008                 MonoMethod *decl = overrides [i*2];
1009                 if (MONO_CLASS_IS_INTERFACE (decl->klass)) {
1010                         int dslot;
1011                         g_assert (decl->slot != -1);
1012                         dslot = decl->slot + class->interface_offsets [decl->klass->interface_id];
1013                         vtable [dslot] = overrides [i*2 + 1];
1014                         vtable [dslot]->slot = dslot;
1015                         if (!override_map)
1016                                 override_map = mono_g_hash_table_new (NULL, NULL);
1017
1018                         mono_g_hash_table_insert (override_map, overrides [i * 2], overrides [i * 2 + 1]);
1019                 }
1020         }
1021
1022         for (k = class; k ; k = k->parent) {
1023                 int nifaces = 0;
1024                 ifaces = mono_class_get_implemented_interfaces (k);
1025                 if (ifaces)
1026                         nifaces = ifaces->len;
1027                 for (i = 0; i < nifaces; i++) {
1028                         int j, l, io;
1029
1030                         ic = g_ptr_array_index (ifaces, i);
1031                         io = k->interface_offsets [ic->interface_id];
1032
1033                         g_assert (io >= 0);
1034                         g_assert (io <= max_vtsize);
1035
1036                         if (k == class) {
1037                                 for (l = 0; l < ic->method.count; l++) {
1038                                         MonoMethod *im = ic->methods [l];                                               
1039
1040                                         if (vtable [io + l] && !(vtable [io + l]->flags & METHOD_ATTRIBUTE_ABSTRACT))
1041                                                 continue;
1042
1043                                         for (j = 0; j < class->method.count; ++j) {
1044                                                 MonoMethod *cm = class->methods [j];
1045                                                 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL) ||
1046                                                     !((cm->flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK) == METHOD_ATTRIBUTE_PUBLIC) ||
1047                                                     !(cm->flags & METHOD_ATTRIBUTE_NEW_SLOT))
1048                                                         continue;
1049                                                 if (!strcmp(cm->name, im->name) && 
1050                                                     mono_metadata_signature_equal (cm->signature, im->signature)) {
1051                                                         g_assert (io + l <= max_vtsize);
1052                                                         vtable [io + l] = cm;
1053                                                 }
1054                                         }
1055                                 }
1056                         } else {
1057                                 /* already implemented */
1058                                 if (io >= k->vtable_size)
1059                                         continue;
1060                         }
1061                                 
1062                         for (l = 0; l < ic->method.count; l++) {
1063                                 MonoMethod *im = ic->methods [l];                                               
1064                                 MonoClass *k1;
1065
1066                                 g_assert (io + l <= max_vtsize);
1067
1068                                 if (vtable [io + l] && !(vtable [io + l]->flags & METHOD_ATTRIBUTE_ABSTRACT))
1069                                         continue;
1070                                         
1071                                 for (k1 = class; k1; k1 = k1->parent) {
1072                                         for (j = 0; j < k1->method.count; ++j) {
1073                                                 MonoMethod *cm = k1->methods [j];
1074
1075                                                 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL) ||
1076                                                     !(cm->flags & METHOD_ATTRIBUTE_PUBLIC))
1077                                                         continue;
1078                                                 
1079                                                 if (!strcmp(cm->name, im->name) && 
1080                                                     mono_metadata_signature_equal (cm->signature, im->signature)) {
1081                                                         g_assert (io + l <= max_vtsize);
1082                                                         vtable [io + l] = cm;
1083                                                         break;
1084                                                 }
1085                                                 
1086                                         }
1087                                         g_assert (io + l <= max_vtsize);
1088                                         if (vtable [io + l] && !(vtable [io + l]->flags & METHOD_ATTRIBUTE_ABSTRACT))
1089                                                 break;
1090                                 }
1091                         }
1092
1093                         for (l = 0; l < ic->method.count; l++) {
1094                                 MonoMethod *im = ic->methods [l];                                               
1095                                 char *qname, *fqname, *cname, *the_cname;
1096                                 MonoClass *k1;
1097                                 
1098                                 if (vtable [io + l])
1099                                         continue;
1100
1101                                 if (ic->generic_class) {
1102                                         MonoClass *the_ic = mono_class_from_mono_type (ic->generic_class->generic_type);
1103                                         the_cname = _mono_type_get_name (&the_ic->byval_arg, TRUE, FALSE, TRUE);
1104                                         cname = the_cname;
1105                                 } else {
1106                                         the_cname = NULL;
1107                                         cname = (char*)ic->name;
1108                                 }
1109                                         
1110                                 qname = g_strconcat (cname, ".", im->name, NULL);
1111                                 if (ic->name_space && ic->name_space [0])
1112                                         fqname = g_strconcat (ic->name_space, ".", cname, ".", im->name, NULL);
1113                                 else
1114                                         fqname = NULL;
1115
1116                                 for (k1 = class; k1; k1 = k1->parent) {
1117                                         for (j = 0; j < k1->method.count; ++j) {
1118                                                 MonoMethod *cm = k1->methods [j];
1119
1120                                                 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL))
1121                                                         continue;
1122                                         
1123                                                 if (((fqname && !strcmp (cm->name, fqname)) || !strcmp (cm->name, qname)) &&
1124                                                     mono_metadata_signature_equal (cm->signature, im->signature)) {
1125                                                         g_assert (io + l <= max_vtsize);
1126                                                         vtable [io + l] = cm;
1127                                                         break;
1128                                                 }
1129                                         }
1130                                 }
1131                                 g_free (the_cname);
1132                                 g_free (qname);
1133                                 g_free (fqname);
1134                         }
1135
1136                         
1137                         if (!(class->flags & TYPE_ATTRIBUTE_ABSTRACT)) {
1138                                 for (l = 0; l < ic->method.count; l++) {
1139                                         char *msig;
1140                                         MonoMethod *im = ic->methods [l];
1141                                         if (im->flags & METHOD_ATTRIBUTE_STATIC)
1142                                                         continue;
1143                                         g_assert (io + l <= max_vtsize);
1144
1145                                         /* 
1146                                          * If one of our parents already implements this interface
1147                                          * we can inherit the implementation.
1148                                          */
1149                                         if (!(vtable [io + l])) {
1150                                                 MonoClass *parent = class->parent;
1151
1152                                                 if ((ic->interface_id <= parent->max_interface_id) && 
1153                                                         (parent->interface_offsets [ic->interface_id]) &&
1154                                                         parent->vtable)
1155                                                         vtable [io + l] = parent->vtable [parent->interface_offsets [ic->interface_id] + l];
1156                                         }
1157
1158                                         if (!(vtable [io + l])) {
1159                                                 for (j = 0; j < onum; ++j) {
1160                                                         g_print (" at slot %d: %s (%d) overrides %s (%d)\n", io+l, overrides [j*2+1]->name, 
1161                                                                  overrides [j*2+1]->slot, overrides [j*2]->name, overrides [j*2]->slot);
1162                                                 }
1163                                                 msig = mono_signature_get_desc (im->signature, FALSE);
1164                                                 printf ("no implementation for interface method %s.%s::%s(%s) in class %s.%s\n",
1165                                                         ic->name_space, ic->name, im->name, msig, class->name_space, class->name);
1166                                                 g_free (msig);
1167                                                 for (j = 0; j < class->method.count; ++j) {
1168                                                         MonoMethod *cm = class->methods [j];
1169                                                         msig = mono_signature_get_desc (cm->signature, FALSE);
1170                                                         
1171                                                         printf ("METHOD %s(%s)\n", cm->name, msig);
1172                                                         g_free (msig);
1173                                                 }
1174                                                 g_assert_not_reached ();
1175                                         }
1176                                 }
1177                         }
1178                 
1179                         for (l = 0; l < ic->method.count; l++) {
1180                                 MonoMethod *im = vtable [io + l];
1181
1182                                 if (im) {
1183                                         g_assert (io + l <= max_vtsize);
1184                                         if (im->slot < 0) {
1185                                                 /* FIXME: why do we need this ? */
1186                                                 im->slot = io + l;
1187                                                 /* g_assert_not_reached (); */
1188                                         }
1189                                 }
1190                         }
1191                 }
1192                 if (ifaces)
1193                         g_ptr_array_free (ifaces, TRUE);
1194         } 
1195
1196         for (i = 0; i < class->method.count; ++i) {
1197                 MonoMethod *cm;
1198                
1199                 cm = class->methods [i];
1200                 
1201                 /*
1202                  * Non-virtual method have no place in the vtable.
1203                  * This also catches static methods (since they are not virtual).
1204                  */
1205                 if (!(cm->flags & METHOD_ATTRIBUTE_VIRTUAL))
1206                         continue;
1207                 
1208                 /*
1209                  * If the method is REUSE_SLOT, we must check in the
1210                  * base class for a method to override.
1211                  */
1212                 if (!(cm->flags & METHOD_ATTRIBUTE_NEW_SLOT)) {
1213                         int slot = -1;
1214                         for (k = class->parent; k ; k = k->parent) {
1215                                 int j;
1216                                 for (j = 0; j < k->method.count; ++j) {
1217                                         MonoMethod *m1 = k->methods [j];
1218                                         if (!(m1->flags & METHOD_ATTRIBUTE_VIRTUAL))
1219                                                 continue;
1220                                         if (!strcmp(cm->name, m1->name) && 
1221                                             mono_metadata_signature_equal (cm->signature, m1->signature)) {
1222                                                 slot = k->methods [j]->slot;
1223                                                 g_assert (cm->slot < max_vtsize);
1224                                                 if (!override_map)
1225                                                         override_map = mono_g_hash_table_new (NULL, NULL);
1226                                                 mono_g_hash_table_insert (override_map, m1, cm);
1227                                                 break;
1228                                         }
1229                                 }
1230                                 if (slot >= 0) 
1231                                         break;
1232                         }
1233                         if (slot >= 0)
1234                                 cm->slot = slot;
1235                 }
1236
1237                 if (cm->slot < 0)
1238                         cm->slot = cur_slot++;
1239
1240                 if (!(cm->flags & METHOD_ATTRIBUTE_ABSTRACT) && !cm->signature->generic_param_count)
1241                         vtable [cm->slot] = cm;
1242         }
1243
1244         /* override non interface methods */
1245         for (i = 0; i < onum; i++) {
1246                 MonoMethod *decl = overrides [i*2];
1247                 if (!MONO_CLASS_IS_INTERFACE (decl->klass)) {
1248                         g_assert (decl->slot != -1);
1249                         vtable [decl->slot] = overrides [i*2 + 1];
1250                         overrides [i * 2 + 1]->slot = decl->slot;
1251                         if (!override_map)
1252                                 override_map = mono_g_hash_table_new (NULL, NULL);
1253                         mono_g_hash_table_insert (override_map, decl, overrides [i * 2 + 1]);
1254                 }
1255         }
1256
1257         /*
1258          * If a method occupies more than one place in the vtable, and it is
1259          * overriden, then change the other occurances too.
1260          */
1261         if (override_map) {
1262                 for (i = 0; i < max_vtsize; ++i)
1263                         if (vtable [i]) {
1264                                 MonoMethod *cm = mono_g_hash_table_lookup (override_map, vtable [i]);
1265                                 if (cm)
1266                                         vtable [i] = cm;
1267                         }
1268
1269                 mono_g_hash_table_destroy (override_map);
1270         }
1271
1272         if (class->generic_class) {
1273                 MonoClass *gklass = mono_class_from_mono_type (class->generic_class->generic_type);
1274
1275                 mono_class_init (gklass);
1276                 class->vtable_size = gklass->vtable_size;
1277         } else       
1278                 class->vtable_size = cur_slot;
1279
1280         class->vtable = g_malloc0 (sizeof (gpointer) * class->vtable_size);
1281         memcpy (class->vtable, vtable,  sizeof (gpointer) * class->vtable_size);
1282
1283         if (mono_print_vtable) {
1284                 int icount = 0;
1285
1286                 for (i = 0; i <= max_iid; i++)
1287                         if (class->interface_offsets [i] != -1)
1288                                 icount++;
1289
1290                 printf ("VTable %s.%s (size = %d, interfaces = %d)\n", class->name_space, 
1291                         class->name, class->vtable_size, icount); 
1292
1293                 for (i = 0; i < class->vtable_size; ++i) {
1294                         MonoMethod *cm;
1295                
1296                         cm = vtable [i];
1297                         if (cm) {
1298                                 printf ("  slot %03d(%03d) %s.%s:%s\n", i, cm->slot,
1299                                         cm->klass->name_space, cm->klass->name,
1300                                         cm->name);
1301                         }
1302                 }
1303
1304
1305                 if (icount) {
1306                         printf ("Interfaces %s.%s (max_iid = %d)\n", class->name_space, 
1307                                 class->name, max_iid);
1308         
1309                         for (i = 0; i < class->interface_count; i++) {
1310                                 ic = class->interfaces [i];
1311                                 printf ("  slot %03d(%03d) %s.%s\n",  
1312                                         class->interface_offsets [ic->interface_id],
1313                                         ic->method.count, ic->name_space, ic->name);
1314                         }
1315
1316                         for (k = class->parent; k ; k = k->parent) {
1317                                 for (i = 0; i < k->interface_count; i++) {
1318                                         ic = k->interfaces [i]; 
1319                                         printf ("  slot %03d(%03d) %s.%s\n", 
1320                                                 class->interface_offsets [ic->interface_id],
1321                                                 ic->method.count, ic->name_space, ic->name);
1322                                 }
1323                         }
1324                 }
1325         }
1326 }
1327
1328 /**
1329  * mono_class_init:
1330  * @class: the class to initialize
1331  *
1332  * compute the instance_size, class_size and other infos that cannot be 
1333  * computed at mono_class_get() time. Also compute a generic vtable and 
1334  * the method slot numbers. We use this infos later to create a domain
1335  * specific vtable.  
1336  */
1337 void
1338 mono_class_init (MonoClass *class)
1339 {
1340         int i;
1341         static MonoMethod *default_ghc = NULL;
1342         static MonoMethod *default_finalize = NULL;
1343         static int finalize_slot = -1;
1344         static int ghc_slot = -1;
1345         MonoMethod **overrides;
1346         int onum = 0;
1347
1348         g_assert (class);
1349
1350         if (class->inited)
1351                 return;
1352
1353         /*g_print ("Init class %s\n", class->name);*/
1354
1355         /* We do everything inside the lock to prevent races */
1356         mono_loader_lock ();
1357
1358         if (class->inited) {
1359                 mono_loader_unlock ();
1360                 /* Somebody might have gotten in before us */
1361                 return;
1362         }
1363
1364         if (class->init_pending) {
1365                 /* this indicates a cyclic dependency */
1366                 g_error ("pending init %s.%s\n", class->name_space, class->name);
1367         }
1368
1369         class->init_pending = 1;
1370
1371         if (mono_debugger_start_class_init_func)
1372                 mono_debugger_start_class_init_func (class);
1373
1374         mono_stats.initialized_class_count++;
1375
1376         if (class->generic_class && !class->generic_class->is_dynamic) {
1377                 MonoGenericClass *gclass = class->generic_class;
1378                 MonoClass *gklass;
1379
1380                 gklass = mono_class_from_mono_type (gclass->generic_type);
1381                 mono_class_init (gklass);
1382
1383                 if (MONO_CLASS_IS_INTERFACE (class))
1384                         class->interface_id = mono_get_unique_iid (class);
1385
1386                 g_assert (class->method.count == gklass->method.count);
1387                 class->methods = g_new0 (MonoMethod *, class->method.count);
1388
1389                 for (i = 0; i < class->method.count; i++)
1390                         class->methods [i] = mono_class_inflate_generic_method (
1391                                 gklass->methods [i], gclass->context, gclass->klass);
1392
1393                 g_assert (class->field.count == gklass->field.count);
1394                 class->fields = g_new0 (MonoClassField, class->field.count);
1395
1396                 for (i = 0; i < class->field.count; i++) {
1397                         MonoInflatedField *ifield = g_new0 (MonoInflatedField, 1);
1398                         ifield->generic_type = gklass->fields [i].type;
1399
1400                         class->fields [i] = gklass->fields [i];
1401                         class->fields [i].generic_info = ifield;
1402                         class->fields [i].parent = class;
1403                         class->fields [i].type = mono_class_inflate_generic_type (
1404                                 class->fields [i].type, gclass->context);
1405                 }
1406
1407                 class->property = gklass->property;
1408                 class->properties = g_new0 (MonoProperty, class->property.count);
1409
1410                 for (i = 0; i < class->property.count; i++) {
1411                         MonoProperty *prop = &class->properties [i];
1412
1413                         *prop = gklass->properties [i];
1414
1415                         if (prop->get)
1416                                 prop->get = mono_class_inflate_generic_method (
1417                                         prop->get, gclass->context, gclass->klass);
1418                         if (prop->set)
1419                                 prop->set = mono_class_inflate_generic_method (
1420                                         prop->set, gclass->context, gclass->klass);
1421
1422                         prop->parent = class;
1423                 }
1424
1425                 g_assert (class->interface_count == gklass->interface_count);
1426         }
1427
1428         if (class->parent && !class->parent->inited)
1429                 mono_class_init (class->parent);
1430
1431         /*
1432          * Computes the size used by the fields, and their locations
1433          */
1434         if (!class->size_inited)
1435                 class_compute_field_layout (class);
1436
1437         /* initialize method pointers */
1438         if (class->rank) {
1439                 MonoMethod *ctor;
1440                 MonoMethodSignature *sig;
1441                 class->method.count = class->rank > 1? 2: 1;
1442                 sig = mono_metadata_signature_alloc (class->image, class->rank);
1443                 sig->ret = &mono_defaults.void_class->byval_arg;
1444                 sig->pinvoke = TRUE;
1445                 for (i = 0; i < class->rank; ++i)
1446                         sig->params [i] = &mono_defaults.int32_class->byval_arg;
1447
1448                 ctor = (MonoMethod *) g_new0 (MonoMethodPInvoke, 1);
1449                 ctor->klass = class;
1450                 ctor->flags = METHOD_ATTRIBUTE_PUBLIC | METHOD_ATTRIBUTE_RT_SPECIAL_NAME | METHOD_ATTRIBUTE_SPECIAL_NAME;
1451                 ctor->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
1452                 ctor->signature = sig;
1453                 ctor->name = ".ctor";
1454                 ctor->slot = -1;
1455                 class->methods = g_new (MonoMethod*, class->method.count);
1456                 class->methods [0] = ctor;
1457                 if (class->rank > 1) {
1458                         sig = mono_metadata_signature_alloc (class->image, class->rank * 2);
1459                         sig->ret = &mono_defaults.void_class->byval_arg;
1460                         sig->pinvoke = TRUE;
1461                         for (i = 0; i < class->rank * 2; ++i)
1462                                 sig->params [i] = &mono_defaults.int32_class->byval_arg;
1463
1464                         ctor = (MonoMethod *) g_new0 (MonoMethodPInvoke, 1);
1465                         ctor->klass = class;
1466                         ctor->flags = METHOD_ATTRIBUTE_PUBLIC | METHOD_ATTRIBUTE_RT_SPECIAL_NAME | METHOD_ATTRIBUTE_SPECIAL_NAME;
1467                         ctor->iflags = METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL;
1468                         ctor->signature = sig;
1469                         ctor->name = ".ctor";
1470                         ctor->slot = -1;
1471                         class->methods [1] = ctor;
1472                 }
1473         } else {
1474                 if (!class->generic_class && !class->methods) {
1475                         class->methods = g_new (MonoMethod*, class->method.count);
1476                         for (i = 0; i < class->method.count; ++i) {
1477                                 class->methods [i] = mono_get_method (class->image,
1478                                                                       MONO_TOKEN_METHOD_DEF | (i + class->method.first + 1), class);
1479                         }
1480                 }
1481         }
1482
1483         if (!class->generic_class) {
1484                 init_properties (class);
1485                 init_events (class);
1486
1487                 i = mono_metadata_nesting_typedef (class->image, class->type_token, 1);
1488                 while (i) {
1489                         MonoClass* nclass;
1490                         guint32 cols [MONO_NESTED_CLASS_SIZE];
1491                         mono_metadata_decode_row (&class->image->tables [MONO_TABLE_NESTEDCLASS], i - 1, cols, MONO_NESTED_CLASS_SIZE);
1492                         nclass = mono_class_create_from_typedef (class->image, MONO_TOKEN_TYPE_DEF | cols [MONO_NESTED_CLASS_NESTED]);
1493                         class->nested_classes = g_list_prepend (class->nested_classes, nclass);
1494
1495                         i = mono_metadata_nesting_typedef (class->image, class->type_token, i + 1);
1496                 }
1497         }
1498
1499         mono_class_setup_supertypes (class);
1500
1501         if (MONO_CLASS_IS_INTERFACE (class)) {
1502                 for (i = 0; i < class->method.count; ++i)
1503                         class->methods [i]->slot = i;
1504                 class->init_pending = 0;
1505                 class->inited = 1;
1506                 /* 
1507                  * class->interface_offsets is needed for the castclass/isinst code, so
1508                  * we have to setup them for interfaces, too.
1509                  */
1510                 setup_interface_offsets (class, 0);
1511                 mono_loader_unlock ();
1512
1513                 if (mono_debugger_class_init_func)
1514                         mono_debugger_class_init_func (class);
1515
1516                 return;
1517         }
1518
1519         overrides = mono_class_get_overrides (class->image, class->type_token, &onum);  
1520         mono_class_setup_vtable (class, overrides, onum);
1521         g_free (overrides);
1522
1523         class->inited = 1;
1524         class->init_pending = 0;
1525
1526         if (!default_ghc) {
1527                 if (class == mono_defaults.object_class) { 
1528                        
1529                         for (i = 0; i < class->vtable_size; ++i) {
1530                                 MonoMethod *cm = class->vtable [i];
1531                
1532                                 if (!strcmp (cm->name, "GetHashCode")) {
1533                                         ghc_slot = i;
1534                                         break;
1535                                 }
1536                         }
1537
1538                         g_assert (ghc_slot > 0);
1539
1540                         default_ghc = class->vtable [ghc_slot];
1541                 }
1542         }
1543         
1544         class->ghcimpl = 1;
1545         if (class->parent) { 
1546
1547                 if (class->vtable [ghc_slot] == default_ghc) {
1548                         class->ghcimpl = 0;
1549                 }
1550         }
1551
1552         if (!default_finalize) {
1553                 if (class == mono_defaults.object_class) { 
1554                        
1555                         for (i = 0; i < class->vtable_size; ++i) {
1556                                 MonoMethod *cm = class->vtable [i];
1557                
1558                                 if (!strcmp (cm->name, "Finalize")) {
1559                                         finalize_slot = i;
1560                                         break;
1561                                 }
1562                         }
1563
1564                         g_assert (finalize_slot > 0);
1565
1566                         default_finalize = class->vtable [finalize_slot];
1567                 }
1568         }
1569
1570         /* Object::Finalize should have empty implemenatation */
1571         class->has_finalize = 0;
1572         if (class->parent) { 
1573                 if (class->vtable [finalize_slot] != default_finalize)
1574                         class->has_finalize = 1;
1575         }
1576
1577         mono_loader_unlock ();
1578
1579         if (mono_debugger_class_init_func)
1580                 mono_debugger_class_init_func (class);
1581 }
1582
1583 void
1584 mono_class_setup_mono_type (MonoClass *class)
1585 {
1586         const char *name = class->name;
1587         const char *nspace = class->name_space;
1588
1589         if (MONO_CLASS_IS_INTERFACE (class))
1590                 class->interface_id = mono_get_unique_iid (class);
1591
1592         class->this_arg.byref = 1;
1593         class->this_arg.data.klass = class;
1594         class->this_arg.type = MONO_TYPE_CLASS;
1595         class->byval_arg.data.klass = class;
1596         class->byval_arg.type = MONO_TYPE_CLASS;
1597
1598         if (!strcmp (nspace, "System")) {
1599                 if (!strcmp (name, "ValueType")) {
1600                         /*
1601                          * do not set the valuetype bit for System.ValueType.
1602                          * class->valuetype = 1;
1603                          */
1604                         class->blittable = TRUE;
1605                 } else if (!strcmp (name, "Enum")) {
1606                         /*
1607                          * do not set the valuetype bit for System.Enum.
1608                          * class->valuetype = 1;
1609                          */
1610                         class->valuetype = 0;
1611                         class->enumtype = 0;
1612                 } else if (!strcmp (name, "Object")) {
1613                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_OBJECT;
1614                 } else if (!strcmp (name, "String")) {
1615                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_STRING;
1616                 } else if (!strcmp (name, "TypedReference")) {
1617                         class->this_arg.type = class->byval_arg.type = MONO_TYPE_TYPEDBYREF;
1618                 }
1619         }
1620         
1621         if (class->valuetype) {
1622                 int t = MONO_TYPE_VALUETYPE;
1623                 if (!strcmp (nspace, "System")) {
1624                         switch (*name) {
1625                         case 'B':
1626                                 if (!strcmp (name, "Boolean")) {
1627                                         t = MONO_TYPE_BOOLEAN;
1628                                 } else if (!strcmp(name, "Byte")) {
1629                                         t = MONO_TYPE_U1;
1630                                         class->blittable = TRUE;                                                
1631                                 }
1632                                 break;
1633                         case 'C':
1634                                 if (!strcmp (name, "Char")) {
1635                                         t = MONO_TYPE_CHAR;
1636                                 }
1637                                 break;
1638                         case 'D':
1639                                 if (!strcmp (name, "Double")) {
1640                                         t = MONO_TYPE_R8;
1641                                         class->blittable = TRUE;                                                
1642                                 }
1643                                 break;
1644                         case 'I':
1645                                 if (!strcmp (name, "Int32")) {
1646                                         t = MONO_TYPE_I4;
1647                                         class->blittable = TRUE;
1648                                 } else if (!strcmp(name, "Int16")) {
1649                                         t = MONO_TYPE_I2;
1650                                         class->blittable = TRUE;
1651                                 } else if (!strcmp(name, "Int64")) {
1652                                         t = MONO_TYPE_I8;
1653                                         class->blittable = TRUE;
1654                                 } else if (!strcmp(name, "IntPtr")) {
1655                                         t = MONO_TYPE_I;
1656                                         class->blittable = TRUE;
1657                                 }
1658                                 break;
1659                         case 'S':
1660                                 if (!strcmp (name, "Single")) {
1661                                         t = MONO_TYPE_R4;
1662                                         class->blittable = TRUE;                                                
1663                                 } else if (!strcmp(name, "SByte")) {
1664                                         t = MONO_TYPE_I1;
1665                                         class->blittable = TRUE;
1666                                 }
1667                                 break;
1668                         case 'U':
1669                                 if (!strcmp (name, "UInt32")) {
1670                                         t = MONO_TYPE_U4;
1671                                         class->blittable = TRUE;
1672                                 } else if (!strcmp(name, "UInt16")) {
1673                                         t = MONO_TYPE_U2;
1674                                         class->blittable = TRUE;
1675                                 } else if (!strcmp(name, "UInt64")) {
1676                                         t = MONO_TYPE_U8;
1677                                         class->blittable = TRUE;
1678                                 } else if (!strcmp(name, "UIntPtr")) {
1679                                         t = MONO_TYPE_U;
1680                                         class->blittable = TRUE;
1681                                 }
1682                                 break;
1683                         case 'T':
1684                                 if (!strcmp (name, "TypedReference")) {
1685                                         t = MONO_TYPE_TYPEDBYREF;
1686                                         class->blittable = TRUE;
1687                                 }
1688                                 break;
1689                         case 'V':
1690                                 if (!strcmp (name, "Void")) {
1691                                         t = MONO_TYPE_VOID;
1692                                 }
1693                                 break;
1694                         default:
1695                                 break;
1696                         }
1697                 }
1698                 class->this_arg.type = class->byval_arg.type = t;
1699         }
1700 }
1701
1702 void
1703 mono_class_setup_parent (MonoClass *class, MonoClass *parent)
1704 {
1705         gboolean system_namespace;
1706
1707         system_namespace = !strcmp (class->name_space, "System");
1708
1709         /* if root of the hierarchy */
1710         if (system_namespace && !strcmp (class->name, "Object")) {
1711                 class->parent = NULL;
1712                 class->instance_size = sizeof (MonoObject);
1713                 return;
1714         }
1715         if (!strcmp (class->name, "<Module>")) {
1716                 class->parent = NULL;
1717                 class->instance_size = 0;
1718                 return;
1719         }
1720
1721         if (!MONO_CLASS_IS_INTERFACE (class)) {
1722                 class->parent = parent;
1723
1724                 if (!parent)
1725                         g_assert_not_reached (); /* FIXME */
1726
1727                 if (parent->generic_class && !parent->name) {
1728                         /*
1729                          * If the parent is a generic instance, we may get
1730                          * called before it is fully initialized, especially
1731                          * before it has its name.
1732                          */
1733                         return;
1734                 }
1735
1736                 class->marshalbyref = parent->marshalbyref;
1737                 class->contextbound  = parent->contextbound;
1738                 class->delegate  = parent->delegate;
1739                 
1740                 if (system_namespace) {
1741                         if (*class->name == 'M' && !strcmp (class->name, "MarshalByRefObject"))
1742                                 class->marshalbyref = 1;
1743
1744                         if (*class->name == 'C' && !strcmp (class->name, "ContextBoundObject")) 
1745                                 class->contextbound  = 1;
1746
1747                         if (*class->name == 'D' && !strcmp (class->name, "Delegate")) 
1748                                 class->delegate  = 1;
1749                 }
1750
1751                 if (class->parent->enumtype || ((strcmp (class->parent->name, "ValueType") == 0) && 
1752                                                 (strcmp (class->parent->name_space, "System") == 0)))
1753                         class->valuetype = 1;
1754                 if (((strcmp (class->parent->name, "Enum") == 0) && (strcmp (class->parent->name_space, "System") == 0))) {
1755                         class->valuetype = class->enumtype = 1;
1756                 }
1757                 /*class->enumtype = class->parent->enumtype; */
1758                 mono_class_setup_supertypes (class);
1759         } else {
1760                 class->parent = NULL;
1761         }
1762
1763 }
1764
1765 void
1766 mono_class_setup_supertypes (MonoClass *class)
1767 {
1768         MonoClass *k;
1769         int ms, i;
1770
1771         if (class->supertypes)
1772                 return;
1773
1774         class->idepth = 0;
1775         for (k = class; k ; k = k->parent) {
1776                 class->idepth++;
1777         }
1778
1779         ms = MAX (MONO_DEFAULT_SUPERTABLE_SIZE, class->idepth);
1780         class->supertypes = g_new0 (MonoClass *, ms);
1781
1782         if (class->parent) {
1783                 for (i = class->idepth, k = class; k ; k = k->parent)
1784                         class->supertypes [--i] = k;
1785         } else {
1786                 class->supertypes [0] = class;
1787         }
1788 }       
1789
1790 /*
1791  * If we inherit a type parameter from an outer class, set its owner to that class.
1792  */
1793 static int
1794 set_generic_param_owner (MonoGenericContainer *container, MonoClass *klass, int pos)
1795 {
1796         MonoGenericContainer *gc;
1797         int i;
1798
1799         if (klass->nested_in)
1800                 pos = set_generic_param_owner (container, klass->nested_in, pos);
1801
1802         if (!klass->generic_container)
1803                 return pos;
1804
1805         gc = klass->generic_container;
1806         for (i = pos; i < gc->type_argc; i++)
1807                 container->type_params [i].owner = gc;
1808
1809         return pos + gc->type_argc;
1810 }
1811
1812 /**
1813  * @image: context where the image is created
1814  * @type_token:  typedef token
1815  */
1816 static MonoClass *
1817 mono_class_create_from_typedef (MonoImage *image, guint32 type_token)
1818 {
1819         MonoTableInfo *tt = &image->tables [MONO_TABLE_TYPEDEF];
1820         MonoClass *class, *parent = NULL;
1821         guint32 cols [MONO_TYPEDEF_SIZE];
1822         guint32 cols_next [MONO_TYPEDEF_SIZE];
1823         guint tidx = mono_metadata_token_index (type_token);
1824         MonoGenericContext *context = NULL;
1825         const char *name, *nspace;
1826         guint icount = 0; 
1827         MonoClass **interfaces;
1828
1829         mono_loader_lock ();
1830
1831         if ((class = g_hash_table_lookup (image->class_cache, GUINT_TO_POINTER (type_token)))) {
1832                 mono_loader_unlock ();
1833                 return class;
1834         }
1835
1836         g_assert (mono_metadata_token_table (type_token) == MONO_TABLE_TYPEDEF);
1837
1838         mono_metadata_decode_row (tt, tidx - 1, cols, MONO_TYPEDEF_SIZE);
1839         
1840         name = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
1841         nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
1842
1843         class = g_malloc0 (sizeof (MonoClass));
1844
1845         class->name = name;
1846         class->name_space = nspace;
1847
1848         class->image = image;
1849         class->type_token = type_token;
1850         class->flags = cols [MONO_TYPEDEF_FLAGS];
1851
1852         g_hash_table_insert (image->class_cache, GUINT_TO_POINTER (type_token), class);
1853
1854         class->generic_container = mono_metadata_load_generic_params (image, class->type_token);
1855         if (class->generic_container) {
1856                 class->generic_container->klass = class;
1857                 context = g_new0 (MonoGenericContext, 1);
1858                 context->container = class->generic_container;
1859         }
1860
1861         if (cols [MONO_TYPEDEF_EXTENDS])
1862                 parent = mono_class_get_full (
1863                         image, mono_metadata_token_from_dor (cols [MONO_TYPEDEF_EXTENDS]), context);
1864
1865         mono_class_setup_parent (class, parent);
1866
1867         mono_class_setup_mono_type (class);
1868
1869         interfaces = mono_metadata_interfaces_from_typedef_full (image, type_token, &icount, context);
1870
1871         class->interfaces = interfaces;
1872         class->interface_count = icount;
1873
1874         if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_UNICODE_CLASS)
1875                 class->unicode = 1;
1876         /* fixme: maybe we must set this on windows 
1877         if ((class->flags & TYPE_ATTRIBUTE_STRING_FORMAT_MASK) == TYPE_ATTRIBUTE_AUTO_CLASS)
1878                 class->unicode = 1;
1879         */
1880
1881         class->cast_class = class->element_class = class;
1882
1883         /*g_print ("Load class %s\n", name);*/
1884
1885         /*
1886          * Compute the field and method lists
1887          */
1888         class->field.first  = cols [MONO_TYPEDEF_FIELD_LIST] - 1;
1889         class->method.first = cols [MONO_TYPEDEF_METHOD_LIST] - 1;
1890
1891         if (tt->rows > tidx){           
1892                 mono_metadata_decode_row (tt, tidx, cols_next, MONO_TYPEDEF_SIZE);
1893                 class->field.last  = cols_next [MONO_TYPEDEF_FIELD_LIST] - 1;
1894                 class->method.last = cols_next [MONO_TYPEDEF_METHOD_LIST] - 1;
1895         } else {
1896                 class->field.last  = image->tables [MONO_TABLE_FIELD].rows;
1897                 class->method.last = image->tables [MONO_TABLE_METHOD].rows;
1898         }
1899
1900         if (cols [MONO_TYPEDEF_FIELD_LIST] && 
1901             cols [MONO_TYPEDEF_FIELD_LIST] <= image->tables [MONO_TABLE_FIELD].rows)
1902                 class->field.count = class->field.last - class->field.first;
1903         else
1904                 class->field.count = 0;
1905
1906         if (cols [MONO_TYPEDEF_METHOD_LIST] <= image->tables [MONO_TABLE_METHOD].rows)
1907                 class->method.count = class->method.last - class->method.first;
1908         else
1909                 class->method.count = 0;
1910
1911         /* reserve space to store vector pointer in arrays */
1912         if (!strcmp (nspace, "System") && !strcmp (name, "Array")) {
1913                 class->instance_size += 2 * sizeof (gpointer);
1914                 g_assert (class->field.count == 0);
1915         }
1916
1917         if (class->enumtype)
1918                 class_compute_field_layout (class);
1919
1920         if ((type_token = mono_metadata_nested_in_typedef (image, type_token)))
1921                 class->nested_in = mono_class_create_from_typedef (image, type_token);
1922
1923         if (class->nested_in && class->generic_container)
1924                 set_generic_param_owner (class->generic_container, class->nested_in, 0);
1925
1926         mono_loader_unlock ();
1927
1928         return class;
1929 }
1930
1931 void
1932 mono_class_create_generic (MonoGenericClass *gclass)
1933 {
1934         MonoClass *klass, *gklass;
1935
1936         if (!gclass->klass)
1937                 gclass->klass = g_malloc0 (sizeof (MonoClass));
1938         klass = gclass->klass;
1939
1940         gklass = mono_class_from_mono_type (gclass->generic_type);
1941
1942         klass->nested_in = gklass->nested_in;
1943
1944         klass->name = gklass->name;
1945         klass->name_space = gklass->name_space;
1946         klass->image = gklass->image;
1947         klass->flags = gklass->flags;
1948
1949         klass->generic_class = gclass;
1950
1951         klass->this_arg.type = klass->byval_arg.type = MONO_TYPE_GENERICINST;
1952         klass->this_arg.data.generic_class = klass->byval_arg.data.generic_class = gclass;
1953         klass->this_arg.byref = TRUE;
1954
1955         klass->cast_class = klass->element_class = klass;
1956
1957         if (gclass->is_dynamic) {
1958                 klass->instance_size = gklass->instance_size;
1959                 klass->class_size = gklass->class_size;
1960                 klass->size_inited = 1;
1961                 klass->inited = 1;
1962
1963                 klass->valuetype = gklass->valuetype;
1964         }
1965 }
1966
1967 void
1968 mono_class_create_generic_2 (MonoGenericClass *gclass)
1969 {
1970         MonoClass *klass, *gklass;
1971         GList *list;
1972         int i;
1973
1974         if (gclass->is_dynamic)
1975                 return;
1976
1977         klass = gclass->klass;
1978         gklass = mono_class_from_mono_type (gclass->generic_type);
1979
1980         klass->method = gklass->method;
1981         klass->field = gklass->field;
1982
1983         klass->interface_count = gklass->interface_count;
1984         klass->interfaces = g_new0 (MonoClass *, klass->interface_count);
1985         for (i = 0; i < klass->interface_count; i++) {
1986                 MonoType *it = &gklass->interfaces [i]->byval_arg;
1987                 MonoType *inflated = mono_class_inflate_generic_type (it, gclass->context);
1988                 klass->interfaces [i] = mono_class_from_mono_type (inflated);
1989         }
1990
1991         for (list = gklass->nested_classes; list; list = list->next)
1992                 klass->nested_classes = g_list_append (
1993                         klass->nested_classes, list->data);
1994
1995         if (gclass->parent)
1996                 klass->parent = mono_class_from_mono_type (gclass->parent);
1997         else if (gklass->parent) {
1998                 MonoType *inflated = mono_class_inflate_generic_type (&gklass->parent->byval_arg, gclass->context);
1999
2000                 klass->parent = mono_class_from_mono_type (inflated);
2001         }
2002
2003         mono_class_setup_parent (klass, klass->parent);
2004 }
2005
2006 MonoClass *
2007 mono_class_from_generic_parameter (MonoGenericParam *param, MonoImage *image, gboolean is_mvar)
2008 {
2009         MonoClass *klass, **ptr;
2010         int count, pos, i;
2011
2012         if (param->pklass)
2013                 return param->pklass;
2014
2015         klass = param->pklass = g_new0 (MonoClass, 1);
2016
2017         for (count = 0, ptr = param->constraints; ptr && *ptr; ptr++, count++)
2018                 ;
2019
2020         pos = 0;
2021         if ((count > 0) && !MONO_CLASS_IS_INTERFACE (param->constraints [0])) {
2022                 klass->parent = param->constraints [0];
2023                 pos++;
2024         }
2025
2026         if (count - pos > 0) {
2027                 klass->interface_count = count - pos;
2028                 klass->interfaces = g_new0 (MonoClass *, count - pos);
2029                 for (i = pos; i < count; i++)
2030                         klass->interfaces [i - pos] = param->constraints [i];
2031         }
2032
2033         g_assert (param->name && param->owner);
2034
2035         klass->name = param->name;
2036         klass->name_space = "";
2037         klass->image = image;
2038         klass->cast_class = klass->element_class = klass;
2039         klass->enum_basetype = &klass->element_class->byval_arg;
2040         klass->flags = TYPE_ATTRIBUTE_PUBLIC;
2041
2042         klass->this_arg.type = klass->byval_arg.type = is_mvar ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
2043         klass->this_arg.data.generic_param = klass->byval_arg.data.generic_param = param;
2044         klass->this_arg.byref = TRUE;
2045
2046         mono_class_init (klass);
2047
2048         return klass;
2049 }
2050
2051 static MonoClass *
2052 my_mono_class_from_generic_parameter (MonoGenericParam *param, gboolean is_mvar)
2053 {
2054         MonoClass *klass;
2055
2056         if (param->pklass)
2057                 return param->pklass;
2058
2059         g_assert (param->owner);
2060
2061         klass = g_new0 (MonoClass, 1);
2062
2063         if (param->name)
2064                 klass->name = param->name;
2065         else
2066                 klass->name = g_strdup_printf (is_mvar ? "!!%d" : "!%d", param->num);
2067         klass->name_space = "";
2068         klass->image = mono_defaults.corlib;
2069         klass->cast_class = klass->element_class = klass;
2070         klass->enum_basetype = &klass->element_class->byval_arg;
2071         klass->flags = TYPE_ATTRIBUTE_PUBLIC;
2072
2073         klass->this_arg.type = klass->byval_arg.type = is_mvar ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
2074         klass->this_arg.data.generic_param = klass->byval_arg.data.generic_param = param;
2075         klass->this_arg.byref = TRUE;
2076
2077         mono_class_init (klass);
2078
2079         return klass;
2080 }
2081
2082 MonoClass *
2083 mono_ptr_class_get (MonoType *type)
2084 {
2085         MonoClass *result;
2086         MonoClass *el_class;
2087         static GHashTable *ptr_hash = NULL;
2088
2089         mono_loader_lock ();
2090
2091         if (!ptr_hash)
2092                 ptr_hash = g_hash_table_new (NULL, NULL);
2093         el_class = mono_class_from_mono_type (type);
2094         if ((result = g_hash_table_lookup (ptr_hash, el_class))) {
2095                 mono_loader_unlock ();
2096                 return result;
2097         }
2098         result = g_new0 (MonoClass, 1);
2099
2100         result->parent = NULL; /* no parent for PTR types */
2101         result->name_space = el_class->name_space;
2102         result->name = g_strdup_printf ("%s*", el_class->name);
2103         result->image = el_class->image;
2104         result->inited = TRUE;
2105         result->flags = TYPE_ATTRIBUTE_CLASS | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
2106         /* Can pointers get boxed? */
2107         result->instance_size = sizeof (gpointer);
2108         result->cast_class = result->element_class = el_class;
2109         result->enum_basetype = &result->element_class->byval_arg;
2110         result->blittable = TRUE;
2111
2112         result->this_arg.type = result->byval_arg.type = MONO_TYPE_PTR;
2113         result->this_arg.data.type = result->byval_arg.data.type = result->enum_basetype;
2114         result->this_arg.byref = TRUE;
2115
2116         mono_class_setup_supertypes (result);
2117
2118         g_hash_table_insert (ptr_hash, el_class, result);
2119
2120         mono_loader_unlock ();
2121
2122         return result;
2123 }
2124
2125 static MonoClass *
2126 mono_fnptr_class_get (MonoMethodSignature *sig)
2127 {
2128         MonoClass *result;
2129         static GHashTable *ptr_hash = NULL;
2130
2131         mono_loader_lock ();
2132
2133         if (!ptr_hash)
2134                 ptr_hash = g_hash_table_new (NULL, NULL);
2135         
2136         if ((result = g_hash_table_lookup (ptr_hash, sig))) {
2137                 mono_loader_unlock ();
2138                 return result;
2139         }
2140         result = g_new0 (MonoClass, 1);
2141
2142         result->parent = NULL; /* no parent for PTR types */
2143         result->name = "System";
2144         result->name_space = "MonoFNPtrFakeClass";
2145         result->image = NULL; /* need to fix... */
2146         result->inited = TRUE;
2147         result->flags = TYPE_ATTRIBUTE_CLASS; /* | (el_class->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK); */
2148         /* Can pointers get boxed? */
2149         result->instance_size = sizeof (gpointer);
2150         result->cast_class = result->element_class = result;
2151         result->blittable = TRUE;
2152
2153         result->this_arg.type = result->byval_arg.type = MONO_TYPE_FNPTR;
2154         result->this_arg.data.method = result->byval_arg.data.method = sig;
2155         result->this_arg.byref = TRUE;
2156         result->enum_basetype = &result->element_class->byval_arg;
2157         result->blittable = TRUE;
2158
2159         mono_class_setup_supertypes (result);
2160
2161         g_hash_table_insert (ptr_hash, sig, result);
2162
2163         mono_loader_unlock ();
2164
2165         return result;
2166 }
2167
2168 MonoClass *
2169 mono_class_from_mono_type (MonoType *type)
2170 {
2171         switch (type->type) {
2172         case MONO_TYPE_OBJECT:
2173                 return type->data.klass? type->data.klass: mono_defaults.object_class;
2174         case MONO_TYPE_VOID:
2175                 return type->data.klass? type->data.klass: mono_defaults.void_class;
2176         case MONO_TYPE_BOOLEAN:
2177                 return type->data.klass? type->data.klass: mono_defaults.boolean_class;
2178         case MONO_TYPE_CHAR:
2179                 return type->data.klass? type->data.klass: mono_defaults.char_class;
2180         case MONO_TYPE_I1:
2181                 return type->data.klass? type->data.klass: mono_defaults.sbyte_class;
2182         case MONO_TYPE_U1:
2183                 return type->data.klass? type->data.klass: mono_defaults.byte_class;
2184         case MONO_TYPE_I2:
2185                 return type->data.klass? type->data.klass: mono_defaults.int16_class;
2186         case MONO_TYPE_U2:
2187                 return type->data.klass? type->data.klass: mono_defaults.uint16_class;
2188         case MONO_TYPE_I4:
2189                 return type->data.klass? type->data.klass: mono_defaults.int32_class;
2190         case MONO_TYPE_U4:
2191                 return type->data.klass? type->data.klass: mono_defaults.uint32_class;
2192         case MONO_TYPE_I:
2193                 return type->data.klass? type->data.klass: mono_defaults.int_class;
2194         case MONO_TYPE_U:
2195                 return type->data.klass? type->data.klass: mono_defaults.uint_class;
2196         case MONO_TYPE_I8:
2197                 return type->data.klass? type->data.klass: mono_defaults.int64_class;
2198         case MONO_TYPE_U8:
2199                 return type->data.klass? type->data.klass: mono_defaults.uint64_class;
2200         case MONO_TYPE_R4:
2201                 return type->data.klass? type->data.klass: mono_defaults.single_class;
2202         case MONO_TYPE_R8:
2203                 return type->data.klass? type->data.klass: mono_defaults.double_class;
2204         case MONO_TYPE_STRING:
2205                 return type->data.klass? type->data.klass: mono_defaults.string_class;
2206         case MONO_TYPE_TYPEDBYREF:
2207                 return type->data.klass? type->data.klass: mono_defaults.typed_reference_class;
2208         case MONO_TYPE_ARRAY:
2209                 return mono_bounded_array_class_get (type->data.array->eklass, type->data.array->rank, TRUE);
2210         case MONO_TYPE_PTR:
2211                 return mono_ptr_class_get (type->data.type);
2212         case MONO_TYPE_FNPTR:
2213                 return mono_fnptr_class_get (type->data.method);
2214         case MONO_TYPE_SZARRAY:
2215                 return mono_array_class_get (type->data.klass, 1);
2216         case MONO_TYPE_CLASS:
2217         case MONO_TYPE_VALUETYPE:
2218                 return type->data.klass;
2219         case MONO_TYPE_GENERICINST:
2220                 g_assert (type->data.generic_class->klass);
2221                 return type->data.generic_class->klass;
2222         case MONO_TYPE_VAR:
2223                 return my_mono_class_from_generic_parameter (type->data.generic_param, FALSE);
2224         case MONO_TYPE_MVAR:
2225                 return my_mono_class_from_generic_parameter (type->data.generic_param, TRUE);
2226         default:
2227                 g_warning ("implement me 0x%02x\n", type->type);
2228                 g_assert_not_reached ();
2229         }
2230         
2231         return NULL;
2232 }
2233
2234 /**
2235  * @image: context where the image is created
2236  * @type_spec:  typespec token
2237  */
2238 static MonoClass *
2239 mono_class_create_from_typespec (MonoImage *image, guint32 type_spec,
2240                                  MonoGenericContext *context)
2241 {
2242         MonoType *type, *inflated;
2243         MonoClass *class;
2244
2245         type = mono_type_create_from_typespec_full (image, context, type_spec);
2246
2247         switch (type->type) {
2248         case MONO_TYPE_ARRAY:
2249                 class = mono_array_class_get (type->data.array->eklass, type->data.array->rank);
2250                 break;
2251         case MONO_TYPE_SZARRAY:
2252                 class = mono_array_class_get (type->data.klass, 1);
2253                 break;
2254         case MONO_TYPE_PTR:
2255                 class = mono_ptr_class_get (type->data.type);
2256                 break;
2257         case MONO_TYPE_GENERICINST:
2258                 g_assert (type->data.generic_class->klass);
2259                 class = type->data.generic_class->klass;
2260                 break;
2261         default:
2262                 /* it seems any type can be stored in TypeSpec as well */
2263                 class = mono_class_from_mono_type (type);
2264                 break;
2265         }
2266
2267         if (!class || !context)
2268                 return class;
2269
2270         inflated = mono_class_inflate_generic_type (&class->byval_arg, context);
2271
2272         return mono_class_from_mono_type (inflated);
2273 }
2274
2275 /**
2276  * mono_bounded_array_class_get:
2277  * @element_class: element class 
2278  * @rank: the dimension of the array class
2279  * @bounded: whenever the array has non-zero bounds
2280  *
2281  * Returns: a class object describing the array with element type @element_type and 
2282  * dimension @rank. 
2283  */
2284 MonoClass *
2285 mono_bounded_array_class_get (MonoClass *eclass, guint32 rank, gboolean bounded)
2286 {
2287         MonoImage *image;
2288         MonoClass *class;
2289         MonoClass *parent = NULL;
2290         GSList *list, *rootlist;
2291         int nsize;
2292         char *name;
2293         gboolean corlib_type = FALSE;
2294
2295         g_assert (rank <= 255);
2296
2297         if (rank > 1)
2298                 /* bounded only matters for one-dimensional arrays */
2299                 bounded = FALSE;
2300
2301         image = eclass->image;
2302
2303         mono_loader_lock ();
2304
2305         if ((rootlist = list = g_hash_table_lookup (image->array_cache, eclass))) {
2306                 for (; list; list = list->next) {
2307                         class = list->data;
2308                         if ((class->rank == rank) && (class->byval_arg.type == (bounded ? MONO_TYPE_ARRAY : MONO_TYPE_SZARRAY))) {
2309                                 mono_loader_unlock ();
2310                                 return class;
2311                         }
2312                 }
2313         }
2314
2315         /* for the building corlib use System.Array from it */
2316         if (image->assembly && image->assembly->dynamic && strcmp (image->assembly_name, "mscorlib") == 0) {
2317                 parent = mono_class_from_name (image, "System", "Array");
2318                 corlib_type = TRUE;
2319         } else {
2320                 parent = mono_defaults.array_class;
2321                 if (!parent->inited)
2322                         mono_class_init (parent);
2323         }
2324
2325         class = g_malloc0 (sizeof (MonoClass));
2326
2327         class->image = image;
2328         class->name_space = eclass->name_space;
2329         nsize = strlen (eclass->name);
2330         name = g_malloc (nsize + 2 + rank);
2331         memcpy (name, eclass->name, nsize);
2332         name [nsize] = '[';
2333         if (rank > 1)
2334                 memset (name + nsize + 1, ',', rank - 1);
2335         name [nsize + rank] = ']';
2336         name [nsize + rank + 1] = 0;
2337         class->name = name;
2338         class->type_token = 0;
2339         /* all arrays are marked serializable and sealed, bug #42779 */
2340         class->flags = TYPE_ATTRIBUTE_CLASS | TYPE_ATTRIBUTE_SERIALIZABLE | TYPE_ATTRIBUTE_SEALED |
2341                 (eclass->flags & TYPE_ATTRIBUTE_VISIBILITY_MASK);
2342         class->parent = parent;
2343         class->instance_size = mono_class_instance_size (class->parent);
2344         class->class_size = 0;
2345         mono_class_setup_supertypes (class);
2346
2347         class->rank = rank;
2348         
2349         if (eclass->enumtype)
2350                 class->cast_class = eclass->element_class;
2351         else
2352                 class->cast_class = eclass;
2353
2354         class->element_class = eclass;
2355
2356         if ((rank > 1) || bounded) {
2357                 MonoArrayType *at = g_new0 (MonoArrayType, 1);
2358                 class->byval_arg.type = MONO_TYPE_ARRAY;
2359                 class->byval_arg.data.array = at;
2360                 at->eklass = eclass;
2361                 at->rank = rank;
2362                 /* FIXME: complete.... */
2363         } else {
2364                 class->byval_arg.type = MONO_TYPE_SZARRAY;
2365                 class->byval_arg.data.klass = eclass;
2366         }
2367         class->this_arg = class->byval_arg;
2368         class->this_arg.byref = 1;
2369         if (corlib_type) {
2370                 class->inited = 1;
2371         }
2372
2373         list = g_slist_append (rootlist, class);
2374         g_hash_table_insert (image->array_cache, eclass, list);
2375
2376         mono_loader_unlock ();
2377
2378         return class;
2379 }
2380
2381 /**
2382  * mono_array_class_get:
2383  * @element_class: element class 
2384  * @rank: the dimension of the array class
2385  *
2386  * Returns: a class object describing the array with element type @element_type and 
2387  * dimension @rank. 
2388  */
2389 MonoClass *
2390 mono_array_class_get (MonoClass *eclass, guint32 rank)
2391 {
2392         return mono_bounded_array_class_get (eclass, rank, FALSE);
2393 }
2394
2395 /**
2396  * mono_class_instance_size:
2397  * @klass: a class 
2398  * 
2399  * Returns: the size of an object instance
2400  */
2401 gint32
2402 mono_class_instance_size (MonoClass *klass)
2403 {       
2404         if (!klass->size_inited)
2405                 mono_class_init (klass);
2406
2407         g_assert (!klass->generic_container &&
2408                   (!klass->generic_class || !klass->generic_class->inst->is_open));
2409         return klass->instance_size;
2410 }
2411
2412 /**
2413  * mono_class_min_align:
2414  * @klass: a class 
2415  * 
2416  * Returns: minimm alignment requirements 
2417  */
2418 gint32
2419 mono_class_min_align (MonoClass *klass)
2420 {       
2421         if (!klass->size_inited)
2422                 mono_class_init (klass);
2423
2424         return klass->min_align;
2425 }
2426
2427 /**
2428  * mono_class_value_size:
2429  * @klass: a class 
2430  *
2431  * This function is used for value types, and return the
2432  * space and the alignment to store that kind of value object.
2433  *
2434  * Returns: the size of a value of kind @klass
2435  */
2436 gint32
2437 mono_class_value_size      (MonoClass *klass, guint32 *align)
2438 {
2439         gint32 size;
2440
2441         /* fixme: check disable, because we still have external revereces to
2442          * mscorlib and Dummy Objects 
2443          */
2444         /*g_assert (klass->valuetype);*/
2445
2446         size = mono_class_instance_size (klass) - sizeof (MonoObject);
2447
2448         if (align)
2449                 *align = klass->min_align;
2450
2451         return size;
2452 }
2453
2454 /**
2455  * mono_class_data_size:
2456  * @klass: a class 
2457  * 
2458  * Returns: the size of the static class data
2459  */
2460 gint32
2461 mono_class_data_size (MonoClass *klass)
2462 {       
2463         if (!klass->inited)
2464                 mono_class_init (klass);
2465
2466         return klass->class_size;
2467 }
2468
2469 /*
2470  * Auxiliary routine to mono_class_get_field
2471  *
2472  * Takes a field index instead of a field token.
2473  */
2474 static MonoClassField *
2475 mono_class_get_field_idx (MonoClass *class, int idx)
2476 {
2477         if (class->field.count){
2478                 if ((idx >= class->field.first) && (idx < class->field.last)){
2479                         return &class->fields [idx - class->field.first];
2480                 }
2481         }
2482
2483         if (!class->parent)
2484                 return NULL;
2485         
2486         return mono_class_get_field_idx (class->parent, idx);
2487 }
2488
2489 /**
2490  * mono_class_get_field:
2491  * @class: the class to lookup the field.
2492  * @field_token: the field token
2493  *
2494  * Returns: A MonoClassField representing the type and offset of
2495  * the field, or a NULL value if the field does not belong to this
2496  * class.
2497  */
2498 MonoClassField *
2499 mono_class_get_field (MonoClass *class, guint32 field_token)
2500 {
2501         int idx = mono_metadata_token_index (field_token);
2502
2503         g_assert (mono_metadata_token_code (field_token) == MONO_TOKEN_FIELD_DEF);
2504
2505         return mono_class_get_field_idx (class, idx - 1);
2506 }
2507
2508 MonoClassField *
2509 mono_class_get_field_from_name (MonoClass *klass, const char *name)
2510 {
2511         int i;
2512
2513         while (klass) {
2514                 for (i = 0; i < klass->field.count; ++i) {
2515                         if (strcmp (name, klass->fields [i].name) == 0)
2516                                 return &klass->fields [i];
2517                 }
2518                 klass = klass->parent;
2519         }
2520         return NULL;
2521 }
2522
2523 guint32
2524 mono_class_get_field_token (MonoClassField *field)
2525 {
2526         MonoClass *klass = field->parent;
2527         int i;
2528
2529         while (klass) {
2530                 for (i = 0; i < klass->field.count; ++i) {
2531                         if (&klass->fields [i] == field)
2532                                 return mono_metadata_make_token (MONO_TABLE_FIELD, klass->field.first + i + 1);
2533                 }
2534                 klass = klass->parent;
2535         }
2536
2537         g_assert_not_reached ();
2538         return 0;
2539 }
2540
2541 guint32
2542 mono_class_get_event_token (MonoEvent *event)
2543 {
2544         MonoClass *klass = event->parent;
2545         int i;
2546
2547         while (klass) {
2548                 for (i = 0; i < klass->event.count; ++i) {
2549                         if (&klass->events [i] == event)
2550                                 return mono_metadata_make_token (MONO_TABLE_EVENT, klass->event.first + i + 1);
2551                 }
2552                 klass = klass->parent;
2553         }
2554
2555         g_assert_not_reached ();
2556         return 0;
2557 }
2558
2559 void *
2560 mono_vtable_get_static_field_data (MonoVTable *vt)
2561 {
2562         return vt->data;
2563 }
2564
2565 MonoProperty*
2566 mono_class_get_property_from_name (MonoClass *klass, const char *name)
2567 {
2568         int i;
2569
2570         while (klass) {
2571                 for (i = 0; i < klass->property.count; ++i) {
2572                         if (strcmp (name, klass->properties [i].name) == 0)
2573                                 return &klass->properties [i];
2574                 }
2575                 klass = klass->parent;
2576         }
2577         return NULL;
2578 }
2579
2580 guint32
2581 mono_class_get_property_token (MonoProperty *prop)
2582 {
2583         MonoClass *klass = prop->parent;
2584         int i;
2585
2586         while (klass) {
2587                 for (i = 0; i < klass->property.count; ++i) {
2588                         if (&klass->properties [i] == prop)
2589                                 return mono_metadata_make_token (MONO_TABLE_PROPERTY, klass->property.first + i + 1);
2590                 }
2591                 klass = klass->parent;
2592         }
2593
2594         g_assert_not_reached ();
2595         return 0;
2596 }
2597
2598 /**
2599  * mono_class_get:
2600  * @image: the image where the class resides
2601  * @type_token: the token for the class
2602  * @at: an optional pointer to return the array element type
2603  *
2604  * Returns: the MonoClass that represents @type_token in @image
2605  */
2606 static MonoClass *
2607 _mono_class_get (MonoImage *image, guint32 type_token, MonoGenericContext *context)
2608 {
2609         MonoClass *class = NULL;
2610
2611         if (image->dynamic)
2612                 return mono_lookup_dynamic_token (image, type_token);
2613
2614         switch (type_token & 0xff000000){
2615         case MONO_TOKEN_TYPE_DEF:
2616                 class = mono_class_create_from_typedef (image, type_token);
2617                 break;          
2618         case MONO_TOKEN_TYPE_REF:
2619                 class = mono_class_from_typeref (image, type_token);
2620                 break;
2621         case MONO_TOKEN_TYPE_SPEC:
2622                 class = mono_class_create_from_typespec (image, type_token, context);
2623                 break;
2624         default:
2625                 g_warning ("unknown token type %x", type_token & 0xff000000);
2626                 g_assert_not_reached ();
2627         }
2628
2629         if (!class)
2630                 g_warning ("Could not load class from token 0x%08x in %s", type_token, image->name);
2631
2632         return class;
2633 }
2634
2635 MonoClass *
2636 mono_class_get (MonoImage *image, guint32 type_token)
2637 {
2638         return _mono_class_get (image, type_token, NULL);
2639 }
2640
2641 MonoClass *
2642 mono_class_get_full (MonoImage *image, guint32 type_token, MonoGenericContext *context)
2643 {
2644         MonoClass *class = _mono_class_get (image, type_token, context);
2645         MonoType *inflated;
2646
2647         if (!class || !context || (!context->gclass && !context->gmethod))
2648                 return class;
2649
2650         switch (class->byval_arg.type) {
2651         case MONO_TYPE_GENERICINST:
2652                 if (!class->generic_class->inst->is_open)
2653                         return class;
2654                 break;
2655         case MONO_TYPE_VAR:
2656         case MONO_TYPE_MVAR:
2657                 break;
2658         default:
2659                 return class;
2660         }
2661
2662         inflated = inflate_generic_type (&class->byval_arg, context);
2663         if (!inflated)
2664                 return class;
2665
2666         return mono_class_from_mono_type (inflated);
2667 }
2668
2669 /**
2670  * mono_class_from_name_case:
2671  * @image: The MonoImage where the type is looked up in, or NULL for looking up in all loaded assemblies
2672  * @name_space: the type namespace
2673  * @name: the type short name.
2674  *
2675  * Obtains a MonoClass with a given namespace and a given name which
2676  * is located in the given MonoImage.   The namespace and name
2677  * lookups are case insensitive.
2678  *
2679  * You can also pass @NULL to the image, and that will lookup for
2680  * a type with the given namespace and name in all of the loaded
2681  * assemblies: notice that since there might be a name clash in this
2682  * case, passing @NULL is not encouraged if you need a precise type.
2683  *
2684  */
2685 MonoClass *
2686 mono_class_from_name_case (MonoImage *image, const char* name_space, const char *name)
2687 {
2688         MonoTableInfo  *t = &image->tables [MONO_TABLE_TYPEDEF];
2689         guint32 cols [MONO_TYPEDEF_SIZE];
2690         const char *n;
2691         const char *nspace;
2692         guint32 i, visib;
2693
2694         /* add a cache if needed */
2695         for (i = 1; i <= t->rows; ++i) {
2696                 mono_metadata_decode_row (t, i - 1, cols, MONO_TYPEDEF_SIZE);
2697                 /* nested types are accessed from the nesting name */
2698                 visib = cols [MONO_TYPEDEF_FLAGS] & TYPE_ATTRIBUTE_VISIBILITY_MASK;
2699                 if (visib > TYPE_ATTRIBUTE_PUBLIC && visib <= TYPE_ATTRIBUTE_NESTED_ASSEMBLY)
2700                         continue;
2701                 n = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAME]);
2702                 nspace = mono_metadata_string_heap (image, cols [MONO_TYPEDEF_NAMESPACE]);
2703                 if (g_strcasecmp (n, name) == 0 && g_strcasecmp (nspace, name_space) == 0)
2704                         return mono_class_get (image, MONO_TOKEN_TYPE_DEF | i);
2705         }
2706         return NULL;
2707 }
2708
2709 static MonoClass*
2710 return_nested_in (MonoClass *class, char *nested) {
2711         MonoClass *found;
2712         char *s = strchr (nested, '/');
2713         GList *tmp;
2714
2715         if (s) {
2716                 *s = 0;
2717                 s++;
2718         }
2719         for (tmp = class->nested_classes; tmp; tmp = tmp->next) {
2720                 found = tmp->data;
2721                 if (strcmp (found->name, nested) == 0) {
2722                         if (s)
2723                                 return return_nested_in (found, s);
2724                         return found;
2725                 }
2726         }
2727         return NULL;
2728 }
2729
2730
2731 /**
2732  * mono_class_from_name_case:
2733  * @image: The MonoImage where the type is looked up in, or NULL for looking up in all loaded assemblies
2734  * @name_space: the type namespace
2735  * @name: the type short name.
2736  *
2737  * Obtains a MonoClass with a given namespace and a given name which
2738  * is located in the given MonoImage.   
2739  *
2740  * You can also pass `NULL' to the image, and that will lookup for
2741  * a type with the given namespace and name in all of the loaded
2742  * assemblies: notice that since there might be a name clash in this
2743  * case, passing NULL is not encouraged if you need a precise type.
2744  *
2745  */
2746 MonoClass *
2747 mono_class_from_name (MonoImage *image, const char* name_space, const char *name)
2748 {
2749         GHashTable *nspace_table;
2750         MonoImage *loaded_image;
2751         guint32 token = 0;
2752         MonoClass *class;
2753         char *nested;
2754         char buf [1024];
2755
2756         if ((nested = strchr (name, '/'))) {
2757                 int pos = nested - name;
2758                 int len = strlen (name);
2759                 if (len > 1023)
2760                         return NULL;
2761                 memcpy (buf, name, len + 1);
2762                 buf [pos] = 0;
2763                 nested = buf + pos + 1;
2764                 name = buf;
2765         }
2766
2767         mono_loader_lock ();
2768
2769         nspace_table = g_hash_table_lookup (image->name_cache, name_space);
2770
2771         if (nspace_table)
2772                 token = GPOINTER_TO_UINT (g_hash_table_lookup (nspace_table, name));
2773
2774         mono_loader_unlock ();
2775
2776         if (!token)
2777                 return NULL;
2778
2779         if (mono_metadata_token_table (token) == MONO_TABLE_EXPORTEDTYPE) {
2780                 MonoTableInfo  *t = &image->tables [MONO_TABLE_EXPORTEDTYPE];
2781                 guint32 cols [MONO_EXP_TYPE_SIZE];
2782                 guint32 idx, impl;
2783
2784                 idx = mono_metadata_token_index (token);
2785
2786                 mono_metadata_decode_row (t, idx - 1, cols, MONO_EXP_TYPE_SIZE);
2787
2788                 impl = cols [MONO_EXP_TYPE_IMPLEMENTATION];
2789                 if ((impl & MONO_IMPLEMENTATION_MASK) == MONO_IMPLEMENTATION_FILE) {
2790                         loaded_image = mono_assembly_load_module (image->assembly, impl >> MONO_IMPLEMENTATION_BITS);
2791                         if (!loaded_image)
2792                                 return NULL;
2793                         class = mono_class_from_name (loaded_image, name_space, name);
2794                         if (nested)
2795                                 return return_nested_in (class, nested);
2796                         return class;
2797                 } else {
2798                         g_error ("not yet implemented");
2799                 }
2800         }
2801
2802         token = MONO_TOKEN_TYPE_DEF | token;
2803
2804         class = mono_class_get (image, token);
2805         if (nested)
2806                 return return_nested_in (class, nested);
2807         return class;
2808 }
2809
2810 gboolean
2811 mono_class_is_subclass_of (MonoClass *klass, MonoClass *klassc, 
2812                            gboolean check_interfaces)
2813 {
2814  again:
2815         if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && !MONO_CLASS_IS_INTERFACE (klass)) {
2816                 if ((klassc->interface_id <= klass->max_interface_id) &&
2817                         (klass->interface_offsets [klassc->interface_id] >= 0))
2818                         return TRUE;
2819         } else if (check_interfaces && MONO_CLASS_IS_INTERFACE (klassc) && MONO_CLASS_IS_INTERFACE (klass)) {
2820                 int i;
2821
2822                 for (i = 0; i < klass->interface_count; i ++) {
2823                         MonoClass *ic =  klass->interfaces [i];
2824                         if (ic == klassc)
2825                                 return TRUE;
2826                 }
2827         } else {
2828                 if (!MONO_CLASS_IS_INTERFACE (klass) && mono_class_has_parent (klass, klassc))
2829                         return TRUE;
2830         }
2831
2832         /* 
2833          * MS.NET thinks interfaces are a subclass of Object, so we think it as
2834          * well.
2835          */
2836         if (klassc == mono_defaults.object_class)
2837                 return TRUE;
2838
2839         if (klass->generic_class) {
2840                 MonoType *parent = klass->generic_class->parent;
2841                 if (!parent)
2842                         return FALSE;
2843
2844                 if (mono_metadata_type_equal (parent, &klassc->byval_arg))
2845                         return TRUE;
2846                 klass = mono_class_from_mono_type (parent);
2847                 goto again;
2848         }
2849         
2850         return FALSE;
2851 }
2852
2853 gboolean
2854 mono_class_is_assignable_from (MonoClass *klass, MonoClass *oklass)
2855 {
2856         if (!klass->inited)
2857                 mono_class_init (klass);
2858
2859         if (!oklass->inited)
2860                 mono_class_init (oklass);
2861
2862         if (MONO_CLASS_IS_INTERFACE (klass)) {
2863                 if ((klass->interface_id <= oklass->max_interface_id) &&
2864                     (oklass->interface_offsets [klass->interface_id] != -1))
2865                         return TRUE;
2866         } else
2867                 if (klass->rank) {
2868                         MonoClass *eclass, *eoclass;
2869
2870                         if (oklass->rank != klass->rank)
2871                                 return FALSE;
2872
2873                         /* vectors vs. one dimensional arrays */
2874                         if (oklass->byval_arg.type != klass->byval_arg.type)
2875                                 return FALSE;
2876
2877                         eclass = klass->cast_class;
2878                         eoclass = oklass->cast_class;
2879
2880
2881                         /* 
2882                          * a is b does not imply a[] is b[] when a is a valuetype, and
2883                          * b is a reference type.
2884                          */
2885
2886                         if (eoclass->valuetype) {
2887                                 if ((eclass == mono_defaults.enum_class) || 
2888                                         (eclass == mono_defaults.enum_class->parent) ||
2889                                         (eclass == mono_defaults.object_class))
2890                                         return FALSE;
2891                         }
2892
2893                         return mono_class_is_assignable_from (klass->cast_class, oklass->cast_class);
2894                 }
2895         else
2896                 if (klass == mono_defaults.object_class)
2897                         return TRUE;
2898
2899         return mono_class_has_parent (oklass, klass);
2900 }       
2901
2902 /*
2903  * mono_class_needs_cctor_run:
2904  *
2905  *  Determines whenever the class has a static constructor and whenever it
2906  * needs to be called when executing CALLER.
2907  */
2908 gboolean
2909 mono_class_needs_cctor_run (MonoClass *klass, MonoMethod *caller)
2910 {
2911         int i;
2912         MonoMethod *method;
2913         
2914         for (i = 0; i < klass->method.count; ++i) {
2915                 method = klass->methods [i];
2916                 if ((method->flags & METHOD_ATTRIBUTE_SPECIAL_NAME) && 
2917                     (strcmp (".cctor", method->name) == 0)) {
2918                         if (caller == method)
2919                                 return FALSE;
2920                         return TRUE;
2921                 }
2922         }
2923         return FALSE;
2924 }
2925
2926 /**
2927  * mono_class_array_element_size:
2928  * @klass: 
2929  *
2930  * Returns: the number of bytes an element of type @klass
2931  * uses when stored into an array.
2932  */
2933 gint32
2934 mono_class_array_element_size (MonoClass *klass)
2935 {
2936         MonoType *type = &klass->byval_arg;
2937         
2938 handle_enum:
2939         switch (type->type) {
2940         case MONO_TYPE_I1:
2941         case MONO_TYPE_U1:
2942         case MONO_TYPE_BOOLEAN:
2943                 return 1;
2944         case MONO_TYPE_I2:
2945         case MONO_TYPE_U2:
2946         case MONO_TYPE_CHAR:
2947                 return 2;
2948         case MONO_TYPE_I4:
2949         case MONO_TYPE_U4:
2950         case MONO_TYPE_R4:
2951                 return 4;
2952         case MONO_TYPE_I:
2953         case MONO_TYPE_U:
2954         case MONO_TYPE_PTR:
2955         case MONO_TYPE_CLASS:
2956         case MONO_TYPE_STRING:
2957         case MONO_TYPE_OBJECT:
2958         case MONO_TYPE_SZARRAY:
2959         case MONO_TYPE_ARRAY: 
2960         case MONO_TYPE_VAR:
2961         case MONO_TYPE_MVAR:   
2962                 return sizeof (gpointer);
2963         case MONO_TYPE_I8:
2964         case MONO_TYPE_U8:
2965         case MONO_TYPE_R8:
2966                 return 8;
2967         case MONO_TYPE_VALUETYPE:
2968                 if (type->data.klass->enumtype) {
2969                         type = type->data.klass->enum_basetype;
2970                         klass = klass->element_class;
2971                         goto handle_enum;
2972                 }
2973                 return mono_class_instance_size (klass) - sizeof (MonoObject);
2974         case MONO_TYPE_GENERICINST:
2975                 type = type->data.generic_class->generic_type;
2976                 goto handle_enum;
2977         default:
2978                 g_error ("unknown type 0x%02x in mono_class_array_element_size", type->type);
2979         }
2980         return -1;
2981 }
2982
2983 /**
2984  * mono_array_element_size:
2985  * @ac: pointer to a #MonoArrayClass
2986  *
2987  * Returns: the size of single array element.
2988  */
2989 gint32
2990 mono_array_element_size (MonoClass *ac)
2991 {
2992         return mono_class_array_element_size (ac->element_class);
2993 }
2994
2995 gpointer
2996 mono_ldtoken (MonoImage *image, guint32 token, MonoClass **handle_class,
2997               MonoGenericContext *context)
2998 {
2999         if (image->dynamic) {
3000                 gpointer obj = mono_lookup_dynamic_token (image, token);
3001
3002                 switch (token & 0xff000000) {
3003                 case MONO_TOKEN_TYPE_DEF:
3004                 case MONO_TOKEN_TYPE_REF:
3005                 case MONO_TOKEN_TYPE_SPEC:
3006                         if (handle_class)
3007                                 *handle_class = mono_defaults.typehandle_class;
3008                         return &((MonoClass*)obj)->byval_arg;
3009                 case MONO_TOKEN_METHOD_DEF:
3010                         if (handle_class)
3011                                 *handle_class = mono_defaults.methodhandle_class;
3012                         return obj;
3013                 case MONO_TOKEN_FIELD_DEF:
3014                         if (handle_class)
3015                                 *handle_class = mono_defaults.fieldhandle_class;
3016                         return obj;
3017                 default:
3018                         g_assert_not_reached ();
3019                 }
3020         }
3021
3022         switch (token & 0xff000000) {
3023         case MONO_TOKEN_TYPE_DEF:
3024         case MONO_TOKEN_TYPE_REF: {
3025                 MonoClass *class;
3026                 if (handle_class)
3027                         *handle_class = mono_defaults.typehandle_class;
3028                 class = mono_class_get_full (image, token, context);
3029                 mono_class_init (class);
3030                 /* We return a MonoType* as handle */
3031                 return &class->byval_arg;
3032         }
3033         case MONO_TOKEN_TYPE_SPEC: {
3034                 MonoClass *class;
3035                 if (handle_class)
3036                         *handle_class = mono_defaults.typehandle_class;
3037                 class = mono_class_create_from_typespec (image, token, context);
3038                 mono_class_init (class);
3039                 return &class->byval_arg;
3040         }
3041         case MONO_TOKEN_FIELD_DEF: {
3042                 MonoClass *class;
3043                 guint32 type = mono_metadata_typedef_from_field (image, mono_metadata_token_index (token));
3044                 class = mono_class_get_full (image, MONO_TOKEN_TYPE_DEF | type, context);
3045                 mono_class_init (class);
3046                 if (handle_class)
3047                         *handle_class = mono_defaults.fieldhandle_class;
3048                 return mono_class_get_field (class, token);
3049         }
3050         case MONO_TOKEN_METHOD_DEF: {
3051                 MonoMethod *meth;
3052                 meth = mono_get_method_full (image, token, NULL, context);
3053                 if (handle_class)
3054                         *handle_class = mono_defaults.methodhandle_class;
3055                 return meth;
3056         }
3057         case MONO_TOKEN_MEMBER_REF: {
3058                 guint32 cols [MONO_MEMBERREF_SIZE];
3059                 const char *sig;
3060                 mono_metadata_decode_row (&image->tables [MONO_TABLE_MEMBERREF], mono_metadata_token_index (token) - 1, cols, MONO_MEMBERREF_SIZE);
3061                 sig = mono_metadata_blob_heap (image, cols [MONO_MEMBERREF_SIGNATURE]);
3062                 mono_metadata_decode_blob_size (sig, &sig);
3063                 if (*sig == 0x6) { /* it's a field */
3064                         MonoClass *klass;
3065                         MonoClassField *field;
3066                         field = mono_field_from_token (image, token, &klass, context);
3067                         if (handle_class)
3068                                 *handle_class = mono_defaults.fieldhandle_class;
3069                         return field;
3070                 } else {
3071                         MonoMethod *meth;
3072                         meth = mono_get_method_full (image, token, NULL, context);
3073                         if (handle_class)
3074                                 *handle_class = mono_defaults.methodhandle_class;
3075                         return meth;
3076                 }
3077         }
3078         default:
3079                 g_warning ("Unknown token 0x%08x in ldtoken", token);
3080                 break;
3081         }
3082         return NULL;
3083 }
3084
3085 /**
3086  * This function might need to call runtime functions so it can't be part
3087  * of the metadata library.
3088  */
3089 static MonoLookupDynamicToken lookup_dynamic = NULL;
3090
3091 void
3092 mono_install_lookup_dynamic_token (MonoLookupDynamicToken func)
3093 {
3094         lookup_dynamic = func;
3095 }
3096
3097 gpointer
3098 mono_lookup_dynamic_token (MonoImage *image, guint32 token)
3099 {
3100         return lookup_dynamic (image, token);
3101 }
3102
3103 MonoImage*
3104 mono_class_get_image (MonoClass *klass)
3105 {
3106         return klass->image;
3107 }
3108
3109 /**
3110  * mono_class_get_element_class:
3111  * @klass: the MonoClass to act on
3112  *
3113  * Returns: the element class of an array or an enumeration.
3114  */
3115 MonoClass*
3116 mono_class_get_element_class (MonoClass *klass)
3117 {
3118         return klass->element_class;
3119 }
3120
3121 /**
3122  * mono_class_is_valuetype:
3123  * @klass: the MonoClass to act on
3124  *
3125  * Returns: true if the MonoClass represents a ValueType.
3126  */
3127 gboolean
3128 mono_class_is_valuetype (MonoClass *klass)
3129 {
3130         return klass->valuetype;
3131 }
3132
3133 /**
3134  * mono_class_is_enum:
3135  * @klass: the MonoClass to act on
3136  *
3137  * Returns: true if the MonoClass represents an enumeration.
3138  */
3139 gboolean
3140 mono_class_is_enum (MonoClass *klass)
3141 {
3142         return klass->enumtype;
3143 }
3144
3145 /**
3146  * mono_class_enum_basetype:
3147  * @klass: the MonoClass to act on
3148  *
3149  * Returns: the underlying type representation for an enumeration.
3150  */
3151 MonoType*
3152 mono_class_enum_basetype (MonoClass *klass)
3153 {
3154         return klass->enum_basetype;
3155 }
3156
3157 /**
3158  * mono_class_get_parent
3159  * @klass: the MonoClass to act on
3160  *
3161  * Returns: the parent class for this class.
3162  */
3163 MonoClass*
3164 mono_class_get_parent (MonoClass *klass)
3165 {
3166         return klass->parent;
3167 }
3168
3169 /**
3170  * mono_class_get_nesting_type;
3171  * @klass: the MonoClass to act on
3172  *
3173  * Returns: the container type where this type is nested or NULL if this type is not a nested type.
3174  */
3175 MonoClass*
3176 mono_class_get_nesting_type (MonoClass *klass)
3177 {
3178         return klass->nested_in;
3179 }
3180
3181 /**
3182  * mono_class_get_rank:
3183  * @klass: the MonoClass to act on
3184  *
3185  * Returns: the rank for the array (the number of dimensions).
3186  */
3187 int
3188 mono_class_get_rank (MonoClass *klass)
3189 {
3190         return klass->rank;
3191 }
3192
3193 /**
3194  * mono_class_get_flags:
3195  * @klass: the MonoClass to act on
3196  *
3197  * The type flags from the TypeDef table from the metadata.
3198  * see the TYPE_ATTRIBUTE_* definitions on tabledefs.h for the
3199  * different values.
3200  *
3201  * Returns: the flags from the TypeDef table.
3202  */
3203 guint32
3204 mono_class_get_flags (MonoClass *klass)
3205 {
3206         return klass->flags;
3207 }
3208
3209 /**
3210  * mono_class_get_name
3211  * @klass: the MonoClass to act on
3212  *
3213  * Returns: the name of the class.
3214  */
3215 const char*
3216 mono_class_get_name (MonoClass *klass)
3217 {
3218         return klass->name;
3219 }
3220
3221 /**
3222  * mono_class_get_namespace:
3223  * @klass: the MonoClass to act on
3224  *
3225  * Returns: the namespace of the class.
3226  */
3227 const char*
3228 mono_class_get_namespace (MonoClass *klass)
3229 {
3230         return klass->name_space;
3231 }
3232
3233 /**
3234  * mono_class_get_type:
3235  * @klass: the MonoClass to act on
3236  *
3237  * This method returns the internal Type representation for the class.
3238  *
3239  * Returns: the MonoType from the class.
3240  */
3241 MonoType*
3242 mono_class_get_type (MonoClass *klass)
3243 {
3244         return &klass->byval_arg;
3245 }
3246
3247 /**
3248  * mono_class_get_byref_type:
3249  * @klass: the MonoClass to act on
3250  *
3251  * 
3252  */
3253 MonoType*
3254 mono_class_get_byref_type (MonoClass *klass)
3255 {
3256         return &klass->this_arg;
3257 }
3258
3259 /**
3260  * mono_class_num_fields:
3261  * @klass: the MonoClass to act on
3262  *
3263  * Returns: the number of static and instance fields in the class.
3264  */
3265 int
3266 mono_class_num_fields (MonoClass *klass)
3267 {
3268         return klass->field.count;
3269 }
3270
3271 /**
3272  * mono_class_num_methods:
3273  * @klass: the MonoClass to act on
3274  *
3275  * Returns: the number of methods in the class.
3276  */
3277 int
3278 mono_class_num_methods (MonoClass *klass)
3279 {
3280         return klass->method.count;
3281 }
3282
3283 /**
3284  * mono_class_num_properties
3285  * @klass: the MonoClass to act on
3286  *
3287  * Returns: the number of properties in the class.
3288  */
3289 int
3290 mono_class_num_properties (MonoClass *klass)
3291 {
3292         return klass->property.count;
3293 }
3294
3295 /**
3296  * mono_class_num_events:
3297  * @klass: the MonoClass to act on
3298  *
3299  * Returns: the number of events in the class.
3300  */
3301 int
3302 mono_class_num_events (MonoClass *klass)
3303 {
3304         return klass->event.count;
3305 }
3306
3307 /**
3308  * mono_class_get_fields:
3309  * @klass: the MonoClass to act on
3310  *
3311  * This routine is an iterator routine for retrieving the fields in a class.
3312  *
3313  * You must pass a gpointer that points to zero and is treated as an opaque handle to
3314  * iterate over all of the elements.  When no more values are
3315  * available, the return value is NULL.
3316  *
3317  * Returns: a @MonoClassField* on each iteration, or NULL when no more fields are available.
3318  */
3319 MonoClassField*
3320 mono_class_get_fields (MonoClass* klass, gpointer *iter)
3321 {
3322         MonoClassField* field;
3323         if (!iter)
3324                 return NULL;
3325         if (!klass->inited)
3326                 mono_class_init (klass);
3327         if (!*iter) {
3328                 /* start from the first */
3329                 if (klass->field.count) {
3330                         return *iter = &klass->fields [0];
3331                 } else {
3332                         /* no fields */
3333                         return NULL;
3334                 }
3335         }
3336         field = *iter;
3337         field++;
3338         if (field < &klass->fields [klass->field.count]) {
3339                 return *iter = field;
3340         }
3341         return NULL;
3342 }
3343
3344 /**
3345  * mono_class_get_methods
3346  * @klass: the MonoClass to act on
3347  *
3348  * This routine is an iterator routine for retrieving the fields in a class.
3349  *
3350  * You must pass a gpointer that points to zero and is treated as an opaque handle to
3351  * iterate over all of the elements.  When no more values are
3352  * available, the return value is NULL.
3353  *
3354  * Returns: a MonoMethod on each iteration or NULL when no more methods are available.
3355  */
3356 MonoMethod*
3357 mono_class_get_methods (MonoClass* klass, gpointer *iter)
3358 {
3359         MonoMethod** method;
3360         if (!iter)
3361                 return NULL;
3362         if (!klass->inited)
3363                 mono_class_init (klass);
3364         if (!*iter) {
3365                 /* start from the first */
3366                 if (klass->method.count) {
3367                         *iter = &klass->methods [0];
3368                         return klass->methods [0];
3369                 } else {
3370                         /* no method */
3371                         return NULL;
3372                 }
3373         }
3374         method = *iter;
3375         method++;
3376         if (method < &klass->methods [klass->method.count]) {
3377                 *iter = method;
3378                 return *method;
3379         }
3380         return NULL;
3381 }
3382
3383 /**
3384  * mono_class_get_properties:
3385  * @klass: the MonoClass to act on
3386  *
3387  * This routine is an iterator routine for retrieving the properties in a class.
3388  *
3389  * You must pass a gpointer that points to zero and is treated as an opaque handle to
3390  * iterate over all of the elements.  When no more values are
3391  * available, the return value is NULL.
3392  *
3393  * Returns: a @MonoProperty* on each invocation, or NULL when no more are available.
3394  */
3395 MonoProperty*
3396 mono_class_get_properties (MonoClass* klass, gpointer *iter)
3397 {
3398         MonoProperty* property;
3399         if (!iter)
3400                 return NULL;
3401         if (!klass->inited)
3402                 mono_class_init (klass);
3403         if (!*iter) {
3404                 /* start from the first */
3405                 if (klass->property.count) {
3406                         return *iter = &klass->properties [0];
3407                 } else {
3408                         /* no fields */
3409                         return NULL;
3410                 }
3411         }
3412         property = *iter;
3413         property++;
3414         if (property < &klass->properties [klass->property.count]) {
3415                 return *iter = property;
3416         }
3417         return NULL;
3418 }
3419
3420 /**
3421  * mono_class_get_events:
3422  * @klass: the MonoClass to act on
3423  *
3424  * This routine is an iterator routine for retrieving the properties in a class.
3425  *
3426  * You must pass a gpointer that points to zero and is treated as an opaque handle to
3427  * iterate over all of the elements.  When no more values are
3428  * available, the return value is NULL.
3429  *
3430  * Returns: a @MonoEvent* on each invocation, or NULL when no more are available.
3431  */
3432 MonoEvent*
3433 mono_class_get_events (MonoClass* klass, gpointer *iter)
3434 {
3435         MonoEvent* event;
3436         if (!iter)
3437                 return NULL;
3438         if (!klass->inited)
3439                 mono_class_init (klass);
3440         if (!*iter) {
3441                 /* start from the first */
3442                 if (klass->event.count) {
3443                         return *iter = &klass->events [0];
3444                 } else {
3445                         /* no fields */
3446                         return NULL;
3447                 }
3448         }
3449         event = *iter;
3450         event++;
3451         if (event < &klass->events [klass->event.count]) {
3452                 return *iter = event;
3453         }
3454         return NULL;
3455 }
3456
3457 /**
3458  * mono_class_get_interfaces
3459  * @klass: the MonoClass to act on
3460  *
3461  * This routine is an iterator routine for retrieving the interfaces implemented by this class.
3462  *
3463  * You must pass a gpointer that points to zero and is treated as an opaque handle to
3464  * iterate over all of the elements.  When no more values are
3465  * available, the return value is NULL.
3466  *
3467  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
3468  */
3469 MonoClass*
3470 mono_class_get_interfaces (MonoClass* klass, gpointer *iter)
3471 {
3472         MonoClass** iface;
3473         if (!iter)
3474                 return NULL;
3475         if (!klass->inited)
3476                 mono_class_init (klass);
3477         if (!*iter) {
3478                 /* start from the first */
3479                 if (klass->interface_count) {
3480                         *iter = &klass->interfaces [0];
3481                         return klass->interfaces [0];
3482                 } else {
3483                         /* no interface */
3484                         return NULL;
3485                 }
3486         }
3487         iface = *iter;
3488         iface++;
3489         if (iface < &klass->interfaces [klass->interface_count]) {
3490                 *iter = iface;
3491                 return *iface;
3492         }
3493         return NULL;
3494 }
3495
3496 /**
3497  * mono_class_get_nested_types
3498  * @klass: the MonoClass to act on
3499  *
3500  * This routine is an iterator routine for retrieving the nested types of a class.
3501  *
3502  * You must pass a gpointer that points to zero and is treated as an opaque handle to
3503  * iterate over all of the elements.  When no more values are
3504  * available, the return value is NULL.
3505  *
3506  * Returns: a @Monoclass* on each invocation, or NULL when no more are available.
3507  */
3508 MonoClass*
3509 mono_class_get_nested_types (MonoClass* klass, gpointer *iter)
3510 {
3511         GList *item;
3512         if (!iter)
3513                 return NULL;
3514         if (!klass->inited)
3515                 mono_class_init (klass);
3516         if (!*iter) {
3517                 /* start from the first */
3518                 if (klass->nested_classes) {
3519                         *iter = klass->nested_classes;
3520                         return klass->nested_classes->data;
3521                 } else {
3522                         /* no nested types */
3523                         return NULL;
3524                 }
3525         }
3526         item = *iter;
3527         item = item->next;
3528         if (item) {
3529                 *iter = item;
3530                 return item->data;
3531         }
3532         return NULL;
3533 }
3534
3535 /**
3536  * mono_field_get_name:
3537  * @field: the MonoClassField to act on
3538  *
3539  * Returns: the name of the field.
3540  */
3541 const char*
3542 mono_field_get_name (MonoClassField *field)
3543 {
3544         return field->name;
3545 }
3546
3547 /**
3548  * mono_field_get_type:
3549  * @field: the MonoClassField to act on
3550  *
3551  * Returns: MonoType of the field.
3552  */
3553 MonoType*
3554 mono_field_get_type (MonoClassField *field)
3555 {
3556         return field->type;
3557 }
3558
3559 /**
3560  * mono_field_get_type:
3561  * @field: the MonoClassField to act on
3562  *
3563  * Returns: MonoClass where the field was defined.
3564  */
3565 MonoClass*
3566 mono_field_get_parent (MonoClassField *field)
3567 {
3568         return field->parent;
3569 }
3570
3571 /**
3572  * mono_field_get_flags;
3573  * @field: the MonoClassField to act on
3574  *
3575  * The metadata flags for a field are encoded using the
3576  * FIELD_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
3577  *
3578  * Returns: the flags for the field.
3579  */
3580 guint32
3581 mono_field_get_flags (MonoClassField *field)
3582 {
3583         return field->type->attrs;
3584 }
3585
3586 /**
3587  * mono_property_get_name: 
3588  * @prop: the MonoProperty to act on
3589  *
3590  * Returns: the name of the property
3591  */
3592 const char*
3593 mono_property_get_name (MonoProperty *prop)
3594 {
3595         return prop->name;
3596 }
3597
3598 /**
3599  * mono_property_get_set_method
3600  * @prop: the MonoProperty to act on.
3601  *
3602  * Returns: the setter method of the property (A MonoMethod)
3603  */
3604 MonoMethod*
3605 mono_property_get_set_method (MonoProperty *prop)
3606 {
3607         return prop->set;
3608 }
3609
3610 /**
3611  * mono_property_get_get_method
3612  * @prop: the MonoProperty to act on.
3613  *
3614  * Returns: the setter method of the property (A MonoMethod)
3615  */
3616 MonoMethod*
3617 mono_property_get_get_method (MonoProperty *prop)
3618 {
3619         return prop->get;
3620 }
3621
3622 /**
3623  * mono_property_get_parent:
3624  * @prop: the MonoProperty to act on.
3625  *
3626  * Returns: the MonoClass where the property was defined.
3627  */
3628 MonoClass*
3629 mono_property_get_parent (MonoProperty *prop)
3630 {
3631         return prop->parent;
3632 }
3633
3634 /**
3635  * mono_property_get_flags:
3636  * @prop: the MonoProperty to act on.
3637  *
3638  * The metadata flags for a property are encoded using the
3639  * PROPERTY_ATTRIBUTE_* constants.  See the tabledefs.h file for details.
3640  *
3641  * Returns: the flags for the property.
3642  */
3643 guint32
3644 mono_property_get_flags (MonoProperty *prop)
3645 {
3646         return prop->attrs;
3647 }
3648
3649 /**
3650  * mono_event_get_name:
3651  * @event: the MonoEvent to act on
3652  *
3653  * Returns: the name of the event.
3654  */
3655 const char*
3656 mono_event_get_name (MonoEvent *event)
3657 {
3658         return event->name;
3659 }
3660
3661 /**
3662  * mono_event_get_add_method:
3663  * @event: The MonoEvent to act on.
3664  *
3665  * Returns: the @add' method for the event (a MonoMethod).
3666  */
3667 MonoMethod*
3668 mono_event_get_add_method (MonoEvent *event)
3669 {
3670         return event->add;
3671 }
3672
3673 /**
3674  * mono_event_get_remove_method:
3675  * @event: The MonoEvent to act on.
3676  *
3677  * Returns: the @remove method for the event (a MonoMethod).
3678  */
3679 MonoMethod*
3680 mono_event_get_remove_method (MonoEvent *event)
3681 {
3682         return event->remove;
3683 }
3684
3685 /**
3686  * mono_event_get_raise_method:
3687  * @event: The MonoEvent to act on.
3688  *
3689  * Returns: the @raise method for the event (a MonoMethod).
3690  */
3691 MonoMethod*
3692 mono_event_get_raise_method (MonoEvent *event)
3693 {
3694         return event->raise;
3695 }
3696
3697 /**
3698  * mono_event_get_parent:
3699  * @event: the MonoEvent to act on.
3700  *
3701  * Returns: the MonoClass where the event is defined.
3702  */
3703 MonoClass*
3704 mono_event_get_parent (MonoEvent *event)
3705 {
3706         return event->parent;
3707 }
3708
3709 /**
3710  * mono_event_get_flags
3711  * @event: the MonoEvent to act on.
3712  *
3713  * The metadata flags for an event are encoded using the
3714  * EVENT_* constants.  See the tabledefs.h file for details.
3715  *
3716  * Returns: the flags for the event.
3717  */
3718 guint32
3719 mono_event_get_flags (MonoEvent *event)
3720 {
3721         return event->attrs;
3722 }
3723
3724 /**
3725  * mono_find_method_by_name:
3726  * @klass: where to look for the method
3727  * @name_space: name of the method
3728  * @param_count: number of parameters. -1 for any number.
3729  *
3730  * Obtains a MonoMethod with a given name and number of parameters.
3731  * It only works if there are no multiple signatures for any given method name.
3732  */
3733 MonoMethod *
3734 mono_class_get_method_from_name (MonoClass *klass, const char *name, int param_count)
3735 {
3736         MonoMethod *res = NULL;
3737         int i;
3738
3739         mono_class_init (klass);
3740
3741         for (i = 0; i < klass->method.count; ++i) {
3742                 if (klass->methods [i]->name[0] == name [0] && 
3743                     !strcmp (name, klass->methods [i]->name) &&
3744                     (param_count == -1 || klass->methods [i]->signature->param_count == param_count)) {
3745                         res = klass->methods [i];
3746                         break;
3747                 }
3748         }
3749         return res;
3750 }