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