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