]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/objdump.c
2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
[thirdparty/binutils-gdb.git] / binutils / objdump.c
CommitLineData
252b5132 1/* objdump.c -- dump information about an object file.
8c2bc687 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
9210d879 3 2000, 2001, 2002, 2003, 2004, 2005
252b5132
RH
4 Free Software Foundation, Inc.
5
b5e2a4f3 6 This file is part of GNU Binutils.
252b5132 7
b5e2a4f3
NC
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
252b5132 12
b5e2a4f3
NC
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
252b5132 17
b5e2a4f3
NC
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
b43b5d5f 20 Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132 21
155e0d23
NC
22/* Objdump overview.
23
24 Objdump displays information about one or more object files, either on
25 their own, or inside libraries. It is commonly used as a disassembler,
26 but it can also display information about file headers, symbol tables,
27 relocations, debugging directives and more.
28
29 The flow of execution is as follows:
30
31 1. Command line arguments are checked for control switches and the
32 information to be displayed is selected.
33
34 2. Any remaining arguments are assumed to be object files, and they are
35 processed in order by display_bfd(). If the file is an archive each
36 of its elements is processed in turn.
37
50c2245b 38 3. The file's target architecture and binary file format are determined
155e0d23
NC
39 by bfd_check_format(). If they are recognised, then dump_bfd() is
40 called.
41
50c2245b
KH
42 4. dump_bfd() in turn calls separate functions to display the requested
43 item(s) of information(s). For example disassemble_data() is called if
aaad4cf3 44 a disassembly has been requested.
155e0d23
NC
45
46 When disassembling the code loops through blocks of instructions bounded
50c2245b 47 by symbols, calling disassemble_bytes() on each block. The actual
155e0d23
NC
48 disassembling is done by the libopcodes library, via a function pointer
49 supplied by the disassembler() function. */
50
252b5132 51#include "bfd.h"
6e1a7e9a 52#include "bfdver.h"
252b5132
RH
53#include "progress.h"
54#include "bucomm.h"
a6637ec0 55#include "budemang.h"
d7a283d4 56#include "getopt.h"
3882b010 57#include "safe-ctype.h"
252b5132
RH
58#include "dis-asm.h"
59#include "libiberty.h"
60#include "demangle.h"
61#include "debug.h"
62#include "budbg.h"
63
252b5132
RH
64/* Internal headers for the ELF .stab-dump code - sorry. */
65#define BYTES_IN_WORD 32
66#include "aout/aout64.h"
67
398ee8f1 68#if !HAVE_DECL_FPRINTF
92c2346c 69/* This is needed by init_disassemble_info(). */
fd7bb956 70extern int fprintf (FILE *, const char *, ...);
252b5132
RH
71#endif
72
75cd796a
ILT
73/* Exit status. */
74static int exit_status = 0;
75
98a91d6a 76static char *default_target = NULL; /* Default at runtime. */
252b5132 77
3b9ad1cc
AM
78/* The following variables are set based on arguments passed on the
79 command line. */
98a91d6a 80static int show_version = 0; /* Show the version number. */
252b5132
RH
81static int dump_section_contents; /* -s */
82static int dump_section_headers; /* -h */
b34976b6 83static bfd_boolean dump_file_header; /* -f */
252b5132
RH
84static int dump_symtab; /* -t */
85static int dump_dynamic_symtab; /* -T */
86static int dump_reloc_info; /* -r */
87static int dump_dynamic_reloc_info; /* -R */
88static int dump_ar_hdrs; /* -a */
89static int dump_private_headers; /* -p */
90static int prefix_addresses; /* --prefix-addresses */
91static int with_line_numbers; /* -l */
b34976b6 92static bfd_boolean with_source_code; /* -S */
252b5132
RH
93static int show_raw_insn; /* --show-raw-insn */
94static int dump_stab_section_info; /* --stabs */
95static int do_demangle; /* -C, --demangle */
b34976b6
AM
96static bfd_boolean disassemble; /* -d */
97static bfd_boolean disassemble_all; /* -D */
252b5132 98static int disassemble_zeroes; /* --disassemble-zeroes */
b34976b6 99static bfd_boolean formats_info; /* -i */
252b5132
RH
100static int wide_output; /* -w */
101static bfd_vma start_address = (bfd_vma) -1; /* --start-address */
102static bfd_vma stop_address = (bfd_vma) -1; /* --stop-address */
103static int dump_debugging; /* --debugging */
51cdc6e0 104static int dump_debugging_tags; /* --debugging-tags */
3c9458e9 105static int dump_special_syms = 0; /* --special-syms */
252b5132 106static bfd_vma adjust_section_vma = 0; /* --adjust-vma */
f1563258 107static int file_start_context = 0; /* --file-start-context */
252b5132 108
155e0d23
NC
109/* Pointer to an array of section names provided by
110 one or more "-j secname" command line options. */
111static char **only;
112/* The total number of slots in the only[] array. */
113static size_t only_size = 0;
114/* The number of occupied slots in the only[] array. */
115static size_t only_used = 0;
116
43ac9881
AM
117/* Variables for handling include file path table. */
118static const char **include_paths;
119static int include_path_count;
120
3b9ad1cc
AM
121/* Extra info to pass to the section disassembler and address printing
122 function. */
026df7c5
NC
123struct objdump_disasm_info
124{
155e0d23
NC
125 bfd * abfd;
126 asection * sec;
127 bfd_boolean require_sec;
128 arelent ** dynrelbuf;
129 long dynrelcount;
130 disassembler_ftype disassemble_fn;
ce04548a
NC
131#ifdef DISASSEMBLER_NEEDS_RELOCS
132 arelent * reloc;
133#endif
252b5132
RH
134};
135
136/* Architecture to disassemble for, or default if NULL. */
d3ba0551 137static char *machine = NULL;
252b5132 138
dd92f639 139/* Target specific options to the disassembler. */
d3ba0551 140static char *disassembler_options = NULL;
dd92f639 141
252b5132
RH
142/* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
143static enum bfd_endian endian = BFD_ENDIAN_UNKNOWN;
144
145/* The symbol table. */
146static asymbol **syms;
147
148/* Number of symbols in `syms'. */
149static long symcount = 0;
150
151/* The sorted symbol table. */
152static asymbol **sorted_syms;
153
154/* Number of symbols in `sorted_syms'. */
155static long sorted_symcount = 0;
156
157/* The dynamic symbol table. */
158static asymbol **dynsyms;
159
4c45e5c9
JJ
160/* The synthetic symbol table. */
161static asymbol *synthsyms;
162static long synthcount = 0;
163
252b5132
RH
164/* Number of symbols in `dynsyms'. */
165static long dynsymcount = 0;
166
98a91d6a
NC
167static bfd_byte *stabs;
168static bfd_size_type stab_size;
169
170static char *strtab;
171static bfd_size_type stabstr_size;
252b5132
RH
172\f
173static void
46dca2e0 174usage (FILE *stream, int status)
252b5132 175{
8b53311e
NC
176 fprintf (stream, _("Usage: %s <option(s)> <file(s)>\n"), program_name);
177 fprintf (stream, _(" Display information from object <file(s)>.\n"));
178 fprintf (stream, _(" At least one of the following switches must be given:\n"));
252b5132 179 fprintf (stream, _("\
86d65c94
MK
180 -a, --archive-headers Display archive header information\n\
181 -f, --file-headers Display the contents of the overall file header\n\
182 -p, --private-headers Display object format specific file header contents\n\
183 -h, --[section-]headers Display the contents of the section headers\n\
184 -x, --all-headers Display the contents of all headers\n\
185 -d, --disassemble Display assembler contents of executable sections\n\
186 -D, --disassemble-all Display assembler contents of all sections\n\
187 -S, --source Intermix source code with disassembly\n\
188 -s, --full-contents Display the full contents of all sections requested\n\
189 -g, --debugging Display debug information in object file\n\
51cdc6e0 190 -e, --debugging-tags Display debug information using ctags style\n\
86d65c94
MK
191 -G, --stabs Display (in raw form) any STABS info in the file\n\
192 -t, --syms Display the contents of the symbol table(s)\n\
193 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
194 -r, --reloc Display the relocation entries in the file\n\
195 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
8b53311e 196 -v, --version Display this program's version number\n\
86d65c94
MK
197 -i, --info List object formats and architectures supported\n\
198 -H, --help Display this information\n\
1dada9c5
NC
199"));
200 if (status != 2)
201 {
202 fprintf (stream, _("\n The following switches are optional:\n"));
203 fprintf (stream, _("\
86d65c94
MK
204 -b, --target=BFDNAME Specify the target object format as BFDNAME\n\
205 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n\
206 -j, --section=NAME Only display information for section NAME\n\
207 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n\
1dada9c5
NC
208 -EB --endian=big Assume big endian format when disassembling\n\
209 -EL --endian=little Assume little endian format when disassembling\n\
f1563258 210 --file-start-context Include context from start of file (with -S)\n\
43ac9881 211 -I, --include=DIR Add DIR to search list for source files\n\
86d65c94 212 -l, --line-numbers Include line numbers and filenames in output\n\
28c309a2 213 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
f0c8c24a
NC
214 The STYLE, if specified, can be `auto', `gnu',\n\
215 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
216 or `gnat'\n\
86d65c94
MK
217 -w, --wide Format output for more than 80 columns\n\
218 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
f0c8c24a
NC
219 --start-address=ADDR Only process data whose address is >= ADDR\n\
220 --stop-address=ADDR Only process data whose address is <= ADDR\n\
1dada9c5
NC
221 --prefix-addresses Print complete address alongside disassembly\n\
222 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
86d65c94 223 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
3c9458e9 224 --special-syms Include special symbols in symbol dumps\n\
1dada9c5
NC
225\n"));
226 list_supported_targets (program_name, stream);
2f83960e 227 list_supported_architectures (program_name, stream);
86d65c94 228
94470b23 229 disassembler_usage (stream);
1dada9c5 230 }
252b5132 231 if (status == 0)
86d65c94 232 fprintf (stream, _("Report bugs to %s.\n"), REPORT_BUGS_TO);
252b5132
RH
233 exit (status);
234}
235
236/* 150 isn't special; it's just an arbitrary non-ASCII char value. */
46dca2e0
NC
237enum option_values
238 {
239 OPTION_ENDIAN=150,
240 OPTION_START_ADDRESS,
241 OPTION_STOP_ADDRESS,
242 OPTION_ADJUST_VMA
243 };
252b5132
RH
244
245static struct option long_options[]=
246{
247 {"adjust-vma", required_argument, NULL, OPTION_ADJUST_VMA},
248 {"all-headers", no_argument, NULL, 'x'},
249 {"private-headers", no_argument, NULL, 'p'},
250 {"architecture", required_argument, NULL, 'm'},
251 {"archive-headers", no_argument, NULL, 'a'},
1dada9c5 252 {"debugging", no_argument, NULL, 'g'},
51cdc6e0 253 {"debugging-tags", no_argument, NULL, 'e'},
28c309a2 254 {"demangle", optional_argument, NULL, 'C'},
252b5132
RH
255 {"disassemble", no_argument, NULL, 'd'},
256 {"disassemble-all", no_argument, NULL, 'D'},
dd92f639 257 {"disassembler-options", required_argument, NULL, 'M'},
1dada9c5 258 {"disassemble-zeroes", no_argument, NULL, 'z'},
252b5132
RH
259 {"dynamic-reloc", no_argument, NULL, 'R'},
260 {"dynamic-syms", no_argument, NULL, 'T'},
261 {"endian", required_argument, NULL, OPTION_ENDIAN},
262 {"file-headers", no_argument, NULL, 'f'},
f1563258 263 {"file-start-context", no_argument, &file_start_context, 1},
252b5132
RH
264 {"full-contents", no_argument, NULL, 's'},
265 {"headers", no_argument, NULL, 'h'},
266 {"help", no_argument, NULL, 'H'},
267 {"info", no_argument, NULL, 'i'},
268 {"line-numbers", no_argument, NULL, 'l'},
269 {"no-show-raw-insn", no_argument, &show_raw_insn, -1},
270 {"prefix-addresses", no_argument, &prefix_addresses, 1},
271 {"reloc", no_argument, NULL, 'r'},
272 {"section", required_argument, NULL, 'j'},
273 {"section-headers", no_argument, NULL, 'h'},
274 {"show-raw-insn", no_argument, &show_raw_insn, 1},
275 {"source", no_argument, NULL, 'S'},
3c9458e9 276 {"special-syms", no_argument, &dump_special_syms, 1},
43ac9881 277 {"include", required_argument, NULL, 'I'},
1dada9c5 278 {"stabs", no_argument, NULL, 'G'},
252b5132
RH
279 {"start-address", required_argument, NULL, OPTION_START_ADDRESS},
280 {"stop-address", required_argument, NULL, OPTION_STOP_ADDRESS},
281 {"syms", no_argument, NULL, 't'},
282 {"target", required_argument, NULL, 'b'},
1dada9c5
NC
283 {"version", no_argument, NULL, 'V'},
284 {"wide", no_argument, NULL, 'w'},
252b5132
RH
285 {0, no_argument, 0, 0}
286};
287\f
288static void
46dca2e0 289nonfatal (const char *msg)
75cd796a
ILT
290{
291 bfd_nonfatal (msg);
292 exit_status = 1;
293}
294\f
295static void
ebe372c1 296dump_section_header (bfd *abfd, asection *section,
46dca2e0 297 void *ignored ATTRIBUTE_UNUSED)
252b5132
RH
298{
299 char *comma = "";
f6af82bd 300 unsigned int opb = bfd_octets_per_byte (abfd);
252b5132 301
3bee8bcd
L
302 /* Ignore linker created section. See elfNN_ia64_object_p in
303 bfd/elfxx-ia64.c. */
304 if (section->flags & SEC_LINKER_CREATED)
305 return;
306
252b5132
RH
307 printf ("%3d %-13s %08lx ", section->index,
308 bfd_get_section_name (abfd, section),
940b2b78 309 (unsigned long) bfd_section_size (abfd, section) / opb);
d8180c76 310 bfd_printf_vma (abfd, bfd_get_section_vma (abfd, section));
252b5132 311 printf (" ");
d8180c76 312 bfd_printf_vma (abfd, section->lma);
e59b4dfb 313 printf (" %08lx 2**%u", (unsigned long) section->filepos,
252b5132
RH
314 bfd_get_section_alignment (abfd, section));
315 if (! wide_output)
316 printf ("\n ");
317 printf (" ");
318
319#define PF(x, y) \
320 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
321
322 PF (SEC_HAS_CONTENTS, "CONTENTS");
323 PF (SEC_ALLOC, "ALLOC");
324 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
252b5132
RH
325 PF (SEC_LOAD, "LOAD");
326 PF (SEC_RELOC, "RELOC");
252b5132
RH
327 PF (SEC_READONLY, "READONLY");
328 PF (SEC_CODE, "CODE");
329 PF (SEC_DATA, "DATA");
330 PF (SEC_ROM, "ROM");
331 PF (SEC_DEBUGGING, "DEBUGGING");
332 PF (SEC_NEVER_LOAD, "NEVER_LOAD");
333 PF (SEC_EXCLUDE, "EXCLUDE");
334 PF (SEC_SORT_ENTRIES, "SORT_ENTRIES");
ebe372c1
L
335 if (bfd_get_arch (abfd) == bfd_arch_tic54x)
336 {
337 PF (SEC_TIC54X_BLOCK, "BLOCK");
338 PF (SEC_TIC54X_CLINK, "CLINK");
339 }
24c411ed 340 PF (SEC_SMALL_DATA, "SMALL_DATA");
ebe372c1
L
341 if (bfd_get_flavour (abfd) == bfd_target_coff_flavour)
342 PF (SEC_COFF_SHARED, "SHARED");
13ae64f3 343 PF (SEC_THREAD_LOCAL, "THREAD_LOCAL");
64c1196b 344 PF (SEC_GROUP, "GROUP");
252b5132
RH
345
346 if ((section->flags & SEC_LINK_ONCE) != 0)
347 {
348 const char *ls;
082b7297 349 struct coff_comdat_info *comdat;
252b5132
RH
350
351 switch (section->flags & SEC_LINK_DUPLICATES)
352 {
353 default:
354 abort ();
355 case SEC_LINK_DUPLICATES_DISCARD:
356 ls = "LINK_ONCE_DISCARD";
357 break;
358 case SEC_LINK_DUPLICATES_ONE_ONLY:
359 ls = "LINK_ONCE_ONE_ONLY";
360 break;
361 case SEC_LINK_DUPLICATES_SAME_SIZE:
362 ls = "LINK_ONCE_SAME_SIZE";
363 break;
364 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
365 ls = "LINK_ONCE_SAME_CONTENTS";
366 break;
367 }
368 printf ("%s%s", comma, ls);
deecf979 369
082b7297
L
370 comdat = bfd_coff_get_comdat_section (abfd, section);
371 if (comdat != NULL)
372 printf (" (COMDAT %s %ld)", comdat->name, comdat->symbol);
deecf979 373
252b5132
RH
374 comma = ", ";
375 }
376
377 printf ("\n");
378#undef PF
379}
380
381static void
46dca2e0 382dump_headers (bfd *abfd)
252b5132
RH
383{
384 printf (_("Sections:\n"));
8bea4d5c 385
252b5132 386#ifndef BFD64
8bea4d5c 387 printf (_("Idx Name Size VMA LMA File off Algn"));
252b5132 388#else
21611032
TS
389 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
390 if (bfd_get_arch_size (abfd) == 32)
391 printf (_("Idx Name Size VMA LMA File off Algn"));
392 else
393 printf (_("Idx Name Size VMA LMA File off Algn"));
252b5132 394#endif
8bea4d5c
ILT
395
396 if (wide_output)
397 printf (_(" Flags"));
026df7c5
NC
398 if (abfd->flags & HAS_LOAD_PAGE)
399 printf (_(" Pg"));
8bea4d5c
ILT
400 printf ("\n");
401
46dca2e0 402 bfd_map_over_sections (abfd, dump_section_header, NULL);
252b5132
RH
403}
404\f
405static asymbol **
46dca2e0 406slurp_symtab (bfd *abfd)
252b5132 407{
d3ba0551 408 asymbol **sy = NULL;
252b5132
RH
409 long storage;
410
411 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
412 {
252b5132
RH
413 symcount = 0;
414 return NULL;
415 }
416
417 storage = bfd_get_symtab_upper_bound (abfd);
418 if (storage < 0)
419 bfd_fatal (bfd_get_filename (abfd));
252b5132 420 if (storage)
d3ba0551 421 sy = xmalloc (storage);
28b18af1 422
252b5132
RH
423 symcount = bfd_canonicalize_symtab (abfd, sy);
424 if (symcount < 0)
425 bfd_fatal (bfd_get_filename (abfd));
252b5132
RH
426 return sy;
427}
428
429/* Read in the dynamic symbols. */
430
431static asymbol **
46dca2e0 432slurp_dynamic_symtab (bfd *abfd)
252b5132 433{
d3ba0551 434 asymbol **sy = NULL;
252b5132
RH
435 long storage;
436
437 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
438 if (storage < 0)
439 {
440 if (!(bfd_get_file_flags (abfd) & DYNAMIC))
441 {
37cc8ec1 442 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd));
252b5132
RH
443 dynsymcount = 0;
444 return NULL;
445 }
446
447 bfd_fatal (bfd_get_filename (abfd));
448 }
252b5132 449 if (storage)
d3ba0551 450 sy = xmalloc (storage);
28b18af1 451
252b5132
RH
452 dynsymcount = bfd_canonicalize_dynamic_symtab (abfd, sy);
453 if (dynsymcount < 0)
454 bfd_fatal (bfd_get_filename (abfd));
252b5132
RH
455 return sy;
456}
457
458/* Filter out (in place) symbols that are useless for disassembly.
459 COUNT is the number of elements in SYMBOLS.
0af11b59 460 Return the number of useful symbols. */
252b5132
RH
461
462static long
46dca2e0 463remove_useless_symbols (asymbol **symbols, long count)
252b5132 464{
46dca2e0 465 asymbol **in_ptr = symbols, **out_ptr = symbols;
252b5132
RH
466
467 while (--count >= 0)
468 {
469 asymbol *sym = *in_ptr++;
470
471 if (sym->name == NULL || sym->name[0] == '\0')
472 continue;
180e47e2 473 if (sym->flags & (BSF_DEBUGGING | BSF_SECTION_SYM))
252b5132
RH
474 continue;
475 if (bfd_is_und_section (sym->section)
476 || bfd_is_com_section (sym->section))
477 continue;
478
479 *out_ptr++ = sym;
480 }
481 return out_ptr - symbols;
482}
483
484/* Sort symbols into value order. */
485
0af11b59 486static int
46dca2e0 487compare_symbols (const void *ap, const void *bp)
252b5132 488{
46dca2e0
NC
489 const asymbol *a = * (const asymbol **) ap;
490 const asymbol *b = * (const asymbol **) bp;
491 const char *an;
492 const char *bn;
493 size_t anl;
494 size_t bnl;
495 bfd_boolean af;
496 bfd_boolean bf;
497 flagword aflags;
498 flagword bflags;
252b5132
RH
499
500 if (bfd_asymbol_value (a) > bfd_asymbol_value (b))
501 return 1;
502 else if (bfd_asymbol_value (a) < bfd_asymbol_value (b))
503 return -1;
504
505 if (a->section > b->section)
506 return 1;
507 else if (a->section < b->section)
508 return -1;
509
510 an = bfd_asymbol_name (a);
511 bn = bfd_asymbol_name (b);
512 anl = strlen (an);
513 bnl = strlen (bn);
514
515 /* The symbols gnu_compiled and gcc2_compiled convey no real
516 information, so put them after other symbols with the same value. */
252b5132
RH
517 af = (strstr (an, "gnu_compiled") != NULL
518 || strstr (an, "gcc2_compiled") != NULL);
519 bf = (strstr (bn, "gnu_compiled") != NULL
520 || strstr (bn, "gcc2_compiled") != NULL);
521
522 if (af && ! bf)
523 return 1;
524 if (! af && bf)
525 return -1;
526
527 /* We use a heuristic for the file name, to try to sort it after
528 more useful symbols. It may not work on non Unix systems, but it
529 doesn't really matter; the only difference is precisely which
530 symbol names get printed. */
531
532#define file_symbol(s, sn, snl) \
533 (((s)->flags & BSF_FILE) != 0 \
534 || ((sn)[(snl) - 2] == '.' \
535 && ((sn)[(snl) - 1] == 'o' \
536 || (sn)[(snl) - 1] == 'a')))
537
538 af = file_symbol (a, an, anl);
539 bf = file_symbol (b, bn, bnl);
540
541 if (af && ! bf)
542 return 1;
543 if (! af && bf)
544 return -1;
545
546 /* Try to sort global symbols before local symbols before function
547 symbols before debugging symbols. */
548
549 aflags = a->flags;
550 bflags = b->flags;
551
552 if ((aflags & BSF_DEBUGGING) != (bflags & BSF_DEBUGGING))
553 {
554 if ((aflags & BSF_DEBUGGING) != 0)
555 return 1;
556 else
557 return -1;
558 }
559 if ((aflags & BSF_FUNCTION) != (bflags & BSF_FUNCTION))
560 {
561 if ((aflags & BSF_FUNCTION) != 0)
562 return -1;
563 else
564 return 1;
565 }
566 if ((aflags & BSF_LOCAL) != (bflags & BSF_LOCAL))
567 {
568 if ((aflags & BSF_LOCAL) != 0)
569 return 1;
570 else
571 return -1;
572 }
573 if ((aflags & BSF_GLOBAL) != (bflags & BSF_GLOBAL))
574 {
575 if ((aflags & BSF_GLOBAL) != 0)
576 return -1;
577 else
578 return 1;
579 }
580
581 /* Symbols that start with '.' might be section names, so sort them
582 after symbols that don't start with '.'. */
583 if (an[0] == '.' && bn[0] != '.')
584 return 1;
585 if (an[0] != '.' && bn[0] == '.')
586 return -1;
587
588 /* Finally, if we can't distinguish them in any other way, try to
589 get consistent results by sorting the symbols by name. */
590 return strcmp (an, bn);
591}
592
593/* Sort relocs into address order. */
594
595static int
46dca2e0 596compare_relocs (const void *ap, const void *bp)
252b5132 597{
46dca2e0
NC
598 const arelent *a = * (const arelent **) ap;
599 const arelent *b = * (const arelent **) bp;
252b5132
RH
600
601 if (a->address > b->address)
602 return 1;
603 else if (a->address < b->address)
604 return -1;
605
606 /* So that associated relocations tied to the same address show up
607 in the correct order, we don't do any further sorting. */
608 if (a > b)
609 return 1;
610 else if (a < b)
611 return -1;
612 else
613 return 0;
614}
615
155e0d23
NC
616/* Print an address (VMA) to the output stream in INFO.
617 If SKIP_ZEROES is TRUE, omit leading zeroes. */
252b5132
RH
618
619static void
46dca2e0
NC
620objdump_print_value (bfd_vma vma, struct disassemble_info *info,
621 bfd_boolean skip_zeroes)
252b5132
RH
622{
623 char buf[30];
624 char *p;
3b9ad1cc 625 struct objdump_disasm_info *aux;
252b5132 626
3b9ad1cc 627 aux = (struct objdump_disasm_info *) info->application_data;
d8180c76 628 bfd_sprintf_vma (aux->abfd, buf, vma);
252b5132
RH
629 if (! skip_zeroes)
630 p = buf;
631 else
632 {
633 for (p = buf; *p == '0'; ++p)
634 ;
635 if (*p == '\0')
636 --p;
637 }
638 (*info->fprintf_func) (info->stream, "%s", p);
639}
640
641/* Print the name of a symbol. */
642
643static void
46dca2e0
NC
644objdump_print_symname (bfd *abfd, struct disassemble_info *info,
645 asymbol *sym)
252b5132
RH
646{
647 char *alloc;
648 const char *name;
252b5132
RH
649
650 alloc = NULL;
651 name = bfd_asymbol_name (sym);
a6637ec0 652 if (do_demangle && name[0] != '\0')
252b5132
RH
653 {
654 /* Demangle the name. */
a6637ec0
AM
655 alloc = demangle (abfd, name);
656 name = alloc;
252b5132
RH
657 }
658
659 if (info != NULL)
a6637ec0 660 (*info->fprintf_func) (info->stream, "%s", name);
252b5132 661 else
a6637ec0 662 printf ("%s", name);
252b5132
RH
663
664 if (alloc != NULL)
665 free (alloc);
666}
667
22a398e1
NC
668/* Locate a symbol given a bfd and a section (from INFO->application_data),
669 and a VMA. If INFO->application_data->require_sec is TRUE, then always
670 require the symbol to be in the section. Returns NULL if there is no
671 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
672 of the symbol in sorted_syms. */
252b5132
RH
673
674static asymbol *
3b9ad1cc
AM
675find_symbol_for_address (bfd_vma vma,
676 struct disassemble_info *info,
677 long *place)
252b5132
RH
678{
679 /* @@ Would it speed things up to cache the last two symbols returned,
680 and maybe their address ranges? For many processors, only one memory
681 operand can be present at a time, so the 2-entry cache wouldn't be
682 constantly churned by code doing heavy memory accesses. */
683
684 /* Indices in `sorted_syms'. */
685 long min = 0;
686 long max = sorted_symcount;
687 long thisplace;
3b9ad1cc
AM
688 struct objdump_disasm_info *aux;
689 bfd *abfd;
690 asection *sec;
691 unsigned int opb;
252b5132
RH
692
693 if (sorted_symcount < 1)
694 return NULL;
695
3b9ad1cc
AM
696 aux = (struct objdump_disasm_info *) info->application_data;
697 abfd = aux->abfd;
698 sec = aux->sec;
699 opb = bfd_octets_per_byte (abfd);
700
252b5132
RH
701 /* Perform a binary search looking for the closest symbol to the
702 required value. We are searching the range (min, max]. */
703 while (min + 1 < max)
704 {
705 asymbol *sym;
706
707 thisplace = (max + min) / 2;
708 sym = sorted_syms[thisplace];
709
710 if (bfd_asymbol_value (sym) > vma)
711 max = thisplace;
712 else if (bfd_asymbol_value (sym) < vma)
713 min = thisplace;
714 else
715 {
716 min = thisplace;
717 break;
718 }
719 }
720
721 /* The symbol we want is now in min, the low end of the range we
722 were searching. If there are several symbols with the same
723 value, we want the first one. */
724 thisplace = min;
725 while (thisplace > 0
726 && (bfd_asymbol_value (sorted_syms[thisplace])
727 == bfd_asymbol_value (sorted_syms[thisplace - 1])))
728 --thisplace;
729
1049f94e 730 /* If the file is relocatable, and the symbol could be from this
252b5132
RH
731 section, prefer a symbol from this section over symbols from
732 others, even if the other symbol's value might be closer.
0af11b59 733
252b5132
RH
734 Note that this may be wrong for some symbol references if the
735 sections have overlapping memory ranges, but in that case there's
736 no way to tell what's desired without looking at the relocation
737 table. */
252b5132 738 if (sorted_syms[thisplace]->section != sec
22a398e1 739 && (aux->require_sec
252b5132
RH
740 || ((abfd->flags & HAS_RELOC) != 0
741 && vma >= bfd_get_section_vma (abfd, sec)
742 && vma < (bfd_get_section_vma (abfd, sec)
940b2b78 743 + bfd_section_size (abfd, sec) / opb))))
252b5132
RH
744 {
745 long i;
746
747 for (i = thisplace + 1; i < sorted_symcount; i++)
748 {
749 if (bfd_asymbol_value (sorted_syms[i])
750 != bfd_asymbol_value (sorted_syms[thisplace]))
751 break;
752 }
98a91d6a 753
252b5132 754 --i;
98a91d6a 755
252b5132
RH
756 for (; i >= 0; i--)
757 {
758 if (sorted_syms[i]->section == sec
759 && (i == 0
760 || sorted_syms[i - 1]->section != sec
761 || (bfd_asymbol_value (sorted_syms[i])
762 != bfd_asymbol_value (sorted_syms[i - 1]))))
763 {
764 thisplace = i;
765 break;
766 }
767 }
768
769 if (sorted_syms[thisplace]->section != sec)
770 {
771 /* We didn't find a good symbol with a smaller value.
772 Look for one with a larger value. */
773 for (i = thisplace + 1; i < sorted_symcount; i++)
774 {
775 if (sorted_syms[i]->section == sec)
776 {
777 thisplace = i;
778 break;
779 }
780 }
781 }
782
783 if (sorted_syms[thisplace]->section != sec
22a398e1 784 && (aux->require_sec
252b5132
RH
785 || ((abfd->flags & HAS_RELOC) != 0
786 && vma >= bfd_get_section_vma (abfd, sec)
787 && vma < (bfd_get_section_vma (abfd, sec)
788 + bfd_section_size (abfd, sec)))))
22a398e1
NC
789 /* There is no suitable symbol. */
790 return NULL;
791 }
792
793 /* Give the target a chance to reject the symbol. */
794 while (! info->symbol_is_valid (sorted_syms [thisplace], info))
795 {
796 ++ thisplace;
797 if (thisplace >= sorted_symcount
798 || bfd_asymbol_value (sorted_syms [thisplace]) > vma)
799 return NULL;
252b5132
RH
800 }
801
802 if (place != NULL)
803 *place = thisplace;
804
805 return sorted_syms[thisplace];
806}
807
155e0d23 808/* Print an address and the offset to the nearest symbol. */
252b5132
RH
809
810static void
46dca2e0
NC
811objdump_print_addr_with_sym (bfd *abfd, asection *sec, asymbol *sym,
812 bfd_vma vma, struct disassemble_info *info,
813 bfd_boolean skip_zeroes)
252b5132
RH
814{
815 objdump_print_value (vma, info, skip_zeroes);
816
817 if (sym == NULL)
818 {
819 bfd_vma secaddr;
820
821 (*info->fprintf_func) (info->stream, " <%s",
822 bfd_get_section_name (abfd, sec));
823 secaddr = bfd_get_section_vma (abfd, sec);
824 if (vma < secaddr)
825 {
826 (*info->fprintf_func) (info->stream, "-0x");
b34976b6 827 objdump_print_value (secaddr - vma, info, TRUE);
252b5132
RH
828 }
829 else if (vma > secaddr)
830 {
831 (*info->fprintf_func) (info->stream, "+0x");
b34976b6 832 objdump_print_value (vma - secaddr, info, TRUE);
252b5132
RH
833 }
834 (*info->fprintf_func) (info->stream, ">");
835 }
836 else
837 {
838 (*info->fprintf_func) (info->stream, " <");
839 objdump_print_symname (abfd, info, sym);
840 if (bfd_asymbol_value (sym) > vma)
841 {
842 (*info->fprintf_func) (info->stream, "-0x");
b34976b6 843 objdump_print_value (bfd_asymbol_value (sym) - vma, info, TRUE);
252b5132
RH
844 }
845 else if (vma > bfd_asymbol_value (sym))
846 {
847 (*info->fprintf_func) (info->stream, "+0x");
b34976b6 848 objdump_print_value (vma - bfd_asymbol_value (sym), info, TRUE);
252b5132
RH
849 }
850 (*info->fprintf_func) (info->stream, ">");
851 }
852}
853
155e0d23
NC
854/* Print an address (VMA), symbolically if possible.
855 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
252b5132
RH
856
857static void
3b9ad1cc
AM
858objdump_print_addr (bfd_vma vma,
859 struct disassemble_info *info,
46dca2e0 860 bfd_boolean skip_zeroes)
252b5132 861{
3b9ad1cc 862 struct objdump_disasm_info *aux;
58450b3b 863 asymbol *sym = NULL; /* Initialize to avoid compiler warning. */
ce04548a
NC
864#ifdef DISASSEMBLER_NEEDS_RELOCS
865 bfd_boolean skip_find = FALSE;
866#endif
252b5132
RH
867
868 if (sorted_symcount < 1)
869 {
870 (*info->fprintf_func) (info->stream, "0x");
871 objdump_print_value (vma, info, skip_zeroes);
872 return;
873 }
874
3b9ad1cc 875 aux = (struct objdump_disasm_info *) info->application_data;
ce04548a
NC
876
877#ifdef DISASSEMBLER_NEEDS_RELOCS
878 if (aux->reloc != NULL
879 && aux->reloc->sym_ptr_ptr != NULL
880 && * aux->reloc->sym_ptr_ptr != NULL)
881 {
882 sym = * aux->reloc->sym_ptr_ptr;
883
884 /* Adjust the vma to the reloc. */
885 vma += bfd_asymbol_value (sym);
886
887 if (bfd_is_und_section (bfd_get_section (sym)))
888 skip_find = TRUE;
889 }
890
891 if (!skip_find)
892#endif
893 sym = find_symbol_for_address (vma, info, NULL);
894
252b5132
RH
895 objdump_print_addr_with_sym (aux->abfd, aux->sec, sym, vma, info,
896 skip_zeroes);
897}
898
899/* Print VMA to INFO. This function is passed to the disassembler
900 routine. */
901
902static void
46dca2e0 903objdump_print_address (bfd_vma vma, struct disassemble_info *info)
252b5132
RH
904{
905 objdump_print_addr (vma, info, ! prefix_addresses);
906}
907
908/* Determine of the given address has a symbol associated with it. */
909
910static int
46dca2e0 911objdump_symbol_at_address (bfd_vma vma, struct disassemble_info * info)
252b5132 912{
252b5132
RH
913 asymbol * sym;
914
22a398e1 915 sym = find_symbol_for_address (vma, info, NULL);
252b5132
RH
916
917 return (sym != NULL && (bfd_asymbol_value (sym) == vma));
918}
919
920/* Hold the last function name and the last line number we displayed
921 in a disassembly. */
922
923static char *prev_functionname;
924static unsigned int prev_line;
925
926/* We keep a list of all files that we have seen when doing a
50c2245b 927 disassembly with source, so that we know how much of the file to
252b5132
RH
928 display. This can be important for inlined functions. */
929
930struct print_file_list
931{
932 struct print_file_list *next;
43ac9881
AM
933 const char *filename;
934 const char *modname;
252b5132
RH
935 unsigned int line;
936 FILE *f;
937};
938
939static struct print_file_list *print_files;
940
941/* The number of preceding context lines to show when we start
942 displaying a file for the first time. */
943
944#define SHOW_PRECEDING_CONTEXT_LINES (5)
945
43ac9881
AM
946/* Tries to open MODNAME, and if successful adds a node to print_files
947 linked list and returns that node. Returns NULL on failure. */
948
949static struct print_file_list *
950try_print_file_open (const char *origname, const char *modname)
951{
952 struct print_file_list *p;
953 FILE *f;
954
955 f = fopen (modname, "r");
956 if (f == NULL)
957 return NULL;
958
959 if (print_files != NULL && print_files->f != NULL)
960 {
961 fclose (print_files->f);
962 print_files->f = NULL;
963 }
964
965 p = xmalloc (sizeof (struct print_file_list));
966 p->filename = origname;
967 p->modname = modname;
968 p->line = 0;
969 p->f = f;
970 p->next = print_files;
971 print_files = p;
972 return p;
973}
974
975/* If the the source file, as described in the symtab, is not found
976 try to locate it in one of the paths specified with -I
977 If found, add location to print_files linked list. */
978
979static struct print_file_list *
980update_source_path (const char *filename)
981{
982 struct print_file_list *p;
983 const char *fname;
984 int i;
985
986 if (filename == NULL)
987 return NULL;
988
989 p = try_print_file_open (filename, filename);
990 if (p != NULL)
991 return p;
992
993 if (include_path_count == 0)
994 return NULL;
995
996 /* Get the name of the file. */
997 fname = strrchr (filename, '/');
998#ifdef HAVE_DOS_BASED_FILE_SYSTEM
999 {
1000 /* We could have a mixed forward/back slash case. */
1001 char *backslash = strrchr (filename, '\\');
1002 if (fname == NULL || (backslash != NULL && backslash > fname))
1003 fname = backslash;
1004 if (fname == NULL && filename[0] != '\0' && filename[1] == ':')
1005 fname = filename + 1;
1006 }
1007#endif
1008 if (fname == NULL)
1009 fname = filename;
1010 else
1011 ++fname;
1012
1013 /* If file exists under a new path, we need to add it to the list
1014 so that show_line knows about it. */
1015 for (i = 0; i < include_path_count; i++)
1016 {
1017 char *modname = concat (include_paths[i], "/", fname, (const char *) 0);
1018
1019 p = try_print_file_open (filename, modname);
1020 if (p)
1021 return p;
1022
1023 free (modname);
1024 }
1025
1026 return NULL;
1027}
1028
252b5132
RH
1029/* Skip ahead to a given line in a file, optionally printing each
1030 line. */
1031
252b5132 1032static void
46dca2e0
NC
1033skip_to_line (struct print_file_list *p, unsigned int line,
1034 bfd_boolean show)
252b5132
RH
1035{
1036 while (p->line < line)
1037 {
1038 char buf[100];
1039
1040 if (fgets (buf, sizeof buf, p->f) == NULL)
1041 {
1042 fclose (p->f);
1043 p->f = NULL;
1044 break;
1045 }
1046
1047 if (show)
1048 printf ("%s", buf);
1049
1050 if (strchr (buf, '\n') != NULL)
1051 ++p->line;
1052 }
0af11b59 1053}
252b5132 1054
50c2245b 1055/* Show the line number, or the source line, in a disassembly
252b5132
RH
1056 listing. */
1057
1058static void
46dca2e0 1059show_line (bfd *abfd, asection *section, bfd_vma addr_offset)
252b5132 1060{
b1f88ebe
AM
1061 const char *filename;
1062 const char *functionname;
252b5132
RH
1063 unsigned int line;
1064
1065 if (! with_line_numbers && ! with_source_code)
1066 return;
1067
940b2b78 1068 if (! bfd_find_nearest_line (abfd, section, syms, addr_offset, &filename,
252b5132
RH
1069 &functionname, &line))
1070 return;
1071
1072 if (filename != NULL && *filename == '\0')
1073 filename = NULL;
1074 if (functionname != NULL && *functionname == '\0')
1075 functionname = NULL;
1076
1077 if (with_line_numbers)
1078 {
1079 if (functionname != NULL
1080 && (prev_functionname == NULL
1081 || strcmp (functionname, prev_functionname) != 0))
1082 printf ("%s():\n", functionname);
1083 if (line > 0 && line != prev_line)
1084 printf ("%s:%u\n", filename == NULL ? "???" : filename, line);
1085 }
1086
1087 if (with_source_code
1088 && filename != NULL
1089 && line > 0)
1090 {
1091 struct print_file_list **pp, *p;
1092
1093 for (pp = &print_files; *pp != NULL; pp = &(*pp)->next)
1094 if (strcmp ((*pp)->filename, filename) == 0)
1095 break;
1096 p = *pp;
1097
1098 if (p != NULL)
1099 {
1100 if (p != print_files)
1101 {
1102 int l;
1103
1104 /* We have reencountered a file name which we saw
1105 earlier. This implies that either we are dumping out
1106 code from an included file, or the same file was
1107 linked in more than once. There are two common cases
1108 of an included file: inline functions in a header
1109 file, and a bison or flex skeleton file. In the
1110 former case we want to just start printing (but we
1111 back up a few lines to give context); in the latter
1112 case we want to continue from where we left off. I
1113 can't think of a good way to distinguish the cases,
1114 so I used a heuristic based on the file name. */
1115 if (strcmp (p->filename + strlen (p->filename) - 2, ".h") != 0)
1116 l = p->line;
1117 else
1118 {
1119 l = line - SHOW_PRECEDING_CONTEXT_LINES;
f1563258
TW
1120 if (l < 0)
1121 l = 0;
252b5132
RH
1122 }
1123
1124 if (p->f == NULL)
1125 {
43ac9881 1126 p->f = fopen (p->modname, "r");
252b5132
RH
1127 p->line = 0;
1128 }
1129 if (p->f != NULL)
b34976b6 1130 skip_to_line (p, l, FALSE);
252b5132
RH
1131
1132 if (print_files->f != NULL)
1133 {
1134 fclose (print_files->f);
1135 print_files->f = NULL;
1136 }
1137 }
1138
1139 if (p->f != NULL)
1140 {
b34976b6 1141 skip_to_line (p, line, TRUE);
252b5132
RH
1142 *pp = p->next;
1143 p->next = print_files;
1144 print_files = p;
1145 }
1146 }
1147 else
1148 {
43ac9881 1149 p = update_source_path (filename);
252b5132 1150
43ac9881 1151 if (p != NULL)
252b5132
RH
1152 {
1153 int l;
1154
0af11b59
KH
1155 if (file_start_context)
1156 l = 0;
1157 else
1158 l = line - SHOW_PRECEDING_CONTEXT_LINES;
f1563258
TW
1159 if (l < 0)
1160 l = 0;
b34976b6 1161 skip_to_line (p, l, FALSE);
252b5132 1162 if (p->f != NULL)
b34976b6 1163 skip_to_line (p, line, TRUE);
252b5132
RH
1164 }
1165 }
1166 }
1167
1168 if (functionname != NULL
1169 && (prev_functionname == NULL
1170 || strcmp (functionname, prev_functionname) != 0))
1171 {
1172 if (prev_functionname != NULL)
1173 free (prev_functionname);
1174 prev_functionname = xmalloc (strlen (functionname) + 1);
1175 strcpy (prev_functionname, functionname);
1176 }
1177
1178 if (line > 0 && line != prev_line)
1179 prev_line = line;
1180}
1181
1182/* Pseudo FILE object for strings. */
1183typedef struct
1184{
1185 char *buffer;
6f104306
NS
1186 size_t pos;
1187 size_t alloc;
252b5132
RH
1188} SFILE;
1189
46dca2e0 1190/* sprintf to a "stream". */
252b5132 1191
0fd3a477 1192static int ATTRIBUTE_PRINTF_2
46dca2e0 1193objdump_sprintf (SFILE *f, const char *format, ...)
252b5132 1194{
252b5132 1195 size_t n;
46dca2e0 1196 va_list args;
252b5132 1197
6f104306 1198 while (1)
252b5132 1199 {
6f104306
NS
1200 size_t space = f->alloc - f->pos;
1201
1202 va_start (args, format);
1203 n = vsnprintf (f->buffer + f->pos, space, format, args);
451dad9c 1204 va_end (args);
252b5132 1205
6f104306
NS
1206 if (space > n)
1207 break;
1208
1209 f->alloc = (f->alloc + n) * 2;
1210 f->buffer = xrealloc (f->buffer, f->alloc);
252b5132 1211 }
6f104306
NS
1212 f->pos += n;
1213
252b5132
RH
1214 return n;
1215}
1216
155e0d23
NC
1217/* Returns TRUE if the specified section should be dumped. */
1218
1219static bfd_boolean
1220process_section_p (asection * section)
1221{
1222 size_t i;
1223
1224 if (only == NULL)
1225 return TRUE;
1226
1227 for (i = 0; i < only_used; i++)
1228 if (strcmp (only [i], section->name) == 0)
1229 return TRUE;
1230
1231 return FALSE;
1232}
1233
1234
252b5132
RH
1235/* The number of zeroes we want to see before we start skipping them.
1236 The number is arbitrarily chosen. */
1237
0bcb06d2 1238#define DEFAULT_SKIP_ZEROES 8
252b5132
RH
1239
1240/* The number of zeroes to skip at the end of a section. If the
1241 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1242 SKIP_ZEROES, they will be disassembled. If there are fewer than
1243 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1244 attempt to avoid disassembling zeroes inserted by section
1245 alignment. */
1246
0bcb06d2 1247#define DEFAULT_SKIP_ZEROES_AT_END 3
252b5132
RH
1248
1249/* Disassemble some data in memory between given values. */
1250
1251static void
46dca2e0
NC
1252disassemble_bytes (struct disassemble_info * info,
1253 disassembler_ftype disassemble_fn,
1254 bfd_boolean insns,
1255 bfd_byte * data,
1256 bfd_vma start_offset,
1257 bfd_vma stop_offset,
fd7bb956 1258 bfd_vma rel_offset,
46dca2e0
NC
1259 arelent *** relppp,
1260 arelent ** relppend)
252b5132
RH
1261{
1262 struct objdump_disasm_info *aux;
1263 asection *section;
940b2b78 1264 int octets_per_line;
b34976b6 1265 bfd_boolean done_dot;
252b5132 1266 int skip_addr_chars;
940b2b78 1267 bfd_vma addr_offset;
0bcb06d2
AS
1268 unsigned int opb = info->octets_per_byte;
1269 unsigned int skip_zeroes = info->skip_zeroes;
1270 unsigned int skip_zeroes_at_end = info->skip_zeroes_at_end;
ce04548a 1271 int octets = opb;
6f104306 1272 SFILE sfile;
252b5132
RH
1273
1274 aux = (struct objdump_disasm_info *) info->application_data;
1275 section = aux->sec;
1276
6f104306
NS
1277 sfile.alloc = 120;
1278 sfile.buffer = xmalloc (sfile.alloc);
1279 sfile.pos = 0;
1280
252b5132 1281 if (insns)
940b2b78 1282 octets_per_line = 4;
252b5132 1283 else
940b2b78 1284 octets_per_line = 16;
252b5132
RH
1285
1286 /* Figure out how many characters to skip at the start of an
1287 address, to make the disassembly look nicer. We discard leading
1288 zeroes in chunks of 4, ensuring that there is always a leading
1289 zero remaining. */
1290 skip_addr_chars = 0;
1291 if (! prefix_addresses)
1292 {
1293 char buf[30];
1294 char *s;
1295
d8180c76
L
1296 bfd_sprintf_vma
1297 (aux->abfd, buf,
1298 (section->vma
1299 + bfd_section_size (section->owner, section) / opb));
252b5132
RH
1300 s = buf;
1301 while (s[0] == '0' && s[1] == '0' && s[2] == '0' && s[3] == '0'
1302 && s[4] == '0')
1303 {
1304 skip_addr_chars += 4;
1305 s += 4;
1306 }
1307 }
1308
1309 info->insn_info_valid = 0;
1310
b34976b6 1311 done_dot = FALSE;
940b2b78
TW
1312 addr_offset = start_offset;
1313 while (addr_offset < stop_offset)
252b5132
RH
1314 {
1315 bfd_vma z;
b34976b6 1316 bfd_boolean need_nl = FALSE;
ce04548a
NC
1317#ifdef DISASSEMBLER_NEEDS_RELOCS
1318 int previous_octets;
1319
1320 /* Remember the length of the previous instruction. */
1321 previous_octets = octets;
1322#endif
1323 octets = 0;
252b5132 1324
940b2b78 1325 /* If we see more than SKIP_ZEROES octets of zeroes, we just
43ac9881 1326 print `...'. */
940b2b78 1327 for (z = addr_offset * opb; z < stop_offset * opb; z++)
252b5132
RH
1328 if (data[z] != 0)
1329 break;
1330 if (! disassemble_zeroes
1331 && (info->insn_info_valid == 0
1332 || info->branch_delay_insns == 0)
0bcb06d2 1333 && (z - addr_offset * opb >= skip_zeroes
0af11b59 1334 || (z == stop_offset * opb &&
0bcb06d2 1335 z - addr_offset * opb < skip_zeroes_at_end)))
252b5132
RH
1336 {
1337 printf ("\t...\n");
1338
940b2b78 1339 /* If there are more nonzero octets to follow, we only skip
43ac9881
AM
1340 zeroes in multiples of 4, to try to avoid running over
1341 the start of an instruction which happens to start with
1342 zero. */
940b2b78
TW
1343 if (z != stop_offset * opb)
1344 z = addr_offset * opb + ((z - addr_offset * opb) &~ 3);
252b5132 1345
940b2b78 1346 octets = z - addr_offset * opb;
252b5132
RH
1347 }
1348 else
1349 {
1350 char buf[50];
252b5132
RH
1351 int bpc = 0;
1352 int pb = 0;
1353
b34976b6 1354 done_dot = FALSE;
252b5132
RH
1355
1356 if (with_line_numbers || with_source_code)
bc79cded 1357 show_line (aux->abfd, section, addr_offset);
252b5132
RH
1358
1359 if (! prefix_addresses)
1360 {
1361 char *s;
1362
d8180c76 1363 bfd_sprintf_vma (aux->abfd, buf, section->vma + addr_offset);
252b5132
RH
1364 for (s = buf + skip_addr_chars; *s == '0'; s++)
1365 *s = ' ';
1366 if (*s == '\0')
1367 *--s = '0';
1368 printf ("%s:\t", buf + skip_addr_chars);
1369 }
1370 else
1371 {
b34976b6 1372 aux->require_sec = TRUE;
940b2b78 1373 objdump_print_address (section->vma + addr_offset, info);
b34976b6 1374 aux->require_sec = FALSE;
252b5132
RH
1375 putchar (' ');
1376 }
1377
1378 if (insns)
1379 {
6f104306 1380 sfile.pos = 0;
252b5132 1381 info->fprintf_func = (fprintf_ftype) objdump_sprintf;
5810296b 1382 info->stream = &sfile;
252b5132
RH
1383 info->bytes_per_line = 0;
1384 info->bytes_per_chunk = 0;
ce04548a 1385 info->flags = 0;
252b5132 1386
8b1e6df3 1387#ifdef DISASSEMBLER_NEEDS_RELOCS
ce04548a
NC
1388 if (*relppp < relppend)
1389 {
1390 bfd_signed_vma distance_to_rel;
1391
1392 distance_to_rel = (**relppp)->address
1393 - (rel_offset + addr_offset);
1394
1395 /* Check to see if the current reloc is associated with
1396 the instruction that we are about to disassemble. */
1397 if (distance_to_rel == 0
1398 /* FIXME: This is wrong. We are trying to catch
1399 relocs that are addressed part way through the
1400 current instruction, as might happen with a packed
1401 VLIW instruction. Unfortunately we do not know the
1402 length of the current instruction since we have not
1403 disassembled it yet. Instead we take a guess based
1404 upon the length of the previous instruction. The
1405 proper solution is to have a new target-specific
1406 disassembler function which just returns the length
1407 of an instruction at a given address without trying
1408 to display its disassembly. */
1409 || (distance_to_rel > 0
1410 && distance_to_rel < (bfd_signed_vma) (previous_octets/ opb)))
1411 {
1412 info->flags = INSN_HAS_RELOC;
1413 aux->reloc = **relppp;
1414 }
1415 else
1416 aux->reloc = NULL;
1417 }
8b1e6df3 1418#endif
940b2b78 1419 octets = (*disassemble_fn) (section->vma + addr_offset, info);
252b5132
RH
1420 info->fprintf_func = (fprintf_ftype) fprintf;
1421 info->stream = stdout;
1422 if (info->bytes_per_line != 0)
940b2b78
TW
1423 octets_per_line = info->bytes_per_line;
1424 if (octets < 0)
e07bf1ac 1425 {
6f104306 1426 if (sfile.pos)
e07bf1ac 1427 printf ("%s\n", sfile.buffer);
e07bf1ac
ILT
1428 break;
1429 }
252b5132
RH
1430 }
1431 else
1432 {
b4c96d0d 1433 bfd_vma j;
252b5132 1434
940b2b78
TW
1435 octets = octets_per_line;
1436 if (addr_offset + octets / opb > stop_offset)
1437 octets = (stop_offset - addr_offset) * opb;
252b5132 1438
940b2b78 1439 for (j = addr_offset * opb; j < addr_offset * opb + octets; ++j)
252b5132 1440 {
3882b010 1441 if (ISPRINT (data[j]))
940b2b78 1442 buf[j - addr_offset * opb] = data[j];
252b5132 1443 else
940b2b78 1444 buf[j - addr_offset * opb] = '.';
252b5132 1445 }
940b2b78 1446 buf[j - addr_offset * opb] = '\0';
252b5132
RH
1447 }
1448
1449 if (prefix_addresses
1450 ? show_raw_insn > 0
1451 : show_raw_insn >= 0)
1452 {
b4c96d0d 1453 bfd_vma j;
252b5132
RH
1454
1455 /* If ! prefix_addresses and ! wide_output, we print
43ac9881 1456 octets_per_line octets per line. */
940b2b78
TW
1457 pb = octets;
1458 if (pb > octets_per_line && ! prefix_addresses && ! wide_output)
1459 pb = octets_per_line;
252b5132
RH
1460
1461 if (info->bytes_per_chunk)
1462 bpc = info->bytes_per_chunk;
1463 else
1464 bpc = 1;
1465
940b2b78 1466 for (j = addr_offset * opb; j < addr_offset * opb + pb; j += bpc)
252b5132
RH
1467 {
1468 int k;
ed049af3 1469
252b5132
RH
1470 if (bpc > 1 && info->display_endian == BFD_ENDIAN_LITTLE)
1471 {
1472 for (k = bpc - 1; k >= 0; k--)
1473 printf ("%02x", (unsigned) data[j + k]);
1474 putchar (' ');
1475 }
1476 else
1477 {
1478 for (k = 0; k < bpc; k++)
1479 printf ("%02x", (unsigned) data[j + k]);
1480 putchar (' ');
1481 }
1482 }
1483
940b2b78 1484 for (; pb < octets_per_line; pb += bpc)
252b5132
RH
1485 {
1486 int k;
1487
1488 for (k = 0; k < bpc; k++)
1489 printf (" ");
1490 putchar (' ');
1491 }
1492
1493 /* Separate raw data from instruction by extra space. */
1494 if (insns)
1495 putchar ('\t');
1496 else
1497 printf (" ");
1498 }
1499
1500 if (! insns)
1501 printf ("%s", buf);
6f104306
NS
1502 else if (sfile.pos)
1503 printf ("%s", sfile.buffer);
252b5132
RH
1504
1505 if (prefix_addresses
1506 ? show_raw_insn > 0
1507 : show_raw_insn >= 0)
1508 {
940b2b78 1509 while (pb < octets)
252b5132 1510 {
b4c96d0d 1511 bfd_vma j;
252b5132
RH
1512 char *s;
1513
1514 putchar ('\n');
940b2b78 1515 j = addr_offset * opb + pb;
252b5132 1516
d8180c76 1517 bfd_sprintf_vma (aux->abfd, buf, section->vma + j / opb);
252b5132
RH
1518 for (s = buf + skip_addr_chars; *s == '0'; s++)
1519 *s = ' ';
1520 if (*s == '\0')
1521 *--s = '0';
1522 printf ("%s:\t", buf + skip_addr_chars);
1523
940b2b78
TW
1524 pb += octets_per_line;
1525 if (pb > octets)
1526 pb = octets;
1527 for (; j < addr_offset * opb + pb; j += bpc)
252b5132
RH
1528 {
1529 int k;
1530
1531 if (bpc > 1 && info->display_endian == BFD_ENDIAN_LITTLE)
1532 {
1533 for (k = bpc - 1; k >= 0; k--)
1534 printf ("%02x", (unsigned) data[j + k]);
1535 putchar (' ');
1536 }
1537 else
1538 {
1539 for (k = 0; k < bpc; k++)
1540 printf ("%02x", (unsigned) data[j + k]);
1541 putchar (' ');
1542 }
1543 }
1544 }
1545 }
1546
1547 if (!wide_output)
1548 putchar ('\n');
1549 else
b34976b6 1550 need_nl = TRUE;
252b5132
RH
1551 }
1552
fd7bb956
AM
1553 while ((*relppp) < relppend
1554 && (**relppp)->address < rel_offset + addr_offset + octets / opb)
252b5132 1555 {
fd7bb956 1556 if (dump_reloc_info || dump_dynamic_reloc_info)
252b5132
RH
1557 {
1558 arelent *q;
1559
1560 q = **relppp;
1561
1562 if (wide_output)
1563 putchar ('\t');
1564 else
1565 printf ("\t\t\t");
1566
68b3b8dc
JJ
1567 objdump_print_value (section->vma - rel_offset + q->address,
1568 info, TRUE);
252b5132 1569
f9ecb0a4
JJ
1570 if (q->howto == NULL)
1571 printf (": *unknown*\t");
1572 else if (q->howto->name)
1573 printf (": %s\t", q->howto->name);
1574 else
1575 printf (": %d\t", q->howto->type);
252b5132
RH
1576
1577 if (q->sym_ptr_ptr == NULL || *q->sym_ptr_ptr == NULL)
1578 printf ("*unknown*");
1579 else
1580 {
1581 const char *sym_name;
1582
1583 sym_name = bfd_asymbol_name (*q->sym_ptr_ptr);
1584 if (sym_name != NULL && *sym_name != '\0')
1585 objdump_print_symname (aux->abfd, info, *q->sym_ptr_ptr);
1586 else
1587 {
1588 asection *sym_sec;
1589
1590 sym_sec = bfd_get_section (*q->sym_ptr_ptr);
1591 sym_name = bfd_get_section_name (aux->abfd, sym_sec);
1592 if (sym_name == NULL || *sym_name == '\0')
1593 sym_name = "*unknown*";
1594 printf ("%s", sym_name);
1595 }
1596 }
1597
1598 if (q->addend)
1599 {
1600 printf ("+0x");
b34976b6 1601 objdump_print_value (q->addend, info, TRUE);
252b5132
RH
1602 }
1603
1604 printf ("\n");
b34976b6 1605 need_nl = FALSE;
252b5132 1606 }
fd7bb956 1607 ++(*relppp);
252b5132
RH
1608 }
1609
1610 if (need_nl)
1611 printf ("\n");
1612
940b2b78 1613 addr_offset += octets / opb;
252b5132 1614 }
6f104306
NS
1615
1616 free (sfile.buffer);
252b5132
RH
1617}
1618
155e0d23
NC
1619static void
1620disassemble_section (bfd *abfd, asection *section, void *info)
1621{
1622 struct disassemble_info * pinfo = (struct disassemble_info *) info;
3b9ad1cc 1623 struct objdump_disasm_info * paux;
155e0d23
NC
1624 unsigned int opb = pinfo->octets_per_byte;
1625 bfd_byte * data = NULL;
1626 bfd_size_type datasize = 0;
1627 arelent ** rel_pp = NULL;
1628 arelent ** rel_ppstart = NULL;
1629 arelent ** rel_ppend;
1630 unsigned long stop_offset;
1631 asymbol * sym = NULL;
1632 long place = 0;
1633 long rel_count;
1634 bfd_vma rel_offset;
1635 unsigned long addr_offset;
1636
1637 /* Sections that do not contain machine
1638 code are not normally disassembled. */
1639 if (! disassemble_all
1640 && only == NULL
46212538
AM
1641 && ((section->flags & (SEC_CODE | SEC_HAS_CONTENTS))
1642 != (SEC_CODE | SEC_HAS_CONTENTS)))
155e0d23
NC
1643 return;
1644
1645 if (! process_section_p (section))
1646 return;
1647
135dfb4a 1648 datasize = bfd_get_section_size (section);
155e0d23
NC
1649 if (datasize == 0)
1650 return;
1651
1652 /* Decide which set of relocs to use. Load them if necessary. */
3b9ad1cc 1653 paux = (struct objdump_disasm_info *) pinfo->application_data;
155e0d23
NC
1654 if (paux->dynrelbuf)
1655 {
1656 rel_pp = paux->dynrelbuf;
1657 rel_count = paux->dynrelcount;
1658 /* Dynamic reloc addresses are absolute, non-dynamic are section
50c2245b 1659 relative. REL_OFFSET specifies the reloc address corresponding
155e0d23 1660 to the start of this section. */
68b3b8dc 1661 rel_offset = section->vma;
155e0d23
NC
1662 }
1663 else
1664 {
1665 rel_count = 0;
1666 rel_pp = NULL;
1667 rel_offset = 0;
1668
1669 if ((section->flags & SEC_RELOC) != 0
1670#ifndef DISASSEMBLER_NEEDS_RELOCS
1671 && dump_reloc_info
1672#endif
1673 )
1674 {
1675 long relsize;
1676
1677 relsize = bfd_get_reloc_upper_bound (abfd, section);
1678 if (relsize < 0)
1679 bfd_fatal (bfd_get_filename (abfd));
1680
1681 if (relsize > 0)
1682 {
1683 rel_ppstart = rel_pp = xmalloc (relsize);
1684 rel_count = bfd_canonicalize_reloc (abfd, section, rel_pp, syms);
1685 if (rel_count < 0)
1686 bfd_fatal (bfd_get_filename (abfd));
1687
1688 /* Sort the relocs by address. */
1689 qsort (rel_pp, rel_count, sizeof (arelent *), compare_relocs);
1690 }
1691 }
1692
1693 }
1694 rel_ppend = rel_pp + rel_count;
1695
1696 data = xmalloc (datasize);
1697
1698 bfd_get_section_contents (abfd, section, data, 0, datasize);
1699
1700 paux->sec = section;
1701 pinfo->buffer = data;
1702 pinfo->buffer_vma = section->vma;
1703 pinfo->buffer_length = datasize;
1704 pinfo->section = section;
1705
1706 if (start_address == (bfd_vma) -1
1707 || start_address < pinfo->buffer_vma)
1708 addr_offset = 0;
1709 else
1710 addr_offset = start_address - pinfo->buffer_vma;
1711
1712 if (stop_address == (bfd_vma) -1)
1713 stop_offset = datasize / opb;
1714 else
1715 {
1716 if (stop_address < pinfo->buffer_vma)
1717 stop_offset = 0;
1718 else
1719 stop_offset = stop_address - pinfo->buffer_vma;
1720 if (stop_offset > pinfo->buffer_length / opb)
1721 stop_offset = pinfo->buffer_length / opb;
1722 }
1723
1724 /* Skip over the relocs belonging to addresses below the
1725 start address. */
1726 while (rel_pp < rel_ppend
1727 && (*rel_pp)->address < rel_offset + addr_offset)
1728 ++rel_pp;
1729
1730 printf (_("Disassembly of section %s:\n"), section->name);
1731
1732 /* Find the nearest symbol forwards from our current position. */
3b9ad1cc 1733 paux->require_sec = TRUE;
22a398e1 1734 sym = find_symbol_for_address (section->vma + addr_offset, info, &place);
3b9ad1cc 1735 paux->require_sec = FALSE;
155e0d23
NC
1736
1737 /* Disassemble a block of instructions up to the address associated with
1738 the symbol we have just found. Then print the symbol and find the
1739 next symbol on. Repeat until we have disassembled the entire section
1740 or we have reached the end of the address range we are interested in. */
1741 while (addr_offset < stop_offset)
1742 {
22a398e1 1743 bfd_vma addr;
155e0d23
NC
1744 asymbol *nextsym;
1745 unsigned long nextstop_offset;
1746 bfd_boolean insns;
1747
22a398e1
NC
1748 addr = section->vma + addr_offset;
1749
1750 if (sym != NULL && bfd_asymbol_value (sym) <= addr)
155e0d23
NC
1751 {
1752 int x;
1753
1754 for (x = place;
1755 (x < sorted_symcount
22a398e1 1756 && (bfd_asymbol_value (sorted_syms[x]) <= addr));
155e0d23
NC
1757 ++x)
1758 continue;
1759
22a398e1 1760 pinfo->symbols = sorted_syms + place;
155e0d23
NC
1761 pinfo->num_symbols = x - place;
1762 }
1763 else
22a398e1
NC
1764 {
1765 pinfo->symbols = NULL;
1766 pinfo->num_symbols = 0;
1767 }
155e0d23
NC
1768
1769 if (! prefix_addresses)
1770 {
1771 pinfo->fprintf_func (pinfo->stream, "\n");
22a398e1 1772 objdump_print_addr_with_sym (abfd, section, sym, addr,
155e0d23
NC
1773 pinfo, FALSE);
1774 pinfo->fprintf_func (pinfo->stream, ":\n");
1775 }
1776
22a398e1 1777 if (sym != NULL && bfd_asymbol_value (sym) > addr)
155e0d23
NC
1778 nextsym = sym;
1779 else if (sym == NULL)
1780 nextsym = NULL;
1781 else
1782 {
22a398e1
NC
1783#define is_valid_next_sym(SYM) \
1784 ((SYM)->section == section \
1785 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
1786 && pinfo->symbol_is_valid (SYM, pinfo))
1787
155e0d23
NC
1788 /* Search forward for the next appropriate symbol in
1789 SECTION. Note that all the symbols are sorted
1790 together into one big array, and that some sections
1791 may have overlapping addresses. */
1792 while (place < sorted_symcount
22a398e1 1793 && ! is_valid_next_sym (sorted_syms [place]))
155e0d23 1794 ++place;
22a398e1 1795
155e0d23
NC
1796 if (place >= sorted_symcount)
1797 nextsym = NULL;
1798 else
1799 nextsym = sorted_syms[place];
1800 }
1801
22a398e1
NC
1802 if (sym != NULL && bfd_asymbol_value (sym) > addr)
1803 nextstop_offset = bfd_asymbol_value (sym) - section->vma;
155e0d23
NC
1804 else if (nextsym == NULL)
1805 nextstop_offset = stop_offset;
1806 else
22a398e1
NC
1807 nextstop_offset = bfd_asymbol_value (nextsym) - section->vma;
1808
1809 if (nextstop_offset > stop_offset)
1810 nextstop_offset = stop_offset;
155e0d23
NC
1811
1812 /* If a symbol is explicitly marked as being an object
1813 rather than a function, just dump the bytes without
1814 disassembling them. */
1815 if (disassemble_all
1816 || sym == NULL
22a398e1 1817 || bfd_asymbol_value (sym) > addr
155e0d23
NC
1818 || ((sym->flags & BSF_OBJECT) == 0
1819 && (strstr (bfd_asymbol_name (sym), "gnu_compiled")
1820 == NULL)
1821 && (strstr (bfd_asymbol_name (sym), "gcc2_compiled")
1822 == NULL))
1823 || (sym->flags & BSF_FUNCTION) != 0)
1824 insns = TRUE;
1825 else
1826 insns = FALSE;
1827
1828 disassemble_bytes (pinfo, paux->disassemble_fn, insns, data,
1829 addr_offset, nextstop_offset,
1830 rel_offset, &rel_pp, rel_ppend);
1831
1832 addr_offset = nextstop_offset;
1833 sym = nextsym;
1834 }
1835
1836 free (data);
1837
1838 if (rel_ppstart != NULL)
1839 free (rel_ppstart);
1840}
1841
252b5132
RH
1842/* Disassemble the contents of an object file. */
1843
1844static void
46dca2e0 1845disassemble_data (bfd *abfd)
252b5132 1846{
252b5132
RH
1847 struct disassemble_info disasm_info;
1848 struct objdump_disasm_info aux;
4c45e5c9 1849 long i;
252b5132
RH
1850
1851 print_files = NULL;
1852 prev_functionname = NULL;
1853 prev_line = -1;
1854
1855 /* We make a copy of syms to sort. We don't want to sort syms
1856 because that will screw up the relocs. */
4c45e5c9
JJ
1857 sorted_symcount = symcount ? symcount : dynsymcount;
1858 sorted_syms = xmalloc ((sorted_symcount + synthcount) * sizeof (asymbol *));
1859 memcpy (sorted_syms, symcount ? syms : dynsyms,
1860 sorted_symcount * sizeof (asymbol *));
252b5132 1861
4c45e5c9
JJ
1862 sorted_symcount = remove_useless_symbols (sorted_syms, sorted_symcount);
1863
1864 for (i = 0; i < synthcount; ++i)
1865 {
1866 sorted_syms[sorted_symcount] = synthsyms + i;
1867 ++sorted_symcount;
1868 }
252b5132 1869
98a91d6a 1870 /* Sort the symbols into section and symbol order. */
252b5132
RH
1871 qsort (sorted_syms, sorted_symcount, sizeof (asymbol *), compare_symbols);
1872
22a398e1 1873 init_disassemble_info (&disasm_info, stdout, (fprintf_ftype) fprintf);
98a91d6a 1874
46dca2e0 1875 disasm_info.application_data = (void *) &aux;
252b5132 1876 aux.abfd = abfd;
b34976b6 1877 aux.require_sec = FALSE;
155e0d23
NC
1878 aux.dynrelbuf = NULL;
1879 aux.dynrelcount = 0;
ce04548a
NC
1880#ifdef DISASSEMBLER_NEEDS_RELOCS
1881 aux.reloc = NULL;
1882#endif
155e0d23 1883
252b5132
RH
1884 disasm_info.print_address_func = objdump_print_address;
1885 disasm_info.symbol_at_address_func = objdump_symbol_at_address;
1886
d3ba0551 1887 if (machine != NULL)
252b5132
RH
1888 {
1889 const bfd_arch_info_type *info = bfd_scan_arch (machine);
98a91d6a 1890
252b5132 1891 if (info == NULL)
98a91d6a
NC
1892 fatal (_("Can't use supplied machine %s"), machine);
1893
252b5132
RH
1894 abfd->arch_info = info;
1895 }
1896
1897 if (endian != BFD_ENDIAN_UNKNOWN)
1898 {
1899 struct bfd_target *xvec;
1900
d3ba0551 1901 xvec = xmalloc (sizeof (struct bfd_target));
252b5132
RH
1902 memcpy (xvec, abfd->xvec, sizeof (struct bfd_target));
1903 xvec->byteorder = endian;
1904 abfd->xvec = xvec;
1905 }
1906
155e0d23
NC
1907 /* Use libopcodes to locate a suitable disassembler. */
1908 aux.disassemble_fn = disassembler (abfd);
1909 if (!aux.disassemble_fn)
252b5132 1910 {
37cc8ec1
AM
1911 non_fatal (_("Can't disassemble for architecture %s\n"),
1912 bfd_printable_arch_mach (bfd_get_arch (abfd), 0));
75cd796a 1913 exit_status = 1;
252b5132
RH
1914 return;
1915 }
1916
1917 disasm_info.flavour = bfd_get_flavour (abfd);
1918 disasm_info.arch = bfd_get_arch (abfd);
1919 disasm_info.mach = bfd_get_mach (abfd);
dd92f639 1920 disasm_info.disassembler_options = disassembler_options;
155e0d23 1921 disasm_info.octets_per_byte = bfd_octets_per_byte (abfd);
0bcb06d2
AS
1922 disasm_info.skip_zeroes = DEFAULT_SKIP_ZEROES;
1923 disasm_info.skip_zeroes_at_end = DEFAULT_SKIP_ZEROES_AT_END;
0af11b59 1924
252b5132 1925 if (bfd_big_endian (abfd))
a8a9050d 1926 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_BIG;
252b5132 1927 else if (bfd_little_endian (abfd))
a8a9050d 1928 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_LITTLE;
252b5132
RH
1929 else
1930 /* ??? Aborting here seems too drastic. We could default to big or little
1931 instead. */
1932 disasm_info.endian = BFD_ENDIAN_UNKNOWN;
1933
22a398e1
NC
1934 /* Allow the target to customize the info structure. */
1935 disassemble_init_for_target (& disasm_info);
1936
155e0d23
NC
1937 /* Pre-load the dynamic relocs if we are going
1938 to be dumping them along with the disassembly. */
fd7bb956
AM
1939 if (dump_dynamic_reloc_info)
1940 {
1941 long relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
155e0d23 1942
fd7bb956
AM
1943 if (relsize < 0)
1944 bfd_fatal (bfd_get_filename (abfd));
1945
1946 if (relsize > 0)
1947 {
155e0d23 1948 aux.dynrelbuf = xmalloc (relsize);
3b9ad1cc
AM
1949 aux.dynrelcount = bfd_canonicalize_dynamic_reloc (abfd,
1950 aux.dynrelbuf,
1951 dynsyms);
155e0d23 1952 if (aux.dynrelcount < 0)
fd7bb956
AM
1953 bfd_fatal (bfd_get_filename (abfd));
1954
1955 /* Sort the relocs by address. */
3b9ad1cc
AM
1956 qsort (aux.dynrelbuf, aux.dynrelcount, sizeof (arelent *),
1957 compare_relocs);
fd7bb956
AM
1958 }
1959 }
1960
155e0d23 1961 bfd_map_over_sections (abfd, disassemble_section, & disasm_info);
98a91d6a 1962
155e0d23
NC
1963 if (aux.dynrelbuf != NULL)
1964 free (aux.dynrelbuf);
252b5132
RH
1965 free (sorted_syms);
1966}
1967\f
29ca8dc5
NS
1968/* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
1969 it. Return NULL on failure. */
252b5132 1970
29ca8dc5
NS
1971static char *
1972read_section_stabs (bfd *abfd, const char *sect_name, bfd_size_type *size_ptr)
252b5132 1973{
29ca8dc5
NS
1974 asection *stabsect;
1975 bfd_size_type size;
1976 char *contents;
252b5132 1977
29ca8dc5 1978 stabsect = bfd_get_section_by_name (abfd, sect_name);
155e0d23 1979 if (stabsect == NULL)
252b5132 1980 {
29ca8dc5 1981 printf (_("No %s section present\n\n"), sect_name);
b34976b6 1982 return FALSE;
252b5132
RH
1983 }
1984
29ca8dc5
NS
1985 size = bfd_section_size (abfd, stabsect);
1986 contents = xmalloc (size);
0af11b59 1987
29ca8dc5 1988 if (! bfd_get_section_contents (abfd, stabsect, contents, 0, size))
252b5132 1989 {
37cc8ec1 1990 non_fatal (_("Reading %s section of %s failed: %s"),
29ca8dc5 1991 sect_name, bfd_get_filename (abfd),
37cc8ec1 1992 bfd_errmsg (bfd_get_error ()));
29ca8dc5 1993 free (contents);
75cd796a 1994 exit_status = 1;
29ca8dc5 1995 return NULL;
252b5132
RH
1996 }
1997
29ca8dc5 1998 *size_ptr = size;
252b5132 1999
29ca8dc5 2000 return contents;
252b5132
RH
2001}
2002
2003/* Stabs entries use a 12 byte format:
2004 4 byte string table index
2005 1 byte stab type
2006 1 byte stab other field
2007 2 byte stab desc field
2008 4 byte stab value
2009 FIXME: This will have to change for a 64 bit object format. */
2010
46dca2e0
NC
2011#define STRDXOFF (0)
2012#define TYPEOFF (4)
2013#define OTHEROFF (5)
2014#define DESCOFF (6)
2015#define VALOFF (8)
252b5132
RH
2016#define STABSIZE (12)
2017
2018/* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2019 using string table section STRSECT_NAME (in `strtab'). */
2020
2021static void
3b9ad1cc
AM
2022print_section_stabs (bfd *abfd,
2023 const char *stabsect_name,
2024 unsigned *string_offset_ptr)
252b5132
RH
2025{
2026 int i;
46dca2e0 2027 unsigned file_string_table_offset = 0;
29ca8dc5 2028 unsigned next_file_string_table_offset = *string_offset_ptr;
252b5132
RH
2029 bfd_byte *stabp, *stabs_end;
2030
2031 stabp = stabs;
2032 stabs_end = stabp + stab_size;
2033
2034 printf (_("Contents of %s section:\n\n"), stabsect_name);
2035 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2036
2037 /* Loop through all symbols and print them.
2038
2039 We start the index at -1 because there is a dummy symbol on
2040 the front of stabs-in-{coff,elf} sections that supplies sizes. */
252b5132
RH
2041 for (i = -1; stabp < stabs_end; stabp += STABSIZE, i++)
2042 {
2043 const char *name;
2044 unsigned long strx;
2045 unsigned char type, other;
2046 unsigned short desc;
2047 bfd_vma value;
2048
2049 strx = bfd_h_get_32 (abfd, stabp + STRDXOFF);
2050 type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
2051 other = bfd_h_get_8 (abfd, stabp + OTHEROFF);
2052 desc = bfd_h_get_16 (abfd, stabp + DESCOFF);
2053 value = bfd_h_get_32 (abfd, stabp + VALOFF);
2054
2055 printf ("\n%-6d ", i);
2056 /* Either print the stab name, or, if unnamed, print its number
0af11b59 2057 again (makes consistent formatting for tools like awk). */
252b5132
RH
2058 name = bfd_get_stab_name (type);
2059 if (name != NULL)
2060 printf ("%-6s", name);
2061 else if (type == N_UNDF)
2062 printf ("HdrSym");
2063 else
2064 printf ("%-6d", type);
2065 printf (" %-6d %-6d ", other, desc);
d8180c76 2066 bfd_printf_vma (abfd, value);
252b5132
RH
2067 printf (" %-6lu", strx);
2068
2069 /* Symbols with type == 0 (N_UNDF) specify the length of the
2070 string table associated with this file. We use that info
2071 to know how to relocate the *next* file's string table indices. */
252b5132
RH
2072 if (type == N_UNDF)
2073 {
2074 file_string_table_offset = next_file_string_table_offset;
2075 next_file_string_table_offset += value;
2076 }
2077 else
2078 {
2079 /* Using the (possibly updated) string table offset, print the
2080 string (if any) associated with this symbol. */
252b5132
RH
2081 if ((strx + file_string_table_offset) < stabstr_size)
2082 printf (" %s", &strtab[strx + file_string_table_offset]);
2083 else
2084 printf (" *");
2085 }
2086 }
2087 printf ("\n\n");
29ca8dc5 2088 *string_offset_ptr = next_file_string_table_offset;
252b5132
RH
2089}
2090
155e0d23
NC
2091typedef struct
2092{
2093 const char * section_name;
2094 const char * string_section_name;
29ca8dc5 2095 unsigned string_offset;
155e0d23
NC
2096}
2097stab_section_names;
2098
252b5132 2099static void
155e0d23 2100find_stabs_section (bfd *abfd, asection *section, void *names)
252b5132 2101{
155e0d23
NC
2102 int len;
2103 stab_section_names * sought = (stab_section_names *) names;
252b5132
RH
2104
2105 /* Check for section names for which stabsect_name is a prefix, to
29ca8dc5 2106 handle .stab.N, etc. */
155e0d23
NC
2107 len = strlen (sought->section_name);
2108
2109 /* If the prefix matches, and the files section name ends with a
2110 nul or a digit, then we match. I.e., we want either an exact
2111 match or a section followed by a number. */
2112 if (strncmp (sought->section_name, section->name, len) == 0
2113 && (section->name[len] == 0
29ca8dc5 2114 || (section->name[len] == '.' && ISDIGIT (section->name[len + 1]))))
252b5132 2115 {
29ca8dc5
NS
2116 if (strtab == NULL)
2117 strtab = read_section_stabs (abfd, sought->string_section_name,
2118 &stabstr_size);
2119
2120 if (strtab)
252b5132 2121 {
9210d879
AM
2122 stabs = (bfd_byte *) read_section_stabs (abfd, section->name,
2123 &stab_size);
29ca8dc5
NS
2124 if (stabs)
2125 print_section_stabs (abfd, section->name, &sought->string_offset);
252b5132
RH
2126 }
2127 }
2128}
98a91d6a 2129
155e0d23
NC
2130static void
2131dump_stabs_section (bfd *abfd, char *stabsect_name, char *strsect_name)
2132{
2133 stab_section_names s;
2134
2135 s.section_name = stabsect_name;
2136 s.string_section_name = strsect_name;
29ca8dc5
NS
2137 s.string_offset = 0;
2138
155e0d23 2139 bfd_map_over_sections (abfd, find_stabs_section, & s);
29ca8dc5
NS
2140
2141 free (strtab);
2142 strtab = NULL;
155e0d23
NC
2143}
2144
2145/* Dump the any sections containing stabs debugging information. */
2146
2147static void
2148dump_stabs (bfd *abfd)
2149{
2150 dump_stabs_section (abfd, ".stab", ".stabstr");
2151 dump_stabs_section (abfd, ".stab.excl", ".stab.exclstr");
2152 dump_stabs_section (abfd, ".stab.index", ".stab.indexstr");
2153 dump_stabs_section (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2154}
252b5132
RH
2155\f
2156static void
46dca2e0 2157dump_bfd_header (bfd *abfd)
252b5132
RH
2158{
2159 char *comma = "";
2160
2161 printf (_("architecture: %s, "),
2162 bfd_printable_arch_mach (bfd_get_arch (abfd),
2163 bfd_get_mach (abfd)));
2164 printf (_("flags 0x%08x:\n"), abfd->flags);
2165
2166#define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
2167 PF (HAS_RELOC, "HAS_RELOC");
2168 PF (EXEC_P, "EXEC_P");
2169 PF (HAS_LINENO, "HAS_LINENO");
2170 PF (HAS_DEBUG, "HAS_DEBUG");
2171 PF (HAS_SYMS, "HAS_SYMS");
2172 PF (HAS_LOCALS, "HAS_LOCALS");
2173 PF (DYNAMIC, "DYNAMIC");
2174 PF (WP_TEXT, "WP_TEXT");
2175 PF (D_PAGED, "D_PAGED");
2176 PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE");
026df7c5 2177 PF (HAS_LOAD_PAGE, "HAS_LOAD_PAGE");
252b5132 2178 printf (_("\nstart address 0x"));
d8180c76 2179 bfd_printf_vma (abfd, abfd->start_address);
252b5132
RH
2180 printf ("\n");
2181}
98a91d6a 2182
252b5132
RH
2183\f
2184static void
46dca2e0 2185dump_bfd_private_header (bfd *abfd)
252b5132
RH
2186{
2187 bfd_print_private_bfd_data (abfd, stdout);
2188}
2189
155e0d23
NC
2190\f
2191/* Display a section in hexadecimal format with associated characters.
2192 Each line prefixed by the zero padded address. */
d24de309 2193
252b5132 2194static void
155e0d23 2195dump_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNUSED)
252b5132 2196{
155e0d23
NC
2197 bfd_byte *data = 0;
2198 bfd_size_type datasize;
2199 bfd_size_type addr_offset;
2200 bfd_size_type start_offset;
2201 bfd_size_type stop_offset;
2202 unsigned int opb = bfd_octets_per_byte (abfd);
2203 /* Bytes per line. */
2204 const int onaline = 16;
2205 char buf[64];
2206 int count;
2207 int width;
2208
2209 if ((section->flags & SEC_HAS_CONTENTS) == 0)
2210 return;
2211
2212 if (! process_section_p (section))
2213 return;
2214
2215 if ((datasize = bfd_section_size (abfd, section)) == 0)
2216 return;
2217
2218 printf (_("Contents of section %s:\n"), section->name);
2219
2220 data = xmalloc (datasize);
2221
2222 bfd_get_section_contents (abfd, section, data, 0, datasize);
2223
2224 /* Compute the address range to display. */
2225 if (start_address == (bfd_vma) -1
2226 || start_address < section->vma)
2227 start_offset = 0;
2228 else
2229 start_offset = start_address - section->vma;
2230
2231 if (stop_address == (bfd_vma) -1)
2232 stop_offset = datasize / opb;
2233 else
252b5132 2234 {
155e0d23
NC
2235 if (stop_address < section->vma)
2236 stop_offset = 0;
2237 else
2238 stop_offset = stop_address - section->vma;
252b5132 2239
155e0d23
NC
2240 if (stop_offset > datasize / opb)
2241 stop_offset = datasize / opb;
252b5132
RH
2242 }
2243
155e0d23 2244 width = 4;
026df7c5 2245
155e0d23
NC
2246 bfd_sprintf_vma (abfd, buf, start_offset + section->vma);
2247 if (strlen (buf) >= sizeof (buf))
2248 abort ();
026df7c5 2249
155e0d23
NC
2250 count = 0;
2251 while (buf[count] == '0' && buf[count+1] != '\0')
2252 count++;
2253 count = strlen (buf) - count;
2254 if (count > width)
2255 width = count;
252b5132 2256
155e0d23
NC
2257 bfd_sprintf_vma (abfd, buf, stop_offset + section->vma - 1);
2258 if (strlen (buf) >= sizeof (buf))
2259 abort ();
026df7c5 2260
155e0d23
NC
2261 count = 0;
2262 while (buf[count] == '0' && buf[count+1] != '\0')
2263 count++;
2264 count = strlen (buf) - count;
2265 if (count > width)
2266 width = count;
026df7c5 2267
155e0d23
NC
2268 for (addr_offset = start_offset;
2269 addr_offset < stop_offset; addr_offset += onaline / opb)
d24de309 2270 {
155e0d23 2271 bfd_size_type j;
d24de309 2272
155e0d23
NC
2273 bfd_sprintf_vma (abfd, buf, (addr_offset + section->vma));
2274 count = strlen (buf);
2275 if ((size_t) count >= sizeof (buf))
2276 abort ();
d24de309 2277
155e0d23
NC
2278 putchar (' ');
2279 while (count < width)
252b5132 2280 {
155e0d23
NC
2281 putchar ('0');
2282 count++;
2283 }
2284 fputs (buf + count - width, stdout);
2285 putchar (' ');
252b5132 2286
155e0d23
NC
2287 for (j = addr_offset * opb;
2288 j < addr_offset * opb + onaline; j++)
2289 {
2290 if (j < stop_offset * opb)
2291 printf ("%02x", (unsigned) (data[j]));
2292 else
2293 printf (" ");
2294 if ((j & 3) == 3)
2295 printf (" ");
252b5132
RH
2296 }
2297
155e0d23
NC
2298 printf (" ");
2299 for (j = addr_offset * opb;
2300 j < addr_offset * opb + onaline; j++)
2301 {
2302 if (j >= stop_offset * opb)
2303 printf (" ");
2304 else
2305 printf ("%c", ISPRINT (data[j]) ? data[j] : '.');
2306 }
2307 putchar ('\n');
252b5132 2308 }
155e0d23 2309 free (data);
252b5132 2310}
155e0d23 2311
98a91d6a 2312/* Actually display the various requested regions. */
252b5132
RH
2313
2314static void
46dca2e0 2315dump_data (bfd *abfd)
252b5132 2316{
155e0d23 2317 bfd_map_over_sections (abfd, dump_section, NULL);
252b5132
RH
2318}
2319
98a91d6a
NC
2320/* Should perhaps share code and display with nm? */
2321
252b5132 2322static void
46dca2e0 2323dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic)
252b5132
RH
2324{
2325 asymbol **current;
2326 long max;
2327 long count;
2328
2329 if (dynamic)
2330 {
2331 current = dynsyms;
2332 max = dynsymcount;
252b5132
RH
2333 printf ("DYNAMIC SYMBOL TABLE:\n");
2334 }
2335 else
2336 {
2337 current = syms;
2338 max = symcount;
252b5132
RH
2339 printf ("SYMBOL TABLE:\n");
2340 }
2341
a1df01d1
AM
2342 if (max == 0)
2343 printf (_("no symbols\n"));
2344
252b5132
RH
2345 for (count = 0; count < max; count++)
2346 {
155e0d23
NC
2347 bfd *cur_bfd;
2348
2349 if (*current == NULL)
83ef0798 2350 printf (_("no information for symbol number %ld\n"), count);
155e0d23
NC
2351
2352 else if ((cur_bfd = bfd_asymbol_bfd (*current)) == NULL)
83ef0798 2353 printf (_("could not determine the type of symbol number %ld\n"),
155e0d23
NC
2354 count);
2355
661f7c35
NC
2356 else if (process_section_p ((* current)->section)
2357 && (dump_special_syms
2358 || !bfd_is_target_special_symbol (cur_bfd, *current)))
252b5132 2359 {
155e0d23 2360 const char *name = (*current)->name;
252b5132 2361
155e0d23 2362 if (do_demangle && name != NULL && *name != '\0')
252b5132 2363 {
252b5132
RH
2364 char *alloc;
2365
155e0d23
NC
2366 /* If we want to demangle the name, we demangle it
2367 here, and temporarily clobber it while calling
2368 bfd_print_symbol. FIXME: This is a gross hack. */
2369 alloc = demangle (cur_bfd, name);
2370 (*current)->name = alloc;
252b5132
RH
2371 bfd_print_symbol (cur_bfd, stdout, *current,
2372 bfd_print_symbol_all);
252b5132 2373 (*current)->name = name;
155e0d23 2374 free (alloc);
252b5132 2375 }
252b5132 2376 else
155e0d23
NC
2377 bfd_print_symbol (cur_bfd, stdout, *current,
2378 bfd_print_symbol_all);
83ef0798 2379 printf ("\n");
252b5132 2380 }
661f7c35 2381
155e0d23 2382 current++;
252b5132 2383 }
155e0d23 2384 printf ("\n\n");
252b5132 2385}
155e0d23 2386\f
252b5132 2387static void
46dca2e0 2388dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount)
252b5132
RH
2389{
2390 arelent **p;
2391 char *last_filename, *last_functionname;
2392 unsigned int last_line;
2393
2394 /* Get column headers lined up reasonably. */
2395 {
2396 static int width;
98a91d6a 2397
252b5132
RH
2398 if (width == 0)
2399 {
2400 char buf[30];
155e0d23 2401
d8180c76 2402 bfd_sprintf_vma (abfd, buf, (bfd_vma) -1);
252b5132
RH
2403 width = strlen (buf) - 7;
2404 }
2405 printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
2406 }
2407
2408 last_filename = NULL;
2409 last_functionname = NULL;
2410 last_line = 0;
2411
d3ba0551 2412 for (p = relpp; relcount && *p != NULL; p++, relcount--)
252b5132
RH
2413 {
2414 arelent *q = *p;
2415 const char *filename, *functionname;
2416 unsigned int line;
2417 const char *sym_name;
2418 const char *section_name;
2419
2420 if (start_address != (bfd_vma) -1
2421 && q->address < start_address)
2422 continue;
2423 if (stop_address != (bfd_vma) -1
2424 && q->address > stop_address)
2425 continue;
2426
2427 if (with_line_numbers
2428 && sec != NULL
2429 && bfd_find_nearest_line (abfd, sec, syms, q->address,
2430 &filename, &functionname, &line))
2431 {
2432 if (functionname != NULL
2433 && (last_functionname == NULL
2434 || strcmp (functionname, last_functionname) != 0))
2435 {
2436 printf ("%s():\n", functionname);
2437 if (last_functionname != NULL)
2438 free (last_functionname);
2439 last_functionname = xstrdup (functionname);
2440 }
98a91d6a 2441
252b5132
RH
2442 if (line > 0
2443 && (line != last_line
2444 || (filename != NULL
2445 && last_filename != NULL
2446 && strcmp (filename, last_filename) != 0)))
2447 {
2448 printf ("%s:%u\n", filename == NULL ? "???" : filename, line);
2449 last_line = line;
2450 if (last_filename != NULL)
2451 free (last_filename);
2452 if (filename == NULL)
2453 last_filename = NULL;
2454 else
2455 last_filename = xstrdup (filename);
2456 }
2457 }
2458
2459 if (q->sym_ptr_ptr && *q->sym_ptr_ptr)
2460 {
2461 sym_name = (*(q->sym_ptr_ptr))->name;
2462 section_name = (*(q->sym_ptr_ptr))->section->name;
2463 }
2464 else
2465 {
2466 sym_name = NULL;
2467 section_name = NULL;
2468 }
98a91d6a 2469
f9ecb0a4
JJ
2470 bfd_printf_vma (abfd, q->address);
2471 if (q->howto == NULL)
2472 printf (" *unknown* ");
2473 else if (q->howto->name)
2474 printf (" %-16s ", q->howto->name);
2475 else
2476 printf (" %-16d ", q->howto->type);
252b5132 2477 if (sym_name)
f9ecb0a4 2478 objdump_print_symname (abfd, NULL, *q->sym_ptr_ptr);
252b5132
RH
2479 else
2480 {
d3ba0551 2481 if (section_name == NULL)
252b5132 2482 section_name = "*unknown*";
f9ecb0a4 2483 printf ("[%s]", section_name);
252b5132 2484 }
98a91d6a 2485
252b5132
RH
2486 if (q->addend)
2487 {
2488 printf ("+0x");
d8180c76 2489 bfd_printf_vma (abfd, q->addend);
252b5132 2490 }
98a91d6a 2491
252b5132
RH
2492 printf ("\n");
2493 }
2494}
43ac9881 2495
155e0d23 2496static void
3b9ad1cc
AM
2497dump_relocs_in_section (bfd *abfd,
2498 asection *section,
2499 void *dummy ATTRIBUTE_UNUSED)
155e0d23
NC
2500{
2501 arelent **relpp;
2502 long relcount;
2503 long relsize;
2504
2505 if ( bfd_is_abs_section (section)
2506 || bfd_is_und_section (section)
2507 || bfd_is_com_section (section)
2508 || (! process_section_p (section))
2509 || ((section->flags & SEC_RELOC) == 0))
2510 return;
2511
2512 relsize = bfd_get_reloc_upper_bound (abfd, section);
2513 if (relsize < 0)
2514 bfd_fatal (bfd_get_filename (abfd));
2515
2516 printf ("RELOCATION RECORDS FOR [%s]:", section->name);
2517
2518 if (relsize == 0)
2519 {
2520 printf (" (none)\n\n");
2521 return;
2522 }
2523
2524 relpp = xmalloc (relsize);
2525 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms);
2526
2527 if (relcount < 0)
2528 bfd_fatal (bfd_get_filename (abfd));
2529 else if (relcount == 0)
2530 printf (" (none)\n\n");
2531 else
2532 {
2533 printf ("\n");
2534 dump_reloc_set (abfd, section, relpp, relcount);
2535 printf ("\n\n");
2536 }
2537 free (relpp);
2538}
2539
2540static void
2541dump_relocs (bfd *abfd)
2542{
2543 bfd_map_over_sections (abfd, dump_relocs_in_section, NULL);
2544}
2545
2546static void
2547dump_dynamic_relocs (bfd *abfd)
2548{
2549 long relsize;
2550 arelent **relpp;
2551 long relcount;
2552
2553 relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
2554 if (relsize < 0)
2555 bfd_fatal (bfd_get_filename (abfd));
2556
2557 printf ("DYNAMIC RELOCATION RECORDS");
2558
2559 if (relsize == 0)
2560 printf (" (none)\n\n");
2561 else
2562 {
2563 relpp = xmalloc (relsize);
2564 relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms);
2565
2566 if (relcount < 0)
2567 bfd_fatal (bfd_get_filename (abfd));
2568 else if (relcount == 0)
2569 printf (" (none)\n\n");
2570 else
2571 {
2572 printf ("\n");
2573 dump_reloc_set (abfd, NULL, relpp, relcount);
2574 printf ("\n\n");
2575 }
2576 free (relpp);
2577 }
2578}
2579
43ac9881
AM
2580/* Creates a table of paths, to search for source files. */
2581
2582static void
2583add_include_path (const char *path)
2584{
2585 if (path[0] == 0)
2586 return;
2587 include_path_count++;
2588 include_paths = xrealloc (include_paths,
2589 include_path_count * sizeof (*include_paths));
2590#ifdef HAVE_DOS_BASED_FILE_SYSTEM
2591 if (path[1] == ':' && path[2] == 0)
2592 path = concat (path, ".", (const char *) 0);
2593#endif
2594 include_paths[include_path_count - 1] = path;
2595}
155e0d23
NC
2596
2597static void
3b9ad1cc
AM
2598adjust_addresses (bfd *abfd ATTRIBUTE_UNUSED,
2599 asection *section,
bc79cded 2600 void *arg)
155e0d23 2601{
bc79cded
L
2602 if ((section->flags & SEC_DEBUGGING) == 0)
2603 {
2604 bfd_boolean *has_reloc_p = (bfd_boolean *) arg;
2605 section->vma += adjust_section_vma;
2606 if (*has_reloc_p)
2607 section->lma += adjust_section_vma;
2608 }
155e0d23
NC
2609}
2610
2611/* Dump selected contents of ABFD. */
2612
2613static void
2614dump_bfd (bfd *abfd)
2615{
2616 /* If we are adjusting section VMA's, change them all now. Changing
2617 the BFD information is a hack. However, we must do it, or
2618 bfd_find_nearest_line will not do the right thing. */
2619 if (adjust_section_vma != 0)
bc79cded
L
2620 {
2621 bfd_boolean has_reloc = (abfd->flags & HAS_RELOC);
2622 bfd_map_over_sections (abfd, adjust_addresses, &has_reloc);
2623 }
155e0d23
NC
2624
2625 if (! dump_debugging_tags)
2626 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd),
2627 abfd->xvec->name);
2628 if (dump_ar_hdrs)
2629 print_arelt_descr (stdout, abfd, TRUE);
2630 if (dump_file_header)
2631 dump_bfd_header (abfd);
2632 if (dump_private_headers)
2633 dump_bfd_private_header (abfd);
2634 if (! dump_debugging_tags)
2635 putchar ('\n');
2636 if (dump_section_headers)
2637 dump_headers (abfd);
2638
2639 if (dump_symtab || dump_reloc_info || disassemble || dump_debugging)
2640 syms = slurp_symtab (abfd);
4c45e5c9
JJ
2641 if (dump_dynamic_symtab || dump_dynamic_reloc_info
2642 || (disassemble && bfd_get_dynamic_symtab_upper_bound (abfd) > 0))
155e0d23 2643 dynsyms = slurp_dynamic_symtab (abfd);
90e3cdf2 2644 if (disassemble)
4c45e5c9 2645 {
c9727e01
AM
2646 synthcount = bfd_get_synthetic_symtab (abfd, symcount, syms,
2647 dynsymcount, dynsyms, &synthsyms);
2648 if (synthcount < 0)
2649 synthcount = 0;
4c45e5c9 2650 }
155e0d23
NC
2651
2652 if (dump_symtab)
2653 dump_symbols (abfd, FALSE);
2654 if (dump_dynamic_symtab)
2655 dump_symbols (abfd, TRUE);
2656 if (dump_stab_section_info)
2657 dump_stabs (abfd);
2658 if (dump_reloc_info && ! disassemble)
2659 dump_relocs (abfd);
2660 if (dump_dynamic_reloc_info && ! disassemble)
2661 dump_dynamic_relocs (abfd);
2662 if (dump_section_contents)
2663 dump_data (abfd);
2664 if (disassemble)
2665 disassemble_data (abfd);
2666
2667 if (dump_debugging)
2668 {
2669 void *dhandle;
2670
2671 dhandle = read_debugging_info (abfd, syms, symcount);
2672 if (dhandle != NULL)
2673 {
2674 if (! print_debugging_info (stdout, dhandle, abfd, syms, demangle,
2675 dump_debugging_tags ? TRUE : FALSE))
2676 {
2677 non_fatal (_("%s: printing debugging information failed"),
2678 bfd_get_filename (abfd));
2679 exit_status = 1;
2680 }
2681 }
2682 }
2683
2684 if (syms)
2685 {
2686 free (syms);
2687 syms = NULL;
2688 }
2689
2690 if (dynsyms)
2691 {
2692 free (dynsyms);
2693 dynsyms = NULL;
2694 }
4c45e5c9
JJ
2695
2696 if (synthsyms)
2697 {
2698 free (synthsyms);
2699 synthsyms = NULL;
2700 }
2701
2702 symcount = 0;
2703 dynsymcount = 0;
2704 synthcount = 0;
155e0d23
NC
2705}
2706
2707static void
2708display_bfd (bfd *abfd)
2709{
2710 char **matching;
2711
2712 if (bfd_check_format_matches (abfd, bfd_object, &matching))
2713 {
2714 dump_bfd (abfd);
2715 return;
2716 }
2717
2718 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
2719 {
2720 nonfatal (bfd_get_filename (abfd));
2721 list_matching_formats (matching);
2722 free (matching);
2723 return;
2724 }
2725
2726 if (bfd_get_error () != bfd_error_file_not_recognized)
2727 {
2728 nonfatal (bfd_get_filename (abfd));
2729 return;
2730 }
2731
2732 if (bfd_check_format_matches (abfd, bfd_core, &matching))
2733 {
2734 dump_bfd (abfd);
2735 return;
2736 }
2737
2738 nonfatal (bfd_get_filename (abfd));
2739
2740 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
2741 {
2742 list_matching_formats (matching);
2743 free (matching);
2744 }
2745}
2746
2747static void
2748display_file (char *filename, char *target)
2749{
f24ddbdd
NC
2750 bfd *file;
2751 bfd *arfile = NULL;
2752
2753 if (get_file_size (filename) < 1)
2754 return;
155e0d23
NC
2755
2756 file = bfd_openr (filename, target);
2757 if (file == NULL)
2758 {
2759 nonfatal (filename);
2760 return;
2761 }
2762
2763 /* If the file is an archive, process all of its elements. */
2764 if (bfd_check_format (file, bfd_archive))
2765 {
2766 bfd *last_arfile = NULL;
2767
2768 printf (_("In archive %s:\n"), bfd_get_filename (file));
2769 for (;;)
2770 {
2771 bfd_set_error (bfd_error_no_error);
2772
2773 arfile = bfd_openr_next_archived_file (file, arfile);
2774 if (arfile == NULL)
2775 {
2776 if (bfd_get_error () != bfd_error_no_more_archived_files)
2777 nonfatal (bfd_get_filename (file));
2778 break;
2779 }
2780
2781 display_bfd (arfile);
2782
2783 if (last_arfile != NULL)
2784 bfd_close (last_arfile);
2785 last_arfile = arfile;
2786 }
2787
2788 if (last_arfile != NULL)
2789 bfd_close (last_arfile);
2790 }
2791 else
2792 display_bfd (file);
2793
2794 bfd_close (file);
2795}
252b5132 2796\f
252b5132 2797int
46dca2e0 2798main (int argc, char **argv)
252b5132
RH
2799{
2800 int c;
2801 char *target = default_target;
b34976b6 2802 bfd_boolean seenflag = FALSE;
252b5132 2803
155e0d23
NC
2804#if defined (HAVE_SETLOCALE)
2805#if defined (HAVE_LC_MESSAGES)
252b5132 2806 setlocale (LC_MESSAGES, "");
3882b010 2807#endif
3882b010 2808 setlocale (LC_CTYPE, "");
252b5132 2809#endif
155e0d23 2810
252b5132
RH
2811 bindtextdomain (PACKAGE, LOCALEDIR);
2812 textdomain (PACKAGE);
2813
2814 program_name = *argv;
2815 xmalloc_set_program_name (program_name);
2816
2817 START_PROGRESS (program_name, 0);
2818
2819 bfd_init ();
2820 set_default_bfd_target ();
2821
43ac9881 2822 while ((c = getopt_long (argc, argv, "pib:m:M:VvCdDlfaHhrRtTxsSI:j:wE:zgeG",
252b5132
RH
2823 long_options, (int *) 0))
2824 != EOF)
2825 {
252b5132
RH
2826 switch (c)
2827 {
2828 case 0:
8b53311e 2829 break; /* We've been given a long option. */
252b5132
RH
2830 case 'm':
2831 machine = optarg;
2832 break;
dd92f639 2833 case 'M':
073fbac6 2834 if (disassembler_options)
31e0f3cd 2835 /* Ignore potential memory leak for now. */
46dca2e0
NC
2836 disassembler_options = concat (disassembler_options, ",",
2837 optarg, NULL);
31e0f3cd
NC
2838 else
2839 disassembler_options = optarg;
dd92f639 2840 break;
252b5132 2841 case 'j':
43ac9881 2842 if (only_used == only_size)
6e50c90c
L
2843 {
2844 only_size += 8;
43ac9881 2845 only = xrealloc (only, only_size * sizeof (char *));
6e50c90c
L
2846 }
2847 only [only_used++] = optarg;
252b5132
RH
2848 break;
2849 case 'l':
b34976b6 2850 with_line_numbers = TRUE;
252b5132
RH
2851 break;
2852 case 'b':
2853 target = optarg;
2854 break;
1dada9c5 2855 case 'C':
b34976b6 2856 do_demangle = TRUE;
28c309a2
NC
2857 if (optarg != NULL)
2858 {
2859 enum demangling_styles style;
8b53311e 2860
28c309a2 2861 style = cplus_demangle_name_to_style (optarg);
0af11b59 2862 if (style == unknown_demangling)
28c309a2
NC
2863 fatal (_("unknown demangling style `%s'"),
2864 optarg);
8b53311e 2865
28c309a2 2866 cplus_demangle_set_style (style);
0af11b59 2867 }
1dada9c5
NC
2868 break;
2869 case 'w':
b34976b6 2870 wide_output = TRUE;
1dada9c5
NC
2871 break;
2872 case OPTION_ADJUST_VMA:
2873 adjust_section_vma = parse_vma (optarg, "--adjust-vma");
2874 break;
2875 case OPTION_START_ADDRESS:
2876 start_address = parse_vma (optarg, "--start-address");
2877 break;
2878 case OPTION_STOP_ADDRESS:
2879 stop_address = parse_vma (optarg, "--stop-address");
2880 break;
2881 case 'E':
2882 if (strcmp (optarg, "B") == 0)
2883 endian = BFD_ENDIAN_BIG;
2884 else if (strcmp (optarg, "L") == 0)
2885 endian = BFD_ENDIAN_LITTLE;
2886 else
2887 {
37cc8ec1 2888 non_fatal (_("unrecognized -E option"));
1dada9c5
NC
2889 usage (stderr, 1);
2890 }
2891 break;
2892 case OPTION_ENDIAN:
2893 if (strncmp (optarg, "big", strlen (optarg)) == 0)
2894 endian = BFD_ENDIAN_BIG;
2895 else if (strncmp (optarg, "little", strlen (optarg)) == 0)
2896 endian = BFD_ENDIAN_LITTLE;
2897 else
2898 {
37cc8ec1 2899 non_fatal (_("unrecognized --endian type `%s'"), optarg);
1dada9c5
NC
2900 usage (stderr, 1);
2901 }
2902 break;
8b53311e 2903
252b5132 2904 case 'f':
b34976b6
AM
2905 dump_file_header = TRUE;
2906 seenflag = TRUE;
252b5132
RH
2907 break;
2908 case 'i':
b34976b6
AM
2909 formats_info = TRUE;
2910 seenflag = TRUE;
252b5132 2911 break;
43ac9881
AM
2912 case 'I':
2913 add_include_path (optarg);
2914 break;
252b5132 2915 case 'p':
b34976b6
AM
2916 dump_private_headers = TRUE;
2917 seenflag = TRUE;
252b5132
RH
2918 break;
2919 case 'x':
b34976b6
AM
2920 dump_private_headers = TRUE;
2921 dump_symtab = TRUE;
2922 dump_reloc_info = TRUE;
2923 dump_file_header = TRUE;
2924 dump_ar_hdrs = TRUE;
2925 dump_section_headers = TRUE;
2926 seenflag = TRUE;
252b5132
RH
2927 break;
2928 case 't':
b34976b6
AM
2929 dump_symtab = TRUE;
2930 seenflag = TRUE;
252b5132
RH
2931 break;
2932 case 'T':
b34976b6
AM
2933 dump_dynamic_symtab = TRUE;
2934 seenflag = TRUE;
252b5132
RH
2935 break;
2936 case 'd':
b34976b6
AM
2937 disassemble = TRUE;
2938 seenflag = TRUE;
1dada9c5
NC
2939 break;
2940 case 'z':
b34976b6 2941 disassemble_zeroes = TRUE;
252b5132
RH
2942 break;
2943 case 'D':
b34976b6
AM
2944 disassemble = TRUE;
2945 disassemble_all = TRUE;
2946 seenflag = TRUE;
252b5132
RH
2947 break;
2948 case 'S':
b34976b6
AM
2949 disassemble = TRUE;
2950 with_source_code = TRUE;
2951 seenflag = TRUE;
1dada9c5
NC
2952 break;
2953 case 'g':
2954 dump_debugging = 1;
b34976b6 2955 seenflag = TRUE;
1dada9c5 2956 break;
51cdc6e0
NC
2957 case 'e':
2958 dump_debugging = 1;
2959 dump_debugging_tags = 1;
2960 do_demangle = TRUE;
2961 seenflag = TRUE;
2962 break;
1dada9c5 2963 case 'G':
b34976b6
AM
2964 dump_stab_section_info = TRUE;
2965 seenflag = TRUE;
252b5132
RH
2966 break;
2967 case 's':
b34976b6
AM
2968 dump_section_contents = TRUE;
2969 seenflag = TRUE;
252b5132
RH
2970 break;
2971 case 'r':
b34976b6
AM
2972 dump_reloc_info = TRUE;
2973 seenflag = TRUE;
252b5132
RH
2974 break;
2975 case 'R':
b34976b6
AM
2976 dump_dynamic_reloc_info = TRUE;
2977 seenflag = TRUE;
252b5132
RH
2978 break;
2979 case 'a':
b34976b6
AM
2980 dump_ar_hdrs = TRUE;
2981 seenflag = TRUE;
252b5132
RH
2982 break;
2983 case 'h':
b34976b6
AM
2984 dump_section_headers = TRUE;
2985 seenflag = TRUE;
252b5132
RH
2986 break;
2987 case 'H':
2988 usage (stdout, 0);
b34976b6 2989 seenflag = TRUE;
8b53311e 2990 case 'v':
252b5132 2991 case 'V':
b34976b6
AM
2992 show_version = TRUE;
2993 seenflag = TRUE;
252b5132 2994 break;
0af11b59 2995
252b5132
RH
2996 default:
2997 usage (stderr, 1);
2998 }
2999 }
3000
3001 if (show_version)
3002 print_version ("objdump");
3003
b34976b6 3004 if (!seenflag)
1dada9c5 3005 usage (stderr, 2);
252b5132
RH
3006
3007 if (formats_info)
06d86cf7 3008 exit_status = display_info ();
252b5132
RH
3009 else
3010 {
3011 if (optind == argc)
3012 display_file ("a.out", target);
3013 else
3014 for (; optind < argc;)
3015 display_file (argv[optind++], target);
3016 }
3017
3018 END_PROGRESS (program_name);
3019
75cd796a 3020 return exit_status;
252b5132 3021}