2001-11-09 H.J. Lu <hjl@gnu.org>
[binutils.git] / binutils / sysdump.c
blob0b0d49524ffd14b695ac0e7c205b7d237d733dc4
1 /* Sysroff object format dumper.
2 Copyright 1994, 1995, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
22 /* Written by Steve Chamberlain <sac@cygnus.com>.
24 This program reads a SYSROFF object file and prints it in an
25 almost human readable form to stdout. */
27 #include "bfd.h"
28 #include "bucomm.h"
29 #include "safe-ctype.h"
31 #include <stdio.h>
32 #include <libiberty.h>
33 #include <getopt.h>
34 #include "sysroff.h"
36 static int dump = 1;
37 static int segmented_p;
38 static int code;
39 static int addrsize = 4;
40 static FILE *file;
42 static void dh PARAMS ((unsigned char *, int));
43 static void itheader PARAMS ((char *, int));
44 static void p PARAMS ((void));
45 static void tabout PARAMS ((void));
46 static void pbarray PARAMS ((barray *));
47 static int getone PARAMS ((int));
48 static int opt PARAMS ((int));
49 static void must PARAMS ((int));
50 static void tab PARAMS ((int, char *));
51 static void dump_symbol_info PARAMS ((void));
52 static void derived_type PARAMS ((void));
53 static void module PARAMS ((void));
54 static void show_usage PARAMS ((FILE *, int));
55 static void show_help PARAMS ((void));
57 extern char *getCHARS PARAMS ((unsigned char *, int *, int, int));
58 extern int fillup PARAMS ((char *));
59 extern barray getBARRAY PARAMS ((unsigned char *, int *, int, int));
60 extern int getINT PARAMS ((unsigned char *, int *, int, int));
61 extern int getBITS PARAMS ((char *, int *, int, int));
62 extern void sysroff_swap_tr_in PARAMS ((void));
63 extern void sysroff_print_tr_out PARAMS ((void));
64 extern int main PARAMS ((int, char **));
66 char *
67 getCHARS (ptr, idx, size, max)
68 unsigned char *ptr;
69 int *idx;
70 int size;
71 int max;
73 int oc = *idx / 8;
74 char *r;
75 int b = size;
76 if (b >= max)
78 return "*undefined*";
81 if (b == 0)
83 /* Got to work out the length of the string from self */
84 b = ptr[oc++];
85 (*idx) += 8;
88 *idx += b * 8;
89 r = xcalloc (b + 1, 1);
90 memcpy (r, ptr + oc, b);
91 r[b] = 0;
92 return r;
95 static void
96 dh (ptr, size)
97 unsigned char *ptr;
98 int size;
100 int i;
101 int j;
102 int span = 16;
104 printf ("\n************************************************************\n");
106 for (i = 0; i < size; i += span)
108 for (j = 0; j < span; j++)
110 if (j + i < size)
111 printf ("%02x ", ptr[i + j]);
112 else
113 printf (" ");
116 for (j = 0; j < span && j + i < size; j++)
118 int c = ptr[i + j];
119 if (c < 32 || c > 127)
120 c = '.';
121 printf ("%c", c);
123 printf ("\n");
128 fillup (ptr)
129 char *ptr;
131 int size;
132 int sum;
133 int i;
134 size = getc (file) - 2;
135 fread (ptr, 1, size, file);
136 sum = code + size + 2;
137 for (i = 0; i < size; i++)
139 sum += ptr[i];
142 if ((sum & 0xff) != 0xff)
144 printf ("SUM IS %x\n", sum);
146 if (dump)
147 dh (ptr, size);
149 return size - 1;
152 barray
153 getBARRAY (ptr, idx, dsize, max)
154 unsigned char *ptr;
155 int *idx;
156 int dsize ATTRIBUTE_UNUSED;
157 int max ATTRIBUTE_UNUSED;
159 barray res;
160 int i;
161 int byte = *idx / 8;
162 int size = ptr[byte++];
163 res.len = size;
164 res.data = (unsigned char *) xmalloc (size);
165 for (i = 0; i < size; i++)
167 res.data[i] = ptr[byte++];
169 return res;
173 getINT (ptr, idx, size, max)
174 unsigned char *ptr;
175 int *idx;
176 int size;
177 int max;
179 int n = 0;
180 int byte = *idx / 8;
182 if (byte >= max)
184 return 0;
186 if (size == -2)
187 size = addrsize;
188 if (size == -1)
189 size = 0;
190 switch (size)
192 case 0:
193 return 0;
194 case 1:
195 n = (ptr[byte]);
196 break;
197 case 2:
198 n = (ptr[byte + 0] << 8) + ptr[byte + 1];
199 break;
200 case 4:
201 n = (ptr[byte + 0] << 24) + (ptr[byte + 1] << 16) + (ptr[byte + 2] << 8) + (ptr[byte + 3]);
202 break;
203 default:
204 abort ();
206 *idx += size * 8;
207 return n;
211 getBITS (ptr, idx, size, max)
212 char *ptr;
213 int *idx;
214 int size, max;
216 int byte = *idx / 8;
217 int bit = *idx % 8;
219 if (byte >= max)
220 return 0;
222 *idx += size;
224 return (ptr[byte] >> (8 - bit - size)) & ((1 << size) - 1);
227 static void
228 itheader (name, code)
229 char *name;
230 int code;
232 printf ("\n%s 0x%02x\n", name, code);
235 static int indent;
236 static void
237 p ()
239 int i;
240 for (i = 0; i < indent; i++)
242 printf ("| ");
244 printf ("> ");
247 static void
248 tabout ()
250 p ();
253 static void
254 pbarray (y)
255 barray *y;
257 int x;
258 printf ("%d (", y->len);
259 for (x = 0; x < y->len; x++)
261 printf ("(%02x %c)", y->data[x],
262 ISPRINT (y->data[x]) ? y->data[x] : '.');
264 printf (")\n");
267 #define SYSROFF_PRINT
268 #define SYSROFF_SWAP_IN
270 #include "sysroff.c"
273 * FIXME: sysinfo, which generates sysroff.[ch] from sysroff.info, can't
274 * hack the special case of the tr block, which has no contents. So we
275 * implement our own functions for reading in and printing out the tr
276 * block.
279 #define IT_tr_CODE 0x7f
280 void
281 sysroff_swap_tr_in()
283 char raw[255];
285 memset(raw, 0, 255);
286 fillup(raw);
289 void
290 sysroff_print_tr_out()
292 itheader("tr", IT_tr_CODE);
295 static int
296 getone (type)
297 int type;
299 int c = getc (file);
300 code = c;
302 if ((c & 0x7f) != type)
304 ungetc (c, file);
305 return 0;
308 switch (c & 0x7f)
310 case IT_cs_CODE:
312 struct IT_cs dummy;
313 sysroff_swap_cs_in (&dummy);
314 sysroff_print_cs_out (&dummy);
316 break;
317 case IT_dln_CODE:
319 struct IT_dln dummy;
320 sysroff_swap_dln_in (&dummy);
321 sysroff_print_dln_out (&dummy);
323 break;
324 case IT_hd_CODE:
326 struct IT_hd dummy;
327 sysroff_swap_hd_in (&dummy);
328 addrsize = dummy.afl;
329 sysroff_print_hd_out (&dummy);
331 break;
332 case IT_dar_CODE:
334 struct IT_dar dummy;
335 sysroff_swap_dar_in (&dummy);
336 sysroff_print_dar_out (&dummy);
338 break;
339 case IT_dsy_CODE:
341 struct IT_dsy dummy;
342 sysroff_swap_dsy_in (&dummy);
343 sysroff_print_dsy_out (&dummy);
345 break;
346 case IT_dfp_CODE:
348 struct IT_dfp dummy;
349 sysroff_swap_dfp_in (&dummy);
350 sysroff_print_dfp_out (&dummy);
352 break;
353 case IT_dso_CODE:
355 struct IT_dso dummy;
356 sysroff_swap_dso_in (&dummy);
357 sysroff_print_dso_out (&dummy);
359 break;
360 case IT_dpt_CODE:
362 struct IT_dpt dummy;
363 sysroff_swap_dpt_in (&dummy);
364 sysroff_print_dpt_out (&dummy);
366 break;
367 case IT_den_CODE:
369 struct IT_den dummy;
370 sysroff_swap_den_in (&dummy);
371 sysroff_print_den_out (&dummy);
373 break;
374 case IT_dbt_CODE:
376 struct IT_dbt dummy;
377 sysroff_swap_dbt_in (&dummy);
378 sysroff_print_dbt_out (&dummy);
380 break;
381 case IT_dty_CODE:
383 struct IT_dty dummy;
384 sysroff_swap_dty_in (&dummy);
385 sysroff_print_dty_out (&dummy);
387 break;
388 case IT_un_CODE:
390 struct IT_un dummy;
391 sysroff_swap_un_in (&dummy);
392 sysroff_print_un_out (&dummy);
394 break;
395 case IT_sc_CODE:
397 struct IT_sc dummy;
398 sysroff_swap_sc_in (&dummy);
399 sysroff_print_sc_out (&dummy);
401 break;
402 case IT_er_CODE:
404 struct IT_er dummy;
405 sysroff_swap_er_in (&dummy);
406 sysroff_print_er_out (&dummy);
408 break;
409 case IT_ed_CODE:
411 struct IT_ed dummy;
412 sysroff_swap_ed_in (&dummy);
413 sysroff_print_ed_out (&dummy);
415 break;
416 case IT_sh_CODE:
418 struct IT_sh dummy;
419 sysroff_swap_sh_in (&dummy);
420 sysroff_print_sh_out (&dummy);
422 break;
423 case IT_ob_CODE:
425 struct IT_ob dummy;
426 sysroff_swap_ob_in (&dummy);
427 sysroff_print_ob_out (&dummy);
429 break;
430 case IT_rl_CODE:
432 struct IT_rl dummy;
433 sysroff_swap_rl_in (&dummy);
434 sysroff_print_rl_out (&dummy);
436 break;
437 case IT_du_CODE:
439 struct IT_du dummy;
440 sysroff_swap_du_in (&dummy);
442 sysroff_print_du_out (&dummy);
444 break;
445 case IT_dus_CODE:
447 struct IT_dus dummy;
448 sysroff_swap_dus_in (&dummy);
449 sysroff_print_dus_out (&dummy);
451 break;
452 case IT_dul_CODE:
454 struct IT_dul dummy;
455 sysroff_swap_dul_in (&dummy);
456 sysroff_print_dul_out (&dummy);
458 break;
459 case IT_dss_CODE:
461 struct IT_dss dummy;
462 sysroff_swap_dss_in (&dummy);
463 sysroff_print_dss_out (&dummy);
465 break;
466 case IT_hs_CODE:
468 struct IT_hs dummy;
469 sysroff_swap_hs_in (&dummy);
470 sysroff_print_hs_out (&dummy);
472 break;
473 case IT_dps_CODE:
475 struct IT_dps dummy;
476 sysroff_swap_dps_in (&dummy);
477 sysroff_print_dps_out (&dummy);
479 break;
480 case IT_tr_CODE:
482 sysroff_swap_tr_in ();
483 sysroff_print_tr_out ();
485 break;
486 case IT_dds_CODE:
488 struct IT_dds dummy;
489 sysroff_swap_dds_in (&dummy);
490 sysroff_print_dds_out (&dummy);
492 break;
493 default:
494 printf ("GOT A %x\n", c);
495 return 0;
496 break;
498 return 1;
501 static int
502 opt (x)
503 int x;
505 return getone (x);
508 #if 0
510 /* This is no longer used. */
512 static void
513 unit_info_list ()
515 while (opt (IT_un_CODE))
517 getone (IT_us_CODE);
519 while (getone (IT_sc_CODE))
520 getone (IT_ss_CODE);
522 while (getone (IT_er_CODE))
525 while (getone (IT_ed_CODE))
530 #endif
532 #if 0
534 /* This is no longer used. */
536 static void
537 object_body_list ()
539 while (getone (IT_sh_CODE))
541 while (getone (IT_ob_CODE))
543 while (getone (IT_rl_CODE))
548 #endif
550 static void
551 must (x)
552 int x;
554 if (!getone (x))
556 printf ("WANTED %x!!\n", x);
560 static void
561 tab (i, s)
562 int i;
563 char *s;
565 indent += i;
566 if (s)
568 p ();
569 printf (s);
570 printf ("\n");
574 static void
575 dump_symbol_info ()
577 tab (1, "SYMBOL INFO");
578 while (opt (IT_dsy_CODE))
580 if (opt (IT_dty_CODE))
582 must (IT_dbt_CODE);
583 derived_type ();
584 must (IT_dty_CODE);
587 tab (-1, "");
590 static void
591 derived_type ()
593 tab (1, "DERIVED TYPE");
594 while (1)
596 if (opt (IT_dpp_CODE))
598 dump_symbol_info ();
599 must (IT_dpp_CODE);
601 else if (opt (IT_dfp_CODE))
603 dump_symbol_info ();
604 must (IT_dfp_CODE);
606 else if (opt (IT_den_CODE))
608 dump_symbol_info ();
609 must (IT_den_CODE);
611 else if (opt (IT_den_CODE))
613 dump_symbol_info ();
614 must (IT_den_CODE);
616 else if (opt (IT_dds_CODE))
618 dump_symbol_info ();
619 must (IT_dds_CODE);
621 else if (opt (IT_dar_CODE))
624 else if (opt (IT_dpt_CODE))
627 else if (opt (IT_dul_CODE))
630 else if (opt (IT_dse_CODE))
633 else if (opt (IT_dot_CODE))
636 else
637 break;
640 tab (-1, "");
643 #if 0
645 /* This is no longer used. */
647 static void
648 program_structure ()
650 tab (1, "PROGRAM STRUCTURE");
651 while (opt (IT_dps_CODE))
653 must (IT_dso_CODE);
654 opt (IT_dss_CODE);
655 dump_symbol_info ();
656 must (IT_dps_CODE);
658 tab (-1, "");
661 #endif
663 #if 0
665 /* This is no longer used. */
667 static void
668 debug_list ()
670 tab (1, "DEBUG LIST");
672 must (IT_du_CODE);
673 opt (IT_dus_CODE);
674 program_structure ();
675 must (IT_dln_CODE);
677 tab (-1, "");
680 #endif
682 static void
683 module ()
685 int c = 0;
686 int l = 0;
688 tab (1, "MODULE***\n");
692 c = getc (file);
693 ungetc (c, file);
695 c &= 0x7f;
697 while (getone (c) && c != IT_tr_CODE);
699 #if 0
700 must (IT_cs_CODE);
701 must (IT_hd_CODE);
702 opt (IT_hs_CODE);
704 unit_info_list ();
705 object_body_list ();
706 debug_list ();
708 must (IT_tr_CODE);
709 #endif
710 tab (-1, "");
712 c = getc (file);
713 while (c != EOF)
715 printf ("%02x ", c);
716 l++;
717 if (l == 32)
719 printf ("\n");
720 l = 0;
722 c = getc (file);
726 char *program_name;
728 static void
729 show_usage (file, status)
730 FILE *file;
731 int status;
733 fprintf (file, _("Usage: %s [-hV] in-file\n"), program_name);
734 exit (status);
737 static void
738 show_help ()
740 printf (_("%s: Print a human readable interpretation of a SYSROFF object file\n"),
741 program_name);
742 show_usage (stdout, 0);
746 main (ac, av)
747 int ac;
748 char **av;
750 char *input_file = NULL;
751 int opt;
752 static struct option long_options[] =
754 {"help", no_argument, 0, 'h'},
755 {"version", no_argument, 0, 'V'},
756 {NULL, no_argument, 0, 0}
759 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
760 setlocale (LC_MESSAGES, "");
761 #endif
762 #if defined (HAVE_SETLOCALE)
763 setlocale (LC_CTYPE, "");
764 #endif
765 bindtextdomain (PACKAGE, LOCALEDIR);
766 textdomain (PACKAGE);
768 program_name = av[0];
769 xmalloc_set_program_name (program_name);
771 while ((opt = getopt_long (ac, av, "hV", long_options, (int *) NULL)) != EOF)
773 switch (opt)
775 case 'h':
776 show_help ();
777 /*NOTREACHED*/
778 case 'V':
779 print_version ("sysdump");
780 exit (0);
781 /*NOTREACHED*/
782 case 0:
783 break;
784 default:
785 show_usage (stderr, 1);
786 /*NOTREACHED*/
790 /* The input and output files may be named on the command line. */
792 if (optind < ac)
794 input_file = av[optind];
797 if (!input_file)
799 fatal (_("no input file specified"));
802 file = fopen (input_file, FOPEN_RB);
803 if (!file)
805 fatal (_("cannot open input file %s"), input_file);
808 module ();
809 return 0;