1999-09-19 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
[deliverable/binutils-gdb.git] / binutils / sysdump.c
index aa656240e0eacab8c6aa09bd0a73423056bf4ced..c821e8cf457ba54c7ef0093587560b0079a0c46f 100644 (file)
@@ -1,50 +1,46 @@
 /* Sysroff object format dumper.
-   Copyright (C) 1994 Free Software Foundation, Inc.
+   Copyright (C) 1994, 95, 98, 1999 Free Software Foundation, Inc.
 
-This file is part of GNU Binutils.
+   This file is part of GNU Binutils.
 
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
 
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.  */
 
 
 /* Written by Steve Chamberlain <sac@cygnus.com>.
 
-   This program reads a SYSROFF object file and prints it in an
-   almost human readable form to stdout. */
+ This program reads a SYSROFF object file and prints it in an
+ almost human readable form to stdout. */
+
+#include "bfd.h"
+#include "bucomm.h"
 
 #include <stdio.h>
+#include <ctype.h>
 #include <libiberty.h>
 #include <getopt.h>
 #include "sysroff.h"
-#include <stdlib.h>
 
 #define PROGRAM_VERSION "1.0"
 
 static int dump = 1;
 static int segmented_p;
 static int code;
+static int addrsize = 4;
 static FILE *file;
 
-static char *xcalloc(a,b)
-int a;
-int b;
-{
-  char *r = xmalloc(a,b);
-  memset (r, 0, a * b);
-  return r;
-}
-
 char *
 getCHARS (ptr, idx, size, max)
      unsigned char *ptr;
@@ -68,11 +64,12 @@ getCHARS (ptr, idx, size, max)
     }
 
   *idx += b * 8;
-  r = calloc (b + 1, 1);
+  r = xcalloc (b + 1, 1);
   memcpy (r, ptr + oc, b);
   r[b] = 0;
   return r;
 }
+
 static void
 dh (ptr, size)
      unsigned char *ptr;
@@ -80,33 +77,32 @@ dh (ptr, size)
 {
   int i;
   int j;
-  int span = 20;
+  int span = 16;
 
   printf ("\n************************************************************\n");
 
   for (i = 0; i < size; i += span)
     {
-      for (j = 0; j < span && j + i < size; j++)
+      for (j = 0; j < span; j++)
        {
-         printf ("%02x ", ptr[i + j]);
+         if (j + i < size) 
+           printf ("%02x ", ptr[i + j]);
+          else
+            printf ("   ");
        }
-      printf ("\n");
-    }
 
-  for (i = 0; i < size; i += span)
-    {
       for (j = 0; j < span && j + i < size; j++)
        {
          int c = ptr[i + j];
          if (c < 32 || c > 127)
            c = '.';
-         printf (" %c ", c);
+         printf ("%c", c);
        }
       printf ("\n");
     }
 }
 
-int 
+int
 fillup (ptr)
      char *ptr;
 {
@@ -127,11 +123,11 @@ fillup (ptr)
     }
   if (dump)
     dh (ptr, size);
-  return size;
-}
 
+  return size - 1;
+}
 
-barray 
+barray
 getBARRAY (ptr, idx, dsize, max)
      unsigned char *ptr;
      int *idx;
@@ -143,7 +139,7 @@ getBARRAY (ptr, idx, dsize, max)
   int byte = *idx / 8;
   int size = ptr[byte++];
   res.len = size;
-  res.data = (unsigned char *)xmalloc (size);
+  res.data = (unsigned char *) xmalloc (size);
   for (i = 0; i < size; i++)
     {
       res.data[i] = ptr[byte++];
@@ -151,9 +147,7 @@ getBARRAY (ptr, idx, dsize, max)
   return res;
 }
 
-
-
-int 
+int
 getINT (ptr, idx, size, max)
      unsigned char *ptr;
      int *idx;
@@ -168,7 +162,7 @@ getINT (ptr, idx, size, max)
       return 0;
     }
   if (size == -2)
-    size = 4;
+    size = addrsize;
   if (size == -1)
     size = 0;
   switch (size)
@@ -192,20 +186,22 @@ getINT (ptr, idx, size, max)
 }
 
 int
-getBITS (ptr, idx, size)
+getBITS (ptr, idx, size, max)
      char *ptr;
      int *idx;
-     int size;
+     int size, max;
 {
   int byte = *idx / 8;
   int bit = *idx % 8;
 
+  if (byte >= max)
+    return 0;
+
   *idx += size;
 
   return (ptr[byte] >> (8 - bit - size)) & ((1 << size) - 1);
 }
 
-
 static void
 itheader (name, code)
      char *name;
@@ -213,6 +209,7 @@ itheader (name, code)
 {
   printf ("\n%s 0x%02x\n", name, code);
 }
+
 static int indent;
 static void
 p ()
@@ -225,7 +222,7 @@ p ()
   printf ("> ");
 }
 
-static void 
+static void
 tabout ()
 {
   p ();
@@ -249,6 +246,28 @@ pbarray (y)
 
 #include "sysroff.c"
 
+/* 
+ * FIXME: sysinfo, which generates sysroff.[ch] from sysroff.info, can't
+ * hack the special case of the tr block, which has no contents.  So we
+ * implement our own functions for reading in and printing out the tr
+ * block.
+ */
+
+#define IT_tr_CODE     0x7f
+void
+sysroff_swap_tr_in()
+{
+       char raw[255];
+
+       memset(raw, 0, 255);
+       fillup(raw);
+}
+
+void
+sysroff_print_tr_out()
+{
+       itheader("tr", IT_tr_CODE);
+}
 
 static int
 getone (type)
@@ -283,6 +302,7 @@ getone (type)
       {
        struct IT_hd dummy;
        sysroff_swap_hd_in (&dummy);
+       addrsize = dummy.afl;
        sysroff_print_hd_out (&dummy);
       }
       break;
@@ -419,14 +439,14 @@ getone (type)
        sysroff_swap_dss_in (&dummy);
        sysroff_print_dss_out (&dummy);
       }
+      break;
     case IT_hs_CODE:
       {
        struct IT_hs dummy;
        sysroff_swap_hs_in (&dummy);
        sysroff_print_hs_out (&dummy);
       }
-
-
+      break;
     case IT_dps_CODE:
       {
        struct IT_dps dummy;
@@ -434,13 +454,10 @@ getone (type)
        sysroff_print_dps_out (&dummy);
       }
       break;
-
-
     case IT_tr_CODE:
       {
-       struct IT_tr dummy;
-       sysroff_swap_tr_in (&dummy);
-       sysroff_print_tr_out (&dummy);
+       sysroff_swap_tr_in ();
+       sysroff_print_tr_out ();
       }
       break;
     case IT_dds_CODE:
@@ -450,14 +467,12 @@ getone (type)
        sysroff_print_dds_out (&dummy);
       }
       break;
-      break;
     default:
       printf ("GOT A %x\n", c);
       return 0;
       break;
     }
   return 1;
-
 }
 
 static int
@@ -467,37 +482,49 @@ opt (x)
   return getone (x);
 }
 
-static void 
+#if 0
+
+/* This is no longer used.  */
+
+static void
 unit_info_list ()
 {
-  if (opt (IT_un_CODE))
+  while (opt (IT_un_CODE))
     {
+      getone (IT_us_CODE);
+
       while (getone (IT_sc_CODE))
-       {
-         getone (IT_ss_CODE);
-       }
+       getone (IT_ss_CODE);
 
       while (getone (IT_er_CODE))
-       {
-       }
+       ;
 
       while (getone (IT_ed_CODE))
-       {
-       }
+       ;
     }
 }
 
+#endif
+
+#if 0
+
+/* This is no longer used.  */
+
 static void
 object_body_list ()
 {
-  getone (IT_sh_CODE);
-  while (getone (IT_ob_CODE))
-    ;
-  while (getone (IT_rl_CODE))
-    ;
+  while (getone (IT_sh_CODE))
+    {
+      while (getone (IT_ob_CODE))
+       ;
+      while (getone (IT_rl_CODE))
+       ;
+    }
 }
 
-static void 
+#endif
+
+static void
 must (x)
      int x;
 {
@@ -507,7 +534,7 @@ must (x)
     }
 }
 
-static void 
+static void
 tab (i, s)
      int i;
      char *s;
@@ -520,10 +547,11 @@ tab (i, s)
       printf ("\n");
     }
 }
+
 static void derived_type ();
 
 static void
-symbol_info ()
+dump_symbol_info ()
 {
   tab (1, "SYMBOL INFO");
   while (opt (IT_dsy_CODE))
@@ -546,27 +574,27 @@ derived_type ()
     {
       if (opt (IT_dpp_CODE))
        {
-         symbol_info ();
+         dump_symbol_info ();
          must (IT_dpp_CODE);
        }
       else if (opt (IT_dfp_CODE))
        {
-         symbol_info ();
+         dump_symbol_info ();
          must (IT_dfp_CODE);
        }
       else if (opt (IT_den_CODE))
        {
-         symbol_info ();
+         dump_symbol_info ();
          must (IT_den_CODE);
        }
       else if (opt (IT_den_CODE))
        {
-         symbol_info ();
+         dump_symbol_info ();
          must (IT_den_CODE);
        }
       else if (opt (IT_dds_CODE))
        {
-         symbol_info ();
+         dump_symbol_info ();
          must (IT_dds_CODE);
        }
       else if (opt (IT_dar_CODE))
@@ -591,55 +619,73 @@ derived_type ()
   tab (-1, "");
 }
 
+#if 0
+
+/* This is no longer used.  */
+
 static void
 program_structure ()
 {
   tab (1, "PROGRAM STRUCTURE");
   while (opt (IT_dps_CODE))
     {
-      opt (IT_dso_CODE);
+      must (IT_dso_CODE);
       opt (IT_dss_CODE);
-      symbol_info ();
+      dump_symbol_info ();
+      must (IT_dps_CODE);
     }
   tab (-1, "");
 }
+
+#endif
+
+#if 0
+
+/* This is no longer used.  */
+
 static void
 debug_list ()
 {
   tab (1, "DEBUG LIST");
-  getone (IT_du_CODE);
-  while (getone (IT_dus_CODE))
-    ;
-  while (opt (IT_dfl_CODE))
-    ;
-  while (getone (IT_dus_CODE))
-    ;
 
+  must (IT_du_CODE);
+  opt (IT_dus_CODE);
   program_structure ();
+  must (IT_dln_CODE);
 
-  getone (IT_dln_CODE);
   tab (-1, "");
 }
 
+#endif
+
 static void
 module ()
 {
   int c = 0;
   int l = 0;
-  
-  tab (1, "MODULE***\n");
 
-  getone (IT_cs_CODE);
-  getone (IT_hd_CODE);
-  getone (IT_hs_CODE);
+  tab (1, "MODULE***\n");
 
-  while (!opt (IT_tr_CODE) && c < 10)
+  do
     {
-      unit_info_list ();
-      object_body_list ();
-      debug_list ();
-c++;
+      c = getc (file);
+      ungetc (c, file);
+
+      c &= 0x7f;
     }
+  while (getone (c) && c != IT_tr_CODE);
+
+#if 0
+  must (IT_cs_CODE);
+  must (IT_hd_CODE);
+  opt (IT_hs_CODE);
+
+  unit_info_list ();
+  object_body_list ();
+  debug_list ();
+
+  must (IT_tr_CODE);
+#endif
   tab (-1, "");
 
   c = getc (file);
@@ -656,28 +702,26 @@ c++;
     }
 }
 
-
-char * program_name;
+char *program_name;
 
 static void
 show_usage (file, status)
      FILE *file;
      int status;
 {
-  fprintf (file, "Usage: %s [-hV] in-file\n",   program_name);
+  fprintf (file, _("Usage: %s [-hV] in-file\n"), program_name);
   exit (status);
 }
 
 static void
 show_help ()
 {
-  printf ("%s: Print a human readable interpretation of a SYSROFF object file\n",
+  printf (_("%s: Print a human readable interpretation of a SYSROFF object file\n"),
          program_name);
   show_usage (stdout, 0);
 }
 
-
-int 
+int
 main (ac, av)
      int ac;
      char **av;
@@ -685,18 +729,22 @@ main (ac, av)
   char *input_file = NULL;
   int opt;
   static struct option long_options[] =
-    {
-      { "help", no_argument, 0, 'h' },
-      { "version", no_argument, 0, 'V' },
-      { NULL, no_argument, 0, 0 }
-    };
+  {
+    {"help", no_argument, 0, 'h'},
+    {"version", no_argument, 0, 'V'},
+    {NULL, no_argument, 0, 0}
+  };
+
+#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
+  setlocale (LC_MESSAGES, "");
+#endif
+  bindtextdomain (PACKAGE, LOCALEDIR);
+  textdomain (PACKAGE);
 
   program_name = av[0];
   xmalloc_set_program_name (program_name);
 
-  while ((opt = getopt_long (ac, av, "hV", long_options,
-                            (int *) NULL))
-        != EOF)
+  while ((opt = getopt_long (ac, av, "hV", long_options, (int *) NULL)) != EOF)
     {
       switch (opt)
        {
@@ -704,7 +752,7 @@ main (ac, av)
          show_help ();
          /*NOTREACHED*/
        case 'V':
-         printf ("GNU %s version %s\n", program_name, PROGRAM_VERSION);
+         printf (_("GNU %s version %s\n"), program_name, PROGRAM_VERSION);
          exit (0);
          /*NOTREACHED*/
        case 0:
@@ -724,20 +772,19 @@ main (ac, av)
 
   if (!input_file)
     {
-      fprintf (stderr,"%s: no input file specified\n",
+      fprintf (stderr, _("%s: no input file specified\n"),
               program_name);
-      exit(1);
+      exit (1);
     }
 
-  file = fopen (input_file, "r");
+  file = fopen (input_file, FOPEN_RB);
   if (!file)
     {
-      fprintf (stderr,"%s: cannot open input file %s\n",
+      fprintf (stderr, _("%s: cannot open input file %s\n"),
               program_name, input_file);
-      exit(1);
+      exit (1);
     }
 
-
   module ();
   return 0;
 }
This page took 0.032637 seconds and 4 git commands to generate.