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