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