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