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