Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* Coff file dumper. |
82704155 | 2 | Copyright (C) 1994-2019 Free Software Foundation, Inc. |
252b5132 | 3 | |
8b53311e | 4 | This file is part of GNU Binutils. |
252b5132 | 5 | |
8b53311e NC |
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 | |
32866df7 | 8 | the Free Software Foundation; either version 3 of the License, or (at |
8b53311e | 9 | your option) any later version. |
252b5132 | 10 | |
8b53311e NC |
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. | |
252b5132 | 15 | |
8b53311e NC |
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 | |
32866df7 NC |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
19 | MA 02110-1301, USA. */ | |
20 | ||
252b5132 RH |
21 | |
22 | /* Written by Steve Chamberlain <sac@cygnus.com> | |
23 | ||
24 | This module reads a type tree generated by coffgrok and prints | |
8b53311e | 25 | it out so we can test the grokker. */ |
252b5132 | 26 | |
3db64b00 | 27 | #include "sysdep.h" |
e9792343 | 28 | #include "bfd.h" |
9382dad2 | 29 | #include "bfd_stdint.h" |
e9792343 | 30 | #include "libiberty.h" |
3db64b00 | 31 | #include "bucomm.h" |
252b5132 RH |
32 | |
33 | #include "coffgrok.h" | |
408f8db1 | 34 | #include "getopt.h" |
252b5132 | 35 | |
252b5132 | 36 | static int atnl; |
c32144ff | 37 | |
2da42df6 AJ |
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 *); | |
2da42df6 AJ |
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 *); | |
2da42df6 AJ |
47 | static void show_usage (FILE *, int); |
48 | extern int main (int, char **); | |
252b5132 RH |
49 | |
50 | static void | |
2da42df6 | 51 | tab (int x) |
252b5132 RH |
52 | { |
53 | static int indent; | |
54 | int i; | |
55 | ||
56 | if (atnl) | |
57 | { | |
58 | if (x < 0) | |
59 | { | |
60 | printf (")"); | |
61 | indent += x; | |
62 | ||
63 | return; | |
64 | } | |
65 | else | |
66 | { | |
67 | printf ("\n"); | |
68 | atnl = 0; | |
69 | } | |
70 | } | |
71 | ||
72 | if (x == -1) | |
73 | { | |
74 | for (i = 0; i < indent; i++) | |
75 | printf (" "); | |
76 | ||
77 | indent += x; | |
78 | printf (")"); | |
79 | return; | |
80 | } | |
81 | ||
82 | indent += x; | |
83 | ||
84 | for (i = 0; i < indent; i++) | |
85 | printf (" "); | |
86 | ||
87 | if (x) | |
88 | { | |
89 | printf ("("); | |
90 | } | |
91 | } | |
92 | ||
8b53311e | 93 | static void |
2da42df6 | 94 | nl (void) |
252b5132 RH |
95 | { |
96 | atnl = 1; | |
97 | } | |
98 | ||
99 | static void | |
2da42df6 | 100 | dump_coff_lines (struct coff_line *p) |
252b5132 RH |
101 | { |
102 | int i; | |
103 | int online = 0; | |
8b53311e NC |
104 | |
105 | tab (1); | |
106 | printf (_("#lines %d "),p->nlines); | |
107 | ||
f462a9ea | 108 | for (i = 0; i < p->nlines; i++) |
252b5132 | 109 | { |
8b53311e NC |
110 | printf ("(%d 0x%x)", p->lines[i], p->addresses[i]); |
111 | ||
252b5132 | 112 | online++; |
8b53311e | 113 | |
252b5132 RH |
114 | if (online > 6) |
115 | { | |
8b53311e NC |
116 | nl (); |
117 | tab (0); | |
252b5132 RH |
118 | online = 0; |
119 | } | |
120 | } | |
8b53311e NC |
121 | nl (); |
122 | tab (-1); | |
252b5132 RH |
123 | } |
124 | ||
125 | static void | |
2da42df6 | 126 | dump_coff_type (struct coff_type *p) |
252b5132 RH |
127 | { |
128 | tab (1); | |
9cf03b7e | 129 | printf (_("size %d "), p->size); |
8b53311e | 130 | |
252b5132 RH |
131 | switch (p->type) |
132 | { | |
133 | case coff_secdef_type: | |
9cf03b7e | 134 | printf (_("section definition at %x size %x\n"), |
252b5132 RH |
135 | p->u.asecdef.address, |
136 | p->u.asecdef.size); | |
8b53311e | 137 | nl (); |
252b5132 RH |
138 | break; |
139 | case coff_pointer_type: | |
9cf03b7e | 140 | printf (_("pointer to")); |
252b5132 RH |
141 | nl (); |
142 | dump_coff_type (p->u.pointer.points_to); | |
143 | break; | |
144 | case coff_array_type: | |
9cf03b7e | 145 | printf (_("array [%d] of"), p->u.array.dim); |
252b5132 RH |
146 | nl (); |
147 | dump_coff_type (p->u.array.array_of); | |
148 | break; | |
149 | case coff_function_type: | |
9cf03b7e | 150 | printf (_("function returning")); |
252b5132 RH |
151 | nl (); |
152 | dump_coff_type (p->u.function.function_returns); | |
153 | dump_coff_lines (p->u.function.lines); | |
9cf03b7e | 154 | printf (_("arguments")); |
252b5132 RH |
155 | nl (); |
156 | dump_coff_scope (p->u.function.parameters); | |
157 | tab (0); | |
9cf03b7e | 158 | printf (_("code")); |
252b5132 RH |
159 | nl (); |
160 | dump_coff_scope (p->u.function.code); | |
161 | tab(0); | |
162 | break; | |
163 | case coff_structdef_type: | |
9cf03b7e | 164 | printf (_("structure definition")); |
252b5132 RH |
165 | nl (); |
166 | dump_coff_scope (p->u.astructdef.elements); | |
167 | break; | |
168 | case coff_structref_type: | |
169 | if (!p->u.aenumref.ref) | |
9cf03b7e | 170 | printf (_("structure ref to UNKNOWN struct")); |
252b5132 | 171 | else |
9cf03b7e | 172 | printf (_("structure ref to %s"), p->u.aenumref.ref->name); |
252b5132 RH |
173 | break; |
174 | case coff_enumref_type: | |
9cf03b7e | 175 | printf (_("enum ref to %s"), p->u.astructref.ref->name); |
252b5132 RH |
176 | break; |
177 | case coff_enumdef_type: | |
9cf03b7e | 178 | printf (_("enum definition")); |
252b5132 RH |
179 | nl (); |
180 | dump_coff_scope (p->u.aenumdef.elements); | |
181 | break; | |
182 | case coff_basic_type: | |
183 | switch (p->u.basic) | |
184 | { | |
185 | case T_NULL: | |
186 | printf ("NULL"); | |
187 | break; | |
188 | case T_VOID: | |
189 | printf ("VOID"); | |
190 | break; | |
191 | case T_CHAR: | |
192 | printf ("CHAR"); | |
193 | break; | |
194 | case T_SHORT: | |
195 | printf ("SHORT"); | |
196 | break; | |
197 | case T_INT: | |
198 | printf ("INT "); | |
199 | break; | |
200 | case T_LONG: | |
201 | printf ("LONG"); | |
202 | break; | |
203 | case T_FLOAT: | |
204 | printf ("FLOAT"); | |
205 | break; | |
206 | case T_DOUBLE: | |
207 | printf ("DOUBLE"); | |
208 | break; | |
209 | case T_STRUCT: | |
210 | printf ("STRUCT"); | |
211 | break; | |
212 | case T_UNION: | |
213 | printf ("UNION"); | |
214 | break; | |
215 | case T_ENUM: | |
216 | printf ("ENUM"); | |
217 | break; | |
218 | case T_MOE: | |
219 | printf ("MOE "); | |
220 | break; | |
221 | case T_UCHAR: | |
222 | printf ("UCHAR"); | |
223 | break; | |
224 | case T_USHORT: | |
225 | printf ("USHORT"); | |
226 | break; | |
227 | case T_UINT: | |
228 | printf ("UINT"); | |
229 | break; | |
230 | case T_ULONG: | |
231 | printf ("ULONG"); | |
232 | break; | |
233 | case T_LNGDBL: | |
234 | printf ("LNGDBL"); | |
235 | break; | |
236 | default: | |
237 | abort (); | |
238 | } | |
239 | } | |
240 | nl (); | |
241 | tab (-1); | |
242 | } | |
243 | ||
244 | static void | |
2da42df6 | 245 | dump_coff_where (struct coff_where *p) |
252b5132 RH |
246 | { |
247 | tab (1); | |
248 | switch (p->where) | |
249 | { | |
250 | case coff_where_stack: | |
9cf03b7e | 251 | printf (_("Stack offset %x"), p->offset); |
252b5132 RH |
252 | break; |
253 | case coff_where_memory: | |
9cf03b7e | 254 | printf (_("Memory section %s+%x"), p->section->name, p->offset); |
252b5132 RH |
255 | break; |
256 | case coff_where_register: | |
9cf03b7e | 257 | printf (_("Register %d"), p->offset); |
252b5132 RH |
258 | break; |
259 | case coff_where_member_of_struct: | |
9cf03b7e | 260 | printf (_("Struct Member offset %x"), p->offset); |
252b5132 RH |
261 | break; |
262 | case coff_where_member_of_enum: | |
9cf03b7e | 263 | printf (_("Enum Member offset %x"), p->offset); |
252b5132 RH |
264 | break; |
265 | case coff_where_unknown: | |
9cf03b7e | 266 | printf (_("Undefined symbol")); |
252b5132 RH |
267 | break; |
268 | case coff_where_strtag: | |
269 | printf ("STRTAG"); | |
2b804145 | 270 | break; |
252b5132 RH |
271 | case coff_where_entag: |
272 | printf ("ENTAG"); | |
273 | break; | |
274 | case coff_where_typedef: | |
275 | printf ("TYPEDEF"); | |
276 | break; | |
277 | default: | |
278 | abort (); | |
279 | } | |
280 | nl (); | |
281 | tab (-1); | |
282 | } | |
283 | ||
284 | static void | |
2da42df6 | 285 | dump_coff_visible (struct coff_visible *p) |
252b5132 RH |
286 | { |
287 | tab (1); | |
288 | switch (p->type) | |
289 | { | |
290 | case coff_vis_ext_def: | |
291 | printf ("coff_vis_ext_def"); | |
292 | break; | |
293 | case coff_vis_ext_ref: | |
294 | printf ("coff_vis_ext_ref"); | |
295 | break; | |
296 | case coff_vis_int_def: | |
297 | printf ("coff_vis_int_def"); | |
298 | break; | |
299 | case coff_vis_common: | |
300 | printf ("coff_vis_common"); | |
301 | break; | |
302 | case coff_vis_auto: | |
303 | printf ("coff_vis_auto"); | |
304 | break; | |
305 | case coff_vis_autoparam: | |
306 | printf ("coff_vis_autoparam"); | |
307 | break; | |
308 | case coff_vis_regparam: | |
309 | printf ("coff_vis_regparam"); | |
310 | break; | |
311 | case coff_vis_register: | |
312 | printf ("coff_vis_register"); | |
313 | break; | |
314 | case coff_vis_tag: | |
315 | printf ("coff_vis_tag"); | |
316 | break; | |
317 | case coff_vis_member_of_struct: | |
318 | printf ("coff_vis_member_of_struct"); | |
319 | break; | |
320 | case coff_vis_member_of_enum: | |
321 | printf ("coff_vis_member_of_enum"); | |
322 | break; | |
323 | default: | |
324 | abort (); | |
325 | } | |
326 | nl (); | |
327 | tab (-1); | |
328 | } | |
329 | ||
89b78896 | 330 | static void |
2da42df6 | 331 | dump_coff_symbol (struct coff_symbol *p) |
252b5132 RH |
332 | { |
333 | tab (1); | |
9cf03b7e | 334 | printf (_("List of symbols")); |
252b5132 | 335 | nl (); |
8b53311e | 336 | |
252b5132 RH |
337 | while (p) |
338 | { | |
339 | tab (1); | |
340 | tab (1); | |
9cf03b7e | 341 | printf (_("Symbol %s, tag %d, number %d"), p->name, p->tag, p->number); |
252b5132 RH |
342 | nl (); |
343 | tab (-1); | |
344 | tab (1); | |
9cf03b7e | 345 | printf (_("Type")); |
252b5132 RH |
346 | nl (); |
347 | dump_coff_type (p->type); | |
348 | tab (-1); | |
349 | tab (1); | |
9cf03b7e | 350 | printf (_("Where")); |
252b5132 RH |
351 | dump_coff_where (p->where); |
352 | tab (-1); | |
353 | tab (1); | |
9cf03b7e | 354 | printf (_("Visible")); |
252b5132 RH |
355 | dump_coff_visible (p->visible); |
356 | tab (-1); | |
357 | p = p->next; | |
358 | tab (-1); | |
359 | } | |
360 | tab (-1); | |
361 | } | |
362 | ||
363 | static void | |
2da42df6 | 364 | dump_coff_scope (struct coff_scope *p) |
252b5132 | 365 | { |
8b53311e | 366 | if (p) |
252b5132 | 367 | { |
8b53311e | 368 | tab (1); |
9cf03b7e NC |
369 | printf ("%s %" BFD_VMA_FMT "x ", |
370 | _("List of blocks "), (bfd_vma) (uintptr_t) p); | |
8b53311e NC |
371 | |
372 | if (p->sec) | |
373 | printf( " %s %x..%x", p->sec->name,p->offset, p->offset + p->size -1); | |
374 | ||
252b5132 | 375 | nl (); |
8b53311e NC |
376 | tab (0); |
377 | printf ("*****************"); | |
252b5132 | 378 | nl (); |
8b53311e NC |
379 | |
380 | while (p) | |
381 | { | |
382 | tab (0); | |
9cf03b7e | 383 | printf (_("vars %d"), p->nvars); |
8b53311e NC |
384 | nl (); |
385 | dump_coff_symbol (p->vars_head); | |
9cf03b7e | 386 | printf (_("blocks")); |
8b53311e NC |
387 | nl (); |
388 | dump_coff_scope (p->list_head); | |
389 | nl (); | |
390 | p = p->next; | |
391 | } | |
392 | ||
393 | tab (0); | |
394 | printf ("*****************"); | |
252b5132 | 395 | nl (); |
8b53311e | 396 | tab (-1); |
252b5132 | 397 | } |
252b5132 RH |
398 | } |
399 | ||
400 | static void | |
2da42df6 | 401 | dump_coff_sfile (struct coff_sfile *p) |
252b5132 RH |
402 | { |
403 | tab (1); | |
9cf03b7e | 404 | printf (_("List of source files")); |
252b5132 | 405 | nl (); |
8b53311e | 406 | |
252b5132 RH |
407 | while (p) |
408 | { | |
409 | tab (0); | |
9cf03b7e | 410 | printf (_("Source file %s"), p->name); |
252b5132 RH |
411 | nl (); |
412 | dump_coff_scope (p->scope); | |
413 | p = p->next; | |
414 | } | |
415 | tab (-1); | |
416 | } | |
417 | ||
418 | static void | |
2da42df6 | 419 | dump_coff_section (struct coff_section *ptr) |
252b5132 | 420 | { |
85880250 | 421 | unsigned int i; |
8b53311e NC |
422 | |
423 | tab (1); | |
85880250 | 424 | printf (_("section %s %d %d address %x size %x number %d nrelocs %u"), |
8b53311e NC |
425 | ptr->name, ptr->code, ptr->data, ptr->address,ptr->size, |
426 | ptr->number, ptr->nrelocs); | |
427 | nl (); | |
252b5132 | 428 | |
f462a9ea | 429 | for (i = 0; i < ptr->nrelocs; i++) |
252b5132 | 430 | { |
85880250 | 431 | struct coff_reloc * r = ptr->relocs + i; |
f462a9ea | 432 | tab (0); |
8b53311e | 433 | printf ("(%x %s %x)", |
85880250 NC |
434 | r->offset, |
435 | /* PR 17512: file: 0a38fb7c. */ | |
436 | r->symbol == NULL ? _("<no sym>") : r->symbol->name, | |
437 | r->addend); | |
8b53311e | 438 | nl (); |
252b5132 | 439 | } |
252b5132 | 440 | |
8b53311e | 441 | tab (-1); |
252b5132 RH |
442 | } |
443 | ||
89b78896 | 444 | static void |
2da42df6 | 445 | coff_dump (struct coff_ofile *ptr) |
252b5132 RH |
446 | { |
447 | int i; | |
8b53311e | 448 | |
252b5132 RH |
449 | printf ("Coff dump"); |
450 | nl (); | |
9cf03b7e | 451 | printf (_("#sources %d"), ptr->nsources); |
252b5132 RH |
452 | nl (); |
453 | dump_coff_sfile (ptr->source_head); | |
8b53311e | 454 | |
252b5132 | 455 | for (i = 0; i < ptr->nsections; i++) |
8b53311e | 456 | dump_coff_section (ptr->sections + i); |
252b5132 RH |
457 | } |
458 | ||
252b5132 RH |
459 | char * program_name; |
460 | ||
461 | static void | |
2da42df6 | 462 | show_usage (FILE *file, int status) |
252b5132 | 463 | { |
8b53311e | 464 | fprintf (file, _("Usage: %s [option(s)] in-file\n"), program_name); |
fbe3e2c8 | 465 | fprintf (file, _(" Print a human readable interpretation of a COFF object file\n")); |
8b53311e | 466 | fprintf (file, _(" The options are:\n\ |
07012eee | 467 | @<file> Read options from <file>\n\ |
8b53311e NC |
468 | -h --help Display this information\n\ |
469 | -v --version Display the program's version\n\ | |
470 | \n")); | |
252b5132 | 471 | |
92f01d61 | 472 | if (REPORT_BUGS_TO[0] && status == 0) |
8b53311e | 473 | fprintf (file, _("Report bugs to %s\n"), REPORT_BUGS_TO); |
252b5132 | 474 | |
8b53311e NC |
475 | exit (status); |
476 | } | |
252b5132 RH |
477 | |
478 | int | |
2da42df6 | 479 | main (int ac, char **av) |
252b5132 RH |
480 | { |
481 | bfd *abfd; | |
482 | struct coff_ofile *tree; | |
483 | char **matching; | |
484 | char *input_file = NULL; | |
485 | int opt; | |
486 | static struct option long_options[] = | |
487 | { | |
488 | { "help", no_argument, 0, 'h' }, | |
489 | { "version", no_argument, 0, 'V' }, | |
490 | { NULL, no_argument, 0, 0 } | |
491 | }; | |
492 | ||
493 | #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES) | |
494 | setlocale (LC_MESSAGES, ""); | |
3882b010 L |
495 | #endif |
496 | #if defined (HAVE_SETLOCALE) | |
497 | setlocale (LC_CTYPE, ""); | |
252b5132 RH |
498 | #endif |
499 | bindtextdomain (PACKAGE, LOCALEDIR); | |
500 | textdomain (PACKAGE); | |
501 | ||
502 | program_name = av[0]; | |
503 | xmalloc_set_program_name (program_name); | |
86eafac0 | 504 | bfd_set_error_program_name (program_name); |
252b5132 | 505 | |
869b9d07 MM |
506 | expandargv (&ac, &av); |
507 | ||
8b53311e | 508 | while ((opt = getopt_long (ac, av, "HhVv", long_options, |
252b5132 RH |
509 | (int *) NULL)) |
510 | != EOF) | |
511 | { | |
512 | switch (opt) | |
513 | { | |
8b53311e | 514 | case 'H': |
252b5132 | 515 | case 'h': |
8b53311e NC |
516 | show_usage (stdout, 0); |
517 | break; | |
518 | case 'v': | |
252b5132 | 519 | case 'V': |
6a8c2b0d | 520 | print_version ("coffdump"); |
252b5132 | 521 | exit (0); |
252b5132 RH |
522 | case 0: |
523 | break; | |
524 | default: | |
525 | show_usage (stderr, 1); | |
8b53311e | 526 | break; |
252b5132 RH |
527 | } |
528 | } | |
529 | ||
530 | if (optind < ac) | |
531 | { | |
532 | input_file = av[optind]; | |
533 | } | |
534 | ||
535 | if (!input_file) | |
8b53311e NC |
536 | fatal (_("no input file specified")); |
537 | ||
252b5132 RH |
538 | abfd = bfd_openr (input_file, 0); |
539 | ||
540 | if (!abfd) | |
541 | bfd_fatal (input_file); | |
542 | ||
543 | if (! bfd_check_format_matches (abfd, bfd_object, &matching)) | |
544 | { | |
545 | bfd_nonfatal (input_file); | |
8b53311e | 546 | |
252b5132 RH |
547 | if (bfd_get_error () == bfd_error_file_ambiguously_recognized) |
548 | { | |
549 | list_matching_formats (matching); | |
550 | free (matching); | |
551 | } | |
552 | exit (1); | |
553 | } | |
554 | ||
555 | tree = coff_grok (abfd); | |
85880250 NC |
556 | if (tree) |
557 | { | |
558 | coff_dump (tree); | |
559 | printf ("\n"); | |
560 | } | |
8b53311e | 561 | |
252b5132 RH |
562 | return 0; |
563 | } |