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