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