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