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