2009-04-13 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / metadata.c
1 /*
2  * metadata.c: Routines for accessing the metadata
3  *
4  * Authors:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *   Paolo Molaro (lupus@ximian.com)
7  *
8  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
9  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
10  */
11
12 #include <config.h>
13 #ifdef HAVE_ALLOCA_H
14 #include <alloca.h>
15 #endif
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <glib.h>
20 #include "metadata.h"
21 #include "tabledefs.h"
22 #include "mono-endian.h"
23 #include "cil-coff.h"
24 #include "tokentype.h"
25 #include "metadata-internals.h"
26 #include "class-internals.h"
27 #include "class.h"
28
29 static gboolean do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContainer *container,
30                                          const char *ptr, const char **rptr);
31
32 static gboolean do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only);
33 static gboolean mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only);
34 static gboolean mono_metadata_fnptr_equal (MonoMethodSignature *s1, MonoMethodSignature *s2, gboolean signature_only);
35 static gboolean _mono_metadata_generic_class_equal (const MonoGenericClass *g1, const MonoGenericClass *g2,
36                                                     gboolean signature_only);
37 static void free_generic_inst (MonoGenericInst *ginst);
38 static void free_generic_class (MonoGenericClass *ginst);
39 static void free_inflated_method (MonoMethodInflated *method);
40 static void mono_metadata_field_info_full (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, MonoMarshalSpec **marshal_spec, gboolean alloc_from_image);
41
42 /*
43  * This enumeration is used to describe the data types in the metadata
44  * tables
45  */
46 enum {
47         MONO_MT_END,
48
49         /* Sized elements */
50         MONO_MT_UINT32,
51         MONO_MT_UINT16,
52         MONO_MT_UINT8,
53
54         /* Index into Blob heap */
55         MONO_MT_BLOB_IDX,
56
57         /* Index into String heap */
58         MONO_MT_STRING_IDX,
59
60         /* GUID index */
61         MONO_MT_GUID_IDX,
62
63         /* Pointer into a table */
64         MONO_MT_TABLE_IDX,
65
66         /* HasConstant:Parent pointer (Param, Field or Property) */
67         MONO_MT_CONST_IDX,
68
69         /* HasCustomAttribute index.  Indexes any table except CustomAttribute */
70         MONO_MT_HASCAT_IDX,
71         
72         /* CustomAttributeType encoded index */
73         MONO_MT_CAT_IDX,
74
75         /* HasDeclSecurity index: TypeDef Method or Assembly */
76         MONO_MT_HASDEC_IDX,
77
78         /* Implementation coded index: File, Export AssemblyRef */
79         MONO_MT_IMPL_IDX,
80
81         /* HasFieldMarshal coded index: Field or Param table */
82         MONO_MT_HFM_IDX,
83
84         /* MemberForwardedIndex: Field or Method */
85         MONO_MT_MF_IDX,
86
87         /* TypeDefOrRef coded index: typedef, typeref, typespec */
88         MONO_MT_TDOR_IDX,
89
90         /* MemberRefParent coded index: typeref, moduleref, method, memberref, typesepc, typedef */
91         MONO_MT_MRP_IDX,
92
93         /* MethodDefOrRef coded index: Method or Member Ref table */
94         MONO_MT_MDOR_IDX,
95
96         /* HasSemantic coded index: Event or Property */
97         MONO_MT_HS_IDX,
98
99         /* ResolutionScope coded index: Module, ModuleRef, AssemblytRef, TypeRef */
100         MONO_MT_RS_IDX
101 };
102
103 const static unsigned char TableSchemas [] = {
104 #define ASSEMBLY_SCHEMA_OFFSET 0
105         MONO_MT_UINT32,     /* "HashId" }, */
106         MONO_MT_UINT16,     /* "Major" },  */
107         MONO_MT_UINT16,     /* "Minor" }, */
108         MONO_MT_UINT16,     /* "BuildNumber" }, */
109         MONO_MT_UINT16,     /* "RevisionNumber" }, */
110         MONO_MT_UINT32,     /* "Flags" }, */
111         MONO_MT_BLOB_IDX,   /* "PublicKey" }, */
112         MONO_MT_STRING_IDX, /* "Name" }, */
113         MONO_MT_STRING_IDX, /* "Culture" }, */
114         MONO_MT_END,
115
116 #define ASSEMBLYOS_SCHEMA_OFFSET ASSEMBLY_SCHEMA_OFFSET + 10
117         MONO_MT_UINT32,     /* "OSPlatformID" }, */
118         MONO_MT_UINT32,     /* "OSMajor" }, */
119         MONO_MT_UINT32,     /* "OSMinor" }, */
120         MONO_MT_END,
121
122 #define ASSEMBLYPROC_SCHEMA_OFFSET ASSEMBLYOS_SCHEMA_OFFSET + 4
123         MONO_MT_UINT32,     /* "Processor" }, */
124         MONO_MT_END,
125
126 #define ASSEMBLYREF_SCHEMA_OFFSET ASSEMBLYPROC_SCHEMA_OFFSET + 2
127         MONO_MT_UINT16,     /* "Major" }, */
128         MONO_MT_UINT16,     /* "Minor" }, */
129         MONO_MT_UINT16,     /* "Build" }, */
130         MONO_MT_UINT16,     /* "Revision" }, */
131         MONO_MT_UINT32,     /* "Flags" }, */
132         MONO_MT_BLOB_IDX,   /* "PublicKeyOrToken" }, */
133         MONO_MT_STRING_IDX, /* "Name" }, */
134         MONO_MT_STRING_IDX, /* "Culture" }, */
135         MONO_MT_BLOB_IDX,   /* "HashValue" }, */
136         MONO_MT_END,
137
138 #define ASSEMBLYREFOS_SCHEMA_OFFSET ASSEMBLYREF_SCHEMA_OFFSET + 10
139         MONO_MT_UINT32,     /* "OSPlatformID" }, */
140         MONO_MT_UINT32,     /* "OSMajorVersion" }, */
141         MONO_MT_UINT32,     /* "OSMinorVersion" }, */
142         MONO_MT_TABLE_IDX,  /* "AssemblyRef:AssemblyRef" }, */
143         MONO_MT_END,
144
145 #define ASSEMBLYREFPROC_SCHEMA_OFFSET ASSEMBLYREFOS_SCHEMA_OFFSET + 5
146         MONO_MT_UINT32,     /* "Processor" }, */
147         MONO_MT_TABLE_IDX,  /* "AssemblyRef:AssemblyRef" }, */
148         MONO_MT_END,
149
150 #define CLASS_LAYOUT_SCHEMA_OFFSET ASSEMBLYREFPROC_SCHEMA_OFFSET + 3
151         MONO_MT_UINT16,     /* "PackingSize" }, */
152         MONO_MT_UINT32,     /* "ClassSize" }, */
153         MONO_MT_TABLE_IDX,  /* "Parent:TypeDef" }, */
154         MONO_MT_END,
155
156 #define CONSTANT_SCHEMA_OFFSET CLASS_LAYOUT_SCHEMA_OFFSET + 4
157         MONO_MT_UINT8,      /* "Type" }, */
158         MONO_MT_UINT8,      /* "PaddingZero" }, */
159         MONO_MT_CONST_IDX,  /* "Parent" }, */
160         MONO_MT_BLOB_IDX,   /* "Value" }, */
161         MONO_MT_END,
162
163 #define CUSTOM_ATTR_SCHEMA_OFFSET CONSTANT_SCHEMA_OFFSET + 5
164         MONO_MT_HASCAT_IDX, /* "Parent" }, */
165         MONO_MT_CAT_IDX,    /* "Type" }, */
166         MONO_MT_BLOB_IDX,   /* "Value" }, */
167         MONO_MT_END,
168
169 #define DECL_SEC_SCHEMA_OFFSET CUSTOM_ATTR_SCHEMA_OFFSET + 4
170         MONO_MT_UINT16,     /* "Action" }, */
171         MONO_MT_HASDEC_IDX, /* "Parent" }, */
172         MONO_MT_BLOB_IDX,   /* "PermissionSet" }, */
173         MONO_MT_END,
174
175 #define EVENTMAP_SCHEMA_OFFSET DECL_SEC_SCHEMA_OFFSET + 4
176         MONO_MT_TABLE_IDX,  /* "Parent:TypeDef" }, */
177         MONO_MT_TABLE_IDX,  /* "EventList:Event" }, */
178         MONO_MT_END,
179
180 #define EVENT_SCHEMA_OFFSET EVENTMAP_SCHEMA_OFFSET + 3
181         MONO_MT_UINT16,     /* "EventFlags#EventAttribute" }, */
182         MONO_MT_STRING_IDX, /* "Name" }, */
183         MONO_MT_TABLE_IDX,  /* "EventType" }, TypeDef or TypeRef  */
184         MONO_MT_END,
185
186 #define EVENT_POINTER_SCHEMA_OFFSET EVENT_SCHEMA_OFFSET + 4
187         MONO_MT_TABLE_IDX,  /* "Event" }, */
188         MONO_MT_END,
189
190 #define EXPORTED_TYPE_SCHEMA_OFFSET EVENT_POINTER_SCHEMA_OFFSET + 2
191         MONO_MT_UINT32,     /* "Flags" }, */
192         MONO_MT_TABLE_IDX,  /* "TypeDefId" }, */
193         MONO_MT_STRING_IDX, /* "TypeName" }, */
194         MONO_MT_STRING_IDX, /* "TypeNameSpace" }, */
195         MONO_MT_IMPL_IDX,   /* "Implementation" }, */
196         MONO_MT_END,
197
198 #define FIELD_SCHEMA_OFFSET EXPORTED_TYPE_SCHEMA_OFFSET + 6
199         MONO_MT_UINT16,     /* "Flags" }, */
200         MONO_MT_STRING_IDX, /* "Name" }, */
201         MONO_MT_BLOB_IDX,   /* "Signature" }, */
202         MONO_MT_END,
203
204 #define FIELD_LAYOUT_SCHEMA_OFFSET FIELD_SCHEMA_OFFSET + 4
205         MONO_MT_UINT32,     /* "Offset" }, */
206         MONO_MT_TABLE_IDX,  /* "Field:Field" }, */
207         MONO_MT_END,
208
209 #define FIELD_MARSHAL_SCHEMA_OFFSET FIELD_LAYOUT_SCHEMA_OFFSET + 3
210         MONO_MT_HFM_IDX,    /* "Parent" }, */
211         MONO_MT_BLOB_IDX,   /* "NativeType" }, */
212         MONO_MT_END,
213
214 #define FIELD_RVA_SCHEMA_OFFSET FIELD_MARSHAL_SCHEMA_OFFSET + 3
215         MONO_MT_UINT32,     /* "RVA" }, */
216         MONO_MT_TABLE_IDX,  /* "Field:Field" }, */
217         MONO_MT_END,
218
219 #define FIELD_POINTER_SCHEMA_OFFSET FIELD_RVA_SCHEMA_OFFSET + 3
220         MONO_MT_TABLE_IDX,  /* "Field" }, */
221         MONO_MT_END,
222
223 #define FILE_SCHEMA_OFFSET FIELD_POINTER_SCHEMA_OFFSET + 2
224         MONO_MT_UINT32,     /* "Flags" }, */
225         MONO_MT_STRING_IDX, /* "Name" }, */
226         MONO_MT_BLOB_IDX,   /* "Value" },  */
227         MONO_MT_END,
228
229 #define IMPLMAP_SCHEMA_OFFSET FILE_SCHEMA_OFFSET + 4
230         MONO_MT_UINT16,     /* "MappingFlag" }, */
231         MONO_MT_MF_IDX,     /* "MemberForwarded" }, */
232         MONO_MT_STRING_IDX, /* "ImportName" }, */
233         MONO_MT_TABLE_IDX,  /* "ImportScope:ModuleRef" }, */
234         MONO_MT_END,
235
236 #define IFACEMAP_SCHEMA_OFFSET IMPLMAP_SCHEMA_OFFSET + 5
237         MONO_MT_TABLE_IDX,  /* "Class:TypeDef" },  */
238         MONO_MT_TDOR_IDX,  /* "Interface=TypeDefOrRef" }, */
239         MONO_MT_END,
240
241 #define MANIFEST_SCHEMA_OFFSET IFACEMAP_SCHEMA_OFFSET + 3
242         MONO_MT_UINT32,     /* "Offset" }, */
243         MONO_MT_UINT32,     /* "Flags" }, */
244         MONO_MT_STRING_IDX, /* "Name" }, */
245         MONO_MT_IMPL_IDX,   /* "Implementation" }, */
246         MONO_MT_END,
247
248 #define MEMBERREF_SCHEMA_OFFSET MANIFEST_SCHEMA_OFFSET + 5
249         MONO_MT_MRP_IDX,    /* "Class" }, */
250         MONO_MT_STRING_IDX, /* "Name" }, */
251         MONO_MT_BLOB_IDX,   /* "Signature" }, */
252         MONO_MT_END,
253
254 #define METHOD_SCHEMA_OFFSET MEMBERREF_SCHEMA_OFFSET + 4
255         MONO_MT_UINT32,     /* "RVA" }, */
256         MONO_MT_UINT16,     /* "ImplFlags#MethodImplAttributes" }, */
257         MONO_MT_UINT16,     /* "Flags#MethodAttribute" }, */
258         MONO_MT_STRING_IDX, /* "Name" }, */
259         MONO_MT_BLOB_IDX,   /* "Signature" }, */
260         MONO_MT_TABLE_IDX,  /* "ParamList:Param" }, */
261         MONO_MT_END,
262
263 #define METHOD_IMPL_SCHEMA_OFFSET METHOD_SCHEMA_OFFSET + 7
264         MONO_MT_TABLE_IDX,  /* "Class:TypeDef" }, */
265         MONO_MT_MDOR_IDX,   /* "MethodBody" }, */
266         MONO_MT_MDOR_IDX,   /* "MethodDeclaration" }, */
267         MONO_MT_END,
268
269 #define METHOD_SEMA_SCHEMA_OFFSET METHOD_IMPL_SCHEMA_OFFSET + 4
270         MONO_MT_UINT16,     /* "MethodSemantic" }, */
271         MONO_MT_TABLE_IDX,  /* "Method:Method" }, */
272         MONO_MT_HS_IDX,     /* "Association" }, */
273         MONO_MT_END,
274
275 #define METHOD_POINTER_SCHEMA_OFFSET METHOD_SEMA_SCHEMA_OFFSET + 4
276         MONO_MT_TABLE_IDX,  /* "Method" }, */
277         MONO_MT_END,
278
279 #define MODULE_SCHEMA_OFFSET METHOD_POINTER_SCHEMA_OFFSET + 2
280         MONO_MT_UINT16,     /* "Generation" }, */
281         MONO_MT_STRING_IDX, /* "Name" }, */
282         MONO_MT_GUID_IDX,   /* "MVID" }, */
283         MONO_MT_GUID_IDX,   /* "EncID" }, */
284         MONO_MT_GUID_IDX,   /* "EncBaseID" }, */
285         MONO_MT_END,
286
287 #define MODULEREF_SCHEMA_OFFSET MODULE_SCHEMA_OFFSET + 6
288         MONO_MT_STRING_IDX, /* "Name" }, */
289         MONO_MT_END,
290
291 #define NESTED_CLASS_SCHEMA_OFFSET MODULEREF_SCHEMA_OFFSET + 2
292         MONO_MT_TABLE_IDX,  /* "NestedClass:TypeDef" }, */
293         MONO_MT_TABLE_IDX,  /* "EnclosingClass:TypeDef" }, */
294         MONO_MT_END,
295
296 #define PARAM_SCHEMA_OFFSET NESTED_CLASS_SCHEMA_OFFSET + 3
297         MONO_MT_UINT16,     /* "Flags" }, */
298         MONO_MT_UINT16,     /* "Sequence" }, */
299         MONO_MT_STRING_IDX, /* "Name" }, */
300         MONO_MT_END,
301
302 #define PARAM_POINTER_SCHEMA_OFFSET PARAM_SCHEMA_OFFSET + 4
303         MONO_MT_TABLE_IDX,  /* "Param" }, */
304         MONO_MT_END,
305
306 #define PROPERTY_SCHEMA_OFFSET PARAM_POINTER_SCHEMA_OFFSET + 2
307         MONO_MT_UINT16,     /* "Flags" }, */
308         MONO_MT_STRING_IDX, /* "Name" }, */
309         MONO_MT_BLOB_IDX,   /* "Type" }, */
310         MONO_MT_END,
311
312 #define PROPERTY_POINTER_SCHEMA_OFFSET PROPERTY_SCHEMA_OFFSET + 4
313         MONO_MT_TABLE_IDX, /* "Property" }, */
314         MONO_MT_END,
315
316 #define PROPERTY_MAP_SCHEMA_OFFSET PROPERTY_POINTER_SCHEMA_OFFSET + 2
317         MONO_MT_TABLE_IDX,  /* "Parent:TypeDef" }, */
318         MONO_MT_TABLE_IDX,  /* "PropertyList:Property" }, */
319         MONO_MT_END,
320
321 #define STDALON_SIG_SCHEMA_OFFSET PROPERTY_MAP_SCHEMA_OFFSET + 3
322         MONO_MT_BLOB_IDX,   /* "Signature" }, */
323         MONO_MT_END,
324
325 #define TYPEDEF_SCHEMA_OFFSET STDALON_SIG_SCHEMA_OFFSET + 2
326         MONO_MT_UINT32,     /* "Flags" }, */
327         MONO_MT_STRING_IDX, /* "Name" }, */
328         MONO_MT_STRING_IDX, /* "Namespace" }, */
329         MONO_MT_TDOR_IDX,   /* "Extends" }, */
330         MONO_MT_TABLE_IDX,  /* "FieldList:Field" }, */
331         MONO_MT_TABLE_IDX,  /* "MethodList:Method" }, */
332         MONO_MT_END,
333
334 #define TYPEREF_SCHEMA_OFFSET TYPEDEF_SCHEMA_OFFSET + 7
335         MONO_MT_RS_IDX,     /* "ResolutionScope=ResolutionScope" }, */
336         MONO_MT_STRING_IDX, /* "Name" }, */
337         MONO_MT_STRING_IDX, /* "Namespace" }, */
338         MONO_MT_END,
339
340 #define TYPESPEC_SCHEMA_OFFSET TYPEREF_SCHEMA_OFFSET + 4
341         MONO_MT_BLOB_IDX,   /* "Signature" }, */
342         MONO_MT_END,
343
344 #define GENPARAM_SCHEMA_OFFSET TYPESPEC_SCHEMA_OFFSET + 2
345         MONO_MT_UINT16,     /* "Number" }, */
346         MONO_MT_UINT16,     /* "Flags" }, */
347         MONO_MT_TABLE_IDX,  /* "Owner" },  TypeDef or MethodDef */
348         MONO_MT_STRING_IDX, /* "Name" }, */
349         MONO_MT_END,
350
351 #define METHOD_SPEC_SCHEMA_OFFSET GENPARAM_SCHEMA_OFFSET + 5
352         MONO_MT_MDOR_IDX,   /* "Method" }, */
353         MONO_MT_BLOB_IDX,   /* "Signature" }, */
354         MONO_MT_END,
355
356 #define GEN_CONSTRAINT_SCHEMA_OFFSET METHOD_SPEC_SCHEMA_OFFSET + 3
357         MONO_MT_TABLE_IDX,  /* "GenericParam" }, */
358         MONO_MT_TDOR_IDX,   /* "Constraint" }, */
359         MONO_MT_END,
360
361 #define NULL_SCHEMA_OFFSET GEN_CONSTRAINT_SCHEMA_OFFSET + 3
362         MONO_MT_END
363 };
364
365 /* Must be the same order as MONO_TABLE_* */
366 const static unsigned char
367 table_description [] = {
368         MODULE_SCHEMA_OFFSET,
369         TYPEREF_SCHEMA_OFFSET,
370         TYPEDEF_SCHEMA_OFFSET,
371         FIELD_POINTER_SCHEMA_OFFSET,
372         FIELD_SCHEMA_OFFSET,
373         METHOD_POINTER_SCHEMA_OFFSET,
374         METHOD_SCHEMA_OFFSET,
375         PARAM_POINTER_SCHEMA_OFFSET,
376         PARAM_SCHEMA_OFFSET,
377         IFACEMAP_SCHEMA_OFFSET,
378         MEMBERREF_SCHEMA_OFFSET, /* 0xa */
379         CONSTANT_SCHEMA_OFFSET,
380         CUSTOM_ATTR_SCHEMA_OFFSET,
381         FIELD_MARSHAL_SCHEMA_OFFSET,
382         DECL_SEC_SCHEMA_OFFSET,
383         CLASS_LAYOUT_SCHEMA_OFFSET,
384         FIELD_LAYOUT_SCHEMA_OFFSET, /* 0x10 */
385         STDALON_SIG_SCHEMA_OFFSET,
386         EVENTMAP_SCHEMA_OFFSET,
387         EVENT_POINTER_SCHEMA_OFFSET,
388         EVENT_SCHEMA_OFFSET,
389         PROPERTY_MAP_SCHEMA_OFFSET,
390         PROPERTY_POINTER_SCHEMA_OFFSET,
391         PROPERTY_SCHEMA_OFFSET,
392         METHOD_SEMA_SCHEMA_OFFSET,
393         METHOD_IMPL_SCHEMA_OFFSET,
394         MODULEREF_SCHEMA_OFFSET, /* 0x1a */
395         TYPESPEC_SCHEMA_OFFSET,
396         IMPLMAP_SCHEMA_OFFSET,
397         FIELD_RVA_SCHEMA_OFFSET,
398         NULL_SCHEMA_OFFSET,
399         NULL_SCHEMA_OFFSET,
400         ASSEMBLY_SCHEMA_OFFSET, /* 0x20 */
401         ASSEMBLYPROC_SCHEMA_OFFSET,
402         ASSEMBLYOS_SCHEMA_OFFSET,
403         ASSEMBLYREF_SCHEMA_OFFSET,
404         ASSEMBLYREFPROC_SCHEMA_OFFSET,
405         ASSEMBLYREFOS_SCHEMA_OFFSET,
406         FILE_SCHEMA_OFFSET,
407         EXPORTED_TYPE_SCHEMA_OFFSET,
408         MANIFEST_SCHEMA_OFFSET,
409         NESTED_CLASS_SCHEMA_OFFSET,
410         GENPARAM_SCHEMA_OFFSET, /* 0x2a */
411         METHOD_SPEC_SCHEMA_OFFSET,
412         GEN_CONSTRAINT_SCHEMA_OFFSET
413 };
414
415 #ifdef HAVE_ARRAY_ELEM_INIT
416 #define MSGSTRFIELD(line) MSGSTRFIELD1(line)
417 #define MSGSTRFIELD1(line) str##line
418 static const struct msgstr_t {
419 #define TABLEDEF(a,b) char MSGSTRFIELD(__LINE__) [sizeof (b)];
420 #include "mono/cil/tables.def"
421 #undef TABLEDEF
422 } tablestr = {
423 #define TABLEDEF(a,b) b,
424 #include "mono/cil/tables.def"
425 #undef TABLEDEF
426 };
427 static const gint16 tableidx [] = {
428 #define TABLEDEF(a,b) [a] = offsetof (struct msgstr_t, MSGSTRFIELD(__LINE__)),
429 #include "mono/cil/tables.def"
430 #undef TABLEDEF
431 };
432
433 #else
434 #define TABLEDEF(a,b) b,
435 static const char* const
436 mono_tables_names [] = {
437 #include "mono/cil/tables.def"
438         NULL
439 };
440
441 #endif
442
443 /* Auxiliary structure used for caching inflated signatures */
444 typedef struct {
445         MonoMethodSignature *sig;
446         MonoGenericContext context;
447 } MonoInflatedMethodSignature;
448
449 /**
450  * mono_meta_table_name:
451  * @table: table index
452  *
453  * Returns the name of the given ECMA metadata logical format table
454  * as described in ECMA 335, Partition II, Section 22.
455  * 
456  * Returns: the name for the @table index
457  */
458 const char *
459 mono_meta_table_name (int table)
460 {
461         if ((table < 0) || (table > MONO_TABLE_LAST))
462                 return "";
463
464 #ifdef HAVE_ARRAY_ELEM_INIT
465         return (const char*)&tablestr + tableidx [table];
466 #else
467         return mono_tables_names [table];
468 #endif
469 }
470
471 /* The guy who wrote the spec for this should not be allowed near a
472  * computer again.
473  
474 If  e is a coded token(see clause 23.1.7) that points into table ti out of n possible tables t0, .. tn-1, 
475 then it is stored as e << (log n) & tag{ t0, .. tn-1}[ ti] using 2 bytes if the maximum number of 
476 rows of tables t0, ..tn-1, is less than 2^16 - (log n), and using 4 bytes otherwise. The family of 
477 finite maps tag{ t0, ..tn-1} is defined below. Note that to decode a physical row, you need the 
478 inverse of this mapping.
479
480  */
481 #define rtsize(s,b) (((s) < (1 << (b)) ? 2 : 4))
482 #define idx_size(tableidx) (meta->tables [(tableidx)].rows < 65536 ? 2 : 4)
483
484 /* Reference: Partition II - 23.2.6 */
485 /*
486  * mono_metadata_compute_size:
487  * @meta: metadata context
488  * @tableindex: metadata table number
489  * @result_bitfield: pointer to guint32 where to store additional info
490  * 
491  * mono_metadata_compute_size() computes the lenght in bytes of a single
492  * row in a metadata table. The size of each column is encoded in the
493  * @result_bitfield return value along with the number of columns in the table.
494  * the resulting bitfield should be handed to the mono_metadata_table_size()
495  * and mono_metadata_table_count() macros.
496  * This is a Mono runtime internal only function.
497  */
498 int
499 mono_metadata_compute_size (MonoImage *meta, int tableindex, guint32 *result_bitfield)
500 {
501         guint32 bitfield = 0;
502         int size = 0, field_size = 0;
503         int i, n, code;
504         int shift = 0;
505         const unsigned char *description = TableSchemas + table_description [tableindex];
506
507         for (i = 0; (code = description [i]) != MONO_MT_END; i++){
508                 switch (code){
509                 case MONO_MT_UINT32:
510                         field_size = 4; break;
511                         
512                 case MONO_MT_UINT16:
513                         field_size = 2; break;
514                         
515                 case MONO_MT_UINT8:
516                         field_size = 1; break;
517                         
518                 case MONO_MT_BLOB_IDX:
519                         field_size = meta->idx_blob_wide ? 4 : 2; break;
520                         
521                 case MONO_MT_STRING_IDX:
522                         field_size = meta->idx_string_wide ? 4 : 2; break;
523                         
524                 case MONO_MT_GUID_IDX:
525                         field_size = meta->idx_guid_wide ? 4 : 2; break;
526
527                 case MONO_MT_TABLE_IDX:
528                         /* Uhm, a table index can point to other tables besides the current one
529                          * so, it's not correct to use the rowcount of the current table to
530                          * get the size for this column - lupus 
531                          */
532                         switch (tableindex) {
533                         case MONO_TABLE_ASSEMBLYREFOS:
534                                 g_assert (i == 3);
535                                 field_size = idx_size (MONO_TABLE_ASSEMBLYREF); break;
536                         case MONO_TABLE_ASSEMBLYPROCESSOR:
537                                 g_assert (i == 1);
538                                 field_size = idx_size (MONO_TABLE_ASSEMBLYREF); break;
539                         case MONO_TABLE_CLASSLAYOUT:
540                                 g_assert (i == 2);
541                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
542                         case MONO_TABLE_EVENTMAP:
543                                 g_assert (i == 0 || i == 1);
544                                 field_size = i ? idx_size (MONO_TABLE_EVENT):
545                                         idx_size(MONO_TABLE_TYPEDEF); 
546                                 break;
547                         case MONO_TABLE_EVENT:
548                                 g_assert (i == 2);
549                                 n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows, meta->tables [MONO_TABLE_TYPEREF].rows);
550                                 n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
551                                 /*This is a coded token for 3 tables, so takes 2 bits */
552                                 field_size = rtsize (n, 16 - MONO_TYPEDEFORREF_BITS);
553                                 break;
554                         case MONO_TABLE_EVENT_POINTER:
555                                 g_assert (i == 0);
556                                 field_size = idx_size (MONO_TABLE_EVENT); break;
557                         case MONO_TABLE_EXPORTEDTYPE:
558                                 g_assert (i == 1);
559                                 /* the index is in another metadata file, so it must be 4 */
560                                 field_size = 4; break;
561                         case MONO_TABLE_FIELDLAYOUT:
562                                 g_assert (i == 1);
563                                 field_size = idx_size (MONO_TABLE_FIELD); break;
564                         case MONO_TABLE_FIELDRVA:
565                                 g_assert (i == 1);
566                                 field_size = idx_size (MONO_TABLE_FIELD); break;
567                         case MONO_TABLE_FIELD_POINTER:
568                                 g_assert (i == 0);
569                                 field_size = idx_size (MONO_TABLE_FIELD); break;
570                         case MONO_TABLE_IMPLMAP:
571                                 g_assert (i == 3);
572                                 field_size = idx_size (MONO_TABLE_MODULEREF); break;
573                         case MONO_TABLE_INTERFACEIMPL:
574                                 g_assert (i == 0);
575                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
576                         case MONO_TABLE_METHOD:
577                                 g_assert (i == 5);
578                                 field_size = idx_size (MONO_TABLE_PARAM); break;
579                         case MONO_TABLE_METHODIMPL:
580                                 g_assert (i == 0);
581                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
582                         case MONO_TABLE_METHODSEMANTICS:
583                                 g_assert (i == 1);
584                                 field_size = idx_size (MONO_TABLE_METHOD); break;
585                         case MONO_TABLE_METHOD_POINTER:
586                                 g_assert (i == 0);
587                                 field_size = idx_size (MONO_TABLE_METHOD); break;
588                         case MONO_TABLE_NESTEDCLASS:
589                                 g_assert (i == 0 || i == 1);
590                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
591                         case MONO_TABLE_PARAM_POINTER:
592                                 g_assert (i == 0);
593                                 field_size = idx_size (MONO_TABLE_PARAM); break;
594                         case MONO_TABLE_PROPERTYMAP:
595                                 g_assert (i == 0 || i == 1);
596                                 field_size = i ? idx_size (MONO_TABLE_PROPERTY):
597                                         idx_size(MONO_TABLE_TYPEDEF); 
598                                 break;
599                         case MONO_TABLE_PROPERTY_POINTER:
600                                 g_assert (i == 0);
601                                 field_size = idx_size (MONO_TABLE_PROPERTY); break;
602                         case MONO_TABLE_TYPEDEF:
603                                 g_assert (i == 4 || i == 5);
604                                 field_size = i == 4 ? idx_size (MONO_TABLE_FIELD):
605                                         idx_size(MONO_TABLE_METHOD);
606                                 break;
607                         case MONO_TABLE_GENERICPARAM:
608                                 g_assert (i == 2 || i == 4 || i == 5);
609                                 if (i == 2) {
610                                         n = MAX (meta->tables [MONO_TABLE_METHOD].rows, meta->tables [MONO_TABLE_TYPEDEF].rows);
611                                         /*This is a coded token for 2 tables, so takes 1 bit */
612                                         field_size = rtsize (n, 16 - MONO_TYPEORMETHOD_BITS);
613                                 } else if (i == 4)
614                                         field_size = idx_size (MONO_TABLE_TYPEDEF);
615                                 else if (i == 5)
616                                         field_size = idx_size (MONO_TABLE_TYPEDEF);
617                                 break;
618
619                         case MONO_TABLE_GENERICPARAMCONSTRAINT:
620                                 g_assert (i == 0);
621                                 field_size = idx_size (MONO_TABLE_GENERICPARAM);
622                                 break;
623                                 
624                         default:
625                                 g_assert_not_reached ();
626                         }
627                         break;
628
629                         /*
630                          * HasConstant: ParamDef, FieldDef, Property
631                          */
632                 case MONO_MT_CONST_IDX:
633                         n = MAX (meta->tables [MONO_TABLE_PARAM].rows,
634                                  meta->tables [MONO_TABLE_FIELD].rows);
635                         n = MAX (n, meta->tables [MONO_TABLE_PROPERTY].rows);
636
637                         /* 2 bits to encode tag */
638                         field_size = rtsize (n, 16-2);
639                         break;
640
641                         /*
642                          * HasCustomAttribute: points to any table but
643                          * itself.
644                          */
645                 case MONO_MT_HASCAT_IDX:
646                         /*
647                          * We believe that since the signature and
648                          * permission are indexing the Blob heap,
649                          * we should consider the blob size first
650                          */
651                         /* I'm not a believer - lupus
652                         if (meta->idx_blob_wide){
653                                 field_size = 4;
654                                 break;
655                         }*/
656                         
657                         n = MAX (meta->tables [MONO_TABLE_METHOD].rows,
658                                  meta->tables [MONO_TABLE_FIELD].rows);
659                         n = MAX (n, meta->tables [MONO_TABLE_TYPEREF].rows);
660                         n = MAX (n, meta->tables [MONO_TABLE_TYPEDEF].rows);
661                         n = MAX (n, meta->tables [MONO_TABLE_PARAM].rows);
662                         n = MAX (n, meta->tables [MONO_TABLE_INTERFACEIMPL].rows);
663                         n = MAX (n, meta->tables [MONO_TABLE_MEMBERREF].rows);
664                         n = MAX (n, meta->tables [MONO_TABLE_MODULE].rows);
665                         n = MAX (n, meta->tables [MONO_TABLE_DECLSECURITY].rows);
666                         n = MAX (n, meta->tables [MONO_TABLE_PROPERTY].rows);
667                         n = MAX (n, meta->tables [MONO_TABLE_EVENT].rows);
668                         n = MAX (n, meta->tables [MONO_TABLE_STANDALONESIG].rows);
669                         n = MAX (n, meta->tables [MONO_TABLE_MODULEREF].rows);
670                         n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
671                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLY].rows);
672                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLYREF].rows);
673                         n = MAX (n, meta->tables [MONO_TABLE_FILE].rows);
674                         n = MAX (n, meta->tables [MONO_TABLE_EXPORTEDTYPE].rows);
675                         n = MAX (n, meta->tables [MONO_TABLE_MANIFESTRESOURCE].rows);
676
677                         /* 5 bits to encode */
678                         field_size = rtsize (n, 16-5);
679                         break;
680
681                         /*
682                          * CustomAttributeType: TypeDef, TypeRef, MethodDef, 
683                          * MemberRef and String.  
684                          */
685                 case MONO_MT_CAT_IDX:
686                         /* String is a heap, if it is wide, we know the size */
687                         /* See above, nope. 
688                         if (meta->idx_string_wide){
689                                 field_size = 4;
690                                 break;
691                         }*/
692                         
693                         n = MAX (meta->tables [MONO_TABLE_TYPEREF].rows,
694                                  meta->tables [MONO_TABLE_TYPEDEF].rows);
695                         n = MAX (n, meta->tables [MONO_TABLE_METHOD].rows);
696                         n = MAX (n, meta->tables [MONO_TABLE_MEMBERREF].rows);
697
698                         /* 3 bits to encode */
699                         field_size = rtsize (n, 16-3);
700                         break;
701
702                         /*
703                          * HasDeclSecurity: Typedef, MethodDef, Assembly
704                          */
705                 case MONO_MT_HASDEC_IDX:
706                         n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows,
707                                  meta->tables [MONO_TABLE_METHOD].rows);
708                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLY].rows);
709
710                         /* 2 bits to encode */
711                         field_size = rtsize (n, 16-2);
712                         break;
713
714                         /*
715                          * Implementation: File, AssemblyRef, ExportedType
716                          */
717                 case MONO_MT_IMPL_IDX:
718                         n = MAX (meta->tables [MONO_TABLE_FILE].rows,
719                                  meta->tables [MONO_TABLE_ASSEMBLYREF].rows);
720                         n = MAX (n, meta->tables [MONO_TABLE_EXPORTEDTYPE].rows);
721
722                         /* 2 bits to encode tag */
723                         field_size = rtsize (n, 16-2);
724                         break;
725
726                         /*
727                          * HasFieldMarshall: FieldDef, ParamDef
728                          */
729                 case MONO_MT_HFM_IDX:
730                         n = MAX (meta->tables [MONO_TABLE_FIELD].rows,
731                                  meta->tables [MONO_TABLE_PARAM].rows);
732
733                         /* 1 bit used to encode tag */
734                         field_size = rtsize (n, 16-1);
735                         break;
736
737                         /*
738                          * MemberForwarded: FieldDef, MethodDef
739                          */
740                 case MONO_MT_MF_IDX:
741                         n = MAX (meta->tables [MONO_TABLE_FIELD].rows,
742                                  meta->tables [MONO_TABLE_METHOD].rows);
743
744                         /* 1 bit used to encode tag */
745                         field_size = rtsize (n, 16-1);
746                         break;
747
748                         /*
749                          * TypeDefOrRef: TypeDef, ParamDef, TypeSpec
750                          * LAMESPEC
751                          * It is TypeDef, _TypeRef_, TypeSpec, instead.
752                          */
753                 case MONO_MT_TDOR_IDX:
754                         n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows,
755                                  meta->tables [MONO_TABLE_TYPEREF].rows);
756                         n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
757
758                         /* 2 bits to encode */
759                         field_size = rtsize (n, 16-2);
760                         break;
761
762                         /*
763                          * MemberRefParent: TypeDef, TypeRef, MethodDef, ModuleRef, TypeSpec, MemberRef
764                          */
765                 case MONO_MT_MRP_IDX:
766                         n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows,
767                                  meta->tables [MONO_TABLE_TYPEREF].rows);
768                         n = MAX (n, meta->tables [MONO_TABLE_METHOD].rows);
769                         n = MAX (n, meta->tables [MONO_TABLE_MODULEREF].rows);
770                         n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
771                         n = MAX (n, meta->tables [MONO_TABLE_MEMBERREF].rows);
772
773                         /* 3 bits to encode */
774                         field_size = rtsize (n, 16 - 3);
775                         break;
776                         
777                         /*
778                          * MethodDefOrRef: MethodDef, MemberRef
779                          */
780                 case MONO_MT_MDOR_IDX:
781                         n = MAX (meta->tables [MONO_TABLE_METHOD].rows,
782                                  meta->tables [MONO_TABLE_MEMBERREF].rows);
783
784                         /* 1 bit used to encode tag */
785                         field_size = rtsize (n, 16-1);
786                         break;
787                         
788                         /*
789                          * HasSemantics: Property, Event
790                          */
791                 case MONO_MT_HS_IDX:
792                         n = MAX (meta->tables [MONO_TABLE_PROPERTY].rows,
793                                  meta->tables [MONO_TABLE_EVENT].rows);
794
795                         /* 1 bit used to encode tag */
796                         field_size = rtsize (n, 16-1);
797                         break;
798
799                         /*
800                          * ResolutionScope: Module, ModuleRef, AssemblyRef, TypeRef
801                          */
802                 case MONO_MT_RS_IDX:
803                         n = MAX (meta->tables [MONO_TABLE_MODULE].rows,
804                                  meta->tables [MONO_TABLE_MODULEREF].rows);
805                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLYREF].rows);
806                         n = MAX (n, meta->tables [MONO_TABLE_TYPEREF].rows);
807
808                         /* 2 bits used to encode tag (ECMA spec claims 3) */
809                         field_size = rtsize (n, 16 - 2);
810                         break;
811                 }
812
813                 /*
814                  * encode field size as follows (we just need to
815                  * distinguish them).
816                  *
817                  * 4 -> 3
818                  * 2 -> 1
819                  * 1 -> 0
820                  */
821                 bitfield |= (field_size-1) << shift;
822                 shift += 2;
823                 size += field_size;
824                 /*g_print ("table %02x field %d size %d\n", tableindex, i, field_size);*/
825         }
826
827         *result_bitfield = (i << 24) | bitfield;
828         return size;
829 }
830
831 /**
832  * mono_metadata_compute_table_bases:
833  * @meta: metadata context to compute table values
834  *
835  * Computes the table bases for the metadata structure.
836  * This is an internal function used by the image loader code.
837  */
838 void
839 mono_metadata_compute_table_bases (MonoImage *meta)
840 {
841         int i;
842         const char *base = meta->tables_base;
843         
844         for (i = 0; i < MONO_TABLE_NUM; i++) {
845                 MonoTableInfo *table = &meta->tables [i];
846                 if (table->rows == 0)
847                         continue;
848
849                 table->row_size = mono_metadata_compute_size (meta, i, &table->size_bitfield);
850                 table->base = base;
851                 base += table->rows * table->row_size;
852         }
853 }
854
855 /**
856  * mono_metadata_locate:
857  * @meta: metadata context
858  * @table: table code.
859  * @idx: index of element to retrieve from @table.
860  *
861  * Returns: a pointer to the @idx element in the metadata table
862  * whose code is @table.
863  */
864 const char *
865 mono_metadata_locate (MonoImage *meta, int table, int idx)
866 {
867         /* idx == 0 refers always to NULL */
868         g_return_val_if_fail (idx > 0 && idx <= meta->tables [table].rows, "");
869            
870         return meta->tables [table].base + (meta->tables [table].row_size * (idx - 1));
871 }
872
873 /**
874  * mono_metadata_locate_token:
875  * @meta: metadata context
876  * @token: metadata token
877  *
878  * Returns: a pointer to the data in the metadata represented by the
879  * token #token.
880  */
881 const char *
882 mono_metadata_locate_token (MonoImage *meta, guint32 token)
883 {
884         return mono_metadata_locate (meta, token >> 24, token & 0xffffff);
885 }
886
887 /**
888  * mono_metadata_string_heap:
889  * @meta: metadata context
890  * @index: index into the string heap.
891  *
892  * Returns: an in-memory pointer to the @index in the string heap.
893  */
894 const char *
895 mono_metadata_string_heap (MonoImage *meta, guint32 index)
896 {
897         g_return_val_if_fail (index < meta->heap_strings.size, "");
898         return meta->heap_strings.data + index;
899 }
900
901 /**
902  * mono_metadata_user_string:
903  * @meta: metadata context
904  * @index: index into the user string heap.
905  *
906  * Returns: an in-memory pointer to the @index in the user string heap ("#US").
907  */
908 const char *
909 mono_metadata_user_string (MonoImage *meta, guint32 index)
910 {
911         g_return_val_if_fail (index < meta->heap_us.size, "");
912         return meta->heap_us.data + index;
913 }
914
915 /**
916  * mono_metadata_blob_heap:
917  * @meta: metadata context
918  * @index: index into the blob.
919  *
920  * Returns: an in-memory pointer to the @index in the Blob heap.
921  */
922 const char *
923 mono_metadata_blob_heap (MonoImage *meta, guint32 index)
924 {
925         g_return_val_if_fail (index < meta->heap_blob.size, "");
926         return meta->heap_blob.data + index;
927 }
928
929 /**
930  * mono_metadata_guid_heap:
931  * @meta: metadata context
932  * @index: index into the guid heap.
933  *
934  * Returns: an in-memory pointer to the @index in the guid heap.
935  */
936 const char *
937 mono_metadata_guid_heap (MonoImage *meta, guint32 index)
938 {
939         --index;
940         index *= 16; /* adjust for guid size and 1-based index */
941         g_return_val_if_fail (index < meta->heap_guid.size, "");
942         return meta->heap_guid.data + index;
943 }
944
945 static const unsigned char *
946 dword_align (const unsigned char *ptr)
947 {
948 #if SIZEOF_VOID_P == 8
949         return (const unsigned char *) (((guint64) (ptr + 3)) & ~3);
950 #else
951         return (const unsigned char *) (((guint32) (ptr + 3)) & ~3);
952 #endif
953 }
954
955 /**
956  * mono_metadata_decode_row:
957  * @t: table to extract information from.
958  * @idx: index in table.
959  * @res: array of @res_size cols to store the results in
960  *
961  * This decompresses the metadata element @idx in table @t
962  * into the guint32 @res array that has res_size elements
963  */
964 void
965 mono_metadata_decode_row (const MonoTableInfo *t, int idx, guint32 *res, int res_size)
966 {
967         guint32 bitfield = t->size_bitfield;
968         int i, count = mono_metadata_table_count (bitfield);
969         const char *data;
970
971         g_assert (idx < t->rows);
972         data = t->base + idx * t->row_size;
973         
974         g_assert (res_size == count);
975
976         for (i = 0; i < count; i++) {
977                 int n = mono_metadata_table_size (bitfield, i);
978
979                 switch (n){
980                 case 1:
981                         res [i] = *data; break;
982                 case 2:
983                         res [i] = read16 (data); break;
984                 case 4:
985                         res [i] = read32 (data); break;
986                 default:
987                         g_assert_not_reached ();
988                 }
989                 data += n;
990         }
991 }
992
993 /**
994  * mono_metadata_decode_row_col:
995  * @t: table to extract information from.
996  * @idx: index for row in table.
997  * @col: column in the row.
998  *
999  * This function returns the value of column @col from the @idx
1000  * row in the table @t.
1001  */
1002 guint32
1003 mono_metadata_decode_row_col (const MonoTableInfo *t, int idx, guint col)
1004 {
1005         guint32 bitfield = t->size_bitfield;
1006         int i;
1007         register const char *data; 
1008         register int n;
1009         
1010         g_assert (idx < t->rows);
1011         g_assert (col < mono_metadata_table_count (bitfield));
1012         data = t->base + idx * t->row_size;
1013
1014         n = mono_metadata_table_size (bitfield, 0);
1015         for (i = 0; i < col; ++i) {
1016                 data += n;
1017                 n = mono_metadata_table_size (bitfield, i + 1);
1018         }
1019         switch (n) {
1020         case 1:
1021                 return *data;
1022         case 2:
1023                 return read16 (data);
1024         case 4:
1025                 return read32 (data);
1026         default:
1027                 g_assert_not_reached ();
1028         }
1029         return 0;
1030 }
1031
1032 /**
1033  * mono_metadata_decode_blob_size:
1034  * @ptr: pointer to a blob object
1035  * @rptr: the new position of the pointer
1036  *
1037  * This decodes a compressed size as described by 23.1.4 (a blob or user string object)
1038  *
1039  * Returns: the size of the blob object
1040  */
1041 guint32
1042 mono_metadata_decode_blob_size (const char *xptr, const char **rptr)
1043 {
1044         const unsigned char *ptr = (const unsigned char *)xptr;
1045         guint32 size;
1046         
1047         if ((*ptr & 0x80) == 0){
1048                 size = ptr [0] & 0x7f;
1049                 ptr++;
1050         } else if ((*ptr & 0x40) == 0){
1051                 size = ((ptr [0] & 0x3f) << 8) + ptr [1];
1052                 ptr += 2;
1053         } else {
1054                 size = ((ptr [0] & 0x1f) << 24) +
1055                         (ptr [1] << 16) +
1056                         (ptr [2] << 8) +
1057                         ptr [3];
1058                 ptr += 4;
1059         }
1060         if (rptr)
1061                 *rptr = (char*)ptr;
1062         return size;
1063 }
1064
1065 /**
1066  * mono_metadata_decode_value:
1067  * @ptr: pointer to decode from
1068  * @rptr: the new position of the pointer
1069  *
1070  * This routine decompresses 32-bit values as specified in the "Blob and
1071  * Signature" section (22.2)
1072  *
1073  * Returns: the decoded value
1074  */
1075 guint32
1076 mono_metadata_decode_value (const char *_ptr, const char **rptr)
1077 {
1078         const unsigned char *ptr = (const unsigned char *) _ptr;
1079         unsigned char b = *ptr;
1080         guint32 len;
1081         
1082         if ((b & 0x80) == 0){
1083                 len = b;
1084                 ++ptr;
1085         } else if ((b & 0x40) == 0){
1086                 len = ((b & 0x3f) << 8 | ptr [1]);
1087                 ptr += 2;
1088         } else {
1089                 len = ((b & 0x1f) << 24) |
1090                         (ptr [1] << 16) |
1091                         (ptr [2] << 8) |
1092                         ptr [3];
1093                 ptr += 4;
1094         }
1095         if (rptr)
1096                 *rptr = (char*)ptr;
1097         
1098         return len;
1099 }
1100
1101 /**
1102  * mono_metadata_decode_signed_value:
1103  * @ptr: pointer to decode from
1104  * @rptr: the new position of the pointer
1105  *
1106  * This routine decompresses 32-bit signed values
1107  * (not specified in the spec)
1108  *
1109  * Returns: the decoded value
1110  */
1111 gint32
1112 mono_metadata_decode_signed_value (const char *ptr, const char **rptr)
1113 {
1114         guint32 uval = mono_metadata_decode_value (ptr, rptr);
1115         gint32 ival = uval >> 1;
1116         if (!(uval & 1))
1117                 return ival;
1118         /* ival is a truncated 2's complement negative number.  */
1119         if (ival < 0x40)
1120                 /* 6 bits = 7 bits for compressed representation (top bit is '0') - 1 sign bit */
1121                 return ival - 0x40;
1122         if (ival < 0x2000)
1123                 /* 13 bits = 14 bits for compressed representation (top bits are '10') - 1 sign bit */
1124                 return ival - 0x2000;
1125         if (ival < 0x10000000)
1126                 /* 28 bits = 29 bits for compressed representation (top bits are '110') - 1 sign bit */
1127                 return ival - 0x10000000;
1128         g_assert (ival < 0x20000000);
1129         g_warning ("compressed signed value appears to use 29 bits for compressed representation: %x (raw: %8x)", ival, uval);
1130         return ival - 0x20000000;
1131 }
1132
1133 /* 
1134  * Translates the given 1-based index into the Method, Field, Event, or Param tables
1135  * using the *Ptr tables in uncompressed metadata, if they are available.
1136  *
1137  * FIXME: The caller is not forced to call this function, which is error-prone, since 
1138  * forgetting to call it would only show up as a bug on uncompressed metadata.
1139  */
1140 guint32
1141 mono_metadata_translate_token_index (MonoImage *image, int table, guint32 idx)
1142 {
1143         if (!image->uncompressed_metadata)
1144                 return idx;
1145
1146         switch (table) {
1147         case MONO_TABLE_METHOD:
1148                 if (image->tables [MONO_TABLE_METHOD_POINTER].rows)
1149                         return mono_metadata_decode_row_col (&image->tables [MONO_TABLE_METHOD_POINTER], idx - 1, MONO_METHOD_POINTER_METHOD);
1150                 else
1151                         return idx;
1152         case MONO_TABLE_FIELD:
1153                 if (image->tables [MONO_TABLE_FIELD_POINTER].rows)
1154                         return mono_metadata_decode_row_col (&image->tables [MONO_TABLE_FIELD_POINTER], idx - 1, MONO_FIELD_POINTER_FIELD);
1155                 else
1156                         return idx;
1157         case MONO_TABLE_EVENT:
1158                 if (image->tables [MONO_TABLE_EVENT_POINTER].rows)
1159                         return mono_metadata_decode_row_col (&image->tables [MONO_TABLE_EVENT_POINTER], idx - 1, MONO_EVENT_POINTER_EVENT);
1160                 else
1161                         return idx;
1162         case MONO_TABLE_PROPERTY:
1163                 if (image->tables [MONO_TABLE_PROPERTY_POINTER].rows)
1164                         return mono_metadata_decode_row_col (&image->tables [MONO_TABLE_PROPERTY_POINTER], idx - 1, MONO_PROPERTY_POINTER_PROPERTY);
1165                 else
1166                         return idx;
1167         case MONO_TABLE_PARAM:
1168                 if (image->tables [MONO_TABLE_PARAM_POINTER].rows)
1169                         return mono_metadata_decode_row_col (&image->tables [MONO_TABLE_PARAM_POINTER], idx - 1, MONO_PARAM_POINTER_PARAM);
1170                 else
1171                         return idx;
1172         default:
1173                 return idx;
1174         }
1175 }
1176
1177 /**
1178  * mono_metadata_decode_table_row:
1179  *
1180  *   Same as mono_metadata_decode_row, but takes an IMAGE+TABLE ID pair, and takes
1181  * uncompressed metadata into account, so it should be used to access the
1182  * Method, Field, Param and Event tables when the access is made from metadata, i.e.
1183  * IDX is retrieved from a metadata table, like MONO_TYPEDEF_FIELD_LIST.
1184  */
1185 void
1186 mono_metadata_decode_table_row (MonoImage *image, int table, int idx, guint32 *res, int res_size)
1187 {
1188         if (image->uncompressed_metadata)
1189                 idx = mono_metadata_translate_token_index (image, table, idx + 1) - 1;
1190
1191         mono_metadata_decode_row (&image->tables [table], idx, res, res_size);
1192 }
1193
1194 /**
1195  * mono_metadata_decode_table_row_col:
1196  *
1197  *   Same as mono_metadata_decode_row_col, but takes an IMAGE+TABLE ID pair, and takes
1198  * uncompressed metadata into account, so it should be used to access the
1199  * Method, Field, Param and Event tables.
1200  */
1201 guint32 mono_metadata_decode_table_row_col (MonoImage *image, int table, int idx, guint col)
1202 {
1203         if (image->uncompressed_metadata)
1204                 idx = mono_metadata_translate_token_index (image, table, idx + 1) - 1;
1205
1206         return mono_metadata_decode_row_col (&image->tables [table], idx, col);
1207 }
1208
1209 /*
1210  * mono_metadata_parse_typedef_or_ref:
1211  * @m: a metadata context.
1212  * @ptr: a pointer to an encoded TypedefOrRef in @m
1213  * @rptr: pointer updated to match the end of the decoded stream
1214  *
1215  * Returns: a token valid in the @m metadata decoded from
1216  * the compressed representation.
1217  */
1218 guint32
1219 mono_metadata_parse_typedef_or_ref (MonoImage *m, const char *ptr, const char **rptr)
1220 {
1221         guint32 token;
1222         token = mono_metadata_decode_value (ptr, &ptr);
1223         if (rptr)
1224                 *rptr = ptr;
1225         return mono_metadata_token_from_dor (token);
1226 }
1227
1228 /*
1229  * mono_metadata_parse_custom_mod:
1230  * @m: a metadata context.
1231  * @dest: storage where the info about the custom modifier is stored (may be NULL)
1232  * @ptr: a pointer to (possibly) the start of a custom modifier list
1233  * @rptr: pointer updated to match the end of the decoded stream
1234  *
1235  * Checks if @ptr points to a type custom modifier compressed representation.
1236  *
1237  * Returns: #TRUE if a custom modifier was found, #FALSE if not.
1238  */
1239 int
1240 mono_metadata_parse_custom_mod (MonoImage *m, MonoCustomMod *dest, const char *ptr, const char **rptr)
1241 {
1242         MonoCustomMod local;
1243         if ((*ptr == MONO_TYPE_CMOD_OPT) || (*ptr == MONO_TYPE_CMOD_REQD)) {
1244                 if (!dest)
1245                         dest = &local;
1246                 dest->required = *ptr == MONO_TYPE_CMOD_REQD ? 1 : 0;
1247                 dest->token = mono_metadata_parse_typedef_or_ref (m, ptr + 1, rptr);
1248                 return TRUE;
1249         }
1250         return FALSE;
1251 }
1252
1253 /*
1254  * mono_metadata_parse_array_full:
1255  * @m: a metadata context.
1256  * @ptr: a pointer to an encoded array description.
1257  * @rptr: pointer updated to match the end of the decoded stream
1258  *
1259  * Decodes the compressed array description found in the metadata @m at @ptr.
1260  *
1261  * Returns: a #MonoArrayType structure describing the array type
1262  * and dimensions. Memory is allocated from the image mempool.
1263  *
1264  * LOCKING: Acquires the loader lock
1265  */
1266 MonoArrayType *
1267 mono_metadata_parse_array_full (MonoImage *m, MonoGenericContainer *container,
1268                                 const char *ptr, const char **rptr)
1269 {
1270         int i;
1271         MonoArrayType *array;
1272         MonoType *etype;
1273         
1274         array = mono_image_alloc0 (m, sizeof (MonoArrayType));
1275         etype = mono_metadata_parse_type_full (m, container, MONO_PARSE_TYPE, 0, ptr, &ptr);
1276         if (!etype)
1277                 return NULL;
1278         array->eklass = mono_class_from_mono_type (etype);
1279         array->rank = mono_metadata_decode_value (ptr, &ptr);
1280
1281         array->numsizes = mono_metadata_decode_value (ptr, &ptr);
1282         if (array->numsizes)
1283                 array->sizes = g_new0 (int, array->numsizes);
1284         for (i = 0; i < array->numsizes; ++i)
1285                 array->sizes [i] = mono_metadata_decode_value (ptr, &ptr);
1286
1287         array->numlobounds = mono_metadata_decode_value (ptr, &ptr);
1288         if (array->numlobounds)
1289                 array->lobounds = g_new0 (int, array->numlobounds);
1290         for (i = 0; i < array->numlobounds; ++i)
1291                 array->lobounds [i] = mono_metadata_decode_signed_value (ptr, &ptr);
1292
1293         if (rptr)
1294                 *rptr = ptr;
1295         return array;
1296 }
1297
1298 MonoArrayType *
1299 mono_metadata_parse_array (MonoImage *m, const char *ptr, const char **rptr)
1300 {
1301         return mono_metadata_parse_array_full (m, NULL, ptr, rptr);
1302 }
1303
1304 /*
1305  * mono_metadata_free_array:
1306  * @array: array description
1307  *
1308  * Frees the array description returned from mono_metadata_parse_array().
1309  */
1310 void
1311 mono_metadata_free_array (MonoArrayType *array)
1312 {
1313         g_free (array->sizes);
1314         g_free (array->lobounds);
1315         g_free (array);
1316 }
1317
1318 /*
1319  * need to add common field and param attributes combinations:
1320  * [out] param
1321  * public static
1322  * public static literal
1323  * private
1324  * private static
1325  * private static literal
1326  */
1327 static const MonoType
1328 builtin_types[] = {
1329         /* data, attrs, type,              nmods, byref, pinned */
1330         {{NULL}, 0,     MONO_TYPE_VOID,    0,     0,     0},
1331         {{NULL}, 0,     MONO_TYPE_BOOLEAN, 0,     0,     0},
1332         {{NULL}, 0,     MONO_TYPE_BOOLEAN, 0,     1,     0},
1333         {{NULL}, 0,     MONO_TYPE_CHAR,    0,     0,     0},
1334         {{NULL}, 0,     MONO_TYPE_CHAR,    0,     1,     0},
1335         {{NULL}, 0,     MONO_TYPE_I1,      0,     0,     0},
1336         {{NULL}, 0,     MONO_TYPE_I1,      0,     1,     0},
1337         {{NULL}, 0,     MONO_TYPE_U1,      0,     0,     0},
1338         {{NULL}, 0,     MONO_TYPE_U1,      0,     1,     0},
1339         {{NULL}, 0,     MONO_TYPE_I2,      0,     0,     0},
1340         {{NULL}, 0,     MONO_TYPE_I2,      0,     1,     0},
1341         {{NULL}, 0,     MONO_TYPE_U2,      0,     0,     0},
1342         {{NULL}, 0,     MONO_TYPE_U2,      0,     1,     0},
1343         {{NULL}, 0,     MONO_TYPE_I4,      0,     0,     0},
1344         {{NULL}, 0,     MONO_TYPE_I4,      0,     1,     0},
1345         {{NULL}, 0,     MONO_TYPE_U4,      0,     0,     0},
1346         {{NULL}, 0,     MONO_TYPE_U4,      0,     1,     0},
1347         {{NULL}, 0,     MONO_TYPE_I8,      0,     0,     0},
1348         {{NULL}, 0,     MONO_TYPE_I8,      0,     1,     0},
1349         {{NULL}, 0,     MONO_TYPE_U8,      0,     0,     0},
1350         {{NULL}, 0,     MONO_TYPE_U8,      0,     1,     0},
1351         {{NULL}, 0,     MONO_TYPE_R4,      0,     0,     0},
1352         {{NULL}, 0,     MONO_TYPE_R4,      0,     1,     0},
1353         {{NULL}, 0,     MONO_TYPE_R8,      0,     0,     0},
1354         {{NULL}, 0,     MONO_TYPE_R8,      0,     1,     0},
1355         {{NULL}, 0,     MONO_TYPE_STRING,  0,     0,     0},
1356         {{NULL}, 0,     MONO_TYPE_STRING,  0,     1,     0},
1357         {{NULL}, 0,     MONO_TYPE_OBJECT,  0,     0,     0},
1358         {{NULL}, 0,     MONO_TYPE_OBJECT,  0,     1,     0},
1359         {{NULL}, 0,     MONO_TYPE_TYPEDBYREF,  0,     0,     0},
1360         {{NULL}, 0,     MONO_TYPE_I,       0,     0,     0},
1361         {{NULL}, 0,     MONO_TYPE_I,       0,     1,     0},
1362         {{NULL}, 0,     MONO_TYPE_U,       0,     0,     0},
1363         {{NULL}, 0,     MONO_TYPE_U,       0,     1,     0},
1364 };
1365
1366 #define NBUILTIN_TYPES() (sizeof (builtin_types) / sizeof (builtin_types [0]))
1367
1368 static GHashTable *type_cache = NULL;
1369 static GHashTable *generic_inst_cache = NULL;
1370 static GHashTable *generic_class_cache = NULL;
1371 static int next_generic_inst_id = 0;
1372
1373 /*
1374  * Protected by the loader lock.
1375  * It has a MonoMethodInflated* as key and value.
1376  * The key lookup will just access the declaring and context fields
1377  */
1378 static GHashTable *generic_method_cache = NULL;
1379
1380 /*
1381  * Protected by the loader lock.
1382  * It has a MonoInflatedMethodSignature* as key and value.
1383  */
1384 static GHashTable *generic_signature_cache = NULL;
1385
1386 static guint mono_generic_class_hash (gconstpointer data);
1387
1388 /*
1389  * MonoTypes with modifies are never cached, so we never check or use that field.
1390  */
1391 static guint
1392 mono_type_hash (gconstpointer data)
1393 {
1394         const MonoType *type = (const MonoType *) data;
1395         if (type->type == MONO_TYPE_GENERICINST)
1396                 return mono_generic_class_hash (type->data.generic_class);
1397         else
1398                 return type->type | (type->byref << 8) | (type->attrs << 9);
1399 }
1400
1401 static gint
1402 mono_type_equal (gconstpointer ka, gconstpointer kb)
1403 {
1404         const MonoType *a = (const MonoType *) ka;
1405         const MonoType *b = (const MonoType *) kb;
1406         
1407         if (a->type != b->type || a->byref != b->byref || a->attrs != b->attrs || a->pinned != b->pinned)
1408                 return 0;
1409         /* need other checks */
1410         return 1;
1411 }
1412
1413 guint
1414 mono_metadata_generic_inst_hash (gconstpointer data)
1415 {
1416         const MonoGenericInst *ginst = (const MonoGenericInst *) data;
1417         guint hash = 0;
1418         int i;
1419         
1420         for (i = 0; i < ginst->type_argc; ++i) {
1421                 hash *= 13;
1422                 hash += mono_metadata_type_hash (ginst->type_argv [i]);
1423         }
1424
1425         return hash ^ (ginst->is_open << 8);
1426 }
1427
1428 static gboolean
1429 mono_generic_inst_equal_full (const MonoGenericInst *a, const MonoGenericInst *b, gboolean signature_only)
1430 {
1431         int i;
1432
1433         if (a->id && b->id) {
1434                 if (a->id == b->id)
1435                         return TRUE;
1436                 if (!signature_only)
1437                         return FALSE;
1438         }
1439
1440         if (a->is_open != b->is_open || a->type_argc != b->type_argc)
1441                 return FALSE;
1442         for (i = 0; i < a->type_argc; ++i) {
1443                 if (!do_mono_metadata_type_equal (a->type_argv [i], b->type_argv [i], signature_only))
1444                         return FALSE;
1445         }
1446         return TRUE;
1447 }
1448
1449 gboolean
1450 mono_metadata_generic_inst_equal (gconstpointer ka, gconstpointer kb)
1451 {
1452         const MonoGenericInst *a = (const MonoGenericInst *) ka;
1453         const MonoGenericInst *b = (const MonoGenericInst *) kb;
1454
1455         return mono_generic_inst_equal_full (a, b, FALSE);
1456 }
1457
1458 static guint
1459 mono_generic_class_hash (gconstpointer data)
1460 {
1461         const MonoGenericClass *gclass = (const MonoGenericClass *) data;
1462         guint hash = mono_metadata_type_hash (&gclass->container_class->byval_arg);
1463
1464         hash *= 13;
1465         hash += gclass->is_tb_open;
1466         hash += mono_metadata_generic_context_hash (&gclass->context);
1467
1468         return hash;
1469 }
1470
1471 static gboolean
1472 mono_generic_class_equal (gconstpointer ka, gconstpointer kb)
1473 {
1474         const MonoGenericClass *a = (const MonoGenericClass *) ka;
1475         const MonoGenericClass *b = (const MonoGenericClass *) kb;
1476
1477         return _mono_metadata_generic_class_equal (a, b, FALSE);
1478 }
1479
1480 /**
1481  * mono_metadata_init:
1482  *
1483  * Initialize the global variables of this module.
1484  * This is a Mono runtime internal function.
1485  */
1486 void
1487 mono_metadata_init (void)
1488 {
1489         int i;
1490
1491         type_cache = g_hash_table_new (mono_type_hash, mono_type_equal);
1492         generic_inst_cache = g_hash_table_new_full (mono_metadata_generic_inst_hash, mono_metadata_generic_inst_equal, NULL, (GDestroyNotify)free_generic_inst);
1493         generic_class_cache = g_hash_table_new_full (mono_generic_class_hash, mono_generic_class_equal, NULL, (GDestroyNotify)free_generic_class);
1494
1495         for (i = 0; i < NBUILTIN_TYPES (); ++i)
1496                 g_hash_table_insert (type_cache, (gpointer) &builtin_types [i], (gpointer) &builtin_types [i]);
1497 }
1498
1499 /**
1500  * mono_metadata_cleanup:
1501  *
1502  * Free all resources used by this module.
1503  * This is a Mono runtime internal function.
1504  */
1505 void
1506 mono_metadata_cleanup (void)
1507 {
1508         g_hash_table_destroy (type_cache);
1509         g_hash_table_destroy (generic_inst_cache);
1510         g_hash_table_destroy (generic_class_cache);
1511         if (generic_method_cache)
1512                 g_hash_table_destroy (generic_method_cache);
1513         if (generic_signature_cache)
1514                 g_hash_table_destroy (generic_signature_cache);
1515         type_cache = NULL;
1516         generic_inst_cache = NULL;
1517         generic_class_cache = NULL;
1518         generic_method_cache = NULL;
1519         generic_signature_cache = NULL;
1520 }
1521
1522 /**
1523  * mono_metadata_parse_type:
1524  * @m: metadata context
1525  * @mode: king of type that may be found at @ptr
1526  * @opt_attrs: optional attributes to store in the returned type
1527  * @ptr: pointer to the type representation
1528  * @rptr: pointer updated to match the end of the decoded stream
1529  * 
1530  * Decode a compressed type description found at @ptr in @m.
1531  * @mode can be one of MONO_PARSE_MOD_TYPE, MONO_PARSE_PARAM, MONO_PARSE_RET,
1532  * MONO_PARSE_FIELD, MONO_PARSE_LOCAL, MONO_PARSE_TYPE.
1533  * This function can be used to decode type descriptions in method signatures,
1534  * field signatures, locals signatures etc.
1535  *
1536  * To parse a generic type, `generic_container' points to the current class'es
1537  * (the `generic_container' field in the MonoClass) or the current generic method's
1538  * (the `generic_container' field in the MonoMethodNormal) generic container.
1539  * When we encounter any MONO_TYPE_VAR or MONO_TYPE_MVAR's, they're looked up in
1540  * this MonoGenericContainer.
1541  * This is a Mono runtime internal function.
1542  *
1543  * LOCKING: Acquires the loader lock.
1544  *
1545  * Returns: a #MonoType structure representing the decoded type.
1546  */
1547 MonoType*
1548 mono_metadata_parse_type_full (MonoImage *m, MonoGenericContainer *container, MonoParseTypeMode mode,
1549                                short opt_attrs, const char *ptr, const char **rptr)
1550 {
1551         MonoType *type, *cached;
1552         MonoType stype;
1553         gboolean byref = FALSE;
1554         gboolean pinned = FALSE;
1555         const char *tmp_ptr;
1556         int count = 0;
1557         gboolean found;
1558
1559         /*
1560          * According to the spec, custom modifiers should come before the byref
1561          * flag, but the IL produced by ilasm from the following signature:
1562          *   object modopt(...) &
1563          * starts with a byref flag, followed by the modifiers. (bug #49802)
1564          * Also, this type seems to be different from 'object & modopt(...)'. Maybe
1565          * it would be better to treat byref as real type constructor instead of
1566          * a modifier...
1567          * Also, pinned should come before anything else, but some MSV++ produced
1568          * assemblies violate this (#bug 61990).
1569          */
1570
1571         /* Count the modifiers first */
1572         tmp_ptr = ptr;
1573         found = TRUE;
1574         while (found) {
1575                 switch (*tmp_ptr) {
1576                 case MONO_TYPE_PINNED:
1577                 case MONO_TYPE_BYREF:
1578                         ++tmp_ptr;
1579                         break;
1580                 case MONO_TYPE_CMOD_REQD:
1581                 case MONO_TYPE_CMOD_OPT:
1582                         count ++;
1583                         mono_metadata_parse_custom_mod (m, NULL, tmp_ptr, &tmp_ptr);
1584                         break;
1585                 default:
1586                         found = FALSE;
1587                 }
1588         }
1589
1590         if (count) {
1591                 type = mono_image_alloc0 (m, sizeof (MonoType) + ((gint32)count - MONO_ZERO_LEN_ARRAY) * sizeof (MonoCustomMod));
1592                 type->num_mods = count;
1593                 if (count > 64)
1594                         g_warning ("got more than 64 modifiers in type");
1595         } else {
1596                 type = &stype;
1597                 memset (type, 0, sizeof (MonoType));
1598         }
1599
1600         /* Parse pinned, byref and custom modifiers */
1601         found = TRUE;
1602         count = 0;
1603         while (found) {
1604                 switch (*ptr) {
1605                 case MONO_TYPE_PINNED:
1606                         pinned = TRUE;
1607                         ++ptr;
1608                         break;
1609                 case MONO_TYPE_BYREF:
1610                         byref = TRUE;
1611                         ++ptr;
1612                         break;
1613                 case MONO_TYPE_CMOD_REQD:
1614                 case MONO_TYPE_CMOD_OPT:
1615                         mono_metadata_parse_custom_mod (m, &(type->modifiers [count]), ptr, &ptr);
1616                         count ++;
1617                         break;
1618                 default:
1619                         found = FALSE;
1620                 }
1621         }
1622         
1623         type->attrs = opt_attrs;
1624         type->byref = byref;
1625         type->pinned = pinned ? 1 : 0;
1626
1627         if (!do_mono_metadata_parse_type (type, m, container, ptr, &ptr)) {
1628                 return NULL;
1629         }
1630
1631         if (rptr)
1632                 *rptr = ptr;
1633
1634         if (!type->num_mods) {
1635                 /* no need to free type here, because it is on the stack */
1636                 if ((type->type == MONO_TYPE_CLASS || type->type == MONO_TYPE_VALUETYPE) && !type->pinned && !type->attrs) {
1637                         MonoType *ret = type->byref ? &type->data.klass->this_arg : &type->data.klass->byval_arg;
1638
1639                         /* Consider the case:
1640
1641                              class Foo<T> { class Bar {} }
1642                              class Test : Foo<Test>.Bar {}
1643
1644                            When Foo<Test> is being expanded, 'Test' isn't yet initialized.  It's actually in
1645                            a really pristine state: it doesn't even know whether 'Test' is a reference or a value type.
1646
1647                            We ensure that the MonoClass is in a state that we can canonicalize to:
1648
1649                              klass->byval_arg.data.klass == klass
1650                              klass->this_arg.data.klass == klass
1651
1652                            If we can't canonicalize 'type', it doesn't matter, since later users of 'type' will do it.
1653
1654                            LOCKING: even though we don't explicitly hold a lock, in the problematic case 'ret' is a field
1655                                     of a MonoClass which currently holds the loader lock.  'type' is local.
1656                         */
1657                         if (ret->data.klass == type->data.klass) {
1658                                 return ret;
1659                         }
1660                 }
1661                 /* No need to use locking since nobody is modifying the hash table */
1662                 if ((cached = g_hash_table_lookup (type_cache, type))) {
1663                         return cached;
1664                 }
1665         }
1666         
1667         /* printf ("%x %x %c %s\n", type->attrs, type->num_mods, type->pinned ? 'p' : ' ', mono_type_full_name (type)); */
1668         
1669         if (type == &stype) {
1670                 type = mono_image_alloc (m, sizeof (MonoType));
1671                 memcpy (type, &stype, sizeof (MonoType));
1672         }
1673         return type;
1674 }
1675
1676 /*
1677  * LOCKING: Acquires the loader lock.
1678  */
1679 MonoType*
1680 mono_metadata_parse_type (MonoImage *m, MonoParseTypeMode mode, short opt_attrs,
1681                           const char *ptr, const char **rptr)
1682 {
1683         return mono_metadata_parse_type_full (m, NULL, mode, opt_attrs, ptr, rptr);
1684 }
1685
1686 /*
1687  * mono_metadata_get_param_attrs:
1688  *
1689  *   Return the parameter attributes for the method whose MethodDef index is DEF. The 
1690  * returned memory needs to be freed by the caller. If all the param attributes are
1691  * 0, then NULL is returned.
1692  */
1693 int*
1694 mono_metadata_get_param_attrs (MonoImage *m, int def)
1695 {
1696         MonoTableInfo *paramt = &m->tables [MONO_TABLE_PARAM];
1697         MonoTableInfo *methodt = &m->tables [MONO_TABLE_METHOD];
1698         guint32 cols [MONO_PARAM_SIZE];
1699         guint lastp, i, param_index = mono_metadata_decode_row_col (&m->tables [MONO_TABLE_METHOD], def - 1, MONO_METHOD_PARAMLIST);
1700         int *pattrs = NULL;
1701
1702         if (def < methodt->rows)
1703                 lastp = mono_metadata_decode_row_col (&m->tables [MONO_TABLE_METHOD], def, MONO_METHOD_PARAMLIST);
1704         else
1705                 lastp = paramt->rows + 1;
1706
1707         for (i = param_index; i < lastp; ++i) {
1708                 mono_metadata_decode_row (&m->tables [MONO_TABLE_PARAM], i - 1, cols, MONO_PARAM_SIZE);
1709                 if (cols [MONO_PARAM_FLAGS]) {
1710                         if (!pattrs)
1711                                 pattrs = g_new0 (int, 1 + (lastp - param_index));
1712                         pattrs [cols [MONO_PARAM_SEQUENCE]] = cols [MONO_PARAM_FLAGS];
1713                 }
1714         }
1715
1716         return pattrs;
1717 }
1718
1719 /*
1720  * mono_metadata_parse_signature_full:
1721  * @image: metadata context
1722  * @generic_container: generic container
1723  * @toke: metadata token
1724  *
1725  * Decode a method signature stored in the STANDALONESIG table
1726  *
1727  * LOCKING: Assumes the loader lock is held.
1728  *
1729  * Returns: a MonoMethodSignature describing the signature.
1730  */
1731 MonoMethodSignature*
1732 mono_metadata_parse_signature_full (MonoImage *image, MonoGenericContainer *generic_container, guint32 token)
1733 {
1734         MonoTableInfo *tables = image->tables;
1735         guint32 idx = mono_metadata_token_index (token);
1736         guint32 sig;
1737         const char *ptr;
1738
1739         if (image->dynamic)
1740                 return mono_lookup_dynamic_token (image, token, NULL);
1741
1742         g_assert (mono_metadata_token_table(token) == MONO_TABLE_STANDALONESIG);
1743                 
1744         sig = mono_metadata_decode_row_col (&tables [MONO_TABLE_STANDALONESIG], idx - 1, 0);
1745
1746         ptr = mono_metadata_blob_heap (image, sig);
1747         mono_metadata_decode_blob_size (ptr, &ptr);
1748
1749         return mono_metadata_parse_method_signature_full (image, generic_container, 0, ptr, NULL); 
1750 }
1751
1752 /*
1753  * mono_metadata_parse_signature:
1754  * @image: metadata context
1755  * @toke: metadata token
1756  *
1757  * Decode a method signature stored in the STANDALONESIG table
1758  *
1759  * Returns: a MonoMethodSignature describing the signature.
1760  */
1761 MonoMethodSignature*
1762 mono_metadata_parse_signature (MonoImage *image, guint32 token)
1763 {
1764         return mono_metadata_parse_signature_full (image, NULL, token);
1765 }
1766
1767 /*
1768  * mono_metadata_signature_alloc:
1769  * @image: metadata context
1770  * @nparmas: number of parameters in the signature
1771  *
1772  * Allocate a MonoMethodSignature structure with the specified number of params.
1773  * The return type and the params types need to be filled later.
1774  * This is a Mono runtime internal function.
1775  *
1776  * LOCKING: Assumes the loader lock is held.
1777  *
1778  * Returns: the new MonoMethodSignature structure.
1779  */
1780 MonoMethodSignature*
1781 mono_metadata_signature_alloc (MonoImage *m, guint32 nparams)
1782 {
1783         MonoMethodSignature *sig;
1784
1785         sig = mono_image_alloc0 (m, sizeof (MonoMethodSignature) + ((gint32)nparams - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
1786         sig->param_count = nparams;
1787         sig->sentinelpos = -1;
1788
1789         return sig;
1790 }
1791
1792 static MonoMethodSignature*
1793 mono_metadata_signature_dup_internal (MonoImage *image, MonoMemPool *mp, MonoMethodSignature *sig)
1794 {
1795         int sigsize;
1796         MonoMethodSignature *ret;
1797         sigsize = sizeof (MonoMethodSignature) + (sig->param_count - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType *);
1798
1799         if (image) {
1800                 ret = mono_image_alloc (image, sigsize);
1801         } else if (mp) {
1802                 ret = mono_mempool_alloc (mp, sigsize);
1803         } else {
1804                 ret = g_malloc (sigsize);
1805         }
1806         memcpy (ret, sig, sigsize);
1807         return ret;
1808 }
1809
1810 MonoMethodSignature*
1811 mono_metadata_signature_dup_full (MonoImage *image, MonoMethodSignature *sig)
1812 {
1813         return mono_metadata_signature_dup_internal (image, NULL, sig);
1814 }
1815
1816 /*The mempool is accessed without synchronization*/
1817 MonoMethodSignature*
1818 mono_metadata_signature_dup_mempool (MonoMemPool *mp, MonoMethodSignature *sig)
1819 {
1820         return mono_metadata_signature_dup_internal (NULL, mp, sig);
1821 }
1822
1823 /*
1824  * mono_metadata_signature_dup:
1825  * @sig: method signature
1826  *
1827  * Duplicate an existing MonoMethodSignature so it can be modified.
1828  * This is a Mono runtime internal function.
1829  *
1830  * Returns: the new MonoMethodSignature structure.
1831  */
1832 MonoMethodSignature*
1833 mono_metadata_signature_dup (MonoMethodSignature *sig)
1834 {
1835         return mono_metadata_signature_dup_full (NULL, sig);
1836 }
1837
1838 /*
1839  * mono_metadata_signature_size:
1840  *
1841  *   Return the amount of memory allocated to SIG.
1842  */
1843 guint32
1844 mono_metadata_signature_size (MonoMethodSignature *sig)
1845 {
1846         return sizeof (MonoMethodSignature) + (sig->param_count - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType *);
1847 }
1848
1849 /*
1850  * mono_metadata_parse_method_signature:
1851  * @m: metadata context
1852  * @generic_container: generics container
1853  * @def: the MethodDef index or 0 for Ref signatures.
1854  * @ptr: pointer to the signature metadata representation
1855  * @rptr: pointer updated to match the end of the decoded stream
1856  *
1857  * Decode a method signature stored at @ptr.
1858  * This is a Mono runtime internal function.
1859  *
1860  * LOCKING: Assumes the loader lock is held.
1861  *
1862  * Returns: a MonoMethodSignature describing the signature.
1863  */
1864 MonoMethodSignature *
1865 mono_metadata_parse_method_signature_full (MonoImage *m, MonoGenericContainer *container,
1866                                            int def, const char *ptr, const char **rptr)
1867 {
1868         MonoMethodSignature *method;
1869         int i, *pattrs = NULL;
1870         guint32 hasthis = 0, explicit_this = 0, call_convention, param_count;
1871         guint32 gen_param_count = 0;
1872         gboolean is_open = FALSE;
1873
1874         if (*ptr & 0x10)
1875                 gen_param_count = 1;
1876         if (*ptr & 0x20)
1877                 hasthis = 1;
1878         if (*ptr & 0x40)
1879                 explicit_this = 1;
1880         call_convention = *ptr & 0x0F;
1881         ptr++;
1882         if (gen_param_count)
1883                 gen_param_count = mono_metadata_decode_value (ptr, &ptr);
1884         param_count = mono_metadata_decode_value (ptr, &ptr);
1885
1886         if (def)
1887                 pattrs = mono_metadata_get_param_attrs (m, def);
1888         method = mono_metadata_signature_alloc (m, param_count);
1889         method->hasthis = hasthis;
1890         method->explicit_this = explicit_this;
1891         method->call_convention = call_convention;
1892         method->generic_param_count = gen_param_count;
1893
1894         if (call_convention != 0xa) {
1895                 method->ret = mono_metadata_parse_type_full (m, container, MONO_PARSE_RET, pattrs ? pattrs [0] : 0, ptr, &ptr);
1896                 if (!method->ret) {
1897                         mono_metadata_free_method_signature (method);
1898                         g_free (pattrs);
1899                         return NULL;
1900                 }
1901                 is_open = mono_class_is_open_constructed_type (method->ret);
1902         }
1903
1904         for (i = 0; i < method->param_count; ++i) {
1905                 if (*ptr == MONO_TYPE_SENTINEL) {
1906                         if (method->call_convention != MONO_CALL_VARARG || def)
1907                                 g_error ("found sentinel for methoddef or no vararg method");
1908                         if (method->sentinelpos >= 0)
1909                                 g_error ("found sentinel twice in the same signature");
1910                         method->sentinelpos = i;
1911                         ptr++;
1912                 }
1913                 method->params [i] = mono_metadata_parse_type_full (m, container, MONO_PARSE_PARAM, pattrs ? pattrs [i+1] : 0, ptr, &ptr);
1914                 if (!method->params [i]) {
1915                         mono_metadata_free_method_signature (method);
1916                         g_free (pattrs);
1917                         return NULL;
1918                 }
1919                 if (!is_open)
1920                         is_open = mono_class_is_open_constructed_type (method->params [i]);
1921         }
1922
1923         /* The sentinel could be missing if the caller does not pass any additional arguments */
1924         if (!def && method->call_convention == MONO_CALL_VARARG && method->sentinelpos < 0)
1925                 method->sentinelpos = method->param_count;
1926
1927         method->has_type_parameters = is_open;
1928
1929         if (def && (method->call_convention == MONO_CALL_VARARG))
1930                 method->sentinelpos = method->param_count;
1931
1932         g_free (pattrs);
1933
1934         if (rptr)
1935                 *rptr = ptr;
1936         /*
1937          * Add signature to a cache and increase ref count...
1938          */
1939
1940         return method;
1941 }
1942
1943 /*
1944  * mono_metadata_parse_method_signature:
1945  * @m: metadata context
1946  * @def: the MethodDef index or 0 for Ref signatures.
1947  * @ptr: pointer to the signature metadata representation
1948  * @rptr: pointer updated to match the end of the decoded stream
1949  *
1950  * Decode a method signature stored at @ptr.
1951  * This is a Mono runtime internal function.
1952  *
1953  * LOCKING: Assumes the loader lock is held.
1954  *
1955  * Returns: a MonoMethodSignature describing the signature.
1956  */
1957 MonoMethodSignature *
1958 mono_metadata_parse_method_signature (MonoImage *m, int def, const char *ptr, const char **rptr)
1959 {
1960         return mono_metadata_parse_method_signature_full (m, NULL, def, ptr, rptr);
1961 }
1962
1963 /*
1964  * mono_metadata_free_method_signature:
1965  * @sig: signature to destroy
1966  *
1967  * Free the memory allocated in the signature @sig.
1968  * This method needs to be robust and work also on partially-built
1969  * signatures, so it does extra checks.
1970  */
1971 void
1972 mono_metadata_free_method_signature (MonoMethodSignature *sig)
1973 {
1974         /* Everything is allocated from mempools */
1975         /*
1976         int i;
1977         if (sig->ret)
1978                 mono_metadata_free_type (sig->ret);
1979         for (i = 0; i < sig->param_count; ++i) {
1980                 if (sig->params [i])
1981                         mono_metadata_free_type (sig->params [i]);
1982         }
1983         */
1984 }
1985
1986 void
1987 mono_metadata_free_inflated_signature (MonoMethodSignature *sig)
1988 {
1989         int i;
1990
1991         /* Allocated in inflate_generic_signature () */
1992         if (sig->ret)
1993                 mono_metadata_free_type (sig->ret);
1994         for (i = 0; i < sig->param_count; ++i) {
1995                 if (sig->params [i])
1996                         mono_metadata_free_type (sig->params [i]);
1997         }
1998         g_free (sig);
1999 }
2000
2001 static gboolean
2002 inflated_method_equal (gconstpointer a, gconstpointer b)
2003 {
2004         const MonoMethodInflated *ma = a;
2005         const MonoMethodInflated *mb = b;
2006         if (ma->declaring != mb->declaring)
2007                 return FALSE;
2008         if (ma->method.method.is_mb_open != mb->method.method.is_mb_open)
2009                 return FALSE;
2010         return mono_metadata_generic_context_equal (&ma->context, &mb->context);
2011 }
2012
2013 static guint
2014 inflated_method_hash (gconstpointer a)
2015 {
2016         const MonoMethodInflated *ma = a;
2017         return (mono_metadata_generic_context_hash (&ma->context) ^ mono_aligned_addr_hash (ma->declaring)) + ma->method.method.is_mb_open;
2018 }
2019
2020 static gboolean
2021 inflated_signature_equal (gconstpointer a, gconstpointer b)
2022 {
2023         const MonoInflatedMethodSignature *sig1 = a;
2024         const MonoInflatedMethodSignature *sig2 = b;
2025
2026         /* sig->sig is assumed to be canonized */
2027         if (sig1->sig != sig2->sig)
2028                 return FALSE;
2029         /* The generic instances are canonized */
2030         return mono_metadata_generic_context_equal (&sig1->context, &sig2->context);
2031 }
2032
2033 static guint
2034 inflated_signature_hash (gconstpointer a)
2035 {
2036         const MonoInflatedMethodSignature *sig = a;
2037
2038         /* sig->sig is assumed to be canonized */
2039         return mono_metadata_generic_context_hash (&sig->context) ^ mono_aligned_addr_hash (sig->sig);
2040 }
2041
2042 /*static void
2043 dump_ginst (MonoGenericInst *ginst)
2044 {
2045         int i;
2046         char *name;
2047
2048         g_print ("Ginst: <");
2049         for (i = 0; i < ginst->type_argc; ++i) {
2050                 if (i != 0)
2051                         g_print (", ");
2052                 name = mono_type_get_name (ginst->type_argv [i]);
2053                 g_print ("%s", name);
2054                 g_free (name);
2055         }
2056         g_print (">");
2057 }*/
2058
2059 static gboolean type_in_image (MonoType *type, MonoImage *image);
2060
2061 static gboolean
2062 signature_in_image (MonoMethodSignature *sig, MonoImage *image)
2063 {
2064         gpointer iter = NULL;
2065         MonoType *p;
2066
2067         while ((p = mono_signature_get_params (sig, &iter)) != NULL)
2068                 if (type_in_image (p, image))
2069                         return TRUE;
2070
2071         return type_in_image (mono_signature_get_return_type (sig), image);
2072 }
2073
2074 static gboolean
2075 ginst_in_image (MonoGenericInst *ginst, MonoImage *image)
2076 {
2077         int i;
2078
2079         for (i = 0; i < ginst->type_argc; ++i) {
2080                 if (type_in_image (ginst->type_argv [i], image))
2081                         return TRUE;
2082         }
2083
2084         return FALSE;
2085 }
2086
2087 static gboolean
2088 gclass_in_image (MonoGenericClass *gclass, MonoImage *image)
2089 {
2090         return gclass->container_class->image == image ||
2091                 ginst_in_image (gclass->context.class_inst, image);
2092 }
2093
2094 static gboolean
2095 type_in_image (MonoType *type, MonoImage *image)
2096 {
2097 retry:
2098         switch (type->type) {
2099         case MONO_TYPE_GENERICINST:
2100                 return gclass_in_image (type->data.generic_class, image);
2101         case MONO_TYPE_PTR:
2102                 type = type->data.type;
2103                 goto retry;
2104         case MONO_TYPE_SZARRAY:
2105                 type = &type->data.klass->byval_arg;
2106                 goto retry;
2107         case MONO_TYPE_ARRAY:
2108                 type = &type->data.array->eklass->byval_arg;
2109                 goto retry;
2110         case MONO_TYPE_FNPTR:
2111                 return signature_in_image (type->data.method, image);
2112         case MONO_TYPE_VAR: {
2113                 MonoGenericContainer *container = mono_type_get_generic_param_owner (type);
2114                 if (container) {
2115                         g_assert (!container->is_method);
2116                         /*
2117                          * FIXME: The following check is here solely
2118                          * for monodis, which uses the internal
2119                          * function
2120                          * mono_metadata_load_generic_params().  The
2121                          * caller of that function needs to fill in
2122                          * owner->klass or owner->method of the
2123                          * returned struct, but monodis doesn't do
2124                          * that.  The image unloading depends on that,
2125                          * however, so a crash results without this
2126                          * check.
2127                          */
2128                         if (!container->owner.klass)
2129                                 return FALSE;
2130                         return container->owner.klass->image == image;
2131                 } else {
2132                         return type->data.generic_param->image == image;
2133                 }
2134         }
2135         case MONO_TYPE_MVAR: {
2136                 MonoGenericContainer *container = mono_type_get_generic_param_owner (type);
2137                 if (container) {
2138                         g_assert (container->is_method);
2139                         if (!container->owner.method)
2140                                 /* RefEmit created generic param whose method is not finished */
2141                                 return FALSE;
2142                         return container->owner.method->klass->image == image;
2143                 } else {
2144                         return type->data.generic_param->image == image;
2145                 }
2146         }
2147         default:
2148                 /* At this point, we should've avoided all potential allocations in mono_class_from_mono_type () */
2149                 return image == mono_class_from_mono_type (type)->image;
2150         }
2151 }
2152
2153 typedef struct {
2154         MonoImage *image;
2155         GSList *list;
2156 } CleanForImageUserData;
2157
2158 static gboolean
2159 steal_gclass_in_image (gpointer key, gpointer value, gpointer data)
2160 {
2161         MonoGenericClass *gclass = key;
2162         CleanForImageUserData *user_data = data;
2163
2164         if (!gclass_in_image (gclass, user_data->image))
2165                 return FALSE;
2166
2167         user_data->list = g_slist_prepend (user_data->list, gclass);
2168         return TRUE;
2169 }
2170
2171 static gboolean
2172 steal_ginst_in_image (gpointer key, gpointer value, gpointer data)
2173 {
2174         MonoGenericInst *ginst = key;
2175         CleanForImageUserData *user_data = data;
2176
2177         if (!ginst_in_image (ginst, user_data->image))
2178                 return FALSE;
2179
2180         user_data->list = g_slist_prepend (user_data->list, ginst);
2181         return TRUE;
2182 }
2183
2184 static gboolean
2185 inflated_method_in_image (gpointer key, gpointer value, gpointer data)
2186 {
2187         MonoImage *image = data;
2188         MonoMethodInflated *method = key;
2189
2190         // FIXME:
2191         // https://bugzilla.novell.com/show_bug.cgi?id=458168
2192         return method->declaring->klass->image == image ||
2193                 (method->context.class_inst && ginst_in_image (method->context.class_inst, image)) ||
2194                 (method->context.method_inst && ginst_in_image (method->context.method_inst, image)) || (((MonoMethod*)method)->signature && signature_in_image (mono_method_signature ((MonoMethod*)method), image));
2195 }
2196
2197 static gboolean
2198 inflated_signature_in_image (gpointer key, gpointer value, gpointer data)
2199 {
2200         MonoImage *image = data;
2201         MonoInflatedMethodSignature *sig = key;
2202
2203         return signature_in_image (sig->sig, image) ||
2204                 (sig->context.class_inst && ginst_in_image (sig->context.class_inst, image)) ||
2205                 (sig->context.method_inst && ginst_in_image (sig->context.method_inst, image));
2206 }       
2207
2208 void
2209 mono_metadata_clean_for_image (MonoImage *image)
2210 {
2211         CleanForImageUserData ginst_data, gclass_data;
2212         GSList *l;
2213
2214         /* The data structures could reference each other so we delete them in two phases */
2215         ginst_data.image = gclass_data.image = image;
2216         ginst_data.list = gclass_data.list = NULL;
2217
2218         mono_loader_lock ();    
2219         /* Collect the items to delete and remove them from the hash table */
2220         g_hash_table_foreach_steal (generic_inst_cache, steal_ginst_in_image, &ginst_data);
2221         g_hash_table_foreach_steal (generic_class_cache, steal_gclass_in_image, &gclass_data);
2222         if (generic_method_cache)
2223                 g_hash_table_foreach_remove (generic_method_cache, inflated_method_in_image, image);
2224         if (generic_signature_cache)
2225                 g_hash_table_foreach_remove (generic_signature_cache, inflated_signature_in_image, image);
2226         /* Delete the removed items */
2227         for (l = ginst_data.list; l; l = l->next)
2228                 free_generic_inst (l->data);
2229         for (l = gclass_data.list; l; l = l->next)
2230                 free_generic_class (l->data);
2231         g_slist_free (ginst_data.list);
2232         g_slist_free (gclass_data.list);
2233         mono_class_unregister_image_generic_subclasses (image);
2234         mono_loader_unlock ();
2235 }
2236
2237 static void
2238 free_inflated_method (MonoMethodInflated *imethod)
2239 {
2240         int i;
2241         MonoMethod *method = (MonoMethod*)imethod;
2242
2243         if (method->signature)
2244                 mono_metadata_free_inflated_signature (method->signature);
2245
2246         if (!((method->flags & METHOD_ATTRIBUTE_ABSTRACT) || (method->iflags & METHOD_IMPL_ATTRIBUTE_RUNTIME) || (method->iflags & METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL) || (method->flags & METHOD_ATTRIBUTE_PINVOKE_IMPL))) {
2247                 MonoMethodNormal* mn = (MonoMethodNormal*) method;
2248                 MonoMethodHeader *header = mn->header;
2249
2250                 if (header) {
2251                         /* Allocated in inflate_generic_header () */
2252                         for (i = 0; i < header->num_locals; ++i)
2253                                 mono_metadata_free_type (header->locals [i]);
2254                         g_free (header->clauses);
2255                         g_free (header);
2256                 }
2257         }
2258
2259         g_free (method);
2260 }
2261
2262 static void
2263 free_generic_inst (MonoGenericInst *ginst)
2264 {
2265         int i;
2266
2267         for (i = 0; i < ginst->type_argc; ++i)
2268                 mono_metadata_free_type (ginst->type_argv [i]);
2269         g_free (ginst);
2270 }
2271
2272
2273 static void
2274 free_generic_class (MonoGenericClass *gclass)
2275 {
2276         int i;
2277
2278         /* FIXME: The dynamic case */
2279         if (gclass->cached_class && !gclass->cached_class->image->dynamic && !mono_generic_class_is_generic_type_definition (gclass)) {
2280                 MonoClass *class = gclass->cached_class;
2281
2282                 /* Allocated in mono_class_init () */
2283                 g_free (class->methods);
2284                 if (class->ext)
2285                         g_free (class->ext->properties);
2286                 /* Allocated in mono_generic_class_get_class () */
2287                 g_free (class->interfaces);
2288                 g_free (class);
2289         } else if (gclass->is_dynamic) {
2290                 MonoDynamicGenericClass *dgclass = (MonoDynamicGenericClass *)gclass;
2291
2292                 for (i = 0; i < dgclass->count_fields; ++i) {
2293                         MonoClassField *field = dgclass->fields + i;
2294                         mono_metadata_free_type (field->type);
2295                         g_free ((char*)field->name);
2296                 }
2297                 for (i = 0; i < dgclass->count_properties; ++i) {
2298                         MonoProperty *property = dgclass->properties + i;
2299                         g_free ((char*)property->name);
2300                 }
2301                 for (i = 0; i < dgclass->count_events; ++i) {
2302                         MonoEvent *event = dgclass->events + i;
2303                         g_free ((char*)event->name);
2304                 }
2305                 
2306                 g_free (dgclass->methods);
2307                 g_free (dgclass->ctors);
2308                 g_free (dgclass->fields);
2309                 g_free (dgclass->properties);
2310                 g_free (dgclass->events);
2311                 g_free (dgclass->field_objects);
2312                 g_free (dgclass->field_generic_types);
2313                 if (!mono_generic_class_is_generic_type_definition (gclass))
2314                         g_free (gclass->cached_class);
2315         }
2316         g_free (gclass);
2317 }
2318
2319 static void
2320 free_inflated_signature (MonoInflatedMethodSignature *sig)
2321 {
2322         mono_metadata_free_inflated_signature (sig->sig);
2323         g_free (sig);
2324 }
2325
2326 /*
2327  * LOCKING: assumes the loader lock is held.
2328  */
2329 MonoMethodInflated*
2330 mono_method_inflated_lookup (MonoMethodInflated* method, gboolean cache)
2331 {
2332         if (cache) {
2333                 if (!generic_method_cache)
2334                         generic_method_cache = g_hash_table_new_full (inflated_method_hash, inflated_method_equal, NULL, (GDestroyNotify)free_inflated_method);
2335                 g_hash_table_insert (generic_method_cache, method, method);
2336                 return method;
2337         } else {
2338                 if (generic_method_cache)
2339                         return g_hash_table_lookup (generic_method_cache, method);
2340                 return NULL;
2341         }
2342 }
2343
2344 /*
2345  * mono_metadata_get_inflated_signature:
2346  *
2347  *   Given an inflated signature and a generic context, return a canonical copy of the 
2348  * signature. The returned signature might be equal to SIG or it might be a cached copy.
2349  */
2350 MonoMethodSignature *
2351 mono_metadata_get_inflated_signature (MonoMethodSignature *sig, MonoGenericContext *context)
2352 {
2353         MonoInflatedMethodSignature helper;
2354         MonoInflatedMethodSignature *res;
2355
2356         mono_loader_lock ();
2357         if (!generic_signature_cache)
2358                 generic_signature_cache = g_hash_table_new_full (inflated_signature_hash, inflated_signature_equal, NULL, (GDestroyNotify)free_inflated_signature);
2359
2360         helper.sig = sig;
2361         helper.context.class_inst = context->class_inst;
2362         helper.context.method_inst = context->method_inst;
2363         res = g_hash_table_lookup (generic_signature_cache, &helper);
2364         if (!res) {
2365                 res = g_new0 (MonoInflatedMethodSignature, 1);
2366                 res->sig = sig;
2367                 res->context.class_inst = context->class_inst;
2368                 res->context.method_inst = context->method_inst;
2369                 g_hash_table_insert (generic_signature_cache, res, res);
2370         }
2371
2372         mono_loader_unlock ();
2373         return res->sig;
2374 }
2375
2376 /*
2377  * mono_metadata_get_generic_inst:
2378  *
2379  * Given a list of types, return a MonoGenericInst that represents that list.
2380  * The returned MonoGenericInst has its own copy of the list of types.  The list
2381  * passed in the argument can be freed, modified or disposed of.
2382  *
2383  */
2384 MonoGenericInst *
2385 mono_metadata_get_generic_inst (int type_argc, MonoType **type_argv)
2386 {
2387         MonoGenericInst *ginst;
2388         gboolean is_open;
2389         int i;
2390         int size = sizeof (MonoGenericInst) + (type_argc - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType *);
2391
2392         for (i = 0; i < type_argc; ++i)
2393                 if (mono_class_is_open_constructed_type (type_argv [i]))
2394                         break;
2395         is_open = (i < type_argc);
2396
2397         ginst = alloca (size);
2398         ginst->id = 0;
2399         ginst->is_open = is_open;
2400         ginst->type_argc = type_argc;
2401         memcpy (ginst->type_argv, type_argv, type_argc * sizeof (MonoType *));
2402
2403         mono_loader_lock ();
2404
2405         ginst = g_hash_table_lookup (generic_inst_cache, ginst);
2406         if (!ginst) {
2407                 ginst = g_malloc (size);
2408                 ginst->id = ++next_generic_inst_id;
2409                 ginst->is_open = is_open;
2410                 ginst->type_argc = type_argc;
2411
2412                 for (i = 0; i < type_argc; ++i)
2413                         ginst->type_argv [i] = mono_metadata_type_dup (NULL, type_argv [i]);
2414
2415                 g_hash_table_insert (generic_inst_cache, ginst, ginst);
2416         }
2417
2418         mono_loader_unlock ();
2419         return ginst;
2420 }
2421
2422 static gboolean
2423 mono_metadata_is_type_builder_generic_type_definition (MonoClass *container_class, MonoGenericInst *inst, gboolean is_dynamic)
2424 {
2425         MonoGenericContainer *container = container_class->generic_container; 
2426
2427         if (!is_dynamic || container_class->wastypebuilder || container->type_argc != inst->type_argc)
2428                 return FALSE;
2429         return inst == container->context.class_inst;
2430 }
2431
2432 /*
2433  * mono_metadata_lookup_generic_class:
2434  *
2435  * Returns a MonoGenericClass with the given properties.
2436  *
2437  */
2438 MonoGenericClass *
2439 mono_metadata_lookup_generic_class (MonoClass *container_class, MonoGenericInst *inst, gboolean is_dynamic)
2440 {
2441         MonoGenericClass *gclass;
2442         MonoGenericClass helper;
2443         gboolean is_tb_open = mono_metadata_is_type_builder_generic_type_definition (container_class, inst, is_dynamic);
2444
2445         helper.container_class = container_class;
2446         helper.context.class_inst = inst;
2447         helper.context.method_inst = NULL;
2448         helper.is_dynamic = is_dynamic; /* We use this in a hash lookup, which does not attempt to downcast the pointer */
2449         helper.is_tb_open = is_tb_open;
2450         helper.cached_class = NULL;
2451
2452         mono_loader_lock ();
2453
2454         gclass = g_hash_table_lookup (generic_class_cache, &helper);
2455
2456         /* A tripwire just to keep us honest */
2457         g_assert (!helper.cached_class);
2458
2459         if (gclass) {
2460                 mono_loader_unlock ();
2461                 return gclass;
2462         }
2463
2464         if (is_dynamic) {
2465                 MonoDynamicGenericClass *dgclass = g_new0 (MonoDynamicGenericClass, 1);
2466                 gclass = &dgclass->generic_class;
2467                 gclass->is_dynamic = 1;
2468         } else {
2469                 gclass = g_new0 (MonoGenericClass, 1);
2470         }
2471
2472         gclass->is_tb_open = is_tb_open;
2473         gclass->container_class = container_class;
2474         gclass->context.class_inst = inst;
2475         gclass->context.method_inst = NULL;
2476         if (inst == container_class->generic_container->context.class_inst && !is_tb_open)
2477                 gclass->cached_class = container_class;
2478
2479         g_hash_table_insert (generic_class_cache, gclass, gclass);
2480
2481         mono_loader_unlock ();
2482
2483         return gclass;
2484 }
2485
2486 /*
2487  * mono_metadata_inflate_generic_inst:
2488  *
2489  * Instantiate the generic instance @ginst with the context @context.
2490  *
2491  */
2492 MonoGenericInst *
2493 mono_metadata_inflate_generic_inst (MonoGenericInst *ginst, MonoGenericContext *context)
2494 {
2495         MonoType **type_argv;
2496         MonoGenericInst *nginst;
2497         int i;
2498
2499         if (!ginst->is_open)
2500                 return ginst;
2501
2502         type_argv = g_new0 (MonoType*, ginst->type_argc);
2503
2504         for (i = 0; i < ginst->type_argc; i++)
2505                 type_argv [i] = mono_class_inflate_generic_type (ginst->type_argv [i], context);
2506
2507         nginst = mono_metadata_get_generic_inst (ginst->type_argc, type_argv);
2508
2509         for (i = 0; i < ginst->type_argc; i++)
2510                 mono_metadata_free_type (type_argv [i]);
2511         g_free (type_argv);
2512
2513         return nginst;
2514 }
2515
2516 MonoGenericInst *
2517 mono_metadata_parse_generic_inst (MonoImage *m, MonoGenericContainer *container,
2518                                   int count, const char *ptr, const char **rptr)
2519 {
2520         MonoType **type_argv;
2521         MonoGenericInst *ginst;
2522         int i;
2523
2524         type_argv = g_new0 (MonoType*, count);
2525
2526         for (i = 0; i < count; i++) {
2527                 MonoType *t = mono_metadata_parse_type_full (m, container, MONO_PARSE_TYPE, 0, ptr, &ptr);
2528                 if (!t) {
2529                         g_free (type_argv);
2530                         return NULL;
2531                 }
2532                 type_argv [i] = t;
2533         }
2534
2535         if (rptr)
2536                 *rptr = ptr;
2537
2538         ginst = mono_metadata_get_generic_inst (count, type_argv);
2539
2540         g_free (type_argv);
2541
2542         return ginst;
2543 }
2544
2545 static gboolean
2546 do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericContainer *container,
2547                                       const char *ptr, const char **rptr)
2548 {
2549         MonoGenericInst *inst;
2550         MonoClass *gklass;
2551         MonoType *gtype;
2552         int count;
2553
2554         gtype = mono_metadata_parse_type (m, MONO_PARSE_TYPE, 0, ptr, &ptr);
2555         if (gtype == NULL)
2556                 return FALSE;
2557
2558         gklass = mono_class_from_mono_type (gtype);
2559         if (!gklass->generic_container)
2560                 return FALSE;
2561
2562         count = mono_metadata_decode_value (ptr, &ptr);
2563         inst = mono_metadata_parse_generic_inst (m, container, count, ptr, &ptr);
2564         if (inst == NULL)
2565                 return FALSE;
2566
2567         if (rptr)
2568                 *rptr = ptr;
2569
2570         type->data.generic_class = mono_metadata_lookup_generic_class (gklass, inst, FALSE);
2571         return TRUE;
2572 }
2573
2574 /*
2575  * select_container:
2576  * @gc: The generic container to normalize
2577  * @type: The kind of generic parameters the resulting generic-container should contain
2578  */
2579
2580 static MonoGenericContainer *
2581 select_container (MonoGenericContainer *gc, MonoTypeEnum type)
2582 {
2583         gboolean is_var = (type == MONO_TYPE_VAR);
2584         if (!gc)
2585                 return NULL;
2586
2587         g_assert (is_var || type == MONO_TYPE_MVAR);
2588
2589         if (is_var) {
2590                 if (gc->is_method || gc->parent)
2591                         /*
2592                          * The current MonoGenericContainer is a generic method -> its `parent'
2593                          * points to the containing class'es container.
2594                          */
2595                         return gc->parent;
2596         }
2597
2598         return gc;
2599 }
2600
2601 /* 
2602  * mono_metadata_parse_generic_param:
2603  * @generic_container: Our MonoClass's or MonoMethodNormal's MonoGenericContainer;
2604  *                     see mono_metadata_parse_type_full() for details.
2605  * Internal routine to parse a generic type parameter.
2606  * LOCKING: Acquires the loader lock
2607  */
2608 static MonoGenericParam *
2609 mono_metadata_parse_generic_param (MonoImage *m, MonoGenericContainer *generic_container,
2610                                    MonoTypeEnum type, const char *ptr, const char **rptr)
2611 {
2612         int index = mono_metadata_decode_value (ptr, &ptr);
2613         if (rptr)
2614                 *rptr = ptr;
2615
2616         generic_container = select_container (generic_container, type);
2617         if (!generic_container) {
2618                 /* Create dummy MonoGenericParam */
2619                 MonoGenericParam *param;
2620
2621                 param = mono_image_alloc0 (m, sizeof (MonoGenericParam));
2622                 param->info.name = mono_image_alloc0 (m, 8);
2623                 sprintf ((char*)param->info.name, "%d", index);
2624                 param->num = index;
2625                 param->image = m;
2626
2627                 return param;
2628         }
2629
2630         g_assert (index < generic_container->type_argc);
2631         return mono_generic_container_get_param (generic_container, index);
2632 }
2633
2634 /*
2635  * mono_metadata_get_shared_type:
2636  *
2637  *   Return a shared instance of TYPE, if available, NULL otherwise.
2638  * Shared MonoType instances help save memory. Their contents should not be modified
2639  * by the caller. They do not need to be freed as their lifetime is bound by either
2640  * the lifetime of the runtime (builtin types), or the lifetime of the MonoClass
2641  * instance they are embedded in. If they are freed, they should be freed using
2642  * mono_metadata_free_type () instead of g_free ().
2643  */
2644 MonoType*
2645 mono_metadata_get_shared_type (MonoType *type)
2646 {
2647         MonoType *cached;
2648
2649         /* No need to use locking since nobody is modifying the hash table */
2650         if ((cached = g_hash_table_lookup (type_cache, type)))
2651                 return cached;
2652
2653         switch (type->type){
2654         case MONO_TYPE_CLASS:
2655         case MONO_TYPE_VALUETYPE:
2656                 if (type == &type->data.klass->byval_arg)
2657                         return type;
2658                 if (type == &type->data.klass->this_arg)
2659                         return type;
2660                 break;
2661         }
2662
2663         return NULL;
2664 }
2665
2666 /* 
2667  * do_mono_metadata_parse_type:
2668  * @type: MonoType to be filled in with the return value
2669  * @m: image context
2670  * @generic_context: generics_context
2671  * @ptr: pointer to the encoded type
2672  * @rptr: pointer where the end of the encoded type is saved
2673  * 
2674  * Internal routine used to "fill" the contents of @type from an 
2675  * allocated pointer.  This is done this way to avoid doing too
2676  * many mini-allocations (particularly for the MonoFieldType which
2677  * most of the time is just a MonoType, but sometimes might be augmented).
2678  *
2679  * This routine is used by mono_metadata_parse_type and
2680  * mono_metadata_parse_field_type
2681  *
2682  * This extracts a Type as specified in Partition II (22.2.12) 
2683  *
2684  * Returns: FALSE if the type could not be loaded
2685  */
2686 static gboolean
2687 do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContainer *container,
2688                              const char *ptr, const char **rptr)
2689 {
2690         gboolean ok = TRUE;
2691         type->type = mono_metadata_decode_value (ptr, &ptr);
2692         
2693         switch (type->type){
2694         case MONO_TYPE_VOID:
2695         case MONO_TYPE_BOOLEAN:
2696         case MONO_TYPE_CHAR:
2697         case MONO_TYPE_I1:
2698         case MONO_TYPE_U1:
2699         case MONO_TYPE_I2:
2700         case MONO_TYPE_U2:
2701         case MONO_TYPE_I4:
2702         case MONO_TYPE_U4:
2703         case MONO_TYPE_I8:
2704         case MONO_TYPE_U8:
2705         case MONO_TYPE_R4:
2706         case MONO_TYPE_R8:
2707         case MONO_TYPE_I:
2708         case MONO_TYPE_U:
2709         case MONO_TYPE_STRING:
2710         case MONO_TYPE_OBJECT:
2711         case MONO_TYPE_TYPEDBYREF:
2712                 break;
2713         case MONO_TYPE_VALUETYPE:
2714         case MONO_TYPE_CLASS: {
2715                 guint32 token;
2716                 token = mono_metadata_parse_typedef_or_ref (m, ptr, &ptr);
2717                 type->data.klass = mono_class_get (m, token);
2718                 if (!type->data.klass)
2719                         return FALSE;
2720                 break;
2721         }
2722         case MONO_TYPE_SZARRAY: {
2723                 MonoType *etype = mono_metadata_parse_type_full (m, container, MONO_PARSE_MOD_TYPE, 0, ptr, &ptr);
2724                 if (!etype)
2725                         return FALSE;
2726                 type->data.klass = mono_class_from_mono_type (etype);
2727                 break;
2728         }
2729         case MONO_TYPE_PTR:
2730                 type->data.type = mono_metadata_parse_type_full (m, container, MONO_PARSE_MOD_TYPE, 0, ptr, &ptr);
2731                 if (!type->data.type)
2732                         return FALSE;
2733                 break;
2734         case MONO_TYPE_FNPTR:
2735                 type->data.method = mono_metadata_parse_method_signature_full (m, container, 0, ptr, &ptr);
2736                 break;
2737         case MONO_TYPE_ARRAY:
2738                 type->data.array = mono_metadata_parse_array_full (m, container, ptr, &ptr);
2739                 break;
2740         case MONO_TYPE_MVAR:
2741                 if (container && !container->is_method)
2742                         return FALSE;
2743         case MONO_TYPE_VAR:
2744                 type->data.generic_param = mono_metadata_parse_generic_param (m, container, type->type, ptr, &ptr);
2745                 break;
2746         case MONO_TYPE_GENERICINST:
2747                 ok = do_mono_metadata_parse_generic_class (type, m, container, ptr, &ptr);
2748                 break;
2749         default:
2750                 g_error ("type 0x%02x not handled in do_mono_metadata_parse_type", type->type);
2751         }
2752         
2753         if (rptr)
2754                 *rptr = ptr;
2755         return ok;
2756 }
2757
2758 /*
2759  * mono_metadata_free_type:
2760  * @type: type to free
2761  *
2762  * Free the memory allocated for type @type which is allocated on the heap.
2763  */
2764 void
2765 mono_metadata_free_type (MonoType *type)
2766 {
2767         if (type >= builtin_types && type < builtin_types + NBUILTIN_TYPES ())
2768                 return;
2769         
2770         switch (type->type){
2771         case MONO_TYPE_OBJECT:
2772         case MONO_TYPE_STRING:
2773                 if (!type->data.klass)
2774                         break;
2775                 /* fall through */
2776         case MONO_TYPE_CLASS:
2777         case MONO_TYPE_VALUETYPE:
2778                 if (type == &type->data.klass->byval_arg || type == &type->data.klass->this_arg)
2779                         return;
2780                 break;
2781         case MONO_TYPE_PTR:
2782                 mono_metadata_free_type (type->data.type);
2783                 break;
2784         case MONO_TYPE_FNPTR:
2785                 mono_metadata_free_method_signature (type->data.method);
2786                 break;
2787         case MONO_TYPE_ARRAY:
2788                 mono_metadata_free_array (type->data.array);
2789                 break;
2790         }
2791
2792         g_free (type);
2793 }
2794
2795 #if 0
2796 static void
2797 hex_dump (const char *buffer, int base, int count)
2798 {
2799         int show_header = 1;
2800         int i;
2801
2802         if (count < 0){
2803                 count = -count;
2804                 show_header = 0;
2805         }
2806         
2807         for (i = 0; i < count; i++){
2808                 if (show_header)
2809                         if ((i % 16) == 0)
2810                                 printf ("\n0x%08x: ", (unsigned char) base + i);
2811
2812                 printf ("%02x ", (unsigned char) (buffer [i]));
2813         }
2814         fflush (stdout);
2815 }
2816 #endif
2817
2818 /** 
2819  * @mh: The Method header
2820  * @ptr: Points to the beginning of the Section Data (25.3)
2821  */
2822 static void
2823 parse_section_data (MonoImage *m, MonoMethodHeader *mh, const unsigned char *ptr)
2824 {
2825         unsigned char sect_data_flags;
2826         const unsigned char *sptr;
2827         int is_fat;
2828         guint32 sect_data_len;
2829         
2830         while (1) {
2831                 /* align on 32-bit boundary */
2832                 sptr = ptr = dword_align (ptr); 
2833                 sect_data_flags = *ptr;
2834                 ptr++;
2835                 
2836                 is_fat = sect_data_flags & METHOD_HEADER_SECTION_FAT_FORMAT;
2837                 if (is_fat) {
2838                         sect_data_len = (ptr [2] << 16) | (ptr [1] << 8) | ptr [0];
2839                         ptr += 3;
2840                 } else {
2841                         sect_data_len = ptr [0];
2842                         ++ptr;
2843                 }
2844                 /*
2845                 g_print ("flags: %02x, len: %d\n", sect_data_flags, sect_data_len);
2846                 hex_dump (sptr, 0, sect_data_len+8);
2847                 g_print ("\nheader: ");
2848                 hex_dump (sptr-4, 0, 4);
2849                 g_print ("\n");
2850                 */
2851                 
2852                 if (sect_data_flags & METHOD_HEADER_SECTION_EHTABLE) {
2853                         const unsigned char *p = dword_align (ptr);
2854                         int i;
2855                         mh->num_clauses = is_fat ? sect_data_len / 24: sect_data_len / 12;
2856                         /* we could just store a pointer if we don't need to byteswap */
2857                         mh->clauses = mono_image_alloc0 (m, sizeof (MonoExceptionClause) * mh->num_clauses);
2858                         for (i = 0; i < mh->num_clauses; ++i) {
2859                                 MonoExceptionClause *ec = &mh->clauses [i];
2860                                 guint32 tof_value;
2861                                 if (is_fat) {
2862                                         ec->flags = read32 (p);
2863                                         ec->try_offset = read32 (p + 4);
2864                                         ec->try_len = read32 (p + 8);
2865                                         ec->handler_offset = read32 (p + 12);
2866                                         ec->handler_len = read32 (p + 16);
2867                                         tof_value = read32 (p + 20);
2868                                         p += 24;
2869                                 } else {
2870                                         ec->flags = read16 (p);
2871                                         ec->try_offset = read16 (p + 2);
2872                                         ec->try_len = *(p + 4);
2873                                         ec->handler_offset = read16 (p + 5);
2874                                         ec->handler_len = *(p + 7);
2875                                         tof_value = read32 (p + 8);
2876                                         p += 12;
2877                                 }
2878                                 if (ec->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2879                                         ec->data.filter_offset = tof_value;
2880                                 } else if (ec->flags == MONO_EXCEPTION_CLAUSE_NONE) {
2881                                         ec->data.catch_class = tof_value? mono_class_get (m, tof_value): 0;
2882                                 } else {
2883                                         ec->data.catch_class = NULL;
2884                                 }
2885                                 /* g_print ("try %d: %x %04x-%04x %04x\n", i, ec->flags, ec->try_offset, ec->try_offset+ec->try_len, ec->try_len); */
2886                         }
2887
2888                 }
2889                 if (sect_data_flags & METHOD_HEADER_SECTION_MORE_SECTS)
2890                         ptr += sect_data_len - 4; /* LAMESPEC: it seems the size includes the header */
2891                 else
2892                         return;
2893         }
2894 }
2895
2896 /*
2897  * mono_metadata_parse_mh_full:
2898  * @m: metadata context
2899  * @generic_context: generics context
2900  * @ptr: pointer to the method header.
2901  *
2902  * Decode the method header at @ptr, including pointer to the IL code,
2903  * info about local variables and optional exception tables.
2904  * This is a Mono runtime internal function.
2905  *
2906  * LOCKING: Acquires the loader lock.
2907  *
2908  * Returns: a MonoMethodHeader allocated from the image mempool.
2909  */
2910 MonoMethodHeader *
2911 mono_metadata_parse_mh_full (MonoImage *m, MonoGenericContainer *container, const char *ptr)
2912 {
2913         MonoMethodHeader *mh;
2914         unsigned char flags = *(const unsigned char *) ptr;
2915         unsigned char format = flags & METHOD_HEADER_FORMAT_MASK;
2916         guint16 fat_flags;
2917         guint32 local_var_sig_tok, max_stack, code_size, init_locals;
2918         const unsigned char *code;
2919         int hsize;
2920         
2921         g_return_val_if_fail (ptr != NULL, NULL);
2922
2923         switch (format) {
2924         case METHOD_HEADER_TINY_FORMAT:
2925                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader));
2926                 ptr++;
2927                 mh->max_stack = 8;
2928                 local_var_sig_tok = 0;
2929                 mh->code_size = flags >> 2;
2930                 mh->code = (unsigned char*)ptr;
2931                 return mh;
2932         case METHOD_HEADER_TINY_FORMAT1:
2933                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader));
2934                 ptr++;
2935                 mh->max_stack = 8;
2936                 local_var_sig_tok = 0;
2937
2938                 /*
2939                  * The spec claims 3 bits, but the Beta2 is
2940                  * incorrect
2941                  */
2942                 mh->code_size = flags >> 2;
2943                 mh->code = (unsigned char*)ptr;
2944                 return mh;
2945         case METHOD_HEADER_FAT_FORMAT:
2946                 fat_flags = read16 (ptr);
2947                 ptr += 2;
2948                 hsize = (fat_flags >> 12) & 0xf;
2949                 max_stack = read16 (ptr);
2950                 ptr += 2;
2951                 code_size = read32 (ptr);
2952                 ptr += 4;
2953                 local_var_sig_tok = read32 (ptr);
2954                 ptr += 4;
2955
2956                 if (fat_flags & METHOD_HEADER_INIT_LOCALS)
2957                         init_locals = 1;
2958                 else
2959                         init_locals = 0;
2960
2961                 code = (unsigned char*)ptr;
2962
2963                 if (!(fat_flags & METHOD_HEADER_MORE_SECTS))
2964                         break;
2965
2966                 /*
2967                  * There are more sections
2968                  */
2969                 ptr = (char*)code + code_size;
2970                 break;
2971         default:
2972                 return NULL;
2973         }
2974                        
2975         if (local_var_sig_tok) {
2976                 MonoTableInfo *t = &m->tables [MONO_TABLE_STANDALONESIG];
2977                 const char *locals_ptr;
2978                 guint32 cols [MONO_STAND_ALONE_SIGNATURE_SIZE];
2979                 int len=0, i, bsize;
2980
2981                 mono_metadata_decode_row (t, (local_var_sig_tok & 0xffffff)-1, cols, 1);
2982                 locals_ptr = mono_metadata_blob_heap (m, cols [MONO_STAND_ALONE_SIGNATURE]);
2983                 bsize = mono_metadata_decode_blob_size (locals_ptr, &locals_ptr);
2984                 if (*locals_ptr != 0x07)
2985                         g_warning ("wrong signature for locals blob");
2986                 locals_ptr++;
2987                 len = mono_metadata_decode_value (locals_ptr, &locals_ptr);
2988                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader) + (len - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
2989                 mh->num_locals = len;
2990                 for (i = 0; i < len; ++i) {
2991                         mh->locals [i] = mono_metadata_parse_type_full (
2992                                 m, container, MONO_PARSE_LOCAL, 0, locals_ptr, &locals_ptr);
2993                         if (!mh->locals [i]) {
2994                                 return NULL;
2995                         }
2996                 }
2997         } else {
2998                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader));
2999         }
3000         mh->code = code;
3001         mh->code_size = code_size;
3002         mh->max_stack = max_stack;
3003         mh->init_locals = init_locals;
3004         if (fat_flags & METHOD_HEADER_MORE_SECTS)
3005                 parse_section_data (m, mh, (const unsigned char*)ptr);
3006         return mh;
3007 }
3008
3009 /*
3010  * mono_metadata_parse_mh:
3011  * @generic_context: generics context
3012  * @ptr: pointer to the method header.
3013  *
3014  * Decode the method header at @ptr, including pointer to the IL code,
3015  * info about local variables and optional exception tables.
3016  * This is a Mono runtime internal function.
3017  *
3018  * Returns: a MonoMethodHeader.
3019  */
3020 MonoMethodHeader *
3021 mono_metadata_parse_mh (MonoImage *m, const char *ptr)
3022 {
3023         MonoMethodHeader *res;
3024
3025         mono_loader_lock ();
3026
3027         res = mono_metadata_parse_mh_full (m, NULL, ptr);
3028
3029         mono_loader_unlock ();
3030
3031         return res;
3032 }
3033
3034 /*
3035  * mono_metadata_free_mh:
3036  * @mh: a method header
3037  *
3038  * Free the memory allocated for the method header.
3039  * This is a Mono runtime internal function.
3040  */
3041 void
3042 mono_metadata_free_mh (MonoMethodHeader *mh)
3043 {
3044         /* Allocated from the mempool */
3045 }
3046
3047 /*
3048  * mono_method_header_get_code:
3049  * @header: a MonoMethodHeader pointer
3050  * @code_size: memory location for returning the code size
3051  * @max_stack: memory location for returning the max stack
3052  *
3053  * Method header accessor to retreive info about the IL code properties:
3054  * a pointer to the IL code itself, the size of the code and the max number
3055  * of stack slots used by the code.
3056  *
3057  * Returns: pointer to the IL code represented by the method header.
3058  */
3059 const unsigned char*
3060 mono_method_header_get_code (MonoMethodHeader *header, guint32* code_size, guint32* max_stack)
3061 {
3062         if (code_size)
3063                 *code_size = header->code_size;
3064         if (max_stack)
3065                 *max_stack = header->max_stack;
3066         return header->code;
3067 }
3068
3069 /*
3070  * mono_method_header_get_locals:
3071  * @header: a MonoMethodHeader pointer
3072  * @num_locals: memory location for returning the number of local variables
3073  * @init_locals: memory location for returning the init_locals flag
3074  *
3075  * Method header accessor to retreive info about the local variables:
3076  * an array of local types, the number of locals and whether the locals
3077  * are supposed to be initialized to 0 on method entry
3078  *
3079  * Returns: pointer to an array of types of the local variables
3080  */
3081 MonoType**
3082 mono_method_header_get_locals (MonoMethodHeader *header, guint32* num_locals, gboolean *init_locals)
3083 {
3084         if (num_locals)
3085                 *num_locals = header->num_locals;
3086         if (init_locals)
3087                 *init_locals = header->init_locals;
3088         return header->locals;
3089 }
3090
3091 /*
3092  * mono_method_header_get_num_clauses:
3093  * @header: a MonoMethodHeader pointer
3094  *
3095  * Method header accessor to retreive the number of exception clauses.
3096  *
3097  * Returns: the number of exception clauses present
3098  */
3099 int
3100 mono_method_header_get_num_clauses (MonoMethodHeader *header)
3101 {
3102         return header->num_clauses;
3103 }
3104
3105 /*
3106  * mono_method_header_get_clauses:
3107  * @header: a MonoMethodHeader pointer
3108  * @method: MonoMethod the header belongs to
3109  * @iter: pointer to a iterator
3110  * @clause: pointer to a MonoExceptionClause structure which will be filled with the info
3111  *
3112  * Get the info about the exception clauses in the method. Set *iter to NULL to
3113  * initiate the iteration, then call the method repeatedly until it returns FALSE.
3114  * At each iteration, the structure pointed to by clause if filled with the
3115  * exception clause information.
3116  *
3117  * Returns: TRUE if clause was filled with info, FALSE if there are no more exception
3118  * clauses.
3119  */
3120 int
3121 mono_method_header_get_clauses (MonoMethodHeader *header, MonoMethod *method, gpointer *iter, MonoExceptionClause *clause)
3122 {
3123         MonoExceptionClause *sc;
3124         /* later we'll be able to use this interface to parse the clause info on demand,
3125          * without allocating anything.
3126          */
3127         if (!iter || !header->num_clauses)
3128                 return FALSE;
3129         if (!*iter) {
3130                 *iter = sc = header->clauses;
3131                 *clause = *sc;
3132                 return TRUE;
3133         }
3134         sc = *iter;
3135         sc++;
3136         if (sc < header->clauses + header->num_clauses) {
3137                 *iter = sc;
3138                 *clause = *sc;
3139                 return TRUE;
3140         }
3141         return FALSE;
3142 }
3143
3144 /**
3145  * mono_metadata_parse_field_type:
3146  * @m: metadata context to extract information from
3147  * @ptr: pointer to the field signature
3148  * @rptr: pointer updated to match the end of the decoded stream
3149  *
3150  * Parses the field signature, and returns the type information for it. 
3151  *
3152  * Returns: The MonoType that was extracted from @ptr.
3153  */
3154 MonoType *
3155 mono_metadata_parse_field_type (MonoImage *m, short field_flags, const char *ptr, const char **rptr)
3156 {
3157         return mono_metadata_parse_type (m, MONO_PARSE_FIELD, field_flags, ptr, rptr);
3158 }
3159
3160 /**
3161  * mono_metadata_parse_param:
3162  * @m: metadata context to extract information from
3163  * @ptr: pointer to the param signature
3164  * @rptr: pointer updated to match the end of the decoded stream
3165  *
3166  * Parses the param signature, and returns the type information for it. 
3167  *
3168  * Returns: The MonoType that was extracted from @ptr.
3169  */
3170 MonoType *
3171 mono_metadata_parse_param (MonoImage *m, const char *ptr, const char **rptr)
3172 {
3173         return mono_metadata_parse_type (m, MONO_PARSE_PARAM, 0, ptr, rptr);
3174 }
3175
3176 /*
3177  * mono_metadata_token_from_dor:
3178  * @dor_token: A TypeDefOrRef coded index
3179  *
3180  * dor_token is a TypeDefOrRef coded index: it contains either
3181  * a TypeDef, TypeRef or TypeSpec in the lower bits, and the upper
3182  * bits contain an index into the table.
3183  *
3184  * Returns: an expanded token
3185  */
3186 guint32
3187 mono_metadata_token_from_dor (guint32 dor_index)
3188 {
3189         guint32 table, idx;
3190
3191         table = dor_index & 0x03;
3192         idx = dor_index >> 2;
3193
3194         switch (table){
3195         case 0: /* TypeDef */
3196                 return MONO_TOKEN_TYPE_DEF | idx;
3197         case 1: /* TypeRef */
3198                 return MONO_TOKEN_TYPE_REF | idx;
3199         case 2: /* TypeSpec */
3200                 return MONO_TOKEN_TYPE_SPEC | idx;
3201         default:
3202                 g_assert_not_reached ();
3203         }
3204
3205         return 0;
3206 }
3207
3208 /*
3209  * We use this to pass context information to the row locator
3210  */
3211 typedef struct {
3212         int idx;                        /* The index that we are trying to locate */
3213         int col_idx;            /* The index in the row where idx may be stored */
3214         MonoTableInfo *t;       /* pointer to the table */
3215         guint32 result;
3216 } locator_t;
3217
3218 /*
3219  * How the row locator works.
3220  *
3221  *   Table A
3222  *   ___|___
3223  *   ___|___         Table B
3224  *   ___|___------>  _______
3225  *   ___|___         _______
3226  *   
3227  * A column in the rows of table A references an index in table B.
3228  * For example A may be the TYPEDEF table and B the METHODDEF table.
3229  * 
3230  * Given an index in table B we want to get the row in table A
3231  * where the column n references our index in B.
3232  *
3233  * In the locator_t structure:
3234  *      t is table A
3235  *      col_idx is the column number
3236  *      index is the index in table B
3237  *      result will be the index in table A
3238  *
3239  * Examples:
3240  * Table A              Table B         column (in table A)
3241  * TYPEDEF              METHODDEF   MONO_TYPEDEF_METHOD_LIST
3242  * TYPEDEF              FIELD           MONO_TYPEDEF_FIELD_LIST
3243  * PROPERTYMAP  PROPERTY        MONO_PROPERTY_MAP_PROPERTY_LIST
3244  * INTERFIMPL   TYPEDEF         MONO_INTERFACEIMPL_CLASS
3245  * METHODSEM    PROPERTY        ASSOCIATION (encoded index)
3246  *
3247  * Note that we still don't support encoded indexes.
3248  *
3249  */
3250 static int
3251 typedef_locator (const void *a, const void *b)
3252 {
3253         locator_t *loc = (locator_t *) a;
3254         const char *bb = (const char *) b;
3255         int typedef_index = (bb - loc->t->base) / loc->t->row_size;
3256         guint32 col, col_next;
3257
3258         col = mono_metadata_decode_row_col (loc->t, typedef_index, loc->col_idx);
3259
3260         if (loc->idx < col)
3261                 return -1;
3262
3263         /*
3264          * Need to check that the next row is valid.
3265          */
3266         if (typedef_index + 1 < loc->t->rows) {
3267                 col_next = mono_metadata_decode_row_col (loc->t, typedef_index + 1, loc->col_idx);
3268                 if (loc->idx >= col_next)
3269                         return 1;
3270
3271                 if (col == col_next)
3272                         return 1; 
3273         }
3274
3275         loc->result = typedef_index;
3276         
3277         return 0;
3278 }
3279
3280 static int
3281 table_locator (const void *a, const void *b)
3282 {
3283         locator_t *loc = (locator_t *) a;
3284         const char *bb = (const char *) b;
3285         guint32 table_index = (bb - loc->t->base) / loc->t->row_size;
3286         guint32 col;
3287         
3288         col = mono_metadata_decode_row_col (loc->t, table_index, loc->col_idx);
3289
3290         if (loc->idx == col) {
3291                 loc->result = table_index;
3292                 return 0;
3293         }
3294         if (loc->idx < col)
3295                 return -1;
3296         else 
3297                 return 1;
3298 }
3299
3300 static int
3301 declsec_locator (const void *a, const void *b)
3302 {
3303         locator_t *loc = (locator_t *) a;
3304         const char *bb = (const char *) b;
3305         guint32 table_index = (bb - loc->t->base) / loc->t->row_size;
3306         guint32 col;
3307
3308         col = mono_metadata_decode_row_col (loc->t, table_index, loc->col_idx);
3309
3310         if (loc->idx == col) {
3311                 loc->result = table_index;
3312                 return 0;
3313         }
3314         if (loc->idx < col)
3315                 return -1;
3316         else
3317                 return 1;
3318 }
3319
3320 /**
3321  * search_ptr_table:
3322  *
3323  *  Return the 1-based row index in TABLE, which must be one of the *Ptr tables, 
3324  * which contains IDX.
3325  */
3326 static guint32
3327 search_ptr_table (MonoImage *image, int table, int idx)
3328 {
3329         MonoTableInfo *ptrdef = &image->tables [table];
3330         int i;
3331
3332         /* Use a linear search to find our index in the table */
3333         for (i = 0; i < ptrdef->rows; i ++)
3334                 /* All the Ptr tables have the same structure */
3335                 if (mono_metadata_decode_row_col (ptrdef, i, 0) == idx)
3336                         break;
3337
3338         if (i < ptrdef->rows)
3339                 return i + 1;
3340         else
3341                 return idx;
3342 }
3343
3344 /**
3345  * mono_metadata_typedef_from_field:
3346  * @meta: metadata context
3347  * @index: FieldDef token
3348  *
3349  * Returns: the 1-based index into the TypeDef table of the type that
3350  * declared the field described by @index, or 0 if not found.
3351  */
3352 guint32
3353 mono_metadata_typedef_from_field (MonoImage *meta, guint32 index)
3354 {
3355         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_TYPEDEF];
3356         locator_t loc;
3357
3358         if (!tdef->base)
3359                 return 0;
3360
3361         loc.idx = mono_metadata_token_index (index);
3362         loc.col_idx = MONO_TYPEDEF_FIELD_LIST;
3363         loc.t = tdef;
3364
3365         if (meta->uncompressed_metadata)
3366                 loc.idx = search_ptr_table (meta, MONO_TABLE_FIELD_POINTER, loc.idx);
3367
3368         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, typedef_locator))
3369                 g_assert_not_reached ();
3370
3371         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3372         return loc.result + 1;
3373 }
3374
3375 /*
3376  * mono_metadata_typedef_from_method:
3377  * @meta: metadata context
3378  * @index: MethodDef token
3379  *
3380  * Returns: the 1-based index into the TypeDef table of the type that
3381  * declared the method described by @index.  0 if not found.
3382  */
3383 guint32
3384 mono_metadata_typedef_from_method (MonoImage *meta, guint32 index)
3385 {
3386         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_TYPEDEF];
3387         locator_t loc;
3388         
3389         if (!tdef->base)
3390                 return 0;
3391
3392         loc.idx = mono_metadata_token_index (index);
3393         loc.col_idx = MONO_TYPEDEF_METHOD_LIST;
3394         loc.t = tdef;
3395
3396         if (meta->uncompressed_metadata)
3397                 loc.idx = search_ptr_table (meta, MONO_TABLE_METHOD_POINTER, loc.idx);
3398
3399         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, typedef_locator))
3400                 g_assert_not_reached ();
3401
3402         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3403         return loc.result + 1;
3404 }
3405
3406 /*
3407  * mono_metadata_interfaces_from_typedef_full:
3408  * @meta: metadata context
3409  * @index: typedef token
3410  * 
3411  * The array of interfaces that the @index typedef token implements is returned in
3412  * @interfaces. The number of elemnts in the array is returned in @count.
3413  *
3414  * LOCKING: Assumes the loader lock is held.
3415  *
3416  * Returns: TRUE on success, FALSE on failure.
3417  */
3418 gboolean
3419 mono_metadata_interfaces_from_typedef_full (MonoImage *meta, guint32 index, MonoClass ***interfaces, guint *count, MonoGenericContext *context)
3420 {
3421         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_INTERFACEIMPL];
3422         locator_t loc;
3423         guint32 start, pos;
3424         guint32 cols [MONO_INTERFACEIMPL_SIZE];
3425         MonoClass **result;
3426
3427         *interfaces = NULL;
3428         *count = 0;
3429
3430         if (!tdef->base)
3431                 return TRUE;
3432
3433         loc.idx = mono_metadata_token_index (index);
3434         loc.col_idx = MONO_INTERFACEIMPL_CLASS;
3435         loc.t = tdef;
3436
3437         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3438                 return TRUE;
3439
3440         start = loc.result;
3441         /*
3442          * We may end up in the middle of the rows... 
3443          */
3444         while (start > 0) {
3445                 if (loc.idx == mono_metadata_decode_row_col (tdef, start - 1, MONO_INTERFACEIMPL_CLASS))
3446                         start--;
3447                 else
3448                         break;
3449         }
3450         pos = start;
3451         while (pos < tdef->rows) {
3452                 mono_metadata_decode_row (tdef, pos, cols, MONO_INTERFACEIMPL_SIZE);
3453                 if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
3454                         break;
3455                 ++pos;
3456         }
3457
3458         result = mono_image_alloc0 (meta, sizeof (MonoClass*) * (pos - start));
3459
3460         pos = start;
3461         while (pos < tdef->rows) {
3462                 MonoClass *iface;
3463                 
3464                 mono_metadata_decode_row (tdef, pos, cols, MONO_INTERFACEIMPL_SIZE);
3465                 if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
3466                         break;
3467                 iface = mono_class_get_full (
3468                         meta, mono_metadata_token_from_dor (cols [MONO_INTERFACEIMPL_INTERFACE]), context);
3469                 if (iface == NULL)
3470                         return FALSE;
3471                 result [pos - start] = iface;
3472                 ++pos;
3473         }
3474         *count = pos - start;
3475         *interfaces = result;
3476         return TRUE;
3477 }
3478
3479 MonoClass**
3480 mono_metadata_interfaces_from_typedef (MonoImage *meta, guint32 index, guint *count)
3481 {
3482         MonoClass **interfaces;
3483         gboolean rv;
3484
3485         mono_loader_lock ();
3486         rv = mono_metadata_interfaces_from_typedef_full (meta, index, &interfaces, count, NULL);
3487         mono_loader_unlock ();
3488         if (rv)
3489                 return interfaces;
3490         else
3491                 return NULL;
3492 }
3493
3494 /*
3495  * mono_metadata_nested_in_typedef:
3496  * @meta: metadata context
3497  * @index: typedef token
3498  * 
3499  * Returns: the 1-based index into the TypeDef table of the type
3500  * where the type described by @index is nested.
3501  * Retruns 0 if @index describes a non-nested type.
3502  */
3503 guint32
3504 mono_metadata_nested_in_typedef (MonoImage *meta, guint32 index)
3505 {
3506         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_NESTEDCLASS];
3507         locator_t loc;
3508         
3509         if (!tdef->base)
3510                 return 0;
3511
3512         loc.idx = mono_metadata_token_index (index);
3513         loc.col_idx = MONO_NESTED_CLASS_NESTED;
3514         loc.t = tdef;
3515
3516         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3517                 return 0;
3518
3519         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3520         return mono_metadata_decode_row_col (tdef, loc.result, MONO_NESTED_CLASS_ENCLOSING) | MONO_TOKEN_TYPE_DEF;
3521 }
3522
3523 /*
3524  * mono_metadata_nesting_typedef:
3525  * @meta: metadata context
3526  * @index: typedef token
3527  * 
3528  * Returns: the 1-based index into the TypeDef table of the first type
3529  * that is nested inside the type described by @index. The search starts at
3530  * @start_index.  returns 0 if no such type is found.
3531  */
3532 guint32
3533 mono_metadata_nesting_typedef (MonoImage *meta, guint32 index, guint32 start_index)
3534 {
3535         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_NESTEDCLASS];
3536         guint32 start;
3537         guint32 class_index = mono_metadata_token_index (index);
3538         
3539         if (!tdef->base)
3540                 return 0;
3541
3542         start = start_index;
3543
3544         while (start <= tdef->rows) {
3545                 if (class_index == mono_metadata_decode_row_col (tdef, start - 1, MONO_NESTED_CLASS_ENCLOSING))
3546                         break;
3547                 else
3548                         start++;
3549         }
3550
3551         if (start > tdef->rows)
3552                 return 0;
3553         else
3554                 return start;
3555 }
3556
3557 /*
3558  * mono_metadata_packing_from_typedef:
3559  * @meta: metadata context
3560  * @index: token representing a type
3561  * 
3562  * Returns: the info stored in the ClassLAyout table for the given typedef token
3563  * into the @packing and @size pointers.
3564  * Returns 0 if the info is not found.
3565  */
3566 guint32
3567 mono_metadata_packing_from_typedef (MonoImage *meta, guint32 index, guint32 *packing, guint32 *size)
3568 {
3569         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_CLASSLAYOUT];
3570         locator_t loc;
3571         guint32 cols [MONO_CLASS_LAYOUT_SIZE];
3572         
3573         if (!tdef->base)
3574                 return 0;
3575
3576         loc.idx = mono_metadata_token_index (index);
3577         loc.col_idx = MONO_CLASS_LAYOUT_PARENT;
3578         loc.t = tdef;
3579
3580         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3581                 return 0;
3582
3583         mono_metadata_decode_row (tdef, loc.result, cols, MONO_CLASS_LAYOUT_SIZE);
3584         if (packing)
3585                 *packing = cols [MONO_CLASS_LAYOUT_PACKING_SIZE];
3586         if (size)
3587                 *size = cols [MONO_CLASS_LAYOUT_CLASS_SIZE];
3588
3589         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3590         return loc.result + 1;
3591 }
3592
3593 /*
3594  * mono_metadata_custom_attrs_from_index:
3595  * @meta: metadata context
3596  * @index: token representing the parent
3597  * 
3598  * Returns: the 1-based index into the CustomAttribute table of the first 
3599  * attribute which belongs to the metadata object described by @index.
3600  * Returns 0 if no such attribute is found.
3601  */
3602 guint32
3603 mono_metadata_custom_attrs_from_index (MonoImage *meta, guint32 index)
3604 {
3605         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_CUSTOMATTRIBUTE];
3606         locator_t loc;
3607         
3608         if (!tdef->base)
3609                 return 0;
3610
3611         loc.idx = index;
3612         loc.col_idx = MONO_CUSTOM_ATTR_PARENT;
3613         loc.t = tdef;
3614
3615         /* FIXME: Index translation */
3616
3617         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3618                 return 0;
3619
3620         /* Find the first entry by searching backwards */
3621         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_CUSTOM_ATTR_PARENT) == index))
3622                 loc.result --;
3623
3624         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3625         return loc.result + 1;
3626 }
3627
3628 /*
3629  * mono_metadata_declsec_from_index:
3630  * @meta: metadata context
3631  * @index: token representing the parent
3632  * 
3633  * Returns: the 0-based index into the DeclarativeSecurity table of the first 
3634  * attribute which belongs to the metadata object described by @index.
3635  * Returns -1 if no such attribute is found.
3636  */
3637 guint32
3638 mono_metadata_declsec_from_index (MonoImage *meta, guint32 index)
3639 {
3640         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_DECLSECURITY];
3641         locator_t loc;
3642
3643         if (!tdef->base)
3644                 return -1;
3645
3646         loc.idx = index;
3647         loc.col_idx = MONO_DECL_SECURITY_PARENT;
3648         loc.t = tdef;
3649
3650         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, declsec_locator))
3651                 return -1;
3652
3653         /* Find the first entry by searching backwards */
3654         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_DECL_SECURITY_PARENT) == index))
3655                 loc.result --;
3656
3657         return loc.result;
3658 }
3659
3660 #ifdef DEBUG
3661 static void
3662 mono_backtrace (int limit)
3663 {
3664         void *array[limit];
3665         char **names;
3666         int i;
3667         backtrace (array, limit);
3668         names = backtrace_symbols (array, limit);
3669         for (i =0; i < limit; ++i) {
3670                 g_print ("\t%s\n", names [i]);
3671         }
3672         g_free (names);
3673 }
3674 #endif
3675
3676 #ifndef __GNUC__
3677 /*#define __alignof__(a) sizeof(a)*/
3678 #define __alignof__(type) G_STRUCT_OFFSET(struct { char c; type x; }, x)
3679 #endif
3680
3681 /*
3682  * mono_type_size:
3683  * @t: the type to return the size of
3684  *
3685  * Returns: the number of bytes required to hold an instance of this
3686  * type in memory
3687  */
3688 int
3689 mono_type_size (MonoType *t, int *align)
3690 {
3691         if (!t) {
3692                 *align = 1;
3693                 return 0;
3694         }
3695         if (t->byref) {
3696                 *align = __alignof__(gpointer);
3697                 return sizeof (gpointer);
3698         }
3699
3700         switch (t->type){
3701         case MONO_TYPE_VOID:
3702                 *align = 1;
3703                 return 0;
3704         case MONO_TYPE_BOOLEAN:
3705                 *align = __alignof__(gint8);
3706                 return 1;
3707         case MONO_TYPE_I1:
3708         case MONO_TYPE_U1:
3709                 *align = __alignof__(gint8);
3710                 return 1;
3711         case MONO_TYPE_CHAR:
3712         case MONO_TYPE_I2:
3713         case MONO_TYPE_U2:
3714                 *align = __alignof__(gint16);
3715                 return 2;               
3716         case MONO_TYPE_I4:
3717         case MONO_TYPE_U4:
3718                 *align = __alignof__(gint32);
3719                 return 4;
3720         case MONO_TYPE_R4:
3721                 *align = __alignof__(float);
3722                 return 4;
3723         case MONO_TYPE_I8:
3724         case MONO_TYPE_U8:
3725                 *align = __alignof__(gint64);
3726                 return 8;               
3727         case MONO_TYPE_R8:
3728                 *align = __alignof__(double);
3729                 return 8;               
3730         case MONO_TYPE_I:
3731         case MONO_TYPE_U:
3732                 *align = __alignof__(gpointer);
3733                 return sizeof (gpointer);
3734         case MONO_TYPE_STRING:
3735                 *align = __alignof__(gpointer);
3736                 return sizeof (gpointer);
3737         case MONO_TYPE_OBJECT:
3738                 *align = __alignof__(gpointer);
3739                 return sizeof (gpointer);
3740         case MONO_TYPE_VALUETYPE: {
3741                 if (t->data.klass->enumtype)
3742                         return mono_type_size (mono_class_enum_basetype (t->data.klass), align);
3743                 else
3744                         return mono_class_value_size (t->data.klass, (guint32*)align);
3745         }
3746         case MONO_TYPE_CLASS:
3747         case MONO_TYPE_SZARRAY:
3748         case MONO_TYPE_PTR:
3749         case MONO_TYPE_FNPTR:
3750         case MONO_TYPE_ARRAY:
3751                 *align = __alignof__(gpointer);
3752                 return sizeof (gpointer);
3753         case MONO_TYPE_TYPEDBYREF:
3754                 return mono_class_value_size (mono_defaults.typed_reference_class, (guint32*)align);
3755         case MONO_TYPE_GENERICINST: {
3756                 MonoGenericClass *gclass = t->data.generic_class;
3757                 MonoClass *container_class = gclass->container_class;
3758
3759                 // g_assert (!gclass->inst->is_open);
3760
3761                 if (container_class->valuetype) {
3762                         if (container_class->enumtype)
3763                                 return mono_type_size (mono_class_enum_basetype (container_class), align);
3764                         else
3765                                 return mono_class_value_size (mono_class_from_mono_type (t), (guint32*)align);
3766                 } else {
3767                         *align = __alignof__(gpointer);
3768                         return sizeof (gpointer);
3769                 }
3770         }
3771         case MONO_TYPE_VAR:
3772         case MONO_TYPE_MVAR:
3773                 /* FIXME: Martin, this is wrong. */
3774                 *align = __alignof__(gpointer);
3775                 return sizeof (gpointer);
3776         default:
3777                 g_error ("mono_type_size: type 0x%02x unknown", t->type);
3778         }
3779         return 0;
3780 }
3781
3782 /*
3783  * mono_type_stack_size:
3784  * @t: the type to return the size it uses on the stack
3785  *
3786  * Returns: the number of bytes required to hold an instance of this
3787  * type on the runtime stack
3788  */
3789 int
3790 mono_type_stack_size (MonoType *t, int *align)
3791 {
3792         return mono_type_stack_size_internal (t, align, FALSE);
3793 }
3794
3795 int
3796 mono_type_stack_size_internal (MonoType *t, int *align, gboolean allow_open)
3797 {
3798         int tmp;
3799 #if SIZEOF_VOID_P == SIZEOF_REGISTER
3800         int stack_slot_size = sizeof (gpointer);
3801         int stack_slot_align = __alignof__ (gpointer);
3802 #elif SIZEOF_VOID_P < SIZEOF_REGISTER
3803         int stack_slot_size = SIZEOF_REGISTER;
3804         int stack_slot_align = SIZEOF_REGISTER;
3805 #endif
3806
3807         g_assert (t != NULL);
3808
3809         if (!align)
3810                 align = &tmp;
3811
3812         if (t->byref) {
3813                 *align = stack_slot_align;
3814                 return stack_slot_size;
3815         }
3816
3817         switch (t->type){
3818         case MONO_TYPE_BOOLEAN:
3819         case MONO_TYPE_CHAR:
3820         case MONO_TYPE_I1:
3821         case MONO_TYPE_U1:
3822         case MONO_TYPE_I2:
3823         case MONO_TYPE_U2:
3824         case MONO_TYPE_I4:
3825         case MONO_TYPE_U4:
3826         case MONO_TYPE_I:
3827         case MONO_TYPE_U:
3828         case MONO_TYPE_STRING:
3829         case MONO_TYPE_OBJECT:
3830         case MONO_TYPE_CLASS:
3831         case MONO_TYPE_SZARRAY:
3832         case MONO_TYPE_PTR:
3833         case MONO_TYPE_FNPTR:
3834         case MONO_TYPE_ARRAY:
3835                 *align = stack_slot_align;
3836                 return stack_slot_size;
3837         case MONO_TYPE_VAR:
3838         case MONO_TYPE_MVAR:
3839                 g_assert (allow_open);
3840                 *align = stack_slot_align;
3841                 return stack_slot_size;
3842         case MONO_TYPE_TYPEDBYREF:
3843                 *align = stack_slot_align;
3844                 return stack_slot_size * 3;
3845         case MONO_TYPE_R4:
3846                 *align = __alignof__(float);
3847                 return sizeof (float);          
3848         case MONO_TYPE_I8:
3849         case MONO_TYPE_U8:
3850                 *align = __alignof__(gint64);
3851                 return sizeof (gint64);         
3852         case MONO_TYPE_R8:
3853                 *align = __alignof__(double);
3854                 return sizeof (double);
3855         case MONO_TYPE_VALUETYPE: {
3856                 guint32 size;
3857
3858                 if (t->data.klass->enumtype)
3859                         return mono_type_stack_size_internal (mono_class_enum_basetype (t->data.klass), align, allow_open);
3860                 else {
3861                         size = mono_class_value_size (t->data.klass, (guint32*)align);
3862
3863                         *align = *align + stack_slot_align - 1;
3864                         *align &= ~(stack_slot_align - 1);
3865
3866                         size += stack_slot_size - 1;
3867                         size &= ~(stack_slot_size - 1);
3868
3869                         return size;
3870                 }
3871         }
3872         case MONO_TYPE_GENERICINST: {
3873                 MonoGenericClass *gclass = t->data.generic_class;
3874                 MonoClass *container_class = gclass->container_class;
3875
3876                 if (!allow_open)
3877                         g_assert (!gclass->context.class_inst->is_open);
3878
3879                 if (container_class->valuetype) {
3880                         if (container_class->enumtype)
3881                                 return mono_type_stack_size_internal (mono_class_enum_basetype (container_class), align, allow_open);
3882                         else {
3883                                 guint32 size = mono_class_value_size (mono_class_from_mono_type (t), (guint32*)align);
3884
3885                                 *align = *align + stack_slot_align - 1;
3886                                 *align &= ~(stack_slot_align - 1);
3887
3888                                 size += stack_slot_size - 1;
3889                                 size &= ~(stack_slot_size - 1);
3890
3891                                 return size;
3892                         }
3893                 } else {
3894                         *align = stack_slot_align;
3895                         return stack_slot_size;
3896                 }
3897         }
3898         default:
3899                 g_error ("type 0x%02x unknown", t->type);
3900         }
3901         return 0;
3902 }
3903
3904 gboolean
3905 mono_type_generic_inst_is_valuetype (MonoType *type)
3906 {
3907         g_assert (type->type == MONO_TYPE_GENERICINST);
3908         return type->data.generic_class->container_class->valuetype;
3909 }
3910
3911 gboolean
3912 mono_metadata_generic_class_is_valuetype (MonoGenericClass *gclass)
3913 {
3914         return gclass->container_class->valuetype;
3915 }
3916
3917 static gboolean
3918 _mono_metadata_generic_class_equal (const MonoGenericClass *g1, const MonoGenericClass *g2, gboolean signature_only)
3919 {
3920         MonoGenericInst *i1 = g1->context.class_inst;
3921         MonoGenericInst *i2 = g2->context.class_inst;
3922
3923         if (g1->is_dynamic != g2->is_dynamic)
3924                 return FALSE;
3925         if (!mono_metadata_class_equal (g1->container_class, g2->container_class, signature_only))
3926                 return FALSE;
3927         if (!mono_generic_inst_equal_full (i1, i2, signature_only))
3928                 return FALSE;
3929         return g1->is_tb_open == g2->is_tb_open;
3930 }
3931
3932 static gboolean
3933 _mono_metadata_generic_class_container_equal (const MonoGenericClass *g1, MonoClass *c2, gboolean signature_only)
3934 {
3935         MonoGenericInst *i1 = g1->context.class_inst;
3936         MonoGenericInst *i2 = c2->generic_container->context.class_inst;
3937
3938         if (!mono_metadata_class_equal (g1->container_class, c2, signature_only))
3939                 return FALSE;
3940         if (!mono_generic_inst_equal_full (i1, i2, signature_only))
3941                 return FALSE;
3942         return !g1->is_tb_open;
3943 }
3944
3945 guint
3946 mono_metadata_generic_context_hash (const MonoGenericContext *context)
3947 {
3948         /* FIXME: check if this seed is good enough */
3949         guint hash = 0xc01dfee7;
3950         if (context->class_inst)
3951                 hash = ((hash << 5) - hash) ^ mono_metadata_generic_inst_hash (context->class_inst);
3952         if (context->method_inst)
3953                 hash = ((hash << 5) - hash) ^ mono_metadata_generic_inst_hash (context->method_inst);
3954         return hash;
3955 }
3956
3957 gboolean
3958 mono_metadata_generic_context_equal (const MonoGenericContext *g1, const MonoGenericContext *g2)
3959 {
3960         return g1->class_inst == g2->class_inst && g1->method_inst == g2->method_inst;
3961 }
3962
3963 /*
3964  * mono_metadata_type_hash:
3965  * @t1: a type
3966  *
3967  * Computes an hash value for @t1 to be used in GHashTable.
3968  */
3969 guint
3970 mono_metadata_type_hash (MonoType *t1)
3971 {
3972         guint hash = t1->type;
3973
3974         hash |= t1->byref << 6; /* do not collide with t1->type values */
3975         switch (t1->type) {
3976         case MONO_TYPE_VALUETYPE:
3977         case MONO_TYPE_CLASS:
3978         case MONO_TYPE_SZARRAY:
3979                 /* check if the distribution is good enough */
3980                 return ((hash << 5) - hash) ^ g_str_hash (t1->data.klass->name);
3981         case MONO_TYPE_PTR:
3982                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (t1->data.type);
3983         case MONO_TYPE_ARRAY:
3984                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (&t1->data.array->eklass->byval_arg);
3985         case MONO_TYPE_GENERICINST:
3986                 return ((hash << 5) - hash) ^ mono_generic_class_hash (t1->data.generic_class);
3987         }
3988         return hash;
3989 }
3990
3991 static gboolean
3992 mono_metadata_generic_param_equal (MonoGenericParam *p1, MonoGenericParam *p2, gboolean signature_only)
3993 {
3994         if (p1 == p2)
3995                 return TRUE;
3996         if (mono_generic_param_num (p1) != mono_generic_param_num (p2))
3997                 return FALSE;
3998
3999         /*
4000          * We have to compare the image as well because if we didn't,
4001          * the generic_inst_cache lookup wouldn't care about the image
4002          * of generic params, so what could happen is that a generic
4003          * inst with params from image A is put into the cache, then
4004          * image B gets that generic inst from the cache, image A is
4005          * unloaded, so the inst is deleted, but image B still retains
4006          * a pointer to it.
4007          *
4008          * The AOT runtime doesn't set the image when it's decoding
4009          * types, so we only compare it when the owner is NULL.
4010          */
4011         if (mono_generic_param_owner (p1) == mono_generic_param_owner (p2) &&
4012             (mono_generic_param_owner (p1) || p1->image == p2->image))
4013                 return TRUE;
4014
4015         /*
4016          * If `signature_only' is true, we're comparing two (method) signatures.
4017          * In this case, the owner of two type parameters doesn't need to match.
4018          */
4019
4020         return signature_only;
4021 }
4022
4023 static gboolean
4024 mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only)
4025 {
4026         if (c1 == c2)
4027                 return TRUE;
4028         if (c1->generic_class && c2->generic_class)
4029                 return _mono_metadata_generic_class_equal (c1->generic_class, c2->generic_class, signature_only);
4030         if (c1->generic_class && c2->generic_container)
4031                 return _mono_metadata_generic_class_container_equal (c1->generic_class, c2, signature_only);
4032         if (c1->generic_container && c2->generic_class)
4033                 return _mono_metadata_generic_class_container_equal (c2->generic_class, c1, signature_only);
4034         if ((c1->byval_arg.type == MONO_TYPE_VAR) && (c2->byval_arg.type == MONO_TYPE_VAR))
4035                 return mono_metadata_generic_param_equal (
4036                         c1->byval_arg.data.generic_param, c2->byval_arg.data.generic_param, signature_only);
4037         if ((c1->byval_arg.type == MONO_TYPE_MVAR) && (c2->byval_arg.type == MONO_TYPE_MVAR))
4038                 return mono_metadata_generic_param_equal (
4039                         c1->byval_arg.data.generic_param, c2->byval_arg.data.generic_param, signature_only);
4040         if (signature_only &&
4041             (c1->byval_arg.type == MONO_TYPE_SZARRAY) && (c2->byval_arg.type == MONO_TYPE_SZARRAY))
4042                 return mono_metadata_class_equal (c1->byval_arg.data.klass, c2->byval_arg.data.klass, signature_only);
4043         return FALSE;
4044 }
4045
4046 static gboolean
4047 mono_metadata_fnptr_equal (MonoMethodSignature *s1, MonoMethodSignature *s2, gboolean signature_only)
4048 {
4049         gpointer iter1 = 0, iter2 = 0;
4050
4051         if (s1 == s2)
4052                 return TRUE;
4053         if (s1->call_convention != s2->call_convention)
4054                 return FALSE;
4055         if (s1->sentinelpos != s2->sentinelpos)
4056                 return FALSE;
4057         if (s1->hasthis != s2->hasthis)
4058                 return FALSE;
4059         if (s1->explicit_this != s2->explicit_this)
4060                 return FALSE;
4061         if (! do_mono_metadata_type_equal (s1->ret, s2->ret, signature_only))
4062                 return FALSE;
4063         if (s1->param_count != s2->param_count)
4064                 return FALSE;
4065
4066         while (TRUE) {
4067                 MonoType *t1 = mono_signature_get_params (s1, &iter1);
4068                 MonoType *t2 = mono_signature_get_params (s2, &iter2);
4069
4070                 if (t1 == NULL || t2 == NULL)
4071                         return (t1 == t2);
4072                 if (! do_mono_metadata_type_equal (t1, t2, signature_only))
4073                         return FALSE;
4074         }
4075 }
4076
4077 /*
4078  * mono_metadata_type_equal:
4079  * @t1: a type
4080  * @t2: another type
4081  *
4082  * Determine if @t1 and @t2 represent the same type.
4083  * Returns: #TRUE if @t1 and @t2 are equal.
4084  */
4085 static gboolean
4086 do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only)
4087 {
4088         if (t1->type != t2->type || t1->byref != t2->byref)
4089                 return FALSE;
4090
4091         switch (t1->type) {
4092         case MONO_TYPE_VOID:
4093         case MONO_TYPE_BOOLEAN:
4094         case MONO_TYPE_CHAR:
4095         case MONO_TYPE_I1:
4096         case MONO_TYPE_U1:
4097         case MONO_TYPE_I2:
4098         case MONO_TYPE_U2:
4099         case MONO_TYPE_I4:
4100         case MONO_TYPE_U4:
4101         case MONO_TYPE_I8:
4102         case MONO_TYPE_U8:
4103         case MONO_TYPE_R4:
4104         case MONO_TYPE_R8:
4105         case MONO_TYPE_STRING:
4106         case MONO_TYPE_I:
4107         case MONO_TYPE_U:
4108         case MONO_TYPE_OBJECT:
4109         case MONO_TYPE_TYPEDBYREF:
4110                 return TRUE;
4111         case MONO_TYPE_VALUETYPE:
4112         case MONO_TYPE_CLASS:
4113         case MONO_TYPE_SZARRAY:
4114                 return mono_metadata_class_equal (t1->data.klass, t2->data.klass, signature_only);
4115         case MONO_TYPE_PTR:
4116                 return do_mono_metadata_type_equal (t1->data.type, t2->data.type, signature_only);
4117         case MONO_TYPE_ARRAY:
4118                 if (t1->data.array->rank != t2->data.array->rank)
4119                         return FALSE;
4120                 return mono_metadata_class_equal (t1->data.array->eklass, t2->data.array->eklass, signature_only);
4121         case MONO_TYPE_GENERICINST:
4122                 return _mono_metadata_generic_class_equal (
4123                         t1->data.generic_class, t2->data.generic_class, signature_only);
4124         case MONO_TYPE_VAR:
4125                 return mono_metadata_generic_param_equal (
4126                         t1->data.generic_param, t2->data.generic_param, signature_only);
4127         case MONO_TYPE_MVAR:
4128                 return mono_metadata_generic_param_equal (
4129                         t1->data.generic_param, t2->data.generic_param, signature_only);
4130         case MONO_TYPE_FNPTR:
4131                 return mono_metadata_fnptr_equal (t1->data.method, t2->data.method, signature_only);
4132         default:
4133                 g_error ("implement type compare for %0x!", t1->type);
4134                 return FALSE;
4135         }
4136
4137         return FALSE;
4138 }
4139
4140 gboolean
4141 mono_metadata_type_equal (MonoType *t1, MonoType *t2)
4142 {
4143         return do_mono_metadata_type_equal (t1, t2, FALSE);
4144 }
4145
4146 /**
4147  * mono_metadata_type_equal_full:
4148  * @t1: a type
4149  * @t2: another type
4150  * @signature_only: if signature only comparison should be made
4151  *
4152  * Determine if @t1 and @t2 are signature compatible if @signature_only is #TRUE, otherwise
4153  * behaves the same way as mono_metadata_type_equal.
4154  * The function mono_metadata_type_equal(a, b) is just a shortcut for mono_metadata_type_equal_full(a, b, FALSE).
4155  * Returns: #TRUE if @t1 and @t2 are equal taking @signature_only into account.
4156  */
4157 gboolean
4158 mono_metadata_type_equal_full (MonoType *t1, MonoType *t2, gboolean signature_only)
4159 {
4160         return do_mono_metadata_type_equal (t1, t2, signature_only);
4161 }
4162
4163 /**
4164  * mono_metadata_signature_equal:
4165  * @sig1: a signature
4166  * @sig2: another signature
4167  *
4168  * Determine if @sig1 and @sig2 represent the same signature, with the
4169  * same number of arguments and the same types.
4170  * Returns: #TRUE if @sig1 and @sig2 are equal.
4171  */
4172 gboolean
4173 mono_metadata_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
4174 {
4175         int i;
4176
4177         if (sig1->hasthis != sig2->hasthis || sig1->param_count != sig2->param_count)
4178                 return FALSE;
4179
4180         if (sig1->generic_param_count != sig2->generic_param_count)
4181                 return FALSE;
4182
4183         /*
4184          * We're just comparing the signatures of two methods here:
4185          *
4186          * If we have two generic methods `void Foo<U> (U u)' and `void Bar<V> (V v)',
4187          * U and V are equal here.
4188          *
4189          * That's what the `signature_only' argument of do_mono_metadata_type_equal() is for.
4190          */
4191
4192         for (i = 0; i < sig1->param_count; i++) { 
4193                 MonoType *p1 = sig1->params[i];
4194                 MonoType *p2 = sig2->params[i];
4195                 
4196                 /* if (p1->attrs != p2->attrs)
4197                         return FALSE;
4198                 */
4199                 if (!do_mono_metadata_type_equal (p1, p2, TRUE))
4200                         return FALSE;
4201         }
4202
4203         if (!do_mono_metadata_type_equal (sig1->ret, sig2->ret, TRUE))
4204                 return FALSE;
4205         return TRUE;
4206 }
4207
4208 /**
4209  * mono_metadata_type_dup:
4210  * @image: image to alloc memory from
4211  * @original: type to duplicate
4212  *
4213  * Returns: copy of type allocated from the image's mempool (or from the heap, if @image is null).
4214  */
4215 MonoType *
4216 mono_metadata_type_dup (MonoImage *image, const MonoType *o)
4217 {
4218         MonoType *r = NULL;
4219         int sizeof_o = sizeof (MonoType);
4220         if (o->num_mods)
4221                 sizeof_o += (o->num_mods - MONO_ZERO_LEN_ARRAY) * sizeof (MonoCustomMod);
4222
4223         r = image ? mono_image_alloc0 (image, sizeof_o) : g_malloc (sizeof_o);
4224
4225         memcpy (r, o, sizeof_o);
4226
4227         if (o->type == MONO_TYPE_PTR) {
4228                 r->data.type = mono_metadata_type_dup (image, o->data.type);
4229         } else if (o->type == MONO_TYPE_ARRAY) {
4230                 r->data.array = mono_dup_array_type (image, o->data.array);
4231         } else if (o->type == MONO_TYPE_FNPTR) {
4232                 /*FIXME the dup'ed signature is leaked mono_metadata_free_type*/
4233                 r->data.method = mono_metadata_signature_deep_dup (image, o->data.method);
4234         }
4235         return r;
4236 }
4237
4238 guint
4239 mono_signature_hash (MonoMethodSignature *sig)
4240 {
4241         guint i, res = sig->ret->type;
4242
4243         for (i = 0; i < sig->param_count; i++)
4244                 res = (res << 5) - res + mono_type_hash (sig->params[i]);
4245
4246         return res;
4247 }
4248
4249 /*
4250  * mono_metadata_encode_value:
4251  * @value: value to encode
4252  * @buf: buffer where to write the compressed representation
4253  * @endbuf: pointer updated to point at the end of the encoded output
4254  *
4255  * Encodes the value @value in the compressed representation used
4256  * in metadata and stores the result in @buf. @buf needs to be big
4257  * enough to hold the data (4 bytes).
4258  */
4259 void
4260 mono_metadata_encode_value (guint32 value, char *buf, char **endbuf)
4261 {
4262         char *p = buf;
4263         
4264         if (value < 0x80)
4265                 *p++ = value;
4266         else if (value < 0x4000) {
4267                 p [0] = 0x80 | (value >> 8);
4268                 p [1] = value & 0xff;
4269                 p += 2;
4270         } else {
4271                 p [0] = (value >> 24) | 0xc0;
4272                 p [1] = (value >> 16) & 0xff;
4273                 p [2] = (value >> 8) & 0xff;
4274                 p [3] = value & 0xff;
4275                 p += 4;
4276         }
4277         if (endbuf)
4278                 *endbuf = p;
4279 }
4280
4281 /*
4282  * mono_metadata_field_info:
4283  * @meta: the Image the field is defined in
4284  * @index: the index in the field table representing the field
4285  * @offset: a pointer to an integer where to store the offset that 
4286  * may have been specified for the field in a FieldLayout table
4287  * @rva: a pointer to the RVA of the field data in the image that
4288  * may have been defined in a FieldRVA table
4289  * @marshal_spec: a pointer to the marshal spec that may have been 
4290  * defined for the field in a FieldMarshal table.
4291  *
4292  * Gather info for field @index that may have been defined in the FieldLayout, 
4293  * FieldRVA and FieldMarshal tables.
4294  * Either of offset, rva and marshal_spec can be NULL if you're not interested 
4295  * in the data.
4296  */
4297 void
4298 mono_metadata_field_info (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
4299                           MonoMarshalSpec **marshal_spec)
4300 {
4301         mono_metadata_field_info_full (meta, index, offset, rva, marshal_spec, FALSE);
4302 }
4303
4304 void
4305 mono_metadata_field_info_with_mempool (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
4306                           MonoMarshalSpec **marshal_spec)
4307 {
4308         mono_metadata_field_info_full (meta, index, offset, rva, marshal_spec, TRUE);
4309 }
4310
4311 static void
4312 mono_metadata_field_info_full (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
4313                                        MonoMarshalSpec **marshal_spec, gboolean alloc_from_image)
4314 {
4315         MonoTableInfo *tdef;
4316         locator_t loc;
4317
4318         loc.idx = index + 1;
4319         if (meta->uncompressed_metadata)
4320                 loc.idx = search_ptr_table (meta, MONO_TABLE_FIELD_POINTER, loc.idx);
4321
4322         if (offset) {
4323                 tdef = &meta->tables [MONO_TABLE_FIELDLAYOUT];
4324
4325                 loc.col_idx = MONO_FIELD_LAYOUT_FIELD;
4326                 loc.t = tdef;
4327
4328                 if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
4329                         *offset = mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_LAYOUT_OFFSET);
4330                 } else {
4331                         *offset = (guint32)-1;
4332                 }
4333         }
4334         if (rva) {
4335                 tdef = &meta->tables [MONO_TABLE_FIELDRVA];
4336
4337                 loc.col_idx = MONO_FIELD_RVA_FIELD;
4338                 loc.t = tdef;
4339                 
4340                 if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
4341                         /*
4342                          * LAMESPEC: There is no signature, no nothing, just the raw data.
4343                          */
4344                         *rva = mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_RVA_RVA);
4345                 } else {
4346                         *rva = 0;
4347                 }
4348         }
4349         if (marshal_spec) {
4350                 const char *p;
4351                 
4352                 if ((p = mono_metadata_get_marshal_info (meta, index, TRUE))) {
4353                         *marshal_spec = mono_metadata_parse_marshal_spec_full (alloc_from_image ? meta : NULL, p);
4354                 }
4355         }
4356
4357 }
4358
4359 /*
4360  * mono_metadata_get_constant_index:
4361  * @meta: the Image the field is defined in
4362  * @index: the token that may have a row defined in the constants table
4363  * @hint: possible position for the row
4364  *
4365  * @token must be a FieldDef, ParamDef or PropertyDef token.
4366  *
4367  * Returns: the index into the Constants table or 0 if not found.
4368  */
4369 guint32
4370 mono_metadata_get_constant_index (MonoImage *meta, guint32 token, guint32 hint)
4371 {
4372         MonoTableInfo *tdef;
4373         locator_t loc;
4374         guint32 index = mono_metadata_token_index (token);
4375
4376         tdef = &meta->tables [MONO_TABLE_CONSTANT];
4377         index <<= MONO_HASCONSTANT_BITS;
4378         switch (mono_metadata_token_table (token)) {
4379         case MONO_TABLE_FIELD:
4380                 index |= MONO_HASCONSTANT_FIEDDEF;
4381                 break;
4382         case MONO_TABLE_PARAM:
4383                 index |= MONO_HASCONSTANT_PARAM;
4384                 break;
4385         case MONO_TABLE_PROPERTY:
4386                 index |= MONO_HASCONSTANT_PROPERTY;
4387                 break;
4388         default:
4389                 g_warning ("Not a valid token for the constant table: 0x%08x", token);
4390                 return 0;
4391         }
4392         loc.idx = index;
4393         loc.col_idx = MONO_CONSTANT_PARENT;
4394         loc.t = tdef;
4395
4396         /* FIXME: Index translation */
4397
4398         if ((hint > 0) && (hint < tdef->rows) && (mono_metadata_decode_row_col (tdef, hint - 1, MONO_CONSTANT_PARENT) == index))
4399                 return hint;
4400
4401         if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
4402                 return loc.result + 1;
4403         }
4404         return 0;
4405 }
4406
4407 /*
4408  * mono_metadata_events_from_typedef:
4409  * @meta: metadata context
4410  * @index: 0-based index (in the TypeDef table) describing a type
4411  *
4412  * Returns: the 0-based index in the Event table for the events in the
4413  * type. The last event that belongs to the type (plus 1) is stored
4414  * in the @end_idx pointer.
4415  */
4416 guint32
4417 mono_metadata_events_from_typedef (MonoImage *meta, guint32 index, guint *end_idx)
4418 {
4419         locator_t loc;
4420         guint32 start, end;
4421         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_EVENTMAP];
4422
4423         *end_idx = 0;
4424         
4425         if (!tdef->base)
4426                 return 0;
4427
4428         loc.t = tdef;
4429         loc.col_idx = MONO_EVENT_MAP_PARENT;
4430         loc.idx = index + 1;
4431
4432         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4433                 return 0;
4434         
4435         start = mono_metadata_decode_row_col (tdef, loc.result, MONO_EVENT_MAP_EVENTLIST);
4436         if (loc.result + 1 < tdef->rows) {
4437                 end = mono_metadata_decode_row_col (tdef, loc.result + 1, MONO_EVENT_MAP_EVENTLIST) - 1;
4438         } else {
4439                 end = meta->tables [MONO_TABLE_EVENT].rows;
4440         }
4441
4442         *end_idx = end;
4443         return start - 1;
4444 }
4445
4446 /*
4447  * mono_metadata_methods_from_event:
4448  * @meta: metadata context
4449  * @index: 0-based index (in the Event table) describing a event
4450  *
4451  * Returns: the 0-based index in the MethodDef table for the methods in the
4452  * event. The last method that belongs to the event (plus 1) is stored
4453  * in the @end_idx pointer.
4454  */
4455 guint32
4456 mono_metadata_methods_from_event   (MonoImage *meta, guint32 index, guint *end_idx)
4457 {
4458         locator_t loc;
4459         guint start, end;
4460         guint32 cols [MONO_METHOD_SEMA_SIZE];
4461         MonoTableInfo *msemt = &meta->tables [MONO_TABLE_METHODSEMANTICS];
4462
4463         *end_idx = 0;
4464         if (!msemt->base)
4465                 return 0;
4466
4467         if (meta->uncompressed_metadata)
4468             index = search_ptr_table (meta, MONO_TABLE_EVENT_POINTER, index + 1) - 1;
4469
4470         loc.t = msemt;
4471         loc.col_idx = MONO_METHOD_SEMA_ASSOCIATION;
4472         loc.idx = ((index + 1) << MONO_HAS_SEMANTICS_BITS) | MONO_HAS_SEMANTICS_EVENT; /* Method association coded index */
4473
4474         if (!bsearch (&loc, msemt->base, msemt->rows, msemt->row_size, table_locator))
4475                 return 0;
4476
4477         start = loc.result;
4478         /*
4479          * We may end up in the middle of the rows... 
4480          */
4481         while (start > 0) {
4482                 if (loc.idx == mono_metadata_decode_row_col (msemt, start - 1, MONO_METHOD_SEMA_ASSOCIATION))
4483                         start--;
4484                 else
4485                         break;
4486         }
4487         end = start + 1;
4488         while (end < msemt->rows) {
4489                 mono_metadata_decode_row (msemt, end, cols, MONO_METHOD_SEMA_SIZE);
4490                 if (cols [MONO_METHOD_SEMA_ASSOCIATION] != loc.idx)
4491                         break;
4492                 ++end;
4493         }
4494         *end_idx = end;
4495         return start;
4496 }
4497
4498 /*
4499  * mono_metadata_properties_from_typedef:
4500  * @meta: metadata context
4501  * @index: 0-based index (in the TypeDef table) describing a type
4502  *
4503  * Returns: the 0-based index in the Property table for the properties in the
4504  * type. The last property that belongs to the type (plus 1) is stored
4505  * in the @end_idx pointer.
4506  */
4507 guint32
4508 mono_metadata_properties_from_typedef (MonoImage *meta, guint32 index, guint *end_idx)
4509 {
4510         locator_t loc;
4511         guint32 start, end;
4512         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_PROPERTYMAP];
4513
4514         *end_idx = 0;
4515         
4516         if (!tdef->base)
4517                 return 0;
4518
4519         loc.t = tdef;
4520         loc.col_idx = MONO_PROPERTY_MAP_PARENT;
4521         loc.idx = index + 1;
4522
4523         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4524                 return 0;
4525         
4526         start = mono_metadata_decode_row_col (tdef, loc.result, MONO_PROPERTY_MAP_PROPERTY_LIST);
4527         if (loc.result + 1 < tdef->rows) {
4528                 end = mono_metadata_decode_row_col (tdef, loc.result + 1, MONO_PROPERTY_MAP_PROPERTY_LIST) - 1;
4529         } else {
4530                 end = meta->tables [MONO_TABLE_PROPERTY].rows;
4531         }
4532
4533         *end_idx = end;
4534         return start - 1;
4535 }
4536
4537 /*
4538  * mono_metadata_methods_from_property:
4539  * @meta: metadata context
4540  * @index: 0-based index (in the PropertyDef table) describing a property
4541  *
4542  * Returns: the 0-based index in the MethodDef table for the methods in the
4543  * property. The last method that belongs to the property (plus 1) is stored
4544  * in the @end_idx pointer.
4545  */
4546 guint32
4547 mono_metadata_methods_from_property   (MonoImage *meta, guint32 index, guint *end_idx)
4548 {
4549         locator_t loc;
4550         guint start, end;
4551         guint32 cols [MONO_METHOD_SEMA_SIZE];
4552         MonoTableInfo *msemt = &meta->tables [MONO_TABLE_METHODSEMANTICS];
4553
4554         *end_idx = 0;
4555         if (!msemt->base)
4556                 return 0;
4557
4558         if (meta->uncompressed_metadata)
4559             index = search_ptr_table (meta, MONO_TABLE_PROPERTY_POINTER, index + 1) - 1;
4560
4561         loc.t = msemt;
4562         loc.col_idx = MONO_METHOD_SEMA_ASSOCIATION;
4563         loc.idx = ((index + 1) << MONO_HAS_SEMANTICS_BITS) | MONO_HAS_SEMANTICS_PROPERTY; /* Method association coded index */
4564
4565         if (!bsearch (&loc, msemt->base, msemt->rows, msemt->row_size, table_locator))
4566                 return 0;
4567
4568         start = loc.result;
4569         /*
4570          * We may end up in the middle of the rows... 
4571          */
4572         while (start > 0) {
4573                 if (loc.idx == mono_metadata_decode_row_col (msemt, start - 1, MONO_METHOD_SEMA_ASSOCIATION))
4574                         start--;
4575                 else
4576                         break;
4577         }
4578         end = start + 1;
4579         while (end < msemt->rows) {
4580                 mono_metadata_decode_row (msemt, end, cols, MONO_METHOD_SEMA_SIZE);
4581                 if (cols [MONO_METHOD_SEMA_ASSOCIATION] != loc.idx)
4582                         break;
4583                 ++end;
4584         }
4585         *end_idx = end;
4586         return start;
4587 }
4588
4589 guint32
4590 mono_metadata_implmap_from_method (MonoImage *meta, guint32 method_idx)
4591 {
4592         locator_t loc;
4593         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_IMPLMAP];
4594
4595         if (!tdef->base)
4596                 return 0;
4597
4598         /* No index translation seems to be needed */
4599
4600         loc.t = tdef;
4601         loc.col_idx = MONO_IMPLMAP_MEMBER;
4602         loc.idx = ((method_idx + 1) << MONO_MEMBERFORWD_BITS) | MONO_MEMBERFORWD_METHODDEF;
4603
4604         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4605                 return 0;
4606
4607         return loc.result + 1;
4608 }
4609
4610 /**
4611  * @image: context where the image is created
4612  * @type_spec:  typespec token
4613  *
4614  * Creates a MonoType representing the TypeSpec indexed by the @type_spec
4615  * token.
4616  */
4617 MonoType *
4618 mono_type_create_from_typespec (MonoImage *image, guint32 type_spec)
4619 {
4620         guint32 idx = mono_metadata_token_index (type_spec);
4621         MonoTableInfo *t;
4622         guint32 cols [MONO_TYPESPEC_SIZE];
4623         const char *ptr;
4624         guint32 len;
4625         MonoType *type, *type2;
4626
4627         mono_loader_lock ();
4628
4629         type = g_hash_table_lookup (image->typespec_cache, GUINT_TO_POINTER (type_spec));
4630         if (type) {
4631                 mono_loader_unlock ();
4632                 return type;
4633         }
4634
4635         t = &image->tables [MONO_TABLE_TYPESPEC];
4636
4637         mono_metadata_decode_row (t, idx-1, cols, MONO_TYPESPEC_SIZE);
4638         ptr = mono_metadata_blob_heap (image, cols [MONO_TYPESPEC_SIGNATURE]);
4639         len = mono_metadata_decode_value (ptr, &ptr);
4640
4641         type = mono_image_alloc0 (image, sizeof (MonoType));
4642
4643         if (*ptr == MONO_TYPE_BYREF) {
4644                 type->byref = 1;
4645                 ptr++;
4646         }
4647
4648         if (!do_mono_metadata_parse_type (type, image, NULL, ptr, &ptr)) {
4649                 mono_loader_unlock ();
4650                 return NULL;
4651         }
4652
4653         type2 = g_hash_table_lookup (image->typespec_cache, GUINT_TO_POINTER (type_spec));
4654
4655         if (type2) {
4656                 mono_loader_unlock ();
4657                 return type2;
4658         }
4659
4660         g_hash_table_insert (image->typespec_cache, GUINT_TO_POINTER (type_spec), type);
4661
4662         mono_loader_unlock ();
4663
4664         return type;
4665 }
4666
4667
4668 static char*
4669 mono_image_strndup (MonoImage *image, const char *data, guint len)
4670 {
4671         char *res;
4672         if (!image)
4673                 return g_strndup (data, len);
4674         res = mono_image_alloc (image, len + 1);
4675         memcpy (res, data, len);
4676         res [len] = 0;
4677         return res;
4678 }
4679
4680 MonoMarshalSpec *
4681 mono_metadata_parse_marshal_spec (MonoImage *image, const char *ptr)
4682 {
4683         return mono_metadata_parse_marshal_spec_full (NULL, ptr);
4684 }
4685
4686 MonoMarshalSpec *
4687 mono_metadata_parse_marshal_spec_full (MonoImage *image, const char *ptr)
4688 {
4689         MonoMarshalSpec *res;
4690         int len;
4691         const char *start = ptr;
4692
4693         /* fixme: this is incomplete, but I cant find more infos in the specs */
4694
4695         if (image)
4696                 res = mono_image_alloc0 (image, sizeof (MonoMarshalSpec));
4697         else
4698                 res = g_new0 (MonoMarshalSpec, 1);
4699         
4700         len = mono_metadata_decode_value (ptr, &ptr);
4701         res->native = *ptr++;
4702
4703         if (res->native == MONO_NATIVE_LPARRAY) {
4704                 res->data.array_data.param_num = -1;
4705                 res->data.array_data.num_elem = -1;
4706                 res->data.array_data.elem_mult = -1;
4707
4708                 if (ptr - start <= len)
4709                         res->data.array_data.elem_type = *ptr++;
4710                 if (ptr - start <= len)
4711                         res->data.array_data.param_num = mono_metadata_decode_value (ptr, &ptr);
4712                 if (ptr - start <= len)
4713                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
4714                 if (ptr - start <= len) {
4715                         /*
4716                          * LAMESPEC: Older spec versions say this parameter comes before 
4717                          * num_elem. Never spec versions don't talk about elem_mult at
4718                          * all, but csc still emits it, and it is used to distinguish
4719                          * between param_num being 0, and param_num being omitted.
4720                          * So if (param_num == 0) && (num_elem > 0), then
4721                          * elem_mult == 0 -> the array size is num_elem
4722                          * elem_mult == 1 -> the array size is @param_num + num_elem
4723                          */
4724                         res->data.array_data.elem_mult = mono_metadata_decode_value (ptr, &ptr);
4725                 }
4726         } 
4727
4728         if (res->native == MONO_NATIVE_BYVALTSTR) {
4729                 if (ptr - start <= len)
4730                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
4731         }
4732
4733         if (res->native == MONO_NATIVE_BYVALARRAY) {
4734                 if (ptr - start <= len)
4735                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
4736         }
4737         
4738         if (res->native == MONO_NATIVE_CUSTOM) {
4739                 /* skip unused type guid */
4740                 len = mono_metadata_decode_value (ptr, &ptr);
4741                 ptr += len;
4742                 /* skip unused native type name */
4743                 len = mono_metadata_decode_value (ptr, &ptr);
4744                 ptr += len;
4745                 /* read custom marshaler type name */
4746                 len = mono_metadata_decode_value (ptr, &ptr);
4747                 res->data.custom_data.custom_name = mono_image_strndup (image, ptr, len);               
4748                 ptr += len;
4749                 /* read cookie string */
4750                 len = mono_metadata_decode_value (ptr, &ptr);
4751                 res->data.custom_data.cookie = mono_image_strndup (image, ptr, len);
4752         }
4753
4754         if (res->native == MONO_NATIVE_SAFEARRAY) {
4755                 res->data.safearray_data.elem_type = 0;
4756                 res->data.safearray_data.num_elem = 0;
4757                 if (ptr - start <= len)
4758                         res->data.safearray_data.elem_type = *ptr++;
4759                 if (ptr - start <= len)
4760                         res->data.safearray_data.num_elem = *ptr++;
4761         }
4762         return res;
4763 }
4764
4765 void 
4766 mono_metadata_free_marshal_spec (MonoMarshalSpec *spec)
4767 {
4768         if (spec->native == MONO_NATIVE_CUSTOM) {
4769                 g_free (spec->data.custom_data.custom_name);
4770                 g_free (spec->data.custom_data.cookie);
4771         }
4772         g_free (spec);
4773 }
4774
4775 /**
4776  * mono_type_to_unmanaged:
4777  *
4778  * Returns: A MonoMarshalNative enumeration value (MONO_NATIVE_) value
4779  * describing the underlying native reprensetation of the type.
4780  * 
4781  * In addition the value pointed by
4782  * "conv" will contain the kind of marshalling required for this
4783  * particular type one of the MONO_MARSHAL_CONV_ enumeration values.
4784  */
4785 guint32
4786 mono_type_to_unmanaged (MonoType *type, MonoMarshalSpec *mspec, gboolean as_field,
4787                         gboolean unicode, MonoMarshalConv *conv) 
4788 {
4789         MonoMarshalConv dummy_conv;
4790         int t = type->type;
4791
4792         if (!conv)
4793                 conv = &dummy_conv;
4794
4795         *conv = MONO_MARSHAL_CONV_NONE;
4796
4797         if (type->byref)
4798                 return MONO_NATIVE_UINT;
4799
4800 handle_enum:
4801         switch (t) {
4802         case MONO_TYPE_BOOLEAN: 
4803                 if (mspec) {
4804                         switch (mspec->native) {
4805                         case MONO_NATIVE_VARIANTBOOL:
4806                                 *conv = MONO_MARSHAL_CONV_BOOL_VARIANTBOOL;
4807                                 return MONO_NATIVE_VARIANTBOOL;
4808                         case MONO_NATIVE_BOOLEAN:
4809                                 *conv = MONO_MARSHAL_CONV_BOOL_I4;
4810                                 return MONO_NATIVE_BOOLEAN;
4811                         case MONO_NATIVE_I1:
4812                         case MONO_NATIVE_U1:
4813                                 return mspec->native;
4814                         default:
4815                                 g_error ("cant marshal bool to native type %02x", mspec->native);
4816                         }
4817                 }
4818                 *conv = MONO_MARSHAL_CONV_BOOL_I4;
4819                 return MONO_NATIVE_BOOLEAN;
4820         case MONO_TYPE_CHAR: return MONO_NATIVE_U2;
4821         case MONO_TYPE_I1: return MONO_NATIVE_I1;
4822         case MONO_TYPE_U1: return MONO_NATIVE_U1;
4823         case MONO_TYPE_I2: return MONO_NATIVE_I2;
4824         case MONO_TYPE_U2: return MONO_NATIVE_U2;
4825         case MONO_TYPE_I4: return MONO_NATIVE_I4;
4826         case MONO_TYPE_U4: return MONO_NATIVE_U4;
4827         case MONO_TYPE_I8: return MONO_NATIVE_I8;
4828         case MONO_TYPE_U8: return MONO_NATIVE_U8;
4829         case MONO_TYPE_R4: return MONO_NATIVE_R4;
4830         case MONO_TYPE_R8: return MONO_NATIVE_R8;
4831         case MONO_TYPE_STRING:
4832                 if (mspec) {
4833                         switch (mspec->native) {
4834                         case MONO_NATIVE_BSTR:
4835                                 *conv = MONO_MARSHAL_CONV_STR_BSTR;
4836                                 return MONO_NATIVE_BSTR;
4837                         case MONO_NATIVE_LPSTR:
4838                                 *conv = MONO_MARSHAL_CONV_STR_LPSTR;
4839                                 return MONO_NATIVE_LPSTR;
4840                         case MONO_NATIVE_LPWSTR:
4841                                 *conv = MONO_MARSHAL_CONV_STR_LPWSTR;
4842                                 return MONO_NATIVE_LPWSTR;
4843                         case MONO_NATIVE_LPTSTR:
4844                                 *conv = MONO_MARSHAL_CONV_STR_LPTSTR;
4845                                 return MONO_NATIVE_LPTSTR;
4846                         case MONO_NATIVE_ANSIBSTR:
4847                                 *conv = MONO_MARSHAL_CONV_STR_ANSIBSTR;
4848                                 return MONO_NATIVE_ANSIBSTR;
4849                         case MONO_NATIVE_TBSTR:
4850                                 *conv = MONO_MARSHAL_CONV_STR_TBSTR;
4851                                 return MONO_NATIVE_TBSTR;
4852                         case MONO_NATIVE_BYVALTSTR:
4853                                 if (unicode)
4854                                         *conv = MONO_MARSHAL_CONV_STR_BYVALWSTR;
4855                                 else
4856                                         *conv = MONO_MARSHAL_CONV_STR_BYVALSTR;
4857                                 return MONO_NATIVE_BYVALTSTR;
4858                         default:
4859                                 g_error ("Can not marshal string to native type '%02x': Invalid managed/unmanaged type combination (String fields must be paired with LPStr, LPWStr, BStr or ByValTStr).", mspec->native);
4860                         }
4861                 }       
4862                 if (unicode) {
4863                         *conv = MONO_MARSHAL_CONV_STR_LPWSTR;
4864                         return MONO_NATIVE_LPWSTR; 
4865                 }
4866                 else {
4867                         *conv = MONO_MARSHAL_CONV_STR_LPSTR;
4868                         return MONO_NATIVE_LPSTR; 
4869                 }
4870         case MONO_TYPE_PTR: return MONO_NATIVE_UINT;
4871         case MONO_TYPE_VALUETYPE: /*FIXME*/
4872                 if (type->data.klass->enumtype) {
4873                         t = mono_class_enum_basetype (type->data.klass)->type;
4874                         goto handle_enum;
4875                 }
4876                 if (type->data.klass == mono_defaults.handleref_class){
4877                         *conv = MONO_MARSHAL_CONV_HANDLEREF;
4878                         return MONO_NATIVE_INT;
4879                 }
4880                 return MONO_NATIVE_STRUCT;
4881         case MONO_TYPE_SZARRAY: 
4882         case MONO_TYPE_ARRAY: 
4883                 if (mspec) {
4884                         switch (mspec->native) {
4885                         case MONO_NATIVE_BYVALARRAY:
4886                                 if ((type->data.klass->element_class == mono_defaults.char_class) && !unicode)
4887                                         *conv = MONO_MARSHAL_CONV_ARRAY_BYVALCHARARRAY;
4888                                 else
4889                                         *conv = MONO_MARSHAL_CONV_ARRAY_BYVALARRAY;
4890                                 return MONO_NATIVE_BYVALARRAY;
4891                         case MONO_NATIVE_SAFEARRAY:
4892                                 *conv = MONO_MARSHAL_CONV_ARRAY_SAVEARRAY;
4893                                 return MONO_NATIVE_SAFEARRAY;
4894                         case MONO_NATIVE_LPARRAY:                               
4895                                 *conv = MONO_MARSHAL_CONV_ARRAY_LPARRAY;
4896                                 return MONO_NATIVE_LPARRAY;
4897                         default:
4898                                 g_error ("cant marshal array as native type %02x", mspec->native);
4899                         }
4900                 }       
4901
4902                 *conv = MONO_MARSHAL_CONV_ARRAY_LPARRAY;
4903                 return MONO_NATIVE_LPARRAY;
4904         case MONO_TYPE_I: return MONO_NATIVE_INT;
4905         case MONO_TYPE_U: return MONO_NATIVE_UINT;
4906         case MONO_TYPE_CLASS: 
4907         case MONO_TYPE_OBJECT: {
4908                 /* FIXME : we need to handle ArrayList and StringBuilder here, probably */
4909                 if (mspec) {
4910                         switch (mspec->native) {
4911                         case MONO_NATIVE_STRUCT:
4912                                 return MONO_NATIVE_STRUCT;
4913                         case MONO_NATIVE_CUSTOM:
4914                                 return MONO_NATIVE_CUSTOM;
4915                         case MONO_NATIVE_INTERFACE:
4916                                 *conv = MONO_MARSHAL_CONV_OBJECT_INTERFACE;
4917                                 return MONO_NATIVE_INTERFACE;
4918                         case MONO_NATIVE_IDISPATCH:
4919                                 *conv = MONO_MARSHAL_CONV_OBJECT_IDISPATCH;
4920                                 return MONO_NATIVE_IDISPATCH;
4921                         case MONO_NATIVE_IUNKNOWN:
4922                                 *conv = MONO_MARSHAL_CONV_OBJECT_IUNKNOWN;
4923                                 return MONO_NATIVE_IUNKNOWN;
4924                         case MONO_NATIVE_FUNC:
4925                                 if (t == MONO_TYPE_CLASS && (type->data.klass == mono_defaults.multicastdelegate_class ||
4926                                                                                          type->data.klass == mono_defaults.delegate_class || 
4927                                                                                          type->data.klass->parent == mono_defaults.multicastdelegate_class)) {
4928                                         *conv = MONO_MARSHAL_CONV_DEL_FTN;
4929                                         return MONO_NATIVE_FUNC;
4930                                 }
4931                                 /* Fall through */
4932                         default:
4933                                 g_error ("cant marshal object as native type %02x", mspec->native);
4934                         }
4935                 }
4936                 if (t == MONO_TYPE_CLASS && (type->data.klass == mono_defaults.multicastdelegate_class ||
4937                                              type->data.klass == mono_defaults.delegate_class || 
4938                                              type->data.klass->parent == mono_defaults.multicastdelegate_class)) {
4939                         *conv = MONO_MARSHAL_CONV_DEL_FTN;
4940                         return MONO_NATIVE_FUNC;
4941                 }
4942                 if (mono_defaults.safehandle_class && type->data.klass == mono_defaults.safehandle_class){
4943                         *conv = MONO_MARSHAL_CONV_SAFEHANDLE;
4944                         return MONO_NATIVE_INT;
4945                 }
4946                 *conv = MONO_MARSHAL_CONV_OBJECT_STRUCT;
4947                 return MONO_NATIVE_STRUCT;
4948         }
4949         case MONO_TYPE_FNPTR: return MONO_NATIVE_FUNC;
4950         case MONO_TYPE_GENERICINST:
4951                 type = &type->data.generic_class->container_class->byval_arg;
4952                 t = type->type;
4953                 goto handle_enum;
4954         case MONO_TYPE_TYPEDBYREF:
4955         default:
4956                 g_error ("type 0x%02x not handled in marshal", t);
4957         }
4958         return MONO_NATIVE_MAX;
4959 }
4960
4961 const char*
4962 mono_metadata_get_marshal_info (MonoImage *meta, guint32 idx, gboolean is_field)
4963 {
4964         locator_t loc;
4965         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_FIELDMARSHAL];
4966
4967         if (!tdef->base)
4968                 return NULL;
4969
4970         loc.t = tdef;
4971         loc.col_idx = MONO_FIELD_MARSHAL_PARENT;
4972         loc.idx = ((idx + 1) << MONO_HAS_FIELD_MARSHAL_BITS) | (is_field? MONO_HAS_FIELD_MARSHAL_FIELDSREF: MONO_HAS_FIELD_MARSHAL_PARAMDEF);
4973
4974         /* FIXME: Index translation */
4975
4976         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4977                 return NULL;
4978
4979         return mono_metadata_blob_heap (meta, mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_MARSHAL_NATIVE_TYPE));
4980 }
4981
4982 static MonoMethod*
4983 method_from_method_def_or_ref (MonoImage *m, guint32 tok, MonoGenericContext *context)
4984 {
4985         guint32 idx = tok >> MONO_METHODDEFORREF_BITS;
4986
4987         switch (tok & MONO_METHODDEFORREF_MASK) {
4988         case MONO_METHODDEFORREF_METHODDEF:
4989                 return mono_get_method_full (m, MONO_TOKEN_METHOD_DEF | idx, NULL, context);
4990         case MONO_METHODDEFORREF_METHODREF:
4991                 return mono_get_method_full (m, MONO_TOKEN_MEMBER_REF | idx, NULL, context);
4992         }
4993         g_assert_not_reached ();
4994         return NULL;
4995 }
4996
4997 /*
4998  * mono_class_get_overrides_full:
4999  *
5000  *   Return the method overrides belonging to class @type_token in @overrides, and
5001  * the number of overrides in @num_overrides.
5002  *
5003  * Returns: TRUE on success, FALSE on failure.
5004  */
5005 gboolean
5006 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
5007                                MonoGenericContext *generic_context)
5008 {
5009         locator_t loc;
5010         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_METHODIMPL];
5011         guint32 start, end;
5012         gint32 i, num;
5013         guint32 cols [MONO_METHODIMPL_SIZE];
5014         MonoMethod **result;
5015         gint32 ok = TRUE;
5016         
5017         *overrides = NULL;
5018         if (num_overrides)
5019                 *num_overrides = 0;
5020
5021         if (!tdef->base)
5022                 return TRUE;
5023
5024         loc.t = tdef;
5025         loc.col_idx = MONO_METHODIMPL_CLASS;
5026         loc.idx = mono_metadata_token_index (type_token);
5027
5028         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
5029                 return TRUE;
5030
5031         start = loc.result;
5032         end = start + 1;
5033         /*
5034          * We may end up in the middle of the rows... 
5035          */
5036         while (start > 0) {
5037                 if (loc.idx == mono_metadata_decode_row_col (tdef, start - 1, MONO_METHODIMPL_CLASS))
5038                         start--;
5039                 else
5040                         break;
5041         }
5042         while (end < tdef->rows) {
5043                 if (loc.idx == mono_metadata_decode_row_col (tdef, end, MONO_METHODIMPL_CLASS))
5044                         end++;
5045                 else
5046                         break;
5047         }
5048         num = end - start;
5049         result = g_new (MonoMethod*, num * 2);
5050         for (i = 0; i < num; ++i) {
5051                 MonoMethod *method;
5052
5053                 mono_metadata_decode_row (tdef, start + i, cols, MONO_METHODIMPL_SIZE);
5054                 method = method_from_method_def_or_ref (
5055                         image, cols [MONO_METHODIMPL_DECLARATION], generic_context);
5056                 if (method == NULL)
5057                         ok = FALSE;
5058                 result [i * 2] = method;
5059                 method = method_from_method_def_or_ref (
5060                         image, cols [MONO_METHODIMPL_BODY], generic_context);
5061                 if (method == NULL)
5062                         ok = FALSE;
5063                 result [i * 2 + 1] = method;
5064         }
5065
5066         *overrides = result;
5067         if (num_overrides)
5068                 *num_overrides = num;
5069         return ok;
5070 }
5071
5072 /**
5073  * mono_guid_to_string:
5074  *
5075  * Converts a 16 byte Microsoft GUID to the standard string representation.
5076  */
5077 char *
5078 mono_guid_to_string (const guint8 *guid)
5079 {
5080         return g_strdup_printf ("%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X", 
5081                                 guid[3], guid[2], guid[1], guid[0],
5082                                 guid[5], guid[4],
5083                                 guid[7], guid[6],
5084                                 guid[8], guid[9],
5085                                 guid[10], guid[11], guid[12], guid[13], guid[14], guid[15]);
5086 }
5087
5088 static gboolean
5089 get_constraints (MonoImage *image, int owner, MonoClass ***constraints, MonoGenericContainer *container)
5090 {
5091         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAMCONSTRAINT];
5092         guint32 cols [MONO_GENPARCONSTRAINT_SIZE];
5093         guint32 i, token, found;
5094         MonoClass *klass, **res;
5095         GList *cons = NULL, *tmp;
5096         MonoGenericContext *context = &container->context;
5097
5098         *constraints = NULL;
5099         found = 0;
5100         for (i = 0; i < tdef->rows; ++i) {
5101                 mono_metadata_decode_row (tdef, i, cols, MONO_GENPARCONSTRAINT_SIZE);
5102                 if (cols [MONO_GENPARCONSTRAINT_GENERICPAR] == owner) {
5103                         token = mono_metadata_token_from_dor (cols [MONO_GENPARCONSTRAINT_CONSTRAINT]);
5104                         klass = mono_class_get_full (image, token, context);
5105                         cons = g_list_append (cons, klass);
5106                         ++found;
5107                 } else {
5108                         /* contiguous list finished */
5109                         if (found)
5110                                 break;
5111                 }
5112         }
5113         if (!found)
5114                 return TRUE;
5115         res = g_new0 (MonoClass*, found + 1);
5116         for (i = 0, tmp = cons; i < found; ++i, tmp = tmp->next) {
5117                 res [i] = tmp->data;
5118         }
5119         g_list_free (cons);
5120         *constraints = res;
5121         return TRUE;
5122 }
5123
5124 /*
5125  * mono_metadata_get_generic_param_row:
5126  *
5127  * @image:
5128  * @token: TypeOrMethodDef token, owner for GenericParam
5129  * @owner: coded token, set on return
5130  * 
5131  * Returns: 1-based row-id in the GenericParam table whose
5132  * owner is @token. 0 if not found.
5133  */
5134 guint32
5135 mono_metadata_get_generic_param_row (MonoImage *image, guint32 token, guint32 *owner)
5136 {
5137         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
5138         locator_t loc;
5139
5140         g_assert (owner);
5141         if (!tdef->base)
5142                 return 0;
5143
5144         if (mono_metadata_token_table (token) == MONO_TABLE_TYPEDEF)
5145                 *owner = MONO_TYPEORMETHOD_TYPE;
5146         else if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
5147                 *owner = MONO_TYPEORMETHOD_METHOD;
5148         else {
5149                 g_error ("wrong token %x to get_generic_param_row", token);
5150                 return 0;
5151         }
5152         *owner |= mono_metadata_token_index (token) << MONO_TYPEORMETHOD_BITS;
5153
5154         loc.idx = *owner;
5155         loc.col_idx = MONO_GENERICPARAM_OWNER;
5156         loc.t = tdef;
5157
5158         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
5159                 return 0;
5160
5161         /* Find the first entry by searching backwards */
5162         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_GENERICPARAM_OWNER) == loc.idx))
5163                 loc.result --;
5164
5165         return loc.result + 1;
5166 }
5167
5168 gboolean
5169 mono_metadata_has_generic_params (MonoImage *image, guint32 token)
5170 {
5171         guint32 owner;
5172         return mono_metadata_get_generic_param_row (image, token, &owner);
5173 }
5174
5175 /*
5176  * mono_metadata_load_generic_param_constraints:
5177  *
5178  * Load the generic parameter constraints for the newly created generic type or method
5179  * represented by @token and @container.  The @container is the new container which has
5180  * been returned by a call to mono_metadata_load_generic_params() with this @token.
5181  */
5182 void
5183 mono_metadata_load_generic_param_constraints (MonoImage *image, guint32 token,
5184                                               MonoGenericContainer *container)
5185 {
5186         guint32 start_row, i, owner;
5187         if (! (start_row = mono_metadata_get_generic_param_row (image, token, &owner)))
5188                 return;
5189         for (i = 0; i < container->type_argc; i++)
5190                 get_constraints (image, start_row + i, &mono_generic_container_get_param_info (container, i)->constraints, container);
5191 }
5192
5193 /*
5194  * mono_metadata_load_generic_params:
5195  *
5196  * Load the type parameters from the type or method definition @token.
5197  *
5198  * Use this method after parsing a type or method definition to figure out whether it's a generic
5199  * type / method.  When parsing a method definition, @parent_container points to the generic container
5200  * of the current class, if any.
5201  *
5202  * Note: This method does not load the constraints: for typedefs, this has to be done after fully
5203  *       creating the type.
5204  *
5205  * Returns: NULL if @token is not a generic type or method definition or the new generic container.
5206  *
5207  * LOCKING: Acquires the loader lock
5208  *
5209  */
5210 MonoGenericContainer *
5211 mono_metadata_load_generic_params (MonoImage *image, guint32 token, MonoGenericContainer *parent_container)
5212 {
5213         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
5214         guint32 cols [MONO_GENERICPARAM_SIZE];
5215         guint32 i, owner = 0, n;
5216         MonoGenericContainer *container;
5217         MonoGenericParam *params;
5218         MonoGenericContext *context;
5219
5220         if (!(i = mono_metadata_get_generic_param_row (image, token, &owner)))
5221                 return NULL;
5222         mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
5223         params = NULL;
5224         n = 0;
5225         container = mono_image_alloc0 (image, sizeof (MonoGenericContainer));
5226         do {
5227                 n++;
5228                 params = g_realloc (params, sizeof (MonoGenericParam) * n);
5229                 memset (&params [n - 1], 0, sizeof (MonoGenericParam));
5230                 params [n - 1].owner = container;
5231                 params [n - 1].info.flags = cols [MONO_GENERICPARAM_FLAGS];
5232                 params [n - 1].num = cols [MONO_GENERICPARAM_NUMBER];
5233                 params [n - 1].info.name = mono_metadata_string_heap (image, cols [MONO_GENERICPARAM_NAME]);
5234                 if (++i > tdef->rows)
5235                         break;
5236                 mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
5237         } while (cols [MONO_GENERICPARAM_OWNER] == owner);
5238
5239         container->type_argc = n;
5240         container->type_params = mono_image_alloc0 (image, sizeof (MonoGenericParam) * n);
5241         memcpy (container->type_params, params, sizeof (MonoGenericParam) * n);
5242         g_free (params);
5243         container->parent = parent_container;
5244
5245         if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
5246                 container->is_method = 1;
5247
5248         g_assert (container->parent == NULL || container->is_method);
5249
5250         context = &container->context;
5251         if (container->is_method) {
5252                 context->class_inst = container->parent ? container->parent->context.class_inst : NULL;
5253                 context->method_inst = mono_get_shared_generic_inst (container);
5254         } else {
5255                 context->class_inst = mono_get_shared_generic_inst (container);
5256         }
5257
5258         return container;
5259 }
5260
5261 MonoGenericInst *
5262 mono_get_shared_generic_inst (MonoGenericContainer *container)
5263 {
5264         MonoType **type_argv;
5265         MonoType *helper;
5266         MonoGenericInst *nginst;
5267         int i;
5268
5269         type_argv = g_new0 (MonoType *, container->type_argc);
5270         helper = g_new0 (MonoType, container->type_argc);
5271
5272         for (i = 0; i < container->type_argc; i++) {
5273                 MonoType *t = &helper [i];
5274
5275                 t->type = container->is_method ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
5276                 t->data.generic_param = mono_generic_container_get_param (container, i);
5277
5278                 type_argv [i] = t;
5279         }
5280
5281         nginst = mono_metadata_get_generic_inst (container->type_argc, type_argv);
5282
5283         g_free (type_argv);
5284         g_free (helper);
5285
5286         return nginst;
5287 }
5288
5289 gboolean
5290 mono_type_is_byref (MonoType *type)
5291 {
5292         return type->byref;
5293 }
5294
5295 int
5296 mono_type_get_type (MonoType *type)
5297 {
5298         return type->type;
5299 }
5300
5301 /* For MONO_TYPE_FNPTR */
5302 MonoMethodSignature*
5303 mono_type_get_signature (MonoType *type)
5304 {
5305         return type->data.method;
5306 }
5307
5308 /* For MONO_TYPE_CLASS, VALUETYPE */
5309 MonoClass*
5310 mono_type_get_class (MonoType *type)
5311 {
5312         return type->data.klass;
5313 }
5314
5315 /* For MONO_TYPE_ARRAY */
5316 MonoArrayType*
5317 mono_type_get_array_type (MonoType *type)
5318 {
5319         return type->data.array;
5320 }
5321
5322 /* For MONO_TYPE_PTR */
5323 MonoType*
5324 mono_type_get_ptr_type (MonoType *type)
5325 {
5326         return type->data.type;
5327 }
5328
5329 MonoClass*
5330 mono_type_get_modifiers (MonoType *type, gboolean *is_required, gpointer *iter)
5331 {
5332         /* FIXME: implement */
5333         return NULL;
5334 }
5335
5336 MonoType*
5337 mono_signature_get_return_type (MonoMethodSignature *sig)
5338 {
5339         return sig->ret;
5340 }
5341
5342 MonoType*
5343 mono_signature_get_params (MonoMethodSignature *sig, gpointer *iter)
5344 {
5345         MonoType** type;
5346         if (!iter)
5347                 return NULL;
5348         if (!*iter) {
5349                 /* start from the first */
5350                 if (sig->param_count) {
5351                         *iter = &sig->params [0];
5352                         return sig->params [0];
5353                 } else {
5354                         /* no method */
5355                         return NULL;
5356                 }
5357         }
5358         type = *iter;
5359         type++;
5360         if (type < &sig->params [sig->param_count]) {
5361                 *iter = type;
5362                 return *type;
5363         }
5364         return NULL;
5365 }
5366
5367 guint32
5368 mono_signature_get_param_count (MonoMethodSignature *sig)
5369 {
5370         return sig->param_count;
5371 }
5372
5373 guint32
5374 mono_signature_get_call_conv (MonoMethodSignature *sig)
5375 {
5376         return sig->call_convention;
5377 }
5378
5379 int
5380 mono_signature_vararg_start (MonoMethodSignature *sig)
5381 {
5382         return sig->sentinelpos;
5383 }
5384
5385 gboolean
5386 mono_signature_is_instance (MonoMethodSignature *sig)
5387 {
5388         return sig->hasthis;
5389 }
5390
5391 gboolean
5392 mono_signature_explicit_this (MonoMethodSignature *sig)
5393 {
5394         return sig->explicit_this;
5395 }
5396
5397 /* for use with allocated memory blocks (assumes alignment is to 8 bytes) */
5398 guint
5399 mono_aligned_addr_hash (gconstpointer ptr)
5400 {
5401         return GPOINTER_TO_UINT (ptr) >> 3;
5402 }
5403
5404 /*
5405  * If @field belongs to an inflated generic class, return the corresponding field of the
5406  * generic type definition class.
5407  */
5408 MonoClassField*
5409 mono_metadata_get_corresponding_field_from_generic_type_definition (MonoClassField *field)
5410 {
5411         MonoClass *gtd;
5412         int offset;
5413
5414         if (!field->parent->generic_class)
5415                 return field;
5416
5417         gtd = field->parent->generic_class->container_class;
5418         offset = field - field->parent->fields;
5419         return gtd->fields + offset;
5420 }
5421
5422 /*
5423  * If @event belongs to an inflated generic class, return the corresponding event of the
5424  * generic type definition class.
5425  */
5426 MonoEvent*
5427 mono_metadata_get_corresponding_event_from_generic_type_definition (MonoEvent *event)
5428 {
5429         MonoClass *gtd;
5430         int offset;
5431
5432         if (!event->parent->generic_class)
5433                 return event;
5434
5435         gtd = event->parent->generic_class->container_class;
5436         offset = event - event->parent->ext->events;
5437         return gtd->ext->events + offset;
5438 }
5439
5440 /*
5441  * If @property belongs to an inflated generic class, return the corresponding property of the
5442  * generic type definition class.
5443  */
5444 MonoProperty*
5445 mono_metadata_get_corresponding_property_from_generic_type_definition (MonoProperty *property)
5446 {
5447         MonoClass *gtd;
5448         int offset;
5449
5450         if (!property->parent->generic_class)
5451                 return property;
5452
5453         gtd = property->parent->generic_class->container_class;
5454         offset = property - property->parent->ext->properties;
5455         return gtd->ext->properties + offset;
5456 }
5457