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