57a7cf2169047919541eeb5b0dd05fb3883eb3c0
[mono.git] / mono / metadata / metadata.c
1 /*
2  * metadata.c: Routines for accessing the metadata
3  *
4  * Authors:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *   Paolo Molaro (lupus@ximian.com)
7  *
8  * (C) 2001-2002 Ximian, Inc.
9  */
10
11 #include <config.h>
12 #include <stdio.h> 
13 #include <stdlib.h>
14 #include <string.h>
15 #include <glib.h>
16 #include "metadata.h"
17 #include "tabledefs.h"
18 #include "mono-endian.h"
19 #include "cil-coff.h"
20 #include "tokentype.h"
21 #include "metadata-internals.h"
22 #include "class-internals.h"
23 #include "class.h"
24
25 static void do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContext *generic_context,
26                                          const char *ptr, const char **rptr);
27
28 static gboolean do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only);
29 static gboolean mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only);
30 static gboolean _mono_metadata_generic_class_equal (const MonoGenericClass *g1, const MonoGenericClass *g2,
31                                                     gboolean signature_only);
32
33 /*
34  * This enumeration is used to describe the data types in the metadata
35  * tables
36  */
37 enum {
38         MONO_MT_END,
39
40         /* Sized elements */
41         MONO_MT_UINT32,
42         MONO_MT_UINT16,
43         MONO_MT_UINT8,
44
45         /* Index into Blob heap */
46         MONO_MT_BLOB_IDX,
47
48         /* Index into String heap */
49         MONO_MT_STRING_IDX,
50
51         /* GUID index */
52         MONO_MT_GUID_IDX,
53
54         /* Pointer into a table */
55         MONO_MT_TABLE_IDX,
56
57         /* HasConstant:Parent pointer (Param, Field or Property) */
58         MONO_MT_CONST_IDX,
59
60         /* HasCustomAttribute index.  Indexes any table except CustomAttribute */
61         MONO_MT_HASCAT_IDX,
62         
63         /* CustomAttributeType encoded index */
64         MONO_MT_CAT_IDX,
65
66         /* HasDeclSecurity index: TypeDef Method or Assembly */
67         MONO_MT_HASDEC_IDX,
68
69         /* Implementation coded index: File, Export AssemblyRef */
70         MONO_MT_IMPL_IDX,
71
72         /* HasFieldMarshal coded index: Field or Param table */
73         MONO_MT_HFM_IDX,
74
75         /* MemberForwardedIndex: Field or Method */
76         MONO_MT_MF_IDX,
77
78         /* TypeDefOrRef coded index: typedef, typeref, typespec */
79         MONO_MT_TDOR_IDX,
80
81         /* MemberRefParent coded index: typeref, moduleref, method, memberref, typesepc, typedef */
82         MONO_MT_MRP_IDX,
83
84         /* MethodDefOrRef coded index: Method or Member Ref table */
85         MONO_MT_MDOR_IDX,
86
87         /* HasSemantic coded index: Event or Property */
88         MONO_MT_HS_IDX,
89
90         /* ResolutionScope coded index: Module, ModuleRef, AssemblytRef, TypeRef */
91         MONO_MT_RS_IDX
92 };
93
94 const static unsigned char AssemblySchema [] = {
95         MONO_MT_UINT32,     /* "HashId" }, */
96         MONO_MT_UINT16,     /* "Major" },  */
97         MONO_MT_UINT16,     /* "Minor" }, */
98         MONO_MT_UINT16,     /* "BuildNumber" }, */
99         MONO_MT_UINT16,     /* "RevisionNumber" }, */
100         MONO_MT_UINT32,     /* "Flags" }, */
101         MONO_MT_BLOB_IDX,   /* "PublicKey" }, */
102         MONO_MT_STRING_IDX, /* "Name" }, */
103         MONO_MT_STRING_IDX, /* "Culture" }, */
104         MONO_MT_END
105 };
106         
107 const static unsigned char AssemblyOSSchema [] = {
108         MONO_MT_UINT32,     /* "OSPlatformID" }, */
109         MONO_MT_UINT32,     /* "OSMajor" }, */
110         MONO_MT_UINT32,     /* "OSMinor" }, */
111         MONO_MT_END
112 };
113
114 const static unsigned char AssemblyProcessorSchema [] = {
115         MONO_MT_UINT32,     /* "Processor" }, */
116         MONO_MT_END
117 };
118
119 const static unsigned char AssemblyRefSchema [] = {
120         MONO_MT_UINT16,     /* "Major" }, */
121         MONO_MT_UINT16,     /* "Minor" }, */
122         MONO_MT_UINT16,     /* "Build" }, */
123         MONO_MT_UINT16,     /* "Revision" }, */
124         MONO_MT_UINT32,     /* "Flags" }, */
125         MONO_MT_BLOB_IDX,   /* "PublicKeyOrToken" }, */
126         MONO_MT_STRING_IDX, /* "Name" }, */
127         MONO_MT_STRING_IDX, /* "Culture" }, */
128         MONO_MT_BLOB_IDX,   /* "HashValue" }, */
129         MONO_MT_END
130 };
131
132 const static unsigned char AssemblyRefOSSchema [] = {
133         MONO_MT_UINT32,     /* "OSPlatformID" }, */
134         MONO_MT_UINT32,     /* "OSMajorVersion" }, */
135         MONO_MT_UINT32,     /* "OSMinorVersion" }, */
136         MONO_MT_TABLE_IDX,  /* "AssemblyRef:AssemblyRef" }, */
137         MONO_MT_END
138 };
139
140 const static unsigned char AssemblyRefProcessorSchema [] = {
141         MONO_MT_UINT32,     /* "Processor" }, */
142         MONO_MT_TABLE_IDX,  /* "AssemblyRef:AssemblyRef" }, */
143         MONO_MT_END
144 };
145
146 const static unsigned char ClassLayoutSchema [] = {
147         MONO_MT_UINT16,     /* "PackingSize" }, */
148         MONO_MT_UINT32,     /* "ClassSize" }, */
149         MONO_MT_TABLE_IDX,  /* "Parent:TypeDef" }, */
150         MONO_MT_END
151 };
152
153 const static unsigned char ConstantSchema [] = {
154         MONO_MT_UINT8,      /* "Type" }, */
155         MONO_MT_UINT8,      /* "PaddingZero" }, */
156         MONO_MT_CONST_IDX,  /* "Parent" }, */
157         MONO_MT_BLOB_IDX,   /* "Value" }, */
158         MONO_MT_END
159 };
160
161 const static unsigned char CustomAttributeSchema [] = {
162         MONO_MT_HASCAT_IDX, /* "Parent" }, */
163         MONO_MT_CAT_IDX,    /* "Type" }, */
164         MONO_MT_BLOB_IDX,   /* "Value" }, */
165         MONO_MT_END
166 };
167
168 const static unsigned char DeclSecuritySchema [] = {
169         MONO_MT_UINT16,     /* "Action" }, */
170         MONO_MT_HASDEC_IDX, /* "Parent" }, */
171         MONO_MT_BLOB_IDX,   /* "PermissionSet" }, */
172         MONO_MT_END
173 };
174
175 const static unsigned char EventMapSchema [] = {
176         MONO_MT_TABLE_IDX,  /* "Parent:TypeDef" }, */
177         MONO_MT_TABLE_IDX,  /* "EventList:Event" }, */
178         MONO_MT_END
179 };
180
181 const static unsigned char EventSchema [] = {
182         MONO_MT_UINT16,     /* "EventFlags#EventAttribute" }, */
183         MONO_MT_STRING_IDX, /* "Name" }, */
184         MONO_MT_TABLE_IDX,  /* "EventType" }, TypeDef or TypeRef  */
185         MONO_MT_END
186 };
187
188 const static unsigned char ExportedTypeSchema [] = {
189         MONO_MT_UINT32,     /* "Flags" }, */
190         MONO_MT_TABLE_IDX,  /* "TypeDefId" }, */
191         MONO_MT_STRING_IDX, /* "TypeName" }, */
192         MONO_MT_STRING_IDX, /* "TypeNameSpace" }, */
193         MONO_MT_IMPL_IDX,   /* "Implementation" }, */
194         MONO_MT_END
195 };
196
197 const static unsigned char FieldSchema [] = {
198         MONO_MT_UINT16,     /* "Flags" }, */
199         MONO_MT_STRING_IDX, /* "Name" }, */
200         MONO_MT_BLOB_IDX,   /* "Signature" }, */
201         MONO_MT_END
202 };
203 const static unsigned char FieldLayoutSchema [] = {
204         MONO_MT_UINT32,     /* "Offset" }, */
205         MONO_MT_TABLE_IDX,  /* "Field:Field" }, */
206         MONO_MT_END
207 };
208
209 const static unsigned char FieldMarshalSchema [] = {
210         MONO_MT_HFM_IDX,    /* "Parent" }, */
211         MONO_MT_BLOB_IDX,   /* "NativeType" }, */
212         MONO_MT_END
213 };
214 const static unsigned char FieldRVASchema [] = {
215         MONO_MT_UINT32,     /* "RVA" }, */
216         MONO_MT_TABLE_IDX,  /* "Field:Field" }, */
217         MONO_MT_END
218 };
219
220 const static unsigned char FileSchema [] = {
221         MONO_MT_UINT32,     /* "Flags" }, */
222         MONO_MT_STRING_IDX, /* "Name" }, */
223         MONO_MT_BLOB_IDX,   /* "Value" },  */
224         MONO_MT_END
225 };
226
227 const static unsigned char ImplMapSchema [] = {
228         MONO_MT_UINT16,     /* "MappingFlag" }, */
229         MONO_MT_MF_IDX,     /* "MemberForwarded" }, */
230         MONO_MT_STRING_IDX, /* "ImportName" }, */
231         MONO_MT_TABLE_IDX,  /* "ImportScope:ModuleRef" }, */
232         MONO_MT_END
233 };
234
235 const static unsigned char InterfaceImplSchema [] = {
236         MONO_MT_TABLE_IDX,  /* "Class:TypeDef" },  */
237         MONO_MT_TDOR_IDX,  /* "Interface=TypeDefOrRef" }, */
238         MONO_MT_END
239 };
240
241 const static unsigned char ManifestResourceSchema [] = {
242         MONO_MT_UINT32,     /* "Offset" }, */
243         MONO_MT_UINT32,     /* "Flags" }, */
244         MONO_MT_STRING_IDX, /* "Name" }, */
245         MONO_MT_IMPL_IDX,   /* "Implementation" }, */
246         MONO_MT_END
247 };
248
249 const static unsigned char MemberRefSchema [] = {
250         MONO_MT_MRP_IDX,    /* "Class" }, */
251         MONO_MT_STRING_IDX, /* "Name" }, */
252         MONO_MT_BLOB_IDX,   /* "Signature" }, */
253         MONO_MT_END
254 };
255
256 const static unsigned char MethodSchema [] = {
257         MONO_MT_UINT32,     /* "RVA" }, */
258         MONO_MT_UINT16,     /* "ImplFlags#MethodImplAttributes" }, */
259         MONO_MT_UINT16,     /* "Flags#MethodAttribute" }, */
260         MONO_MT_STRING_IDX, /* "Name" }, */
261         MONO_MT_BLOB_IDX,   /* "Signature" }, */
262         MONO_MT_TABLE_IDX,  /* "ParamList:Param" }, */
263         MONO_MT_END
264 };
265
266 const static unsigned char MethodImplSchema [] = {
267         MONO_MT_TABLE_IDX,  /* "Class:TypeDef" }, */
268         MONO_MT_MDOR_IDX,   /* "MethodBody" }, */
269         MONO_MT_MDOR_IDX,   /* "MethodDeclaration" }, */
270         MONO_MT_END
271 };
272
273 const static unsigned char MethodSemanticsSchema [] = {
274         MONO_MT_UINT16,     /* "MethodSemantic" }, */
275         MONO_MT_TABLE_IDX,  /* "Method:Method" }, */
276         MONO_MT_HS_IDX,     /* "Association" }, */
277         MONO_MT_END
278 };
279
280 const static unsigned char ModuleSchema [] = {
281         MONO_MT_UINT16,     /* "Generation" }, */
282         MONO_MT_STRING_IDX, /* "Name" }, */
283         MONO_MT_GUID_IDX,   /* "MVID" }, */
284         MONO_MT_GUID_IDX,   /* "EncID" }, */
285         MONO_MT_GUID_IDX,   /* "EncBaseID" }, */
286         MONO_MT_END
287 };
288
289 const static unsigned char ModuleRefSchema [] = {
290         MONO_MT_STRING_IDX, /* "Name" }, */
291         MONO_MT_END
292 };
293
294 const static unsigned char NestedClassSchema [] = {
295         MONO_MT_TABLE_IDX,  /* "NestedClass:TypeDef" }, */
296         MONO_MT_TABLE_IDX,  /* "EnclosingClass:TypeDef" }, */
297         MONO_MT_END
298 };
299
300 const static unsigned char ParamSchema [] = {
301         MONO_MT_UINT16,     /* "Flags" }, */
302         MONO_MT_UINT16,     /* "Sequence" }, */
303         MONO_MT_STRING_IDX, /* "Name" }, */
304         MONO_MT_END
305 };
306
307 const static unsigned char PropertySchema [] = {
308         MONO_MT_UINT16,     /* "Flags" }, */
309         MONO_MT_STRING_IDX, /* "Name" }, */
310         MONO_MT_BLOB_IDX,   /* "Type" }, */
311         MONO_MT_END
312 };
313
314 const static unsigned char PropertyMapSchema [] = {
315         MONO_MT_TABLE_IDX,  /* "Parent:TypeDef" }, */
316         MONO_MT_TABLE_IDX,  /* "PropertyList:Property" }, */
317         MONO_MT_END
318 };
319
320 const static unsigned char StandaloneSigSchema [] = {
321         MONO_MT_BLOB_IDX,   /* "Signature" }, */
322         MONO_MT_END
323 };
324
325 const static unsigned char TypeDefSchema [] = {
326         MONO_MT_UINT32,     /* "Flags" }, */
327         MONO_MT_STRING_IDX, /* "Name" }, */
328         MONO_MT_STRING_IDX, /* "Namespace" }, */
329         MONO_MT_TDOR_IDX,   /* "Extends" }, */
330         MONO_MT_TABLE_IDX,  /* "FieldList:Field" }, */
331         MONO_MT_TABLE_IDX,  /* "MethodList:Method" }, */
332         MONO_MT_END
333 };
334
335 const static unsigned char TypeRefSchema [] = {
336         MONO_MT_RS_IDX,     /* "ResolutionScope=ResolutionScope" }, */
337         MONO_MT_STRING_IDX, /* "Name" }, */
338         MONO_MT_STRING_IDX, /* "Namespace" }, */
339         MONO_MT_END
340 };
341
342 const static unsigned char TypeSpecSchema [] = {
343         MONO_MT_BLOB_IDX,   /* "Signature" }, */
344         MONO_MT_END
345 };
346
347 const static unsigned char GenericParamSchema [] = {
348         MONO_MT_UINT16,     /* "Number" }, */
349         MONO_MT_UINT16,     /* "Flags" }, */
350         MONO_MT_TABLE_IDX,  /* "Owner" },  TypeDef or MethodDef */
351         MONO_MT_STRING_IDX, /* "Name" }, */
352
353         MONO_MT_END
354 };
355
356 const static unsigned char MethodSpecSchema [] = {
357         MONO_MT_MDOR_IDX,   /* "Method" }, */
358         MONO_MT_BLOB_IDX,   /* "Signature" }, */
359         MONO_MT_END
360 };
361
362 const static unsigned char GenericParamConstraintSchema [] = {
363         MONO_MT_TABLE_IDX,  /* "GenericParam" }, */
364         MONO_MT_TDOR_IDX,   /* "Constraint" }, */
365         MONO_MT_END
366 };
367
368 const static struct {
369         const unsigned char *description;
370         const char    *name;
371 } tables [] = {
372         /*  0 */ { ModuleSchema,               "Module" },
373         /*  1 */ { TypeRefSchema,              "TypeRef" },
374         /*  2 */ { TypeDefSchema,              "TypeDef" },
375         /*  3 */ { NULL,                       NULL },
376         /*  4 */ { FieldSchema,                "Field" },
377         /*  5 */ { NULL,                       NULL },
378         /*  6 */ { MethodSchema,               "Method" },
379         /*  7 */ { NULL,                       NULL },
380         /*  8 */ { ParamSchema,                "Param" },
381         /*  9 */ { InterfaceImplSchema,        "InterfaceImpl" },
382         /*  A */ { MemberRefSchema,            "MemberRef" },
383         /*  B */ { ConstantSchema,             "Constant" },
384         /*  C */ { CustomAttributeSchema,      "CustomAttribute" },
385         /*  D */ { FieldMarshalSchema,         "FieldMarshal" },
386         /*  E */ { DeclSecuritySchema,         "DeclSecurity" },
387         /*  F */ { ClassLayoutSchema,          "ClassLayout" },
388         /* 10 */ { FieldLayoutSchema,          "FieldLayout" },
389         /* 11 */ { StandaloneSigSchema,        "StandaloneSig" },
390         /* 12 */ { EventMapSchema,             "EventMap" },
391         /* 13 */ { NULL,                       NULL },
392         /* 14 */ { EventSchema,                "Event" },
393         /* 15 */ { PropertyMapSchema,          "PropertyMap" },
394         /* 16 */ { NULL,                       NULL },
395         /* 17 */ { PropertySchema,             "PropertyTable" },
396         /* 18 */ { MethodSemanticsSchema,      "MethodSemantics" },
397         /* 19 */ { MethodImplSchema,           "MethodImpl" },
398         /* 1A */ { ModuleRefSchema,            "ModuleRef" },
399         /* 1B */ { TypeSpecSchema,             "TypeSpec" },
400         /* 1C */ { ImplMapSchema,              "ImplMap" },
401         /* 1D */ { FieldRVASchema,             "FieldRVA" },
402         /* 1E */ { NULL,                       NULL },
403         /* 1F */ { NULL,                       NULL },
404         /* 20 */ { AssemblySchema,             "Assembly" },
405         /* 21 */ { AssemblyProcessorSchema,    "AssemblyProcessor" },
406         /* 22 */ { AssemblyOSSchema,           "AssemblyOS" },
407         /* 23 */ { AssemblyRefSchema,          "AssemblyRef" },
408         /* 24 */ { AssemblyRefProcessorSchema, "AssemblyRefProcessor" },
409         /* 25 */ { AssemblyRefOSSchema,        "AssemblyRefOS" },
410         /* 26 */ { FileSchema,                 "File" },
411         /* 27 */ { ExportedTypeSchema,         "ExportedType" },
412         /* 28 */ { ManifestResourceSchema,     "ManifestResource" },
413         /* 29 */ { NestedClassSchema,          "NestedClass" },
414         /* 2A */ { GenericParamSchema,         "GenericParam" },
415         /* 2B */ { MethodSpecSchema,           "MethodSpec" },
416         /* 2C */ { GenericParamConstraintSchema, "GenericParamConstraint" },
417 };
418
419 /**
420  * mono_meta_table_name:
421  * @table: table index
422  *
423  * Returns: the name for the @table index
424  */
425 const char *
426 mono_meta_table_name (int table)
427 {
428         if ((table < 0) || (table > 0x2c))
429                 return "";
430         
431         return tables [table].name;
432 }
433
434 /* The guy who wrote the spec for this should not be allowed near a
435  * computer again.
436  
437 If  e is a coded token(see clause 23.1.7) that points into table ti out of n possible tables t0, .. tn-1, 
438 then it is stored as e << (log n) & tag{ t0, .. tn-1}[ ti] using 2 bytes if the maximum number of 
439 rows of tables t0, ..tn-1, is less than 2^16 - (log n), and using 4 bytes otherwise. The family of 
440 finite maps tag{ t0, ..tn-1} is defined below. Note that to decode a physical row, you need the 
441 inverse of this mapping.
442
443  */
444 #define rtsize(s,b) (((s) < (1 << (b)) ? 2 : 4))
445 #define idx_size(tableidx) (meta->tables [(tableidx)].rows < 65536 ? 2 : 4)
446
447 /* Reference: Partition II - 23.2.6 */
448 /*
449  * mono_metadata_compute_size:
450  * @meta: metadata context
451  * @tableindex: metadata table number
452  * @result_bitfield: pointer to guint32 where to store additional info
453  * 
454  * mono_metadata_compute_size() computes the lenght in bytes of a single
455  * row in a metadata table. The size of each column is encoded in the
456  * @result_bitfield return value along with the number of columns in the table.
457  * the resulting bitfield should be handed to the mono_metadata_table_size()
458  * and mono_metadata_table_count() macros.
459  * This is a Mono runtime internal only function.
460  */
461 int
462 mono_metadata_compute_size (MonoImage *meta, int tableindex, guint32 *result_bitfield)
463 {
464         guint32 bitfield = 0;
465         int size = 0, field_size = 0;
466         int i, n, code;
467         int shift = 0;
468         const unsigned char *description = tables [tableindex].description;
469
470         for (i = 0; (code = description [i]) != MONO_MT_END; i++){
471                 switch (code){
472                 case MONO_MT_UINT32:
473                         field_size = 4; break;
474                         
475                 case MONO_MT_UINT16:
476                         field_size = 2; break;
477                         
478                 case MONO_MT_UINT8:
479                         field_size = 1; break;
480                         
481                 case MONO_MT_BLOB_IDX:
482                         field_size = meta->idx_blob_wide ? 4 : 2; break;
483                         
484                 case MONO_MT_STRING_IDX:
485                         field_size = meta->idx_string_wide ? 4 : 2; break;
486                         
487                 case MONO_MT_GUID_IDX:
488                         field_size = meta->idx_guid_wide ? 4 : 2; break;
489
490                 case MONO_MT_TABLE_IDX:
491                         /* Uhm, a table index can point to other tables besides the current one
492                          * so, it's not correct to use the rowcount of the current table to
493                          * get the size for this column - lupus 
494                          */
495                         switch (tableindex) {
496                         case MONO_TABLE_ASSEMBLYREFOS:
497                                 g_assert (i == 3);
498                                 field_size = idx_size (MONO_TABLE_ASSEMBLYREF); break;
499                         case MONO_TABLE_ASSEMBLYPROCESSOR:
500                                 g_assert (i == 1);
501                                 field_size = idx_size (MONO_TABLE_ASSEMBLYREF); break;
502                         case MONO_TABLE_CLASSLAYOUT:
503                                 g_assert (i == 2);
504                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
505                         case MONO_TABLE_EVENTMAP:
506                                 g_assert (i == 0 || i == 1);
507                                 field_size = i ? idx_size (MONO_TABLE_EVENT):
508                                         idx_size(MONO_TABLE_TYPEDEF); 
509                                 break;
510                         case MONO_TABLE_EVENT:
511                                 g_assert (i == 2);
512                                 field_size = MAX (idx_size (MONO_TABLE_TYPEDEF), idx_size(MONO_TABLE_TYPEREF));
513                                 field_size = MAX (field_size, idx_size(MONO_TABLE_TYPESPEC));
514                                 break;
515                         case MONO_TABLE_EXPORTEDTYPE:
516                                 g_assert (i == 1);
517                                 /* the index is in another metadata file, so it must be 4 */
518                                 field_size = 4; break;
519                         case MONO_TABLE_FIELDLAYOUT:
520                                 g_assert (i == 1);
521                                 field_size = idx_size (MONO_TABLE_FIELD); break;
522                         case MONO_TABLE_FIELDRVA:
523                                 g_assert (i == 1);
524                                 field_size = idx_size (MONO_TABLE_FIELD); break;
525                         case MONO_TABLE_IMPLMAP:
526                                 g_assert (i == 3);
527                                 field_size = idx_size (MONO_TABLE_MODULEREF); break;
528                         case MONO_TABLE_INTERFACEIMPL:
529                                 g_assert (i == 0);
530                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
531                         case MONO_TABLE_METHOD:
532                                 g_assert (i == 5);
533                                 field_size = idx_size (MONO_TABLE_PARAM); break;
534                         case MONO_TABLE_METHODIMPL:
535                                 g_assert (i == 0);
536                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
537                         case MONO_TABLE_METHODSEMANTICS:
538                                 g_assert (i == 1);
539                                 field_size = idx_size (MONO_TABLE_METHOD); break;
540                         case MONO_TABLE_NESTEDCLASS:
541                                 g_assert (i == 0 || i == 1);
542                                 field_size = idx_size (MONO_TABLE_TYPEDEF); break;
543                         case MONO_TABLE_PROPERTYMAP:
544                                 g_assert (i == 0 || i == 1);
545                                 field_size = i ? idx_size (MONO_TABLE_PROPERTY):
546                                         idx_size(MONO_TABLE_TYPEDEF); 
547                                 break;
548                         case MONO_TABLE_TYPEDEF:
549                                 g_assert (i == 4 || i == 5);
550                                 field_size = i == 4 ? idx_size (MONO_TABLE_FIELD):
551                                         idx_size(MONO_TABLE_METHOD);
552                                 break;
553                         case MONO_TABLE_GENERICPARAM:
554                                 g_assert (i == 2 || i == 4 || i == 5);
555                                 if (i == 2)
556                                         field_size = MAX (idx_size (MONO_TABLE_METHOD), idx_size (MONO_TABLE_TYPEDEF));
557                                 else if (i == 4)
558                                         field_size = idx_size (MONO_TABLE_TYPEDEF);
559                                 else if (i == 5)
560                                         field_size = idx_size (MONO_TABLE_TYPEDEF);
561                                 break;
562
563                         case MONO_TABLE_GENERICPARAMCONSTRAINT:
564                                 g_assert (i == 0);
565                                 field_size = idx_size (MONO_TABLE_GENERICPARAM);
566                                 break;
567                                 
568                         default:
569                                 g_assert_not_reached ();
570                         }
571                         break;
572
573                         /*
574                          * HasConstant: ParamDef, FieldDef, Property
575                          */
576                 case MONO_MT_CONST_IDX:
577                         n = MAX (meta->tables [MONO_TABLE_PARAM].rows,
578                                  meta->tables [MONO_TABLE_FIELD].rows);
579                         n = MAX (n, meta->tables [MONO_TABLE_PROPERTY].rows);
580
581                         /* 2 bits to encode tag */
582                         field_size = rtsize (n, 16-2);
583                         break;
584
585                         /*
586                          * HasCustomAttribute: points to any table but
587                          * itself.
588                          */
589                 case MONO_MT_HASCAT_IDX:
590                         /*
591                          * We believe that since the signature and
592                          * permission are indexing the Blob heap,
593                          * we should consider the blob size first
594                          */
595                         /* I'm not a believer - lupus
596                         if (meta->idx_blob_wide){
597                                 field_size = 4;
598                                 break;
599                         }*/
600                         
601                         n = MAX (meta->tables [MONO_TABLE_METHOD].rows,
602                                  meta->tables [MONO_TABLE_FIELD].rows);
603                         n = MAX (n, meta->tables [MONO_TABLE_TYPEREF].rows);
604                         n = MAX (n, meta->tables [MONO_TABLE_TYPEDEF].rows);
605                         n = MAX (n, meta->tables [MONO_TABLE_PARAM].rows);
606                         n = MAX (n, meta->tables [MONO_TABLE_INTERFACEIMPL].rows);
607                         n = MAX (n, meta->tables [MONO_TABLE_MEMBERREF].rows);
608                         n = MAX (n, meta->tables [MONO_TABLE_MODULE].rows);
609                         n = MAX (n, meta->tables [MONO_TABLE_DECLSECURITY].rows);
610                         n = MAX (n, meta->tables [MONO_TABLE_PROPERTY].rows);
611                         n = MAX (n, meta->tables [MONO_TABLE_EVENT].rows);
612                         n = MAX (n, meta->tables [MONO_TABLE_STANDALONESIG].rows);
613                         n = MAX (n, meta->tables [MONO_TABLE_MODULEREF].rows);
614                         n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
615                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLY].rows);
616                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLYREF].rows);
617                         n = MAX (n, meta->tables [MONO_TABLE_FILE].rows);
618                         n = MAX (n, meta->tables [MONO_TABLE_EXPORTEDTYPE].rows);
619                         n = MAX (n, meta->tables [MONO_TABLE_MANIFESTRESOURCE].rows);
620
621                         /* 5 bits to encode */
622                         field_size = rtsize (n, 16-5);
623                         break;
624
625                         /*
626                          * CustomAttributeType: TypeDef, TypeRef, MethodDef, 
627                          * MemberRef and String.  
628                          */
629                 case MONO_MT_CAT_IDX:
630                         /* String is a heap, if it is wide, we know the size */
631                         /* See above, nope. 
632                         if (meta->idx_string_wide){
633                                 field_size = 4;
634                                 break;
635                         }*/
636                         
637                         n = MAX (meta->tables [MONO_TABLE_TYPEREF].rows,
638                                  meta->tables [MONO_TABLE_TYPEDEF].rows);
639                         n = MAX (n, meta->tables [MONO_TABLE_METHOD].rows);
640                         n = MAX (n, meta->tables [MONO_TABLE_MEMBERREF].rows);
641
642                         /* 3 bits to encode */
643                         field_size = rtsize (n, 16-3);
644                         break;
645
646                         /*
647                          * HasDeclSecurity: Typedef, MethodDef, Assembly
648                          */
649                 case MONO_MT_HASDEC_IDX:
650                         n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows,
651                                  meta->tables [MONO_TABLE_METHOD].rows);
652                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLY].rows);
653
654                         /* 2 bits to encode */
655                         field_size = rtsize (n, 16-2);
656                         break;
657
658                         /*
659                          * Implementation: File, AssemblyRef, ExportedType
660                          */
661                 case MONO_MT_IMPL_IDX:
662                         n = MAX (meta->tables [MONO_TABLE_FILE].rows,
663                                  meta->tables [MONO_TABLE_ASSEMBLYREF].rows);
664                         n = MAX (n, meta->tables [MONO_TABLE_EXPORTEDTYPE].rows);
665
666                         /* 2 bits to encode tag */
667                         field_size = rtsize (n, 16-2);
668                         break;
669
670                         /*
671                          * HasFieldMarshall: FieldDef, ParamDef
672                          */
673                 case MONO_MT_HFM_IDX:
674                         n = MAX (meta->tables [MONO_TABLE_FIELD].rows,
675                                  meta->tables [MONO_TABLE_PARAM].rows);
676
677                         /* 1 bit used to encode tag */
678                         field_size = rtsize (n, 16-1);
679                         break;
680
681                         /*
682                          * MemberForwarded: FieldDef, MethodDef
683                          */
684                 case MONO_MT_MF_IDX:
685                         n = MAX (meta->tables [MONO_TABLE_FIELD].rows,
686                                  meta->tables [MONO_TABLE_METHOD].rows);
687
688                         /* 1 bit used to encode tag */
689                         field_size = rtsize (n, 16-1);
690                         break;
691
692                         /*
693                          * TypeDefOrRef: TypeDef, ParamDef, TypeSpec
694                          * LAMESPEC
695                          * It is TypeDef, _TypeRef_, TypeSpec, instead.
696                          */
697                 case MONO_MT_TDOR_IDX:
698                         n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows,
699                                  meta->tables [MONO_TABLE_TYPEREF].rows);
700                         n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
701
702                         /* 2 bits to encode */
703                         field_size = rtsize (n, 16-2);
704                         break;
705
706                         /*
707                          * MemberRefParent: TypeDef, TypeRef, MethodDef, ModuleRef, TypeSpec, MemberRef
708                          */
709                 case MONO_MT_MRP_IDX:
710                         n = MAX (meta->tables [MONO_TABLE_TYPEDEF].rows,
711                                  meta->tables [MONO_TABLE_TYPEREF].rows);
712                         n = MAX (n, meta->tables [MONO_TABLE_METHOD].rows);
713                         n = MAX (n, meta->tables [MONO_TABLE_MODULEREF].rows);
714                         n = MAX (n, meta->tables [MONO_TABLE_TYPESPEC].rows);
715                         n = MAX (n, meta->tables [MONO_TABLE_MEMBERREF].rows);
716
717                         /* 3 bits to encode */
718                         field_size = rtsize (n, 16 - 3);
719                         break;
720                         
721                         /*
722                          * MethodDefOrRef: MethodDef, MemberRef
723                          */
724                 case MONO_MT_MDOR_IDX:
725                         n = MAX (meta->tables [MONO_TABLE_METHOD].rows,
726                                  meta->tables [MONO_TABLE_MEMBERREF].rows);
727
728                         /* 1 bit used to encode tag */
729                         field_size = rtsize (n, 16-1);
730                         break;
731                         
732                         /*
733                          * HasSemantics: Property, Event
734                          */
735                 case MONO_MT_HS_IDX:
736                         n = MAX (meta->tables [MONO_TABLE_PROPERTY].rows,
737                                  meta->tables [MONO_TABLE_EVENT].rows);
738
739                         /* 1 bit used to encode tag */
740                         field_size = rtsize (n, 16-1);
741                         break;
742
743                         /*
744                          * ResolutionScope: Module, ModuleRef, AssemblyRef, TypeRef
745                          */
746                 case MONO_MT_RS_IDX:
747                         n = MAX (meta->tables [MONO_TABLE_MODULE].rows,
748                                  meta->tables [MONO_TABLE_MODULEREF].rows);
749                         n = MAX (n, meta->tables [MONO_TABLE_ASSEMBLYREF].rows);
750                         n = MAX (n, meta->tables [MONO_TABLE_TYPEREF].rows);
751
752                         /* 2 bits used to encode tag (ECMA spec claims 3) */
753                         field_size = rtsize (n, 16 - 2);
754                         break;
755                 }
756
757                 /*
758                  * encode field size as follows (we just need to
759                  * distinguish them).
760                  *
761                  * 4 -> 3
762                  * 2 -> 1
763                  * 1 -> 0
764                  */
765                 bitfield |= (field_size-1) << shift;
766                 shift += 2;
767                 size += field_size;
768                 /*g_print ("table %02x field %d size %d\n", tableindex, i, field_size);*/
769         }
770
771         *result_bitfield = (i << 24) | bitfield;
772         return size;
773 }
774
775 /**
776  * mono_metadata_compute_table_bases:
777  * @meta: metadata context to compute table values
778  *
779  * Computes the table bases for the metadata structure.
780  * This is an internal function used by the image loader code.
781  */
782 void
783 mono_metadata_compute_table_bases (MonoImage *meta)
784 {
785         int i;
786         const char *base = meta->tables_base;
787         
788         for (i = 0; i < MONO_TABLE_NUM; i++) {
789                 MonoTableInfo *table = &meta->tables [i];
790                 if (table->rows == 0)
791                         continue;
792
793                 table->row_size = mono_metadata_compute_size (meta, i, &table->size_bitfield);
794                 table->base = base;
795                 base += table->rows * table->row_size;
796         }
797 }
798
799 /**
800  * mono_metadata_locate:
801  * @meta: metadata context
802  * @table: table code.
803  * @idx: index of element to retrieve from @table.
804  *
805  * Returns: a pointer to the @idx element in the metadata table
806  * whose code is @table.
807  */
808 const char *
809 mono_metadata_locate (MonoImage *meta, int table, int idx)
810 {
811         /* idx == 0 refers always to NULL */
812         g_return_val_if_fail (idx > 0 && idx <= meta->tables [table].rows, "");
813            
814         return meta->tables [table].base + (meta->tables [table].row_size * (idx - 1));
815 }
816
817 /**
818  * mono_metadata_locate_token:
819  * @meta: metadata context
820  * @token: metadata token
821  *
822  * Returns: a pointer to the data in the metadata represented by the
823  * token #token.
824  */
825 const char *
826 mono_metadata_locate_token (MonoImage *meta, guint32 token)
827 {
828         return mono_metadata_locate (meta, token >> 24, token & 0xffffff);
829 }
830
831 /**
832  * mono_metadata_string_heap:
833  * @meta: metadata context
834  * @index: index into the string heap.
835  *
836  * Returns: an in-memory pointer to the @index in the string heap.
837  */
838 const char *
839 mono_metadata_string_heap (MonoImage *meta, guint32 index)
840 {
841         g_return_val_if_fail (index < meta->heap_strings.size, "");
842         return meta->heap_strings.data + index;
843 }
844
845 /**
846  * mono_metadata_user_string:
847  * @meta: metadata context
848  * @index: index into the user string heap.
849  *
850  * Returns: an in-memory pointer to the @index in the user string heap ("#US").
851  */
852 const char *
853 mono_metadata_user_string (MonoImage *meta, guint32 index)
854 {
855         g_return_val_if_fail (index < meta->heap_us.size, "");
856         return meta->heap_us.data + index;
857 }
858
859 /**
860  * mono_metadata_blob_heap:
861  * @meta: metadata context
862  * @index: index into the blob.
863  *
864  * Returns: an in-memory pointer to the @index in the Blob heap.
865  */
866 const char *
867 mono_metadata_blob_heap (MonoImage *meta, guint32 index)
868 {
869         g_return_val_if_fail (index < meta->heap_blob.size, "");
870         return meta->heap_blob.data + index;
871 }
872
873 /**
874  * mono_metadata_guid_heap:
875  * @meta: metadata context
876  * @index: index into the guid heap.
877  *
878  * Returns: an in-memory pointer to the @index in the guid heap.
879  */
880 const char *
881 mono_metadata_guid_heap (MonoImage *meta, guint32 index)
882 {
883         --index;
884         index *= 16; /* adjust for guid size and 1-based index */
885         g_return_val_if_fail (index < meta->heap_guid.size, "");
886         return meta->heap_guid.data + index;
887 }
888
889 static const char *
890 dword_align (const char *ptr)
891 {
892 #if SIZEOF_VOID_P == 8
893         return (const char *) (((guint64) (ptr + 3)) & ~3);
894 #else
895         return (const char *) (((guint32) (ptr + 3)) & ~3);
896 #endif
897 }
898
899 /**
900  * mono_metadata_decode_row:
901  * @t: table to extract information from.
902  * @idx: index in table.
903  * @res: array of @res_size cols to store the results in
904  *
905  * This decompresses the metadata element @idx in table @t
906  * into the guint32 @res array that has res_size elements
907  */
908 void
909 mono_metadata_decode_row (const MonoTableInfo *t, int idx, guint32 *res, int res_size)
910 {
911         guint32 bitfield = t->size_bitfield;
912         int i, count = mono_metadata_table_count (bitfield);
913         const char *data = t->base + idx * t->row_size;
914         
915         g_assert (res_size == count);
916         
917         for (i = 0; i < count; i++) {
918                 int n = mono_metadata_table_size (bitfield, i);
919
920                 switch (n){
921                 case 1:
922                         res [i] = *data; break;
923                 case 2:
924                         res [i] = read16 (data); break;
925                 case 4:
926                         res [i] = read32 (data); break;
927                 default:
928                         g_assert_not_reached ();
929                 }
930                 data += n;
931         }
932 }
933
934 /**
935  * mono_metadata_decode_row_col:
936  * @t: table to extract information from.
937  * @idx: index for row in table.
938  * @col: column in the row.
939  *
940  * This function returns the value of column @col from the @idx
941  * row in the table @t.
942  */
943 guint32
944 mono_metadata_decode_row_col (const MonoTableInfo *t, int idx, guint col)
945 {
946         guint32 bitfield = t->size_bitfield;
947         int i;
948         register const char *data = t->base + idx * t->row_size;
949         register int n;
950         
951         g_assert (col < mono_metadata_table_count (bitfield));
952
953         n = mono_metadata_table_size (bitfield, 0);
954         for (i = 0; i < col; ++i) {
955                 data += n;
956                 n = mono_metadata_table_size (bitfield, i + 1);
957         }
958         switch (n) {
959         case 1:
960                 return *data;
961         case 2:
962                 return read16 (data);
963         case 4:
964                 return read32 (data);
965         default:
966                 g_assert_not_reached ();
967         }
968         return 0;
969 }
970 /**
971  * mono_metadata_decode_blob_size:
972  * @ptr: pointer to a blob object
973  * @rptr: the new position of the pointer
974  *
975  * This decodes a compressed size as described by 23.1.4 (a blob or user string object)
976  *
977  * Returns: the size of the blob object
978  */
979 guint32
980 mono_metadata_decode_blob_size (const char *xptr, const char **rptr)
981 {
982         const unsigned char *ptr = (const unsigned char *)xptr;
983         guint32 size;
984         
985         if ((*ptr & 0x80) == 0){
986                 size = ptr [0] & 0x7f;
987                 ptr++;
988         } else if ((*ptr & 0x40) == 0){
989                 size = ((ptr [0] & 0x3f) << 8) + ptr [1];
990                 ptr += 2;
991         } else {
992                 size = ((ptr [0] & 0x1f) << 24) +
993                         (ptr [1] << 16) +
994                         (ptr [2] << 8) +
995                         ptr [3];
996                 ptr += 4;
997         }
998         if (rptr)
999                 *rptr = ptr;
1000         return size;
1001 }
1002
1003
1004 /**
1005  * mono_metadata_decode_value:
1006  * @ptr: pointer to decode from
1007  * @rptr: the new position of the pointer
1008  *
1009  * This routine decompresses 32-bit values as specified in the "Blob and
1010  * Signature" section (22.2)
1011  *
1012  * Returns: the decoded value
1013  */
1014 guint32
1015 mono_metadata_decode_value (const char *_ptr, const char **rptr)
1016 {
1017         const unsigned char *ptr = (const unsigned char *) _ptr;
1018         unsigned char b = *ptr;
1019         guint32 len;
1020         
1021         if ((b & 0x80) == 0){
1022                 len = b;
1023                 ++ptr;
1024         } else if ((b & 0x40) == 0){
1025                 len = ((b & 0x3f) << 8 | ptr [1]);
1026                 ptr += 2;
1027         } else {
1028                 len = ((b & 0x1f) << 24) |
1029                         (ptr [1] << 16) |
1030                         (ptr [2] << 8) |
1031                         ptr [3];
1032                 ptr += 4;
1033         }
1034         if (rptr)
1035                 *rptr = ptr;
1036         
1037         return len;
1038 }
1039
1040 /*
1041  * mono_metadata_parse_typedef_or_ref:
1042  * @m: a metadata context.
1043  * @ptr: a pointer to an encoded TypedefOrRef in @m
1044  * @rptr: pointer updated to match the end of the decoded stream
1045  *
1046  * Returns: a token valid in the @m metadata decoded from
1047  * the compressed representation.
1048  */
1049 guint32
1050 mono_metadata_parse_typedef_or_ref (MonoImage *m, const char *ptr, const char **rptr)
1051 {
1052         guint32 token;
1053         token = mono_metadata_decode_value (ptr, &ptr);
1054         if (rptr)
1055                 *rptr = ptr;
1056         return mono_metadata_token_from_dor (token);
1057 }
1058
1059 /*
1060  * mono_metadata_parse_custom_mod:
1061  * @m: a metadata context.
1062  * @dest: storage where the info about the custom modifier is stored (may be NULL)
1063  * @ptr: a pointer to (possibly) the start of a custom modifier list
1064  * @rptr: pointer updated to match the end of the decoded stream
1065  *
1066  * Checks if @ptr points to a type custom modifier compressed representation.
1067  *
1068  * Returns: #TRUE if a custom modifier was found, #FALSE if not.
1069  */
1070 int
1071 mono_metadata_parse_custom_mod (MonoImage *m, MonoCustomMod *dest, const char *ptr, const char **rptr)
1072 {
1073         MonoCustomMod local;
1074         if ((*ptr == MONO_TYPE_CMOD_OPT) || (*ptr == MONO_TYPE_CMOD_REQD)) {
1075                 if (!dest)
1076                         dest = &local;
1077                 dest->required = *ptr == MONO_TYPE_CMOD_REQD ? 1 : 0;
1078                 dest->token = mono_metadata_parse_typedef_or_ref (m, ptr + 1, rptr);
1079                 return TRUE;
1080         }
1081         return FALSE;
1082 }
1083
1084 /*
1085  * mono_metadata_parse_array:
1086  * @m: a metadata context.
1087  * @ptr: a pointer to an encoded array description.
1088  * @rptr: pointer updated to match the end of the decoded stream
1089  *
1090  * Decodes the compressed array description found in the metadata @m at @ptr.
1091  *
1092  * Returns: a #MonoArrayType structure describing the array type
1093  * and dimensions.
1094  */
1095 MonoArrayType *
1096 mono_metadata_parse_array_full (MonoImage *m, MonoGenericContext *generic_context,
1097                                 const char *ptr, const char **rptr)
1098 {
1099         int i;
1100         MonoArrayType *array = g_new0 (MonoArrayType, 1);
1101         MonoType *etype;
1102         
1103         etype = mono_metadata_parse_type_full (m, generic_context, MONO_PARSE_TYPE, 0, ptr, &ptr);
1104         array->eklass = mono_class_from_mono_type (etype);
1105         array->rank = mono_metadata_decode_value (ptr, &ptr);
1106
1107         array->numsizes = mono_metadata_decode_value (ptr, &ptr);
1108         if (array->numsizes)
1109                 array->sizes = g_new0 (int, array->numsizes);
1110         for (i = 0; i < array->numsizes; ++i)
1111                 array->sizes [i] = mono_metadata_decode_value (ptr, &ptr);
1112
1113         array->numlobounds = mono_metadata_decode_value (ptr, &ptr);
1114         if (array->numlobounds)
1115                 array->lobounds = g_new0 (int, array->numlobounds);
1116         for (i = 0; i < array->numlobounds; ++i)
1117                 array->lobounds [i] = mono_metadata_decode_value (ptr, &ptr);
1118
1119         if (rptr)
1120                 *rptr = ptr;
1121         return array;
1122 }
1123
1124 MonoArrayType *
1125 mono_metadata_parse_array (MonoImage *m, const char *ptr, const char **rptr)
1126 {
1127         return mono_metadata_parse_array_full (m, NULL, ptr, rptr);
1128 }
1129
1130 /*
1131  * mono_metadata_free_array:
1132  * @array: array description
1133  *
1134  * Frees the array description returned from mono_metadata_parse_array().
1135  */
1136 void
1137 mono_metadata_free_array (MonoArrayType *array)
1138 {
1139         g_free (array->sizes);
1140         g_free (array->lobounds);
1141         g_free (array);
1142 }
1143
1144 /*
1145  * need to add common field and param attributes combinations:
1146  * [out] param
1147  * public static
1148  * public static literal
1149  * private
1150  * private static
1151  * private static literal
1152  */
1153 static const MonoType
1154 builtin_types[] = {
1155         /* data, attrs, type,              nmods, byref, pinned */
1156         {{NULL}, 0,     MONO_TYPE_VOID,    0,     0,     0},
1157         {{NULL}, 0,     MONO_TYPE_BOOLEAN, 0,     0,     0},
1158         {{NULL}, 0,     MONO_TYPE_BOOLEAN, 0,     1,     0},
1159         {{NULL}, 0,     MONO_TYPE_CHAR,    0,     0,     0},
1160         {{NULL}, 0,     MONO_TYPE_CHAR,    0,     1,     0},
1161         {{NULL}, 0,     MONO_TYPE_I1,      0,     0,     0},
1162         {{NULL}, 0,     MONO_TYPE_I1,      0,     1,     0},
1163         {{NULL}, 0,     MONO_TYPE_U1,      0,     0,     0},
1164         {{NULL}, 0,     MONO_TYPE_U1,      0,     1,     0},
1165         {{NULL}, 0,     MONO_TYPE_I2,      0,     0,     0},
1166         {{NULL}, 0,     MONO_TYPE_I2,      0,     1,     0},
1167         {{NULL}, 0,     MONO_TYPE_U2,      0,     0,     0},
1168         {{NULL}, 0,     MONO_TYPE_U2,      0,     1,     0},
1169         {{NULL}, 0,     MONO_TYPE_I4,      0,     0,     0},
1170         {{NULL}, 0,     MONO_TYPE_I4,      0,     1,     0},
1171         {{NULL}, 0,     MONO_TYPE_U4,      0,     0,     0},
1172         {{NULL}, 0,     MONO_TYPE_U4,      0,     1,     0},
1173         {{NULL}, 0,     MONO_TYPE_I8,      0,     0,     0},
1174         {{NULL}, 0,     MONO_TYPE_I8,      0,     1,     0},
1175         {{NULL}, 0,     MONO_TYPE_U8,      0,     0,     0},
1176         {{NULL}, 0,     MONO_TYPE_U8,      0,     1,     0},
1177         {{NULL}, 0,     MONO_TYPE_R4,      0,     0,     0},
1178         {{NULL}, 0,     MONO_TYPE_R4,      0,     1,     0},
1179         {{NULL}, 0,     MONO_TYPE_R8,      0,     0,     0},
1180         {{NULL}, 0,     MONO_TYPE_R8,      0,     1,     0},
1181         {{NULL}, 0,     MONO_TYPE_STRING,  0,     0,     0},
1182         {{NULL}, 0,     MONO_TYPE_STRING,  0,     1,     0},
1183         {{NULL}, 0,     MONO_TYPE_OBJECT,  0,     0,     0},
1184         {{NULL}, 0,     MONO_TYPE_OBJECT,  0,     1,     0},
1185         {{NULL}, 0,     MONO_TYPE_TYPEDBYREF,  0,     0,     0},
1186         {{NULL}, 0,     MONO_TYPE_I,       0,     0,     0},
1187         {{NULL}, 0,     MONO_TYPE_I,       0,     1,     0},
1188         {{NULL}, 0,     MONO_TYPE_U,       0,     0,     0},
1189         {{NULL}, 0,     MONO_TYPE_U,       0,     1,     0},
1190 };
1191
1192 #define NBUILTIN_TYPES() (sizeof (builtin_types) / sizeof (builtin_types [0]))
1193
1194 static GHashTable *type_cache = NULL;
1195 static GHashTable *generic_inst_cache = NULL;
1196 static GHashTable *generic_class_cache = NULL;
1197 static int next_generic_inst_id = 0;
1198
1199 static guint mono_generic_class_hash (gconstpointer data);
1200
1201 /*
1202  * MonoTypes with modifies are never cached, so we never check or use that field.
1203  */
1204 static guint
1205 mono_type_hash (gconstpointer data)
1206 {
1207         const MonoType *type = (const MonoType *) data;
1208         if (type->type == MONO_TYPE_GENERICINST)
1209                 return mono_generic_class_hash (type->data.generic_class);
1210         else
1211                 return type->type | (type->byref << 8) | (type->attrs << 9);
1212 }
1213
1214 static gint
1215 mono_type_equal (gconstpointer ka, gconstpointer kb)
1216 {
1217         const MonoType *a = (const MonoType *) ka;
1218         const MonoType *b = (const MonoType *) kb;
1219         
1220         if (a->type != b->type || a->byref != b->byref || a->attrs != b->attrs || a->pinned != b->pinned)
1221                 return 0;
1222         /* need other checks */
1223         return 1;
1224 }
1225
1226 static guint
1227 mono_generic_inst_hash (gconstpointer data)
1228 {
1229         const MonoGenericInst *ginst = (const MonoGenericInst *) data;
1230         guint hash = 0;
1231         int i;
1232         
1233         for (i = 0; i < ginst->type_argc; ++i) {
1234                 hash *= 13;
1235                 hash += mono_metadata_type_hash (ginst->type_argv [i]);
1236         }
1237
1238         return hash ^ (ginst->is_open << 8);
1239 }
1240
1241 static gboolean
1242 mono_generic_inst_equal (gconstpointer ka, gconstpointer kb)
1243 {
1244         const MonoGenericInst *a = (const MonoGenericInst *) ka;
1245         const MonoGenericInst *b = (const MonoGenericInst *) kb;
1246         int i;
1247
1248         if ((a->is_open != b->is_open) || (a->type_argc != b->type_argc) || (a->is_reference != b->is_reference))
1249                 return FALSE;
1250         for (i = 0; i < a->type_argc; ++i) {
1251                 if (!do_mono_metadata_type_equal (a->type_argv [i], b->type_argv [i], FALSE))
1252                         return FALSE;
1253         }
1254         return TRUE;
1255 }
1256
1257 static guint
1258 mono_generic_class_hash (gconstpointer data)
1259 {
1260         const MonoGenericClass *gclass = (const MonoGenericClass *) data;
1261         guint hash = mono_metadata_type_hash (&gclass->container_class->byval_arg);
1262
1263         hash *= 13;
1264         hash += mono_generic_inst_hash (gclass->inst);
1265
1266         return hash;
1267 }
1268
1269 static gboolean
1270 mono_generic_class_equal (gconstpointer ka, gconstpointer kb)
1271 {
1272         const MonoGenericClass *a = (const MonoGenericClass *) ka;
1273         const MonoGenericClass *b = (const MonoGenericClass *) kb;
1274
1275         return _mono_metadata_generic_class_equal (a, b, FALSE);
1276 }
1277
1278 /**
1279  * mono_metadata_init:
1280  *
1281  * Initialize the global variables of this module.
1282  * This is a Mono runtime internal function.
1283  */
1284 void
1285 mono_metadata_init (void)
1286 {
1287         int i;
1288
1289         type_cache = g_hash_table_new (mono_type_hash, mono_type_equal);
1290         generic_inst_cache = g_hash_table_new (mono_generic_inst_hash, mono_generic_inst_equal);
1291         generic_class_cache = g_hash_table_new (mono_generic_class_hash, mono_generic_class_equal);
1292
1293         for (i = 0; i < NBUILTIN_TYPES (); ++i)
1294                 g_hash_table_insert (type_cache, (gpointer) &builtin_types [i], (gpointer) &builtin_types [i]);
1295 }
1296
1297 /**
1298  * mono_metadata_parse_type:
1299  * @m: metadata context
1300  * @mode: king of type that may be found at @ptr
1301  * @opt_attrs: optional attributes to store in the returned type
1302  * @ptr: pointer to the type representation
1303  * @rptr: pointer updated to match the end of the decoded stream
1304  * 
1305  * Decode a compressed type description found at @ptr in @m.
1306  * @mode can be one of MONO_PARSE_MOD_TYPE, MONO_PARSE_PARAM, MONO_PARSE_RET,
1307  * MONO_PARSE_FIELD, MONO_PARSE_LOCAL, MONO_PARSE_TYPE.
1308  * This function can be used to decode type descriptions in method signatures,
1309  * field signatures, locals signatures etc.
1310  *
1311  * To parse a generic type, `generic_container' points to the current class'es
1312  * (the `generic_container' field in the MonoClass) or the current generic method's
1313  * (the `generic_container' field in the MonoMethodNormal) generic container.
1314  * When we encounter any MONO_TYPE_VAR or MONO_TYPE_MVAR's, they're looked up in
1315  * this MonoGenericContainer.
1316  * This is a Mono runtime internal function.
1317  *
1318  * Returns: a #MonoType structure representing the decoded type.
1319  */
1320 MonoType*
1321 mono_metadata_parse_type_full (MonoImage *m, MonoGenericContext *generic_context, MonoParseTypeMode mode,
1322                                short opt_attrs, const char *ptr, const char **rptr)
1323 {
1324         MonoType *type, *cached;
1325         MonoType stype;
1326         gboolean byref = FALSE;
1327         gboolean pinned = FALSE;
1328         const char *tmp_ptr;
1329         int count = 0;
1330         gboolean found;
1331
1332         /*
1333          * According to the spec, custom modifiers should come before the byref
1334          * flag, but the IL produced by ilasm from the following signature:
1335          *   object modopt(...) &
1336          * starts with a byref flag, followed by the modifiers. (bug #49802)
1337          * Also, this type seems to be different from 'object & modopt(...)'. Maybe
1338          * it would be better to treat byref as real type constructor instead of
1339          * a modifier...
1340          * Also, pinned should come before anything else, but some MSV++ produced
1341          * assemblies violate this (#bug 61990).
1342          */
1343
1344         /* Count the modifiers first */
1345         tmp_ptr = ptr;
1346         found = TRUE;
1347         while (found) {
1348                 switch (*tmp_ptr) {
1349                 case MONO_TYPE_PINNED:
1350                 case MONO_TYPE_BYREF:
1351                         ++tmp_ptr;
1352                         break;
1353                 case MONO_TYPE_CMOD_REQD:
1354                 case MONO_TYPE_CMOD_OPT:
1355                         count ++;
1356                         mono_metadata_parse_custom_mod (m, NULL, tmp_ptr, &tmp_ptr);
1357                         break;
1358                 default:
1359                         found = FALSE;
1360                 }
1361         }
1362
1363         if (count) {
1364                 type = g_malloc0 (sizeof (MonoType) + ((gint32)count - MONO_ZERO_LEN_ARRAY) * sizeof (MonoCustomMod));
1365                 type->num_mods = count;
1366                 if (count > 64)
1367                         g_warning ("got more than 64 modifiers in type");
1368         }
1369         else {
1370                 type = &stype;
1371                 memset (type, 0, sizeof (MonoType));
1372         }
1373
1374         /* Parse pinned, byref and custom modifiers */
1375         found = TRUE;
1376         count = 0;
1377         while (found) {
1378                 switch (*ptr) {
1379                 case MONO_TYPE_PINNED:
1380                         pinned = TRUE;
1381                         ++ptr;
1382                         break;
1383                 case MONO_TYPE_BYREF:
1384                         byref = TRUE;
1385                         ++ptr;
1386                         break;
1387                 case MONO_TYPE_CMOD_REQD:
1388                 case MONO_TYPE_CMOD_OPT:
1389                         mono_metadata_parse_custom_mod (m, &(type->modifiers [count]), ptr, &ptr);
1390                         count ++;
1391                         break;
1392                 default:
1393                         found = FALSE;
1394                 }
1395         }
1396         
1397         type->attrs = opt_attrs;
1398         type->byref = byref;
1399         type->pinned = pinned ? 1 : 0;
1400
1401         do_mono_metadata_parse_type (type, m, generic_context, ptr, &ptr);
1402
1403         if (rptr)
1404                 *rptr = ptr;
1405
1406         
1407         /* FIXME: remove the != MONO_PARSE_PARAM condition, this accounts for
1408          * almost 10k (about 2/3rds) of all MonoType's we create.
1409          */
1410         if (mode != MONO_PARSE_PARAM && !type->num_mods) {
1411                 /* no need to free type here, because it is on the stack */
1412                 if ((type->type == MONO_TYPE_CLASS || type->type == MONO_TYPE_VALUETYPE) && !type->pinned && !type->attrs) {
1413                         if (type->byref)
1414                                 return &type->data.klass->this_arg;
1415                         else
1416                                 return &type->data.klass->byval_arg;
1417                 }
1418                 /* No need to use locking since nobody is modifying the hash table */
1419                 if ((cached = g_hash_table_lookup (type_cache, type)))
1420                         return cached;
1421         }
1422         
1423         /*printf ("%x%c %s\n", type->attrs, type->pinned ? 'p' : ' ', mono_type_full_name (type));*/
1424         
1425         if (type == &stype)
1426                 type = g_memdup (&stype, sizeof (MonoType));
1427         return type;
1428 }
1429
1430 MonoType*
1431 mono_metadata_parse_type (MonoImage *m, MonoParseTypeMode mode, short opt_attrs,
1432                           const char *ptr, const char **rptr)
1433 {
1434         return mono_metadata_parse_type_full (m, NULL, mode, opt_attrs, ptr, rptr);
1435 }
1436
1437 /*
1438  * mono_metadata_parse_signature_full:
1439  * @image: metadata context
1440  * @generic_container: generic container
1441  * @toke: metadata token
1442  *
1443  * Decode a method signature stored in the STANDALONESIG table
1444  *
1445  * Returns: a MonoMethodSignature describing the signature.
1446  */
1447 MonoMethodSignature*
1448 mono_metadata_parse_signature_full (MonoImage *image, MonoGenericContainer *generic_container, guint32 token)
1449 {
1450         MonoTableInfo *tables = image->tables;
1451         guint32 idx = mono_metadata_token_index (token);
1452         guint32 sig;
1453         const char *ptr;
1454
1455         if (image->dynamic)
1456                 return mono_lookup_dynamic_token (image, token);
1457
1458         g_assert (mono_metadata_token_table(token) == MONO_TABLE_STANDALONESIG);
1459                 
1460         sig = mono_metadata_decode_row_col (&tables [MONO_TABLE_STANDALONESIG], idx - 1, 0);
1461
1462         ptr = mono_metadata_blob_heap (image, sig);
1463         mono_metadata_decode_blob_size (ptr, &ptr);
1464
1465         return mono_metadata_parse_method_signature_full (image, generic_container, FALSE, ptr, NULL); 
1466 }
1467
1468 /*
1469  * mono_metadata_parse_signature:
1470  * @image: metadata context
1471  * @toke: metadata token
1472  *
1473  * Decode a method signature stored in the STANDALONESIG table
1474  *
1475  * Returns: a MonoMethodSignature describing the signature.
1476  */
1477 MonoMethodSignature*
1478 mono_metadata_parse_signature (MonoImage *image, guint32 token)
1479 {
1480         return mono_metadata_parse_signature_full (image, NULL, token);
1481 }
1482
1483 /*
1484  * mono_metadata_signature_alloc:
1485  * @image: metadata context
1486  * @nparmas: number of parameters in the signature
1487  *
1488  * Allocate a MonoMethodSignature structure with the specified number of params.
1489  * The return type and the params types need to be filled later.
1490  * This is a Mono runtime internal function.
1491  *
1492  * Returns: the new MonoMethodSignature structure.
1493  */
1494 MonoMethodSignature*
1495 mono_metadata_signature_alloc (MonoImage *m, guint32 nparams)
1496 {
1497         MonoMethodSignature *sig;
1498
1499         /* later we want to allocate signatures with mempools */
1500         sig = g_malloc0 (sizeof (MonoMethodSignature) + ((gint32)nparams - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
1501         sig->param_count = nparams;
1502         sig->sentinelpos = -1;
1503
1504         return sig;
1505 }
1506
1507 /*
1508  * mono_metadata_signature_dup:
1509  * @sig: method signature
1510  *
1511  * Duplicate an existing MonoMethodSignature so it can be modified.
1512  * This is a Mono runtime internal function.
1513  *
1514  * Returns: the new MonoMethodSignature structure.
1515  */
1516 MonoMethodSignature*
1517 mono_metadata_signature_dup (MonoMethodSignature *sig)
1518 {
1519         int sigsize;
1520
1521         sigsize = sizeof (MonoMethodSignature) + sig->param_count * sizeof (MonoType *);
1522         return g_memdup (sig, sigsize);
1523 }
1524
1525 /*
1526  * mono_metadata_parse_method_signature:
1527  * @m: metadata context
1528  * @generic_container: generics container
1529  * @def: the MethodDef index or 0 for Ref signatures.
1530  * @ptr: pointer to the signature metadata representation
1531  * @rptr: pointer updated to match the end of the decoded stream
1532  *
1533  * Decode a method signature stored at @ptr.
1534  * This is a Mono runtime internal function.
1535  *
1536  * Returns: a MonoMethodSignature describing the signature.
1537  */
1538 MonoMethodSignature *
1539 mono_metadata_parse_method_signature_full (MonoImage *m, MonoGenericContainer *container,
1540                                            int def, const char *ptr, const char **rptr)
1541 {
1542         MonoMethodSignature *method;
1543         int i, ret_attrs = 0, *pattrs = NULL;
1544         guint32 hasthis = 0, explicit_this = 0, call_convention, param_count;
1545         guint32 gen_param_count = 0;
1546         gboolean is_open = FALSE;
1547
1548         if (*ptr & 0x10)
1549                 gen_param_count = 1;
1550         if (*ptr & 0x20)
1551                 hasthis = 1;
1552         if (*ptr & 0x40)
1553                 explicit_this = 1;
1554         call_convention = *ptr & 0x0F;
1555         ptr++;
1556         if (gen_param_count)
1557                 gen_param_count = mono_metadata_decode_value (ptr, &ptr);
1558         param_count = mono_metadata_decode_value (ptr, &ptr);
1559         pattrs = g_new0 (int, param_count);
1560
1561         if (def) {
1562                 MonoTableInfo *paramt = &m->tables [MONO_TABLE_PARAM];
1563                 MonoTableInfo *methodt = &m->tables [MONO_TABLE_METHOD];
1564                 guint32 cols [MONO_PARAM_SIZE];
1565                 guint lastp, param_index = mono_metadata_decode_row_col (methodt, def - 1, MONO_METHOD_PARAMLIST);
1566
1567                 if (def < methodt->rows)
1568                         lastp = mono_metadata_decode_row_col (methodt, def, MONO_METHOD_PARAMLIST);
1569                 else
1570                         lastp = paramt->rows + 1;
1571                 for (i = param_index; i < lastp; ++i) {
1572                         mono_metadata_decode_row (paramt, i - 1, cols, MONO_PARAM_SIZE);
1573                         if (!cols [MONO_PARAM_SEQUENCE])
1574                                 ret_attrs = cols [MONO_PARAM_FLAGS];
1575                         else
1576                                 pattrs [cols [MONO_PARAM_SEQUENCE] - 1] = cols [MONO_PARAM_FLAGS];
1577                 }
1578         }
1579         method = mono_metadata_signature_alloc (m, param_count);
1580         method->hasthis = hasthis;
1581         method->explicit_this = explicit_this;
1582         method->call_convention = call_convention;
1583         method->generic_param_count = gen_param_count;
1584
1585         if (gen_param_count)
1586                 method->has_type_parameters = 1;
1587
1588         if (call_convention != 0xa) {
1589                 method->ret = mono_metadata_parse_type_full (m, (MonoGenericContext *) container, MONO_PARSE_RET, ret_attrs, ptr, &ptr);
1590                 is_open = mono_class_is_open_constructed_type (method->ret);
1591         }
1592
1593         if (method->param_count) {
1594                 method->sentinelpos = -1;
1595                 
1596                 for (i = 0; i < method->param_count; ++i) {
1597                         if (*ptr == MONO_TYPE_SENTINEL) {
1598                                 if (method->call_convention != MONO_CALL_VARARG || def)
1599                                         g_error ("found sentinel for methoddef or no vararg method");
1600                                 method->sentinelpos = i;
1601                                 ptr++;
1602                         }
1603                         method->params [i] = mono_metadata_parse_type_full (
1604                                 m, (MonoGenericContext *) container, MONO_PARSE_PARAM,
1605                                 pattrs [i], ptr, &ptr);
1606                         if (!is_open)
1607                                 is_open = mono_class_is_open_constructed_type (method->params [i]);
1608                 }
1609         }
1610
1611         method->has_type_parameters = is_open;
1612
1613         if (def && (method->call_convention == MONO_CALL_VARARG))
1614                 method->sentinelpos = method->param_count;
1615
1616         g_free (pattrs);
1617
1618         if (rptr)
1619                 *rptr = ptr;
1620         /*
1621          * Add signature to a cache and increase ref count...
1622          */
1623
1624         return method;
1625 }
1626
1627 /*
1628  * mono_metadata_parse_method_signature:
1629  * @m: metadata context
1630  * @def: the MethodDef index or 0 for Ref signatures.
1631  * @ptr: pointer to the signature metadata representation
1632  * @rptr: pointer updated to match the end of the decoded stream
1633  *
1634  * Decode a method signature stored at @ptr.
1635  * This is a Mono runtime internal function.
1636  *
1637  * Returns: a MonoMethodSignature describing the signature.
1638  */
1639 MonoMethodSignature *
1640 mono_metadata_parse_method_signature (MonoImage *m, int def, const char *ptr, const char **rptr)
1641 {
1642         return mono_metadata_parse_method_signature_full (m, NULL, def, ptr, rptr);
1643 }
1644
1645 /*
1646  * mono_metadata_free_method_signature:
1647  * @sig: signature to destroy
1648  *
1649  * Free the memory allocated in the signature @sig.
1650  */
1651 void
1652 mono_metadata_free_method_signature (MonoMethodSignature *sig)
1653 {
1654         int i;
1655         mono_metadata_free_type (sig->ret);
1656         for (i = 0; i < sig->param_count; ++i)
1657                 mono_metadata_free_type (sig->params [i]);
1658
1659         g_free (sig);
1660 }
1661
1662 /*
1663  * mono_metadata_lookup_generic_inst:
1664  *
1665  * Check whether the newly created generic instantiation @ginst already exists
1666  * in the cache and return the cached value in this case.  Otherwise insert
1667  * it into the cache.
1668  *
1669  * Use this method each time you create a new `MonoGenericInst' to ensure
1670  * proper caching.  Only use the returned value as the argument passed to this
1671  * method may be freed.
1672  *
1673  */
1674 MonoGenericInst *
1675 mono_metadata_lookup_generic_inst (MonoGenericInst *ginst)
1676 {
1677         MonoGenericInst *cached;
1678         int i;
1679
1680         cached = g_hash_table_lookup (generic_inst_cache, ginst);
1681         if (cached) {
1682                 for (i = 0; i < ginst->type_argc; i++)
1683                         mono_metadata_free_type (ginst->type_argv [i]);
1684                 g_free (ginst->type_argv);
1685                 g_free (ginst);
1686                 return cached;
1687         }
1688
1689         ginst->id = ++next_generic_inst_id;
1690         g_hash_table_insert (generic_inst_cache, ginst, ginst);
1691
1692         return ginst;
1693 }
1694
1695 /*
1696  * mono_metadata_lookup_generic_class:
1697  *
1698  * Check whether the newly created generic class @gclass already exists
1699  * in the cache and return the cached value in this case.  Otherwise insert
1700  * it into the cache and return NULL.
1701  *
1702  * Returns: the previosly cached generic class or NULL if it has been newly
1703  *          inserted into the cache.
1704  *
1705  */
1706 MonoGenericClass *
1707 mono_metadata_lookup_generic_class (MonoGenericClass *gclass)
1708 {
1709         MonoGenericClass *cached;
1710
1711         cached = g_hash_table_lookup (generic_class_cache, gclass);
1712         if (cached)
1713                 return cached;
1714
1715         g_hash_table_insert (generic_class_cache, gclass, gclass);
1716         return NULL;
1717 }
1718
1719 /*
1720  * mono_metadata_inflate_generic_inst:
1721  *
1722  * Instantiate the generic instance @ginst with the context @context.
1723  *
1724  */
1725 MonoGenericInst *
1726 mono_metadata_inflate_generic_inst (MonoGenericInst *ginst, MonoGenericContext *context)
1727 {
1728         MonoGenericInst *nginst;
1729         int i;
1730
1731         nginst = g_new0 (MonoGenericInst, 1);
1732         nginst->type_argc = ginst->type_argc;
1733         nginst->type_argv = g_new0 (MonoType*, nginst->type_argc);
1734         nginst->is_reference = 1;
1735
1736         for (i = 0; i < nginst->type_argc; i++) {
1737                 MonoType *t = mono_class_inflate_generic_type (ginst->type_argv [i], context);
1738
1739                 if (!nginst->is_open)
1740                         nginst->is_open = mono_class_is_open_constructed_type (t);
1741                 if (nginst->is_reference)
1742                         nginst->is_reference = MONO_TYPE_IS_REFERENCE (t);
1743
1744                 nginst->type_argv [i] = t;
1745         }
1746
1747         return mono_metadata_lookup_generic_inst (nginst);
1748 }
1749
1750 MonoGenericInst *
1751 mono_metadata_parse_generic_inst (MonoImage *m, MonoGenericContext *generic_context,
1752                                   int count, const char *ptr, const char **rptr)
1753 {
1754         MonoGenericInst *ginst;
1755         int i;
1756
1757         ginst = g_new0 (MonoGenericInst, 1);
1758         ginst->type_argc = count;
1759         ginst->type_argv = g_new0 (MonoType*, count);
1760         ginst->is_reference = 1;
1761
1762         for (i = 0; i < ginst->type_argc; i++) {
1763                 MonoType *t = mono_metadata_parse_type_full (m, generic_context, MONO_PARSE_TYPE, 0, ptr, &ptr);
1764
1765                 ginst->type_argv [i] = t;
1766                 if (!ginst->is_open)
1767                         ginst->is_open = mono_class_is_open_constructed_type (t);
1768                 if (ginst->is_reference)
1769                         ginst->is_reference = MONO_TYPE_IS_REFERENCE (t);
1770         }
1771
1772         if (rptr)
1773                 *rptr = ptr;
1774
1775         return mono_metadata_lookup_generic_inst (ginst);
1776 }
1777
1778 static void
1779 do_mono_metadata_parse_generic_class (MonoType *type, MonoImage *m, MonoGenericContext *generic_context,
1780                                       const char *ptr, const char **rptr)
1781 {
1782         MonoInflatedGenericClass *igclass;
1783         MonoGenericClass *gclass, *cached;
1784         MonoClass *gklass;
1785         MonoType *gtype;
1786         int count;
1787
1788         igclass = g_new0 (MonoInflatedGenericClass, 1);
1789         gclass = &igclass->generic_class;
1790         gclass->is_inflated = TRUE;
1791
1792         type->data.generic_class = gclass;
1793
1794         gclass->context = g_new0 (MonoGenericContext, 1);
1795         gclass->context->gclass = gclass;
1796
1797         /*
1798          * Create the klass before parsing the type arguments.
1799          * This is required to support "recursive" definitions.
1800          * See mcs/tests/gen-23.cs for an example.
1801          */
1802         igclass->klass = g_new0 (MonoClass, 1);
1803
1804         gtype = mono_metadata_parse_type_full (m, generic_context, MONO_PARSE_TYPE, 0, ptr, &ptr);
1805         gclass->container_class = gklass = mono_class_from_mono_type (gtype);
1806
1807         g_assert (gklass->generic_container);
1808         gclass->context->container = gklass->generic_container;
1809
1810         count = mono_metadata_decode_value (ptr, &ptr);
1811
1812         gclass->inst = mono_metadata_parse_generic_inst (m, generic_context, count, ptr, &ptr);
1813
1814         if (rptr)
1815                 *rptr = ptr;
1816
1817         /*
1818          * We may be called multiple times on different metadata to create the same
1819          * instantiated type.  This happens for instance if we're part of a method or
1820          * local variable signature.
1821          *
1822          * It's important to return the same MonoGenericClass * for each particualar
1823          * instantiation of a generic type (ie "Stack<Int32>") to make static fields
1824          * work.
1825          *
1826          * According to the spec ($26.1.5), a static variable in a generic class
1827          * declaration is shared amongst all instances of the same closed constructed
1828          * type.
1829          */
1830
1831         cached = g_hash_table_lookup (generic_class_cache, gclass);
1832         if (cached) {
1833                 g_free (igclass->klass);
1834                 g_free (gclass);
1835
1836                 type->data.generic_class = cached;
1837                 return;
1838         } else {
1839                 g_hash_table_insert (generic_class_cache, gclass, gclass);
1840
1841                 mono_stats.generic_instance_count++;
1842                 mono_stats.generics_metadata_size += sizeof (MonoGenericClass) +
1843                         sizeof (MonoGenericContext) +
1844                         gclass->inst->type_argc * sizeof (MonoType);
1845         }
1846 }
1847
1848 /* 
1849  * do_mono_metadata_parse_generic_param:
1850  * @generic_container: Our MonoClass's or MonoMethodNormal's MonoGenericContainer;
1851  *                     see mono_metadata_parse_type_full() for details.
1852  * Internal routine to parse a generic type parameter.
1853  */
1854 static MonoGenericParam *
1855 mono_metadata_parse_generic_param (MonoImage *m, MonoGenericContext *generic_context,
1856                                    gboolean is_mvar, const char *ptr, const char **rptr)
1857 {
1858         MonoGenericContainer *generic_container;
1859         int index;
1860
1861         index = mono_metadata_decode_value (ptr, &ptr);
1862         if (rptr)
1863                 *rptr = ptr;
1864
1865         if (!generic_context) {
1866                 /* Create dummy MonoGenericParam */
1867                 MonoGenericParam *param = g_new0 (MonoGenericParam, 1);
1868                 param->name = g_strdup_printf ("%d", index);
1869                 param->num = index;
1870
1871                 return param;
1872         }
1873         generic_container = generic_context->container;
1874         g_assert (generic_container);
1875
1876         if (!is_mvar && generic_container->parent)
1877                 /*
1878                  * The current MonoGenericContainer is a generic method -> its `parent'
1879                  * points to the containing class'es container.
1880                  */
1881                 generic_container = generic_container->parent;
1882
1883         /* Ensure that we have the correct type of GenericContainer */
1884         g_assert (is_mvar || !generic_container->is_method);
1885         g_assert (!is_mvar || generic_container->is_method);
1886
1887         g_assert (index < generic_container->type_argc);
1888         return &generic_container->type_params [index];
1889 }
1890
1891 /* 
1892  * do_mono_metadata_parse_type:
1893  * @type: MonoType to be filled in with the return value
1894  * @m: image context
1895  * @generic_context: generics_context
1896  * @ptr: pointer to the encoded type
1897  * @rptr: pointer where the end of the encoded type is saved
1898  * 
1899  * Internal routine used to "fill" the contents of @type from an 
1900  * allocated pointer.  This is done this way to avoid doing too
1901  * many mini-allocations (particularly for the MonoFieldType which
1902  * most of the time is just a MonoType, but sometimes might be augmented).
1903  *
1904  * This routine is used by mono_metadata_parse_type and
1905  * mono_metadata_parse_field_type
1906  *
1907  * This extracts a Type as specified in Partition II (22.2.12) 
1908  */
1909 static void
1910 do_mono_metadata_parse_type (MonoType *type, MonoImage *m, MonoGenericContext *generic_context,
1911                              const char *ptr, const char **rptr)
1912 {
1913         type->type = mono_metadata_decode_value (ptr, &ptr);
1914         
1915         switch (type->type){
1916         case MONO_TYPE_VOID:
1917         case MONO_TYPE_BOOLEAN:
1918         case MONO_TYPE_CHAR:
1919         case MONO_TYPE_I1:
1920         case MONO_TYPE_U1:
1921         case MONO_TYPE_I2:
1922         case MONO_TYPE_U2:
1923         case MONO_TYPE_I4:
1924         case MONO_TYPE_U4:
1925         case MONO_TYPE_I8:
1926         case MONO_TYPE_U8:
1927         case MONO_TYPE_R4:
1928         case MONO_TYPE_R8:
1929         case MONO_TYPE_I:
1930         case MONO_TYPE_U:
1931         case MONO_TYPE_STRING:
1932         case MONO_TYPE_OBJECT:
1933         case MONO_TYPE_TYPEDBYREF:
1934                 break;
1935         case MONO_TYPE_VALUETYPE:
1936         case MONO_TYPE_CLASS: {
1937                 guint32 token;
1938                 token = mono_metadata_parse_typedef_or_ref (m, ptr, &ptr);
1939                 type->data.klass = mono_class_get (m, token);
1940                 break;
1941         }
1942         case MONO_TYPE_SZARRAY: {
1943                 MonoType *etype = mono_metadata_parse_type_full (m, generic_context, MONO_PARSE_MOD_TYPE, 0, ptr, &ptr);
1944                 type->data.klass = mono_class_from_mono_type (etype);
1945                 mono_metadata_free_type (etype);
1946                 break;
1947         }
1948         case MONO_TYPE_PTR:
1949                 type->data.type = mono_metadata_parse_type_full (m, generic_context, MONO_PARSE_MOD_TYPE, 0, ptr, &ptr);
1950                 break;
1951         case MONO_TYPE_FNPTR: {
1952                 MonoGenericContainer *container = generic_context ? generic_context->container : NULL;
1953                 type->data.method = mono_metadata_parse_method_signature_full (m, container, 0, ptr, &ptr);
1954                 break;
1955         }
1956         case MONO_TYPE_ARRAY:
1957                 type->data.array = mono_metadata_parse_array_full (m, generic_context, ptr, &ptr);
1958                 break;
1959         case MONO_TYPE_MVAR:
1960                 type->data.generic_param = mono_metadata_parse_generic_param (m, generic_context, TRUE, ptr, &ptr);
1961                 break;
1962         case MONO_TYPE_VAR:
1963                 type->data.generic_param = mono_metadata_parse_generic_param (m, generic_context, FALSE, ptr, &ptr);
1964                 break;
1965         case MONO_TYPE_GENERICINST:
1966                 do_mono_metadata_parse_generic_class (type, m, generic_context, ptr, &ptr);
1967                 break;
1968         default:
1969                 g_error ("type 0x%02x not handled in do_mono_metadata_parse_type", type->type);
1970         }
1971         
1972         if (rptr)
1973                 *rptr = ptr;
1974 }
1975
1976 /*
1977  * mono_metadata_free_type:
1978  * @type: type to free
1979  *
1980  * Free the memory allocated for type @type.
1981  */
1982 void
1983 mono_metadata_free_type (MonoType *type)
1984 {
1985         if (type >= builtin_types && type < builtin_types + NBUILTIN_TYPES ())
1986                 return;
1987         
1988         switch (type->type){
1989         case MONO_TYPE_OBJECT:
1990         case MONO_TYPE_STRING:
1991                 if (!type->data.klass)
1992                         break;
1993                 /* fall through */
1994         case MONO_TYPE_CLASS:
1995         case MONO_TYPE_VALUETYPE:
1996                 if (type == &type->data.klass->byval_arg || type == &type->data.klass->this_arg)
1997                         return;
1998                 break;
1999         case MONO_TYPE_PTR:
2000                 mono_metadata_free_type (type->data.type);
2001                 break;
2002         case MONO_TYPE_FNPTR:
2003                 mono_metadata_free_method_signature (type->data.method);
2004                 break;
2005         case MONO_TYPE_ARRAY:
2006                 mono_metadata_free_array (type->data.array);
2007                 break;
2008         }
2009         g_free (type);
2010 }
2011
2012 #if 0
2013 static void
2014 hex_dump (const char *buffer, int base, int count)
2015 {
2016         int show_header = 1;
2017         int i;
2018
2019         if (count < 0){
2020                 count = -count;
2021                 show_header = 0;
2022         }
2023         
2024         for (i = 0; i < count; i++){
2025                 if (show_header)
2026                         if ((i % 16) == 0)
2027                                 printf ("\n0x%08x: ", (unsigned char) base + i);
2028
2029                 printf ("%02x ", (unsigned char) (buffer [i]));
2030         }
2031         fflush (stdout);
2032 }
2033 #endif
2034
2035 /** 
2036  * @mh: The Method header
2037  * @ptr: Points to the beginning of the Section Data (25.3)
2038  */
2039 static void
2040 parse_section_data (MonoImage *m, MonoMethodHeader *mh, const unsigned char *ptr)
2041 {
2042         unsigned char sect_data_flags;
2043         const unsigned char *sptr;
2044         int is_fat;
2045         guint32 sect_data_len;
2046         
2047         while (1) {
2048                 /* align on 32-bit boundary */
2049                 /* FIXME: not 64-bit clean code */
2050                 sptr = ptr = dword_align (ptr); 
2051                 sect_data_flags = *ptr;
2052                 ptr++;
2053                 
2054                 is_fat = sect_data_flags & METHOD_HEADER_SECTION_FAT_FORMAT;
2055                 if (is_fat) {
2056                         sect_data_len = (ptr [2] << 16) | (ptr [1] << 8) | ptr [0];
2057                         ptr += 3;
2058                 } else {
2059                         sect_data_len = ptr [0];
2060                         ++ptr;
2061                 }
2062                 /*
2063                 g_print ("flags: %02x, len: %d\n", sect_data_flags, sect_data_len);
2064                 hex_dump (sptr, 0, sect_data_len+8);
2065                 g_print ("\nheader: ");
2066                 hex_dump (sptr-4, 0, 4);
2067                 g_print ("\n");
2068                 */
2069                 
2070                 if (sect_data_flags & METHOD_HEADER_SECTION_EHTABLE) {
2071                         const unsigned char *p = dword_align (ptr);
2072                         int i;
2073                         mh->num_clauses = is_fat ? sect_data_len / 24: sect_data_len / 12;
2074                         /* we could just store a pointer if we don't need to byteswap */
2075                         mh->clauses = g_new0 (MonoExceptionClause, mh->num_clauses);
2076                         for (i = 0; i < mh->num_clauses; ++i) {
2077                                 MonoExceptionClause *ec = &mh->clauses [i];
2078                                 guint32 tof_value;
2079                                 if (is_fat) {
2080                                         ec->flags = read32 (p);
2081                                         ec->try_offset = read32 (p + 4);
2082                                         ec->try_len = read32 (p + 8);
2083                                         ec->handler_offset = read32 (p + 12);
2084                                         ec->handler_len = read32 (p + 16);
2085                                         tof_value = read32 (p + 20);
2086                                         p += 24;
2087                                 } else {
2088                                         ec->flags = read16 (p);
2089                                         ec->try_offset = read16 (p + 2);
2090                                         ec->try_len = *(p + 4);
2091                                         ec->handler_offset = read16 (p + 5);
2092                                         ec->handler_len = *(p + 7);
2093                                         tof_value = read32 (p + 8);
2094                                         p += 12;
2095                                 }
2096                                 if (ec->flags == MONO_EXCEPTION_CLAUSE_FILTER) {
2097                                         ec->data.filter_offset = tof_value;
2098                                 } else if (ec->flags == MONO_EXCEPTION_CLAUSE_NONE) {
2099                                         ec->data.catch_class = tof_value? mono_class_get (m, tof_value): 0;
2100                                 } else {
2101                                         ec->data.catch_class = NULL;
2102                                 }
2103                                 /* g_print ("try %d: %x %04x-%04x %04x\n", i, ec->flags, ec->try_offset, ec->try_offset+ec->try_len, ec->try_len); */
2104                         }
2105
2106                 }
2107                 if (sect_data_flags & METHOD_HEADER_SECTION_MORE_SECTS)
2108                         ptr += sect_data_len - 4; /* LAMESPEC: it seems the size includes the header */
2109                 else
2110                         return;
2111         }
2112 }
2113
2114 /*
2115  * mono_metadata_parse_mh_full:
2116  * @m: metadata context
2117  * @generic_context: generics context
2118  * @ptr: pointer to the method header.
2119  *
2120  * Decode the method header at @ptr, including pointer to the IL code,
2121  * info about local variables and optional exception tables.
2122  * This is a Mono runtime internal function.
2123  *
2124  * Returns: a MonoMethodHeader.
2125  */
2126 MonoMethodHeader *
2127 mono_metadata_parse_mh_full (MonoImage *m, MonoGenericContext *generic_context, const char *ptr)
2128 {
2129         MonoMethodHeader *mh;
2130         unsigned char flags = *(const unsigned char *) ptr;
2131         unsigned char format = flags & METHOD_HEADER_FORMAT_MASK;
2132         guint16 fat_flags;
2133         guint32 local_var_sig_tok, max_stack, code_size, init_locals;
2134         const unsigned char *code;
2135         int hsize;
2136         
2137         g_return_val_if_fail (ptr != NULL, NULL);
2138
2139         switch (format) {
2140         case METHOD_HEADER_TINY_FORMAT:
2141                 mh = g_new0 (MonoMethodHeader, 1);
2142                 ptr++;
2143                 mh->max_stack = 8;
2144                 local_var_sig_tok = 0;
2145                 mh->code_size = flags >> 2;
2146                 mh->code = ptr;
2147                 return mh;
2148         case METHOD_HEADER_TINY_FORMAT1:
2149                 mh = g_new0 (MonoMethodHeader, 1);
2150                 ptr++;
2151                 mh->max_stack = 8;
2152                 local_var_sig_tok = 0;
2153
2154                 /*
2155                  * The spec claims 3 bits, but the Beta2 is
2156                  * incorrect
2157                  */
2158                 mh->code_size = flags >> 2;
2159                 mh->code = ptr;
2160                 return mh;
2161         case METHOD_HEADER_FAT_FORMAT:
2162                 fat_flags = read16 (ptr);
2163                 ptr += 2;
2164                 hsize = (fat_flags >> 12) & 0xf;
2165                 max_stack = read16 (ptr);
2166                 ptr += 2;
2167                 code_size = read32 (ptr);
2168                 ptr += 4;
2169                 local_var_sig_tok = read32 (ptr);
2170                 ptr += 4;
2171
2172                 if (fat_flags & METHOD_HEADER_INIT_LOCALS)
2173                         init_locals = 1;
2174                 else
2175                         init_locals = 0;
2176
2177                 code = ptr;
2178
2179                 if (!(fat_flags & METHOD_HEADER_MORE_SECTS))
2180                         break;
2181
2182                 /*
2183                  * There are more sections
2184                  */
2185                 ptr = code + code_size;
2186                 break;
2187         default:
2188                 return NULL;
2189         }
2190                        
2191         if (local_var_sig_tok) {
2192                 MonoTableInfo *t = &m->tables [MONO_TABLE_STANDALONESIG];
2193                 const char *locals_ptr;
2194                 guint32 cols [MONO_STAND_ALONE_SIGNATURE_SIZE];
2195                 int len=0, i, bsize;
2196
2197                 mono_metadata_decode_row (t, (local_var_sig_tok & 0xffffff)-1, cols, 1);
2198                 locals_ptr = mono_metadata_blob_heap (m, cols [MONO_STAND_ALONE_SIGNATURE]);
2199                 bsize = mono_metadata_decode_blob_size (locals_ptr, &locals_ptr);
2200                 if (*locals_ptr != 0x07)
2201                         g_warning ("wrong signature for locals blob");
2202                 locals_ptr++;
2203                 len = mono_metadata_decode_value (locals_ptr, &locals_ptr);
2204                 mh = g_malloc0 (sizeof (MonoMethodHeader) + (len - MONO_ZERO_LEN_ARRAY) * sizeof (MonoType*));
2205                 mh->num_locals = len;
2206                 for (i = 0; i < len; ++i)
2207                         mh->locals [i] = mono_metadata_parse_type_full (
2208                                 m, generic_context, MONO_PARSE_LOCAL, 0, locals_ptr, &locals_ptr);
2209         } else {
2210                 mh = g_new0 (MonoMethodHeader, 1);
2211         }
2212         mh->code = code;
2213         mh->code_size = code_size;
2214         mh->max_stack = max_stack;
2215         mh->init_locals = init_locals;
2216         if (fat_flags & METHOD_HEADER_MORE_SECTS)
2217                 parse_section_data (m, mh, (const unsigned char*)ptr);
2218         return mh;
2219 }
2220
2221 /*
2222  * mono_metadata_parse_mh:
2223  * @generic_context: generics context
2224  * @ptr: pointer to the method header.
2225  *
2226  * Decode the method header at @ptr, including pointer to the IL code,
2227  * info about local variables and optional exception tables.
2228  * This is a Mono runtime internal function.
2229  *
2230  * Returns: a MonoMethodHeader.
2231  */
2232 MonoMethodHeader *
2233 mono_metadata_parse_mh (MonoImage *m, const char *ptr)
2234 {
2235         return mono_metadata_parse_mh_full (m, NULL, ptr);
2236 }
2237
2238 /*
2239  * mono_metadata_free_mh:
2240  * @mh: a method header
2241  *
2242  * Free the memory allocated for the method header.
2243  * This is a Mono runtime internal function.
2244  */
2245 void
2246 mono_metadata_free_mh (MonoMethodHeader *mh)
2247 {
2248         int i;
2249         for (i = 0; i < mh->num_locals; ++i)
2250                 mono_metadata_free_type (mh->locals[i]);
2251         g_free (mh->clauses);
2252         g_free (mh);
2253 }
2254
2255 /*
2256  * mono_method_header_get_code:
2257  * @header: a MonoMethodHeader pointer
2258  * @code_size: memory location for returning the code size
2259  * @max_stack: memory location for returning the max stack
2260  *
2261  * Method header accessor to retreive info about the IL code properties:
2262  * a pointer to the IL code itself, the size of the code and the max number
2263  * of stack slots used by the code.
2264  *
2265  * Returns: pointer to the IL code represented by the method header.
2266  */
2267 const unsigned char*
2268 mono_method_header_get_code (MonoMethodHeader *header, guint32* code_size, guint32* max_stack)
2269 {
2270         if (code_size)
2271                 *code_size = header->code_size;
2272         if (max_stack)
2273                 *max_stack = header->max_stack;
2274         return header->code;
2275 }
2276
2277 /*
2278  * mono_method_header_get_locals:
2279  * @header: a MonoMethodHeader pointer
2280  * @num_locals: memory location for returning the number of local variables
2281  * @init_locals: memory location for returning the init_locals flag
2282  *
2283  * Method header accessor to retreive info about the local variables:
2284  * an array of local types, the number of locals and whether the locals
2285  * are supposed to be initialized to 0 on method entry
2286  *
2287  * Returns: pointer to an array of types of the local variables
2288  */
2289 MonoType**
2290 mono_method_header_get_locals (MonoMethodHeader *header, guint32* num_locals, gboolean *init_locals)
2291 {
2292         if (num_locals)
2293                 *num_locals = header->num_locals;
2294         if (init_locals)
2295                 *init_locals = header->init_locals;
2296         return header->locals;
2297 }
2298
2299 /*
2300  * mono_method_header_get_num_clauses:
2301  * @header: a MonoMethodHeader pointer
2302  *
2303  * Method header accessor to retreive the number of exception clauses.
2304  *
2305  * Returns: the number of exception clauses present
2306  */
2307 int
2308 mono_method_header_get_num_clauses (MonoMethodHeader *header)
2309 {
2310         return header->num_clauses;
2311 }
2312
2313 /*
2314  * mono_method_header_get_clauses:
2315  * @header: a MonoMethodHeader pointer
2316  * @method: MonoMethod the header belongs to
2317  * @iter: pointer to a iterator
2318  * @clause: pointer to a MonoExceptionClause structure which will be filled with the info
2319  *
2320  * Get the info about the exception clauses in the method. Set *iter to NULL to
2321  * initiate the iteration, then call the method repeatedly until it returns FALSE.
2322  * At each iteration, the structure pointed to by clause if filled with the
2323  * exception clause information.
2324  *
2325  * Returns: TRUE if clause was filled with info, FALSE if there are no more exception
2326  * clauses.
2327  */
2328 int
2329 mono_method_header_get_clauses (MonoMethodHeader *header, MonoMethod *method, gpointer *iter, MonoExceptionClause *clause)
2330 {
2331         MonoExceptionClause *sc;
2332         /* later we'll be able to use this interface to parse the clause info on demand,
2333          * without allocating anything.
2334          */
2335         if (!iter || !header->num_clauses)
2336                 return FALSE;
2337         if (!*iter) {
2338                 *iter = sc = header->clauses;
2339                 *clause = *sc;
2340                 return TRUE;
2341         }
2342         sc = *iter;
2343         sc++;
2344         if (sc < header->clauses + header->num_clauses) {
2345                 *iter = sc;
2346                 *clause = *sc;
2347                 return TRUE;
2348         }
2349         return FALSE;
2350 }
2351
2352 /**
2353  * mono_metadata_parse_field_type:
2354  * @m: metadata context to extract information from
2355  * @ptr: pointer to the field signature
2356  * @rptr: pointer updated to match the end of the decoded stream
2357  *
2358  * Parses the field signature, and returns the type information for it. 
2359  *
2360  * Returns: The MonoType that was extracted from @ptr.
2361  */
2362 MonoType *
2363 mono_metadata_parse_field_type (MonoImage *m, short field_flags, const char *ptr, const char **rptr)
2364 {
2365         return mono_metadata_parse_type (m, MONO_PARSE_FIELD, field_flags, ptr, rptr);
2366 }
2367
2368 /**
2369  * mono_metadata_parse_param:
2370  * @m: metadata context to extract information from
2371  * @ptr: pointer to the param signature
2372  * @rptr: pointer updated to match the end of the decoded stream
2373  *
2374  * Parses the param signature, and returns the type information for it. 
2375  *
2376  * Returns: The MonoType that was extracted from @ptr.
2377  */
2378 MonoType *
2379 mono_metadata_parse_param (MonoImage *m, const char *ptr, const char **rptr)
2380 {
2381         return mono_metadata_parse_type (m, MONO_PARSE_PARAM, 0, ptr, rptr);
2382 }
2383
2384 /*
2385  * mono_metadata_token_from_dor:
2386  * @dor_token: A TypeDefOrRef coded index
2387  *
2388  * dor_token is a TypeDefOrRef coded index: it contains either
2389  * a TypeDef, TypeRef or TypeSpec in the lower bits, and the upper
2390  * bits contain an index into the table.
2391  *
2392  * Returns: an expanded token
2393  */
2394 guint32
2395 mono_metadata_token_from_dor (guint32 dor_index)
2396 {
2397         guint32 table, idx;
2398
2399         table = dor_index & 0x03;
2400         idx = dor_index >> 2;
2401
2402         switch (table){
2403         case 0: /* TypeDef */
2404                 return MONO_TOKEN_TYPE_DEF | idx;
2405         case 1: /* TypeRef */
2406                 return MONO_TOKEN_TYPE_REF | idx;
2407         case 2: /* TypeSpec */
2408                 return MONO_TOKEN_TYPE_SPEC | idx;
2409         default:
2410                 g_assert_not_reached ();
2411         }
2412
2413         return 0;
2414 }
2415
2416 /*
2417  * We use this to pass context information to the row locator
2418  */
2419 typedef struct {
2420         int idx;                        /* The index that we are trying to locate */
2421         int col_idx;            /* The index in the row where idx may be stored */
2422         MonoTableInfo *t;       /* pointer to the table */
2423         guint32 result;
2424 } locator_t;
2425
2426 /*
2427  * How the row locator works.
2428  *
2429  *   Table A
2430  *   ___|___
2431  *   ___|___         Table B
2432  *   ___|___------>  _______
2433  *   ___|___         _______
2434  *   
2435  * A column in the rows of table A references an index in table B.
2436  * For example A may be the TYPEDEF table and B the METHODDEF table.
2437  * 
2438  * Given an index in table B we want to get the row in table A
2439  * where the column n references our index in B.
2440  *
2441  * In the locator_t structure:
2442  *      t is table A
2443  *      col_idx is the column number
2444  *      index is the index in table B
2445  *      result will be the index in table A
2446  *
2447  * Examples:
2448  * Table A              Table B         column (in table A)
2449  * TYPEDEF              METHODDEF   MONO_TYPEDEF_METHOD_LIST
2450  * TYPEDEF              FIELD           MONO_TYPEDEF_FIELD_LIST
2451  * PROPERTYMAP  PROPERTY        MONO_PROPERTY_MAP_PROPERTY_LIST
2452  * INTERFIMPL   TYPEDEF         MONO_INTERFACEIMPL_CLASS
2453  * METHODSEM    PROPERTY        ASSOCIATION (encoded index)
2454  *
2455  * Note that we still don't support encoded indexes.
2456  *
2457  */
2458 static int
2459 typedef_locator (const void *a, const void *b)
2460 {
2461         locator_t *loc = (locator_t *) a;
2462         const char *bb = (const char *) b;
2463         int typedef_index = (bb - loc->t->base) / loc->t->row_size;
2464         guint32 col, col_next;
2465
2466         col = mono_metadata_decode_row_col (loc->t, typedef_index, loc->col_idx);
2467
2468         if (loc->idx < col)
2469                 return -1;
2470
2471         /*
2472          * Need to check that the next row is valid.
2473          */
2474         if (typedef_index + 1 < loc->t->rows) {
2475                 col_next = mono_metadata_decode_row_col (loc->t, typedef_index + 1, loc->col_idx);
2476                 if (loc->idx >= col_next)
2477                         return 1;
2478
2479                 if (col == col_next)
2480                         return 1; 
2481         }
2482
2483         loc->result = typedef_index;
2484         
2485         return 0;
2486 }
2487
2488 static int
2489 table_locator (const void *a, const void *b)
2490 {
2491         locator_t *loc = (locator_t *) a;
2492         const char *bb = (const char *) b;
2493         guint32 table_index = (bb - loc->t->base) / loc->t->row_size;
2494         guint32 col;
2495         
2496         col = mono_metadata_decode_row_col (loc->t, table_index, loc->col_idx);
2497
2498         if (loc->idx == col) {
2499                 loc->result = table_index;
2500                 return 0;
2501         }
2502         if (loc->idx < col)
2503                 return -1;
2504         else 
2505                 return 1;
2506 }
2507
2508 static int
2509 declsec_locator (const void *a, const void *b)
2510 {
2511         locator_t *loc = (locator_t *) a;
2512         const char *bb = (const char *) b;
2513         guint32 table_index = (bb - loc->t->base) / loc->t->row_size;
2514         guint32 col;
2515
2516         col = mono_metadata_decode_row_col (loc->t, table_index, loc->col_idx);
2517
2518         if (loc->idx == col) {
2519                 loc->result = table_index;
2520                 return 0;
2521         }
2522         if (loc->idx < col)
2523                 return -1;
2524         else
2525                 return 1;
2526 }
2527
2528 /**
2529  * mono_metadata_typedef_from_field:
2530  * @meta: metadata context
2531  * @index: FieldDef token
2532  *
2533  * Returns: the 1-based index into the TypeDef table of the type that
2534  * declared the field described by @index, or 0 if not found.
2535  */
2536 guint32
2537 mono_metadata_typedef_from_field (MonoImage *meta, guint32 index)
2538 {
2539         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_TYPEDEF];
2540         locator_t loc;
2541
2542         if (!tdef->base)
2543                 return 0;
2544
2545         loc.idx = mono_metadata_token_index (index);
2546         loc.col_idx = MONO_TYPEDEF_FIELD_LIST;
2547         loc.t = tdef;
2548
2549         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, typedef_locator))
2550                 g_assert_not_reached ();
2551
2552         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
2553         return loc.result + 1;
2554 }
2555
2556 /*
2557  * mono_metadata_typedef_from_method:
2558  * @meta: metadata context
2559  * @index: MethodDef token
2560  *
2561  * Returns: the 1-based index into the TypeDef table of the type that
2562  * declared the method described by @index.  0 if not found.
2563  */
2564 guint32
2565 mono_metadata_typedef_from_method (MonoImage *meta, guint32 index)
2566 {
2567         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_TYPEDEF];
2568         locator_t loc;
2569         
2570         if (!tdef->base)
2571                 return 0;
2572
2573         loc.idx = mono_metadata_token_index (index);
2574         loc.col_idx = MONO_TYPEDEF_METHOD_LIST;
2575         loc.t = tdef;
2576
2577         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, typedef_locator))
2578                 g_assert_not_reached ();
2579
2580         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
2581         return loc.result + 1;
2582 }
2583
2584 /*
2585  * mono_metadata_interfaces_from_typedef_full:
2586  * @meta: metadata context
2587  * @index: typedef token
2588  * 
2589  * The array of interfaces that the @index typedef token implements is returned in
2590  * @interfaces. The number of elemnts in the array is returned in @count.
2591  *
2592  * Returns: TRUE on success, FALSE on failure.
2593  */
2594 gboolean
2595 mono_metadata_interfaces_from_typedef_full (MonoImage *meta, guint32 index, MonoClass ***interfaces, guint *count, MonoGenericContext *context)
2596 {
2597         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_INTERFACEIMPL];
2598         locator_t loc;
2599         guint32 start, i;
2600         guint32 cols [MONO_INTERFACEIMPL_SIZE];
2601         MonoClass **result;
2602
2603         *interfaces = NULL;
2604         *count = 0;
2605
2606         if (!tdef->base)
2607                 return TRUE;
2608
2609         loc.idx = mono_metadata_token_index (index);
2610         loc.col_idx = MONO_INTERFACEIMPL_CLASS;
2611         loc.t = tdef;
2612
2613         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
2614                 return TRUE;
2615
2616         start = loc.result;
2617         /*
2618          * We may end up in the middle of the rows... 
2619          */
2620         while (start > 0) {
2621                 if (loc.idx == mono_metadata_decode_row_col (tdef, start - 1, MONO_INTERFACEIMPL_CLASS))
2622                         start--;
2623                 else
2624                         break;
2625         }
2626         result = NULL;
2627         i = 0;
2628         while (start < tdef->rows) {
2629                 mono_metadata_decode_row (tdef, start, cols, MONO_INTERFACEIMPL_SIZE);
2630                 if (cols [MONO_INTERFACEIMPL_CLASS] != loc.idx)
2631                         break;
2632                 result = g_renew (MonoClass*, result, i + 1);
2633                 result [i] = mono_class_get_full (
2634                         meta, mono_metadata_token_from_dor (cols [MONO_INTERFACEIMPL_INTERFACE]), context);
2635                 *count = ++i;
2636                 ++start;
2637         }
2638         *interfaces = result;
2639         return TRUE;
2640 }
2641
2642 MonoClass**
2643 mono_metadata_interfaces_from_typedef (MonoImage *meta, guint32 index, guint *count)
2644 {
2645         MonoClass **interfaces;
2646         gboolean rv;
2647
2648         rv = mono_metadata_interfaces_from_typedef_full (meta, index, &interfaces, count, NULL);
2649         if (rv)
2650                 return interfaces;
2651         else
2652                 return NULL;
2653 }
2654
2655 /*
2656  * mono_metadata_nested_in_typedef:
2657  * @meta: metadata context
2658  * @index: typedef token
2659  * 
2660  * Returns: the 1-based index into the TypeDef table of the type
2661  * where the type described by @index is nested.
2662  * Retruns 0 if @index describes a non-nested type.
2663  */
2664 guint32
2665 mono_metadata_nested_in_typedef (MonoImage *meta, guint32 index)
2666 {
2667         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_NESTEDCLASS];
2668         locator_t loc;
2669         
2670         if (!tdef->base)
2671                 return 0;
2672
2673         loc.idx = mono_metadata_token_index (index);
2674         loc.col_idx = MONO_NESTED_CLASS_NESTED;
2675         loc.t = tdef;
2676
2677         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
2678                 return 0;
2679
2680         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
2681         return mono_metadata_decode_row_col (tdef, loc.result, MONO_NESTED_CLASS_ENCLOSING) | MONO_TOKEN_TYPE_DEF;
2682 }
2683
2684 /*
2685  * mono_metadata_nesting_typedef:
2686  * @meta: metadata context
2687  * @index: typedef token
2688  * 
2689  * Returns: the 1-based index into the TypeDef table of the first type
2690  * that is nested inside the type described by @index. The search starts at
2691  * @start_index.  returns 0 if no such type is found.
2692  */
2693 guint32
2694 mono_metadata_nesting_typedef (MonoImage *meta, guint32 index, guint32 start_index)
2695 {
2696         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_NESTEDCLASS];
2697         guint32 start;
2698         guint32 class_index = mono_metadata_token_index (index);
2699         
2700         if (!tdef->base)
2701                 return 0;
2702
2703         start = start_index;
2704
2705         while (start <= tdef->rows) {
2706                 if (class_index == mono_metadata_decode_row_col (tdef, start - 1, MONO_NESTED_CLASS_ENCLOSING))
2707                         break;
2708                 else
2709                         start++;
2710         }
2711
2712         if (start > tdef->rows)
2713                 return 0;
2714         else
2715                 return start;
2716 }
2717
2718 /*
2719  * mono_metadata_packing_from_typedef:
2720  * @meta: metadata context
2721  * @index: token representing a type
2722  * 
2723  * Returns: the info stored in the ClassLAyout table for the given typedef token
2724  * into the @packing and @size pointers.
2725  * Returns 0 if the info is not found.
2726  */
2727 guint32
2728 mono_metadata_packing_from_typedef (MonoImage *meta, guint32 index, guint32 *packing, guint32 *size)
2729 {
2730         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_CLASSLAYOUT];
2731         locator_t loc;
2732         guint32 cols [MONO_CLASS_LAYOUT_SIZE];
2733         
2734         if (!tdef->base)
2735                 return 0;
2736
2737         loc.idx = mono_metadata_token_index (index);
2738         loc.col_idx = MONO_CLASS_LAYOUT_PARENT;
2739         loc.t = tdef;
2740
2741         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
2742                 return 0;
2743
2744         mono_metadata_decode_row (tdef, loc.result, cols, MONO_CLASS_LAYOUT_SIZE);
2745         if (packing)
2746                 *packing = cols [MONO_CLASS_LAYOUT_PACKING_SIZE];
2747         if (size)
2748                 *size = cols [MONO_CLASS_LAYOUT_CLASS_SIZE];
2749
2750         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
2751         return loc.result + 1;
2752 }
2753
2754 /*
2755  * mono_metadata_custom_attrs_from_index:
2756  * @meta: metadata context
2757  * @index: token representing the parent
2758  * 
2759  * Returns: the 1-based index into the CustomAttribute table of the first 
2760  * attribute which belongs to the metadata object described by @index.
2761  * Returns 0 if no such attribute is found.
2762  */
2763 guint32
2764 mono_metadata_custom_attrs_from_index (MonoImage *meta, guint32 index)
2765 {
2766         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_CUSTOMATTRIBUTE];
2767         locator_t loc;
2768         
2769         if (!tdef->base)
2770                 return 0;
2771
2772         loc.idx = index;
2773         loc.col_idx = MONO_CUSTOM_ATTR_PARENT;
2774         loc.t = tdef;
2775
2776         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
2777                 return 0;
2778
2779         /* Find the first entry by searching backwards */
2780         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_CUSTOM_ATTR_PARENT) == index))
2781                 loc.result --;
2782
2783         /* loc_result is 0..1, needs to be mapped to table index (that is +1) */
2784         return loc.result + 1;
2785 }
2786
2787 /*
2788  * mono_metadata_declsec_from_index:
2789  * @meta: metadata context
2790  * @index: token representing the parent
2791  * 
2792  * Returns: the 0-based index into the DeclarativeSecurity table of the first 
2793  * attribute which belongs to the metadata object described by @index.
2794  * Returns -1 if no such attribute is found.
2795  */
2796 guint32
2797 mono_metadata_declsec_from_index (MonoImage *meta, guint32 index)
2798 {
2799         MonoTableInfo *tdef = &meta->tables [MONO_TABLE_DECLSECURITY];
2800         locator_t loc;
2801
2802         if (!tdef->base)
2803                 return -1;
2804
2805         loc.idx = index;
2806         loc.col_idx = MONO_DECL_SECURITY_PARENT;
2807         loc.t = tdef;
2808
2809         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, declsec_locator))
2810                 return -1;
2811
2812         /* Find the first entry by searching backwards */
2813         while ((loc.result > 0) && (mono_metadata_decode_row_col (tdef, loc.result - 1, MONO_DECL_SECURITY_PARENT) == index))
2814                 loc.result --;
2815
2816         return loc.result;
2817 }
2818
2819 #ifdef DEBUG
2820 static void
2821 mono_backtrace (int limit)
2822 {
2823         void *array[limit];
2824         char **names;
2825         int i;
2826         backtrace (array, limit);
2827         names = backtrace_symbols (array, limit);
2828         for (i =0; i < limit; ++i) {
2829                 g_print ("\t%s\n", names [i]);
2830         }
2831         g_free (names);
2832 }
2833 #endif
2834
2835 #ifndef __GNUC__
2836 /*#define __alignof__(a) sizeof(a)*/
2837 #define __alignof__(type) G_STRUCT_OFFSET(struct { char c; type x; }, x)
2838 #endif
2839
2840 /*
2841  * mono_type_size:
2842  * @t: the type to return the size of
2843  *
2844  * Returns: the number of bytes required to hold an instance of this
2845  * type in memory
2846  */
2847 int
2848 mono_type_size (MonoType *t, gint *align)
2849 {
2850         if (!t) {
2851                 *align = 1;
2852                 return 0;
2853         }
2854         if (t->byref) {
2855                 *align = __alignof__(gpointer);
2856                 return sizeof (gpointer);
2857         }
2858
2859         switch (t->type){
2860         case MONO_TYPE_VOID:
2861                 *align = 1;
2862                 return 0;
2863         case MONO_TYPE_BOOLEAN:
2864                 *align = __alignof__(gint8);
2865                 return 1;
2866         case MONO_TYPE_I1:
2867         case MONO_TYPE_U1:
2868                 *align = __alignof__(gint8);
2869                 return 1;
2870         case MONO_TYPE_CHAR:
2871         case MONO_TYPE_I2:
2872         case MONO_TYPE_U2:
2873                 *align = __alignof__(gint16);
2874                 return 2;               
2875         case MONO_TYPE_I4:
2876         case MONO_TYPE_U4:
2877                 *align = __alignof__(gint32);
2878                 return 4;
2879         case MONO_TYPE_R4:
2880                 *align = __alignof__(float);
2881                 return 4;
2882         case MONO_TYPE_I8:
2883         case MONO_TYPE_U8:
2884                 *align = __alignof__(gint64);
2885                 return 8;               
2886         case MONO_TYPE_R8:
2887                 *align = __alignof__(double);
2888                 return 8;               
2889         case MONO_TYPE_I:
2890         case MONO_TYPE_U:
2891                 *align = __alignof__(gpointer);
2892                 return sizeof (gpointer);
2893         case MONO_TYPE_STRING:
2894                 *align = __alignof__(gpointer);
2895                 return sizeof (gpointer);
2896         case MONO_TYPE_OBJECT:
2897                 *align = __alignof__(gpointer);
2898                 return sizeof (gpointer);
2899         case MONO_TYPE_VALUETYPE: {
2900                 if (t->data.klass->enumtype)
2901                         return mono_type_size (t->data.klass->enum_basetype, align);
2902                 else
2903                         return mono_class_value_size (t->data.klass, align);
2904         }
2905         case MONO_TYPE_CLASS:
2906         case MONO_TYPE_SZARRAY:
2907         case MONO_TYPE_PTR:
2908         case MONO_TYPE_FNPTR:
2909         case MONO_TYPE_ARRAY:
2910                 *align = __alignof__(gpointer);
2911                 return sizeof (gpointer);
2912         case MONO_TYPE_TYPEDBYREF:
2913                 return mono_class_value_size (mono_defaults.typed_reference_class, align);
2914         case MONO_TYPE_GENERICINST: {
2915                 MonoInflatedGenericClass *gclass;
2916                 MonoClass *container_class;
2917
2918                 gclass = mono_get_inflated_generic_class (t->data.generic_class);
2919                 g_assert (!gclass->generic_class.inst->is_open);
2920                 g_assert (!gclass->klass->generic_container);
2921
2922                 container_class = gclass->generic_class.container_class;
2923
2924                 if (container_class->valuetype) {
2925                         if (container_class->enumtype)
2926                                 return mono_type_size (container_class->enum_basetype, align);
2927                         else
2928                                 return mono_class_value_size (gclass->klass, align);
2929                 } else {
2930                         *align = __alignof__(gpointer);
2931                         return sizeof (gpointer);
2932                 }
2933         }
2934         case MONO_TYPE_VAR:
2935         case MONO_TYPE_MVAR:
2936                 /* FIXME: Martin, this is wrong. */
2937                 *align = __alignof__(gpointer);
2938                 return sizeof (gpointer);
2939         default:
2940                 g_error ("mono_type_size: type 0x%02x unknown", t->type);
2941         }
2942         return 0;
2943 }
2944
2945 /*
2946  * mono_type_stack_size:
2947  * @t: the type to return the size it uses on the stack
2948  *
2949  * Returns: the number of bytes required to hold an instance of this
2950  * type on the runtime stack
2951  */
2952 int
2953 mono_type_stack_size (MonoType *t, gint *align)
2954 {
2955         int tmp;
2956
2957         g_assert (t != NULL);
2958
2959         if (!align)
2960                 align = &tmp;
2961
2962         if (t->byref) {
2963                 *align = __alignof__(gpointer);
2964                 return sizeof (gpointer);
2965         }
2966
2967         switch (t->type){
2968         case MONO_TYPE_BOOLEAN:
2969         case MONO_TYPE_CHAR:
2970         case MONO_TYPE_I1:
2971         case MONO_TYPE_U1:
2972         case MONO_TYPE_I2:
2973         case MONO_TYPE_U2:
2974         case MONO_TYPE_I4:
2975         case MONO_TYPE_U4:
2976         case MONO_TYPE_I:
2977         case MONO_TYPE_U:
2978         case MONO_TYPE_STRING:
2979         case MONO_TYPE_OBJECT:
2980         case MONO_TYPE_CLASS:
2981         case MONO_TYPE_SZARRAY:
2982         case MONO_TYPE_PTR:
2983         case MONO_TYPE_FNPTR:
2984         case MONO_TYPE_ARRAY:
2985                 *align = __alignof__(gpointer);
2986                 return sizeof (gpointer);
2987         case MONO_TYPE_TYPEDBYREF:
2988                 *align = __alignof__(gpointer);
2989                 return sizeof (gpointer) * 3;
2990         case MONO_TYPE_R4:
2991                 *align = __alignof__(float);
2992                 return sizeof (float);          
2993         case MONO_TYPE_I8:
2994         case MONO_TYPE_U8:
2995                 *align = __alignof__(gint64);
2996                 return sizeof (gint64);         
2997         case MONO_TYPE_R8:
2998                 *align = __alignof__(double);
2999                 return sizeof (double);
3000         case MONO_TYPE_VALUETYPE: {
3001                 guint32 size;
3002
3003                 if (t->data.klass->enumtype)
3004                         return mono_type_stack_size (t->data.klass->enum_basetype, align);
3005                 else {
3006                         size = mono_class_value_size (t->data.klass, align);
3007
3008                         *align = *align + __alignof__(gpointer) - 1;
3009                         *align &= ~(__alignof__(gpointer) - 1);
3010
3011                         size += sizeof (gpointer) - 1;
3012                         size &= ~(sizeof (gpointer) - 1);
3013
3014                         return size;
3015                 }
3016         }
3017         case MONO_TYPE_GENERICINST: {
3018                 MonoInflatedGenericClass *gclass;
3019                 MonoClass *container_class;
3020
3021                 gclass = mono_get_inflated_generic_class (t->data.generic_class);
3022                 container_class = gclass->generic_class.container_class;
3023
3024                 g_assert (!gclass->generic_class.inst->is_open);
3025                 g_assert (!gclass->klass->generic_container);
3026
3027                 if (container_class->valuetype) {
3028                         if (container_class->enumtype)
3029                                 return mono_type_stack_size (container_class->enum_basetype, align);
3030                         else {
3031                                 guint32 size = mono_class_value_size (gclass->klass, align);
3032
3033                                 *align = *align + __alignof__(gpointer) - 1;
3034                                 *align &= ~(__alignof__(gpointer) - 1);
3035
3036                                 size += sizeof (gpointer) - 1;
3037                                 size &= ~(sizeof (gpointer) - 1);
3038
3039                                 return size;
3040                         }
3041                 } else {
3042                         *align = __alignof__(gpointer);
3043                         return sizeof (gpointer);
3044                 }
3045         }
3046         default:
3047                 g_error ("type 0x%02x unknown", t->type);
3048         }
3049         return 0;
3050 }
3051
3052 gboolean
3053 mono_metadata_generic_class_is_valuetype (MonoGenericClass *gclass)
3054 {
3055         return gclass->container_class->valuetype;
3056 }
3057
3058 static gboolean
3059 _mono_metadata_generic_class_equal (const MonoGenericClass *g1, const MonoGenericClass *g2, gboolean signature_only)
3060 {
3061         int i;
3062
3063         if ((g1->inst->type_argc != g2->inst->type_argc) || (g1->is_dynamic != g2->is_dynamic) ||
3064             (g1->inst->is_reference != g2->inst->is_reference))
3065                 return FALSE;
3066         if (!mono_metadata_class_equal (g1->container_class, g2->container_class, signature_only))
3067                 return FALSE;
3068         for (i = 0; i < g1->inst->type_argc; ++i) {
3069                 if (!do_mono_metadata_type_equal (g1->inst->type_argv [i], g2->inst->type_argv [i], signature_only))
3070                         return FALSE;
3071         }
3072         return TRUE;
3073 }
3074
3075 guint
3076 mono_metadata_generic_method_hash (MonoGenericMethod *gmethod)
3077 {
3078         return gmethod->inst->id;
3079 }
3080
3081 gboolean
3082 mono_metadata_generic_method_equal (MonoGenericMethod *g1, MonoGenericMethod *g2)
3083 {
3084         return (g1->container == g2->container) && (g1->generic_class == g2->generic_class) &&
3085                 (g1->inst == g2->inst);
3086 }
3087
3088
3089 /*
3090  * mono_metadata_type_hash:
3091  * @t1: a type
3092  *
3093  * Computes an hash value for @t1 to be used in GHashTable.
3094  */
3095 guint
3096 mono_metadata_type_hash (MonoType *t1)
3097 {
3098         guint hash = t1->type;
3099
3100         hash |= t1->byref << 6; /* do not collide with t1->type values */
3101         switch (t1->type) {
3102         case MONO_TYPE_VALUETYPE:
3103         case MONO_TYPE_CLASS:
3104         case MONO_TYPE_SZARRAY:
3105                 /* check if the distribution is good enough */
3106                 return ((hash << 5) - hash) ^ g_str_hash (t1->data.klass->name);
3107         case MONO_TYPE_PTR:
3108                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (t1->data.type);
3109         case MONO_TYPE_ARRAY:
3110                 return ((hash << 5) - hash) ^ mono_metadata_type_hash (&t1->data.array->eklass->byval_arg);
3111         case MONO_TYPE_GENERICINST:
3112                 return ((hash << 5) - hash) ^ mono_generic_class_hash (t1->data.generic_class);
3113         }
3114         return hash;
3115 }
3116
3117 static gboolean
3118 mono_metadata_generic_param_equal (MonoGenericParam *p1, MonoGenericParam *p2, gboolean signature_only)
3119 {
3120         if (p1 == p2)
3121                 return TRUE;
3122         if (p1->num != p2->num)
3123                 return FALSE;
3124
3125         if (p1->owner == p2->owner)
3126                 return TRUE;
3127
3128         /*
3129          * If `signature_only' is true, we're comparing two (method) signatures.
3130          * In this case, the owner of two type parameters doesn't need to match.
3131          */
3132
3133         return signature_only;
3134 }
3135
3136 static gboolean
3137 mono_metadata_class_equal (MonoClass *c1, MonoClass *c2, gboolean signature_only)
3138 {
3139         if (c1 == c2)
3140                 return TRUE;
3141         if (c1->generic_class && c2->generic_class)
3142                 return _mono_metadata_generic_class_equal (c1->generic_class, c2->generic_class, signature_only);
3143         if ((c1->byval_arg.type == MONO_TYPE_VAR) && (c2->byval_arg.type == MONO_TYPE_VAR))
3144                 return mono_metadata_generic_param_equal (
3145                         c1->byval_arg.data.generic_param, c2->byval_arg.data.generic_param, signature_only);
3146         if ((c1->byval_arg.type == MONO_TYPE_MVAR) && (c2->byval_arg.type == MONO_TYPE_MVAR))
3147                 return mono_metadata_generic_param_equal (
3148                         c1->byval_arg.data.generic_param, c2->byval_arg.data.generic_param, signature_only);
3149         if (signature_only &&
3150             (c1->byval_arg.type == MONO_TYPE_SZARRAY) && (c2->byval_arg.type == MONO_TYPE_SZARRAY))
3151                 return mono_metadata_class_equal (c1->byval_arg.data.klass, c2->byval_arg.data.klass, signature_only);
3152         return FALSE;
3153 }
3154
3155 /*
3156  * mono_metadata_type_equal:
3157  * @t1: a type
3158  * @t2: another type
3159  *
3160  * Determine if @t1 and @t2 represent the same type.
3161  * Returns: #TRUE if @t1 and @t2 are equal.
3162  */
3163 static gboolean
3164 do_mono_metadata_type_equal (MonoType *t1, MonoType *t2, gboolean signature_only)
3165 {
3166         if (t1->type != t2->type || t1->byref != t2->byref)
3167                 return FALSE;
3168
3169         switch (t1->type) {
3170         case MONO_TYPE_VOID:
3171         case MONO_TYPE_BOOLEAN:
3172         case MONO_TYPE_CHAR:
3173         case MONO_TYPE_I1:
3174         case MONO_TYPE_U1:
3175         case MONO_TYPE_I2:
3176         case MONO_TYPE_U2:
3177         case MONO_TYPE_I4:
3178         case MONO_TYPE_U4:
3179         case MONO_TYPE_I8:
3180         case MONO_TYPE_U8:
3181         case MONO_TYPE_R4:
3182         case MONO_TYPE_R8:
3183         case MONO_TYPE_STRING:
3184         case MONO_TYPE_I:
3185         case MONO_TYPE_U:
3186         case MONO_TYPE_OBJECT:
3187         case MONO_TYPE_TYPEDBYREF:
3188                 return TRUE;
3189         case MONO_TYPE_VALUETYPE:
3190         case MONO_TYPE_CLASS:
3191         case MONO_TYPE_SZARRAY:
3192                 return mono_metadata_class_equal (t1->data.klass, t2->data.klass, signature_only);
3193         case MONO_TYPE_PTR:
3194                 return do_mono_metadata_type_equal (t1->data.type, t2->data.type, signature_only);
3195         case MONO_TYPE_ARRAY:
3196                 if (t1->data.array->rank != t2->data.array->rank)
3197                         return FALSE;
3198                 return mono_metadata_class_equal (t1->data.array->eklass, t2->data.array->eklass, signature_only);
3199         case MONO_TYPE_GENERICINST:
3200                 return _mono_metadata_generic_class_equal (
3201                         t1->data.generic_class, t2->data.generic_class, signature_only);
3202         case MONO_TYPE_VAR:
3203                 return mono_metadata_generic_param_equal (
3204                         t1->data.generic_param, t2->data.generic_param, signature_only);
3205         case MONO_TYPE_MVAR:
3206                 return mono_metadata_generic_param_equal (
3207                         t1->data.generic_param, t2->data.generic_param, signature_only);
3208         default:
3209                 g_error ("implement type compare for %0x!", t1->type);
3210                 return FALSE;
3211         }
3212
3213         return FALSE;
3214 }
3215
3216 gboolean
3217 mono_metadata_type_equal (MonoType *t1, MonoType *t2)
3218 {
3219         return do_mono_metadata_type_equal (t1, t2, FALSE);
3220 }
3221
3222 /**
3223  * mono_metadata_signature_equal:
3224  * @sig1: a signature
3225  * @sig2: another signature
3226  *
3227  * Determine if @sig1 and @sig2 represent the same signature, with the
3228  * same number of arguments and the same types.
3229  * Returns: #TRUE if @sig1 and @sig2 are equal.
3230  */
3231 gboolean
3232 mono_metadata_signature_equal (MonoMethodSignature *sig1, MonoMethodSignature *sig2)
3233 {
3234         int i;
3235
3236         if (sig1->hasthis != sig2->hasthis || sig1->param_count != sig2->param_count)
3237                 return FALSE;
3238
3239         /*
3240          * We're just comparing the signatures of two methods here:
3241          *
3242          * If we have two generic methods `void Foo<U> (U u)' and `void Bar<V> (V v)',
3243          * U and V are equal here.
3244          *
3245          * That's what the `signature_only' argument of do_mono_metadata_type_equal() is for.
3246          */
3247
3248         for (i = 0; i < sig1->param_count; i++) { 
3249                 MonoType *p1 = sig1->params[i];
3250                 MonoType *p2 = sig2->params[i];
3251                 
3252                 /* if (p1->attrs != p2->attrs)
3253                         return FALSE;
3254                 */
3255                 if (!do_mono_metadata_type_equal (p1, p2, TRUE))
3256                         return FALSE;
3257         }
3258
3259         if (!do_mono_metadata_type_equal (sig1->ret, sig2->ret, TRUE))
3260                 return FALSE;
3261         return TRUE;
3262 }
3263
3264 guint
3265 mono_signature_hash (MonoMethodSignature *sig)
3266 {
3267         guint i, res = sig->ret->type;
3268
3269         for (i = 0; i < sig->param_count; i++)
3270                 res = (res << 5) - res + mono_type_hash (sig->params[i]);
3271
3272         return res;
3273 }
3274
3275 /*
3276  * mono_metadata_encode_value:
3277  * @value: value to encode
3278  * @buf: buffer where to write the compressed representation
3279  * @endbuf: pointer updated to point at the end of the encoded output
3280  *
3281  * Encodes the value @value in the compressed representation used
3282  * in metadata and stores the result in @buf. @buf needs to be big
3283  * enough to hold the data (4 bytes).
3284  */
3285 void
3286 mono_metadata_encode_value (guint32 value, char *buf, char **endbuf)
3287 {
3288         char *p = buf;
3289         
3290         if (value < 0x80)
3291                 *p++ = value;
3292         else if (value < 0x4000) {
3293                 p [0] = 0x80 | (value >> 8);
3294                 p [1] = value & 0xff;
3295                 p += 2;
3296         } else {
3297                 p [0] = (value >> 24) | 0xc0;
3298                 p [1] = (value >> 16) & 0xff;
3299                 p [2] = (value >> 8) & 0xff;
3300                 p [3] = value & 0xff;
3301                 p += 4;
3302         }
3303         if (endbuf)
3304                 *endbuf = p;
3305 }
3306
3307 /*
3308  * mono_metadata_field_info:
3309  * @meta: the Image the field is defined in
3310  * @index: the index in the field table representing the field
3311  * @offset: a pointer to an integer where to store the offset that 
3312  * may have been specified for the field in a FieldLayout table
3313  * @rva: a pointer to the RVA of the field data in the image that
3314  * may have been defined in a FieldRVA table
3315  * @marshal_spec: a pointer to the marshal spec that may have been 
3316  * defined for the field in a FieldMarshal table.
3317  *
3318  * Gather info for field @index that may have been defined in the FieldLayout, 
3319  * FieldRVA and FieldMarshal tables.
3320  * Either of offset, rva and marshal_spec can be NULL if you're not interested 
3321  * in the data.
3322  */
3323 void
3324 mono_metadata_field_info (MonoImage *meta, guint32 index, guint32 *offset, guint32 *rva, 
3325                           MonoMarshalSpec **marshal_spec)
3326 {
3327         MonoTableInfo *tdef;
3328         locator_t loc;
3329
3330         loc.idx = index + 1;
3331         if (offset) {
3332                 tdef = &meta->tables [MONO_TABLE_FIELDLAYOUT];
3333
3334                 loc.col_idx = MONO_FIELD_LAYOUT_FIELD;
3335                 loc.t = tdef;
3336
3337                 if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
3338                         *offset = mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_LAYOUT_OFFSET);
3339                 } else {
3340                         *offset = (guint32)-1;
3341                 }
3342         }
3343         if (rva) {
3344                 tdef = &meta->tables [MONO_TABLE_FIELDRVA];
3345
3346                 loc.col_idx = MONO_FIELD_RVA_FIELD;
3347                 loc.t = tdef;
3348                 
3349                 if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
3350                         /*
3351                          * LAMESPEC: There is no signature, no nothing, just the raw data.
3352                          */
3353                         *rva = mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_RVA_RVA);
3354                 } else {
3355                         *rva = 0;
3356                 }
3357         }
3358         if (marshal_spec) {
3359                 const char *p;
3360                 
3361                 if ((p = mono_metadata_get_marshal_info (meta, index, TRUE))) {
3362                         *marshal_spec = mono_metadata_parse_marshal_spec (meta, p);
3363                 }
3364         }
3365
3366 }
3367
3368 /*
3369  * mono_metadata_get_constant_index:
3370  * @meta: the Image the field is defined in
3371  * @index: the token that may have a row defined in the constants table
3372  * @hint: possible position for the row
3373  *
3374  * @token must be a FieldDef, ParamDef or PropertyDef token.
3375  *
3376  * Returns: the index into the Constants table or 0 if not found.
3377  */
3378 guint32
3379 mono_metadata_get_constant_index (MonoImage *meta, guint32 token, guint32 hint)
3380 {
3381         MonoTableInfo *tdef;
3382         locator_t loc;
3383         guint32 index = mono_metadata_token_index (token);
3384
3385         tdef = &meta->tables [MONO_TABLE_CONSTANT];
3386         index <<= MONO_HASCONSTANT_BITS;
3387         switch (mono_metadata_token_table (token)) {
3388         case MONO_TABLE_FIELD:
3389                 index |= MONO_HASCONSTANT_FIEDDEF;
3390                 break;
3391         case MONO_TABLE_PARAM:
3392                 index |= MONO_HASCONSTANT_PARAM;
3393                 break;
3394         case MONO_TABLE_PROPERTY:
3395                 index |= MONO_HASCONSTANT_PROPERTY;
3396                 break;
3397         default:
3398                 g_warning ("Not a valid token for the constant table: 0x%08x", token);
3399                 return 0;
3400         }
3401         loc.idx = index;
3402         loc.col_idx = MONO_CONSTANT_PARENT;
3403         loc.t = tdef;
3404
3405         if ((hint > 0) && (hint < tdef->rows) && (mono_metadata_decode_row_col (tdef, hint - 1, MONO_CONSTANT_PARENT) == index))
3406                 return hint;
3407
3408         if (tdef->base && bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator)) {
3409                 return loc.result + 1;
3410         }
3411         return 0;
3412 }
3413
3414 /*
3415  * mono_metadata_events_from_typedef:
3416  * @meta: metadata context
3417  * @index: 0-based index (in the TypeDef table) describing a type
3418  *
3419  * Returns: the 0-based index in the Event table for the events in the
3420  * type. The last event that belongs to the type (plus 1) is stored
3421  * in the @end_idx pointer.
3422  */
3423 guint32
3424 mono_metadata_events_from_typedef (MonoImage *meta, guint32 index, guint *end_idx)
3425 {
3426         locator_t loc;
3427         guint32 start, end;
3428         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_EVENTMAP];
3429
3430         *end_idx = 0;
3431         
3432         if (!tdef->base)
3433                 return 0;
3434
3435         loc.t = tdef;
3436         loc.col_idx = MONO_EVENT_MAP_PARENT;
3437         loc.idx = index + 1;
3438
3439         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3440                 return 0;
3441         
3442         start = mono_metadata_decode_row_col (tdef, loc.result, MONO_EVENT_MAP_EVENTLIST);
3443         if (loc.result + 1 < tdef->rows) {
3444                 end = mono_metadata_decode_row_col (tdef, loc.result + 1, MONO_EVENT_MAP_EVENTLIST) - 1;
3445         } else {
3446                 end = meta->tables [MONO_TABLE_EVENT].rows;
3447         }
3448
3449         *end_idx = end;
3450         return start - 1;
3451 }
3452
3453 /*
3454  * mono_metadata_methods_from_event:
3455  * @meta: metadata context
3456  * @index: 0-based index (in the Event table) describing a event
3457  *
3458  * Returns: the 0-based index in the MethodDef table for the methods in the
3459  * event. The last method that belongs to the event (plus 1) is stored
3460  * in the @end_idx pointer.
3461  */
3462 guint32
3463 mono_metadata_methods_from_event   (MonoImage *meta, guint32 index, guint *end_idx)
3464 {
3465         locator_t loc;
3466         guint start, end;
3467         guint32 cols [MONO_METHOD_SEMA_SIZE];
3468         MonoTableInfo *msemt = &meta->tables [MONO_TABLE_METHODSEMANTICS];
3469
3470         *end_idx = 0;
3471         if (!msemt->base)
3472                 return 0;
3473
3474         loc.t = msemt;
3475         loc.col_idx = MONO_METHOD_SEMA_ASSOCIATION;
3476         loc.idx = ((index + 1) << MONO_HAS_SEMANTICS_BITS) | MONO_HAS_SEMANTICS_EVENT; /* Method association coded index */
3477
3478         if (!bsearch (&loc, msemt->base, msemt->rows, msemt->row_size, table_locator))
3479                 return 0;
3480
3481         start = loc.result;
3482         /*
3483          * We may end up in the middle of the rows... 
3484          */
3485         while (start > 0) {
3486                 if (loc.idx == mono_metadata_decode_row_col (msemt, start - 1, MONO_METHOD_SEMA_ASSOCIATION))
3487                         start--;
3488                 else
3489                         break;
3490         }
3491         end = start + 1;
3492         while (end < msemt->rows) {
3493                 mono_metadata_decode_row (msemt, end, cols, MONO_METHOD_SEMA_SIZE);
3494                 if (cols [MONO_METHOD_SEMA_ASSOCIATION] != loc.idx)
3495                         break;
3496                 ++end;
3497         }
3498         *end_idx = end;
3499         return start;
3500 }
3501
3502 /*
3503  * mono_metadata_properties_from_typedef:
3504  * @meta: metadata context
3505  * @index: 0-based index (in the TypeDef table) describing a type
3506  *
3507  * Returns: the 0-based index in the Property table for the properties in the
3508  * type. The last property that belongs to the type (plus 1) is stored
3509  * in the @end_idx pointer.
3510  */
3511 guint32
3512 mono_metadata_properties_from_typedef (MonoImage *meta, guint32 index, guint *end_idx)
3513 {
3514         locator_t loc;
3515         guint32 start, end;
3516         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_PROPERTYMAP];
3517
3518         *end_idx = 0;
3519         
3520         if (!tdef->base)
3521                 return 0;
3522
3523         loc.t = tdef;
3524         loc.col_idx = MONO_PROPERTY_MAP_PARENT;
3525         loc.idx = index + 1;
3526
3527         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3528                 return 0;
3529         
3530         start = mono_metadata_decode_row_col (tdef, loc.result, MONO_PROPERTY_MAP_PROPERTY_LIST);
3531         if (loc.result + 1 < tdef->rows) {
3532                 end = mono_metadata_decode_row_col (tdef, loc.result + 1, MONO_PROPERTY_MAP_PROPERTY_LIST) - 1;
3533         } else {
3534                 end = meta->tables [MONO_TABLE_PROPERTY].rows;
3535         }
3536
3537         *end_idx = end;
3538         return start - 1;
3539 }
3540
3541 /*
3542  * mono_metadata_methods_from_property:
3543  * @meta: metadata context
3544  * @index: 0-based index (in the PropertyDef table) describing a property
3545  *
3546  * Returns: the 0-based index in the MethodDef table for the methods in the
3547  * property. The last method that belongs to the property (plus 1) is stored
3548  * in the @end_idx pointer.
3549  */
3550 guint32
3551 mono_metadata_methods_from_property   (MonoImage *meta, guint32 index, guint *end_idx)
3552 {
3553         locator_t loc;
3554         guint start, end;
3555         guint32 cols [MONO_METHOD_SEMA_SIZE];
3556         MonoTableInfo *msemt = &meta->tables [MONO_TABLE_METHODSEMANTICS];
3557
3558         *end_idx = 0;
3559         if (!msemt->base)
3560                 return 0;
3561
3562         loc.t = msemt;
3563         loc.col_idx = MONO_METHOD_SEMA_ASSOCIATION;
3564         loc.idx = ((index + 1) << MONO_HAS_SEMANTICS_BITS) | MONO_HAS_SEMANTICS_PROPERTY; /* Method association coded index */
3565
3566         if (!bsearch (&loc, msemt->base, msemt->rows, msemt->row_size, table_locator))
3567                 return 0;
3568
3569         start = loc.result;
3570         /*
3571          * We may end up in the middle of the rows... 
3572          */
3573         while (start > 0) {
3574                 if (loc.idx == mono_metadata_decode_row_col (msemt, start - 1, MONO_METHOD_SEMA_ASSOCIATION))
3575                         start--;
3576                 else
3577                         break;
3578         }
3579         end = start + 1;
3580         while (end < msemt->rows) {
3581                 mono_metadata_decode_row (msemt, end, cols, MONO_METHOD_SEMA_SIZE);
3582                 if (cols [MONO_METHOD_SEMA_ASSOCIATION] != loc.idx)
3583                         break;
3584                 ++end;
3585         }
3586         *end_idx = end;
3587         return start;
3588 }
3589
3590 guint32
3591 mono_metadata_implmap_from_method (MonoImage *meta, guint32 method_idx)
3592 {
3593         locator_t loc;
3594         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_IMPLMAP];
3595
3596         if (!tdef->base)
3597                 return 0;
3598
3599         loc.t = tdef;
3600         loc.col_idx = MONO_IMPLMAP_MEMBER;
3601         loc.idx = ((method_idx + 1) << MONO_MEMBERFORWD_BITS) | MONO_MEMBERFORWD_METHODDEF;
3602
3603         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
3604                 return 0;
3605
3606         return loc.result + 1;
3607 }
3608
3609 /**
3610  * @ptr: MonoType to unwrap
3611  *
3612  * Recurses in array/szarray to get the element type.
3613  * Returns the element MonoType or the @ptr itself if its not an array/szarray.
3614  */
3615 static MonoType*
3616 unwrap_arrays (MonoType *ptr)
3617 {
3618         while (ptr->type == MONO_TYPE_ARRAY || ptr->type == MONO_TYPE_SZARRAY)
3619                 /* Found an array/szarray, recurse to get the element type */
3620                 if (ptr->type == MONO_TYPE_ARRAY)
3621                         ptr = &ptr->data.array->eklass->byval_arg;
3622                 else
3623                         ptr = &ptr->data.klass->byval_arg;
3624         return ptr;
3625 }
3626
3627 /**
3628  * @inst: GENERIC_INST
3629  * @context: context to compare against
3630  *
3631  * Check if the VARs or MVARs in the GENERIC_INST @inst refer to the context @context.
3632  */
3633 static gboolean
3634 has_same_context (MonoGenericInst *inst, MonoGenericContext *context)
3635 {
3636         int i = 0, count = inst->type_argc;
3637         MonoType **ptr = inst->type_argv;
3638
3639         if (!context)
3640                 return FALSE;
3641
3642         restart_loop:   
3643         for (i = 0; i < count; i++) {
3644                 MonoType *ctype;
3645
3646                 ctype = unwrap_arrays (ptr [i]);
3647
3648                 if (ctype->type == MONO_TYPE_MVAR || ctype->type == MONO_TYPE_VAR) {
3649                         MonoGenericContainer *owner = ctype->data.generic_param->owner;
3650                         MonoGenericContainer *gc = (MonoGenericContainer *) context;
3651                         return owner == gc || (ctype->type == MONO_TYPE_VAR && owner == gc->parent);
3652                 }
3653
3654                 if (ctype->type == MONO_TYPE_GENERICINST && ctype->data.generic_class->inst->is_open) {
3655                         /* Found an open GenericInst recurse into it. We care about
3656                            finding the first argument that is a generic parameter. */
3657                         count = ctype->data.generic_class->inst->type_argc;
3658                         ptr = ctype->data.generic_class->inst->type_argv;
3659                         goto restart_loop;
3660                 }
3661         }
3662         g_assert_not_reached ();
3663         return TRUE;
3664 }
3665
3666 /**
3667  * @image: context where the image is created
3668  * @type_spec:  typespec token
3669  *
3670  * Creates a MonoType representing the TypeSpec indexed by the @type_spec
3671  * token.
3672  */
3673 MonoType *
3674 mono_type_create_from_typespec_full (MonoImage *image, MonoGenericContext *generic_context, guint32 type_spec)
3675 {
3676         guint32 idx = mono_metadata_token_index (type_spec);
3677         MonoTableInfo *t;
3678         guint32 cols [MONO_TYPESPEC_SIZE];       
3679         const char *ptr;
3680         guint32 len;
3681         MonoType *type;
3682         gboolean cache_type = TRUE;
3683
3684         mono_loader_lock ();
3685
3686         type = g_hash_table_lookup (image->typespec_cache, GUINT_TO_POINTER (type_spec));
3687
3688         if (type && type->type == MONO_TYPE_GENERICINST && type->data.generic_class->inst->is_open &&
3689             !has_same_context (type->data.generic_class->inst, generic_context))
3690                 /* is_open AND does not have the same context as generic_context, so don't use cached MonoType */
3691                 type = NULL;
3692
3693         if (type && (type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR)) {
3694                 if (generic_context) {
3695                         MonoGenericContainer *gc = generic_context->container;
3696                         if (type->type == MONO_TYPE_VAR && gc->parent)
3697                                 gc = gc->parent;
3698
3699                         g_assert (type->type != MONO_TYPE_MVAR || gc->is_method);
3700                         g_assert (type->type != MONO_TYPE_VAR || !gc->is_method);
3701
3702                         /* Use the one already cached in the container, if it exists. Otherwise, ensure that it's created */
3703                         type = gc->types ? gc->types [type->data.generic_param->num] : NULL;
3704
3705                         /* Either way, some other variant of this generic-parameter is already in the typespec cache. */
3706                         cache_type = FALSE;
3707                 } else if (type->data.generic_param->owner) {
3708                         /*
3709                          * We need a null-owner generic-parameter, but the one in the cache has an owner.
3710                          * Ensure that the null-owner generic-parameter goes into the cache.
3711                          *
3712                          * Together with the 'cache_type = FALSE;' line in the other arm of this condition,
3713                          * this ensures that a null-owner generic-parameter, once created, doesn't need to be re-created.
3714                          * The generic-parameters with owners are cached in their respective owners, and thus don't
3715                          * need to be re-created either.
3716                          */
3717                         type = NULL;
3718                 }
3719         }
3720
3721         if (type) {
3722                 mono_loader_unlock ();
3723                 return type;
3724         }
3725
3726         t = &image->tables [MONO_TABLE_TYPESPEC];
3727         
3728         mono_metadata_decode_row (t, idx-1, cols, MONO_TYPESPEC_SIZE);
3729         ptr = mono_metadata_blob_heap (image, cols [MONO_TYPESPEC_SIGNATURE]);
3730         len = mono_metadata_decode_value (ptr, &ptr);
3731
3732         type = g_new0 (MonoType, 1);
3733
3734         if (!cache_type)
3735                 g_hash_table_insert (image->typespec_cache, GUINT_TO_POINTER (type_spec), type);
3736
3737         if (*ptr == MONO_TYPE_BYREF) {
3738                 type->byref = 1; 
3739                 ptr++;
3740         }
3741
3742         do_mono_metadata_parse_type (type, image, generic_context, ptr, &ptr);
3743
3744         if ((type->type == MONO_TYPE_VAR || type->type == MONO_TYPE_MVAR) && type->data.generic_param->owner) {
3745                 MonoGenericContainer *container = type->data.generic_param->owner;
3746
3747                 if (!container->types)
3748                         container->types = g_new0 (MonoType*, container->type_argc);
3749
3750                 container->types [type->data.generic_param->num] = type;
3751         }
3752
3753         mono_loader_unlock ();
3754
3755         return type;
3756 }
3757
3758 MonoType *
3759 mono_type_create_from_typespec (MonoImage *image, guint32 type_spec)
3760 {
3761         return mono_type_create_from_typespec_full (image, NULL, type_spec);
3762 }
3763
3764 MonoMarshalSpec *
3765 mono_metadata_parse_marshal_spec (MonoImage *image, const char *ptr)
3766 {
3767         MonoMarshalSpec *res;
3768         int len;
3769         const char *start = ptr;
3770
3771         /* fixme: this is incomplete, but I cant find more infos in the specs */
3772
3773         res = g_new0 (MonoMarshalSpec, 1);
3774         
3775         len = mono_metadata_decode_value (ptr, &ptr);
3776         res->native = *ptr++;
3777
3778         if (res->native == MONO_NATIVE_LPARRAY) {
3779                 res->data.array_data.param_num = -1;
3780                 res->data.array_data.num_elem = -1;
3781                 res->data.array_data.elem_mult = -1;
3782
3783                 if (ptr - start <= len)
3784                         res->data.array_data.elem_type = *ptr++;
3785                 if (ptr - start <= len)
3786                         res->data.array_data.param_num = mono_metadata_decode_value (ptr, &ptr);
3787                 if (ptr - start <= len)
3788                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
3789                 if (ptr - start <= len) {
3790                         /*
3791                          * LAMESPEC: Older spec versions say this parameter comes before 
3792                          * num_elem. Never spec versions don't talk about elem_mult at
3793                          * all, but csc still emits it, and it is used to distinguish
3794                          * between param_num being 0, and param_num being omitted.
3795                          * So if (param_num == 0) && (num_elem > 0), then
3796                          * elem_mult == 0 -> the array size is num_elem
3797                          * elem_mult == 1 -> the array size is @param_num + num_elem
3798                          */
3799                         res->data.array_data.elem_mult = mono_metadata_decode_value (ptr, &ptr);
3800                 }
3801         } 
3802
3803         if (res->native == MONO_NATIVE_BYVALTSTR) {
3804                 if (ptr - start <= len)
3805                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
3806         }
3807
3808         if (res->native == MONO_NATIVE_BYVALARRAY) {
3809                 if (ptr - start <= len)
3810                         res->data.array_data.num_elem = mono_metadata_decode_value (ptr, &ptr);
3811         }
3812         
3813         if (res->native == MONO_NATIVE_CUSTOM) {
3814                 /* skip unused type guid */
3815                 len = mono_metadata_decode_value (ptr, &ptr);
3816                 ptr += len;
3817                 /* skip unused native type name */
3818                 len = mono_metadata_decode_value (ptr, &ptr);
3819                 ptr += len;
3820                 /* read custom marshaler type name */
3821                 len = mono_metadata_decode_value (ptr, &ptr);
3822                 res->data.custom_data.custom_name = g_strndup (ptr, len);               
3823                 ptr += len;
3824                 /* read cookie string */
3825                 len = mono_metadata_decode_value (ptr, &ptr);
3826                 res->data.custom_data.cookie = g_strndup (ptr, len);
3827         }
3828
3829         if (res->native == MONO_NATIVE_SAFEARRAY) {
3830                 res->data.safearray_data.elem_type = 0;
3831                 res->data.safearray_data.num_elem = 0;
3832                 if (ptr - start <= len)
3833                         res->data.safearray_data.elem_type = *ptr++;
3834                 if (ptr - start <= len)
3835                         res->data.safearray_data.num_elem = *ptr++;
3836         }
3837         return res;
3838 }
3839
3840 void 
3841 mono_metadata_free_marshal_spec (MonoMarshalSpec *spec)
3842 {
3843         if (spec->native == MONO_NATIVE_CUSTOM) {
3844                 g_free (spec->data.custom_data.custom_name);
3845                 g_free (spec->data.custom_data.cookie);
3846         }
3847         g_free (spec);
3848 }
3849         
3850 guint32
3851 mono_type_to_unmanaged (MonoType *type, MonoMarshalSpec *mspec, gboolean as_field,
3852                         gboolean unicode, MonoMarshalConv *conv) 
3853 {
3854         MonoMarshalConv dummy_conv;
3855         int t = type->type;
3856
3857         if (!conv)
3858                 conv = &dummy_conv;
3859
3860         *conv = MONO_MARSHAL_CONV_NONE;
3861
3862         if (type->byref)
3863                 return MONO_NATIVE_UINT;
3864
3865 handle_enum:
3866         switch (t) {
3867         case MONO_TYPE_BOOLEAN: 
3868                 if (mspec) {
3869                         switch (mspec->native) {
3870                         case MONO_NATIVE_VARIANTBOOL:
3871                                 *conv = MONO_MARSHAL_CONV_BOOL_VARIANTBOOL;
3872                                 return MONO_NATIVE_VARIANTBOOL;
3873                         case MONO_NATIVE_BOOLEAN:
3874                                 *conv = MONO_MARSHAL_CONV_BOOL_I4;
3875                                 return MONO_NATIVE_BOOLEAN;
3876                         case MONO_NATIVE_I1:
3877                         case MONO_NATIVE_U1:
3878                                 return mspec->native;
3879                         default:
3880                                 g_error ("cant marshal bool to native type %02x", mspec->native);
3881                         }
3882                 }
3883                 *conv = MONO_MARSHAL_CONV_BOOL_I4;
3884                 return MONO_NATIVE_BOOLEAN;
3885         case MONO_TYPE_CHAR: return MONO_NATIVE_U2;
3886         case MONO_TYPE_I1: return MONO_NATIVE_I1;
3887         case MONO_TYPE_U1: return MONO_NATIVE_U1;
3888         case MONO_TYPE_I2: return MONO_NATIVE_I2;
3889         case MONO_TYPE_U2: return MONO_NATIVE_U2;
3890         case MONO_TYPE_I4: return MONO_NATIVE_I4;
3891         case MONO_TYPE_U4: return MONO_NATIVE_U4;
3892         case MONO_TYPE_I8: return MONO_NATIVE_I8;
3893         case MONO_TYPE_U8: return MONO_NATIVE_U8;
3894         case MONO_TYPE_R4: return MONO_NATIVE_R4;
3895         case MONO_TYPE_R8: return MONO_NATIVE_R8;
3896         case MONO_TYPE_STRING:
3897                 if (mspec) {
3898                         switch (mspec->native) {
3899                         case MONO_NATIVE_BSTR:
3900                                 *conv = MONO_MARSHAL_CONV_STR_BSTR;
3901                                 return MONO_NATIVE_BSTR;
3902                         case MONO_NATIVE_LPSTR:
3903                                 *conv = MONO_MARSHAL_CONV_STR_LPSTR;
3904                                 return MONO_NATIVE_LPSTR;
3905                         case MONO_NATIVE_LPWSTR:
3906                                 *conv = MONO_MARSHAL_CONV_STR_LPWSTR;
3907                                 return MONO_NATIVE_LPWSTR;
3908                         case MONO_NATIVE_LPTSTR:
3909                                 *conv = MONO_MARSHAL_CONV_STR_LPTSTR;
3910                                 return MONO_NATIVE_LPTSTR;
3911                         case MONO_NATIVE_ANSIBSTR:
3912                                 *conv = MONO_MARSHAL_CONV_STR_ANSIBSTR;
3913                                 return MONO_NATIVE_ANSIBSTR;
3914                         case MONO_NATIVE_TBSTR:
3915                                 *conv = MONO_MARSHAL_CONV_STR_TBSTR;
3916                                 return MONO_NATIVE_TBSTR;
3917                         case MONO_NATIVE_BYVALTSTR:
3918                                 if (unicode)
3919                                         *conv = MONO_MARSHAL_CONV_STR_BYVALWSTR;
3920                                 else
3921                                         *conv = MONO_MARSHAL_CONV_STR_BYVALSTR;
3922                                 return MONO_NATIVE_BYVALTSTR;
3923                         default:
3924                                 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);
3925                         }
3926                 }       
3927                 *conv = MONO_MARSHAL_CONV_STR_LPTSTR;
3928                 return MONO_NATIVE_LPTSTR; 
3929         case MONO_TYPE_PTR: return MONO_NATIVE_UINT;
3930         case MONO_TYPE_VALUETYPE: /*FIXME*/
3931                 if (type->data.klass->enumtype) {
3932                         t = type->data.klass->enum_basetype->type;
3933                         goto handle_enum;
3934                 }
3935                 return MONO_NATIVE_STRUCT;
3936         case MONO_TYPE_SZARRAY: 
3937         case MONO_TYPE_ARRAY: 
3938                 if (mspec) {
3939                         switch (mspec->native) {
3940                         case MONO_NATIVE_BYVALARRAY:
3941                                 *conv = MONO_MARSHAL_CONV_ARRAY_BYVALARRAY;
3942                                 return MONO_NATIVE_BYVALARRAY;
3943                         case MONO_NATIVE_SAFEARRAY:
3944                                 *conv = MONO_MARSHAL_CONV_ARRAY_SAVEARRAY;
3945                                 return MONO_NATIVE_SAFEARRAY;
3946                         case MONO_NATIVE_LPARRAY:                               
3947                                 *conv = MONO_MARSHAL_CONV_ARRAY_LPARRAY;
3948                                 return MONO_NATIVE_LPARRAY;
3949                         default:
3950                                 g_error ("cant marshal array as native type %02x", mspec->native);
3951                         }
3952                 }       
3953
3954                 *conv = MONO_MARSHAL_CONV_ARRAY_LPARRAY;
3955                 return MONO_NATIVE_LPARRAY;
3956         case MONO_TYPE_I: return MONO_NATIVE_INT;
3957         case MONO_TYPE_U: return MONO_NATIVE_UINT;
3958         case MONO_TYPE_CLASS: 
3959         case MONO_TYPE_OBJECT: {
3960                 /* FIXME : we need to handle ArrayList and StringBuilder here, probably */
3961                 if (mspec) {
3962                         switch (mspec->native) {
3963                         case MONO_NATIVE_STRUCT:
3964                                 return MONO_NATIVE_STRUCT;
3965                         case MONO_NATIVE_INTERFACE:
3966                                 *conv = MONO_MARSHAL_CONV_OBJECT_INTERFACE;
3967                                 return MONO_NATIVE_INTERFACE;
3968                         case MONO_NATIVE_IDISPATCH:
3969                                 *conv = MONO_MARSHAL_CONV_OBJECT_IDISPATCH;
3970                                 return MONO_NATIVE_IDISPATCH;
3971                         case MONO_NATIVE_IUNKNOWN:
3972                                 *conv = MONO_MARSHAL_CONV_OBJECT_IUNKNOWN;
3973                                 return MONO_NATIVE_IUNKNOWN;
3974                         case MONO_NATIVE_FUNC:
3975                                 if (t == MONO_TYPE_CLASS && (type->data.klass == mono_defaults.multicastdelegate_class ||
3976                                                                                          type->data.klass == mono_defaults.delegate_class || 
3977                                                                                          type->data.klass->parent == mono_defaults.multicastdelegate_class)) {
3978                                         *conv = MONO_MARSHAL_CONV_DEL_FTN;
3979                                         return MONO_NATIVE_FUNC;
3980                                 }
3981                                 /* Fall through */
3982                         default:
3983                                 g_error ("cant marshal object as native type %02x", mspec->native);
3984                         }
3985                 }
3986                 if (t == MONO_TYPE_CLASS && (type->data.klass == mono_defaults.multicastdelegate_class ||
3987                                              type->data.klass == mono_defaults.delegate_class || 
3988                                              type->data.klass->parent == mono_defaults.multicastdelegate_class)) {
3989                         *conv = MONO_MARSHAL_CONV_DEL_FTN;
3990                         return MONO_NATIVE_FUNC;
3991                 }
3992                 *conv = MONO_MARSHAL_CONV_OBJECT_STRUCT;
3993                 return MONO_NATIVE_STRUCT;
3994         }
3995         case MONO_TYPE_FNPTR: return MONO_NATIVE_FUNC;
3996         case MONO_TYPE_GENERICINST:
3997                 type = &type->data.generic_class->container_class->byval_arg;
3998                 t = type->type;
3999                 goto handle_enum;
4000         case MONO_TYPE_TYPEDBYREF:
4001         default:
4002                 g_error ("type 0x%02x not handled in marshal", t);
4003         }
4004         return MONO_NATIVE_MAX;
4005 }
4006
4007 const char*
4008 mono_metadata_get_marshal_info (MonoImage *meta, guint32 idx, gboolean is_field)
4009 {
4010         locator_t loc;
4011         MonoTableInfo *tdef  = &meta->tables [MONO_TABLE_FIELDMARSHAL];
4012
4013         if (!tdef->base)
4014                 return NULL;
4015
4016         loc.t = tdef;
4017         loc.col_idx = MONO_FIELD_MARSHAL_PARENT;
4018         loc.idx = ((idx + 1) << MONO_HAS_FIELD_MARSHAL_BITS) | (is_field? MONO_HAS_FIELD_MARSHAL_FIELDSREF: MONO_HAS_FIELD_MARSHAL_PARAMDEF);
4019
4020         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4021                 return NULL;
4022
4023         return mono_metadata_blob_heap (meta, mono_metadata_decode_row_col (tdef, loc.result, MONO_FIELD_MARSHAL_NATIVE_TYPE));
4024 }
4025
4026 static MonoMethod*
4027 method_from_method_def_or_ref (MonoImage *m, guint32 tok, MonoGenericContext *context)
4028 {
4029         guint32 idx = tok >> MONO_METHODDEFORREF_BITS;
4030         switch (tok & MONO_METHODDEFORREF_MASK) {
4031         case MONO_METHODDEFORREF_METHODDEF:
4032                 return mono_get_method_full (m, MONO_TOKEN_METHOD_DEF | idx, NULL, context);
4033         case MONO_METHODDEFORREF_METHODREF:
4034                 return mono_get_method_full (m, MONO_TOKEN_MEMBER_REF | idx, NULL, context);
4035         }
4036         g_assert_not_reached ();
4037         return NULL;
4038 }
4039
4040 /*
4041  * mono_class_get_overrides_full:
4042  *
4043  *   Return the method overrides belonging to class @type_token in @overrides, and
4044  * the number of overrides in @num_overrides.
4045  *
4046  * Returns: TRUE on success, FALSE on failure.
4047  */
4048 gboolean
4049 mono_class_get_overrides_full (MonoImage *image, guint32 type_token, MonoMethod ***overrides, gint32 *num_overrides,
4050                                MonoGenericContext *generic_context)
4051 {
4052         locator_t loc;
4053         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_METHODIMPL];
4054         guint32 start, end;
4055         gint32 i, num;
4056         guint32 cols [MONO_METHODIMPL_SIZE];
4057         MonoMethod **result;
4058
4059         *overrides = NULL;
4060         if (num_overrides)
4061                 *num_overrides = 0;
4062
4063         if (!tdef->base)
4064                 return TRUE;
4065
4066         loc.t = tdef;
4067         loc.col_idx = MONO_METHODIMPL_CLASS;
4068         loc.idx = mono_metadata_token_index (type_token);
4069
4070         if (!bsearch (&loc, tdef->base, tdef->rows, tdef->row_size, table_locator))
4071                 return TRUE;
4072
4073         start = loc.result;
4074         end = start + 1;
4075         /*
4076          * We may end up in the middle of the rows... 
4077          */
4078         while (start > 0) {
4079                 if (loc.idx == mono_metadata_decode_row_col (tdef, start - 1, MONO_METHODIMPL_CLASS))
4080                         start--;
4081                 else
4082                         break;
4083         }
4084         while (end < tdef->rows) {
4085                 if (loc.idx == mono_metadata_decode_row_col (tdef, end, MONO_METHODIMPL_CLASS))
4086                         end++;
4087                 else
4088                         break;
4089         }
4090         num = end - start;
4091         result = g_new (MonoMethod*, num * 2);
4092         for (i = 0; i < num; ++i) {
4093                 mono_metadata_decode_row (tdef, start + i, cols, MONO_METHODIMPL_SIZE);
4094                 result [i * 2] = method_from_method_def_or_ref (
4095                         image, cols [MONO_METHODIMPL_DECLARATION], generic_context);
4096                 result [i * 2 + 1] = method_from_method_def_or_ref (
4097                         image, cols [MONO_METHODIMPL_BODY], generic_context);
4098         }
4099
4100         *overrides = result;
4101         if (num_overrides)
4102                 *num_overrides = num;
4103         return TRUE;
4104 }
4105
4106 /**
4107  * mono_guid_to_string:
4108  *
4109  * Converts a 16 byte Microsoft GUID to the standard string representation.
4110  */
4111 char *
4112 mono_guid_to_string (const guint8 *guid)
4113 {
4114         return g_strdup_printf ("%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X", 
4115                                 guid[3], guid[2], guid[1], guid[0],
4116                                 guid[5], guid[4],
4117                                 guid[7], guid[6],
4118                                 guid[8], guid[9],
4119                                 guid[10], guid[11], guid[12], guid[13], guid[14], guid[15]);
4120 }
4121
4122 static gboolean
4123 get_constraints (MonoImage *image, int owner, MonoClass ***constraints, MonoGenericContext *context)
4124 {
4125         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAMCONSTRAINT];
4126         guint32 cols [MONO_GENPARCONSTRAINT_SIZE];
4127         guint32 i, token, found;
4128         MonoClass *klass, **res;
4129         GList *cons = NULL, *tmp;
4130         
4131         *constraints = NULL;
4132         found = 0;
4133         for (i = 0; i < tdef->rows; ++i) {
4134                 mono_metadata_decode_row (tdef, i, cols, MONO_GENPARCONSTRAINT_SIZE);
4135                 if (cols [MONO_GENPARCONSTRAINT_GENERICPAR] == owner) {
4136                         token = mono_metadata_token_from_dor (cols [MONO_GENPARCONSTRAINT_CONSTRAINT]);
4137                         klass = mono_class_get_full (image, token, context);
4138                         cons = g_list_append (cons, klass);
4139                         ++found;
4140                 } else {
4141                         /* contiguous list finished */
4142                         if (found)
4143                                 break;
4144                 }
4145         }
4146         if (!found)
4147                 return TRUE;
4148         res = g_new0 (MonoClass*, found + 1);
4149         for (i = 0, tmp = cons; i < found; ++i, tmp = tmp->next) {
4150                 res [i] = tmp->data;
4151         }
4152         g_list_free (cons);
4153         *constraints = res;
4154         return TRUE;
4155 }
4156
4157 /*
4158  * mono_metadata_get_generic_param_row:
4159  *
4160  * @image:
4161  * @token: TypeOrMethodDef token, owner for GenericParam
4162  * @owner: coded token, set on return
4163  * 
4164  * Returns: 1-based row-id in the GenericParam table whose
4165  * owner is @token. 0 if not found.
4166  */
4167 guint32
4168 mono_metadata_get_generic_param_row (MonoImage *image, guint32 token, guint32 *owner)
4169 {
4170         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
4171         guint32 cols [MONO_GENERICPARAM_SIZE];
4172         guint32 i;
4173
4174         g_assert (owner);
4175         if (!tdef->base)
4176                 return 0;
4177
4178         if (mono_metadata_token_table (token) == MONO_TABLE_TYPEDEF)
4179                 *owner = MONO_TYPEORMETHOD_TYPE;
4180         else if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
4181                 *owner = MONO_TYPEORMETHOD_METHOD;
4182         else {
4183                 g_error ("wrong token %x to get_generic_param_row", token);
4184                 return 0;
4185         }
4186         *owner |= mono_metadata_token_index (token) << MONO_TYPEORMETHOD_BITS;
4187
4188         for (i = 0; i < tdef->rows; ++i) {
4189                 mono_metadata_decode_row (tdef, i, cols, MONO_GENERICPARAM_SIZE);
4190                 if (cols [MONO_GENERICPARAM_OWNER] == *owner)
4191                         return i + 1;
4192         }
4193
4194         return 0;
4195 }
4196
4197 gboolean
4198 mono_metadata_has_generic_params (MonoImage *image, guint32 token)
4199 {
4200         guint32 owner;
4201         return mono_metadata_get_generic_param_row (image, token, &owner);
4202 }
4203
4204 /*
4205  * mono_metadata_load_generic_param_constraints:
4206  *
4207  * Load the generic parameter constraints for the newly created generic type or method
4208  * represented by @token and @container.  The @container is the new container which has
4209  * been returned by a call to mono_metadata_load_generic_params() with this @token.
4210  */
4211 void
4212 mono_metadata_load_generic_param_constraints (MonoImage *image, guint32 token,
4213                                               MonoGenericContainer *container)
4214 {
4215         guint32 start_row, i, owner;
4216         if (! (start_row = mono_metadata_get_generic_param_row (image, token, &owner)))
4217                 return;
4218         for (i = 0; i < container->type_argc; i++)
4219                 get_constraints (image, start_row + i, &container->type_params [i].constraints,
4220                                  &container->context);
4221 }
4222
4223 /*
4224  * mono_metadata_load_generic_params:
4225  *
4226  * Load the type parameters from the type or method definition @token.
4227  *
4228  * Use this method after parsing a type or method definition to figure out whether it's a generic
4229  * type / method.  When parsing a method definition, @parent_container points to the generic container
4230  * of the current class, if any.
4231  *
4232  * Note: This method does not load the constraints: for typedefs, this has to be done after fully
4233  *       creating the type.
4234  *
4235  * Returns: NULL if @token is not a generic type or method definition or the new generic container.
4236  *
4237  */
4238 MonoGenericContainer *
4239 mono_metadata_load_generic_params (MonoImage *image, guint32 token, MonoGenericContainer *parent_container)
4240 {
4241         MonoTableInfo *tdef  = &image->tables [MONO_TABLE_GENERICPARAM];
4242         guint32 cols [MONO_GENERICPARAM_SIZE];
4243         guint32 i, owner = 0, n;
4244         MonoGenericContainer *container;
4245         MonoGenericParam *params;
4246
4247         if (!(i = mono_metadata_get_generic_param_row (image, token, &owner)))
4248                 return NULL;
4249         mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
4250         params = NULL;
4251         n = 0;
4252         container = g_new0 (MonoGenericContainer, 1);
4253         do {
4254                 n++;
4255                 params = g_realloc (params, sizeof (MonoGenericParam) * n);
4256                 params [n - 1].owner = container;
4257                 params [n - 1].pklass = NULL;
4258                 params [n - 1].method = NULL;
4259                 params [n - 1].flags = cols [MONO_GENERICPARAM_FLAGS];
4260                 params [n - 1].num = cols [MONO_GENERICPARAM_NUMBER];
4261                 params [n - 1].name = mono_metadata_string_heap (image, cols [MONO_GENERICPARAM_NAME]);
4262                 params [n - 1].constraints = NULL;
4263                 if (++i > tdef->rows)
4264                         break;
4265                 mono_metadata_decode_row (tdef, i - 1, cols, MONO_GENERICPARAM_SIZE);
4266         } while (cols [MONO_GENERICPARAM_OWNER] == owner);
4267
4268         container->type_argc = n;
4269         container->type_params = params;
4270         container->parent = parent_container;
4271
4272         if (mono_metadata_token_table (token) == MONO_TABLE_METHOD)
4273                 container->is_method = 1;
4274
4275         container->context.container = container;
4276
4277         return container;
4278 }
4279
4280 gboolean
4281 mono_type_is_byref (MonoType *type)
4282 {
4283         return type->byref;
4284 }
4285
4286 int
4287 mono_type_get_type (MonoType *type)
4288 {
4289         return type->type;
4290 }
4291
4292 /* For MONO_TYPE_FNPTR */
4293 MonoMethodSignature*
4294 mono_type_get_signature (MonoType *type)
4295 {
4296         return type->data.method;
4297 }
4298
4299 /* For MONO_TYPE_CLASS, VALUETYPE */
4300 MonoClass*
4301 mono_type_get_class (MonoType *type)
4302 {
4303         return type->data.klass;
4304 }
4305
4306 /* For MONO_TYPE_ARRAY */
4307 MonoArrayType*
4308 mono_type_get_array_type (MonoType *type)
4309 {
4310         return type->data.array;
4311 }
4312
4313 MonoClass*
4314 mono_type_get_modifiers (MonoType *type, gboolean *is_required, gpointer *iter)
4315 {
4316         /* FIXME: implement */
4317         return NULL;
4318 }
4319
4320 MonoType*
4321 mono_signature_get_return_type (MonoMethodSignature *sig)
4322 {
4323         return sig->ret;
4324 }
4325
4326 MonoType*
4327 mono_signature_get_params (MonoMethodSignature *sig, gpointer *iter)
4328 {
4329         MonoType** type;
4330         if (!iter)
4331                 return NULL;
4332         if (!*iter) {
4333                 /* start from the first */
4334                 if (sig->param_count) {
4335                         *iter = &sig->params [0];
4336                         return sig->params [0];
4337                 } else {
4338                         /* no method */
4339                         return NULL;
4340                 }
4341         }
4342         type = *iter;
4343         type++;
4344         if (type < &sig->params [sig->param_count]) {
4345                 *iter = type;
4346                 return *type;
4347         }
4348         return NULL;
4349 }
4350
4351 guint32
4352 mono_signature_get_param_count (MonoMethodSignature *sig)
4353 {
4354         return sig->param_count;
4355 }
4356
4357 guint32
4358 mono_signature_get_call_conv (MonoMethodSignature *sig)
4359 {
4360         return sig->call_convention;
4361 }
4362
4363 int
4364 mono_signature_vararg_start (MonoMethodSignature *sig)
4365 {
4366         return sig->sentinelpos;
4367 }
4368
4369 gboolean
4370 mono_signature_is_instance (MonoMethodSignature *sig)
4371 {
4372         return sig->hasthis;
4373 }
4374
4375 gboolean
4376 mono_signature_explicit_this (MonoMethodSignature *sig)
4377 {
4378         return sig->explicit_this;
4379 }
4380
4381 /* for use with allocated memory blocks (assumes alignment is to 8 bytes) */
4382 guint
4383 mono_aligned_addr_hash (gconstpointer ptr)
4384 {
4385         return GPOINTER_TO_UINT (ptr) >> 3;
4386 }
4387