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