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