2009-06-01 Rodrigo Kumpera <rkumpera@novell.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->num = index;
2623                 param->image = m;
2624
2625                 return param;
2626         }
2627
2628         g_assert (index < generic_container->type_argc);
2629         return mono_generic_container_get_param (generic_container, index);
2630 }
2631
2632 /*
2633  * mono_metadata_get_shared_type:
2634  *
2635  *   Return a shared instance of TYPE, if available, NULL otherwise.
2636  * Shared MonoType instances help save memory. Their contents should not be modified
2637  * by the caller. They do not need to be freed as their lifetime is bound by either
2638  * the lifetime of the runtime (builtin types), or the lifetime of the MonoClass
2639  * instance they are embedded in. If they are freed, they should be freed using
2640  * mono_metadata_free_type () instead of g_free ().
2641  */
2642 MonoType*
2643 mono_metadata_get_shared_type (MonoType *type)
2644 {
2645         MonoType *cached;
2646
2647         /* No need to use locking since nobody is modifying the hash table */
2648         if ((cached = g_hash_table_lookup (type_cache, type)))
2649                 return cached;
2650
2651         switch (type->type){
2652         case MONO_TYPE_CLASS:
2653         case MONO_TYPE_VALUETYPE:
2654                 if (type == &type->data.klass->byval_arg)
2655                         return type;
2656                 if (type == &type->data.klass->this_arg)
2657                         return type;
2658                 break;
2659         }
2660
2661         return NULL;
2662 }
2663
2664 /* 
2665  * do_mono_metadata_parse_type:
2666  * @type: MonoType to be filled in with the return value
2667  * @m: image context
2668  * @generic_context: generics_context
2669  * @ptr: pointer to the encoded type
2670  * @rptr: pointer where the end of the encoded type is saved
2671  * 
2672  * Internal routine used to "fill" the contents of @type from an 
2673  * allocated pointer.  This is done this way to avoid doing too
2674  * many mini-allocations (particularly for the MonoFieldType which
2675  * most of the time is just a MonoType, but sometimes might be augmented).
2676  *
2677  * This routine is used by mono_metadata_parse_type and
2678  * mono_metadata_parse_field_type
2679  *
2680  * This extracts a Type as specified in Partition II (22.2.12) 
2681  *
2682  * Returns: FALSE if the type could not be loaded
2683  */
2684 static gboolean
2685 do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContainer *container,
2686                              const char *ptr, const char **rptr)
2687 {
2688         gboolean ok = TRUE;
2689         type->type = mono_metadata_decode_value (ptr, &ptr);
2690         
2691         switch (type->type){
2692         case MONO_TYPE_VOID:
2693         case MONO_TYPE_BOOLEAN:
2694         case MONO_TYPE_CHAR:
2695         case MONO_TYPE_I1:
2696         case MONO_TYPE_U1:
2697         case MONO_TYPE_I2:
2698         case MONO_TYPE_U2:
2699         case MONO_TYPE_I4:
2700         case MONO_TYPE_U4:
2701         case MONO_TYPE_I8:
2702         case MONO_TYPE_U8:
2703         case MONO_TYPE_R4:
2704         case MONO_TYPE_R8:
2705         case MONO_TYPE_I:
2706         case MONO_TYPE_U:
2707         case MONO_TYPE_STRING:
2708         case MONO_TYPE_OBJECT:
2709         case MONO_TYPE_TYPEDBYREF:
2710                 break;
2711         case MONO_TYPE_VALUETYPE:
2712         case MONO_TYPE_CLASS: {
2713                 guint32 token;
2714                 token = mono_metadata_parse_typedef_or_ref (m, ptr, &ptr);
2715                 type->data.klass = mono_class_get (m, token);
2716                 if (!type->data.klass)
2717                         return FALSE;
2718                 break;
2719         }
2720         case MONO_TYPE_SZARRAY: {
2721                 MonoType *etype = mono_metadata_parse_type_full (m, container, MONO_PARSE_MOD_TYPE, 0, ptr, &ptr);
2722                 if (!etype)
2723                         return FALSE;
2724                 type->data.klass = mono_class_from_mono_type (etype);
2725                 break;
2726         }
2727         case MONO_TYPE_PTR:
2728                 type->data.type = mono_metadata_parse_type_full (m, container, MONO_PARSE_MOD_TYPE, 0, ptr, &ptr);
2729                 if (!type->data.type)
2730                         return FALSE;
2731                 break;
2732         case MONO_TYPE_FNPTR:
2733                 type->data.method = mono_metadata_parse_method_signature_full (m, container, 0, ptr, &ptr);
2734                 break;
2735         case MONO_TYPE_ARRAY:
2736                 type->data.array = mono_metadata_parse_array_full (m, container, ptr, &ptr);
2737                 break;
2738         case MONO_TYPE_MVAR:
2739                 if (container && !container->is_method)
2740                         return FALSE;
2741         case MONO_TYPE_VAR:
2742                 type->data.generic_param = mono_metadata_parse_generic_param (m, container, type->type, ptr, &ptr);
2743                 break;
2744         case MONO_TYPE_GENERICINST:
2745                 ok = do_mono_metadata_parse_generic_class (type, m, container, ptr, &ptr);
2746                 break;
2747         default:
2748                 g_error ("type 0x%02x not handled in do_mono_metadata_parse_type", type->type);
2749         }
2750         
2751         if (rptr)
2752                 *rptr = ptr;
2753         return ok;
2754 }
2755
2756 /*
2757  * mono_metadata_free_type:
2758  * @type: type to free
2759  *
2760  * Free the memory allocated for type @type which is allocated on the heap.
2761  */
2762 void
2763 mono_metadata_free_type (MonoType *type)
2764 {
2765         if (type >= builtin_types && type < builtin_types + NBUILTIN_TYPES ())
2766                 return;
2767         
2768         switch (type->type){
2769         case MONO_TYPE_OBJECT:
2770         case MONO_TYPE_STRING:
2771                 if (!type->data.klass)
2772                         break;
2773                 /* fall through */
2774         case MONO_TYPE_CLASS:
2775         case MONO_TYPE_VALUETYPE:
2776                 if (type == &type->data.klass->byval_arg || type == &type->data.klass->this_arg)
2777                         return;
2778                 break;
2779         case MONO_TYPE_PTR:
2780                 mono_metadata_free_type (type->data.type);
2781                 break;
2782         case MONO_TYPE_FNPTR:
2783                 mono_metadata_free_method_signature (type->data.method);
2784                 break;
2785         case MONO_TYPE_ARRAY:
2786                 mono_metadata_free_array (type->data.array);
2787                 break;
2788         }
2789
2790         g_free (type);
2791 }
2792
2793 #if 0
2794 static void
2795 hex_dump (const char *buffer, int base, int count)
2796 {
2797         int show_header = 1;
2798         int i;
2799
2800         if (count < 0){
2801                 count = -count;
2802                 show_header = 0;
2803         }
2804         
2805         for (i = 0; i < count; i++){
2806                 if (show_header)
2807                         if ((i % 16) == 0)
2808                                 printf ("\n0x%08x: ", (unsigned char) base + i);
2809
2810                 printf ("%02x ", (unsigned char) (buffer [i]));
2811         }
2812         fflush (stdout);
2813 }
2814 #endif
2815
2816 /** 
2817  * @mh: The Method header
2818  * @ptr: Points to the beginning of the Section Data (25.3)
2819  */
2820 static void
2821 parse_section_data (MonoImage *m, MonoMethodHeader *mh, const unsigned char *ptr)
2822 {
2823         unsigned char sect_data_flags;
2824         const unsigned char *sptr;
2825         int is_fat;
2826         guint32 sect_data_len;
2827         
2828         while (1) {
2829                 /* align on 32-bit boundary */
2830                 sptr = ptr = dword_align (ptr); 
2831                 sect_data_flags = *ptr;
2832                 ptr++;
2833                 
2834                 is_fat = sect_data_flags & METHOD_HEADER_SECTION_FAT_FORMAT;
2835                 if (is_fat) {
2836                         sect_data_len = (ptr [2] << 16) | (ptr [1] << 8) | ptr [0];
2837                         ptr += 3;
2838                 } else {
2839                         sect_data_len = ptr [0];
2840                         ++ptr;
2841                 }
2842                 /*
2843                 g_print ("flags: %02x, len: %d\n", sect_data_flags, sect_data_len);
2844                 hex_dump (sptr, 0, sect_data_len+8);
2845                 g_print ("\nheader: ");
2846                 hex_dump (sptr-4, 0, 4);
2847                 g_print ("\n");
2848                 */
2849                 
2850                 if (sect_data_flags & METHOD_HEADER_SECTION_EHTABLE) {
2851                         const unsigned char *p = dword_align (ptr);
2852                         int i;
2853                         mh->num_clauses = is_fat ? sect_data_len / 24: sect_data_len / 12;
2854                         /* we could just store a pointer if we don't need to byteswap */
2855                         mh->clauses = mono_image_alloc0 (m, sizeof (MonoExceptionClause) * mh->num_clauses);
2856                         for (i = 0; i < mh->num_clauses; ++i) {
2857                                 MonoExceptionClause *ec = &mh->clauses [i];
2858                                 guint32 tof_value;
2859                                 if (is_fat) {
2860                                         ec->flags = read32 (p);
2861                                         ec->try_offset = read32 (p + 4);
2862                                         ec->try_len = read32 (p + 8);
2863                                         ec->handler_offset = read32 (p + 12);
2864                                         ec->handler_len = read32 (p + 16);
2865                                         tof_value = read32 (p + 20);
2866                                         p += 24;
2867                                 } else {
2868                                         ec->flags = read16 (p);
2869                                         ec->try_offset = read16 (p + 2);
2870                                         ec->try_len = *(p + 4);
2871                                         ec->handler_offset = read16 (p + 5);
2872                                         ec->handler_len = *(p + 7);
2873                                         tof_value = read32 (p + 8);
2874                                         p += 12;
2875                                 }
2876                                 if (ec->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2877                                         ec->data.filter_offset = tof_value;
2878                                 } else if (ec->flags == MONO_EXCEPTION_CLAUSE_NONE) {
2879                                         ec->data.catch_class = tof_value? mono_class_get (m, tof_value): 0;
2880                                 } else {
2881                                         ec->data.catch_class = NULL;
2882                                 }
2883                                 /* g_print ("try %d: %x %04x-%04x %04x\n", i, ec->flags, ec->try_offset, ec->try_offset+ec->try_len, ec->try_len); */
2884                         }
2885
2886                 }
2887                 if (sect_data_flags & METHOD_HEADER_SECTION_MORE_SECTS)
2888                         ptr += sect_data_len - 4; /* LAMESPEC: it seems the size includes the header */
2889                 else
2890                         return;
2891         }
2892 }
2893
2894 /*
2895  * mono_metadata_parse_mh_full:
2896  * @m: metadata context
2897  * @generic_context: generics context
2898  * @ptr: pointer to the method header.
2899  *
2900  * Decode the method header at @ptr, including pointer to the IL code,
2901  * info about local variables and optional exception tables.
2902  * This is a Mono runtime internal function.
2903  *
2904  * LOCKING: Acquires the loader lock.
2905  *
2906  * Returns: a MonoMethodHeader allocated from the image mempool.
2907  */
2908 MonoMethodHeader *
2909 mono_metadata_parse_mh_full (MonoImage *m, MonoGenericContainer *container, const char *ptr)
2910 {
2911         MonoMethodHeader *mh;
2912         unsigned char flags = *(const unsigned char *) ptr;
2913         unsigned char format = flags & METHOD_HEADER_FORMAT_MASK;
2914         guint16 fat_flags;
2915         guint32 local_var_sig_tok, max_stack, code_size, init_locals;
2916         const unsigned char *code;
2917         int hsize;
2918         
2919         g_return_val_if_fail (ptr != NULL, NULL);
2920
2921         switch (format) {
2922         case METHOD_HEADER_TINY_FORMAT:
2923                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader));
2924                 ptr++;
2925                 mh->max_stack = 8;
2926                 local_var_sig_tok = 0;
2927                 mh->code_size = flags >> 2;
2928                 mh->code = (unsigned char*)ptr;
2929                 return mh;
2930         case METHOD_HEADER_TINY_FORMAT1:
2931                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader));
2932                 ptr++;
2933                 mh->max_stack = 8;
2934                 local_var_sig_tok = 0;
2935
2936                 /*
2937                  * The spec claims 3 bits, but the Beta2 is
2938                  * incorrect
2939                  */
2940                 mh->code_size = flags >> 2;
2941                 mh->code = (unsigned char*)ptr;
2942                 return mh;
2943         case METHOD_HEADER_FAT_FORMAT:
2944                 fat_flags = read16 (ptr);
2945                 ptr += 2;
2946                 hsize = (fat_flags >> 12) & 0xf;
2947                 max_stack = read16 (ptr);
2948                 ptr += 2;
2949                 code_size = read32 (ptr);
2950                 ptr += 4;
2951                 local_var_sig_tok = read32 (ptr);
2952                 ptr += 4;
2953
2954                 if (fat_flags & METHOD_HEADER_INIT_LOCALS)
2955                         init_locals = 1;
2956                 else
2957                         init_locals = 0;
2958
2959                 code = (unsigned char*)ptr;
2960
2961                 if (!(fat_flags & METHOD_HEADER_MORE_SECTS))
2962                         break;
2963
2964                 /*
2965                  * There are more sections
2966                  */
2967                 ptr = (char*)code + code_size;
2968                 break;
2969         default:
2970                 return NULL;
2971         }
2972                        
2973         if (local_var_sig_tok) {
2974                 MonoTableInfo *t = &m->tables [MONO_TABLE_STANDALONESIG];
2975                 const char *locals_ptr;
2976                 guint32 cols [MONO_STAND_ALONE_SIGNATURE_SIZE];
2977                 int len=0, i, bsize;
2978
2979                 mono_metadata_decode_row (t, (local_var_sig_tok & 0xffffff)-1, cols, 1);
2980                 locals_ptr = mono_metadata_blob_heap (m, cols [MONO_STAND_ALONE_SIGNATURE]);
2981                 bsize = mono_metadata_decode_blob_size (locals_ptr, &locals_ptr);
2982                 if (*locals_ptr != 0x07)
2983                         g_warning ("wrong signature for locals blob");
2984                 locals_ptr++;
2985                 len = mono_metadata_decode_value (locals_ptr, &locals_ptr);
2986                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader) + (len - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
2987                 mh->num_locals = len;
2988                 for (i = 0; i < len; ++i) {
2989                         mh->locals [i] = mono_metadata_parse_type_full (
2990                                 m, container, MONO_PARSE_LOCAL, 0, locals_ptr, &locals_ptr);
2991                         if (!mh->locals [i]) {
2992                                 return NULL;
2993                         }
2994                 }
2995         } else {
2996                 mh = mono_image_alloc0 (m, sizeof (MonoMethodHeader));
2997         }
2998         mh->code = code;
2999         mh->code_size = code_size;
3000         mh->max_stack = max_stack;
3001         mh->init_locals = init_locals;
3002         if (fat_flags & METHOD_HEADER_MORE_SECTS)
3003                 parse_section_data (m, mh, (const unsigned char*)ptr);
3004         return mh;
3005 }
3006
3007 /*
3008  * mono_metadata_parse_mh:
3009  * @generic_context: generics context
3010  * @ptr: pointer to the method header.
3011  *
3012  * Decode the method header at @ptr, including pointer to the IL code,
3013  * info about local variables and optional exception tables.
3014  * This is a Mono runtime internal function.
3015  *
3016  * Returns: a MonoMethodHeader.
3017  */
3018 MonoMethodHeader *
3019 mono_metadata_parse_mh (MonoImage *m, const char *ptr)
3020 {
3021         MonoMethodHeader *res;
3022
3023         mono_loader_lock ();
3024
3025         res = mono_metadata_parse_mh_full (m, NULL, ptr);
3026
3027         mono_loader_unlock ();
3028
3029         return res;
3030 }
3031
3032 /*
3033  * mono_metadata_free_mh:
3034  * @mh: a method header
3035  *
3036  * Free the memory allocated for the method header.
3037  * This is a Mono runtime internal function.
3038  */
3039 void
3040 mono_metadata_free_mh (MonoMethodHeader *mh)
3041 {
3042         /* Allocated from the mempool */
3043 }
3044
3045 /*
3046  * mono_method_header_get_code:
3047  * @header: a MonoMethodHeader pointer
3048  * @code_size: memory location for returning the code size
3049  * @max_stack: memory location for returning the max stack
3050  *
3051  * Method header accessor to retreive info about the IL code properties:
3052  * a pointer to the IL code itself, the size of the code and the max number
3053  * of stack slots used by the code.
3054  *
3055  * Returns: pointer to the IL code represented by the method header.
3056  */
3057 const unsigned char*
3058 mono_method_header_get_code (MonoMethodHeader *header, guint32* code_size, guint32* max_stack)
3059 {
3060         if (code_size)
3061                 *code_size = header->code_size;
3062         if (max_stack)
3063                 *max_stack = header->max_stack;
3064         return header->code;
3065 }
3066
3067 /*
3068  * mono_method_header_get_locals:
3069  * @header: a MonoMethodHeader pointer
3070  * @num_locals: memory location for returning the number of local variables
3071  * @init_locals: memory location for returning the init_locals flag
3072  *
3073  * Method header accessor to retreive info about the local variables:
3074  * an array of local types, the number of locals and whether the locals
3075  * are supposed to be initialized to 0 on method entry
3076  *
3077  * Returns: pointer to an array of types of the local variables
3078  */
3079 MonoType**
3080 mono_method_header_get_locals (MonoMethodHeader *header, guint32* num_locals, gboolean *init_locals)
3081 {
3082         if (num_locals)
3083                 *num_locals = header->num_locals;
3084         if (init_locals)
3085                 *init_locals = header->init_locals;
3086         return header->locals;
3087 }
3088
3089 /*
3090  * mono_method_header_get_num_clauses:
3091  * @header: a MonoMethodHeader pointer
3092  *
3093  * Method header accessor to retreive the number of exception clauses.
3094  *
3095  * Returns: the number of exception clauses present
3096  */
3097 int
3098 mono_method_header_get_num_clauses (MonoMethodHeader *header)
3099 {
3100         return header->num_clauses;
3101 }
3102
3103 /*
3104  * mono_method_header_get_clauses:
3105  * @header: a MonoMethodHeader pointer
3106  * @method: MonoMethod the header belongs to
3107  * @iter: pointer to a iterator
3108  * @clause: pointer to a MonoExceptionClause structure which will be filled with the info
3109  *
3110  * Get the info about the exception clauses in the method. Set *iter to NULL to
3111  * initiate the iteration, then call the method repeatedly until it returns FALSE.
3112  * At each iteration, the structure pointed to by clause if filled with the
3113  * exception clause information.
3114  *
3115  * Returns: TRUE if clause was filled with info, FALSE if there are no more exception
3116  * clauses.
3117  */
3118 int
3119 mono_method_header_get_clauses (MonoMethodHeader *header, MonoMethod *method, gpointer *iter, MonoExceptionClause *clause)
3120 {
3121         MonoExceptionClause *sc;
3122         /* later we'll be able to use this interface to parse the clause info on demand,
3123          * without allocating anything.
3124          */
3125         if (!iter || !header->num_clauses)
3126                 return FALSE;
3127         if (!*iter) {
3128                 *iter = sc = header->clauses;
3129                 *clause = *sc;
3130                 return TRUE;
3131         }
3132         sc = *iter;
3133         sc++;
3134         if (sc < header->clauses + header->num_clauses) {
3135                 *iter = sc;
3136                 *clause = *sc;
3137                 return TRUE;
3138         }
3139         return FALSE;
3140 }
3141
3142 /**
3143  * mono_metadata_parse_field_type:
3144  * @m: metadata context to extract information from
3145  * @ptr: pointer to the field signature
3146  * @rptr: pointer updated to match the end of the decoded stream
3147  *
3148  * Parses the field signature, and returns the type information for it. 
3149  *
3150  * Returns: The MonoType that was extracted from @ptr.
3151  */
3152 MonoType *
3153 mono_metadata_parse_field_type (MonoImage *m, short field_flags, const char *ptr, const char **rptr)
3154 {
3155         return mono_metadata_parse_type (m, MONO_PARSE_FIELD, field_flags, ptr, rptr);
3156 }
3157
3158 /**
3159  * mono_metadata_parse_param:
3160  * @m: metadata context to extract information from
3161  * @ptr: pointer to the param signature
3162  * @rptr: pointer updated to match the end of the decoded stream
3163  *
3164  * Parses the param signature, and returns the type information for it. 
3165  *
3166  * Returns: The MonoType that was extracted from @ptr.
3167  */
3168 MonoType *
3169 mono_metadata_parse_param (MonoImage *m, const char *ptr, const char **rptr)
3170 {
3171         return mono_metadata_parse_type (m, MONO_PARSE_PARAM, 0, ptr, rptr);
3172 }
3173
3174 /*
3175  * mono_metadata_token_from_dor:
3176  * @dor_token: A TypeDefOrRef coded index
3177  *
3178  * dor_token is a TypeDefOrRef coded index: it contains either
3179  * a TypeDef, TypeRef or TypeSpec in the lower bits, and the upper
3180  * bits contain an index into the table.
3181  *
3182  * Returns: an expanded token
3183  */
3184 guint32
3185 mono_metadata_token_from_dor (guint32 dor_index)
3186 {
3187         guint32 table, idx;
3188
3189         table = dor_index & 0x03;
3190         idx = dor_index >> 2;
3191
3192         switch (table){
3193         case 0: /* TypeDef */
3194                 return MONO_TOKEN_TYPE_DEF | idx;
3195         case 1: /* TypeRef */
3196                 return MONO_TOKEN_TYPE_REF | idx;
3197         case 2: /* TypeSpec */
3198                 return MONO_TOKEN_TYPE_SPEC | idx;
3199         default:
3200                 g_assert_not_reached ();
3201         }
3202
3203         return 0;
3204 }
3205
3206 /*
3207  * We use this to pass context information to the row locator
3208  */
3209 typedef struct {
3210         int idx;                        /* The index that we are trying to locate */
3211         int col_idx;            /* The index in the row where idx may be stored */
3212         MonoTableInfo *t;       /* pointer to the table */
3213         guint32 result;
3214 } locator_t;
3215
3216 /*
3217  * How the row locator works.
3218  *
3219  *   Table A
3220  *   ___|___
3221  *   ___|___         Table B
3222  *   ___|___------>  _______
3223  *   ___|___         _______
3224  *   
3225  * A column in the rows of table A references an index in table B.
3226  * For example A may be the TYPEDEF table and B the METHODDEF table.
3227  * 
3228  * Given an index in table B we want to get the row in table A
3229  * where the column n references our index in B.
3230  *
3231  * In the locator_t structure:
3232  *      t is table A
3233  *      col_idx is the column number
3234  *      index is the index in table B
3235  *      result will be the index in table A
3236  *
3237  * Examples:
3238  * Table A              Table B         column (in table A)
3239  * TYPEDEF              METHODDEF   MONO_TYPEDEF_METHOD_LIST
3240  * TYPEDEF              FIELD           MONO_TYPEDEF_FIELD_LIST
3241  * PROPERTYMAP  PROPERTY        MONO_PROPERTY_MAP_PROPERTY_LIST
3242  * INTERFIMPL   TYPEDEF         MONO_INTERFACEIMPL_CLASS
3243  * METHODSEM    PROPERTY        ASSOCIATION (encoded index)
3244  *
3245  * Note that we still don't support encoded indexes.
3246  *
3247  */
3248 static int
3249 typedef_locator (const void *a, const void *b)
3250 {
3251         locator_t *loc = (locator_t *) a;
3252         const char *bb = (const char *) b;
3253         int typedef_index = (bb - loc->t->base) / loc->t->row_size;
3254         guint32 col, col_next;
3255
3256         col = mono_metadata_decode_row_col (loc->t, typedef_index, loc->col_idx);
3257
3258         if (loc->idx < col)
3259                 return -1;
3260
3261         /*
3262          * Need to check that the next row is valid.
3263          */
3264         if (typedef_index + 1 < loc->t->rows) {
3265                 col_next = mono_metadata_decode_row_col (loc->t, typedef_index + 1, loc->col_idx);
3266                 if (loc->idx >= col_next)
3267                         return 1;
3268
3269                 if (col == col_next)
3270                         return 1; 
3271         }
3272
3273         loc->result = typedef_index;
3274         
3275         return 0;
3276 }
3277
3278 static int
3279 table_locator (const void *a, const void *b)
3280 {
3281         locator_t *loc = (locator_t *) a;
3282         const char *bb = (const char *) b;
3283         guint32 table_index = (bb - loc->t->base) / loc->t->row_size;
3284         guint32 col;
3285         
3286         col = mono_metadata_decode_row_col (loc->t, table_index, loc->col_idx);
3287
3288         if (loc->idx == col) {
3289                 loc->result = table_index;
3290                 return 0;
3291         }
3292         if (loc->idx < col)
3293                 return -1;
3294         else 
3295                 return 1;
3296 }
3297
3298 static int
3299 declsec_locator (const void *a, const void *b)
3300 {
3301         locator_t *loc = (locator_t *) a;
3302         const char *bb = (const char *) b;
3303         guint32 table_index = (bb - loc->t->base) / loc->t->row_size;
3304         guint32 col;
3305
3306         col = mono_metadata_decode_row_col (loc->t, table_index, loc->col_idx);
3307
3308         if (loc->idx == col) {
3309                 loc->result = table_index;
3310                 return 0;
3311         }
3312         if (loc->idx < col)
3313                 return -1;
3314         else
3315                 return 1;
3316 }
3317
3318 /**
3319  * search_ptr_table:
3320  *
3321  *  Return the 1-based row index in TABLE, which must be one of the *Ptr tables, 
3322  * which contains IDX.
3323  */
3324 static guint32
3325 search_ptr_table (MonoImage *image, int table, int idx)
3326 {
3327         MonoTableInfo *ptrdef = &image->tables [table];
3328         int i;
3329
3330         /* Use a linear search to find our index in the table */
3331         for (i = 0; i < ptrdef->rows; i ++)
3332                 /* All the Ptr tables have the same structure */
3333                 if (mono_metadata_decode_row_col (ptrdef, i, 0) == idx)
3334                         break;
3335
3336         if (i < ptrdef->rows)
3337                 return i + 1;
3338         else
3339                 return idx;
3340 }
3341
3342 /**
3343  * mono_metadata_typedef_from_field:
3344  * @meta: metadata context
3345  * @index: FieldDef token
3346  *
3347  * Returns: the 1-based index into the TypeDef table of the type that
3348  * declared the field described by @index, or 0 if not found.
3349  */
3350 guint32
3351 mono_metadata_typedef_from_field (MonoImage *meta, guint32 index)
3352 {
3353         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_TYPEDEF];
3354         locator_t loc;
3355
3356         if (!tdef->base)
3357                 return 0;
3358
3359         loc.idx = mono_metadata_token_index (index);
3360         loc.col_idx = MONO_TYPEDEF_FIELD_LIST;
3361         loc.t = tdef;
3362
3363         if (meta->uncompressed_metadata)
3364                 loc.idx = search_ptr_table (meta, MONO_TABLE_FIELD_POINTER, loc.idx);
3365
3366         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, typedef_locator))
3367                 g_assert_not_reached ();
3368
3369         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3370         return loc.result + 1;
3371 }
3372
3373 /*
3374  * mono_metadata_typedef_from_method:
3375  * @meta: metadata context
3376  * @index: MethodDef token
3377  *
3378  * Returns: the 1-based index into the TypeDef table of the type that
3379  * declared the method described by @index.  0 if not found.
3380  */
3381 guint32
3382 mono_metadata_typedef_from_method (MonoImage *meta, guint32 index)
3383 {
3384         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_TYPEDEF];
3385         locator_t loc;
3386         
3387         if (!tdef->base)
3388                 return 0;
3389
3390         loc.idx = mono_metadata_token_index (index);
3391         loc.col_idx = MONO_TYPEDEF_METHOD_LIST;
3392         loc.t = tdef;
3393
3394         if (meta->uncompressed_metadata)
3395                 loc.idx = search_ptr_table (meta, MONO_TABLE_METHOD_POINTER, loc.idx);
3396
3397         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, typedef_locator))
3398                 g_assert_not_reached ();
3399
3400         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3401         return loc.result + 1;
3402 }
3403
3404 /*
3405  * mono_metadata_interfaces_from_typedef_full:
3406  * @meta: metadata context
3407  * @index: typedef token
3408  * 
3409  * The array of interfaces that the @index typedef token implements is returned in
3410  * @interfaces. The number of elemnts in the array is returned in @count.
3411  *
3412  * LOCKING: Assumes the loader lock is held.
3413  *
3414  * Returns: TRUE on success, FALSE on failure.
3415  */
3416 gboolean
3417 mono_metadata_interfaces_from_typedef_full (MonoImage *meta, guint32 index, MonoClass ***interfaces, guint *count, MonoGenericContext *context)
3418 {
3419         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_INTERFACEIMPL];
3420         locator_t loc;
3421         guint32 start, pos;
3422         guint32 cols [MONO_INTERFACEIMPL_SIZE];
3423         MonoClass **result;
3424
3425         *interfaces = NULL;
3426         *count = 0;
3427
3428         if (!tdef->base)
3429                 return TRUE;
3430
3431         loc.idx = mono_metadata_token_index (index);
3432         loc.col_idx = MONO_INTERFACEIMPL_CLASS;
3433         loc.t = tdef;
3434
3435         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3436                 return TRUE;
3437
3438         start = loc.result;
3439         /*
3440          * We may end up in the middle of the rows... 
3441          */
3442         while (start > 0) {
3443                 if (loc.idx == mono_metadata_decode_row_col (tdef, start - 1, MONO_INTERFACEIMPL_CLASS))
3444                         start--;
3445                 else
3446                         break;
3447         }
3448         pos = start;
3449         while (pos < tdef->rows) {
3450                 mono_metadata_decode_row (tdef, pos, cols, MONO_INTERFACEIMPL_SIZE);
3451                 if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
3452                         break;
3453                 ++pos;
3454         }
3455
3456         result = mono_image_alloc0 (meta, sizeof (MonoClass*) * (pos - start));
3457
3458         pos = start;
3459         while (pos < tdef->rows) {
3460                 MonoClass *iface;
3461                 
3462                 mono_metadata_decode_row (tdef, pos, cols, MONO_INTERFACEIMPL_SIZE);
3463                 if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
3464                         break;
3465                 iface = mono_class_get_full (
3466                         meta, mono_metadata_token_from_dor (cols [MONO_INTERFACEIMPL_INTERFACE]), context);
3467                 if (iface == NULL)
3468                         return FALSE;
3469                 result [pos - start] = iface;
3470                 ++pos;
3471         }
3472         *count = pos - start;
3473         *interfaces = result;
3474         return TRUE;
3475 }
3476
3477 MonoClass**
3478 mono_metadata_interfaces_from_typedef (MonoImage *meta, guint32 index, guint *count)
3479 {
3480         MonoClass **interfaces;
3481         gboolean rv;
3482
3483         mono_loader_lock ();
3484         rv = mono_metadata_interfaces_from_typedef_full (meta, index, &interfaces, count, NULL);
3485         mono_loader_unlock ();
3486         if (rv)
3487                 return interfaces;
3488         else
3489                 return NULL;
3490 }
3491
3492 /*
3493  * mono_metadata_nested_in_typedef:
3494  * @meta: metadata context
3495  * @index: typedef token
3496  * 
3497  * Returns: the 1-based index into the TypeDef table of the type
3498  * where the type described by @index is nested.
3499  * Retruns 0 if @index describes a non-nested type.
3500  */
3501 guint32
3502 mono_metadata_nested_in_typedef (MonoImage *meta, guint32 index)
3503 {
3504         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_NESTEDCLASS];
3505         locator_t loc;
3506         
3507         if (!tdef->base)
3508                 return 0;
3509
3510         loc.idx = mono_metadata_token_index (index);
3511         loc.col_idx = MONO_NESTED_CLASS_NESTED;
3512         loc.t = tdef;
3513
3514         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3515                 return 0;
3516
3517         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3518         return mono_metadata_decode_row_col (tdef, loc.result, MONO_NESTED_CLASS_ENCLOSING) | MONO_TOKEN_TYPE_DEF;
3519 }
3520
3521 /*
3522  * mono_metadata_nesting_typedef:
3523  * @meta: metadata context
3524  * @index: typedef token
3525  * 
3526  * Returns: the 1-based index into the TypeDef table of the first type
3527  * that is nested inside the type described by @index. The search starts at
3528  * @start_index.  returns 0 if no such type is found.
3529  */
3530 guint32
3531 mono_metadata_nesting_typedef (MonoImage *meta, guint32 index, guint32 start_index)
3532 {
3533         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_NESTEDCLASS];
3534         guint32 start;
3535         guint32 class_index = mono_metadata_token_index (index);
3536         
3537         if (!tdef->base)
3538                 return 0;
3539
3540         start = start_index;
3541
3542         while (start <= tdef->rows) {
3543                 if (class_index == mono_metadata_decode_row_col (tdef, start - 1, MONO_NESTED_CLASS_ENCLOSING))
3544                         break;
3545                 else
3546                         start++;
3547         }
3548
3549         if (start > tdef->rows)
3550                 return 0;
3551         else
3552                 return start;
3553 }
3554
3555 /*
3556  * mono_metadata_packing_from_typedef:
3557  * @meta: metadata context
3558  * @index: token representing a type
3559  * 
3560  * Returns: the info stored in the ClassLAyout table for the given typedef token
3561  * into the @packing and @size pointers.
3562  * Returns 0 if the info is not found.
3563  */
3564 guint32
3565 mono_metadata_packing_from_typedef (MonoImage *meta, guint32 index, guint32 *packing, guint32 *size)
3566 {
3567         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_CLASSLAYOUT];
3568         locator_t loc;
3569         guint32 cols [MONO_CLASS_LAYOUT_SIZE];
3570         
3571         if (!tdef->base)
3572                 return 0;
3573
3574         loc.idx = mono_metadata_token_index (index);
3575         loc.col_idx = MONO_CLASS_LAYOUT_PARENT;
3576         loc.t = tdef;
3577
3578         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3579                 return 0;
3580
3581         mono_metadata_decode_row (tdef, loc.result, cols, MONO_CLASS_LAYOUT_SIZE);
3582         if (packing)
3583                 *packing = cols [MONO_CLASS_LAYOUT_PACKING_SIZE];
3584         if (size)
3585                 *size = cols [MONO_CLASS_LAYOUT_CLASS_SIZE];
3586
3587         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3588         return loc.result + 1;
3589 }
3590
3591 /*
3592  * mono_metadata_custom_attrs_from_index:
3593  * @meta: metadata context
3594  * @index: token representing the parent
3595  * 
3596  * Returns: the 1-based index into the CustomAttribute table of the first 
3597  * attribute which belongs to the metadata object described by @index.
3598  * Returns 0 if no such attribute is found.
3599  */
3600 guint32
3601 mono_metadata_custom_attrs_from_index (MonoImage *meta, guint32 index)
3602 {
3603         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_CUSTOMATTRIBUTE];
3604         locator_t loc;
3605         
3606         if (!tdef->base)
3607                 return 0;
3608
3609         loc.idx = index;
3610         loc.col_idx = MONO_CUSTOM_ATTR_PARENT;
3611         loc.t = tdef;
3612
3613         /* FIXME: Index translation */
3614
3615         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3616                 return 0;
3617
3618         /* Find the first entry by searching backwards */
3619         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_CUSTOM_ATTR_PARENT) == index))
3620                 loc.result --;
3621
3622         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
3623         return loc.result + 1;
3624 }
3625
3626 /*
3627  * mono_metadata_declsec_from_index:
3628  * @meta: metadata context
3629  * @index: token representing the parent
3630  * 
3631  * Returns: the 0-based index into the DeclarativeSecurity table of the first 
3632  * attribute which belongs to the metadata object described by @index.
3633  * Returns -1 if no such attribute is found.
3634  */
3635 guint32
3636 mono_metadata_declsec_from_index (MonoImage *meta, guint32 index)
3637 {
3638         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_DECLSECURITY];
3639         locator_t loc;
3640
3641         if (!tdef->base)
3642                 return -1;
3643
3644         loc.idx = index;
3645         loc.col_idx = MONO_DECL_SECURITY_PARENT;
3646         loc.t = tdef;
3647
3648         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, declsec_locator))
3649                 return -1;
3650
3651         /* Find the first entry by searching backwards */
3652         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_DECL_SECURITY_PARENT) == index))
3653                 loc.result --;
3654
3655         return loc.result;
3656 }
3657
3658 #ifdef DEBUG
3659 static void
3660 mono_backtrace (int limit)
3661 {
3662         void *array[limit];
3663         char **names;
3664         int i;
3665         backtrace (array, limit);
3666         names = backtrace_symbols (array, limit);
3667         for (i =0; i < limit; ++i) {
3668                 g_print ("\t%s\n", names [i]);
3669         }
3670         g_free (names);
3671 }
3672 #endif
3673
3674 #ifndef __GNUC__
3675 /*#define __alignof__(a) sizeof(a)*/
3676 #define __alignof__(type) G_STRUCT_OFFSET(struct { char c; type x; }, x)
3677 #endif
3678
3679 /*
3680  * mono_type_size:
3681  * @t: the type to return the size of
3682  *
3683  * Returns: the number of bytes required to hold an instance of this
3684  * type in memory
3685  */
3686 int
3687 mono_type_size (MonoType *t, int *align)
3688 {
3689         if (!t) {
3690                 *align = 1;
3691                 return 0;
3692         }
3693         if (t->byref) {
3694                 *align = __alignof__(gpointer);
3695                 return sizeof (gpointer);
3696         }
3697
3698         switch (t->type){
3699         case MONO_TYPE_VOID:
3700                 *align = 1;
3701                 return 0;
3702         case MONO_TYPE_BOOLEAN:
3703                 *align = __alignof__(gint8);
3704                 return 1;
3705         case MONO_TYPE_I1:
3706         case MONO_TYPE_U1:
3707                 *align = __alignof__(gint8);
3708                 return 1;
3709         case MONO_TYPE_CHAR:
3710         case MONO_TYPE_I2:
3711         case MONO_TYPE_U2:
3712                 *align = __alignof__(gint16);
3713                 return 2;               
3714         case MONO_TYPE_I4:
3715         case MONO_TYPE_U4:
3716                 *align = __alignof__(gint32);
3717                 return 4;
3718         case MONO_TYPE_R4:
3719                 *align = __alignof__(float);
3720                 return 4;
3721         case MONO_TYPE_I8:
3722         case MONO_TYPE_U8:
3723                 *align = __alignof__(gint64);
3724                 return 8;               
3725         case MONO_TYPE_R8:
3726                 *align = __alignof__(double);
3727                 return 8;               
3728         case MONO_TYPE_I:
3729         case MONO_TYPE_U:
3730                 *align = __alignof__(gpointer);
3731                 return sizeof (gpointer);
3732         case MONO_TYPE_STRING:
3733                 *align = __alignof__(gpointer);
3734                 return sizeof (gpointer);
3735         case MONO_TYPE_OBJECT:
3736                 *align = __alignof__(gpointer);
3737                 return sizeof (gpointer);
3738         case MONO_TYPE_VALUETYPE: {
3739                 if (t->data.klass->enumtype)
3740                         return mono_type_size (mono_class_enum_basetype (t->data.klass), align);
3741                 else
3742                         return mono_class_value_size (t->data.klass, (guint32*)align);
3743         }
3744         case MONO_TYPE_CLASS:
3745         case MONO_TYPE_SZARRAY:
3746         case MONO_TYPE_PTR:
3747         case MONO_TYPE_FNPTR:
3748         case MONO_TYPE_ARRAY:
3749                 *align = __alignof__(gpointer);
3750                 return sizeof (gpointer);
3751         case MONO_TYPE_TYPEDBYREF:
3752                 return mono_class_value_size (mono_defaults.typed_reference_class, (guint32*)align);
3753         case MONO_TYPE_GENERICINST: {
3754                 MonoGenericClass *gclass = t->data.generic_class;
3755                 MonoClass *container_class = gclass->container_class;
3756
3757                 // g_assert (!gclass->inst->is_open);
3758
3759                 if (container_class->valuetype) {
3760                         if (container_class->enumtype)
3761                                 return mono_type_size (mono_class_enum_basetype (container_class), align);
3762                         else
3763                                 return mono_class_value_size (mono_class_from_mono_type (t), (guint32*)align);
3764                 } else {
3765                         *align = __alignof__(gpointer);
3766                         return sizeof (gpointer);
3767                 }
3768         }
3769         case MONO_TYPE_VAR:
3770         case MONO_TYPE_MVAR:
3771                 /* FIXME: Martin, this is wrong. */
3772                 *align = __alignof__(gpointer);
3773                 return sizeof (gpointer);
3774         default:
3775                 g_error ("mono_type_size: type 0x%02x unknown", t->type);
3776         }
3777         return 0;
3778 }
3779
3780 /*
3781  * mono_type_stack_size:
3782  * @t: the type to return the size it uses on the stack
3783  *
3784  * Returns: the number of bytes required to hold an instance of this
3785  * type on the runtime stack
3786  */
3787 int
3788 mono_type_stack_size (MonoType *t, int *align)
3789 {
3790         return mono_type_stack_size_internal (t, align, FALSE);
3791 }
3792
3793 int
3794 mono_type_stack_size_internal (MonoType *t, int *align, gboolean allow_open)
3795 {
3796         int tmp;
3797 #if SIZEOF_VOID_P == SIZEOF_REGISTER
3798         int stack_slot_size = sizeof (gpointer);
3799         int stack_slot_align = __alignof__ (gpointer);
3800 #elif SIZEOF_VOID_P < SIZEOF_REGISTER
3801         int stack_slot_size = SIZEOF_REGISTER;
3802         int stack_slot_align = SIZEOF_REGISTER;
3803 #endif
3804
3805         g_assert (t != NULL);
3806
3807         if (!align)
3808                 align = &tmp;
3809
3810         if (t->byref) {
3811                 *align = stack_slot_align;
3812                 return stack_slot_size;
3813         }
3814
3815         switch (t->type){
3816         case MONO_TYPE_BOOLEAN:
3817         case MONO_TYPE_CHAR:
3818         case MONO_TYPE_I1:
3819         case MONO_TYPE_U1:
3820         case MONO_TYPE_I2:
3821         case MONO_TYPE_U2:
3822         case MONO_TYPE_I4:
3823         case MONO_TYPE_U4:
3824         case MONO_TYPE_I:
3825         case MONO_TYPE_U:
3826         case MONO_TYPE_STRING:
3827         case MONO_TYPE_OBJECT:
3828         case MONO_TYPE_CLASS:
3829         case MONO_TYPE_SZARRAY:
3830         case MONO_TYPE_PTR:
3831         case MONO_TYPE_FNPTR:
3832         case MONO_TYPE_ARRAY:
3833                 *align = stack_slot_align;
3834                 return stack_slot_size;
3835         case MONO_TYPE_VAR:
3836         case MONO_TYPE_MVAR:
3837                 g_assert (allow_open);
3838                 *align = stack_slot_align;
3839                 return stack_slot_size;
3840         case MONO_TYPE_TYPEDBYREF:
3841                 *align = stack_slot_align;
3842                 return stack_slot_size * 3;
3843         case MONO_TYPE_R4:
3844                 *align = __alignof__(float);
3845                 return sizeof (float);          
3846         case MONO_TYPE_I8:
3847         case MONO_TYPE_U8:
3848                 *align = __alignof__(gint64);
3849                 return sizeof (gint64);         
3850         case MONO_TYPE_R8:
3851                 *align = __alignof__(double);
3852                 return sizeof (double);
3853         case MONO_TYPE_VALUETYPE: {
3854                 guint32 size;
3855
3856                 if (t->data.klass->enumtype)
3857                         return mono_type_stack_size_internal (mono_class_enum_basetype (t->data.klass), align, allow_open);
3858                 else {
3859                         size = mono_class_value_size (t->data.klass, (guint32*)align);
3860
3861                         *align = *align + stack_slot_align - 1;
3862                         *align &= ~(stack_slot_align - 1);
3863
3864                         size += stack_slot_size - 1;
3865                         size &= ~(stack_slot_size - 1);
3866
3867                         return size;
3868                 }
3869         }
3870         case MONO_TYPE_GENERICINST: {
3871                 MonoGenericClass *gclass = t->data.generic_class;
3872                 MonoClass *container_class = gclass->container_class;
3873
3874                 if (!allow_open)
3875                         g_assert (!gclass->context.class_inst->is_open);
3876
3877                 if (container_class->valuetype) {
3878                         if (container_class->enumtype)
3879                                 return mono_type_stack_size_internal (mono_class_enum_basetype (container_class), align, allow_open);
3880                         else {
3881                                 guint32 size = mono_class_value_size (mono_class_from_mono_type (t), (guint32*)align);
3882
3883                                 *align = *align + stack_slot_align - 1;
3884                                 *align &= ~(stack_slot_align - 1);
3885
3886                                 size += stack_slot_size - 1;
3887                                 size &= ~(stack_slot_size - 1);
3888
3889                                 return size;
3890                         }
3891                 } else {
3892                         *align = stack_slot_align;
3893                         return stack_slot_size;
3894                 }
3895         }
3896         default:
3897                 g_error ("type 0x%02x unknown", t->type);
3898         }
3899         return 0;
3900 }
3901
3902 gboolean
3903 mono_type_generic_inst_is_valuetype (MonoType *type)
3904 {
3905         g_assert (type->type == MONO_TYPE_GENERICINST);
3906         return type->data.generic_class->container_class->valuetype;
3907 }
3908
3909 gboolean
3910 mono_metadata_generic_class_is_valuetype (MonoGenericClass *gclass)
3911 {
3912         return gclass->container_class->valuetype;
3913 }
3914
3915 static gboolean
3916 _mono_metadata_generic_class_equal (const MonoGenericClass *g1, const MonoGenericClass *g2, gboolean signature_only)
3917 {
3918         MonoGenericInst *i1 = g1->context.class_inst;
3919         MonoGenericInst *i2 = g2->context.class_inst;
3920
3921         if (g1->is_dynamic != g2->is_dynamic)
3922                 return FALSE;
3923         if (!mono_metadata_class_equal (g1->container_class, g2->container_class, signature_only))
3924                 return FALSE;
3925         if (!mono_generic_inst_equal_full (i1, i2, signature_only))
3926                 return FALSE;
3927         return g1->is_tb_open == g2->is_tb_open;
3928 }
3929
3930 static gboolean
3931 _mono_metadata_generic_class_container_equal (const MonoGenericClass *g1, MonoClass *c2, gboolean signature_only)
3932 {
3933         MonoGenericInst *i1 = g1->context.class_inst;
3934         MonoGenericInst *i2 = c2->generic_container->context.class_inst;
3935
3936         if (!mono_metadata_class_equal (g1->container_class, c2, signature_only))
3937                 return FALSE;
3938         if (!mono_generic_inst_equal_full (i1, i2, signature_only))
3939                 return FALSE;
3940         return !g1->is_tb_open;
3941 }
3942
3943 guint
3944 mono_metadata_generic_context_hash (const MonoGenericContext *context)
3945 {
3946         /* FIXME: check if this seed is good enough */
3947         guint hash = 0xc01dfee7;
3948         if (context->class_inst)
3949                 hash = ((hash << 5) - hash) ^ mono_metadata_generic_inst_hash (context->class_inst);
3950         if (context->method_inst)
3951                 hash = ((hash << 5) - hash) ^ mono_metadata_generic_inst_hash (context->method_inst);
3952         return hash;
3953 }
3954
3955 gboolean
3956 mono_metadata_generic_context_equal (const MonoGenericContext *g1, const MonoGenericContext *g2)
3957 {
3958         return g1->class_inst == g2->class_inst && g1->method_inst == g2->method_inst;
3959 }
3960
3961 /*
3962  * mono_metadata_type_hash:
3963  * @t1: a type
3964  *
3965  * Computes an hash value for @t1 to be used in GHashTable.
3966  */
3967 guint
3968 mono_metadata_type_hash (MonoType *t1)
3969 {
3970         guint hash = t1->type;
3971
3972         hash |= t1->byref << 6; /* do not collide with t1->type values */
3973         switch (t1->type) {
3974         case MONO_TYPE_VALUETYPE:
3975         case MONO_TYPE_CLASS:
3976         case MONO_TYPE_SZARRAY:
3977                 /* check if the distribution is good enough */
3978                 return ((hash << 5) - hash) ^ g_str_hash (t1->data.klass->name);
3979         case MONO_TYPE_PTR:
3980                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (t1->data.type);
3981         case MONO_TYPE_ARRAY:
3982                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (&t1->data.array->eklass->byval_arg);
3983         case MONO_TYPE_GENERICINST:
3984                 return ((hash << 5) - hash) ^ mono_generic_class_hash (t1->data.generic_class);
3985         }
3986         return hash;
3987 }
3988
3989 static gboolean
3990 mono_metadata_generic_param_equal (MonoGenericParam *p1, MonoGenericParam *p2, gboolean signature_only)
3991 {
3992         if (p1 == p2)
3993                 return TRUE;
3994         if (mono_generic_param_num (p1) != mono_generic_param_num (p2))
3995                 return FALSE;
3996
3997         /*
3998          * We have to compare the image as well because if we didn't,
3999          * the generic_inst_cache lookup wouldn't care about the image
4000          * of generic params, so what could happen is that a generic
4001          * inst with params from image A is put into the cache, then
4002          * image B gets that generic inst from the cache, image A is
4003          * unloaded, so the inst is deleted, but image B still retains
4004          * a pointer to it.
4005          *
4006          * The AOT runtime doesn't set the image when it's decoding
4007          * types, so we only compare it when the owner is NULL.
4008          */
4009         if (mono_generic_param_owner (p1) == mono_generic_param_owner (p2) &&
4010             (mono_generic_param_owner (p1) || p1->image == p2->image))
4011                 return TRUE;
4012
4013         /*
4014          * If `signature_only' is true, we're comparing two (method) signatures.
4015          * In this case, the owner of two type parameters doesn't need to match.
4016          */
4017
4018         return signature_only;
4019 }
4020
4021 static gboolean
4022 mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only)
4023 {
4024         if (c1 == c2)
4025                 return TRUE;
4026         if (c1->generic_class && c2->generic_class)
4027                 return _mono_metadata_generic_class_equal (c1->generic_class, c2->generic_class, signature_only);
4028         if (c1->generic_class && c2->generic_container)
4029                 return _mono_metadata_generic_class_container_equal (c1->generic_class, c2, signature_only);
4030         if (c1->generic_container && c2->generic_class)
4031                 return _mono_metadata_generic_class_container_equal (c2->generic_class, c1, signature_only);
4032         if ((c1->byval_arg.type == MONO_TYPE_VAR) && (c2->byval_arg.type == MONO_TYPE_VAR))
4033                 return mono_metadata_generic_param_equal (
4034                         c1->byval_arg.data.generic_param, c2->byval_arg.data.generic_param, signature_only);
4035         if ((c1->byval_arg.type == MONO_TYPE_MVAR) && (c2->byval_arg.type == MONO_TYPE_MVAR))
4036                 return mono_metadata_generic_param_equal (
4037                         c1->byval_arg.data.generic_param, c2->byval_arg.data.generic_param, signature_only);
4038         if (signature_only &&
4039             (c1->byval_arg.type == MONO_TYPE_SZARRAY) && (c2->byval_arg.type == MONO_TYPE_SZARRAY))
4040                 return mono_metadata_class_equal (c1->byval_arg.data.klass, c2->byval_arg.data.klass, signature_only);
4041         return FALSE;
4042 }
4043
4044 static gboolean
4045 mono_metadata_fnptr_equal (MonoMethodSignature *s1, MonoMethodSignature *s2, gboolean signature_only)
4046 {
4047         gpointer iter1 = 0, iter2 = 0;
4048
4049         if (s1 == s2)
4050                 return TRUE;
4051         if (s1->call_convention != s2->call_convention)
4052                 return FALSE;
4053         if (s1->sentinelpos != s2->sentinelpos)
4054                 return FALSE;
4055         if (s1->hasthis != s2->hasthis)
4056                 return FALSE;
4057         if (s1->explicit_this != s2->explicit_this)
4058                 return FALSE;
4059         if (! do_mono_metadata_type_equal (s1->ret, s2->ret, signature_only))
4060                 return FALSE;
4061         if (s1->param_count != s2->param_count)
4062                 return FALSE;
4063
4064         while (TRUE) {
4065                 MonoType *t1 = mono_signature_get_params (s1, &iter1);
4066                 MonoType *t2 = mono_signature_get_params (s2, &iter2);
4067
4068                 if (t1 == NULL || t2 == NULL)
4069                         return (t1 == t2);
4070                 if (! do_mono_metadata_type_equal (t1, t2, signature_only))
4071                         return FALSE;
4072         }
4073 }
4074
4075 /*
4076  * mono_metadata_type_equal:
4077  * @t1: a type
4078  * @t2: another type
4079  *
4080  * Determine if @t1 and @t2 represent the same type.
4081  * Returns: #TRUE if @t1 and @t2 are equal.
4082  */
4083 static gboolean
4084 do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only)
4085 {
4086         if (t1->type != t2->type || t1->byref != t2->byref)
4087                 return FALSE;
4088
4089         switch (t1->type) {
4090         case MONO_TYPE_VOID:
4091         case MONO_TYPE_BOOLEAN:
4092         case MONO_TYPE_CHAR:
4093         case MONO_TYPE_I1:
4094         case MONO_TYPE_U1:
4095         case MONO_TYPE_I2:
4096         case MONO_TYPE_U2:
4097         case MONO_TYPE_I4:
4098         case MONO_TYPE_U4:
4099         case MONO_TYPE_I8:
4100         case MONO_TYPE_U8:
4101         case MONO_TYPE_R4:
4102         case MONO_TYPE_R8:
4103         case MONO_TYPE_STRING:
4104         case MONO_TYPE_I:
4105         case MONO_TYPE_U:
4106         case MONO_TYPE_OBJECT:
4107         case MONO_TYPE_TYPEDBYREF:
4108                 return TRUE;
4109         case MONO_TYPE_VALUETYPE:
4110         case MONO_TYPE_CLASS:
4111         case MONO_TYPE_SZARRAY:
4112                 return mono_metadata_class_equal (t1->data.klass, t2->data.klass, signature_only);
4113         case MONO_TYPE_PTR:
4114                 return do_mono_metadata_type_equal (t1->data.type, t2->data.type, signature_only);
4115         case MONO_TYPE_ARRAY:
4116                 if (t1->data.array->rank != t2->data.array->rank)
4117                         return FALSE;
4118                 return mono_metadata_class_equal (t1->data.array->eklass, t2->data.array->eklass, signature_only);
4119         case MONO_TYPE_GENERICINST:
4120                 return _mono_metadata_generic_class_equal (
4121                         t1->data.generic_class, t2->data.generic_class, signature_only);
4122         case MONO_TYPE_VAR:
4123                 return mono_metadata_generic_param_equal (
4124                         t1->data.generic_param, t2->data.generic_param, signature_only);
4125         case MONO_TYPE_MVAR:
4126                 return mono_metadata_generic_param_equal (
4127                         t1->data.generic_param, t2->data.generic_param, signature_only);
4128         case MONO_TYPE_FNPTR:
4129                 return mono_metadata_fnptr_equal (t1->data.method, t2->data.method, signature_only);
4130         default:
4131                 g_error ("implement type compare for %0x!", t1->type);
4132                 return FALSE;
4133         }
4134
4135         return FALSE;
4136 }
4137
4138 gboolean
4139 mono_metadata_type_equal (MonoType *t1, MonoType *t2)
4140 {
4141         return do_mono_metadata_type_equal (t1, t2, FALSE);
4142 }
4143
4144 /**
4145  * mono_metadata_type_equal_full:
4146  * @t1: a type
4147  * @t2: another type
4148  * @signature_only: if signature only comparison should be made
4149  *
4150  * Determine if @t1 and @t2 are signature compatible if @signature_only is #TRUE, otherwise
4151  * behaves the same way as mono_metadata_type_equal.
4152  * The function mono_metadata_type_equal(a, b) is just a shortcut for mono_metadata_type_equal_full(a, b, FALSE).
4153  * Returns: #TRUE if @t1 and @t2 are equal taking @signature_only into account.
4154  */
4155 gboolean
4156 mono_metadata_type_equal_full (MonoType *t1, MonoType *t2, gboolean signature_only)
4157 {
4158         return do_mono_metadata_type_equal (t1, t2, signature_only);
4159 }
4160
4161 /**
4162  * mono_metadata_signature_equal:
4163  * @sig1: a signature
4164  * @sig2: another signature
4165  *
4166  * Determine if @sig1 and @sig2 represent the same signature, with the
4167  * same number of arguments and the same types.
4168  * Returns: #TRUE if @sig1 and @sig2 are equal.
4169  */
4170 gboolean
4171 mono_metadata_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
4172 {
4173         int i;
4174
4175         if (sig1->hasthis != sig2->hasthis || sig1->param_count != sig2->param_count)
4176                 return FALSE;
4177
4178         if (sig1->generic_param_count != sig2->generic_param_count)
4179                 return FALSE;
4180
4181         /*
4182          * We're just comparing the signatures of two methods here:
4183          *
4184          * If we have two generic methods `void Foo<U> (U u)' and `void Bar<V> (V v)',
4185          * U and V are equal here.
4186          *
4187          * That's what the `signature_only' argument of do_mono_metadata_type_equal() is for.
4188          */
4189
4190         for (i = 0; i < sig1->param_count; i++) { 
4191                 MonoType *p1 = sig1->params[i];
4192                 MonoType *p2 = sig2->params[i];
4193                 
4194                 /* if (p1->attrs != p2->attrs)
4195                         return FALSE;
4196                 */
4197                 if (!do_mono_metadata_type_equal (p1, p2, TRUE))
4198                         return FALSE;
4199         }
4200
4201         if (!do_mono_metadata_type_equal (sig1->ret, sig2->ret, TRUE))
4202                 return FALSE;
4203         return TRUE;
4204 }
4205
4206 /**
4207  * mono_metadata_type_dup:
4208  * @image: image to alloc memory from
4209  * @original: type to duplicate
4210  *
4211  * Returns: copy of type allocated from the image's mempool (or from the heap, if @image is null).
4212  */
4213 MonoType *
4214 mono_metadata_type_dup (MonoImage *image, const MonoType *o)
4215 {
4216         MonoType *r = NULL;
4217         int sizeof_o = sizeof (MonoType);
4218         if (o->num_mods)
4219                 sizeof_o += (o->num_mods - MONO_ZERO_LEN_ARRAY) * sizeof (MonoCustomMod);
4220
4221         r = image ? mono_image_alloc0 (image, sizeof_o) : g_malloc (sizeof_o);
4222
4223         memcpy (r, o, sizeof_o);
4224
4225         if (o->type == MONO_TYPE_PTR) {
4226                 r->data.type = mono_metadata_type_dup (image, o->data.type);
4227         } else if (o->type == MONO_TYPE_ARRAY) {
4228                 r->data.array = mono_dup_array_type (image, o->data.array);
4229         } else if (o->type == MONO_TYPE_FNPTR) {
4230                 /*FIXME the dup'ed signature is leaked mono_metadata_free_type*/
4231                 r->data.method = mono_metadata_signature_deep_dup (image, o->data.method);
4232         }
4233         return r;
4234 }
4235
4236 guint
4237 mono_signature_hash (MonoMethodSignature *sig)
4238 {
4239         guint i, res = sig->ret->type;
4240
4241         for (i = 0; i < sig->param_count; i++)
4242                 res = (res << 5) - res + mono_type_hash (sig->params[i]);
4243
4244         return res;
4245 }
4246
4247 /*
4248  * mono_metadata_encode_value:
4249  * @value: value to encode
4250  * @buf: buffer where to write the compressed representation
4251  * @endbuf: pointer updated to point at the end of the encoded output
4252  *
4253  * Encodes the value @value in the compressed representation used
4254  * in metadata and stores the result in @buf. @buf needs to be big
4255  * enough to hold the data (4 bytes).
4256  */
4257 void
4258 mono_metadata_encode_value (guint32 value, char *buf, char **endbuf)
4259 {
4260         char *p = buf;
4261         
4262         if (value < 0x80)
4263                 *p++ = value;
4264         else if (value < 0x4000) {
4265                 p [0] = 0x80 | (value >> 8);
4266                 p [1] = value & 0xff;
4267                 p += 2;
4268         } else {
4269                 p [0] = (value >> 24) | 0xc0;
4270                 p [1] = (value >> 16) & 0xff;
4271                 p [2] = (value >> 8) & 0xff;
4272                 p [3] = value & 0xff;
4273                 p += 4;
4274         }
4275         if (endbuf)
4276                 *endbuf = p;
4277 }
4278
4279 /*
4280  * mono_metadata_field_info:
4281  * @meta: the Image the field is defined in
4282  * @index: the index in the field table representing the field
4283  * @offset: a pointer to an integer where to store the offset that 
4284  * may have been specified for the field in a FieldLayout table
4285  * @rva: a pointer to the RVA of the field data in the image that
4286  * may have been defined in a FieldRVA table
4287  * @marshal_spec: a pointer to the marshal spec that may have been 
4288  * defined for the field in a FieldMarshal table.
4289  *
4290  * Gather info for field @index that may have been defined in the FieldLayout, 
4291  * FieldRVA and FieldMarshal tables.
4292  * Either of offset, rva and marshal_spec can be NULL if you're not interested 
4293  * in the data.
4294  */
4295 void
4296 mono_metadata_field_info (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
4297                           MonoMarshalSpec **marshal_spec)
4298 {
4299         mono_metadata_field_info_full (meta, index, offset, rva, marshal_spec, FALSE);
4300 }
4301
4302 void
4303 mono_metadata_field_info_with_mempool (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
4304                           MonoMarshalSpec **marshal_spec)
4305 {
4306         mono_metadata_field_info_full (meta, index, offset, rva, marshal_spec, TRUE);
4307 }
4308
4309 static void
4310 mono_metadata_field_info_full (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
4311                                        MonoMarshalSpec **marshal_spec, gboolean alloc_from_image)
4312 {
4313         MonoTableInfo *tdef;
4314         locator_t loc;
4315
4316         loc.idx = index + 1;
4317         if (meta->uncompressed_metadata)
4318                 loc.idx = search_ptr_table (meta, MONO_TABLE_FIELD_POINTER, loc.idx);
4319
4320         if (offset) {
4321                 tdef = &meta->tables [MONO_TABLE_FIELDLAYOUT];
4322
4323                 loc.col_idx = MONO_FIELD_LAYOUT_FIELD;
4324                 loc.t = tdef;
4325
4326                 if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
4327                         *offset = mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_LAYOUT_OFFSET);
4328                 } else {
4329                         *offset = (guint32)-1;
4330                 }
4331         }
4332         if (rva) {
4333                 tdef = &meta->tables [MONO_TABLE_FIELDRVA];
4334
4335                 loc.col_idx = MONO_FIELD_RVA_FIELD;
4336                 loc.t = tdef;
4337                 
4338                 if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
4339                         /*
4340                          * LAMESPEC: There is no signature, no nothing, just the raw data.
4341                          */
4342                         *rva = mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_RVA_RVA);
4343                 } else {
4344                         *rva = 0;
4345                 }
4346         }
4347         if (marshal_spec) {
4348                 const char *p;
4349                 
4350                 if ((p = mono_metadata_get_marshal_info (meta, index, TRUE))) {
4351                         *marshal_spec = mono_metadata_parse_marshal_spec_full (alloc_from_image ? meta : NULL, p);
4352                 }
4353         }
4354
4355 }
4356
4357 /*
4358  * mono_metadata_get_constant_index:
4359  * @meta: the Image the field is defined in
4360  * @index: the token that may have a row defined in the constants table
4361  * @hint: possible position for the row
4362  *
4363  * @token must be a FieldDef, ParamDef or PropertyDef token.
4364  *
4365  * Returns: the index into the Constants table or 0 if not found.
4366  */
4367 guint32
4368 mono_metadata_get_constant_index (MonoImage *meta, guint32 token, guint32 hint)
4369 {
4370         MonoTableInfo *tdef;
4371         locator_t loc;
4372         guint32 index = mono_metadata_token_index (token);
4373
4374         tdef = &meta->tables [MONO_TABLE_CONSTANT];
4375         index <<= MONO_HASCONSTANT_BITS;
4376         switch (mono_metadata_token_table (token)) {
4377         case MONO_TABLE_FIELD:
4378                 index |= MONO_HASCONSTANT_FIEDDEF;
4379                 break;
4380         case MONO_TABLE_PARAM:
4381                 index |= MONO_HASCONSTANT_PARAM;
4382                 break;
4383         case MONO_TABLE_PROPERTY:
4384                 index |= MONO_HASCONSTANT_PROPERTY;
4385                 break;
4386         default:
4387                 g_warning ("Not a valid token for the constant table: 0x%08x", token);
4388                 return 0;
4389         }
4390         loc.idx = index;
4391         loc.col_idx = MONO_CONSTANT_PARENT;
4392         loc.t = tdef;
4393
4394         /* FIXME: Index translation */
4395
4396         if ((hint > 0) && (hint < tdef->rows) && (mono_metadata_decode_row_col (tdef, hint - 1, MONO_CONSTANT_PARENT) == index))
4397                 return hint;
4398
4399         if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
4400                 return loc.result + 1;
4401         }
4402         return 0;
4403 }
4404
4405 /*
4406  * mono_metadata_events_from_typedef:
4407  * @meta: metadata context
4408  * @index: 0-based index (in the TypeDef table) describing a type
4409  *
4410  * Returns: the 0-based index in the Event table for the events in the
4411  * type. The last event that belongs to the type (plus 1) is stored
4412  * in the @end_idx pointer.
4413  */
4414 guint32
4415 mono_metadata_events_from_typedef (MonoImage *meta, guint32 index, guint *end_idx)
4416 {
4417         locator_t loc;
4418         guint32 start, end;
4419         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_EVENTMAP];
4420
4421         *end_idx = 0;
4422         
4423         if (!tdef->base)
4424                 return 0;
4425
4426         loc.t = tdef;
4427         loc.col_idx = MONO_EVENT_MAP_PARENT;
4428         loc.idx = index + 1;
4429
4430         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4431                 return 0;
4432         
4433         start = mono_metadata_decode_row_col (tdef, loc.result, MONO_EVENT_MAP_EVENTLIST);
4434         if (loc.result + 1 < tdef->rows) {
4435                 end = mono_metadata_decode_row_col (tdef, loc.result + 1, MONO_EVENT_MAP_EVENTLIST) - 1;
4436         } else {
4437                 end = meta->tables [MONO_TABLE_EVENT].rows;
4438         }
4439
4440         *end_idx = end;
4441         return start - 1;
4442 }
4443
4444 /*
4445  * mono_metadata_methods_from_event:
4446  * @meta: metadata context
4447  * @index: 0-based index (in the Event table) describing a event
4448  *
4449  * Returns: the 0-based index in the MethodDef table for the methods in the
4450  * event. The last method that belongs to the event (plus 1) is stored
4451  * in the @end_idx pointer.
4452  */
4453 guint32
4454 mono_metadata_methods_from_event   (MonoImage *meta, guint32 index, guint *end_idx)
4455 {
4456         locator_t loc;
4457         guint start, end;
4458         guint32 cols [MONO_METHOD_SEMA_SIZE];
4459         MonoTableInfo *msemt = &meta->tables [MONO_TABLE_METHODSEMANTICS];
4460
4461         *end_idx = 0;
4462         if (!msemt->base)
4463                 return 0;
4464
4465         if (meta->uncompressed_metadata)
4466             index = search_ptr_table (meta, MONO_TABLE_EVENT_POINTER, index + 1) - 1;
4467
4468         loc.t = msemt;
4469         loc.col_idx = MONO_METHOD_SEMA_ASSOCIATION;
4470         loc.idx = ((index + 1) << MONO_HAS_SEMANTICS_BITS) | MONO_HAS_SEMANTICS_EVENT; /* Method association coded index */
4471
4472         if (!bsearch (&loc, msemt->base, msemt->rows, msemt->row_size, table_locator))
4473                 return 0;
4474
4475         start = loc.result;
4476         /*
4477          * We may end up in the middle of the rows... 
4478          */
4479         while (start > 0) {
4480                 if (loc.idx == mono_metadata_decode_row_col (msemt, start - 1, MONO_METHOD_SEMA_ASSOCIATION))
4481                         start--;
4482                 else
4483                         break;
4484         }
4485         end = start + 1;
4486         while (end < msemt->rows) {
4487                 mono_metadata_decode_row (msemt, end, cols, MONO_METHOD_SEMA_SIZE);
4488                 if (cols [MONO_METHOD_SEMA_ASSOCIATION] != loc.idx)
4489                         break;
4490                 ++end;
4491         }
4492         *end_idx = end;
4493         return start;
4494 }
4495
4496 /*
4497  * mono_metadata_properties_from_typedef:
4498  * @meta: metadata context
4499  * @index: 0-based index (in the TypeDef table) describing a type
4500  *
4501  * Returns: the 0-based index in the Property table for the properties in the
4502  * type. The last property that belongs to the type (plus 1) is stored
4503  * in the @end_idx pointer.
4504  */
4505 guint32
4506 mono_metadata_properties_from_typedef (MonoImage *meta, guint32 index, guint *end_idx)
4507 {
4508         locator_t loc;
4509         guint32 start, end;
4510         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_PROPERTYMAP];
4511
4512         *end_idx = 0;
4513         
4514         if (!tdef->base)
4515                 return 0;
4516
4517         loc.t = tdef;
4518         loc.col_idx = MONO_PROPERTY_MAP_PARENT;
4519         loc.idx = index + 1;
4520
4521         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4522                 return 0;
4523         
4524         start = mono_metadata_decode_row_col (tdef, loc.result, MONO_PROPERTY_MAP_PROPERTY_LIST);
4525         if (loc.result + 1 < tdef->rows) {
4526                 end = mono_metadata_decode_row_col (tdef, loc.result + 1, MONO_PROPERTY_MAP_PROPERTY_LIST) - 1;
4527         } else {
4528                 end = meta->tables [MONO_TABLE_PROPERTY].rows;
4529         }
4530
4531         *end_idx = end;
4532         return start - 1;
4533 }
4534
4535 /*
4536  * mono_metadata_methods_from_property:
4537  * @meta: metadata context
4538  * @index: 0-based index (in the PropertyDef table) describing a property
4539  *
4540  * Returns: the 0-based index in the MethodDef table for the methods in the
4541  * property. The last method that belongs to the property (plus 1) is stored
4542  * in the @end_idx pointer.
4543  */
4544 guint32
4545 mono_metadata_methods_from_property   (MonoImage *meta, guint32 index, guint *end_idx)
4546 {
4547         locator_t loc;
4548         guint start, end;
4549         guint32 cols [MONO_METHOD_SEMA_SIZE];
4550         MonoTableInfo *msemt = &meta->tables [MONO_TABLE_METHODSEMANTICS];
4551
4552         *end_idx = 0;
4553         if (!msemt->base)
4554                 return 0;
4555
4556         if (meta->uncompressed_metadata)
4557             index = search_ptr_table (meta, MONO_TABLE_PROPERTY_POINTER, index + 1) - 1;
4558
4559         loc.t = msemt;
4560         loc.col_idx = MONO_METHOD_SEMA_ASSOCIATION;
4561         loc.idx = ((index + 1) << MONO_HAS_SEMANTICS_BITS) | MONO_HAS_SEMANTICS_PROPERTY; /* Method association coded index */
4562
4563         if (!bsearch (&loc, msemt->base, msemt->rows, msemt->row_size, table_locator))
4564                 return 0;
4565
4566         start = loc.result;
4567         /*
4568          * We may end up in the middle of the rows... 
4569          */
4570         while (start > 0) {
4571                 if (loc.idx == mono_metadata_decode_row_col (msemt, start - 1, MONO_METHOD_SEMA_ASSOCIATION))
4572                         start--;
4573                 else
4574                         break;
4575         }
4576         end = start + 1;
4577         while (end < msemt->rows) {
4578                 mono_metadata_decode_row (msemt, end, cols, MONO_METHOD_SEMA_SIZE);
4579                 if (cols [MONO_METHOD_SEMA_ASSOCIATION] != loc.idx)
4580                         break;
4581                 ++end;
4582         }
4583         *end_idx = end;
4584         return start;
4585 }
4586
4587 guint32
4588 mono_metadata_implmap_from_method (MonoImage *meta, guint32 method_idx)
4589 {
4590         locator_t loc;
4591         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_IMPLMAP];
4592
4593         if (!tdef->base)
4594                 return 0;
4595
4596         /* No index translation seems to be needed */
4597
4598         loc.t = tdef;
4599         loc.col_idx = MONO_IMPLMAP_MEMBER;
4600         loc.idx = ((method_idx + 1) << MONO_MEMBERFORWD_BITS) | MONO_MEMBERFORWD_METHODDEF;
4601
4602         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4603                 return 0;
4604
4605         return loc.result + 1;
4606 }
4607
4608 /**
4609  * @image: context where the image is created
4610  * @type_spec:  typespec token
4611  *
4612  * Creates a MonoType representing the TypeSpec indexed by the @type_spec
4613  * token.
4614  */
4615 MonoType *
4616 mono_type_create_from_typespec (MonoImage *image, guint32 type_spec)
4617 {
4618         guint32 idx = mono_metadata_token_index (type_spec);
4619         MonoTableInfo *t;
4620         guint32 cols [MONO_TYPESPEC_SIZE];
4621         const char *ptr;
4622         guint32 len;
4623         MonoType *type, *type2;
4624
4625         mono_loader_lock ();
4626
4627         type = g_hash_table_lookup (image->typespec_cache, GUINT_TO_POINTER (type_spec));
4628         if (type) {
4629                 mono_loader_unlock ();
4630                 return type;
4631         }
4632
4633         t = &image->tables [MONO_TABLE_TYPESPEC];
4634
4635         mono_metadata_decode_row (t, idx-1, cols, MONO_TYPESPEC_SIZE);
4636         ptr = mono_metadata_blob_heap (image, cols [MONO_TYPESPEC_SIGNATURE]);
4637         len = mono_metadata_decode_value (ptr, &ptr);
4638
4639         type = mono_image_alloc0 (image, sizeof (MonoType));
4640
4641         if (*ptr == MONO_TYPE_BYREF) {
4642                 type->byref = 1;
4643                 ptr++;
4644         }
4645
4646         if (!do_mono_metadata_parse_type (type, image, NULL, ptr, &ptr)) {
4647                 mono_loader_unlock ();
4648                 return NULL;
4649         }
4650
4651         type2 = g_hash_table_lookup (image->typespec_cache, GUINT_TO_POINTER (type_spec));
4652
4653         if (type2) {
4654                 mono_loader_unlock ();
4655                 return type2;
4656         }
4657
4658         g_hash_table_insert (image->typespec_cache, GUINT_TO_POINTER (type_spec), type);
4659
4660         mono_loader_unlock ();
4661
4662         return type;
4663 }
4664
4665
4666 static char*
4667 mono_image_strndup (MonoImage *image, const char *data, guint len)
4668 {
4669         char *res;
4670         if (!image)
4671                 return g_strndup (data, len);
4672         res = mono_image_alloc (image, len + 1);
4673         memcpy (res, data, len);
4674         res [len] = 0;
4675         return res;
4676 }
4677
4678 MonoMarshalSpec *
4679 mono_metadata_parse_marshal_spec (MonoImage *image, const char *ptr)
4680 {
4681         return mono_metadata_parse_marshal_spec_full (NULL, ptr);
4682 }
4683
4684 MonoMarshalSpec *
4685 mono_metadata_parse_marshal_spec_full (MonoImage *image, const char *ptr)
4686 {
4687         MonoMarshalSpec *res;
4688         int len;
4689         const char *start = ptr;
4690
4691         /* fixme: this is incomplete, but I cant find more infos in the specs */
4692
4693         if (image)
4694                 res = mono_image_alloc0 (image, sizeof (MonoMarshalSpec));
4695         else
4696                 res = g_new0 (MonoMarshalSpec, 1);
4697         
4698         len = mono_metadata_decode_value (ptr, &ptr);
4699         res->native = *ptr++;
4700
4701         if (res->native == MONO_NATIVE_LPARRAY) {
4702                 res->data.array_data.param_num = -1;
4703                 res->data.array_data.num_elem = -1;
4704                 res->data.array_data.elem_mult = -1;
4705
4706                 if (ptr - start <= len)
4707                         res->data.array_data.elem_type = *ptr++;
4708                 if (ptr - start <= len)
4709                         res->data.array_data.param_num = mono_metadata_decode_value (ptr, &ptr);
4710                 if (ptr - start <= len)
4711                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
4712                 if (ptr - start <= len) {
4713                         /*
4714                          * LAMESPEC: Older spec versions say this parameter comes before 
4715                          * num_elem. Never spec versions don't talk about elem_mult at
4716                          * all, but csc still emits it, and it is used to distinguish
4717                          * between param_num being 0, and param_num being omitted.
4718                          * So if (param_num == 0) && (num_elem > 0), then
4719                          * elem_mult == 0 -> the array size is num_elem
4720                          * elem_mult == 1 -> the array size is @param_num + num_elem
4721                          */
4722                         res->data.array_data.elem_mult = mono_metadata_decode_value (ptr, &ptr);
4723                 }
4724         } 
4725
4726         if (res->native == MONO_NATIVE_BYVALTSTR) {
4727                 if (ptr - start <= len)
4728                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
4729         }
4730
4731         if (res->native == MONO_NATIVE_BYVALARRAY) {
4732                 if (ptr - start <= len)
4733                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
4734         }
4735         
4736         if (res->native == MONO_NATIVE_CUSTOM) {
4737                 /* skip unused type guid */
4738                 len = mono_metadata_decode_value (ptr, &ptr);
4739                 ptr += len;
4740                 /* skip unused native type name */
4741                 len = mono_metadata_decode_value (ptr, &ptr);
4742                 ptr += len;
4743                 /* read custom marshaler type name */
4744                 len = mono_metadata_decode_value (ptr, &ptr);
4745                 res->data.custom_data.custom_name = mono_image_strndup (image, ptr, len);               
4746                 ptr += len;
4747                 /* read cookie string */
4748                 len = mono_metadata_decode_value (ptr, &ptr);
4749                 res->data.custom_data.cookie = mono_image_strndup (image, ptr, len);
4750         }
4751
4752         if (res->native == MONO_NATIVE_SAFEARRAY) {
4753                 res->data.safearray_data.elem_type = 0;
4754                 res->data.safearray_data.num_elem = 0;
4755                 if (ptr - start <= len)
4756                         res->data.safearray_data.elem_type = *ptr++;
4757                 if (ptr - start <= len)
4758                         res->data.safearray_data.num_elem = *ptr++;
4759         }
4760         return res;
4761 }
4762
4763 void 
4764 mono_metadata_free_marshal_spec (MonoMarshalSpec *spec)
4765 {
4766         if (spec->native == MONO_NATIVE_CUSTOM) {
4767                 g_free (spec->data.custom_data.custom_name);
4768                 g_free (spec->data.custom_data.cookie);
4769         }
4770         g_free (spec);
4771 }
4772
4773 /**
4774  * mono_type_to_unmanaged:
4775  *
4776  * Returns: A MonoMarshalNative enumeration value (MONO_NATIVE_) value
4777  * describing the underlying native reprensetation of the type.
4778  * 
4779  * In addition the value pointed by
4780  * "conv" will contain the kind of marshalling required for this
4781  * particular type one of the MONO_MARSHAL_CONV_ enumeration values.
4782  */
4783 guint32
4784 mono_type_to_unmanaged (MonoType *type, MonoMarshalSpec *mspec, gboolean as_field,
4785                         gboolean unicode, MonoMarshalConv *conv) 
4786 {
4787         MonoMarshalConv dummy_conv;
4788         int t = type->type;
4789
4790         if (!conv)
4791                 conv = &dummy_conv;
4792
4793         *conv = MONO_MARSHAL_CONV_NONE;
4794
4795         if (type->byref)
4796                 return MONO_NATIVE_UINT;
4797
4798 handle_enum:
4799         switch (t) {
4800         case MONO_TYPE_BOOLEAN: 
4801                 if (mspec) {
4802                         switch (mspec->native) {
4803                         case MONO_NATIVE_VARIANTBOOL:
4804                                 *conv = MONO_MARSHAL_CONV_BOOL_VARIANTBOOL;
4805                                 return MONO_NATIVE_VARIANTBOOL;
4806                         case MONO_NATIVE_BOOLEAN:
4807                                 *conv = MONO_MARSHAL_CONV_BOOL_I4;
4808                                 return MONO_NATIVE_BOOLEAN;
4809                         case MONO_NATIVE_I1:
4810                         case MONO_NATIVE_U1:
4811                                 return mspec->native;
4812                         default:
4813                                 g_error ("cant marshal bool to native type %02x", mspec->native);
4814                         }
4815                 }
4816                 *conv = MONO_MARSHAL_CONV_BOOL_I4;
4817                 return MONO_NATIVE_BOOLEAN;
4818         case MONO_TYPE_CHAR: return MONO_NATIVE_U2;
4819         case MONO_TYPE_I1: return MONO_NATIVE_I1;
4820         case MONO_TYPE_U1: return MONO_NATIVE_U1;
4821         case MONO_TYPE_I2: return MONO_NATIVE_I2;
4822         case MONO_TYPE_U2: return MONO_NATIVE_U2;
4823         case MONO_TYPE_I4: return MONO_NATIVE_I4;
4824         case MONO_TYPE_U4: return MONO_NATIVE_U4;
4825         case MONO_TYPE_I8: return MONO_NATIVE_I8;
4826         case MONO_TYPE_U8: return MONO_NATIVE_U8;
4827         case MONO_TYPE_R4: return MONO_NATIVE_R4;
4828         case MONO_TYPE_R8: return MONO_NATIVE_R8;
4829         case MONO_TYPE_STRING:
4830                 if (mspec) {
4831                         switch (mspec->native) {
4832                         case MONO_NATIVE_BSTR:
4833                                 *conv = MONO_MARSHAL_CONV_STR_BSTR;
4834                                 return MONO_NATIVE_BSTR;
4835                         case MONO_NATIVE_LPSTR:
4836                                 *conv = MONO_MARSHAL_CONV_STR_LPSTR;
4837                                 return MONO_NATIVE_LPSTR;
4838                         case MONO_NATIVE_LPWSTR:
4839                                 *conv = MONO_MARSHAL_CONV_STR_LPWSTR;
4840                                 return MONO_NATIVE_LPWSTR;
4841                         case MONO_NATIVE_LPTSTR:
4842                                 *conv = MONO_MARSHAL_CONV_STR_LPTSTR;
4843                                 return MONO_NATIVE_LPTSTR;
4844                         case MONO_NATIVE_ANSIBSTR:
4845                                 *conv = MONO_MARSHAL_CONV_STR_ANSIBSTR;
4846                                 return MONO_NATIVE_ANSIBSTR;
4847                         case MONO_NATIVE_TBSTR:
4848                                 *conv = MONO_MARSHAL_CONV_STR_TBSTR;
4849                                 return MONO_NATIVE_TBSTR;
4850                         case MONO_NATIVE_BYVALTSTR:
4851                                 if (unicode)
4852                                         *conv = MONO_MARSHAL_CONV_STR_BYVALWSTR;
4853                                 else
4854                                         *conv = MONO_MARSHAL_CONV_STR_BYVALSTR;
4855                                 return MONO_NATIVE_BYVALTSTR;
4856                         default:
4857                                 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);
4858                         }
4859                 }       
4860                 if (unicode) {
4861                         *conv = MONO_MARSHAL_CONV_STR_LPWSTR;
4862                         return MONO_NATIVE_LPWSTR; 
4863                 }
4864                 else {
4865                         *conv = MONO_MARSHAL_CONV_STR_LPSTR;
4866                         return MONO_NATIVE_LPSTR; 
4867                 }
4868         case MONO_TYPE_PTR: return MONO_NATIVE_UINT;
4869         case MONO_TYPE_VALUETYPE: /*FIXME*/
4870                 if (type->data.klass->enumtype) {
4871                         t = mono_class_enum_basetype (type->data.klass)->type;
4872                         goto handle_enum;
4873                 }
4874                 if (type->data.klass == mono_defaults.handleref_class){
4875                         *conv = MONO_MARSHAL_CONV_HANDLEREF;
4876                         return MONO_NATIVE_INT;
4877                 }
4878                 return MONO_NATIVE_STRUCT;
4879         case MONO_TYPE_SZARRAY: 
4880         case MONO_TYPE_ARRAY: 
4881                 if (mspec) {
4882                         switch (mspec->native) {
4883                         case MONO_NATIVE_BYVALARRAY:
4884                                 if ((type->data.klass->element_class == mono_defaults.char_class) && !unicode)
4885                                         *conv = MONO_MARSHAL_CONV_ARRAY_BYVALCHARARRAY;
4886                                 else
4887                                         *conv = MONO_MARSHAL_CONV_ARRAY_BYVALARRAY;
4888                                 return MONO_NATIVE_BYVALARRAY;
4889                         case MONO_NATIVE_SAFEARRAY:
4890                                 *conv = MONO_MARSHAL_CONV_ARRAY_SAVEARRAY;
4891                                 return MONO_NATIVE_SAFEARRAY;
4892                         case MONO_NATIVE_LPARRAY:                               
4893                                 *conv = MONO_MARSHAL_CONV_ARRAY_LPARRAY;
4894                                 return MONO_NATIVE_LPARRAY;
4895                         default:
4896                                 g_error ("cant marshal array as native type %02x", mspec->native);
4897                         }
4898                 }       
4899
4900                 *conv = MONO_MARSHAL_CONV_ARRAY_LPARRAY;
4901                 return MONO_NATIVE_LPARRAY;
4902         case MONO_TYPE_I: return MONO_NATIVE_INT;
4903         case MONO_TYPE_U: return MONO_NATIVE_UINT;
4904         case MONO_TYPE_CLASS: 
4905         case MONO_TYPE_OBJECT: {
4906                 /* FIXME : we need to handle ArrayList and StringBuilder here, probably */
4907                 if (mspec) {
4908                         switch (mspec->native) {
4909                         case MONO_NATIVE_STRUCT:
4910                                 return MONO_NATIVE_STRUCT;
4911                         case MONO_NATIVE_CUSTOM:
4912                                 return MONO_NATIVE_CUSTOM;
4913                         case MONO_NATIVE_INTERFACE:
4914                                 *conv = MONO_MARSHAL_CONV_OBJECT_INTERFACE;
4915                                 return MONO_NATIVE_INTERFACE;
4916                         case MONO_NATIVE_IDISPATCH:
4917                                 *conv = MONO_MARSHAL_CONV_OBJECT_IDISPATCH;
4918                                 return MONO_NATIVE_IDISPATCH;
4919                         case MONO_NATIVE_IUNKNOWN:
4920                                 *conv = MONO_MARSHAL_CONV_OBJECT_IUNKNOWN;
4921                                 return MONO_NATIVE_IUNKNOWN;
4922                         case MONO_NATIVE_FUNC:
4923                                 if (t == MONO_TYPE_CLASS && (type->data.klass == mono_defaults.multicastdelegate_class ||
4924                                                                                          type->data.klass == mono_defaults.delegate_class || 
4925                                                                                          type->data.klass->parent == mono_defaults.multicastdelegate_class)) {
4926                                         *conv = MONO_MARSHAL_CONV_DEL_FTN;
4927                                         return MONO_NATIVE_FUNC;
4928                                 }
4929                                 /* Fall through */
4930                         default:
4931                                 g_error ("cant marshal object as native type %02x", mspec->native);
4932                         }
4933                 }
4934                 if (t == MONO_TYPE_CLASS && (type->data.klass == mono_defaults.multicastdelegate_class ||
4935                                              type->data.klass == mono_defaults.delegate_class || 
4936                                              type->data.klass->parent == mono_defaults.multicastdelegate_class)) {
4937                         *conv = MONO_MARSHAL_CONV_DEL_FTN;
4938                         return MONO_NATIVE_FUNC;
4939                 }
4940                 if (mono_defaults.safehandle_class && type->data.klass == mono_defaults.safehandle_class){
4941                         *conv = MONO_MARSHAL_CONV_SAFEHANDLE;
4942                         return MONO_NATIVE_INT;
4943                 }
4944                 *conv = MONO_MARSHAL_CONV_OBJECT_STRUCT;
4945                 return MONO_NATIVE_STRUCT;
4946         }
4947         case MONO_TYPE_FNPTR: return MONO_NATIVE_FUNC;
4948         case MONO_TYPE_GENERICINST:
4949                 type = &type->data.generic_class->container_class->byval_arg;
4950                 t = type->type;
4951                 goto handle_enum;
4952         case MONO_TYPE_TYPEDBYREF:
4953         default:
4954                 g_error ("type 0x%02x not handled in marshal", t);
4955         }
4956         return MONO_NATIVE_MAX;
4957 }
4958
4959 const char*
4960 mono_metadata_get_marshal_info (MonoImage *meta, guint32 idx, gboolean is_field)
4961 {
4962         locator_t loc;
4963         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_FIELDMARSHAL];
4964
4965         if (!tdef->base)
4966                 return NULL;
4967
4968         loc.t = tdef;
4969         loc.col_idx = MONO_FIELD_MARSHAL_PARENT;
4970         loc.idx = ((idx + 1) << MONO_HAS_FIELD_MARSHAL_BITS) | (is_field? MONO_HAS_FIELD_MARSHAL_FIELDSREF: MONO_HAS_FIELD_MARSHAL_PARAMDEF);
4971
4972         /* FIXME: Index translation */
4973
4974         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4975                 return NULL;
4976
4977         return mono_metadata_blob_heap (meta, mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_MARSHAL_NATIVE_TYPE));
4978 }
4979
4980 static MonoMethod*
4981 method_from_method_def_or_ref (MonoImage *m, guint32 tok, MonoGenericContext *context)
4982 {
4983         guint32 idx = tok >> MONO_METHODDEFORREF_BITS;
4984
4985         switch (tok & MONO_METHODDEFORREF_MASK) {
4986         case MONO_METHODDEFORREF_METHODDEF:
4987                 return mono_get_method_full (m, MONO_TOKEN_METHOD_DEF | idx, NULL, context);
4988         case MONO_METHODDEFORREF_METHODREF:
4989                 return mono_get_method_full (m, MONO_TOKEN_MEMBER_REF | idx, NULL, context);
4990         }
4991         g_assert_not_reached ();
4992         return NULL;
4993 }
4994
4995 /*
4996  * mono_class_get_overrides_full:
4997  *
4998  *   Return the method overrides belonging to class @type_token in @overrides, and
4999  * the number of overrides in @num_overrides.
5000  *
5001  * Returns: TRUE on success, FALSE on failure.
5002  */
5003 gboolean
5004 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
5005                                MonoGenericContext *generic_context)
5006 {
5007         locator_t loc;
5008         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_METHODIMPL];
5009         guint32 start, end;
5010         gint32 i, num;
5011         guint32 cols [MONO_METHODIMPL_SIZE];
5012         MonoMethod **result;
5013         gint32 ok = TRUE;
5014         
5015         *overrides = NULL;
5016         if (num_overrides)
5017                 *num_overrides = 0;
5018
5019         if (!tdef->base)
5020                 return TRUE;
5021
5022         loc.t = tdef;
5023         loc.col_idx = MONO_METHODIMPL_CLASS;
5024         loc.idx = mono_metadata_token_index (type_token);
5025
5026         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
5027                 return TRUE;
5028
5029         start = loc.result;
5030         end = start + 1;
5031         /*
5032          * We may end up in the middle of the rows... 
5033          */
5034         while (start > 0) {
5035                 if (loc.idx == mono_metadata_decode_row_col (tdef, start - 1, MONO_METHODIMPL_CLASS))
5036                         start--;
5037                 else
5038                         break;
5039         }
5040         while (end < tdef->rows) {
5041                 if (loc.idx == mono_metadata_decode_row_col (tdef, end, MONO_METHODIMPL_CLASS))
5042                         end++;
5043                 else
5044                         break;
5045         }
5046         num = end - start;
5047         result = g_new (MonoMethod*, num * 2);
5048         for (i = 0; i < num; ++i) {
5049                 MonoMethod *method;
5050
5051                 mono_metadata_decode_row (tdef, start + i, cols, MONO_METHODIMPL_SIZE);
5052                 method = method_from_method_def_or_ref (
5053                         image, cols [MONO_METHODIMPL_DECLARATION], generic_context);
5054                 if (method == NULL)
5055                         ok = FALSE;
5056                 result [i * 2] = method;
5057                 method = method_from_method_def_or_ref (
5058                         image, cols [MONO_METHODIMPL_BODY], generic_context);
5059                 if (method == NULL)
5060                         ok = FALSE;
5061                 result [i * 2 + 1] = method;
5062         }
5063
5064         *overrides = result;
5065         if (num_overrides)
5066                 *num_overrides = num;
5067         return ok;
5068 }
5069
5070 /**
5071  * mono_guid_to_string:
5072  *
5073  * Converts a 16 byte Microsoft GUID to the standard string representation.
5074  */
5075 char *
5076 mono_guid_to_string (const guint8 *guid)
5077 {
5078         return g_strdup_printf ("%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X", 
5079                                 guid[3], guid[2], guid[1], guid[0],
5080                                 guid[5], guid[4],
5081                                 guid[7], guid[6],
5082                                 guid[8], guid[9],
5083                                 guid[10], guid[11], guid[12], guid[13], guid[14], guid[15]);
5084 }
5085
5086 static gboolean
5087 get_constraints (MonoImage *image, int owner, MonoClass ***constraints, MonoGenericContainer *container)
5088 {
5089         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAMCONSTRAINT];
5090         guint32 cols [MONO_GENPARCONSTRAINT_SIZE];
5091         guint32 i, token, found;
5092         MonoClass *klass, **res;
5093         GList *cons = NULL, *tmp;
5094         MonoGenericContext *context = &container->context;
5095
5096         *constraints = NULL;
5097         found = 0;
5098         for (i = 0; i < tdef->rows; ++i) {
5099                 mono_metadata_decode_row (tdef, i, cols, MONO_GENPARCONSTRAINT_SIZE);
5100                 if (cols [MONO_GENPARCONSTRAINT_GENERICPAR] == owner) {
5101                         token = mono_metadata_token_from_dor (cols [MONO_GENPARCONSTRAINT_CONSTRAINT]);
5102                         klass = mono_class_get_full (image, token, context);
5103                         cons = g_list_append (cons, klass);
5104                         ++found;
5105                 } else {
5106                         /* contiguous list finished */
5107                         if (found)
5108                                 break;
5109                 }
5110         }
5111         if (!found)
5112                 return TRUE;
5113         res = g_new0 (MonoClass*, found + 1);
5114         for (i = 0, tmp = cons; i < found; ++i, tmp = tmp->next) {
5115                 res [i] = tmp->data;
5116         }
5117         g_list_free (cons);
5118         *constraints = res;
5119         return TRUE;
5120 }
5121
5122 /*
5123  * mono_metadata_get_generic_param_row:
5124  *
5125  * @image:
5126  * @token: TypeOrMethodDef token, owner for GenericParam
5127  * @owner: coded token, set on return
5128  * 
5129  * Returns: 1-based row-id in the GenericParam table whose
5130  * owner is @token. 0 if not found.
5131  */
5132 guint32
5133 mono_metadata_get_generic_param_row (MonoImage *image, guint32 token, guint32 *owner)
5134 {
5135         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
5136         locator_t loc;
5137
5138         g_assert (owner);
5139         if (!tdef->base)
5140                 return 0;
5141
5142         if (mono_metadata_token_table (token) == MONO_TABLE_TYPEDEF)
5143                 *owner = MONO_TYPEORMETHOD_TYPE;
5144         else if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
5145                 *owner = MONO_TYPEORMETHOD_METHOD;
5146         else {
5147                 g_error ("wrong token %x to get_generic_param_row", token);
5148                 return 0;
5149         }
5150         *owner |= mono_metadata_token_index (token) << MONO_TYPEORMETHOD_BITS;
5151
5152         loc.idx = *owner;
5153         loc.col_idx = MONO_GENERICPARAM_OWNER;
5154         loc.t = tdef;
5155
5156         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
5157                 return 0;
5158
5159         /* Find the first entry by searching backwards */
5160         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_GENERICPARAM_OWNER) == loc.idx))
5161                 loc.result --;
5162
5163         return loc.result + 1;
5164 }
5165
5166 gboolean
5167 mono_metadata_has_generic_params (MonoImage *image, guint32 token)
5168 {
5169         guint32 owner;
5170         return mono_metadata_get_generic_param_row (image, token, &owner);
5171 }
5172
5173 /*
5174  * mono_metadata_load_generic_param_constraints:
5175  *
5176  * Load the generic parameter constraints for the newly created generic type or method
5177  * represented by @token and @container.  The @container is the new container which has
5178  * been returned by a call to mono_metadata_load_generic_params() with this @token.
5179  */
5180 void
5181 mono_metadata_load_generic_param_constraints (MonoImage *image, guint32 token,
5182                                               MonoGenericContainer *container)
5183 {
5184         guint32 start_row, i, owner;
5185         if (! (start_row = mono_metadata_get_generic_param_row (image, token, &owner)))
5186                 return;
5187         for (i = 0; i < container->type_argc; i++)
5188                 get_constraints (image, start_row + i, &mono_generic_container_get_param_info (container, i)->constraints, container);
5189 }
5190
5191 /*
5192  * mono_metadata_load_generic_params:
5193  *
5194  * Load the type parameters from the type or method definition @token.
5195  *
5196  * Use this method after parsing a type or method definition to figure out whether it's a generic
5197  * type / method.  When parsing a method definition, @parent_container points to the generic container
5198  * of the current class, if any.
5199  *
5200  * Note: This method does not load the constraints: for typedefs, this has to be done after fully
5201  *       creating the type.
5202  *
5203  * Returns: NULL if @token is not a generic type or method definition or the new generic container.
5204  *
5205  * LOCKING: Acquires the loader lock
5206  *
5207  */
5208 MonoGenericContainer *
5209 mono_metadata_load_generic_params (MonoImage *image, guint32 token, MonoGenericContainer *parent_container)
5210 {
5211         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
5212         guint32 cols [MONO_GENERICPARAM_SIZE];
5213         guint32 i, owner = 0, n;
5214         MonoGenericContainer *container;
5215         MonoGenericParamFull *params;
5216         MonoGenericContext *context;
5217
5218         if (!(i = mono_metadata_get_generic_param_row (image, token, &owner)))
5219                 return NULL;
5220         mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
5221         params = NULL;
5222         n = 0;
5223         container = mono_image_alloc0 (image, sizeof (MonoGenericContainer));
5224         do {
5225                 n++;
5226                 params = g_realloc (params, sizeof (MonoGenericParamFull) * n);
5227                 memset (&params [n - 1], 0, sizeof (MonoGenericParamFull));
5228                 params [n - 1].param.owner = container;
5229                 params [n - 1].param.num = cols [MONO_GENERICPARAM_NUMBER];
5230                 params [n - 1].info.token = i | MONO_TOKEN_GENERIC_PARAM;
5231                 params [n - 1].info.flags = cols [MONO_GENERICPARAM_FLAGS];
5232                 params [n - 1].info.name = mono_metadata_string_heap (image, cols [MONO_GENERICPARAM_NAME]);
5233                 if (params [n - 1].param.num != n - 1)
5234                         g_warning ("GenericParam table unsorted or hole in generic param sequence: token %d", i);
5235                 if (++i > tdef->rows)
5236                         break;
5237                 mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
5238         } while (cols [MONO_GENERICPARAM_OWNER] == owner);
5239
5240         container->type_argc = n;
5241         container->type_params = mono_image_alloc0 (image, sizeof (MonoGenericParamFull) * n);
5242         memcpy (container->type_params, params, sizeof (MonoGenericParamFull) * n);
5243         g_free (params);
5244         container->parent = parent_container;
5245
5246         if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
5247                 container->is_method = 1;
5248
5249         g_assert (container->parent == NULL || container->is_method);
5250
5251         context = &container->context;
5252         if (container->is_method) {
5253                 context->class_inst = container->parent ? container->parent->context.class_inst : NULL;
5254                 context->method_inst = mono_get_shared_generic_inst (container);
5255         } else {
5256                 context->class_inst = mono_get_shared_generic_inst (container);
5257         }
5258
5259         return container;
5260 }
5261
5262 MonoGenericInst *
5263 mono_get_shared_generic_inst (MonoGenericContainer *container)
5264 {
5265         MonoType **type_argv;
5266         MonoType *helper;
5267         MonoGenericInst *nginst;
5268         int i;
5269
5270         type_argv = g_new0 (MonoType *, container->type_argc);
5271         helper = g_new0 (MonoType, container->type_argc);
5272
5273         for (i = 0; i < container->type_argc; i++) {
5274                 MonoType *t = &helper [i];
5275
5276                 t->type = container->is_method ? MONO_TYPE_MVAR : MONO_TYPE_VAR;
5277                 t->data.generic_param = mono_generic_container_get_param (container, i);
5278
5279                 type_argv [i] = t;
5280         }
5281
5282         nginst = mono_metadata_get_generic_inst (container->type_argc, type_argv);
5283
5284         g_free (type_argv);
5285         g_free (helper);
5286
5287         return nginst;
5288 }
5289
5290 gboolean
5291 mono_type_is_byref (MonoType *type)
5292 {
5293         return type->byref;
5294 }
5295
5296 int
5297 mono_type_get_type (MonoType *type)
5298 {
5299         return type->type;
5300 }
5301
5302 /* For MONO_TYPE_FNPTR */
5303 MonoMethodSignature*
5304 mono_type_get_signature (MonoType *type)
5305 {
5306         return type->data.method;
5307 }
5308
5309 /* For MONO_TYPE_CLASS, VALUETYPE */
5310 MonoClass*
5311 mono_type_get_class (MonoType *type)
5312 {
5313         return type->data.klass;
5314 }
5315
5316 /* For MONO_TYPE_ARRAY */
5317 MonoArrayType*
5318 mono_type_get_array_type (MonoType *type)
5319 {
5320         return type->data.array;
5321 }
5322
5323 /* For MONO_TYPE_PTR */
5324 MonoType*
5325 mono_type_get_ptr_type (MonoType *type)
5326 {
5327         return type->data.type;
5328 }
5329
5330 MonoClass*
5331 mono_type_get_modifiers (MonoType *type, gboolean *is_required, gpointer *iter)
5332 {
5333         /* FIXME: implement */
5334         return NULL;
5335 }
5336
5337 MonoType*
5338 mono_signature_get_return_type (MonoMethodSignature *sig)
5339 {
5340         return sig->ret;
5341 }
5342
5343 MonoType*
5344 mono_signature_get_params (MonoMethodSignature *sig, gpointer *iter)
5345 {
5346         MonoType** type;
5347         if (!iter)
5348                 return NULL;
5349         if (!*iter) {
5350                 /* start from the first */
5351                 if (sig->param_count) {
5352                         *iter = &sig->params [0];
5353                         return sig->params [0];
5354                 } else {
5355                         /* no method */
5356                         return NULL;
5357                 }
5358         }
5359         type = *iter;
5360         type++;
5361         if (type < &sig->params [sig->param_count]) {
5362                 *iter = type;
5363                 return *type;
5364         }
5365         return NULL;
5366 }
5367
5368 guint32
5369 mono_signature_get_param_count (MonoMethodSignature *sig)
5370 {
5371         return sig->param_count;
5372 }
5373
5374 guint32
5375 mono_signature_get_call_conv (MonoMethodSignature *sig)
5376 {
5377         return sig->call_convention;
5378 }
5379
5380 int
5381 mono_signature_vararg_start (MonoMethodSignature *sig)
5382 {
5383         return sig->sentinelpos;
5384 }
5385
5386 gboolean
5387 mono_signature_is_instance (MonoMethodSignature *sig)
5388 {
5389         return sig->hasthis;
5390 }
5391
5392 gboolean
5393 mono_signature_explicit_this (MonoMethodSignature *sig)
5394 {
5395         return sig->explicit_this;
5396 }
5397
5398 /* for use with allocated memory blocks (assumes alignment is to 8 bytes) */
5399 guint
5400 mono_aligned_addr_hash (gconstpointer ptr)
5401 {
5402         return GPOINTER_TO_UINT (ptr) >> 3;
5403 }
5404
5405 /*
5406  * If @field belongs to an inflated generic class, return the corresponding field of the
5407  * generic type definition class.
5408  */
5409 MonoClassField*
5410 mono_metadata_get_corresponding_field_from_generic_type_definition (MonoClassField *field)
5411 {
5412         MonoClass *gtd;
5413         int offset;
5414
5415         if (!field->parent->generic_class)
5416                 return field;
5417
5418         gtd = field->parent->generic_class->container_class;
5419         offset = field - field->parent->fields;
5420         return gtd->fields + offset;
5421 }
5422
5423 /*
5424  * If @event belongs to an inflated generic class, return the corresponding event of the
5425  * generic type definition class.
5426  */
5427 MonoEvent*
5428 mono_metadata_get_corresponding_event_from_generic_type_definition (MonoEvent *event)
5429 {
5430         MonoClass *gtd;
5431         int offset;
5432
5433         if (!event->parent->generic_class)
5434                 return event;
5435
5436         gtd = event->parent->generic_class->container_class;
5437         offset = event - event->parent->ext->events;
5438         return gtd->ext->events + offset;
5439 }
5440
5441 /*
5442  * If @property belongs to an inflated generic class, return the corresponding property of the
5443  * generic type definition class.
5444  */
5445 MonoProperty*
5446 mono_metadata_get_corresponding_property_from_generic_type_definition (MonoProperty *property)
5447 {
5448         MonoClass *gtd;
5449         int offset;
5450
5451         if (!property->parent->generic_class)
5452                 return property;
5453
5454         gtd = property->parent->generic_class->container_class;
5455         offset = property - property->parent->ext->properties;
5456         return gtd->ext->properties + offset;
5457 }
5458