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