* aoutx.h (aout_reloc_index_to_section): Handle N_UNDF.
[deliverable/binutils-gdb.git] / binutils / objdump.c
CommitLineData
d20f480f 1/* objdump.c -- dump information about an object file.
37853673 2 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
2fa0b342 3
b3a2b497 4This file is part of GNU Binutils.
2fa0b342 5
b3a2b497 6This program is free software; you can redistribute it and/or modify
2fa0b342 7it under the terms of the GNU General Public License as published by
d20f480f 8the Free Software Foundation; either version 2, or (at your option)
2fa0b342
DHW
9any later version.
10
b3a2b497 11This program is distributed in the hope that it will be useful,
2fa0b342
DHW
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
b3a2b497
ILT
17along with this program; if not, write to the Free Software
18Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
2fa0b342 19
2fa0b342 20#include "bfd.h"
d20f480f 21#include "sysdep.h"
2fa0b342 22#include "getopt.h"
e1ec9f07 23#include "bucomm.h"
2fa0b342
DHW
24#include <stdio.h>
25#include <ctype.h>
2e8adbd7 26#include "dis-asm.h"
2fa0b342 27
73b8f102
JG
28/* Internal headers for the ELF .stab-dump code - sorry. */
29#define BYTES_IN_WORD 32
30#include "aout/aout64.h"
31#include "elf/internal.h"
d086adf8 32extern Elf_Internal_Shdr *bfd_elf_find_section();
bf661056 33
80d19ec1 34#ifndef FPRINTF_ALREADY_DECLARED
6f575704 35extern int fprintf PARAMS ((FILE *, CONST char *, ...));
80d19ec1 36#endif
2fa0b342
DHW
37
38char *default_target = NULL; /* default at runtime */
39
e1ec9f07 40extern char *program_version;
2fa0b342 41
249c6fc0 42int show_version = 0; /* show the version number */
2fa0b342
DHW
43int dump_section_contents; /* -s */
44int dump_section_headers; /* -h */
45boolean dump_file_header; /* -f */
46int dump_symtab; /* -t */
47int dump_reloc_info; /* -r */
48int dump_ar_hdrs; /* -a */
aa0a709a 49int with_line_numbers; /* -l */
9b018ecd 50int dump_stab_section_info; /* --stabs */
aa0a709a 51boolean disassemble; /* -d */
e1ec9f07 52boolean formats_info; /* -i */
195d1adf
KR
53char *only; /* -j secname */
54
cef35d48 55/* Extra info to pass to the disassembler address printing function. */
195d1adf
KR
56struct objdump_disasm_info {
57 bfd *abfd;
58 asection *sec;
59};
2fa0b342 60
cef35d48 61/* Architecture to disassemble for, or default if NULL. */
aa0a709a 62char *machine = (char *) NULL;
f7b839f7
DM
63
64/* The symbol table. */
aa0a709a 65asymbol **syms;
2fa0b342 66
f7b839f7 67/* Number of bytes allocated for `syms'. */
2fa0b342
DHW
68unsigned int storage;
69
f7b839f7 70/* Number of symbols in `syms'. */
2fa0b342
DHW
71unsigned int symcount = 0;
72
d9971b83
KR
73/* Forward declarations. */
74
75static void
76display_file PARAMS ((char *filename, char *target));
77
78static void
79dump_data PARAMS ((bfd *abfd));
80
81static void
82dump_relocs PARAMS ((bfd *abfd));
83
84static void
85dump_symbols PARAMS ((bfd *abfd));
02a68547
ILT
86
87static void
88display_bfd PARAMS ((bfd *abfd));
d9971b83 89\f
2fa0b342 90void
b3a2b497
ILT
91usage (stream, status)
92 FILE *stream;
93 int status;
2fa0b342 94{
b3a2b497 95 fprintf (stream, "\
02a68547
ILT
96Usage: %s [-ahifdrtxsl] [-b bfdname] [-m machine] [-j section-name]\n\
97 [--archive-headers] [--target=bfdname] [--disassemble] [--file-headers]\n\
98 [--section-headers] [--headers] [--info] [--section=section-name]\n\
99 [--line-numbers] [--architecture=machine] [--reloc] [--full-contents]\n\
100 [--stabs] [--syms] [--all-headers] [--version] [--help] objfile...\n\
101at least one option besides -l (--line-numbers) must be given\n",
b3a2b497
ILT
102 program_name);
103 exit (status);
2fa0b342
DHW
104}
105
aa0a709a
SC
106static struct option long_options[]=
107{
02a68547
ILT
108 {"all-headers", no_argument, NULL, 'x'},
109 {"architecture", required_argument, NULL, 'm'},
110 {"archive-headers", no_argument, NULL, 'a'},
111 {"disassemble", no_argument, NULL, 'd'},
112 {"file-headers", no_argument, NULL, 'f'},
113 {"full-contents", no_argument, NULL, 's'},
114 {"headers", no_argument, NULL, 'h'},
115 {"help", no_argument, NULL, 'H'},
116 {"info", no_argument, NULL, 'i'},
117 {"line-numbers", no_argument, NULL, 'l'},
118 {"reloc", no_argument, NULL, 'r'},
119 {"section", required_argument, NULL, 'j'},
120 {"section-headers", no_argument, NULL, 'h'},
73b8f102 121 {"stabs", no_argument, &dump_stab_section_info, 1},
02a68547
ILT
122 {"syms", no_argument, NULL, 't'},
123 {"target", required_argument, NULL, 'b'},
124 {"version", no_argument, &show_version, 1},
d2442698
DM
125 {0, no_argument, 0, 0}
126};
f7b839f7 127\f
2fa0b342 128static void
f7b839f7 129dump_section_header (abfd, section, ignored)
aa0a709a 130 bfd *abfd;
f7b839f7
DM
131 asection *section;
132 PTR ignored;
2fa0b342 133{
f7b839f7 134 char *comma = "";
aa0a709a 135
2fa0b342 136#define PF(x,y) \
f7b839f7
DM
137 if (section->flags & x) { printf("%s%s",comma,y); comma = ", "; }
138
139
140 printf ("SECTION %d [%s]\t: size %08x",
141 section->index,
142 section->name,
143 (unsigned) bfd_get_section_size_before_reloc (section));
144 printf (" vma ");
145 printf_vma (section->vma);
146 printf (" align 2**%u\n ",
147 section->alignment_power);
148 PF (SEC_ALLOC, "ALLOC");
149 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
150 PF (SEC_CONSTRUCTOR_TEXT, "CONSTRUCTOR TEXT");
151 PF (SEC_CONSTRUCTOR_DATA, "CONSTRUCTOR DATA");
152 PF (SEC_CONSTRUCTOR_BSS, "CONSTRUCTOR BSS");
153 PF (SEC_LOAD, "LOAD");
154 PF (SEC_RELOC, "RELOC");
195d1adf 155#ifdef SEC_BALIGN
f7b839f7 156 PF (SEC_BALIGN, "BALIGN");
195d1adf 157#endif
f7b839f7
DM
158 PF (SEC_READONLY, "READONLY");
159 PF (SEC_CODE, "CODE");
160 PF (SEC_DATA, "DATA");
161 PF (SEC_ROM, "ROM");
162 PF (SEC_DEBUGGING, "DEBUGGING");
163 printf ("\n");
2fa0b342 164#undef PF
2fa0b342
DHW
165}
166
f7b839f7
DM
167static void
168dump_headers (abfd)
169 bfd *abfd;
170{
171 bfd_map_over_sections (abfd, dump_section_header, (PTR) NULL);
172}
173\f
2fa0b342 174static asymbol **
abdcac0f
DM
175slurp_symtab (abfd)
176 bfd *abfd;
2fa0b342 177{
aa0a709a 178 asymbol **sy = (asymbol **) NULL;
2fa0b342 179
aa0a709a
SC
180 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
181 {
f7b839f7
DM
182 printf ("No symbols in \"%s\".\n", bfd_get_filename (abfd));
183 return NULL;
aa0a709a
SC
184 }
185
186 storage = get_symtab_upper_bound (abfd);
187 if (storage)
188 {
02a68547 189 sy = (asymbol **) xmalloc (storage);
aa0a709a
SC
190 }
191 symcount = bfd_canonicalize_symtab (abfd, sy);
f50af42b
KR
192 if (symcount <= 0)
193 {
eae82145 194 fprintf (stderr, "%s: %s: Invalid symbol table\n",
f50af42b
KR
195 program_name, bfd_get_filename (abfd));
196 exit (1);
197 }
aa0a709a 198 return sy;
2fa0b342 199}
aa0a709a 200
f7b839f7
DM
201/* Filter out (in place) symbols that are useless for disassembly.
202 COUNT is the number of elements in SYMBOLS.
203 Return the number of useful symbols. */
3ae36cb6 204
f7b839f7
DM
205int
206remove_useless_symbols (symbols, count)
207 asymbol **symbols;
3ae36cb6
PB
208 int count;
209{
f7b839f7 210 register asymbol **in_ptr = symbols, **out_ptr = symbols;
3ae36cb6 211
f7b839f7 212 while (--count >= 0)
3ae36cb6
PB
213 {
214 asymbol *sym = *in_ptr++;
215
216 if (sym->name == NULL || sym->name[0] == '\0')
217 continue;
218 if (sym->flags & (BSF_DEBUGGING))
219 continue;
220 if (sym->section == &bfd_und_section
221 || bfd_is_com_section (sym->section))
222 continue;
223
224 *out_ptr++ = sym;
225 }
f7b839f7 226 return out_ptr - symbols;
3ae36cb6
PB
227}
228
37853673
SS
229/* Sort symbols into value order. */
230
aa0a709a 231static int
37853673 232compare_symbols (ap, bp)
770cde30
JG
233 PTR ap;
234 PTR bp;
2fa0b342 235{
770cde30
JG
236 asymbol *a = *(asymbol **)ap;
237 asymbol *b = *(asymbol **)bp;
2fa0b342 238
3ae36cb6
PB
239 if (a->value > b->value)
240 return 1;
241 else if (a->value < b->value)
242 return -1;
2fa0b342 243
3ae36cb6
PB
244 if (a->section > b->section)
245 return 1;
246 else if (a->section < b->section)
247 return -1;
248 return 0;
2fa0b342
DHW
249}
250
f7b839f7
DM
251/* Print VMA symbolically to INFO if possible. */
252
2fa0b342 253void
545a2768 254objdump_print_address (vma, info)
aa0a709a 255 bfd_vma vma;
545a2768 256 struct disassemble_info *info;
2fa0b342 257{
195d1adf
KR
258 /* @@ For relocateable files, should filter out symbols belonging to
259 the wrong section. Unfortunately, not enough information is supplied
260 to this routine to determine the correct section in all cases. */
261 /* @@ Would it speed things up to cache the last two symbols returned,
262 and maybe their address ranges? For many processors, only one memory
263 operand can be present at a time, so the 2-entry cache wouldn't be
264 constantly churned by code doing heavy memory accesses. */
2fa0b342 265
f7b839f7 266 /* Indices in `syms'. */
2fa0b342
DHW
267 unsigned int min = 0;
268 unsigned int max = symcount;
2fa0b342 269 unsigned int thisplace = 1;
aa0a709a 270 unsigned int oldthisplace;
2fa0b342
DHW
271
272 int vardiff;
2fa0b342 273
3ae36cb6
PB
274 fprintf_vma (info->stream, vma);
275
f7b839f7
DM
276 if (symcount < 1)
277 return;
278
279 /* Perform a binary search looking for the closest symbol to
280 the required value. */
281 while (true)
aa0a709a 282 {
f7b839f7
DM
283 asymbol *sym;
284#if 0
285 asection *sym_sec;
286#endif
287 oldthisplace = thisplace;
288 thisplace = (max + min) / 2;
289 if (thisplace == oldthisplace)
290 break;
291 sym = syms[thisplace];
292 vardiff = sym->value - vma;
293#if 0
294 sym_sec = sym->section;
295#endif
296
297 if (vardiff > 0)
298 max = thisplace;
299 else if (vardiff < 0)
300 min = thisplace;
301 else
302 goto found;
303 }
304 /* We've run out of places to look; see whether this or the
305 symbol before this describes this location the best. */
306
307 if (thisplace != 0)
308 {
309 if (syms[thisplace - 1]->value - vma < syms[thisplace]->value - vma)
aa0a709a 310 {
f7b839f7
DM
311 /* Previous symbol is in correct section and is closer. */
312 thisplace--;
aa0a709a 313 }
f7b839f7 314 }
fc5d6074 315
f7b839f7
DM
316 found:
317 {
318 /* If this symbol isn't global, search for one with the same value
319 that is. */
320 bfd_vma val = syms[thisplace]->value;
321 int i;
322 if (syms[thisplace]->flags & (BSF_LOCAL|BSF_DEBUGGING))
323 for (i = thisplace - 1; i >= 0; i--)
aa0a709a 324 {
f7b839f7
DM
325 if (syms[i]->value == val
326 && (!(syms[i]->flags & (BSF_LOCAL|BSF_DEBUGGING))
327 || ((syms[thisplace]->flags & BSF_DEBUGGING)
328 && !(syms[i]->flags & BSF_DEBUGGING))))
aa0a709a 329 {
f7b839f7
DM
330 thisplace = i;
331 break;
aa0a709a
SC
332 }
333 }
f7b839f7
DM
334 if (syms[thisplace]->flags & (BSF_LOCAL|BSF_DEBUGGING))
335 for (i = thisplace + 1; i < symcount; i++)
336 {
337 if (syms[i]->value == val
338 && (!(syms[i]->flags & (BSF_LOCAL|BSF_DEBUGGING))
339 || ((syms[thisplace]->flags & BSF_DEBUGGING)
340 && !(syms[i]->flags & BSF_DEBUGGING))))
195d1adf 341 {
f7b839f7
DM
342 thisplace = i;
343 break;
195d1adf 344 }
f7b839f7
DM
345 }
346 }
347 {
348 /* If the file is relocateable, and the symbol could be from this
349 section, prefer a symbol from this section over symbols from
350 others, even if the other symbol's value might be closer.
351
352 Note that this may be wrong for some symbol references if the
353 sections have overlapping memory ranges, but in that case there's
354 no way to tell what's desired without looking at the relocation
355 table. */
356 struct objdump_disasm_info *aux;
357 int i;
358
359 aux = (struct objdump_disasm_info *) info->application_data;
360 if ((aux->abfd->flags & HAS_RELOC)
361 && vma >= bfd_get_section_vma (aux->abfd, aux->sec)
362 && vma < (bfd_get_section_vma (aux->abfd, aux->sec)
363 + bfd_get_section_size_before_reloc (aux->sec))
364 && syms[thisplace]->section != aux->sec)
365 {
366 for (i = thisplace + 1; i < symcount; i++)
367 if (syms[i]->value != syms[thisplace]->value)
368 break;
369 while (--i >= 0)
370 if (syms[i]->section == aux->sec)
195d1adf 371 {
f7b839f7
DM
372 thisplace = i;
373 break;
195d1adf
KR
374 }
375 }
f7b839f7
DM
376 }
377 fprintf (info->stream, " <%s", syms[thisplace]->name);
378 if (syms[thisplace]->value > vma)
379 {
380 char buf[30], *p = buf;
381 sprintf_vma (buf, syms[thisplace]->value - vma);
382 while (*p == '0')
383 p++;
384 fprintf (info->stream, "-%s", p);
385 }
386 else if (vma > syms[thisplace]->value)
387 {
388 char buf[30], *p = buf;
389 sprintf_vma (buf, vma - syms[thisplace]->value);
390 while (*p == '0')
391 p++;
392 fprintf (info->stream, "+%s", p);
2fa0b342 393 }
f7b839f7 394 fprintf (info->stream, ">");
2fa0b342
DHW
395}
396
195d1adf
KR
397#ifdef ARCH_all
398#define ARCH_a29k
399#define ARCH_alpha
400#define ARCH_h8300
401#define ARCH_h8500
402#define ARCH_hppa
403#define ARCH_i386
404#define ARCH_i960
405#define ARCH_m68k
406#define ARCH_m88k
407#define ARCH_mips
722087ec 408#define ARCH_rs6000
195d1adf
KR
409#define ARCH_sh
410#define ARCH_sparc
411#define ARCH_z8k
412#endif
413
2fa0b342 414void
aa0a709a
SC
415disassemble_data (abfd)
416 bfd *abfd;
2fa0b342 417{
fc5d6074 418 bfd_size_type i;
cef35d48 419 unsigned int (*print) () = 0; /* Old style */
2e8adbd7 420 disassembler_ftype disassemble = 0; /* New style */
2e8adbd7 421 struct disassemble_info disasm_info;
195d1adf 422 struct objdump_disasm_info aux;
2e8adbd7
PB
423
424 int prevline;
425 CONST char *prev_function = "";
d20f480f 426
2fa0b342 427 asection *section;
aa0a709a 428
96d7950b 429 boolean done_dot = false;
aa0a709a 430
cef35d48 431 /* Replace symbol section relative values with abs values. */
aa0a709a
SC
432 for (i = 0; i < symcount; i++)
433 {
2fa0b342 434 syms[i]->value += syms[i]->section->vma;
aa0a709a 435 }
2fa0b342 436
3ae36cb6 437 symcount = remove_useless_symbols (syms, symcount);
2fa0b342
DHW
438
439 /* Sort the symbols into section and symbol order */
f7b839f7 440 qsort (syms, symcount, sizeof (asymbol *), compare_symbols);
2fa0b342 441
cef35d48
DM
442 INIT_DISASSEMBLE_INFO(disasm_info, stdout);
443 disasm_info.application_data = (PTR) &aux;
444 aux.abfd = abfd;
445 disasm_info.print_address_func = objdump_print_address;
446
aa0a709a
SC
447 if (machine != (char *) NULL)
448 {
cef35d48
DM
449 bfd_arch_info_type *info = bfd_scan_arch (machine);
450 if (info == NULL)
aa0a709a
SC
451 {
452 fprintf (stderr, "%s: Can't use supplied machine %s\n",
453 program_name,
454 machine);
455 exit (1);
456 }
457 abfd->arch_info = info;
2fa0b342 458 }
e779a58c 459
cef35d48 460 /* See if we can disassemble using bfd. */
e779a58c 461
aa0a709a
SC
462 if (abfd->arch_info->disassemble)
463 {
464 print = abfd->arch_info->disassemble;
e779a58c 465 }
aa0a709a
SC
466 else
467 {
cef35d48 468 enum bfd_architecture a = bfd_get_arch (abfd);
aa0a709a
SC
469 switch (a)
470 {
195d1adf
KR
471 /* If you add a case to this table, also add it to the
472 ARCH_all definition right above this function. */
473#ifdef ARCH_a29k
474 case bfd_arch_a29k:
475 /* As far as I know we only handle big-endian 29k objects. */
476 disassemble = print_insn_big_a29k;
aa0a709a 477 break;
195d1adf
KR
478#endif
479#ifdef ARCH_alpha
480 case bfd_arch_alpha:
481 disassemble = print_insn_alpha;
12da1775 482 break;
195d1adf
KR
483#endif
484#ifdef ARCH_h8300
3ae36cb6
PB
485 case bfd_arch_h8300:
486 if (bfd_get_mach(abfd) == bfd_mach_h8300h)
487 disassemble = print_insn_h8300h;
488 else
489 disassemble = print_insn_h8300;
490 break;
195d1adf
KR
491#endif
492#ifdef ARCH_h8500
493 case bfd_arch_h8500:
494 disassemble = print_insn_h8500;
6f575704 495 break;
195d1adf
KR
496#endif
497#ifdef ARCH_hppa
498 case bfd_arch_hppa:
499 disassemble = print_insn_hppa;
aa0a709a 500 break;
195d1adf
KR
501#endif
502#ifdef ARCH_i386
503 case bfd_arch_i386:
504 disassemble = print_insn_i386;
aa0a709a 505 break;
195d1adf
KR
506#endif
507#ifdef ARCH_i960
aa0a709a 508 case bfd_arch_i960:
545a2768 509 disassemble = print_insn_i960;
aa0a709a 510 break;
195d1adf
KR
511#endif
512#ifdef ARCH_m68k
513 case bfd_arch_m68k:
514 disassemble = print_insn_m68k;
515 break;
516#endif
517#ifdef ARCH_m88k
b3a2b497
ILT
518 case bfd_arch_m88k:
519 disassemble = print_insn_m88k;
520 break;
195d1adf
KR
521#endif
522#ifdef ARCH_mips
d9971b83 523 case bfd_arch_mips:
2e8adbd7
PB
524 if (abfd->xvec->byteorder_big_p)
525 disassemble = print_insn_big_mips;
526 else
527 disassemble = print_insn_little_mips;
d9971b83 528 break;
195d1adf 529#endif
eae82145 530#ifdef ARCH_rs6000
722087ec
ILT
531 case bfd_arch_rs6000:
532 disassemble = print_insn_rs6000;
533 break;
534#endif
195d1adf
KR
535#ifdef ARCH_sh
536 case bfd_arch_sh:
537 disassemble = print_insn_sh;
538 break;
539#endif
540#ifdef ARCH_sparc
541 case bfd_arch_sparc:
542 disassemble = print_insn_sparc;
543 break;
544#endif
545#ifdef ARCH_z8k
546 case bfd_arch_z8k:
547 if (bfd_get_mach(abfd) == bfd_mach_z8001)
548 disassemble = print_insn_z8001;
549 else
550 disassemble = print_insn_z8002;
551 break;
552#endif
aa0a709a
SC
553 default:
554 fprintf (stderr, "%s: Can't disassemble for architecture %s\n",
555 program_name,
cef35d48 556 bfd_printable_arch_mach (a, 0));
aa0a709a
SC
557 exit (1);
558 }
2fa0b342 559
aa0a709a 560 }
2fa0b342
DHW
561
562 for (section = abfd->sections;
aa0a709a
SC
563 section != (asection *) NULL;
564 section = section->next)
65cceb78 565 {
cef35d48
DM
566 bfd_byte *data = NULL;
567 bfd_size_type datasize = 0;
2fa0b342 568
cef35d48
DM
569 if (!(section->flags & SEC_LOAD))
570 continue;
571 if (only != (char *) NULL && strcmp (only, section->name) != 0)
572 continue;
2fa0b342 573
cef35d48 574 printf ("Disassembly of section %s:\n", section->name);
2fa0b342 575
cef35d48
DM
576 datasize = bfd_get_section_size_before_reloc (section);
577 if (datasize == 0)
578 continue;
2fa0b342 579
cef35d48 580 data = (bfd_byte *) xmalloc ((size_t) datasize);
2fa0b342 581
cef35d48 582 bfd_get_section_contents (abfd, section, data, 0, datasize);
2fa0b342 583
cef35d48
DM
584 aux.sec = section;
585 disasm_info.buffer = data;
586 disasm_info.buffer_vma = section->vma;
587 disasm_info.buffer_length = datasize;
588 i = 0;
589 while (i < disasm_info.buffer_length)
590 {
591 if (data[i] == 0 && data[i + 1] == 0 && data[i + 2] == 0 &&
592 data[i + 3] == 0)
aa0a709a 593 {
cef35d48 594 if (done_dot == false)
aa0a709a 595 {
cef35d48
DM
596 printf ("...\n");
597 done_dot = true;
65cceb78 598 }
cef35d48
DM
599 i += 4;
600 }
601 else
602 {
603 done_dot = false;
604 if (with_line_numbers)
aa0a709a 605 {
cef35d48
DM
606 CONST char *filename;
607 CONST char *functionname;
608 unsigned int line;
609
610 if (bfd_find_nearest_line (abfd,
611 section,
612 syms,
613 section->vma + i,
614 &filename,
615 &functionname,
616 &line))
aa0a709a 617 {
cef35d48
DM
618 if (functionname && *functionname
619 && strcmp(functionname, prev_function))
620 {
621 printf ("%s():\n", functionname);
622 prev_function = functionname;
623 }
624 if (!filename)
625 filename = "???";
626 if (line && line != prevline)
aa0a709a 627 {
cef35d48
DM
628 printf ("%s:%u\n", filename, line);
629 prevline = line;
aa0a709a
SC
630 }
631 }
cef35d48
DM
632 }
633 objdump_print_address (section->vma + i, &disasm_info);
634 putchar (' ');
65cceb78 635
cef35d48
DM
636 if (disassemble) /* New style */
637 {
638 int bytes = (*disassemble)(section->vma + i,
639 &disasm_info);
640 if (bytes < 0)
641 break;
642 i += bytes;
aa0a709a 643 }
cef35d48
DM
644 else /* Old style */
645 i += print (section->vma + i,
646 data + i,
647 stdout);
648 putchar ('\n');
96d7950b 649 }
96d7950b 650 }
cef35d48 651 free (data);
2fa0b342 652 }
2fa0b342 653}
73b8f102 654\f
73b8f102
JG
655
656/* Define a table of stab values and print-strings. We wish the initializer
657 could be a direct-mapped table, but instead we build one the first
658 time we need it. */
659
fe2750e1 660char **stab_name;
73b8f102
JG
661
662struct stab_print {
663 int value;
fe2750e1 664 char *string;
73b8f102
JG
665};
666
667struct stab_print stab_print[] = {
668#define __define_stab(NAME, CODE, STRING) {CODE, STRING},
669#include "aout/stab.def"
670#undef __define_stab
02a68547 671 {0, ""}
73b8f102
JG
672};
673
9b018ecd 674void dump_stabs_1 ();
249c6fc0 675
9b018ecd 676/* This dumps the stabs section from object files that have a section that
73b8f102
JG
677 uses Sun stabs encoding. It has to use some hooks into BFD because
678 string table sections are not normally visible to BFD callers. */
679
680void
9b018ecd 681dump_stabs (abfd)
73b8f102
JG
682 bfd *abfd;
683{
249c6fc0 684 int i;
73b8f102 685
fe2750e1
SS
686 /* Allocate and initialize stab name array if first time. */
687 if (stab_name == NULL)
73b8f102 688 {
fe2750e1
SS
689 stab_name = (char **) xmalloc (256 * sizeof(char *));
690 /* Clear the array. */
73b8f102 691 for (i = 0; i < 256; i++)
fe2750e1
SS
692 stab_name[i] = NULL;
693 /* Fill in the defined stabs. */
694 for (i = 0; *stab_print[i].string; i++)
695 stab_name[stab_print[i].value] = stab_print[i].string;
73b8f102
JG
696 }
697
9b018ecd
ILT
698 dump_stabs_1 (abfd, ".stab", ".stabstr");
699 dump_stabs_1 (abfd, ".stab.excl", ".stab.exclstr");
700 dump_stabs_1 (abfd, ".stab.index", ".stab.indexstr");
02a68547 701 dump_stabs_1 (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
249c6fc0
RS
702}
703
704void
9b018ecd 705dump_stabs_1 (abfd, name1, name2)
249c6fc0
RS
706 bfd *abfd;
707 char *name1; /* Section name of .stab */
708 char *name2; /* Section name of its string section */
709{
d086adf8 710 Elf_Internal_Shdr *stab_hdr, *stabstr_hdr;
9b018ecd 711 asection *stabsect, *stabstrsect;
249c6fc0
RS
712 char *strtab;
713 struct internal_nlist *stabs, *stabs_end;
714 int i;
9b018ecd 715 int stab_size, stabstr_size;
249c6fc0 716 unsigned file_string_table_offset, next_file_string_table_offset;
9b018ecd
ILT
717 int is_elf = (0 == strncmp ("elf", abfd->xvec->name, 3));
718
719 if (is_elf)
720 {
721 stab_hdr = bfd_elf_find_section (abfd, name1);
722 }
723 else
724 {
725 stabsect = bfd_get_section_by_name (abfd, name1);
726 }
249c6fc0 727
9b018ecd 728 if (is_elf ? (0 == stab_hdr) : (0 == stabsect))
73b8f102 729 {
9b018ecd 730 printf ("No %s section present.\n\n", name1);
73b8f102
JG
731 return;
732 }
733
9b018ecd
ILT
734 if (is_elf)
735 {
736 stabstr_hdr = bfd_elf_find_section (abfd, name2);
737 }
738 else
739 {
740 stabstrsect = bfd_get_section_by_name (abfd, name2);
741 }
742
743 if (is_elf ? (0 == stabstr_hdr) : (0 == stabstrsect))
73b8f102 744 {
eae82145 745 fprintf (stderr, "%s: %s has no %s section\n", program_name,
cef35d48 746 bfd_get_filename (abfd), name2);
73b8f102
JG
747 return;
748 }
9b018ecd
ILT
749
750 stab_size = (is_elf ? stab_hdr ->sh_size : bfd_section_size (abfd, stabsect));
751 stabstr_size = (is_elf ? stabstr_hdr->sh_size : bfd_section_size (abfd, stabstrsect));
73b8f102 752
9b018ecd
ILT
753 stabs = (struct internal_nlist *) xmalloc (stab_size);
754 strtab = (char *) xmalloc (stabstr_size);
755 stabs_end = (struct internal_nlist *) (stab_size + (char *) stabs);
73b8f102 756
9b018ecd 757 if (is_elf)
73b8f102 758 {
9b018ecd
ILT
759 if (bfd_seek (abfd, stab_hdr->sh_offset, SEEK_SET) < 0 ||
760 stab_size != bfd_read ((PTR) stabs, stab_size, 1, abfd))
761 {
eae82145 762 fprintf (stderr, "%s: Reading %s section of %s failed\n",
9b018ecd 763 program_name, name1,
cef35d48 764 bfd_get_filename (abfd));
9b018ecd
ILT
765 return;
766 }
767 }
768 else
769 {
770 bfd_get_section_contents (abfd, stabsect, (PTR) stabs, 0, stab_size);
73b8f102 771 }
2fa0b342 772
9b018ecd 773 if (is_elf)
73b8f102 774 {
9b018ecd
ILT
775 if (bfd_seek (abfd, stabstr_hdr->sh_offset, SEEK_SET) < 0 ||
776 stabstr_size != bfd_read ((PTR) strtab, stabstr_size, 1, abfd))
777 {
eae82145 778 fprintf (stderr, "%s: Reading %s section of %s failed\n",
9b018ecd 779 program_name, name2,
cef35d48 780 bfd_get_filename (abfd));
9b018ecd
ILT
781 return;
782 }
783 }
784 else
785 {
786 bfd_get_section_contents (abfd, stabstrsect, (PTR) strtab, 0, stabstr_size);
73b8f102
JG
787 }
788
789#define SWAP_SYMBOL(symp, abfd) \
790 { \
791 (symp)->n_strx = bfd_h_get_32(abfd, \
792 (unsigned char *)&(symp)->n_strx); \
793 (symp)->n_desc = bfd_h_get_16 (abfd, \
794 (unsigned char *)&(symp)->n_desc); \
795 (symp)->n_value = bfd_h_get_32 (abfd, \
796 (unsigned char *)&(symp)->n_value); \
797 }
798
249c6fc0 799 printf ("Contents of %s section:\n\n", name1);
73b8f102
JG
800 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
801
249c6fc0
RS
802 file_string_table_offset = 0;
803 next_file_string_table_offset = 0;
804
805 /* Loop through all symbols and print them.
806
807 We start the index at -1 because there is a dummy symbol on
e1ec9f07 808 the front of stabs-in-{coff,elf} sections that supplies sizes. */
249c6fc0 809
73b8f102
JG
810 for (i = -1; stabs < stabs_end; stabs++, i++)
811 {
812 SWAP_SYMBOL (stabs, abfd);
fe2750e1
SS
813 printf ("\n%-6d ", i);
814 /* Print either the stab name, or, if unnamed, print its number
815 again (makes consistent formatting for tools like awk). */
816 if (stab_name[stabs->n_type])
817 printf ("%-6s", stab_name[stabs->n_type]);
818 else
819 printf ("%-6d", i);
820 printf (" %-6d %-6d ", stabs->n_other, stabs->n_desc);
02a68547
ILT
821 printf_vma (stabs->n_value);
822 printf (" %-6lu", stabs->n_strx);
249c6fc0
RS
823
824 /* Symbols with type == 0 (N_UNDF) specify the length of the
825 string table associated with this file. We use that info
826 to know how to relocate the *next* file's string table indices. */
827
828 if (stabs->n_type == N_UNDF)
829 {
830 file_string_table_offset = next_file_string_table_offset;
831 next_file_string_table_offset += stabs->n_value;
832 }
249c6fc0 833 else
e1ec9f07
SS
834 {
835 /* Now, using the possibly updated string table offset, print the
836 string (if any) associated with this symbol. */
837
838 if ((stabs->n_strx + file_string_table_offset) < stabstr_size)
839 printf (" %s", &strtab[stabs->n_strx + file_string_table_offset]);
840 else
841 printf (" *");
842 }
73b8f102
JG
843 }
844 printf ("\n\n");
845}
249c6fc0 846
eae82145 847static void
f7b839f7
DM
848dump_bfd_header (abfd)
849 bfd *abfd;
850{
851 char *comma = "";
852
853 printf ("architecture: %s, ",
854 bfd_printable_arch_mach (bfd_get_arch (abfd),
855 bfd_get_mach (abfd)));
856 printf ("flags 0x%08x:\n", abfd->flags);
857
858#define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
859 PF (HAS_RELOC, "HAS_RELOC");
860 PF (EXEC_P, "EXEC_P");
861 PF (HAS_LINENO, "HAS_LINENO");
862 PF (HAS_DEBUG, "HAS_DEBUG");
863 PF (HAS_SYMS, "HAS_SYMS");
864 PF (HAS_LOCALS, "HAS_LOCALS");
865 PF (DYNAMIC, "DYNAMIC");
866 PF (WP_TEXT, "WP_TEXT");
867 PF (D_PAGED, "D_PAGED");
868 PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE");
869 printf ("\nstart address 0x");
870 printf_vma (abfd->start_address);
871}
872
02a68547 873static void
2fa0b342
DHW
874display_bfd (abfd)
875 bfd *abfd;
876{
209e5610
DM
877 char **matching;
878
879 if (!bfd_check_format_matches (abfd, bfd_object, &matching))
aa0a709a 880 {
cef35d48 881 bfd_nonfatal (bfd_get_filename (abfd));
eae82145 882 if (bfd_error == file_ambiguously_recognized)
209e5610
DM
883 {
884 list_matching_formats (matching);
885 free (matching);
886 }
aa0a709a
SC
887 return;
888 }
f7b839f7 889
cef35d48
DM
890 printf ("\n%s: file format %s\n", bfd_get_filename (abfd),
891 abfd->xvec->name);
aa0a709a
SC
892 if (dump_ar_hdrs)
893 print_arelt_descr (stdout, abfd, true);
aa0a709a 894 if (dump_file_header)
f7b839f7
DM
895 dump_bfd_header (abfd);
896 putchar ('\n');
2fa0b342 897 if (dump_section_headers)
aa0a709a
SC
898 dump_headers (abfd);
899 if (dump_symtab || dump_reloc_info || disassemble)
900 {
901 syms = slurp_symtab (abfd);
902 }
903 if (dump_symtab)
904 dump_symbols (abfd);
73b8f102 905 if (dump_stab_section_info)
9b018ecd 906 dump_stabs (abfd);
aa0a709a
SC
907 if (dump_reloc_info)
908 dump_relocs (abfd);
909 if (dump_section_contents)
910 dump_data (abfd);
3ae36cb6
PB
911 /* Note that disassemble_data re-orders the syms table, but that is
912 safe - as long as it is done last! */
aa0a709a
SC
913 if (disassemble)
914 disassemble_data (abfd);
2fa0b342
DHW
915}
916
d9971b83 917static void
2fa0b342
DHW
918display_file (filename, target)
919 char *filename;
920 char *target;
921{
922 bfd *file, *arfile = (bfd *) NULL;
923
924 file = bfd_openr (filename, target);
aa0a709a
SC
925 if (file == NULL)
926 {
cef35d48 927 bfd_nonfatal (filename);
aa0a709a
SC
928 return;
929 }
2fa0b342 930
aa0a709a
SC
931 if (bfd_check_format (file, bfd_archive) == true)
932 {
933 printf ("In archive %s:\n", bfd_get_filename (file));
934 for (;;)
935 {
936 bfd_error = no_error;
937
938 arfile = bfd_openr_next_archived_file (file, arfile);
939 if (arfile == NULL)
940 {
941 if (bfd_error != no_more_archived_files)
d2442698 942 {
cef35d48 943 bfd_nonfatal (bfd_get_filename (file));
d2442698 944 }
aa0a709a
SC
945 return;
946 }
2fa0b342 947
aa0a709a
SC
948 display_bfd (arfile);
949 /* Don't close the archive elements; we need them for next_archive */
950 }
2fa0b342 951 }
2fa0b342 952 else
aa0a709a 953 display_bfd (file);
2fa0b342 954
aa0a709a 955 bfd_close (file);
2fa0b342
DHW
956}
957\f
958/* Actually display the various requested regions */
959
d9971b83 960static void
2fa0b342
DHW
961dump_data (abfd)
962 bfd *abfd;
963{
964 asection *section;
aa0a709a 965 bfd_byte *data = 0;
fc5d6074
SC
966 bfd_size_type datasize = 0;
967 bfd_size_type i;
2fa0b342
DHW
968
969 for (section = abfd->sections; section != NULL; section =
aa0a709a
SC
970 section->next)
971 {
972 int onaline = 16;
2fa0b342 973
aa0a709a
SC
974 if (only == (char *) NULL ||
975 strcmp (only, section->name) == 0)
60c80016 976 {
aa0a709a
SC
977 if (section->flags & SEC_HAS_CONTENTS)
978 {
979 printf ("Contents of section %s:\n", section->name);
980
9b018ecd 981 if (bfd_section_size (abfd, section) == 0)
aa0a709a 982 continue;
02a68547 983 data = (bfd_byte *) xmalloc ((size_t) bfd_section_size (abfd, section));
9b018ecd 984 datasize = bfd_section_size (abfd, section);
2fa0b342 985
2fa0b342 986
9b018ecd 987 bfd_get_section_contents (abfd, section, (PTR) data, 0, bfd_section_size (abfd, section));
2fa0b342 988
9b018ecd 989 for (i = 0; i < bfd_section_size (abfd, section); i += onaline)
aa0a709a
SC
990 {
991 bfd_size_type j;
992
993 printf (" %04lx ", (unsigned long int) (i + section->vma));
994 for (j = i; j < i + onaline; j++)
995 {
9b018ecd 996 if (j < bfd_section_size (abfd, section))
aa0a709a
SC
997 printf ("%02x", (unsigned) (data[j]));
998 else
999 printf (" ");
1000 if ((j & 3) == 3)
1001 printf (" ");
1002 }
2fa0b342 1003
aa0a709a
SC
1004 printf (" ");
1005 for (j = i; j < i + onaline; j++)
1006 {
9b018ecd 1007 if (j >= bfd_section_size (abfd, section))
aa0a709a
SC
1008 printf (" ");
1009 else
1010 printf ("%c", isprint (data[j]) ? data[j] : '.');
1011 }
1012 putchar ('\n');
1013 }
d9971b83 1014 free (data);
60c80016 1015 }
2fa0b342 1016 }
2fa0b342 1017 }
2fa0b342
DHW
1018}
1019
2fa0b342 1020/* Should perhaps share code and display with nm? */
d9971b83 1021static void
2fa0b342
DHW
1022dump_symbols (abfd)
1023 bfd *abfd;
1024{
1025
1026 unsigned int count;
1027 asymbol **current = syms;
2fa0b342 1028
aa0a709a 1029 printf ("SYMBOL TABLE:\n");
e779a58c 1030
aa0a709a
SC
1031 for (count = 0; count < symcount; count++)
1032 {
2fa0b342 1033
d9971b83 1034 if (*current)
aa0a709a 1035 {
d9971b83
KR
1036 bfd *cur_bfd = bfd_asymbol_bfd(*current);
1037 if (cur_bfd)
1038 {
1039 bfd_print_symbol (cur_bfd,
1040 stdout,
1041 *current, bfd_print_symbol_all);
1042 printf ("\n");
1043 }
aa0a709a
SC
1044
1045 }
1046 current++;
2fa0b342 1047 }
aa0a709a
SC
1048 printf ("\n");
1049 printf ("\n");
2fa0b342
DHW
1050}
1051
d9971b83 1052static void
aa0a709a
SC
1053dump_relocs (abfd)
1054 bfd *abfd;
2fa0b342
DHW
1055{
1056 arelent **relpp;
1057 unsigned int relcount;
1058 asection *a;
aa0a709a
SC
1059
1060 for (a = abfd->sections; a != (asection *) NULL; a = a->next)
1061 {
1062 if (a == &bfd_abs_section)
1063 continue;
1064 if (a == &bfd_und_section)
1065 continue;
d9971b83 1066 if (bfd_is_com_section (a))
aa0a709a
SC
1067 continue;
1068
195d1adf
KR
1069 if (only)
1070 {
1071 if (strcmp (only, a->name))
1072 continue;
1073 }
1074 else if ((a->flags & SEC_RELOC) == 0)
1075 continue;
1076
aa0a709a
SC
1077 printf ("RELOCATION RECORDS FOR [%s]:", a->name);
1078
1079 if (bfd_get_reloc_upper_bound (abfd, a) == 0)
1080 {
1081 printf (" (none)\n\n");
d20f480f 1082 }
aa0a709a
SC
1083 else
1084 {
d20f480f
SC
1085 arelent **p;
1086
aa0a709a 1087 relpp = (arelent **) xmalloc (bfd_get_reloc_upper_bound (abfd, a));
3ae36cb6 1088 /* Note that this must be done *before* we sort the syms table. */
aa0a709a
SC
1089 relcount = bfd_canonicalize_reloc (abfd, a, relpp, syms);
1090 if (relcount == 0)
1091 {
1092 printf (" (none)\n\n");
d20f480f 1093 }
aa0a709a
SC
1094 else
1095 {
1096 printf ("\n");
195d1adf
KR
1097 /* Get column headers lined up reasonably. */
1098 {
1099 static int width;
1100 if (width == 0)
1101 {
1102 char buf[30];
1103 sprintf_vma (buf, (bfd_vma) -1);
1104 width = strlen (buf) - 7;
1105 }
1106 printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
1107 }
d20f480f 1108
aa0a709a
SC
1109 for (p = relpp; relcount && *p != (arelent *) NULL; p++,
1110 relcount--)
1111 {
d20f480f
SC
1112 arelent *q = *p;
1113 CONST char *sym_name;
02a68547 1114 CONST char *section_name;
aa0a709a
SC
1115
1116 if (q->sym_ptr_ptr && *q->sym_ptr_ptr)
1117 {
1118 sym_name = (*(q->sym_ptr_ptr))->name;
02a68547 1119 section_name = (*(q->sym_ptr_ptr))->section->name;
d20f480f 1120 }
aa0a709a
SC
1121 else
1122 {
02a68547
ILT
1123 sym_name = NULL;
1124 section_name = NULL;
d20f480f 1125 }
aa0a709a
SC
1126 if (sym_name)
1127 {
1128 printf_vma (q->address);
195d1adf 1129 printf (" %-16s %s",
aa0a709a
SC
1130 q->howto->name,
1131 sym_name);
d20f480f 1132 }
aa0a709a
SC
1133 else
1134 {
02a68547
ILT
1135 if (section_name == (CONST char *) NULL)
1136 section_name = "*unknown*";
aa0a709a 1137 printf_vma (q->address);
195d1adf 1138 printf (" %-16s [%s]",
aa0a709a
SC
1139 q->howto->name,
1140 section_name);
d20f480f 1141 }
aa0a709a
SC
1142 if (q->addend)
1143 {
1144 printf ("+0x");
1145 printf_vma (q->addend);
d20f480f 1146 }
aa0a709a 1147 printf ("\n");
d20f480f 1148 }
aa0a709a
SC
1149 printf ("\n\n");
1150 free (relpp);
d20f480f 1151 }
2fa0b342 1152 }
2fa0b342 1153
d20f480f 1154 }
2fa0b342 1155}
f7b839f7
DM
1156\f
1157/* A file to open each BFD on. It will never actually be written to. */
aa0a709a
SC
1158#ifdef unix
1159#define _DUMMY_NAME_ "/dev/null"
1160#else
1161#define _DUMMY_NAME_ "##dummy"
1162#endif
f7b839f7
DM
1163
1164/* The length of the longest architecture name + 1. */
1165#define LONGEST_ARCH sizeof("rs6000:6000")
1166
1167/* List the targets that BFD is configured to support, each followed
1168 by its endianness and the architectures it supports. */
1169
1170static void
1171display_target_list ()
1172{
1173 extern bfd_target *bfd_target_vector[];
1174 int t;
1175
1176 for (t = 0; bfd_target_vector[t]; t++)
1177 {
1178 int a;
1179 bfd_target *p = bfd_target_vector[t];
1180 bfd *abfd = bfd_openw (_DUMMY_NAME_, p->name);
1181
334d6e76
SS
1182 /* It *is* possible that bfd_openw might fail; avoid the
1183 tragic consequences that would otherwise ensue. */
1184 if (abfd == NULL)
1185 {
cef35d48 1186 bfd_nonfatal (_DUMMY_NAME_);
334d6e76
SS
1187 return;
1188 }
f7b839f7
DM
1189 bfd_set_format (abfd, bfd_object);
1190 printf ("%s\n (header %s, data %s)\n", p->name,
1191 p->header_byteorder_big_p ? "big endian" : "little endian",
1192 p->byteorder_big_p ? "big endian" : "little endian");
1193 for (a = (int) bfd_arch_obscure + 1; a < (int) bfd_arch_last; a++)
1194 if (bfd_set_arch_mach (abfd, (enum bfd_architecture) a, 0))
1195 printf (" %s\n",
1196 bfd_printable_arch_mach ((enum bfd_architecture) a, 0));
1197 }
1198}
1199
1200/* Print a table showing which architectures are supported for entries
1201 FIRST through LAST-1 of bfd_target_vector (targets across,
1202 architectures down). */
1203
9872a49c 1204static void
abdcac0f
DM
1205display_info_table (first, last)
1206 int first;
1207 int last;
9872a49c 1208{
f7b839f7 1209 int t, a;
abdcac0f 1210 extern bfd_target *bfd_target_vector[];
9872a49c 1211
f7b839f7
DM
1212 /* Print heading of target names. */
1213 printf ("\n%*s", LONGEST_ARCH, " ");
1214 for (t = first; t++ < last && bfd_target_vector[t];)
1215 printf ("%s ", bfd_target_vector[t]->name);
1216 putchar ('\n');
9872a49c 1217
f7b839f7
DM
1218 for (a = (int) bfd_arch_obscure + 1; a < (int) bfd_arch_last; a++)
1219 if (strcmp (bfd_printable_arch_mach (a, 0), "UNKNOWN!") != 0)
e779a58c 1220 {
f7b839f7
DM
1221 printf ("%*s ", LONGEST_ARCH - 1, bfd_printable_arch_mach (a, 0));
1222 for (t = first; t++ < last && bfd_target_vector[t];)
aa0a709a 1223 {
f7b839f7 1224 bfd_target *p = bfd_target_vector[t];
aa0a709a 1225 bfd *abfd = bfd_openw (_DUMMY_NAME_, p->name);
aa0a709a 1226
334d6e76
SS
1227 /* Just in case the open failed somehow. */
1228 if (abfd == NULL)
1229 {
cef35d48 1230 bfd_nonfatal (_DUMMY_NAME_);
334d6e76
SS
1231 return;
1232 }
f7b839f7
DM
1233 bfd_set_format (abfd, bfd_object);
1234 if (bfd_set_arch_mach (abfd, a, 0))
aa0a709a
SC
1235 printf ("%s ", p->name);
1236 else
e779a58c 1237 {
f7b839f7 1238 int l = strlen (p->name);
aa0a709a 1239 while (l--)
f7b839f7
DM
1240 putchar ('-');
1241 putchar (' ');
e779a58c 1242 }
e779a58c 1243 }
f7b839f7 1244 putchar ('\n');
e779a58c 1245 }
9872a49c 1246}
aa0a709a 1247
f7b839f7
DM
1248/* Print tables of all the target-architecture combinations that
1249 BFD has been configured to support. */
1250
aa0a709a 1251static void
f7b839f7 1252display_target_tables ()
aa0a709a 1253{
f7b839f7 1254 int t, columns;
abdcac0f 1255 extern bfd_target *bfd_target_vector[];
f7b839f7 1256 char *colum;
aa0a709a
SC
1257 extern char *getenv ();
1258
aa0a709a 1259 columns = 0;
f7b839f7
DM
1260 colum = getenv ("COLUMNS");
1261 if (colum != NULL)
aa0a709a 1262 columns = atoi (colum);
f7b839f7 1263 if (columns == 0)
aa0a709a 1264 columns = 80;
f7b839f7
DM
1265
1266 for (t = 0; bfd_target_vector[t];)
aa0a709a 1267 {
f7b839f7
DM
1268 int oldt = t, wid;
1269
1270 for (wid = LONGEST_ARCH; bfd_target_vector[t] && wid < columns; t++)
1271 wid += strlen (bfd_target_vector[t]->name) + 1;
1272 t--;
1273 if (oldt == t)
aa0a709a 1274 break;
f7b839f7 1275 display_info_table (oldt, t);
aa0a709a
SC
1276 }
1277}
1278
f7b839f7
DM
1279static void
1280display_info ()
1281{
1282 printf ("BFD header file version %s\n", BFD_VERSION);
1283 display_target_list ();
1284 display_target_tables ();
1285}
1286
2fa0b342
DHW
1287int
1288main (argc, argv)
1289 int argc;
1290 char **argv;
1291{
1292 int c;
2fa0b342
DHW
1293 char *target = default_target;
1294 boolean seenflag = false;
2fa0b342 1295
aa0a709a 1296 bfd_init ();
2fa0b342
DHW
1297 program_name = *argv;
1298
d2442698
DM
1299 while ((c = getopt_long (argc, argv, "ib:m:Vdlfahrtxsj:", long_options,
1300 (int *) 0))
aa0a709a
SC
1301 != EOF)
1302 {
1303 seenflag = true;
1304 switch (c)
1305 {
b3a2b497
ILT
1306 case 0:
1307 break; /* we've been given a long option */
aa0a709a
SC
1308 case 'm':
1309 machine = optarg;
1310 break;
1311 case 'j':
1312 only = optarg;
1313 break;
1314 case 'l':
1315 with_line_numbers = 1;
1316 break;
1317 case 'b':
1318 target = optarg;
1319 break;
1320 case 'f':
1321 dump_file_header = true;
1322 break;
1323 case 'i':
e1ec9f07 1324 formats_info = true;
aa0a709a
SC
1325 break;
1326 case 'x':
1327 dump_symtab = 1;
1328 dump_reloc_info = 1;
1329 dump_file_header = true;
1330 dump_ar_hdrs = 1;
1331 dump_section_headers = 1;
1332 break;
aa0a709a
SC
1333 case 't':
1334 dump_symtab = 1;
1335 break;
1336 case 'd':
1337 disassemble = true;
1338 break;
1339 case 's':
1340 dump_section_contents = 1;
1341 break;
1342 case 'r':
1343 dump_reloc_info = 1;
1344 break;
1345 case 'a':
1346 dump_ar_hdrs = 1;
1347 break;
1348 case 'h':
1349 dump_section_headers = 1;
1350 break;
b3a2b497
ILT
1351 case 'H':
1352 usage (stdout, 0);
249c6fc0
RS
1353 case 'V':
1354 show_version = 1;
1355 break;
aa0a709a 1356 default:
b3a2b497 1357 usage (stderr, 1);
aa0a709a 1358 }
2fa0b342 1359 }
2fa0b342 1360
249c6fc0 1361 if (show_version)
b3a2b497
ILT
1362 {
1363 printf ("GNU %s version %s\n", program_name, program_version);
1364 exit (0);
1365 }
249c6fc0 1366
2fa0b342 1367 if (seenflag == false)
b3a2b497 1368 usage (stderr, 1);
2fa0b342 1369
e1ec9f07 1370 if (formats_info)
aa0a709a
SC
1371 {
1372 display_info ();
1373 }
1374 else
1375 {
1376 if (optind == argc)
1377 display_file ("a.out", target);
1378 else
1379 for (; optind < argc;)
1380 display_file (argv[optind++], target);
1381 }
2fa0b342
DHW
1382 return 0;
1383}
This page took 0.1692 seconds and 4 git commands to generate.