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