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