[mono-error] Remove usage of a couple of legacy functions from monodis.
[mono.git] / mono / dis / dump.c
1 /*
2  * dump.c: Dumping routines for the disassembler.
3  *
4  * Author:
5  *   Miguel de Icaza (miguel@ximian.com)
6  *
7  * (C) 2001 Ximian, Inc.
8  */
9 #include <config.h>
10 #include <stdio.h>
11 #include <string.h>
12 #include <glib.h>
13 #include <math.h>
14 #include "meta.h"
15 #include "util.h"
16 #include "dump.h"
17 #include "get.h"
18 #include "declsec.h"
19 #include "mono/metadata/loader.h"
20 #include "mono/metadata/class.h"
21 #include "mono/metadata/class-internals.h"
22 #include "mono/utils/mono-compiler.h"
23
24 #if defined(__native_client__) && defined(__GLIBC__)
25 volatile int __nacl_thread_suspension_needed = 0;
26 void __nacl_suspend_thread_if_needed() {}
27 #endif
28
29 void
30 dump_table_assembly (MonoImage *m)
31 {
32         MonoTableInfo *t = &m->tables [MONO_TABLE_ASSEMBLY];
33         guint32 cols [MONO_ASSEMBLY_SIZE];
34         const char *ptr;
35         int len;
36
37         fprintf (output, "Assembly Table\n");
38
39         if (!t->rows)
40                 return;
41
42         mono_metadata_decode_row (t, 0, cols, MONO_ASSEMBLY_SIZE);
43
44         fprintf (output, "Name:          %s\n", mono_metadata_string_heap (m, cols [MONO_ASSEMBLY_NAME]));
45         fprintf (output, "Hash Algoritm: 0x%08x\n", cols [MONO_ASSEMBLY_HASH_ALG]);
46         fprintf (output, "Version:       %d.%d.%d.%d\n", cols [MONO_ASSEMBLY_MAJOR_VERSION], 
47                                         cols [MONO_ASSEMBLY_MINOR_VERSION], 
48                                         cols [MONO_ASSEMBLY_BUILD_NUMBER], 
49                                         cols [MONO_ASSEMBLY_REV_NUMBER]);
50         fprintf (output, "Flags:         0x%08x\n", cols [MONO_ASSEMBLY_FLAGS]);
51         fprintf (output, "PublicKey:     BlobPtr (0x%08x)\n", cols [MONO_ASSEMBLY_PUBLIC_KEY]);
52
53         ptr = mono_metadata_blob_heap (m, cols [MONO_ASSEMBLY_PUBLIC_KEY]);
54         len = mono_metadata_decode_value (ptr, &ptr);
55         if (len > 0){
56                 fprintf (output, "\tDump:");
57                 hex_dump (ptr, 0, len);
58                 fprintf (output, "\n");
59         } else
60                 fprintf (output, "\tZero sized public key\n");
61         
62         fprintf (output, "Culture:       %s\n", mono_metadata_string_heap (m, cols [MONO_ASSEMBLY_CULTURE]));
63         fprintf (output, "\n");
64 }
65
66 void
67 dump_table_typeref (MonoImage *m)
68 {
69         MonoTableInfo *t = &m->tables [MONO_TABLE_TYPEREF];
70         int i;
71
72         fprintf (output, "Typeref Table\n");
73         
74         for (i = 1; i <= t->rows; i++){
75                 char *s = get_typeref (m, i);
76                 
77                 fprintf (output, "%d: %s\n", i, s);
78                 g_free (s);
79         }
80         fprintf (output, "\n");
81 }
82
83 void
84 dump_table_typedef (MonoImage *m)
85 {
86         MonoTableInfo *t = &m->tables [MONO_TABLE_TYPEDEF];
87         int i;
88
89         fprintf (output, "Typedef Table\n");
90         
91         for (i = 1; i <= t->rows; i++){
92                 char *s = get_typedef (m, i);
93                 guint32 cols [MONO_TYPEDEF_SIZE];
94
95                 mono_metadata_decode_row (&m->tables [MONO_TABLE_TYPEDEF], i - 1, cols, MONO_TYPEDEF_SIZE);
96
97                 fprintf (output, "%d: %s (flist=%d, mlist=%d, flags=0x%x, extends=0x%x)\n", i, s, 
98                                         cols [MONO_TYPEDEF_FIELD_LIST], cols [MONO_TYPEDEF_METHOD_LIST],
99                                         cols [MONO_TYPEDEF_FLAGS], cols [MONO_TYPEDEF_EXTENDS]);
100                 g_free (s);
101         }
102         fprintf (output, "\n");
103 }
104
105 void
106 dump_table_typespec (MonoImage *m)
107 {
108         MonoTableInfo *t = &m->tables [MONO_TABLE_TYPESPEC];
109         int i;
110
111         fprintf (output, "Typespec Table\n");
112         
113         for (i = 1; i <= t->rows; i++){         
114                 char *typespec = get_typespec (m, i, TRUE, NULL);
115
116                 fprintf (output, "%d: %s\n", i, typespec);
117                 g_free (typespec);
118         }
119         fprintf (output, "\n");
120 }
121
122 void
123 dump_table_assemblyref (MonoImage *m)
124 {
125         MonoTableInfo *t = &m->tables [MONO_TABLE_ASSEMBLYREF];
126         int i;
127
128         fprintf (output, "AssemblyRef Table\n");
129         
130         for (i = 0; i < t->rows; i++){
131                 const char *ptr;
132                 int len;
133                 guint32 cols [MONO_ASSEMBLYREF_SIZE];
134
135                 mono_metadata_decode_row (t, i, cols, MONO_ASSEMBLYREF_SIZE);
136                 fprintf (output, "%d: Version=%d.%d.%d.%d\n\tName=%s\n", i + 1,
137                          cols [MONO_ASSEMBLYREF_MAJOR_VERSION], 
138                          cols [MONO_ASSEMBLYREF_MINOR_VERSION], 
139                          cols [MONO_ASSEMBLYREF_BUILD_NUMBER], 
140                          cols [MONO_ASSEMBLYREF_REV_NUMBER],
141                          mono_metadata_string_heap (m, cols [MONO_ASSEMBLYREF_NAME]));
142                 fprintf (output, "\tFlags=0x%08x\n", cols [MONO_ASSEMBLYREF_FLAGS]);
143                 ptr = mono_metadata_blob_heap (m, cols [MONO_ASSEMBLYREF_PUBLIC_KEY]);
144                 len = mono_metadata_decode_value (ptr, &ptr);
145                 if (len > 0){
146                         fprintf (output, "\tPublic Key:");
147                         hex_dump (ptr, 0, len);
148                         fprintf (output, "\n");
149                 } else
150                         fprintf (output, "\tZero sized public key\n");
151                 
152         }
153         fprintf (output, "\n");
154 }
155
156 void
157 dump_table_param (MonoImage *m)
158 {
159         MonoTableInfo *t = &m->tables [MONO_TABLE_PARAM];
160         int i;
161
162         fprintf (output, "Param Table\n");
163         
164         for (i = 0; i < t->rows; i++){
165                 guint32 cols [MONO_PARAM_SIZE];
166
167                 mono_metadata_decode_row (t, i, cols, MONO_PARAM_SIZE);
168                 fprintf (output, "%d: 0x%04x %d %s\n",
169                          i + 1,
170                          cols [MONO_PARAM_FLAGS], cols [MONO_PARAM_SEQUENCE], 
171                          mono_metadata_string_heap (m, cols [MONO_PARAM_NAME]));
172         }
173         fprintf (output, "\n");
174 }
175
176 void
177 dump_table_field (MonoImage *m)
178 {
179         MonoTableInfo *t = &m->tables [MONO_TABLE_FIELD];
180         MonoTableInfo *td = &m->tables [MONO_TABLE_TYPEDEF];
181         MonoTableInfo *fl = &m->tables [MONO_TABLE_FIELDLAYOUT];
182         MonoTableInfo *rva = &m->tables [MONO_TABLE_FIELDRVA];
183         int i, current_type, offset_row, rva_row;
184         guint32 first_m, last_m;
185
186         fprintf (output, "Field Table (1..%d)\n", t->rows);
187         
188         rva_row = offset_row = current_type = 1;
189         last_m = first_m = 1;
190         for (i = 1; i <= t->rows; i++){
191                 guint32 cols [MONO_FIELD_SIZE];
192                 char *sig, *flags;
193
194                 /*
195                  * Find the next type.
196                  */
197                 while (current_type <= td->rows && i >= (last_m = mono_metadata_decode_row_col (td, current_type - 1, MONO_TYPEDEF_FIELD_LIST))) {
198                         current_type++;
199                 }
200                 if (i == first_m) {
201                         fprintf (output, "########## %s.%s\n",
202                                 mono_metadata_string_heap (m, mono_metadata_decode_row_col (td, current_type - 2, MONO_TYPEDEF_NAMESPACE)),
203                                 mono_metadata_string_heap (m, mono_metadata_decode_row_col (td, current_type - 2, MONO_TYPEDEF_NAME)));
204                         first_m = last_m;
205                 }
206                 mono_metadata_decode_row (t, i - 1, cols, MONO_FIELD_SIZE);
207                 sig = get_field_signature (m, cols [MONO_FIELD_SIGNATURE], NULL);
208                 flags = field_flags (cols [MONO_FIELD_FLAGS]);
209                 fprintf (output, "%d: %s %s: %s\n",
210                          i,
211                          sig,
212                          mono_metadata_string_heap (m, cols [MONO_FIELD_NAME]),
213                          flags);
214                 g_free (sig);
215                 g_free (flags);
216                 if (offset_row <= fl->rows && (mono_metadata_decode_row_col (fl, offset_row - 1, MONO_FIELD_LAYOUT_FIELD) == i)) {
217                         fprintf (output, "\texplicit offset: %d\n", mono_metadata_decode_row_col (fl, offset_row - 1, MONO_FIELD_LAYOUT_OFFSET));
218                         offset_row ++;
219                 }
220                 if (rva_row <= rva->rows && (mono_metadata_decode_row_col (rva, rva_row - 1, MONO_FIELD_RVA_FIELD) == i)) {
221                         fprintf (output, "\trva: %d\n", mono_metadata_decode_row_col (rva, rva_row - 1, MONO_FIELD_RVA_RVA));
222                         rva_row ++;
223                 }
224         }
225         fprintf (output, "\n");
226 }
227
228 void
229 dump_table_memberref (MonoImage *m)
230 {
231         MonoTableInfo *t = &m->tables [MONO_TABLE_MEMBERREF];
232         int i, kind, idx;
233         char *x, *xx;
234         char *sig;
235         const char *blob, *ks = NULL;
236
237         fprintf (output, "MemberRef Table (1..%d)\n", t->rows);
238
239         for (i = 0; i < t->rows; i++){
240                 guint32 cols [MONO_MEMBERREF_SIZE];
241
242                 mono_metadata_decode_row (t, i, cols, MONO_MEMBERREF_SIZE);
243                 
244                 kind = cols [MONO_MEMBERREF_CLASS] & 7;
245                 idx = cols [MONO_MEMBERREF_CLASS] >> 3;
246
247                 x = g_strdup ("UNHANDLED CASE");
248                 
249                 switch (kind){
250                 case 0:
251                         ks = "TypeDef";
252                         xx = get_typedef (m, idx);
253                         x = g_strconcat (xx, ".", mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]), NULL);
254                         g_free (xx);
255                         break;
256                 case 1:
257                         ks = "TypeRef";
258                         xx = get_typeref (m, idx);
259                         x = g_strconcat (xx, ".", mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]), NULL);
260                         g_free (xx);
261                         break;
262                 case 2:
263                         ks = "ModuleRef"; break;
264                 case 3:
265                         ks = "MethodDef";
266                         x = get_methoddef (m, idx);
267                         break;
268                 case 4:
269                         ks = "TypeSpec";
270                         xx = get_typespec (m, idx, FALSE, NULL);
271                         x = g_strconcat (xx, ".", mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]), NULL);
272                         g_free (xx);
273                         break;
274                 default:
275                         g_error ("Unknown tag: %d\n", kind);
276                 }
277                 blob = mono_metadata_blob_heap (m, cols [MONO_MEMBERREF_SIGNATURE]);
278                 mono_metadata_decode_blob_size (blob, &blob);
279                 if (*blob == 0x6) { /* it's a field */
280                         sig = get_field_signature (m, cols [MONO_MEMBERREF_SIGNATURE], NULL);
281                 } else {
282                         sig = get_methodref_signature (m, cols [MONO_MEMBERREF_SIGNATURE], NULL);
283                 }
284                 fprintf (output, "%d: %s[%d] %s\n\tResolved: %s\n\tSignature: %s\n\t\n",
285                          i + 1,
286                          ks, idx,
287                          mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]),
288                          x ? x : "",
289                          sig);
290
291                 if (x)
292                         g_free (x);
293                 g_free (sig);
294         }
295 }
296
297 void
298 dump_table_class_layout (MonoImage *m)
299 {
300         MonoTableInfo *t = &m->tables [MONO_TABLE_CLASSLAYOUT];
301         int i;
302         fprintf (output, "ClassLayout Table (1..%d)\n", t->rows);
303
304         for (i = 0; i < t->rows; i++){
305                 guint32 cols [MONO_CLASS_LAYOUT_SIZE];
306                 
307                 mono_metadata_decode_row (t, i, cols, MONO_CLASS_LAYOUT_SIZE);
308
309                 fprintf (output, "%d: PackingSize=%d  ClassSize=%d  Parent=%s\n",
310                          i + 1, cols [MONO_CLASS_LAYOUT_PACKING_SIZE], 
311                          cols [MONO_CLASS_LAYOUT_CLASS_SIZE], 
312                          get_typedef (m, cols [MONO_CLASS_LAYOUT_PARENT]));
313         }
314 }
315
316 void
317 dump_table_constant (MonoImage *m)
318 {
319         MonoTableInfo *t = &m->tables [MONO_TABLE_CONSTANT];
320         int i;
321         const char *desc [] = {
322                 "Field",
323                 "Param",
324                 "Property",
325                 ""
326         };
327         fprintf (output, "Constant Table (1..%d)\n", t->rows);
328
329         for (i = 0; i < t->rows; i++){
330                 guint32 cols [MONO_CONSTANT_SIZE];
331                 const char *parent;
332                 mono_metadata_decode_row (t, i, cols, MONO_CONSTANT_SIZE);
333                 parent = desc [cols [MONO_CONSTANT_PARENT] & MONO_HASCONSTANT_MASK];
334
335                 fprintf (output, "%d: Parent= %s: %d %s\n",
336                          i + 1, parent, cols [MONO_CONSTANT_PARENT] >> MONO_HASCONSTANT_BITS, 
337                          get_constant (m, (MonoTypeEnum) cols [MONO_CONSTANT_TYPE], cols [MONO_CONSTANT_VALUE]));
338         }
339         
340 }
341
342 void
343 dump_table_property_map (MonoImage *m)
344 {
345         MonoTableInfo *t = &m->tables [MONO_TABLE_PROPERTYMAP];
346         int i;
347         char *s;
348         
349         fprintf (output, "Property Map Table (1..%d)\n", t->rows);
350         
351         for (i = 0; i < t->rows; i++){
352                 guint32 cols [MONO_PROPERTY_MAP_SIZE];
353                 
354                 mono_metadata_decode_row (t, i, cols, MONO_PROPERTY_MAP_SIZE);
355                 s = get_typedef (m, cols [MONO_PROPERTY_MAP_PARENT]);
356                 fprintf (output, "%d: %s (%d) %d\n", i + 1, s, cols [MONO_PROPERTY_MAP_PARENT], cols [MONO_PROPERTY_MAP_PROPERTY_LIST]);
357                 g_free (s);
358         }
359 }
360
361 void
362 dump_table_property (MonoImage *m)
363 {
364         MonoTableInfo *t = &m->tables [MONO_TABLE_PROPERTY];
365         int i, j, pcount;
366         const char *ptr;
367         char flags[128];
368
369         fprintf (output, "Property Table (1..%d)\n", t->rows);
370
371         for (i = 0; i < t->rows; i++){
372                 guint32 cols [MONO_PROPERTY_SIZE];
373                 char *type;
374                 int prop_flags;
375                 
376                 mono_metadata_decode_row (t, i, cols, MONO_PROPERTY_SIZE);
377                 flags [0] = 0;
378                 prop_flags = cols [MONO_PROPERTY_FLAGS];
379                 if (prop_flags & 0x0200)
380                         strcat (flags, "special ");
381                 if (prop_flags & 0x0400)
382                         strcat (flags, "runtime ");
383                 if (prop_flags & 0x1000)
384                         strcat (flags, "hasdefault ");
385
386                 ptr = mono_metadata_blob_heap (m, cols [MONO_PROPERTY_TYPE]);
387                 /* bsize = */ mono_metadata_decode_blob_size (ptr, &ptr);
388                 /* ECMA claims 0x08 ... */
389                 if (*ptr != 0x28 && *ptr != 0x08)
390                         g_warning("incorrect signature in propert blob: 0x%x", *ptr);
391                 ptr++;
392                 pcount = mono_metadata_decode_value (ptr, &ptr);
393                 ptr = get_type (m, ptr, &type, FALSE, NULL);
394                 fprintf (output, "%d: %s %s (",
395                          i + 1, type, mono_metadata_string_heap (m, cols [MONO_PROPERTY_NAME]));
396                 g_free (type);
397
398                 for (j = 0; j < pcount; j++){
399                         ptr = get_param (m, ptr, &type, NULL);
400                         fprintf (output, "%s%s", j > 0? ", " : "",type);
401                         g_free (type);
402                 }
403                 fprintf (output, ") %s\n", flags);
404         }
405 }
406
407 void
408 dump_table_event (MonoImage *m)
409 {
410         MonoTableInfo *t = &m->tables [MONO_TABLE_EVENT];
411         int i;
412         fprintf (output, "Event Table (1..%d)\n", t->rows);
413
414         for (i = 0; i < t->rows; i++){
415                 guint32 cols [MONO_EVENT_SIZE];
416                 const char *name;
417                 char *type;
418                 
419                 mono_metadata_decode_row (t, i, cols, MONO_EVENT_SIZE);
420
421                 name = mono_metadata_string_heap (m, cols [MONO_EVENT_NAME]);
422                 type = get_typedef_or_ref (m, cols [MONO_EVENT_TYPE], NULL);
423                 fprintf (output, "%d: %s %s %s\n", i + 1, type, name,
424                          cols [MONO_EVENT_FLAGS] & 0x200 ? "specialname " : "");
425                 g_free (type);
426         }
427         
428 }
429
430 void
431 dump_table_file (MonoImage *m)
432 {
433         MonoTableInfo *t = &m->tables [MONO_TABLE_FILE];
434         int i, j, len;
435         fprintf (output, "File Table (1..%d)\n", t->rows);
436
437         for (i = 0; i < t->rows; i++){
438                 guint32 cols [MONO_FILE_SIZE];
439                 const char *name, *hash;
440                 
441                 mono_metadata_decode_row (t, i, cols, MONO_FILE_SIZE);
442
443                 name = mono_metadata_string_heap (m, cols [MONO_FILE_NAME]);
444                 fprintf (output, "%d: %s %s [", i + 1, name, 
445                                 cols [MONO_FILE_FLAGS] & 0x1 ? "nometadata" : "containsmetadata");
446                 hash = mono_metadata_blob_heap (m, cols [MONO_FILE_HASH_VALUE]);
447                 len = mono_metadata_decode_blob_size (hash, &hash);
448                 for (j = 0; j < len; ++j)
449                         fprintf (output, "%s%02X", j? " ": "", hash [j] & 0xff);
450                 fprintf (output, "]\n");
451         }
452         
453 }
454
455 static char*
456 get_manifest_implementation (MonoImage *m, guint32 idx)
457 {
458         guint32 row;
459         const char* table = "";
460         if (!idx)
461                 return g_strdup ("current module");
462         row = idx >> MONO_IMPLEMENTATION_BITS;
463         switch (idx & MONO_IMPLEMENTATION_MASK) {
464         case MONO_IMPLEMENTATION_FILE:
465                 table = "file";
466                 break;
467         case MONO_IMPLEMENTATION_ASSEMBLYREF:
468                 table = "assemblyref";
469                 break;
470         case MONO_IMPLEMENTATION_EXP_TYPE:
471                 table = "exportedtype";
472                 break;
473         default:
474                 g_assert_not_reached ();
475         }
476         return g_strdup_printf ("%s %d", table, row);
477 }
478
479 static const char*
480 get_manifest_flags (guint32 mf)
481 {
482         mf &= 3;
483         switch (mf) {
484         case 1: return "public";
485         case 2: return "private";
486         default:
487                 return "";
488         }
489 }
490
491 void
492 dump_table_manifest (MonoImage *m)
493 {
494         MonoTableInfo *t = &m->tables [MONO_TABLE_MANIFESTRESOURCE];
495         int i;
496         fprintf (output, "Manifestresource Table (1..%d)\n", t->rows);
497
498         for (i = 0; i < t->rows; i++){
499                 guint32 cols [MONO_MANIFEST_SIZE];
500                 const char *name, *mf;
501                 char *impl;
502                 
503                 mono_metadata_decode_row (t, i, cols, MONO_MANIFEST_SIZE);
504
505                 name = mono_metadata_string_heap (m, cols [MONO_MANIFEST_NAME]);
506                 mf = get_manifest_flags (cols [MONO_MANIFEST_FLAGS]);
507                 impl = get_manifest_implementation (m, cols [MONO_MANIFEST_IMPLEMENTATION]);
508                 fprintf (output, "%d: %s '%s' at offset %u in %s\n", i + 1, mf, name, cols [MONO_MANIFEST_OFFSET], impl);
509                 g_free (impl);
510         }
511         
512 }
513
514 void
515 dump_table_moduleref (MonoImage *m)
516 {
517         MonoTableInfo *t = &m->tables [MONO_TABLE_MODULEREF];
518         int i;
519         fprintf (output, "ModuleRef Table (1..%d)\n", t->rows);
520
521         for (i = 0; i < t->rows; i++){
522                 guint32 cols [MONO_MODULEREF_SIZE];
523                 const char *name;
524                 
525                 mono_metadata_decode_row (t, i, cols, MONO_MODULEREF_SIZE);
526
527                 name = mono_metadata_string_heap (m, cols [MONO_MODULEREF_NAME]);
528                 fprintf (output, "%d: %s\n", i + 1, name);
529         }
530         
531 }
532
533 void
534 dump_table_module (MonoImage *m)
535 {
536         MonoTableInfo *t = &m->tables [MONO_TABLE_MODULE];
537         int i;
538         fprintf (output, "Module Table (1..%d)\n", t->rows);
539
540         for (i = 0; i < t->rows; i++){
541                 guint32 cols [MONO_MODULE_SIZE];
542                 const char *name;
543                 char *guid;
544                 
545                 mono_metadata_decode_row (t, i, cols, MONO_MODULE_SIZE);
546
547                 name = mono_metadata_string_heap (m, cols [MONO_MODULE_NAME]);
548                 guid = get_guid (m, cols [MONO_MODULE_MVID]);
549                 fprintf (output, "%d: %s %d %s\n", i + 1, name, cols [MONO_MODULE_MVID], guid);
550         }       
551 }
552
553 void
554 dump_table_method (MonoImage *m)
555 {
556         MonoTableInfo *t = &m->tables [MONO_TABLE_METHOD];
557         MonoTableInfo *td = &m->tables [MONO_TABLE_TYPEDEF];
558         int i, current_type;
559         guint32 first_m, last_m;
560         /* Generic container for Type & method */
561         MonoGenericContainer *type_container = NULL, *method_container = NULL;
562
563         fprintf (output, "Method Table (1..%d)\n", t->rows);
564
565         current_type = 1;
566         last_m = first_m = 1;
567         for (i = 1; i <= t->rows; i++){
568                 MonoError error;
569                 guint32 cols [MONO_METHOD_SIZE];
570                 char *sig, *impl_flags;
571                 const char *sigblob;
572                 MonoMethodSignature *method;
573
574                 /*
575                  * Find the next type.
576                  */
577                 while (current_type <= td->rows && i >= (last_m = mono_metadata_decode_row_col (td, current_type - 1, MONO_TYPEDEF_METHOD_LIST))) {
578                         current_type++;
579                 }
580                 if (i == first_m) {
581                         fprintf (output, "########## %s.%s\n",
582                                 mono_metadata_string_heap (m, mono_metadata_decode_row_col (td, current_type - 2, MONO_TYPEDEF_NAMESPACE)),
583                                 mono_metadata_string_heap (m, mono_metadata_decode_row_col (td, current_type - 2, MONO_TYPEDEF_NAME)));
584                         first_m = last_m;
585                         type_container = mono_metadata_load_generic_params (m, MONO_TOKEN_TYPE_DEF | (current_type - 1), NULL);
586                         if (type_container) {
587                                 mono_metadata_load_generic_param_constraints_checked (m, MONO_TOKEN_TYPE_DEF | (current_type - 1), type_container, &error);
588                                 g_assert (mono_error_ok (&error)); /*FIXME don't swallow the error message*/
589                         }
590                 }
591
592                 method_container = mono_metadata_load_generic_params (m, MONO_TOKEN_METHOD_DEF | i, type_container);
593                 if (method_container) {
594                         mono_metadata_load_generic_param_constraints_checked (m, MONO_TOKEN_METHOD_DEF | i, method_container, &error);
595                         g_assert (mono_error_ok (&error)); /*FIXME don't swallow the error message*/
596                 }
597                 mono_metadata_decode_table_row (m, MONO_TABLE_METHOD, i - 1, cols, MONO_METHOD_SIZE);
598                 sigblob = mono_metadata_blob_heap (m, cols [MONO_METHOD_SIGNATURE]);
599                 mono_metadata_decode_blob_size (sigblob, &sigblob);
600                 method = mono_metadata_parse_method_signature_full (m, method_container ? method_container : type_container, i, sigblob, &sigblob, &error);
601                 g_assert (mono_error_ok (&error)); /*FIXME don't swallow the error message*/
602                 sig = dis_stringify_method_signature (m, method, i, method_container ? method_container : type_container, FALSE);
603                 impl_flags = get_method_impl_flags (cols [MONO_METHOD_IMPLFLAGS]);
604                 fprintf (output, "%d: %s (param: %d impl_flags: %s)\n", i, sig, cols [MONO_METHOD_PARAMLIST], impl_flags);
605                 g_free (sig);
606                 g_free (impl_flags);
607                 mono_metadata_free_method_signature (method);
608         }
609         
610 }
611
612 void
613 dump_table_implmap (MonoImage *m)
614 {
615         MonoTableInfo *t = &m->tables [MONO_TABLE_IMPLMAP];
616         MonoTableInfo *td = &m->tables [MONO_TABLE_MODULEREF];
617         int i;
618
619         fprintf (output, "ImplMap Table (1..%d)\n", t->rows);
620
621         for (i = 1; i <= t->rows; i++){
622                 guint32 cols [MONO_IMPLMAP_SIZE];
623                 char *method;
624
625                 mono_metadata_decode_row (t, i - 1, cols, MONO_IMPLMAP_SIZE);
626
627                 method = get_method (m, MONO_TOKEN_METHOD_DEF | (cols [MONO_IMPLMAP_MEMBER] >> MONO_MEMBERFORWD_BITS), NULL);
628                 
629                 fprintf (output, "%d: %s %d (%s %s)\n", i, 
630                                  method,
631                                  cols [MONO_IMPLMAP_FLAGS], 
632                                  mono_metadata_string_heap (m, cols [MONO_IMPLMAP_NAME]),
633                                  mono_metadata_string_heap (m, mono_metadata_decode_row_col (td, cols [MONO_IMPLMAP_SCOPE] - 1, MONO_MODULEREF_NAME)));
634         }
635 }
636
637 void
638 dump_table_fieldrva  (MonoImage *m)
639 {
640         MonoTableInfo *t = &m->tables [MONO_TABLE_FIELDRVA];
641         int i;
642
643         fprintf (output, "FieldRVA Table (1..%d)\n", t->rows);
644
645         for (i = 1; i <= t->rows; i++){
646                 guint32 cols [MONO_FIELD_RVA_SIZE];
647
648                 mono_metadata_decode_row (t, i - 1, cols, MONO_FIELD_RVA_SIZE);
649                 fprintf (output, "%d: Field %d: %x\n", i, cols [MONO_FIELD_RVA_FIELD], cols [MONO_FIELD_RVA_RVA]);
650         }
651 }
652
653 void
654 dump_table_methodimpl (MonoImage *m)
655 {
656         MonoTableInfo *t = &m->tables [MONO_TABLE_METHODIMPL];
657         /*MonoTableInfo *td = &m->tables [MONO_TABLE_TYPEDEF];*/
658         int i;
659
660         fprintf (output, "MethodImpl Table (1..%d)\n", t->rows);
661
662         for (i = 1; i <= t->rows; i++){
663                 guint32 cols [MONO_METHODIMPL_SIZE];
664                 char *klass, *impl, *decl;
665
666                 mono_metadata_decode_row (t, i - 1, cols, MONO_METHODIMPL_SIZE);
667                 klass = get_typedef (m, cols [MONO_METHODIMPL_CLASS]);
668                 impl = get_method (m, method_dor_to_token (cols [MONO_METHODIMPL_BODY]), NULL);
669                 decl = get_method (m, method_dor_to_token (cols [MONO_METHODIMPL_DECLARATION]), NULL);
670                 fprintf (output, "%d: %s\n\tdecl: %s\n\timpl: %s\n", i, klass, decl, impl);
671                 g_free (klass);
672                 g_free (impl);
673                 g_free (decl);
674         }
675         
676 }
677
678 static dis_map_t semantics_map [] = {
679                 {1, "setter"},
680                 {2, "getter"},
681                 {4, "other"},
682                 {8, "add-on"},
683                 {0x10, "remove-on"},
684                 {0x20, "fire"},
685                 {0, NULL},
686 };
687
688 void
689 dump_table_methodsem (MonoImage *m)
690 {
691         MonoTableInfo *t = &m->tables [MONO_TABLE_METHODSEMANTICS];
692         int i, is_property, index;
693         const char *semantics;
694         
695         fprintf (output, "Method Semantics Table (1..%d)\n", t->rows);
696         for (i = 1; i <= t->rows; i++){
697                 guint32 cols [MONO_METHOD_SEMA_SIZE];
698                 
699                 mono_metadata_decode_row (t, i - 1, cols, MONO_METHOD_SEMA_SIZE);
700                 semantics = flags (cols [MONO_METHOD_SEMA_SEMANTICS], semantics_map);
701                 is_property = cols [MONO_METHOD_SEMA_ASSOCIATION] & MONO_HAS_SEMANTICS_MASK;
702                 index = cols [MONO_METHOD_SEMA_ASSOCIATION] >> MONO_HAS_SEMANTICS_BITS;
703                 fprintf (output, "%d: [%d] %s method: %d %s %d\n", i, cols [MONO_METHOD_SEMA_ASSOCIATION], semantics,
704                                                 cols [MONO_METHOD_SEMA_METHOD] - 1, 
705                                                 is_property? "property" : "event",
706                                                 index);
707         }
708 }
709
710 void 
711 dump_table_interfaceimpl (MonoImage *m)
712 {
713         MonoTableInfo *t = &m->tables [MONO_TABLE_INTERFACEIMPL];
714         int i;
715
716         fprintf (output, "Interface Implementation Table (1..%d)\n", t->rows);
717         for (i = 1; i <= t->rows; i++) {
718                 guint32 cols [MONO_INTERFACEIMPL_SIZE];
719                 
720                 mono_metadata_decode_row (t, i - 1, cols, MONO_INTERFACEIMPL_SIZE);
721                 fprintf (output, "%d: %s implements %s\n", i,
722                          get_typedef (m, cols [MONO_INTERFACEIMPL_CLASS]),
723                          get_typedef_or_ref (m, cols [MONO_INTERFACEIMPL_INTERFACE], NULL));
724         }
725 }
726
727 static char*
728 has_cattr_get_table (MonoImage *m, guint32 val)
729 {
730         guint32 t = val & MONO_CUSTOM_ATTR_MASK;
731         guint32 index = val >> MONO_CUSTOM_ATTR_BITS;
732         const char *table;
733
734         switch (t) {
735         case MONO_CUSTOM_ATTR_METHODDEF:
736                 table = "MethodDef";
737                 break;
738         case MONO_CUSTOM_ATTR_FIELDDEF:
739                 table = "FieldDef";
740                 break;
741         case MONO_CUSTOM_ATTR_TYPEREF:
742                 table = "TypeRef";
743                 break;
744         case MONO_CUSTOM_ATTR_TYPEDEF:
745                 table = "TypeDef";
746                 break;
747         case MONO_CUSTOM_ATTR_PARAMDEF:
748                 table = "Param";
749                 break;
750         case MONO_CUSTOM_ATTR_INTERFACE:
751                 table = "InterfaceImpl";
752                 break;
753         case MONO_CUSTOM_ATTR_MEMBERREF:
754                 table = "MemberRef";
755                 break;
756         case MONO_CUSTOM_ATTR_MODULE:
757                 table = "Module";
758                 break;
759         case MONO_CUSTOM_ATTR_PERMISSION:
760                 table = "DeclSecurity?";
761                 break;
762         case MONO_CUSTOM_ATTR_PROPERTY:
763                 table = "Property";
764                 break;
765         case MONO_CUSTOM_ATTR_EVENT:
766                 table = "Event";
767                 break;
768         case MONO_CUSTOM_ATTR_SIGNATURE:
769                 table = "StandAloneSignature";
770                 break;
771         case MONO_CUSTOM_ATTR_MODULEREF:
772                 table = "ModuleRef";
773                 break;
774         case MONO_CUSTOM_ATTR_TYPESPEC:
775                 table = "TypeSpec";
776                 break;
777         case MONO_CUSTOM_ATTR_ASSEMBLY:
778                 table = "Assembly";
779                 break;
780         case MONO_CUSTOM_ATTR_ASSEMBLYREF:
781                 table = "AssemblyRef";
782                 break;
783         case MONO_CUSTOM_ATTR_FILE:
784                 table = "File";
785                 break;
786         case MONO_CUSTOM_ATTR_EXP_TYPE:
787                 table = "ExportedType";
788                 break;
789         case MONO_CUSTOM_ATTR_MANIFEST:
790                 table = "Manifest";
791                 break;
792         case MONO_CUSTOM_ATTR_GENERICPAR:
793                 table = "GenericParam";
794                 break;
795         default:
796                 table = "Unknown";
797                 break;
798         }
799         /*
800          * FIXME: we should decode the index into something more uman-friendly.
801          */
802         return g_strdup_printf ("%s: %d", table, index);
803 }
804
805 static char*
806 custom_attr_params (MonoImage *m, MonoMethodSignature* sig, const char* value)
807 {
808         int len, i, slen, type;
809         GString *res;
810         char *s;
811         const char *p = value;
812
813         len = mono_metadata_decode_value (p, &p);
814         if (len < 2 || read16 (p) != 0x0001) /* Prolog */
815                 return g_strdup ("");
816
817         /* skip prolog */
818         p += 2;
819         res = g_string_new ("");
820         for (i = 0; i < sig->param_count; ++i) {
821                 if (i != 0)
822                         g_string_append (res, ", ");
823                 type = sig->params [i]->type;
824 handle_enum:
825                 switch (type) {
826                 case MONO_TYPE_U1:
827                         g_string_append_printf (res, "%d", (unsigned int)*p);
828                         ++p;
829                         break;
830                 case MONO_TYPE_I1:
831                         g_string_append_printf (res, "%d", *p);
832                         ++p;
833                         break;
834                 case MONO_TYPE_BOOLEAN:
835                         g_string_append_printf (res, "%s", *p?"true":"false");
836                         ++p;
837                         break;
838                 case MONO_TYPE_CHAR:
839                         g_string_append_printf (res, "'%c'", read16 (p));
840                         p += 2;
841                         break;
842                 case MONO_TYPE_U2:
843                         g_string_append_printf (res, "%d", read16 (p));
844                         p += 2;
845                         break;
846                 case MONO_TYPE_I2:
847                         g_string_append_printf (res, "%d", (gint16)read16 (p));
848                         p += 2;
849                         break;
850                 case MONO_TYPE_U4:
851                         g_string_append_printf (res, "%d", read32 (p));
852                         p += 4;
853                         break;
854                 case MONO_TYPE_I4:
855                         g_string_append_printf (res, "%d", (gint32)read32 (p));
856                         p += 4;
857                         break;
858                 case MONO_TYPE_U8:
859                         g_string_append_printf (res, "%lld", (long long)read64 (p));
860                         p += 8;
861                         break;
862                 case MONO_TYPE_I8:
863                         g_string_append_printf (res, "%lld", (long long)read64 (p));
864                         p += 8;
865                         break;
866                 case MONO_TYPE_R4: {
867                         float val;
868                         int inf;
869                         readr4 (p, &val);
870                         inf = dis_isinf (val);
871                         if (inf == -1) 
872                                 g_string_append_printf (res, "(00 00 80 ff)"); /* negative infinity */
873                         else if (inf == 1)
874                                 g_string_append_printf (res, "(00 00 80 7f)"); /* positive infinity */
875                         else if (dis_isnan (val))
876                                 g_string_append_printf (res, "(00 00 c0 ff)"); /* NaN */
877                         else
878                                 g_string_append_printf (res, "%g", val);
879                         p += 4;
880                         break;
881                 }
882                 case MONO_TYPE_R8: {
883                         double val;
884                         int inf;
885                         
886                         readr8 (p, &val);
887                         inf = dis_isinf (val);
888                         if (inf == -1) 
889                                 g_string_append_printf (res, "(00 00 00 00 00 00 f0 ff)"); /* negative infinity */
890                         else if (inf == 1)
891                                 g_string_append_printf (res, "(00 00 00 00 00 00 f0 7f)"); /* positive infinity */
892                         else if (isnan (val))
893                                 g_string_append_printf (res, "(00 00 00 00 00 00 f8 ff)"); /* NaN */
894                         else
895                                 g_string_append_printf (res, "%g", val);
896                         p += 8;
897                         break;
898                 }
899                 case MONO_TYPE_VALUETYPE:
900                         if (mono_class_is_enum (sig->params [i]->data.klass)) {
901                                 type = mono_class_enum_basetype (sig->params [i]->data.klass)->type;
902                                 goto handle_enum;
903                         } else {
904                                 g_warning ("generic valutype not handled in custom attr value decoding");
905                         }
906                         break;
907                 case MONO_TYPE_CLASS: /* It must be a Type: check? */
908                 case MONO_TYPE_STRING:
909                         if (*p == (char)0xff) {
910                                 g_string_append (res, "null");
911                                 p++;
912                                 break;
913                         }
914                         slen = mono_metadata_decode_value (p, &p);
915                         g_string_append_c (res, '"');
916                         g_string_append (res, p);
917                         g_string_append_c (res, '"');
918                         p += slen;
919                         break;
920                 default:
921                         g_warning ("Type %02x not handled in custom attr value decoding", sig->params [i]->type);
922                         break;
923                 }
924         }
925         slen = read16 (p);
926         if (slen) {
927                 g_string_append_printf (res, " %d named args: (", slen);
928                 slen = len - (p - value) + 1;
929                 for (i = 0; i < slen; ++i) {
930                         g_string_append_printf (res, " %02X", (p [i] & 0xff));
931                 }
932                 g_string_append_c (res, ')');
933         }
934         s = res->str;
935         g_string_free (res, FALSE);
936         return s;
937 }
938
939 void
940 dump_table_customattr (MonoImage *m)
941 {
942         MonoTableInfo *t = &m->tables [MONO_TABLE_CUSTOMATTRIBUTE];
943         int i;
944
945         fprintf (output, "Custom Attributes Table (1..%d)\n", t->rows);
946         for (i = 1; i <= t->rows; i++) {
947                 MonoError error;
948                 guint32 cols [MONO_CUSTOM_ATTR_SIZE];
949                 guint32 mtoken;
950                 char * desc;
951                 char *method;
952                 char *params;
953                 MonoMethod *meth;
954                 
955                 mono_metadata_decode_row (t, i - 1, cols, MONO_CUSTOM_ATTR_SIZE);
956                 desc = has_cattr_get_table (m, cols [MONO_CUSTOM_ATTR_PARENT]);
957                 mtoken = cols [MONO_CUSTOM_ATTR_TYPE] >> MONO_CUSTOM_ATTR_TYPE_BITS;
958                 switch (cols [MONO_CUSTOM_ATTR_TYPE] & MONO_CUSTOM_ATTR_TYPE_MASK) {
959                 case MONO_CUSTOM_ATTR_TYPE_METHODDEF:
960                         mtoken |= MONO_TOKEN_METHOD_DEF;
961                         break;
962                 case MONO_CUSTOM_ATTR_TYPE_MEMBERREF:
963                         mtoken |= MONO_TOKEN_MEMBER_REF;
964                         break;
965                 default:
966                         g_warning ("Unknown table for custom attr type %08x", cols [MONO_CUSTOM_ATTR_TYPE]);
967                         break;
968                 }
969                 method = get_method (m, mtoken, NULL);
970                 meth = mono_get_method_checked (m, mtoken, NULL, NULL, &error);
971                 if (meth) {
972                         params = custom_attr_params (m, mono_method_signature (meth), mono_metadata_blob_heap (m, cols [MONO_CUSTOM_ATTR_VALUE]));
973                         fprintf (output, "%d: %s: %s [%s]\n", i, desc, method, params);
974                         g_free (params);
975                 } else {
976                         fprintf (output, "Could not decode method due to %s", mono_error_get_message (&error));
977                         mono_error_cleanup (&error);
978                 }
979
980                 g_free (desc);
981                 g_free (method);
982         }
983 }
984
985 void
986 dump_table_nestedclass (MonoImage *m)
987 {
988         MonoTableInfo *t = &m->tables [MONO_TABLE_NESTEDCLASS];
989         guint32 cols [MONO_NESTED_CLASS_SIZE];
990         int i;
991         char *nested, *nesting;
992         fprintf (output, "NestedClass Table (1..%d)\n", t->rows);
993
994         for (i = 1; i <= t->rows; i++){
995                 mono_metadata_decode_row (t, i - 1, cols, MONO_NESTED_CLASS_SIZE);
996                 nested = get_typedef (m, cols [MONO_NESTED_CLASS_NESTED]);
997                 nesting = get_typedef (m, cols [MONO_NESTED_CLASS_ENCLOSING]);
998                 fprintf (output, "%d: %d %d: %s in %s\n", i,
999                                 cols [MONO_NESTED_CLASS_NESTED], 
1000                                 cols [MONO_NESTED_CLASS_ENCLOSING], nested, nesting);
1001                 g_free (nested);
1002                 g_free (nesting);
1003         }
1004         
1005 }
1006
1007 void
1008 dump_table_exported (MonoImage *m)
1009 {
1010         MonoTableInfo *t = &m->tables [MONO_TABLE_EXPORTEDTYPE];
1011         guint32 cols [MONO_EXP_TYPE_SIZE];
1012         int i;
1013         const char *name, *nspace;
1014         char *impl;
1015         guint32 index, flags;
1016         fprintf (output, "ExportedType Table (1..%d)\n", t->rows);
1017
1018         for (i = 1; i <= t->rows; i++) {
1019                 mono_metadata_decode_row (t, i - 1, cols, MONO_EXP_TYPE_SIZE);
1020                 name = mono_metadata_string_heap (m, cols [MONO_EXP_TYPE_NAME]);
1021                 nspace = mono_metadata_string_heap (m, cols [MONO_EXP_TYPE_NAMESPACE]);
1022                 impl = get_manifest_implementation (m, cols [MONO_EXP_TYPE_IMPLEMENTATION]);
1023                 index = cols [MONO_EXP_TYPE_TYPEDEF];
1024                 flags = cols [MONO_EXP_TYPE_FLAGS];
1025                 fprintf (output, "%d: %s%s%s is in %s, index=%x, flags=0x%x\n", i, nspace, *nspace ? "." : "", name, impl, index, flags);
1026                 g_free (impl);
1027         }
1028         
1029 }
1030
1031 static void
1032 dump_blob (MonoImage *m, const char* blob)
1033 {
1034         int j, bsize;
1035
1036         bsize = mono_metadata_decode_blob_size (blob, &blob);
1037
1038         for (j = 0; j < bsize; j++) {
1039                 fprintf (output, "%02x ", blob [j] & 0xff);
1040         }
1041 }
1042
1043 void
1044 dump_table_field_marshal (MonoImage *m)
1045 {
1046         MonoTableInfo *t = &m->tables [MONO_TABLE_FIELDMARSHAL];
1047         guint32 cols [MONO_FIELD_MARSHAL_SIZE];
1048         int i, is_field, idx;
1049         const char *blob;
1050         char *native;
1051         
1052         fprintf (output, "FieldMarshal Table (1..%d)\n", t->rows);
1053
1054         for (i = 1; i <= t->rows; i++) {
1055                 mono_metadata_decode_row (t, i - 1, cols, MONO_FIELD_MARSHAL_SIZE);
1056                 blob = mono_metadata_blob_heap (m, cols [MONO_FIELD_MARSHAL_NATIVE_TYPE]);
1057                 native = get_marshal_info (m, blob);
1058                 is_field = (cols [MONO_FIELD_MARSHAL_PARENT] & MONO_HAS_FIELD_MARSHAL_MASK) == MONO_HAS_FIELD_MARSHAL_FIELDSREF;
1059                 idx = cols [MONO_FIELD_MARSHAL_PARENT] >> MONO_HAS_FIELD_MARSHAL_BITS;
1060                 fprintf (output, "%d: (0x%04x) %s %d: %s\n", i, cols [MONO_FIELD_MARSHAL_PARENT], is_field? "Field" : "Param", idx, native);
1061                 fprintf (output, "\tblob encoding: ");
1062                 dump_blob (m, blob);
1063                 fprintf (output, "\n");
1064                 g_free (native);
1065         }
1066         
1067 }
1068
1069 static const char*
1070 get_security_action (int val) {
1071         static char buf [32];
1072
1073         switch (val) {
1074         case SECURITY_ACTION_DEMAND:
1075                 return "Demand";
1076         case SECURITY_ACTION_ASSERT:
1077                 return "Assert";
1078         case SECURITY_ACTION_DENY:
1079                 return "Deny";
1080         case SECURITY_ACTION_PERMITONLY:
1081                 return "PermitOnly";
1082         case SECURITY_ACTION_LINKDEMAND:
1083                 return "LinkDemand";
1084         case SECURITY_ACTION_INHERITDEMAND:
1085                 return "InheritanceDemand";
1086         case SECURITY_ACTION_REQMIN:
1087                 return "RequestMinimum";
1088         case SECURITY_ACTION_REQOPT:
1089                 return "RequestOptional";
1090         case SECURITY_ACTION_REQREFUSE:
1091                 return "RequestRefuse";
1092         /* Special actions (for non CAS permissions) */
1093         case SECURITY_ACTION_NONCASDEMAND:
1094                 return "NonCasDemand";
1095         case SECURITY_ACTION_NONCASLINKDEMAND:
1096                 return "NonCasLinkDemand";
1097         case SECURITY_ACTION_NONCASINHERITANCE:
1098                 return "NonCasInheritance";
1099         /* Fx 2.0 actions (for both CAS and non-CAS permissions) */
1100         case SECURITY_ACTION_LINKDEMANDCHOICE:
1101                 return "LinkDemandChoice";
1102         case SECURITY_ACTION_INHERITDEMANDCHOICE:
1103                 return "InheritanceDemandChoice";
1104         case SECURITY_ACTION_DEMANDCHOICE:
1105                 return "DemandChoice";
1106         default:
1107                 g_snprintf (buf, sizeof (buf), "0x%04X", val);
1108                 return buf;
1109         }
1110 }
1111
1112 void 
1113 dump_table_declsec (MonoImage *m)
1114 {
1115         MonoTableInfo *t = &m->tables [MONO_TABLE_DECLSECURITY];
1116         guint32 cols [MONO_DECL_SECURITY_SIZE];
1117         int i, len;
1118         guint32 idx;
1119         const char *blob, *action;
1120         const char* parent[] = {
1121                 "TypeDef", "MethodDef", "Assembly", ""
1122         };
1123         
1124         fprintf (output, "DeclSecurity Table (1..%d)\n", t->rows);
1125
1126         for (i = 1; i <= t->rows; i++) {
1127                 mono_metadata_decode_row (t, i - 1, cols, MONO_DECL_SECURITY_SIZE);
1128                 blob = mono_metadata_blob_heap (m, cols [MONO_DECL_SECURITY_PERMISSIONSET]);
1129                 len = mono_metadata_decode_blob_size (blob, &blob);
1130                 action = get_security_action (cols [MONO_DECL_SECURITY_ACTION]);
1131                 idx = cols [MONO_DECL_SECURITY_PARENT];
1132                 fprintf (output, "%d: %s on %s %d%s", i, action, parent [idx & MONO_HAS_DECL_SECURITY_MASK], idx >> MONO_HAS_DECL_SECURITY_BITS, len? ":\n\t":"\n");
1133                 if (!len)
1134                         continue;
1135                 if (blob [0] == MONO_DECLSEC_FORMAT_20) {
1136                         /* 2.0 declarative security format */
1137                         char *declsec = dump_declsec_entry20 (m, blob, "\t");
1138                         fprintf (output, "%s", declsec);
1139                         g_free (declsec);
1140                 } else {
1141                         /* 1.0 declarative security format - Unicode XML */
1142                         for (idx = 0; idx < len; ++idx)
1143                                 fprintf (output, "%c", blob [idx]);
1144                 }
1145                 fprintf (output, "\n");
1146         }
1147 }
1148
1149 void 
1150 dump_table_genericpar (MonoImage *m)
1151 {
1152         MonoTableInfo *t = &m->tables [MONO_TABLE_GENERICPARAM];
1153         guint32 cols [MONO_GENERICPARAM_SIZE];
1154         int i;
1155
1156         fprintf (output, "GenericParameters (1..%d)\n", t->rows);
1157         
1158         for (i = 1; i <= t->rows; i++) {
1159                 char *sig;
1160                 mono_metadata_decode_row (t, i - 1, cols, MONO_GENERICPARAM_SIZE);
1161
1162                 // sig = get_type_or_methdef (m, cols [MONO_GENERICPARAM_OWNER]);
1163                 sig = g_strdup_printf ("%x", cols [MONO_GENERICPARAM_OWNER]);
1164                 fprintf (output, "%d: %d, flags=%d, owner=%s %s\n", i,
1165                          cols [MONO_GENERICPARAM_NUMBER],
1166                          cols [MONO_GENERICPARAM_FLAGS], sig,
1167                          mono_metadata_string_heap (m, cols [MONO_GENERICPARAM_NAME]));
1168                 g_free (sig);
1169         }
1170 }
1171
1172 void
1173 dump_table_methodspec (MonoImage *m)
1174 {
1175         MonoTableInfo *t = &m->tables [MONO_TABLE_METHODSPEC];
1176         guint32 cols [MONO_METHODSPEC_SIZE];
1177         int i;
1178         
1179         fprintf (output, "MethodSpec (1..%d)\n", t->rows);
1180
1181         for (i = 1; i <= t->rows; i++) {
1182                 char *sig;
1183                 char *method;
1184                 guint32 token;
1185                 
1186                 mono_metadata_decode_row (t, i - 1, cols, MONO_METHODSPEC_SIZE);
1187
1188                 /* build a methodspec token to get the method */
1189                 token = MONO_TOKEN_METHOD_SPEC | i;
1190                 method = get_method (m, token, NULL);
1191                 
1192                 sig = get_method_type_param (m, cols [MONO_METHODSPEC_SIGNATURE], NULL);
1193                 fprintf (output, "%d: %s, %s\n", i, method, sig);
1194                 g_free (sig);
1195                 g_free (method);
1196         }
1197 }
1198
1199 void
1200 dump_table_parconstraint (MonoImage *m)
1201 {
1202         MonoTableInfo *t = &m->tables [MONO_TABLE_GENERICPARAMCONSTRAINT];
1203         guint32 cols [MONO_GENPARCONSTRAINT_SIZE];
1204         int i;
1205         
1206         fprintf (output, "Generic Param Constraint (1..%d)\n", t->rows);
1207
1208         for (i = 1; i <= t->rows; i++) {
1209                 char *sig;
1210                 mono_metadata_decode_row (t, i - 1, cols, MONO_GENPARCONSTRAINT_SIZE);
1211
1212                 // sig = get_typedef_or_ref (m, cols [MONO_GENPARCONSTRAINT_CONSTRAINT], NULL);
1213                 sig = g_strdup_printf ("%x", cols [MONO_GENPARCONSTRAINT_CONSTRAINT]);
1214                 fprintf (output, "%d: gen-par=%d, Constraint=%s\n", i,
1215                          cols [MONO_GENPARCONSTRAINT_GENERICPAR], sig);
1216                 g_free (sig);
1217         }
1218 }
1219
1220 void
1221 dump_stream_blob (MonoImage *m)
1222 {
1223         int i;
1224
1225         fprintf (output, "Blob heap contents\n");
1226
1227         for (i = 0; i < m->heap_blob.size; i++) {
1228                 if (i > 0) {
1229                         if ((i % 16) == 0)
1230                                 fprintf (output, "\n");
1231                         else if ((i % 8) == 0)
1232                                 fprintf (output, "- ");
1233                 }
1234                 fprintf (output, "%02x ", m->heap_blob.data [i] & 0xff);
1235         }
1236
1237         fprintf (output, "\n");
1238 }
1239
1240 void
1241 dump_stream_strings (MonoImage *m)
1242 {
1243         guint32 i;
1244
1245         fprintf (output, "Strings heap contents\n");
1246
1247         for (i = 0; i < m->heap_strings.size; ) {
1248                 const char *str = mono_metadata_string_heap (m, i);
1249                 fprintf (output, "%02x: \"%s\"\n", i, str);
1250                 i += strlen (str) + 1;
1251         }
1252 }
1253
1254 void
1255 dump_stream_us (MonoImage *m)
1256 {
1257         guint32 i;
1258
1259         fprintf (output, "User Strings heap contents\n");
1260
1261         for (i = 0; i < m->heap_us.size; ) {
1262                 const char *us_ptr = mono_metadata_user_string (m, i);
1263                 int len = mono_metadata_decode_blob_size (us_ptr, (const char**)&us_ptr);
1264
1265                 char *str = get_encoded_user_string_or_bytearray ((const guchar*)us_ptr, len);
1266                 fprintf (output, "%02x: %s\n", i, str);
1267                 g_free (str);
1268                 i += len + 1;
1269         }
1270 }
1271
1272 void
1273 dump_table_standalonesig (MonoImage *m)
1274 {
1275         MonoTableInfo *t = &m->tables [MONO_TABLE_STANDALONESIG];
1276         guint32 cols [MONO_STAND_ALONE_SIGNATURE_SIZE];
1277         int i;
1278         
1279         fprintf (output, "Stand alone signature (1..%d)\n", t->rows);
1280
1281         for (i = 1; i <= t->rows; i++) {
1282                 const char *locals_ptr;
1283                 int j, bsize;
1284
1285                 mono_metadata_decode_row (t, i - 1, cols, MONO_STAND_ALONE_SIGNATURE_SIZE);
1286
1287                 locals_ptr = mono_metadata_blob_heap (m, cols [MONO_STAND_ALONE_SIGNATURE]);
1288                 bsize = mono_metadata_decode_blob_size (locals_ptr, &locals_ptr);
1289
1290                 fprintf (output, "%d: blob[0x%x] = ", i, cols [MONO_STAND_ALONE_SIGNATURE]);
1291
1292                 for (j = 0; j < bsize; j++) {
1293                         fprintf (output, "%02x ", locals_ptr [j] & 0xff);
1294                 }
1295                 fprintf (output, "\n");
1296         }
1297 }
1298
1299 static void
1300 dump_table_ptr (MonoImage *m, int table, const char *name)
1301 {
1302         MonoTableInfo *t = &m->tables [table];
1303         guint32 cols [1];
1304         int i;
1305         
1306         fprintf (output, "%s (1..%d)\n", name, t->rows);
1307
1308         for (i = 1; i <= t->rows; i++) {
1309                 mono_metadata_decode_row (t, i - 1, cols, 1);
1310
1311                 fprintf (output, "%d: %d\n", i, cols [0]);
1312         }
1313 }
1314
1315 void
1316 dump_table_methodptr (MonoImage *m)
1317 {
1318         dump_table_ptr (m, MONO_TABLE_METHOD_POINTER, "Method Ptr");
1319 }
1320
1321 void
1322 dump_table_fieldptr (MonoImage *m)
1323 {
1324         dump_table_ptr (m, MONO_TABLE_FIELD_POINTER, "Field Ptr");
1325 }
1326
1327 void
1328 dump_table_paramptr (MonoImage *m)
1329 {
1330         dump_table_ptr (m, MONO_TABLE_PARAM_POINTER, "Param Ptr");
1331 }
1332
1333 void
1334 dump_table_eventptr (MonoImage *m)
1335 {
1336         dump_table_ptr (m, MONO_TABLE_EVENT_POINTER, "Event Ptr");
1337 }
1338
1339 void
1340 dump_table_propertyptr (MonoImage *m)
1341 {
1342         dump_table_ptr (m, MONO_TABLE_PROPERTY_POINTER, "Property Ptr");
1343 }