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