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