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