2 Copyright (C) 1994-2018 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 3 of the License, or (at
9 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., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
22 /* Written by Steve Chamberlain <sac@cygnus.com>
24 This module reads a type tree generated by coffgrok and prints
25 it out so we can test the grokker. */
29 #include "bfd_stdint.h"
30 #include "libiberty.h"
38 static void tab (int);
39 static void nl (void);
40 static void dump_coff_lines (struct coff_line *);
41 static void dump_coff_type (struct coff_type *);
42 static void dump_coff_where (struct coff_where *);
43 static void dump_coff_visible (struct coff_visible *);
44 static void dump_coff_scope (struct coff_scope *);
45 static void dump_coff_sfile (struct coff_sfile *);
46 static void dump_coff_section (struct coff_section *);
47 static void show_usage (FILE *, int);
48 extern int main (int, char **);
74 for (i = 0; i < indent; i++)
84 for (i = 0; i < indent; i++)
100 dump_coff_lines (struct coff_line *p)
106 printf (_("#lines %d "),p->nlines);
108 for (i = 0; i < p->nlines; i++)
110 printf ("(%d 0x%x)", p->lines[i], p->addresses[i]);
126 dump_coff_type (struct coff_type *p)
129 printf (_("size %d "), p->size);
133 case coff_secdef_type:
134 printf (_("section definition at %x size %x\n"),
135 p->u.asecdef.address,
139 case coff_pointer_type:
140 printf (_("pointer to"));
142 dump_coff_type (p->u.pointer.points_to);
144 case coff_array_type:
145 printf (_("array [%d] of"), p->u.array.dim);
147 dump_coff_type (p->u.array.array_of);
149 case coff_function_type:
150 printf (_("function returning"));
152 dump_coff_type (p->u.function.function_returns);
153 dump_coff_lines (p->u.function.lines);
154 printf (_("arguments"));
156 dump_coff_scope (p->u.function.parameters);
160 dump_coff_scope (p->u.function.code);
163 case coff_structdef_type:
164 printf (_("structure definition"));
166 dump_coff_scope (p->u.astructdef.elements);
168 case coff_structref_type:
169 if (!p->u.aenumref.ref)
170 printf (_("structure ref to UNKNOWN struct"));
172 printf (_("structure ref to %s"), p->u.aenumref.ref->name);
174 case coff_enumref_type:
175 printf (_("enum ref to %s"), p->u.astructref.ref->name);
177 case coff_enumdef_type:
178 printf (_("enum definition"));
180 dump_coff_scope (p->u.aenumdef.elements);
182 case coff_basic_type:
245 dump_coff_where (struct coff_where *p)
250 case coff_where_stack:
251 printf (_("Stack offset %x"), p->offset);
253 case coff_where_memory:
254 printf (_("Memory section %s+%x"), p->section->name, p->offset);
256 case coff_where_register:
257 printf (_("Register %d"), p->offset);
259 case coff_where_member_of_struct:
260 printf (_("Struct Member offset %x"), p->offset);
262 case coff_where_member_of_enum:
263 printf (_("Enum Member offset %x"), p->offset);
265 case coff_where_unknown:
266 printf (_("Undefined symbol"));
268 case coff_where_strtag:
271 case coff_where_entag:
274 case coff_where_typedef:
285 dump_coff_visible (struct coff_visible *p)
290 case coff_vis_ext_def:
291 printf ("coff_vis_ext_def");
293 case coff_vis_ext_ref:
294 printf ("coff_vis_ext_ref");
296 case coff_vis_int_def:
297 printf ("coff_vis_int_def");
299 case coff_vis_common:
300 printf ("coff_vis_common");
303 printf ("coff_vis_auto");
305 case coff_vis_autoparam:
306 printf ("coff_vis_autoparam");
308 case coff_vis_regparam:
309 printf ("coff_vis_regparam");
311 case coff_vis_register:
312 printf ("coff_vis_register");
315 printf ("coff_vis_tag");
317 case coff_vis_member_of_struct:
318 printf ("coff_vis_member_of_struct");
320 case coff_vis_member_of_enum:
321 printf ("coff_vis_member_of_enum");
331 dump_coff_symbol (struct coff_symbol *p)
334 printf (_("List of symbols"));
341 printf (_("Symbol %s, tag %d, number %d"), p->name, p->tag, p->number);
347 dump_coff_type (p->type);
351 dump_coff_where (p->where);
354 printf (_("Visible"));
355 dump_coff_visible (p->visible);
364 dump_coff_scope (struct coff_scope *p)
369 printf ("%s %" BFD_VMA_FMT "x ",
370 _("List of blocks "), (bfd_vma) (uintptr_t) p);
373 printf( " %s %x..%x", p->sec->name,p->offset, p->offset + p->size -1);
377 printf ("*****************");
383 printf (_("vars %d"), p->nvars);
385 dump_coff_symbol (p->vars_head);
386 printf (_("blocks"));
388 dump_coff_scope (p->list_head);
394 printf ("*****************");
401 dump_coff_sfile (struct coff_sfile *p)
404 printf (_("List of source files"));
410 printf (_("Source file %s"), p->name);
412 dump_coff_scope (p->scope);
419 dump_coff_section (struct coff_section *ptr)
424 printf (_("section %s %d %d address %x size %x number %d nrelocs %u"),
425 ptr->name, ptr->code, ptr->data, ptr->address,ptr->size,
426 ptr->number, ptr->nrelocs);
429 for (i = 0; i < ptr->nrelocs; i++)
431 struct coff_reloc * r = ptr->relocs + i;
433 printf ("(%x %s %x)",
435 /* PR 17512: file: 0a38fb7c. */
436 r->symbol == NULL ? _("<no sym>") : r->symbol->name,
445 coff_dump (struct coff_ofile *ptr)
449 printf ("Coff dump");
451 printf (_("#sources %d"), ptr->nsources);
453 dump_coff_sfile (ptr->source_head);
455 for (i = 0; i < ptr->nsections; i++)
456 dump_coff_section (ptr->sections + i);
462 show_usage (FILE *file, int status)
464 fprintf (file, _("Usage: %s [option(s)] in-file\n"), program_name);
465 fprintf (file, _(" Print a human readable interpretation of a COFF object file\n"));
466 fprintf (file, _(" The options are:\n\
467 @<file> Read options from <file>\n\
468 -h --help Display this information\n\
469 -v --version Display the program's version\n\
472 if (REPORT_BUGS_TO[0] && status == 0)
473 fprintf (file, _("Report bugs to %s\n"), REPORT_BUGS_TO);
479 main (int ac, char **av)
482 struct coff_ofile *tree;
484 char *input_file = NULL;
486 static struct option long_options[] =
488 { "help", no_argument, 0, 'h' },
489 { "version", no_argument, 0, 'V' },
490 { NULL, no_argument, 0, 0 }
493 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
494 setlocale (LC_MESSAGES, "");
496 #if defined (HAVE_SETLOCALE)
497 setlocale (LC_CTYPE, "");
499 bindtextdomain (PACKAGE, LOCALEDIR);
500 textdomain (PACKAGE);
502 program_name = av[0];
503 xmalloc_set_program_name (program_name);
504 bfd_set_error_program_name (program_name);
506 expandargv (&ac, &av);
508 while ((opt = getopt_long (ac, av, "HhVv", long_options,
516 show_usage (stdout, 0);
520 print_version ("coffdump");
525 show_usage (stderr, 1);
532 input_file = av[optind];
536 fatal (_("no input file specified"));
538 abfd = bfd_openr (input_file, 0);
541 bfd_fatal (input_file);
543 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
545 bfd_nonfatal (input_file);
547 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
549 list_matching_formats (matching);
555 tree = coff_grok (abfd);