2003-12-03 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / dis / dump.c
index d8502c79802da6af771ffb1fafecbe47edea8d94..c518f528e39eee7dd3e7f2f0db6961165441181d 100644 (file)
 #include "mono/metadata/class.h"
 
 void
-dump_table_assembly (MonoMetadata *m)
+dump_table_assembly (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_ASSEMBLY];
        guint32 cols [MONO_ASSEMBLY_SIZE];
        const char *ptr;
        int len;
 
-       mono_metadata_decode_row (t, 0, cols, MONO_ASSEMBLY_SIZE);
        fprintf (output, "Assembly Table\n");
 
+       if (!t->rows)
+               return;
+
+       mono_metadata_decode_row (t, 0, cols, MONO_ASSEMBLY_SIZE);
+
        fprintf (output, "Name:          %s\n", mono_metadata_string_heap (m, cols [MONO_ASSEMBLY_NAME]));
        fprintf (output, "Hash Algoritm: 0x%08x\n", cols [MONO_ASSEMBLY_HASH_ALG]);
        fprintf (output, "Version:       %d.%d.%d.%d\n", cols [MONO_ASSEMBLY_MAJOR_VERSION], 
@@ -51,7 +55,7 @@ dump_table_assembly (MonoMetadata *m)
 }
 
 void
-dump_table_typeref (MonoMetadata *m)
+dump_table_typeref (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_TYPEREF];
        int i;
@@ -68,7 +72,7 @@ dump_table_typeref (MonoMetadata *m)
 }
 
 void
-dump_table_typedef (MonoMetadata *m)
+dump_table_typedef (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_TYPEDEF];
        int i;
@@ -90,7 +94,7 @@ dump_table_typedef (MonoMetadata *m)
 }
 
 void
-dump_table_assemblyref (MonoMetadata *m)
+dump_table_assemblyref (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_ASSEMBLYREF];
        int i;
@@ -123,7 +127,7 @@ dump_table_assemblyref (MonoMetadata *m)
 }
 
 void
-dump_table_param (MonoMetadata *m)
+dump_table_param (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_PARAM];
        int i;
@@ -133,7 +137,7 @@ dump_table_param (MonoMetadata *m)
        for (i = 0; i < t->rows; i++){
                guint32 cols [MONO_PARAM_SIZE];
 
-               mono_metadata_decode_row (t, i, cols, CSIZE (cols));
+               mono_metadata_decode_row (t, i, cols, MONO_PARAM_SIZE);
                fprintf (output, "%d: 0x%04x %d %s\n",
                         i + 1,
                         cols [MONO_PARAM_FLAGS], cols [MONO_PARAM_SEQUENCE], 
@@ -143,7 +147,7 @@ dump_table_param (MonoMetadata *m)
 }
 
 void
-dump_table_field (MonoMetadata *m)
+dump_table_field (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_FIELD];
        MonoTableInfo *td = &m->tables [MONO_TABLE_TYPEDEF];
@@ -195,13 +199,13 @@ dump_table_field (MonoMetadata *m)
 }
 
 void
-dump_table_memberref (MonoMetadata *m)
+dump_table_memberref (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_MEMBERREF];
        int i, kind, idx;
-       char *ks, *x, *xx;
+       char *x, *xx;
        char *sig;
-       const char *blob;
+       const char *blob, *ks;
 
        fprintf (output, "MemberRef Table (1..%d)\n", t->rows);
 
@@ -229,7 +233,11 @@ dump_table_memberref (MonoMetadata *m)
                case 3:
                        ks = "MethodDef"; break;
                case 4:
-                       ks = "TypeSpec"; break;
+                       ks = "TypeSpec";
+                       xx = get_typespec (m, idx);
+                       x = g_strconcat (xx, ".", mono_metadata_string_heap (m, cols [MONO_MEMBERREF_NAME]), NULL);
+                       g_free (xx);
+                       break;
                default:
                        g_error ("Unknown tag: %d\n", kind);
                }
@@ -254,7 +262,7 @@ dump_table_memberref (MonoMetadata *m)
 }
 
 void
-dump_table_class_layout (MonoMetadata *m)
+dump_table_class_layout (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_CLASSLAYOUT];
        int i;
@@ -263,7 +271,7 @@ dump_table_class_layout (MonoMetadata *m)
        for (i = 0; i < t->rows; i++){
                guint32 cols [MONO_CLASS_LAYOUT_SIZE];
                
-               mono_metadata_decode_row (t, i, cols, CSIZE (cols));
+               mono_metadata_decode_row (t, i, cols, MONO_CLASS_LAYOUT_SIZE);
 
                fprintf (output, "%d: PackingSize=%d  ClassSize=%d  Parent=%s\n",
                         i + 1, cols [MONO_CLASS_LAYOUT_PACKING_SIZE], 
@@ -273,7 +281,7 @@ dump_table_class_layout (MonoMetadata *m)
 }
 
 void
-dump_table_constant (MonoMetadata *m)
+dump_table_constant (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_CONSTANT];
        int i;
@@ -287,7 +295,7 @@ dump_table_constant (MonoMetadata *m)
 
        for (i = 0; i < t->rows; i++){
                guint32 cols [MONO_CONSTANT_SIZE];
-               char *parent = desc [cols [MONO_CONSTANT_PARENT] & HASCONSTANT_MASK];
+               const char *parent = desc [cols [MONO_CONSTANT_PARENT] & HASCONSTANT_MASK];
                
                mono_metadata_decode_row (t, i, cols, MONO_CONSTANT_SIZE);
 
@@ -299,7 +307,7 @@ dump_table_constant (MonoMetadata *m)
 }
 
 void
-dump_table_property_map (MonoMetadata *m)
+dump_table_property_map (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_PROPERTYMAP];
        int i;
@@ -312,13 +320,13 @@ dump_table_property_map (MonoMetadata *m)
                
                mono_metadata_decode_row (t, i, cols, MONO_PROPERTY_MAP_SIZE);
                s = get_typedef (m, cols [MONO_PROPERTY_MAP_PARENT]);
-               fprintf (output, "%d: %s %d\n", i + 1, s, cols [MONO_PROPERTY_MAP_PROPERTY_LIST]);
+               fprintf (output, "%d: %s (%d) %d\n", i + 1, s, cols [MONO_PROPERTY_MAP_PARENT], cols [MONO_PROPERTY_MAP_PROPERTY_LIST]);
                g_free (s);
        }
 }
 
 void
-dump_table_property (MonoMetadata *m)
+dump_table_property (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_PROPERTY];
        int i, j, pcount;
@@ -365,7 +373,7 @@ dump_table_property (MonoMetadata *m)
 }
 
 void
-dump_table_event (MonoMetadata *m)
+dump_table_event (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_EVENT];
        int i;
@@ -388,27 +396,91 @@ dump_table_event (MonoMetadata *m)
 }
 
 void
-dump_table_file (MonoMetadata *m)
+dump_table_file (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_FILE];
-       int i;
+       int i, j, len;
        fprintf (output, "File Table (1..%d)\n", t->rows);
 
        for (i = 0; i < t->rows; i++){
                guint32 cols [MONO_FILE_SIZE];
-               const char *name;
+               const char *name, *hash;
                
                mono_metadata_decode_row (t, i, cols, MONO_FILE_SIZE);
 
                name = mono_metadata_string_heap (m, cols [MONO_FILE_NAME]);
-               fprintf (output, "%d: %s %s\n", i + 1, name, 
+               fprintf (output, "%d: %s %s [", i + 1, name, 
                                cols [MONO_FILE_FLAGS] & 0x1 ? "nometadata" : "containsmetadata");
+               hash = mono_metadata_blob_heap (m, cols [MONO_FILE_HASH_VALUE]);
+               len = mono_metadata_decode_blob_size (hash, &hash);
+               for (j = 0; j < len; ++j)
+                       fprintf (output, "%s%02X", j? " ": "", hash [j] & 0xff);
+               fprintf (output, "]\n");
+       }
+       
+}
+
+static char*
+get_manifest_implementation (MonoImage *m, guint32 idx)
+{
+       guint32 row;
+       const char* table = "";
+       if (!idx)
+               return g_strdup ("current module");
+       row = idx >> IMPLEMENTATION_BITS;
+       switch (idx & IMPLEMENTATION_MASK) {
+       case IMPLEMENTATION_FILE:
+               table = "file";
+               break;
+       case IMPLEMENTATION_ASSEMBLYREF:
+               table = "assemblyref";
+               break;
+       case IMPLEMENTATION_EXP_TYPE:
+               table = "exportedtype";
+               break;
+       default:
+               g_assert_not_reached ();
+       }
+       return g_strdup_printf ("%s %d", table, row);
+}
+
+static const char*
+get_manifest_flags (guint32 mf)
+{
+       mf &= 3;
+       switch (mf) {
+       case 1: return "public";
+       case 2: return "private";
+       default:
+               return "";
+       }
+}
+
+void
+dump_table_manifest (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_MANIFESTRESOURCE];
+       int i;
+       fprintf (output, "Manifestresource Table (1..%d)\n", t->rows);
+
+       for (i = 0; i < t->rows; i++){
+               guint32 cols [MONO_MANIFEST_SIZE];
+               const char *name, *mf;
+               char *impl;
+               
+               mono_metadata_decode_row (t, i, cols, MONO_MANIFEST_SIZE);
+
+               name = mono_metadata_string_heap (m, cols [MONO_MANIFEST_NAME]);
+               mf = get_manifest_flags (cols [MONO_MANIFEST_FLAGS]);
+               impl = get_manifest_implementation (m, cols [MONO_MANIFEST_IMPLEMENTATION]);
+               fprintf (output, "%d: %s '%s' at offset %u in %s\n", i + 1, mf, name, cols [MONO_MANIFEST_OFFSET], impl);
+               g_free (impl);
        }
        
 }
 
 void
-dump_table_moduleref (MonoMetadata *m)
+dump_table_moduleref (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_MODULEREF];
        int i;
@@ -427,7 +499,27 @@ dump_table_moduleref (MonoMetadata *m)
 }
 
 void
-dump_table_method (MonoMetadata *m)
+dump_table_module (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_MODULE];
+       int i;
+       fprintf (output, "ModuleRef Table (1..%d)\n", t->rows);
+
+       for (i = 0; i < t->rows; i++){
+               guint32 cols [MONO_MODULE_SIZE];
+               const char *name;
+               char *guid;
+               
+               mono_metadata_decode_row (t, i, cols, MONO_MODULE_SIZE);
+
+               name = mono_metadata_string_heap (m, cols [MONO_MODULE_NAME]);
+               guid = get_guid (m, cols [MONO_MODULE_MVID]);
+               fprintf (output, "%d: %s %d %s\n", i + 1, name, cols [MONO_MODULE_MVID], guid);
+       }       
+}
+
+void
+dump_table_method (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_METHOD];
        MonoTableInfo *td = &m->tables [MONO_TABLE_TYPEDEF];
@@ -458,8 +550,8 @@ dump_table_method (MonoMetadata *m)
                mono_metadata_decode_row (t, i - 1, cols, MONO_METHOD_SIZE);
                sigblob = mono_metadata_blob_heap (m, cols [MONO_METHOD_SIGNATURE]);
                mono_metadata_decode_blob_size (sigblob, &sigblob);
-               method = mono_metadata_parse_method_signature (m, 1, sigblob, &sigblob);
-               sig = dis_stringify_method_signature (m, method, i);
+               method = mono_metadata_parse_method_signature (m, i, sigblob, &sigblob);
+               sig = dis_stringify_method_signature (m, method, i, FALSE);
                fprintf (output, "%d: %s (param: %d)\n", i, sig, cols [MONO_METHOD_PARAMLIST]);
                g_free (sig);
                mono_metadata_free_method_signature (method);
@@ -467,6 +559,67 @@ dump_table_method (MonoMetadata *m)
        
 }
 
+void
+dump_table_implmap (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_IMPLMAP];
+       MonoTableInfo *td = &m->tables [MONO_TABLE_MODULEREF];
+       int i;
+
+       fprintf (output, "ImplMap Table (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++){
+               guint32 cols [MONO_IMPLMAP_SIZE];
+               char *method;
+
+               mono_metadata_decode_row (t, i - 1, cols, MONO_IMPLMAP_SIZE);
+
+               method = get_method (m, MONO_TOKEN_METHOD_DEF | (cols [MONO_IMPLMAP_MEMBER] >> MEMBERFORWD_BITS));
+               
+               fprintf (output, "%d: %s %d (%s %s)\n", i, 
+                                method,
+                                cols [MONO_IMPLMAP_FLAGS], 
+                                mono_metadata_string_heap (m, cols [MONO_IMPLMAP_NAME]),
+                                mono_metadata_string_heap (m, mono_metadata_decode_row_col (td, cols [MONO_IMPLMAP_SCOPE] - 1, MONO_MODULEREF_NAME)));
+       }
+}
+
+static guint32
+method_dor_to_token (guint32 idx) {
+       switch (idx & METHODDEFORREF_MASK) {
+       case METHODDEFORREF_METHODDEF:
+               return MONO_TOKEN_METHOD_DEF | (idx >> METHODDEFORREF_BITS);
+       case METHODDEFORREF_METHODREF:
+               return MONO_TOKEN_MEMBER_REF | (idx >> METHODDEFORREF_BITS);
+       }
+       return -1;
+}
+
+void
+dump_table_methodimpl (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_METHODIMPL];
+       /*MonoTableInfo *td = &m->tables [MONO_TABLE_TYPEDEF];*/
+       int i;
+
+       fprintf (output, "MethodImpl Table (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++){
+               guint32 cols [MONO_METHODIMPL_SIZE];
+               char *class, *impl, *decl;
+
+               mono_metadata_decode_row (t, i - 1, cols, MONO_METHODIMPL_SIZE);
+               class = get_typedef (m, cols [MONO_METHODIMPL_CLASS]);
+               impl = get_method (m, method_dor_to_token (cols [MONO_METHODIMPL_BODY]));
+               decl = get_method (m, method_dor_to_token (cols [MONO_METHODIMPL_DECLARATION]));
+               fprintf (output, "%d: %s\n\tdecl: %s\n\timpl: %s\n", i, class, decl, impl);
+               g_free (class);
+               g_free (impl);
+               g_free (decl);
+       }
+       
+}
+
 static map_t semantics_map [] = {
                {1, "setter"},
                {2, "getter"},
@@ -478,7 +631,7 @@ static map_t semantics_map [] = {
 };
 
 void
-dump_table_methodsem (MonoMetadata *m)
+dump_table_methodsem (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_METHODSEMANTICS];
        int i, is_property, index;
@@ -490,9 +643,9 @@ dump_table_methodsem (MonoMetadata *m)
                
                mono_metadata_decode_row (t, i - 1, cols, MONO_METHOD_SEMA_SIZE);
                semantics = flags (cols [MONO_METHOD_SEMA_SEMANTICS], semantics_map);
-               is_property = cols [MONO_METHOD_SEMA_ASSOCIATION] & 1;
-               index = cols [MONO_METHOD_SEMA_ASSOCIATION] >> 1;
-               fprintf (output, "%d: %s method: %d %s %d\n", i, semantics,
+               is_property = cols [MONO_METHOD_SEMA_ASSOCIATION] & HAS_SEMANTICS_MASK;
+               index = cols [MONO_METHOD_SEMA_ASSOCIATION] >> HAS_SEMANTICS_BITS;
+               fprintf (output, "%d: [%d] %s method: %d %s %d\n", i, cols [MONO_METHOD_SEMA_ASSOCIATION], semantics,
                                                cols [MONO_METHOD_SEMA_METHOD] - 1, 
                                                is_property? "property" : "event",
                                                index);
@@ -500,7 +653,7 @@ dump_table_methodsem (MonoMetadata *m)
 }
 
 void 
-dump_table_interfaceimpl (MonoMetadata *m)
+dump_table_interfaceimpl (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_INTERFACEIMPL];
        int i;
@@ -517,11 +670,11 @@ dump_table_interfaceimpl (MonoMetadata *m)
 }
 
 static char*
-has_cattr_get_table (MonoMetadata *m, guint32 val)
+has_cattr_get_table (MonoImage *m, guint32 val)
 {
        guint32 t = val & CUSTOM_ATTR_MASK;
        guint32 index = val >> CUSTOM_ATTR_BITS;
-       char *table;
+       const char *table;
 
        switch (t) {
        case CUSTOM_ATTR_METHODDEF:
@@ -592,9 +745,9 @@ has_cattr_get_table (MonoMetadata *m, guint32 val)
 }
 
 static char*
-custom_attr_params (MonoMetadata *m, MonoMethodSignature* sig, const char* value)
+custom_attr_params (MonoImage *m, MonoMethodSignature* sig, const char* value)
 {
-       int len, i, slen;
+       int len, i, slen, type;
        GString *res;
        char *s;
        const char *p = value;
@@ -603,29 +756,85 @@ custom_attr_params (MonoMetadata *m, MonoMethodSignature* sig, const char* value
        if (len < 2 || read16 (p) != 0x0001) /* Prolog */
                return g_strdup ("");
 
+       /* skip prolog */
+       p += 2;
        res = g_string_new ("");
        for (i = 0; i < sig->param_count; ++i) {
                if (i != 0)
                        g_string_append (res, ", ");
-               switch (sig->params [i]->type) {
+               type = sig->params [i]->type;
+handle_enum:
+               switch (type) {
+               case MONO_TYPE_U1:
+                       g_string_sprintfa (res, "%d", (unsigned int)*p);
+                       ++p;
+                       break;
+               case MONO_TYPE_I1:
+                       g_string_sprintfa (res, "%d", *p);
+                       ++p;
+                       break;
                case MONO_TYPE_BOOLEAN:
                        g_string_sprintfa (res, "%s", *p?"true":"false");
                        ++p;
                        break;
+               case MONO_TYPE_CHAR:
+                       g_string_sprintfa (res, "'%c'", read16 (p));
+                       p += 2;
+                       break;
+               case MONO_TYPE_U2:
+                       g_string_sprintfa (res, "%d", read16 (p));
+                       p += 2;
+                       break;
+               case MONO_TYPE_I2:
+                       g_string_sprintfa (res, "%d", (gint16)read16 (p));
+                       p += 2;
+                       break;
+               case MONO_TYPE_U4:
+                       g_string_sprintfa (res, "%d", read32 (p));
+                       p += 4;
+                       break;
+               case MONO_TYPE_I4:
+                       g_string_sprintfa (res, "%d", (gint32)read32 (p));
+                       p += 4;
+                       break;
+               case MONO_TYPE_U8:
+                       g_string_sprintfa (res, "%lld", read64 (p));
+                       p += 8;
+                       break;
+               case MONO_TYPE_I8:
+                       g_string_sprintfa (res, "%lld", (gint64)read64 (p));
+                       p += 8;
+                       break;
+               case MONO_TYPE_R4: {
+                       float val;
+                       readr4 (p, &val);
+                       g_string_sprintfa (res, "%g", val);
+                       p += 4;
+                       break;
+               }
+               case MONO_TYPE_R8: {
+                       double val;
+                       readr8 (p, &val);
+                       g_string_sprintfa (res, "%g", val);
+                       p += 8;
+                       break;
+               }
                case MONO_TYPE_VALUETYPE:
                        if (sig->params [i]->data.klass->enumtype) {
-                               /*
-                                * FIXME: we should check the unrelying eum type...
-                                */
-                               g_string_sprintfa (res, "0x%x", read32 (p));
-                               p += 4;
+                               type = sig->params [i]->data.klass->enum_basetype->type;
+                               goto handle_enum;
                        } else {
                                g_warning ("generic valutype not handled in custom attr value decoding");
                        }
                        break;
+               case MONO_TYPE_CLASS: /* It must be a Type: check? */
                case MONO_TYPE_STRING:
+                       if (*p == (char)0xff) {
+                               g_string_append (res, "null");
+                               p++;
+                               break;
+                       }
                        slen = mono_metadata_decode_value (p, &p);
-                       ++p;
                        g_string_append_c (res, '"');
                        g_string_append (res, p);
                        g_string_append_c (res, '"');
@@ -636,17 +845,22 @@ custom_attr_params (MonoMetadata *m, MonoMethodSignature* sig, const char* value
                        break;
                }
        }
-       /*
-        * FIXME: handle named args only when all the type are handled in fixed args.
-        * slen = read16 (p);
-        */
+       slen = read16 (p);
+       if (slen) {
+               g_string_sprintfa (res, " %d named args: (", slen);
+               slen = len - (p - value) + 1;
+               for (i = 0; i < slen; ++i) {
+                       g_string_sprintfa (res, " %02X", (p [i] & 0xff));
+               }
+               g_string_append_c (res, ')');
+       }
        s = res->str;
        g_string_free (res, FALSE);
        return s;
 }
 
 void
-dump_table_customattr (MonoMetadata *m)
+dump_table_customattr (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_CUSTOMATTRIBUTE];
        int i;
@@ -685,7 +899,7 @@ dump_table_customattr (MonoMetadata *m)
 }
 
 void
-dump_table_nestedclass (MonoMetadata *m)
+dump_table_nestedclass (MonoImage *m)
 {
        MonoTableInfo *t = &m->tables [MONO_TABLE_NESTEDCLASS];
        guint32 cols [MONO_NESTED_CLASS_SIZE];
@@ -706,3 +920,176 @@ dump_table_nestedclass (MonoMetadata *m)
        
 }
 
+void
+dump_table_exported (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_EXPORTEDTYPE];
+       guint32 cols [MONO_EXP_TYPE_SIZE];
+       int i;
+       const char *name, *nspace;
+       char *impl;
+       guint32 index;
+       fprintf (output, "ExportedType Table (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++) {
+               mono_metadata_decode_row (t, i - 1, cols, MONO_EXP_TYPE_SIZE);
+               name = mono_metadata_string_heap (m, cols [MONO_EXP_TYPE_NAME]);
+               nspace = mono_metadata_string_heap (m, cols [MONO_EXP_TYPE_NAMESPACE]);
+               impl = get_manifest_implementation (m, cols [MONO_EXP_TYPE_IMPLEMENTATION]);
+               index = cols [MONO_EXP_TYPE_TYPEDEF];
+               fprintf (output, "%d: %s-%s%s is in %s, token %x\n", i, nspace, *nspace ? "." : "", name, impl, index);
+               g_free (impl);
+       }
+       
+}
+
+void
+dump_table_field_marshal (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_FIELDMARSHAL];
+       guint32 cols [MONO_FIELD_MARSHAL_SIZE];
+       int i, is_field, idx;
+       const char *blob;
+       char *native;
+       
+       fprintf (output, "FieldMarshal Table (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++) {
+               mono_metadata_decode_row (t, i - 1, cols, MONO_FIELD_MARSHAL_SIZE);
+               blob = mono_metadata_blob_heap (m, cols [MONO_FIELD_MARSHAL_NATIVE_TYPE]);
+               native = get_marshal_info (m, blob);
+               is_field = (cols [MONO_FIELD_MARSHAL_PARENT] & HAS_FIELD_MARSHAL_MASK) == HAS_FIELD_MARSHAL_FIELDSREF;
+               idx = cols [MONO_FIELD_MARSHAL_PARENT] >> HAS_FIELD_MARSHAL_BITS;
+               fprintf (output, "%d: (0x%04x) %s %d: %s\n", i, cols [MONO_FIELD_MARSHAL_PARENT], is_field? "Field" : "Param", idx, native);
+               g_free (native);
+       }
+       
+}
+
+static const char*
+get_security_action (int val) {
+       static char buf [32];
+
+       switch (val) {
+       case SECURITY_ACTION_DEMAND:
+               return "Demand";
+       case SECURITY_ACTION_ASSERT:
+               return "Assert";
+       case SECURITY_ACTION_DENY:
+               return "Deny";
+       case SECURITY_ACTION_PERMITONLY:
+               return "PermitOnly";
+       case SECURITY_ACTION_LINKDEMAND:
+               return "LinkDemand";
+       case SECURITY_ACTION_INHERITDEMAND:
+               return "InheritanceDemand";
+       case SECURITY_ACTION_REQMIN:
+               return "RequestMinimum";
+       case SECURITY_ACTION_REQOPT:
+               return "RequestOptional";
+       case SECURITY_ACTION_REQREFUSE:
+               return "RequestRefuse";
+       default:
+               g_snprintf (buf, sizeof (buf), "0x%04X", val);
+               return buf;
+       }
+}
+
+void 
+dump_table_declsec (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_DECLSECURITY];
+       guint32 cols [MONO_DECL_SECURITY_SIZE];
+       int i, len;
+       guint32 idx;
+       const char *blob, *action;
+       const char* parent[] = {
+               "TypeDef", "MethodDef", "Assembly", ""
+       };
+       
+       fprintf (output, "DeclSecurity Table (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++) {
+               mono_metadata_decode_row (t, i - 1, cols, MONO_DECL_SECURITY_SIZE);
+               blob = mono_metadata_blob_heap (m, cols [MONO_DECL_SECURITY_PERMISSIONSET]);
+               len = mono_metadata_decode_blob_size (blob, &blob);
+               action = get_security_action (cols [MONO_DECL_SECURITY_ACTION]);
+               idx = cols [MONO_DECL_SECURITY_PARENT];
+               fprintf (output, "%d: %s on %s %d%s", i, action, parent [idx & HAS_DECL_SECURITY_MASK], idx >> HAS_DECL_SECURITY_BITS, len? ":\n\t":"\n");
+               if (!len)
+                       continue;
+               for (idx = 0; idx < len; ++idx)
+                       fprintf (output, "%c", blob [idx]);
+               fprintf (output, "\n");
+       }
+}
+
+void 
+dump_table_genericpar (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_GENERICPARAM];
+       guint32 cols [MONO_GENERICPARAM_SIZE];
+       int i;
+
+       fprintf (output, "GenericParameters (1..%d)\n", t->rows);
+        
+       for (i = 1; i <= t->rows; i++) {
+                char *sig;
+               mono_metadata_decode_row (t, i - 1, cols, MONO_GENERICPARAM_SIZE);
+
+                sig = get_type_or_methdef (m, cols [MONO_GENERICPARAM_OWNER]);
+               fprintf (output, "%d: %d, flags=%d, owner=%s %s\n", i,
+                        cols [MONO_GENERICPARAM_NUMBER],
+                        cols [MONO_GENERICPARAM_FLAGS], sig,
+                        mono_metadata_string_heap (m, cols [MONO_GENERICPARAM_NAME]));
+                g_free (sig);
+       }
+}
+
+void
+dump_table_methodspec (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_METHODSPEC];
+       guint32 cols [MONO_METHODSPEC_SIZE];
+       int i;
+       
+       fprintf (output, "MethodSpec (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++) {
+               char *sig;
+               char *method;
+                guint32 token;
+                
+               mono_metadata_decode_row (t, i - 1, cols, MONO_METHODSPEC_SIZE);
+
+                // build a methodspec token to get the method
+                token = MONO_TOKEN_METHOD_SPEC | i;
+                method = get_method (m, token);
+                
+                sig = get_method_type_param (m, cols [MONO_METHODSPEC_SIGNATURE]);
+               fprintf (output, "%d: %s, %s\n", i, method, sig);
+               g_free (sig);
+               g_free (method);
+       }
+}
+
+void
+dump_table_parconstraint (MonoImage *m)
+{
+       MonoTableInfo *t = &m->tables [MONO_TABLE_GENERICPARAMCONSTRAINT];
+       guint32 cols [MONO_GENPARCONSTRAINT_SIZE];
+       int i;
+       
+       fprintf (output, "Generic Param Constraint (1..%d)\n", t->rows);
+
+       for (i = 1; i <= t->rows; i++) {
+                char *sig;
+               mono_metadata_decode_row (t, i - 1, cols, MONO_GENPARCONSTRAINT_SIZE);
+
+                sig = get_typedef_or_ref (m, cols [MONO_GENPARCONSTRAINT_CONSTRAINT]);
+               fprintf (output, "%d: gen-par=%d, Constraint=%s\n", i,
+                        cols [MONO_GENPARCONSTRAINT_GENERICPAR], sig);
+                g_free (sig);
+       }
+}
+