Enhance objdump's --disassemble switch so that it can now take an optional parameter...
[deliverable/binutils-gdb.git] / binutils / objdump.c
CommitLineData
252b5132 1/* objdump.c -- dump information about an object file.
219d1afa 2 Copyright (C) 1990-2018 Free Software Foundation, Inc.
252b5132 3
b5e2a4f3 4 This file is part of GNU Binutils.
252b5132 5
b5e2a4f3
NC
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
32866df7 8 the Free Software Foundation; either version 3, or (at your option)
b5e2a4f3 9 any later version.
252b5132 10
b5e2a4f3
NC
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
252b5132 15
b5e2a4f3
NC
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
32866df7
NC
18 Foundation, 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
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:
3aade688 30
155e0d23
NC
31 1. Command line arguments are checked for control switches and the
32 information to be displayed is selected.
3aade688 33
155e0d23
NC
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.
3aade688 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
3db64b00 51#include "sysdep.h"
252b5132 52#include "bfd.h"
2dc4cec1 53#include "elf-bfd.h"
f4943d82 54#include "coff-bfd.h"
252b5132
RH
55#include "progress.h"
56#include "bucomm.h"
3284fe0c 57#include "elfcomm.h"
365544c3 58#include "dwarf.h"
d7a283d4 59#include "getopt.h"
3882b010 60#include "safe-ctype.h"
252b5132
RH
61#include "dis-asm.h"
62#include "libiberty.h"
63#include "demangle.h"
0dafdf3f 64#include "filenames.h"
252b5132
RH
65#include "debug.h"
66#include "budbg.h"
6abcee90 67#include "objdump.h"
252b5132 68
e8f5eee4
NC
69#ifdef HAVE_MMAP
70#include <sys/mman.h>
71#endif
72
252b5132
RH
73/* Internal headers for the ELF .stab-dump code - sorry. */
74#define BYTES_IN_WORD 32
75#include "aout/aout64.h"
76
75cd796a
ILT
77/* Exit status. */
78static int exit_status = 0;
79
98a91d6a 80static char *default_target = NULL; /* Default at runtime. */
252b5132 81
3b9ad1cc
AM
82/* The following variables are set based on arguments passed on the
83 command line. */
98a91d6a 84static int show_version = 0; /* Show the version number. */
252b5132
RH
85static int dump_section_contents; /* -s */
86static int dump_section_headers; /* -h */
b34976b6 87static bfd_boolean dump_file_header; /* -f */
252b5132
RH
88static int dump_symtab; /* -t */
89static int dump_dynamic_symtab; /* -T */
90static int dump_reloc_info; /* -r */
91static int dump_dynamic_reloc_info; /* -R */
92static int dump_ar_hdrs; /* -a */
93static int dump_private_headers; /* -p */
6abcee90 94static char *dump_private_options; /* -P */
252b5132
RH
95static int prefix_addresses; /* --prefix-addresses */
96static int with_line_numbers; /* -l */
b34976b6 97static bfd_boolean with_source_code; /* -S */
252b5132 98static int show_raw_insn; /* --show-raw-insn */
365544c3 99static int dump_dwarf_section_info; /* --dwarf */
252b5132
RH
100static int dump_stab_section_info; /* --stabs */
101static int do_demangle; /* -C, --demangle */
b34976b6
AM
102static bfd_boolean disassemble; /* -d */
103static bfd_boolean disassemble_all; /* -D */
252b5132 104static int disassemble_zeroes; /* --disassemble-zeroes */
b34976b6 105static bfd_boolean formats_info; /* -i */
252b5132 106static int wide_output; /* -w */
3dcb3fcb 107static int insn_width; /* --insn-width */
252b5132
RH
108static bfd_vma start_address = (bfd_vma) -1; /* --start-address */
109static bfd_vma stop_address = (bfd_vma) -1; /* --stop-address */
110static int dump_debugging; /* --debugging */
51cdc6e0 111static int dump_debugging_tags; /* --debugging-tags */
fd2f0033 112static int suppress_bfd_header;
3c9458e9 113static int dump_special_syms = 0; /* --special-syms */
252b5132 114static bfd_vma adjust_section_vma = 0; /* --adjust-vma */
f1563258 115static int file_start_context = 0; /* --file-start-context */
98ec6e72 116static bfd_boolean display_file_offsets;/* -F */
0dafdf3f
L
117static const char *prefix; /* --prefix */
118static int prefix_strip; /* --prefix-strip */
119static size_t prefix_length;
4a14e306 120static bfd_boolean unwind_inlines; /* --inlines. */
d3def5d7 121static const char * disasm_sym; /* Disassembly start symbol. */
252b5132 122
70ecb384
NC
123/* A structure to record the sections mentioned in -j switches. */
124struct only
125{
126 const char * name; /* The name of the section. */
127 bfd_boolean seen; /* A flag to indicate that the section has been found in one or more input files. */
128 struct only * next; /* Pointer to the next structure in the list. */
129};
130/* Pointer to an array of 'only' structures.
131 This pointer is NULL if the -j switch has not been used. */
132static struct only * only_list = NULL;
155e0d23 133
43ac9881
AM
134/* Variables for handling include file path table. */
135static const char **include_paths;
136static int include_path_count;
137
3b9ad1cc
AM
138/* Extra info to pass to the section disassembler and address printing
139 function. */
026df7c5
NC
140struct objdump_disasm_info
141{
155e0d23
NC
142 bfd * abfd;
143 asection * sec;
144 bfd_boolean require_sec;
145 arelent ** dynrelbuf;
146 long dynrelcount;
147 disassembler_ftype disassemble_fn;
ce04548a 148 arelent * reloc;
d3def5d7 149 const char * symbol;
252b5132
RH
150};
151
152/* Architecture to disassemble for, or default if NULL. */
d3ba0551 153static char *machine = NULL;
252b5132 154
dd92f639 155/* Target specific options to the disassembler. */
d3ba0551 156static char *disassembler_options = NULL;
dd92f639 157
252b5132
RH
158/* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
159static enum bfd_endian endian = BFD_ENDIAN_UNKNOWN;
160
161/* The symbol table. */
162static asymbol **syms;
163
164/* Number of symbols in `syms'. */
165static long symcount = 0;
166
167/* The sorted symbol table. */
168static asymbol **sorted_syms;
169
170/* Number of symbols in `sorted_syms'. */
171static long sorted_symcount = 0;
172
173/* The dynamic symbol table. */
174static asymbol **dynsyms;
175
4c45e5c9
JJ
176/* The synthetic symbol table. */
177static asymbol *synthsyms;
178static long synthcount = 0;
179
252b5132
RH
180/* Number of symbols in `dynsyms'. */
181static long dynsymcount = 0;
182
98a91d6a
NC
183static bfd_byte *stabs;
184static bfd_size_type stab_size;
185
bae7501e 186static bfd_byte *strtab;
98a91d6a 187static bfd_size_type stabstr_size;
41e92641
NC
188
189static bfd_boolean is_relocatable = FALSE;
6abcee90
TG
190
191/* Handlers for -P/--private. */
192static const struct objdump_private_desc * const objdump_private_vectors[] =
193 {
194 OBJDUMP_PRIVATE_VECTORS
195 NULL
196 };
252b5132 197\f
aebcf7b7 198static void usage (FILE *, int) ATTRIBUTE_NORETURN;
252b5132 199static void
46dca2e0 200usage (FILE *stream, int status)
252b5132 201{
8b53311e
NC
202 fprintf (stream, _("Usage: %s <option(s)> <file(s)>\n"), program_name);
203 fprintf (stream, _(" Display information from object <file(s)>.\n"));
204 fprintf (stream, _(" At least one of the following switches must be given:\n"));
252b5132 205 fprintf (stream, _("\
86d65c94
MK
206 -a, --archive-headers Display archive header information\n\
207 -f, --file-headers Display the contents of the overall file header\n\
208 -p, --private-headers Display object format specific file header contents\n\
6abcee90 209 -P, --private=OPT,OPT... Display object format specific contents\n\
86d65c94
MK
210 -h, --[section-]headers Display the contents of the section headers\n\
211 -x, --all-headers Display the contents of all headers\n\
212 -d, --disassemble Display assembler contents of executable sections\n\
213 -D, --disassemble-all Display assembler contents of all sections\n\
d3def5d7 214 --disassemble=<sym> Display assembler contents from <sym>\n\
86d65c94
MK
215 -S, --source Intermix source code with disassembly\n\
216 -s, --full-contents Display the full contents of all sections requested\n\
217 -g, --debugging Display debug information in object file\n\
51cdc6e0 218 -e, --debugging-tags Display debug information using ctags style\n\
86d65c94 219 -G, --stabs Display (in raw form) any STABS info in the file\n\
dda8d76d 220 -W[lLiaprmfFsoRtUuTgAckK] or\n\
1ed06042 221 --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
6f875884 222 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
657d0d47 223 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
dda8d76d 224 =addr,=cu_index,=links,=follow-links]\n\
4cb93e3b 225 Display DWARF info in the file\n\
86d65c94
MK
226 -t, --syms Display the contents of the symbol table(s)\n\
227 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
228 -r, --reloc Display the relocation entries in the file\n\
229 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
07012eee 230 @<file> Read options from <file>\n\
8b53311e 231 -v, --version Display this program's version number\n\
86d65c94
MK
232 -i, --info List object formats and architectures supported\n\
233 -H, --help Display this information\n\
1dada9c5
NC
234"));
235 if (status != 2)
236 {
6abcee90
TG
237 const struct objdump_private_desc * const *desc;
238
1dada9c5
NC
239 fprintf (stream, _("\n The following switches are optional:\n"));
240 fprintf (stream, _("\
86d65c94
MK
241 -b, --target=BFDNAME Specify the target object format as BFDNAME\n\
242 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n\
243 -j, --section=NAME Only display information for section NAME\n\
244 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n\
1dada9c5
NC
245 -EB --endian=big Assume big endian format when disassembling\n\
246 -EL --endian=little Assume little endian format when disassembling\n\
f1563258 247 --file-start-context Include context from start of file (with -S)\n\
43ac9881 248 -I, --include=DIR Add DIR to search list for source files\n\
86d65c94 249 -l, --line-numbers Include line numbers and filenames in output\n\
98ec6e72 250 -F, --file-offsets Include file offsets when displaying information\n\
28c309a2 251 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
f0c8c24a
NC
252 The STYLE, if specified, can be `auto', `gnu',\n\
253 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
254 or `gnat'\n\
86d65c94
MK
255 -w, --wide Format output for more than 80 columns\n\
256 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
f0c8c24a
NC
257 --start-address=ADDR Only process data whose address is >= ADDR\n\
258 --stop-address=ADDR Only process data whose address is <= ADDR\n\
1dada9c5
NC
259 --prefix-addresses Print complete address alongside disassembly\n\
260 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
505f1412 261 --insn-width=WIDTH Display WIDTH bytes on a single line for -d\n\
86d65c94 262 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
3c9458e9 263 --special-syms Include special symbols in symbol dumps\n\
4a14e306 264 --inlines Print all inlines for source line (with -l)\n\
0dafdf3f 265 --prefix=PREFIX Add PREFIX to absolute paths for -S\n\
fd2f0033
TT
266 --prefix-strip=LEVEL Strip initial directory names for -S\n"));
267 fprintf (stream, _("\
268 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
269 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
4723351a
CC
270 or deeper\n\
271 --dwarf-check Make additional dwarf internal consistency checks.\
272 \n\n"));
1dada9c5 273 list_supported_targets (program_name, stream);
2f83960e 274 list_supported_architectures (program_name, stream);
86d65c94 275
94470b23 276 disassembler_usage (stream);
6abcee90
TG
277
278 if (objdump_private_vectors[0] != NULL)
279 {
280 fprintf (stream,
281 _("\nOptions supported for -P/--private switch:\n"));
282 for (desc = objdump_private_vectors; *desc != NULL; desc++)
283 (*desc)->help (stream);
284 }
1dada9c5 285 }
92f01d61 286 if (REPORT_BUGS_TO[0] && status == 0)
86d65c94 287 fprintf (stream, _("Report bugs to %s.\n"), REPORT_BUGS_TO);
252b5132
RH
288 exit (status);
289}
290
291/* 150 isn't special; it's just an arbitrary non-ASCII char value. */
46dca2e0
NC
292enum option_values
293 {
294 OPTION_ENDIAN=150,
295 OPTION_START_ADDRESS,
296 OPTION_STOP_ADDRESS,
4cb93e3b 297 OPTION_DWARF,
0dafdf3f
L
298 OPTION_PREFIX,
299 OPTION_PREFIX_STRIP,
3dcb3fcb 300 OPTION_INSN_WIDTH,
fd2f0033
TT
301 OPTION_ADJUST_VMA,
302 OPTION_DWARF_DEPTH,
4723351a 303 OPTION_DWARF_CHECK,
4a14e306
AK
304 OPTION_DWARF_START,
305 OPTION_INLINES
46dca2e0 306 };
252b5132
RH
307
308static struct option long_options[]=
309{
310 {"adjust-vma", required_argument, NULL, OPTION_ADJUST_VMA},
311 {"all-headers", no_argument, NULL, 'x'},
312 {"private-headers", no_argument, NULL, 'p'},
6abcee90 313 {"private", required_argument, NULL, 'P'},
252b5132
RH
314 {"architecture", required_argument, NULL, 'm'},
315 {"archive-headers", no_argument, NULL, 'a'},
1dada9c5 316 {"debugging", no_argument, NULL, 'g'},
51cdc6e0 317 {"debugging-tags", no_argument, NULL, 'e'},
28c309a2 318 {"demangle", optional_argument, NULL, 'C'},
d3def5d7 319 {"disassemble", optional_argument, NULL, 'd'},
252b5132 320 {"disassemble-all", no_argument, NULL, 'D'},
dd92f639 321 {"disassembler-options", required_argument, NULL, 'M'},
1dada9c5 322 {"disassemble-zeroes", no_argument, NULL, 'z'},
252b5132
RH
323 {"dynamic-reloc", no_argument, NULL, 'R'},
324 {"dynamic-syms", no_argument, NULL, 'T'},
325 {"endian", required_argument, NULL, OPTION_ENDIAN},
326 {"file-headers", no_argument, NULL, 'f'},
98ec6e72 327 {"file-offsets", no_argument, NULL, 'F'},
f1563258 328 {"file-start-context", no_argument, &file_start_context, 1},
252b5132
RH
329 {"full-contents", no_argument, NULL, 's'},
330 {"headers", no_argument, NULL, 'h'},
331 {"help", no_argument, NULL, 'H'},
332 {"info", no_argument, NULL, 'i'},
333 {"line-numbers", no_argument, NULL, 'l'},
334 {"no-show-raw-insn", no_argument, &show_raw_insn, -1},
335 {"prefix-addresses", no_argument, &prefix_addresses, 1},
336 {"reloc", no_argument, NULL, 'r'},
337 {"section", required_argument, NULL, 'j'},
338 {"section-headers", no_argument, NULL, 'h'},
339 {"show-raw-insn", no_argument, &show_raw_insn, 1},
340 {"source", no_argument, NULL, 'S'},
3c9458e9 341 {"special-syms", no_argument, &dump_special_syms, 1},
43ac9881 342 {"include", required_argument, NULL, 'I'},
4cb93e3b 343 {"dwarf", optional_argument, NULL, OPTION_DWARF},
1dada9c5 344 {"stabs", no_argument, NULL, 'G'},
252b5132
RH
345 {"start-address", required_argument, NULL, OPTION_START_ADDRESS},
346 {"stop-address", required_argument, NULL, OPTION_STOP_ADDRESS},
347 {"syms", no_argument, NULL, 't'},
348 {"target", required_argument, NULL, 'b'},
1dada9c5
NC
349 {"version", no_argument, NULL, 'V'},
350 {"wide", no_argument, NULL, 'w'},
0dafdf3f
L
351 {"prefix", required_argument, NULL, OPTION_PREFIX},
352 {"prefix-strip", required_argument, NULL, OPTION_PREFIX_STRIP},
3dcb3fcb 353 {"insn-width", required_argument, NULL, OPTION_INSN_WIDTH},
dda8d76d
NC
354 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
355 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
356 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
357 {"inlines", no_argument, 0, OPTION_INLINES},
252b5132
RH
358 {0, no_argument, 0, 0}
359};
360\f
361static void
46dca2e0 362nonfatal (const char *msg)
75cd796a
ILT
363{
364 bfd_nonfatal (msg);
365 exit_status = 1;
366}
367\f
d2fcac5c
NC
368/* Returns TRUE if the specified section should be dumped. */
369
370static bfd_boolean
371process_section_p (asection * section)
372{
70ecb384 373 struct only * only;
d2fcac5c 374
70ecb384 375 if (only_list == NULL)
d2fcac5c
NC
376 return TRUE;
377
70ecb384
NC
378 for (only = only_list; only; only = only->next)
379 if (strcmp (only->name, section->name) == 0)
380 {
381 only->seen = TRUE;
382 return TRUE;
383 }
d2fcac5c
NC
384
385 return FALSE;
386}
70ecb384
NC
387
388/* Add an entry to the 'only' list. */
389
390static void
391add_only (char * name)
392{
393 struct only * only;
394
395 /* First check to make sure that we do not
396 already have an entry for this name. */
397 for (only = only_list; only; only = only->next)
398 if (strcmp (only->name, name) == 0)
399 return;
400
401 only = xmalloc (sizeof * only);
402 only->name = name;
403 only->seen = FALSE;
404 only->next = only_list;
405 only_list = only;
406}
407
408/* Release the memory used by the 'only' list.
409 PR 11225: Issue a warning message for unseen sections.
410 Only do this if none of the sections were seen. This is mainly to support
411 tools like the GAS testsuite where an object file is dumped with a list of
412 generic section names known to be present in a range of different file
413 formats. */
414
415static void
416free_only_list (void)
417{
418 bfd_boolean at_least_one_seen = FALSE;
419 struct only * only;
420 struct only * next;
421
422 if (only_list == NULL)
423 return;
424
425 for (only = only_list; only; only = only->next)
426 if (only->seen)
427 {
428 at_least_one_seen = TRUE;
429 break;
430 }
431
432 for (only = only_list; only; only = next)
433 {
434 if (! at_least_one_seen)
435 {
a8c62f1c
AM
436 non_fatal (_("section '%s' mentioned in a -j option, "
437 "but not found in any input file"),
70ecb384
NC
438 only->name);
439 exit_status = 1;
440 }
441 next = only->next;
442 free (only);
443 }
444}
445
d2fcac5c 446\f
75cd796a 447static void
1737c640 448dump_section_header (bfd *abfd, asection *section, void *data)
252b5132
RH
449{
450 char *comma = "";
f6af82bd 451 unsigned int opb = bfd_octets_per_byte (abfd);
1737c640 452 int longest_section_name = *((int *) data);
252b5132 453
3bee8bcd
L
454 /* Ignore linker created section. See elfNN_ia64_object_p in
455 bfd/elfxx-ia64.c. */
456 if (section->flags & SEC_LINKER_CREATED)
457 return;
458
d2fcac5c
NC
459 /* PR 10413: Skip sections that we are ignoring. */
460 if (! process_section_p (section))
461 return;
462
1737c640 463 printf ("%3d %-*s %08lx ", section->index, longest_section_name,
252b5132 464 bfd_get_section_name (abfd, section),
940b2b78 465 (unsigned long) bfd_section_size (abfd, section) / opb);
d8180c76 466 bfd_printf_vma (abfd, bfd_get_section_vma (abfd, section));
252b5132 467 printf (" ");
d8180c76 468 bfd_printf_vma (abfd, section->lma);
e59b4dfb 469 printf (" %08lx 2**%u", (unsigned long) section->filepos,
252b5132
RH
470 bfd_get_section_alignment (abfd, section));
471 if (! wide_output)
472 printf ("\n ");
473 printf (" ");
474
475#define PF(x, y) \
476 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
477
478 PF (SEC_HAS_CONTENTS, "CONTENTS");
479 PF (SEC_ALLOC, "ALLOC");
480 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
252b5132
RH
481 PF (SEC_LOAD, "LOAD");
482 PF (SEC_RELOC, "RELOC");
252b5132
RH
483 PF (SEC_READONLY, "READONLY");
484 PF (SEC_CODE, "CODE");
485 PF (SEC_DATA, "DATA");
486 PF (SEC_ROM, "ROM");
487 PF (SEC_DEBUGGING, "DEBUGGING");
488 PF (SEC_NEVER_LOAD, "NEVER_LOAD");
489 PF (SEC_EXCLUDE, "EXCLUDE");
490 PF (SEC_SORT_ENTRIES, "SORT_ENTRIES");
ebe372c1
L
491 if (bfd_get_arch (abfd) == bfd_arch_tic54x)
492 {
493 PF (SEC_TIC54X_BLOCK, "BLOCK");
494 PF (SEC_TIC54X_CLINK, "CLINK");
495 }
24c411ed 496 PF (SEC_SMALL_DATA, "SMALL_DATA");
ebe372c1 497 if (bfd_get_flavour (abfd) == bfd_target_coff_flavour)
91f68a68
MG
498 {
499 PF (SEC_COFF_SHARED, "SHARED");
500 PF (SEC_COFF_NOREAD, "NOREAD");
501 }
502 else if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
f0728ee3 503 PF (SEC_ELF_PURECODE, "PURECODE");
13ae64f3 504 PF (SEC_THREAD_LOCAL, "THREAD_LOCAL");
64c1196b 505 PF (SEC_GROUP, "GROUP");
91f68a68
MG
506 if (bfd_get_arch (abfd) == bfd_arch_mep)
507 {
508 PF (SEC_MEP_VLIW, "VLIW");
509 }
252b5132
RH
510
511 if ((section->flags & SEC_LINK_ONCE) != 0)
512 {
513 const char *ls;
082b7297 514 struct coff_comdat_info *comdat;
252b5132
RH
515
516 switch (section->flags & SEC_LINK_DUPLICATES)
517 {
518 default:
519 abort ();
520 case SEC_LINK_DUPLICATES_DISCARD:
521 ls = "LINK_ONCE_DISCARD";
522 break;
523 case SEC_LINK_DUPLICATES_ONE_ONLY:
524 ls = "LINK_ONCE_ONE_ONLY";
525 break;
526 case SEC_LINK_DUPLICATES_SAME_SIZE:
527 ls = "LINK_ONCE_SAME_SIZE";
528 break;
529 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
530 ls = "LINK_ONCE_SAME_CONTENTS";
531 break;
532 }
533 printf ("%s%s", comma, ls);
deecf979 534
082b7297
L
535 comdat = bfd_coff_get_comdat_section (abfd, section);
536 if (comdat != NULL)
537 printf (" (COMDAT %s %ld)", comdat->name, comdat->symbol);
deecf979 538
252b5132
RH
539 comma = ", ";
540 }
541
542 printf ("\n");
543#undef PF
544}
545
1737c640
AB
546/* Called on each SECTION in ABFD, update the int variable pointed to by
547 DATA which contains the string length of the longest section name. */
548
549static void
550find_longest_section_name (bfd *abfd, asection *section, void *data)
551{
552 int *longest_so_far = (int *) data;
553 const char *name;
554 int len;
555
556 /* Ignore linker created section. */
557 if (section->flags & SEC_LINKER_CREATED)
558 return;
559
560 /* Skip sections that we are ignoring. */
561 if (! process_section_p (section))
562 return;
563
564 name = bfd_get_section_name (abfd, section);
565 len = (int) strlen (name);
566 if (len > *longest_so_far)
567 *longest_so_far = len;
568}
569
252b5132 570static void
46dca2e0 571dump_headers (bfd *abfd)
252b5132 572{
1737c640
AB
573 /* The default width of 13 is just an arbitrary choice. */
574 int max_section_name_length = 13;
575 int bfd_vma_width;
8bea4d5c 576
252b5132 577#ifndef BFD64
1737c640 578 bfd_vma_width = 10;
252b5132 579#else
21611032
TS
580 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
581 if (bfd_get_arch_size (abfd) == 32)
1737c640 582 bfd_vma_width = 10;
21611032 583 else
1737c640 584 bfd_vma_width = 18;
252b5132 585#endif
8bea4d5c 586
1737c640
AB
587 printf (_("Sections:\n"));
588
589 if (wide_output)
590 bfd_map_over_sections (abfd, find_longest_section_name,
591 &max_section_name_length);
592
593 printf (_("Idx %-*s Size %-*s%-*sFile off Algn"),
594 max_section_name_length, "Name",
595 bfd_vma_width, "VMA",
596 bfd_vma_width, "LMA");
597
8bea4d5c
ILT
598 if (wide_output)
599 printf (_(" Flags"));
600 printf ("\n");
601
1737c640
AB
602 bfd_map_over_sections (abfd, dump_section_header,
603 &max_section_name_length);
252b5132
RH
604}
605\f
606static asymbol **
46dca2e0 607slurp_symtab (bfd *abfd)
252b5132 608{
d3ba0551 609 asymbol **sy = NULL;
252b5132
RH
610 long storage;
611
612 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
613 {
252b5132
RH
614 symcount = 0;
615 return NULL;
616 }
617
618 storage = bfd_get_symtab_upper_bound (abfd);
619 if (storage < 0)
5a3f568b
NC
620 {
621 non_fatal (_("failed to read symbol table from: %s"), bfd_get_filename (abfd));
622 bfd_fatal (_("error message was"));
623 }
252b5132 624 if (storage)
3f5e193b 625 sy = (asymbol **) xmalloc (storage);
28b18af1 626
252b5132
RH
627 symcount = bfd_canonicalize_symtab (abfd, sy);
628 if (symcount < 0)
629 bfd_fatal (bfd_get_filename (abfd));
252b5132
RH
630 return sy;
631}
632
633/* Read in the dynamic symbols. */
634
635static asymbol **
46dca2e0 636slurp_dynamic_symtab (bfd *abfd)
252b5132 637{
d3ba0551 638 asymbol **sy = NULL;
252b5132
RH
639 long storage;
640
641 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
642 if (storage < 0)
643 {
644 if (!(bfd_get_file_flags (abfd) & DYNAMIC))
645 {
37cc8ec1 646 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd));
a8c62f1c 647 exit_status = 1;
252b5132
RH
648 dynsymcount = 0;
649 return NULL;
650 }
651
652 bfd_fatal (bfd_get_filename (abfd));
653 }
252b5132 654 if (storage)
3f5e193b 655 sy = (asymbol **) xmalloc (storage);
28b18af1 656
252b5132
RH
657 dynsymcount = bfd_canonicalize_dynamic_symtab (abfd, sy);
658 if (dynsymcount < 0)
659 bfd_fatal (bfd_get_filename (abfd));
252b5132
RH
660 return sy;
661}
662
a24bb4f0
NC
663/* Some symbol names are significant and should be kept in the
664 table of sorted symbol names, even if they are marked as
665 debugging/section symbols. */
666
667static bfd_boolean
668is_significant_symbol_name (const char * name)
669{
0e70b27b 670 return strncmp (name, ".plt", 4) == 0 || strcmp (name, ".got") == 0;
a24bb4f0
NC
671}
672
252b5132
RH
673/* Filter out (in place) symbols that are useless for disassembly.
674 COUNT is the number of elements in SYMBOLS.
0af11b59 675 Return the number of useful symbols. */
252b5132
RH
676
677static long
46dca2e0 678remove_useless_symbols (asymbol **symbols, long count)
252b5132 679{
46dca2e0 680 asymbol **in_ptr = symbols, **out_ptr = symbols;
252b5132
RH
681
682 while (--count >= 0)
683 {
684 asymbol *sym = *in_ptr++;
685
686 if (sym->name == NULL || sym->name[0] == '\0')
687 continue;
a24bb4f0
NC
688 if ((sym->flags & (BSF_DEBUGGING | BSF_SECTION_SYM))
689 && ! is_significant_symbol_name (sym->name))
252b5132
RH
690 continue;
691 if (bfd_is_und_section (sym->section)
692 || bfd_is_com_section (sym->section))
693 continue;
694
695 *out_ptr++ = sym;
696 }
697 return out_ptr - symbols;
698}
699
700/* Sort symbols into value order. */
701
0af11b59 702static int
46dca2e0 703compare_symbols (const void *ap, const void *bp)
252b5132 704{
46dca2e0
NC
705 const asymbol *a = * (const asymbol **) ap;
706 const asymbol *b = * (const asymbol **) bp;
707 const char *an;
708 const char *bn;
709 size_t anl;
710 size_t bnl;
711 bfd_boolean af;
712 bfd_boolean bf;
713 flagword aflags;
714 flagword bflags;
252b5132
RH
715
716 if (bfd_asymbol_value (a) > bfd_asymbol_value (b))
717 return 1;
718 else if (bfd_asymbol_value (a) < bfd_asymbol_value (b))
719 return -1;
720
721 if (a->section > b->section)
722 return 1;
723 else if (a->section < b->section)
724 return -1;
725
726 an = bfd_asymbol_name (a);
727 bn = bfd_asymbol_name (b);
728 anl = strlen (an);
729 bnl = strlen (bn);
730
731 /* The symbols gnu_compiled and gcc2_compiled convey no real
732 information, so put them after other symbols with the same value. */
252b5132
RH
733 af = (strstr (an, "gnu_compiled") != NULL
734 || strstr (an, "gcc2_compiled") != NULL);
735 bf = (strstr (bn, "gnu_compiled") != NULL
736 || strstr (bn, "gcc2_compiled") != NULL);
737
738 if (af && ! bf)
739 return 1;
740 if (! af && bf)
741 return -1;
742
743 /* We use a heuristic for the file name, to try to sort it after
744 more useful symbols. It may not work on non Unix systems, but it
745 doesn't really matter; the only difference is precisely which
746 symbol names get printed. */
747
748#define file_symbol(s, sn, snl) \
749 (((s)->flags & BSF_FILE) != 0 \
750 || ((sn)[(snl) - 2] == '.' \
751 && ((sn)[(snl) - 1] == 'o' \
752 || (sn)[(snl) - 1] == 'a')))
753
754 af = file_symbol (a, an, anl);
755 bf = file_symbol (b, bn, bnl);
756
757 if (af && ! bf)
758 return 1;
759 if (! af && bf)
760 return -1;
761
762 /* Try to sort global symbols before local symbols before function
763 symbols before debugging symbols. */
764
765 aflags = a->flags;
766 bflags = b->flags;
767
768 if ((aflags & BSF_DEBUGGING) != (bflags & BSF_DEBUGGING))
769 {
770 if ((aflags & BSF_DEBUGGING) != 0)
771 return 1;
772 else
773 return -1;
774 }
775 if ((aflags & BSF_FUNCTION) != (bflags & BSF_FUNCTION))
776 {
777 if ((aflags & BSF_FUNCTION) != 0)
778 return -1;
779 else
780 return 1;
781 }
782 if ((aflags & BSF_LOCAL) != (bflags & BSF_LOCAL))
783 {
784 if ((aflags & BSF_LOCAL) != 0)
785 return 1;
786 else
787 return -1;
788 }
789 if ((aflags & BSF_GLOBAL) != (bflags & BSF_GLOBAL))
790 {
791 if ((aflags & BSF_GLOBAL) != 0)
792 return -1;
793 else
794 return 1;
795 }
796
32a0481f
AM
797 if (bfd_get_flavour (bfd_asymbol_bfd (a)) == bfd_target_elf_flavour
798 && bfd_get_flavour (bfd_asymbol_bfd (b)) == bfd_target_elf_flavour)
799 {
800 bfd_vma asz, bsz;
801
802 asz = 0;
160b1a61 803 if ((a->flags & (BSF_SECTION_SYM | BSF_SYNTHETIC)) == 0)
32a0481f
AM
804 asz = ((elf_symbol_type *) a)->internal_elf_sym.st_size;
805 bsz = 0;
160b1a61 806 if ((b->flags & (BSF_SECTION_SYM | BSF_SYNTHETIC)) == 0)
32a0481f
AM
807 bsz = ((elf_symbol_type *) b)->internal_elf_sym.st_size;
808 if (asz != bsz)
809 return asz > bsz ? -1 : 1;
810 }
811
252b5132
RH
812 /* Symbols that start with '.' might be section names, so sort them
813 after symbols that don't start with '.'. */
814 if (an[0] == '.' && bn[0] != '.')
815 return 1;
816 if (an[0] != '.' && bn[0] == '.')
817 return -1;
818
819 /* Finally, if we can't distinguish them in any other way, try to
820 get consistent results by sorting the symbols by name. */
821 return strcmp (an, bn);
822}
823
824/* Sort relocs into address order. */
825
826static int
46dca2e0 827compare_relocs (const void *ap, const void *bp)
252b5132 828{
46dca2e0
NC
829 const arelent *a = * (const arelent **) ap;
830 const arelent *b = * (const arelent **) bp;
252b5132
RH
831
832 if (a->address > b->address)
833 return 1;
834 else if (a->address < b->address)
835 return -1;
836
837 /* So that associated relocations tied to the same address show up
838 in the correct order, we don't do any further sorting. */
839 if (a > b)
840 return 1;
841 else if (a < b)
842 return -1;
843 else
844 return 0;
845}
846
155e0d23
NC
847/* Print an address (VMA) to the output stream in INFO.
848 If SKIP_ZEROES is TRUE, omit leading zeroes. */
252b5132
RH
849
850static void
91d6fa6a 851objdump_print_value (bfd_vma vma, struct disassemble_info *inf,
46dca2e0 852 bfd_boolean skip_zeroes)
252b5132
RH
853{
854 char buf[30];
855 char *p;
3b9ad1cc 856 struct objdump_disasm_info *aux;
252b5132 857
91d6fa6a 858 aux = (struct objdump_disasm_info *) inf->application_data;
d8180c76 859 bfd_sprintf_vma (aux->abfd, buf, vma);
252b5132
RH
860 if (! skip_zeroes)
861 p = buf;
862 else
863 {
864 for (p = buf; *p == '0'; ++p)
865 ;
866 if (*p == '\0')
867 --p;
868 }
91d6fa6a 869 (*inf->fprintf_func) (inf->stream, "%s", p);
252b5132
RH
870}
871
872/* Print the name of a symbol. */
873
874static void
91d6fa6a 875objdump_print_symname (bfd *abfd, struct disassemble_info *inf,
46dca2e0 876 asymbol *sym)
252b5132
RH
877{
878 char *alloc;
bb4d2ac2
L
879 const char *name, *version_string = NULL;
880 bfd_boolean hidden = FALSE;
252b5132
RH
881
882 alloc = NULL;
883 name = bfd_asymbol_name (sym);
a6637ec0 884 if (do_demangle && name[0] != '\0')
252b5132
RH
885 {
886 /* Demangle the name. */
ed180cc5
AM
887 alloc = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
888 if (alloc != NULL)
889 name = alloc;
252b5132
RH
890 }
891
160b1a61 892 if ((sym->flags & (BSF_SECTION_SYM | BSF_SYNTHETIC)) == 0)
f2b2af2c 893 version_string = bfd_get_symbol_version_string (abfd, sym, &hidden);
bb4d2ac2
L
894
895 if (bfd_is_und_section (bfd_get_section (sym)))
896 hidden = TRUE;
897
91d6fa6a 898 if (inf != NULL)
bb4d2ac2
L
899 {
900 (*inf->fprintf_func) (inf->stream, "%s", name);
901 if (version_string && *version_string != '\0')
902 (*inf->fprintf_func) (inf->stream, hidden ? "@%s" : "@@%s",
903 version_string);
904 }
252b5132 905 else
bb4d2ac2
L
906 {
907 printf ("%s", name);
908 if (version_string && *version_string != '\0')
909 printf (hidden ? "@%s" : "@@%s", version_string);
910 }
252b5132
RH
911
912 if (alloc != NULL)
913 free (alloc);
914}
915
22a398e1
NC
916/* Locate a symbol given a bfd and a section (from INFO->application_data),
917 and a VMA. If INFO->application_data->require_sec is TRUE, then always
918 require the symbol to be in the section. Returns NULL if there is no
919 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
920 of the symbol in sorted_syms. */
252b5132
RH
921
922static asymbol *
3b9ad1cc 923find_symbol_for_address (bfd_vma vma,
91d6fa6a 924 struct disassemble_info *inf,
3b9ad1cc 925 long *place)
252b5132
RH
926{
927 /* @@ Would it speed things up to cache the last two symbols returned,
928 and maybe their address ranges? For many processors, only one memory
929 operand can be present at a time, so the 2-entry cache wouldn't be
930 constantly churned by code doing heavy memory accesses. */
931
932 /* Indices in `sorted_syms'. */
933 long min = 0;
91d6fa6a 934 long max_count = sorted_symcount;
252b5132 935 long thisplace;
3b9ad1cc
AM
936 struct objdump_disasm_info *aux;
937 bfd *abfd;
938 asection *sec;
939 unsigned int opb;
e39ff52a 940 bfd_boolean want_section;
0e70b27b 941 long rel_count;
252b5132
RH
942
943 if (sorted_symcount < 1)
944 return NULL;
945
91d6fa6a 946 aux = (struct objdump_disasm_info *) inf->application_data;
3b9ad1cc
AM
947 abfd = aux->abfd;
948 sec = aux->sec;
91d6fa6a 949 opb = inf->octets_per_byte;
3b9ad1cc 950
252b5132 951 /* Perform a binary search looking for the closest symbol to the
91d6fa6a
NC
952 required value. We are searching the range (min, max_count]. */
953 while (min + 1 < max_count)
252b5132
RH
954 {
955 asymbol *sym;
956
91d6fa6a 957 thisplace = (max_count + min) / 2;
252b5132
RH
958 sym = sorted_syms[thisplace];
959
960 if (bfd_asymbol_value (sym) > vma)
91d6fa6a 961 max_count = thisplace;
252b5132
RH
962 else if (bfd_asymbol_value (sym) < vma)
963 min = thisplace;
964 else
965 {
966 min = thisplace;
967 break;
968 }
969 }
970
971 /* The symbol we want is now in min, the low end of the range we
972 were searching. If there are several symbols with the same
a24bb4f0 973 value, we want the first (non-section/non-debugging) one. */
252b5132
RH
974 thisplace = min;
975 while (thisplace > 0
976 && (bfd_asymbol_value (sorted_syms[thisplace])
a24bb4f0
NC
977 == bfd_asymbol_value (sorted_syms[thisplace - 1]))
978 && ((sorted_syms[thisplace - 1]->flags
979 & (BSF_SECTION_SYM | BSF_DEBUGGING)) == 0)
980 )
252b5132
RH
981 --thisplace;
982
2b4590fb
AM
983 /* Prefer a symbol in the current section if we have multple symbols
984 with the same value, as can occur with overlays or zero size
985 sections. */
986 min = thisplace;
91d6fa6a 987 while (min < max_count
2b4590fb
AM
988 && (bfd_asymbol_value (sorted_syms[min])
989 == bfd_asymbol_value (sorted_syms[thisplace])))
990 {
991 if (sorted_syms[min]->section == sec
91d6fa6a 992 && inf->symbol_is_valid (sorted_syms[min], inf))
2b4590fb
AM
993 {
994 thisplace = min;
995
996 if (place != NULL)
997 *place = thisplace;
998
999 return sorted_syms[thisplace];
1000 }
1001 ++min;
1002 }
1003
1049f94e 1004 /* If the file is relocatable, and the symbol could be from this
252b5132
RH
1005 section, prefer a symbol from this section over symbols from
1006 others, even if the other symbol's value might be closer.
0af11b59 1007
252b5132
RH
1008 Note that this may be wrong for some symbol references if the
1009 sections have overlapping memory ranges, but in that case there's
1010 no way to tell what's desired without looking at the relocation
e39ff52a 1011 table.
3aade688 1012
e39ff52a
PB
1013 Also give the target a chance to reject symbols. */
1014 want_section = (aux->require_sec
1015 || ((abfd->flags & HAS_RELOC) != 0
1016 && vma >= bfd_get_section_vma (abfd, sec)
1017 && vma < (bfd_get_section_vma (abfd, sec)
1018 + bfd_section_size (abfd, sec) / opb)));
1019 if ((sorted_syms[thisplace]->section != sec && want_section)
91d6fa6a 1020 || ! inf->symbol_is_valid (sorted_syms[thisplace], inf))
252b5132
RH
1021 {
1022 long i;
2b4590fb 1023 long newplace = sorted_symcount;
98a91d6a 1024
2b4590fb 1025 for (i = min - 1; i >= 0; i--)
252b5132 1026 {
e39ff52a 1027 if ((sorted_syms[i]->section == sec || !want_section)
91d6fa6a 1028 && inf->symbol_is_valid (sorted_syms[i], inf))
252b5132 1029 {
e39ff52a
PB
1030 if (newplace == sorted_symcount)
1031 newplace = i;
1032
1033 if (bfd_asymbol_value (sorted_syms[i])
1034 != bfd_asymbol_value (sorted_syms[newplace]))
1035 break;
1036
1037 /* Remember this symbol and keep searching until we reach
1038 an earlier address. */
1039 newplace = i;
252b5132
RH
1040 }
1041 }
1042
e39ff52a
PB
1043 if (newplace != sorted_symcount)
1044 thisplace = newplace;
1045 else
252b5132
RH
1046 {
1047 /* We didn't find a good symbol with a smaller value.
1048 Look for one with a larger value. */
1049 for (i = thisplace + 1; i < sorted_symcount; i++)
1050 {
e39ff52a 1051 if ((sorted_syms[i]->section == sec || !want_section)
91d6fa6a 1052 && inf->symbol_is_valid (sorted_syms[i], inf))
252b5132
RH
1053 {
1054 thisplace = i;
1055 break;
1056 }
1057 }
1058 }
1059
e39ff52a 1060 if ((sorted_syms[thisplace]->section != sec && want_section)
91d6fa6a 1061 || ! inf->symbol_is_valid (sorted_syms[thisplace], inf))
22a398e1
NC
1062 /* There is no suitable symbol. */
1063 return NULL;
1064 }
1065
a24bb4f0
NC
1066 /* If we have not found an exact match for the specified address
1067 and we have dynamic relocations available, then we can produce
1068 a better result by matching a relocation to the address and
1069 using the symbol associated with that relocation. */
0e70b27b 1070 rel_count = aux->dynrelcount;
a24bb4f0 1071 if (!want_section
a24bb4f0 1072 && sorted_syms[thisplace]->value != vma
0e70b27b
L
1073 && rel_count > 0
1074 && aux->dynrelbuf != NULL
1075 && aux->dynrelbuf[0]->address <= vma
1076 && aux->dynrelbuf[rel_count - 1]->address >= vma
a24bb4f0
NC
1077 /* If we have matched a synthetic symbol, then stick with that. */
1078 && (sorted_syms[thisplace]->flags & BSF_SYNTHETIC) == 0)
1079 {
0e70b27b
L
1080 arelent ** rel_low;
1081 arelent ** rel_high;
a24bb4f0 1082
0e70b27b
L
1083 rel_low = aux->dynrelbuf;
1084 rel_high = rel_low + rel_count - 1;
1085 while (rel_low <= rel_high)
a24bb4f0 1086 {
0e70b27b
L
1087 arelent **rel_mid = &rel_low[(rel_high - rel_low) / 2];
1088 arelent * rel = *rel_mid;
a24bb4f0 1089
0e70b27b 1090 if (rel->address == vma)
a24bb4f0 1091 {
0e70b27b
L
1092 /* Absolute relocations do not provide a more helpful
1093 symbolic address. Find a non-absolute relocation
1094 with the same address. */
1095 arelent **rel_vma = rel_mid;
1096 for (rel_mid--;
1097 rel_mid >= rel_low && rel_mid[0]->address == vma;
1098 rel_mid--)
1099 rel_vma = rel_mid;
1100
1101 for (; rel_vma <= rel_high && rel_vma[0]->address == vma;
1102 rel_vma++)
1103 {
1104 rel = *rel_vma;
1105 if (rel->sym_ptr_ptr != NULL
1106 && ! bfd_is_abs_section ((* rel->sym_ptr_ptr)->section))
1107 {
1108 if (place != NULL)
1109 * place = thisplace;
1110 return * rel->sym_ptr_ptr;
1111 }
1112 }
1113 break;
a24bb4f0
NC
1114 }
1115
0e70b27b
L
1116 if (vma < rel->address)
1117 rel_high = rel_mid;
1118 else if (vma >= rel_mid[1]->address)
1119 rel_low = rel_mid + 1;
1120 else
a24bb4f0
NC
1121 break;
1122 }
1123 }
1124
252b5132
RH
1125 if (place != NULL)
1126 *place = thisplace;
1127
1128 return sorted_syms[thisplace];
1129}
1130
155e0d23 1131/* Print an address and the offset to the nearest symbol. */
252b5132
RH
1132
1133static void
46dca2e0 1134objdump_print_addr_with_sym (bfd *abfd, asection *sec, asymbol *sym,
91d6fa6a 1135 bfd_vma vma, struct disassemble_info *inf,
46dca2e0 1136 bfd_boolean skip_zeroes)
252b5132 1137{
91d6fa6a 1138 objdump_print_value (vma, inf, skip_zeroes);
252b5132
RH
1139
1140 if (sym == NULL)
1141 {
1142 bfd_vma secaddr;
1143
91d6fa6a
NC
1144 (*inf->fprintf_func) (inf->stream, " <%s",
1145 bfd_get_section_name (abfd, sec));
252b5132
RH
1146 secaddr = bfd_get_section_vma (abfd, sec);
1147 if (vma < secaddr)
1148 {
91d6fa6a
NC
1149 (*inf->fprintf_func) (inf->stream, "-0x");
1150 objdump_print_value (secaddr - vma, inf, TRUE);
252b5132
RH
1151 }
1152 else if (vma > secaddr)
1153 {
91d6fa6a
NC
1154 (*inf->fprintf_func) (inf->stream, "+0x");
1155 objdump_print_value (vma - secaddr, inf, TRUE);
252b5132 1156 }
91d6fa6a 1157 (*inf->fprintf_func) (inf->stream, ">");
252b5132
RH
1158 }
1159 else
1160 {
91d6fa6a 1161 (*inf->fprintf_func) (inf->stream, " <");
a24bb4f0 1162
91d6fa6a 1163 objdump_print_symname (abfd, inf, sym);
a24bb4f0
NC
1164
1165 if (bfd_asymbol_value (sym) == vma)
1166 ;
1167 /* Undefined symbols in an executables and dynamic objects do not have
1168 a value associated with them, so it does not make sense to display
1169 an offset relative to them. Normally we would not be provided with
1170 this kind of symbol, but the target backend might choose to do so,
1171 and the code in find_symbol_for_address might return an as yet
1172 unresolved symbol associated with a dynamic reloc. */
1173 else if ((bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC))
1174 && bfd_is_und_section (sym->section))
1175 ;
1176 else if (bfd_asymbol_value (sym) > vma)
252b5132 1177 {
91d6fa6a
NC
1178 (*inf->fprintf_func) (inf->stream, "-0x");
1179 objdump_print_value (bfd_asymbol_value (sym) - vma, inf, TRUE);
252b5132
RH
1180 }
1181 else if (vma > bfd_asymbol_value (sym))
1182 {
91d6fa6a
NC
1183 (*inf->fprintf_func) (inf->stream, "+0x");
1184 objdump_print_value (vma - bfd_asymbol_value (sym), inf, TRUE);
252b5132 1185 }
a24bb4f0 1186
91d6fa6a 1187 (*inf->fprintf_func) (inf->stream, ">");
252b5132 1188 }
98ec6e72
NC
1189
1190 if (display_file_offsets)
91d6fa6a 1191 inf->fprintf_func (inf->stream, _(" (File Offset: 0x%lx)"),
98ec6e72 1192 (long int)(sec->filepos + (vma - sec->vma)));
252b5132
RH
1193}
1194
155e0d23
NC
1195/* Print an address (VMA), symbolically if possible.
1196 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
252b5132
RH
1197
1198static void
3b9ad1cc 1199objdump_print_addr (bfd_vma vma,
91d6fa6a 1200 struct disassemble_info *inf,
46dca2e0 1201 bfd_boolean skip_zeroes)
252b5132 1202{
3b9ad1cc 1203 struct objdump_disasm_info *aux;
d253b654 1204 asymbol *sym = NULL;
ce04548a 1205 bfd_boolean skip_find = FALSE;
252b5132 1206
91d6fa6a 1207 aux = (struct objdump_disasm_info *) inf->application_data;
32760852 1208
252b5132
RH
1209 if (sorted_symcount < 1)
1210 {
91d6fa6a
NC
1211 (*inf->fprintf_func) (inf->stream, "0x");
1212 objdump_print_value (vma, inf, skip_zeroes);
32760852
NC
1213
1214 if (display_file_offsets)
91d6fa6a
NC
1215 inf->fprintf_func (inf->stream, _(" (File Offset: 0x%lx)"),
1216 (long int)(aux->sec->filepos + (vma - aux->sec->vma)));
252b5132
RH
1217 return;
1218 }
1219
ce04548a
NC
1220 if (aux->reloc != NULL
1221 && aux->reloc->sym_ptr_ptr != NULL
1222 && * aux->reloc->sym_ptr_ptr != NULL)
1223 {
1224 sym = * aux->reloc->sym_ptr_ptr;
1225
1226 /* Adjust the vma to the reloc. */
1227 vma += bfd_asymbol_value (sym);
1228
1229 if (bfd_is_und_section (bfd_get_section (sym)))
1230 skip_find = TRUE;
1231 }
1232
1233 if (!skip_find)
91d6fa6a 1234 sym = find_symbol_for_address (vma, inf, NULL);
ce04548a 1235
91d6fa6a 1236 objdump_print_addr_with_sym (aux->abfd, aux->sec, sym, vma, inf,
252b5132
RH
1237 skip_zeroes);
1238}
1239
1240/* Print VMA to INFO. This function is passed to the disassembler
1241 routine. */
1242
1243static void
91d6fa6a 1244objdump_print_address (bfd_vma vma, struct disassemble_info *inf)
252b5132 1245{
91d6fa6a 1246 objdump_print_addr (vma, inf, ! prefix_addresses);
252b5132
RH
1247}
1248
2ae86dfc 1249/* Determine if the given address has a symbol associated with it. */
252b5132
RH
1250
1251static int
91d6fa6a 1252objdump_symbol_at_address (bfd_vma vma, struct disassemble_info * inf)
252b5132 1253{
252b5132
RH
1254 asymbol * sym;
1255
91d6fa6a 1256 sym = find_symbol_for_address (vma, inf, NULL);
252b5132
RH
1257
1258 return (sym != NULL && (bfd_asymbol_value (sym) == vma));
1259}
1260
1261/* Hold the last function name and the last line number we displayed
1262 in a disassembly. */
1263
1264static char *prev_functionname;
1265static unsigned int prev_line;
9b8d1a36 1266static unsigned int prev_discriminator;
252b5132
RH
1267
1268/* We keep a list of all files that we have seen when doing a
50c2245b 1269 disassembly with source, so that we know how much of the file to
252b5132
RH
1270 display. This can be important for inlined functions. */
1271
1272struct print_file_list
1273{
1274 struct print_file_list *next;
43ac9881
AM
1275 const char *filename;
1276 const char *modname;
3aade688 1277 const char *map;
e8f5eee4 1278 size_t mapsize;
3aade688 1279 const char **linemap;
e8f5eee4
NC
1280 unsigned maxline;
1281 unsigned last_line;
43339b1d 1282 unsigned max_printed;
e8f5eee4 1283 int first;
252b5132
RH
1284};
1285
1286static struct print_file_list *print_files;
1287
1288/* The number of preceding context lines to show when we start
1289 displaying a file for the first time. */
1290
1291#define SHOW_PRECEDING_CONTEXT_LINES (5)
1292
417ed8af 1293/* Read a complete file into memory. */
e8f5eee4
NC
1294
1295static const char *
5ef2d51b 1296slurp_file (const char *fn, size_t *size, struct stat *fst)
e8f5eee4
NC
1297{
1298#ifdef HAVE_MMAP
1299 int ps = getpagesize ();
1300 size_t msize;
1301#endif
1302 const char *map;
417ed8af 1303 int fd = open (fn, O_RDONLY | O_BINARY);
e8f5eee4
NC
1304
1305 if (fd < 0)
1306 return NULL;
5ef2d51b 1307 if (fstat (fd, fst) < 0)
6c713012
AM
1308 {
1309 close (fd);
1310 return NULL;
1311 }
5ef2d51b 1312 *size = fst->st_size;
e8f5eee4
NC
1313#ifdef HAVE_MMAP
1314 msize = (*size + ps - 1) & ~(ps - 1);
1315 map = mmap (NULL, msize, PROT_READ, MAP_SHARED, fd, 0);
6c713012 1316 if (map != (char *) -1L)
e8f5eee4 1317 {
6c713012
AM
1318 close (fd);
1319 return map;
e8f5eee4
NC
1320 }
1321#endif
3f5e193b 1322 map = (const char *) malloc (*size);
6c713012
AM
1323 if (!map || (size_t) read (fd, (char *) map, *size) != *size)
1324 {
1325 free ((void *) map);
e8f5eee4
NC
1326 map = NULL;
1327 }
1328 close (fd);
6c713012 1329 return map;
e8f5eee4
NC
1330}
1331
1332#define line_map_decrease 5
1333
1334/* Precompute array of lines for a mapped file. */
1335
3aade688
L
1336static const char **
1337index_file (const char *map, size_t size, unsigned int *maxline)
e8f5eee4
NC
1338{
1339 const char *p, *lstart, *end;
1340 int chars_per_line = 45; /* First iteration will use 40. */
1341 unsigned int lineno;
3aade688 1342 const char **linemap = NULL;
e8f5eee4 1343 unsigned long line_map_size = 0;
3aade688 1344
e8f5eee4
NC
1345 lineno = 0;
1346 lstart = map;
1347 end = map + size;
1348
3aade688
L
1349 for (p = map; p < end; p++)
1350 {
1351 if (*p == '\n')
1352 {
1353 if (p + 1 < end && p[1] == '\r')
1354 p++;
1355 }
1356 else if (*p == '\r')
1357 {
e8f5eee4
NC
1358 if (p + 1 < end && p[1] == '\n')
1359 p++;
1360 }
1361 else
1362 continue;
3aade688 1363
e8f5eee4
NC
1364 /* End of line found. */
1365
3aade688
L
1366 if (linemap == NULL || line_map_size < lineno + 1)
1367 {
e8f5eee4
NC
1368 unsigned long newsize;
1369
1370 chars_per_line -= line_map_decrease;
1371 if (chars_per_line <= 1)
1372 chars_per_line = 1;
1373 line_map_size = size / chars_per_line + 1;
1374 if (line_map_size < lineno + 1)
1375 line_map_size = lineno + 1;
1376 newsize = line_map_size * sizeof (char *);
3f5e193b 1377 linemap = (const char **) xrealloc (linemap, newsize);
e8f5eee4
NC
1378 }
1379
3aade688
L
1380 linemap[lineno++] = lstart;
1381 lstart = p + 1;
e8f5eee4 1382 }
3aade688
L
1383
1384 *maxline = lineno;
e8f5eee4
NC
1385 return linemap;
1386}
1387
43ac9881
AM
1388/* Tries to open MODNAME, and if successful adds a node to print_files
1389 linked list and returns that node. Returns NULL on failure. */
1390
1391static struct print_file_list *
5ef2d51b 1392try_print_file_open (const char *origname, const char *modname, struct stat *fst)
43ac9881
AM
1393{
1394 struct print_file_list *p;
43ac9881 1395
3f5e193b 1396 p = (struct print_file_list *) xmalloc (sizeof (struct print_file_list));
43ac9881 1397
5ef2d51b 1398 p->map = slurp_file (modname, &p->mapsize, fst);
e8f5eee4 1399 if (p->map == NULL)
43ac9881 1400 {
e8f5eee4
NC
1401 free (p);
1402 return NULL;
43ac9881 1403 }
3aade688 1404
e8f5eee4
NC
1405 p->linemap = index_file (p->map, p->mapsize, &p->maxline);
1406 p->last_line = 0;
43339b1d 1407 p->max_printed = 0;
43ac9881
AM
1408 p->filename = origname;
1409 p->modname = modname;
43ac9881 1410 p->next = print_files;
e8f5eee4 1411 p->first = 1;
43ac9881
AM
1412 print_files = p;
1413 return p;
1414}
1415
a8685210 1416/* If the source file, as described in the symtab, is not found
43ac9881
AM
1417 try to locate it in one of the paths specified with -I
1418 If found, add location to print_files linked list. */
1419
1420static struct print_file_list *
5ef2d51b 1421update_source_path (const char *filename, bfd *abfd)
43ac9881
AM
1422{
1423 struct print_file_list *p;
1424 const char *fname;
5ef2d51b 1425 struct stat fst;
43ac9881
AM
1426 int i;
1427
5ef2d51b
AM
1428 p = try_print_file_open (filename, filename, &fst);
1429 if (p == NULL)
1430 {
1431 if (include_path_count == 0)
1432 return NULL;
43ac9881 1433
5ef2d51b
AM
1434 /* Get the name of the file. */
1435 fname = lbasename (filename);
43ac9881 1436
5ef2d51b
AM
1437 /* If file exists under a new path, we need to add it to the list
1438 so that show_line knows about it. */
1439 for (i = 0; i < include_path_count; i++)
1440 {
1441 char *modname = concat (include_paths[i], "/", fname,
1442 (const char *) 0);
43ac9881 1443
5ef2d51b
AM
1444 p = try_print_file_open (filename, modname, &fst);
1445 if (p)
1446 break;
43ac9881 1447
5ef2d51b
AM
1448 free (modname);
1449 }
1450 }
1451
1452 if (p != NULL)
1453 {
1454 long mtime = bfd_get_mtime (abfd);
43ac9881 1455
5ef2d51b
AM
1456 if (fst.st_mtime > mtime)
1457 warn (_("source file %s is more recent than object file\n"),
1458 filename);
43ac9881
AM
1459 }
1460
5ef2d51b 1461 return p;
43ac9881
AM
1462}
1463
e8f5eee4 1464/* Print a source file line. */
252b5132 1465
3aade688 1466static void
91d6fa6a 1467print_line (struct print_file_list *p, unsigned int linenum)
252b5132 1468{
e8f5eee4 1469 const char *l;
615f3149 1470 size_t len;
3aade688
L
1471
1472 --linenum;
91d6fa6a 1473 if (linenum >= p->maxline)
e8f5eee4 1474 return;
91d6fa6a 1475 l = p->linemap [linenum];
615f3149
AM
1476 /* Test fwrite return value to quiet glibc warning. */
1477 len = strcspn (l, "\n\r");
1478 if (len == 0 || fwrite (l, len, 1, stdout) == 1)
1479 putchar ('\n');
1480}
252b5132 1481
e8f5eee4 1482/* Print a range of source code lines. */
252b5132 1483
e8f5eee4
NC
1484static void
1485dump_lines (struct print_file_list *p, unsigned int start, unsigned int end)
1486{
1487 if (p->map == NULL)
1488 return;
3aade688 1489 while (start <= end)
e8f5eee4
NC
1490 {
1491 print_line (p, start);
1492 start++;
252b5132 1493 }
0af11b59 1494}
252b5132 1495
50c2245b 1496/* Show the line number, or the source line, in a disassembly
252b5132
RH
1497 listing. */
1498
1499static void
46dca2e0 1500show_line (bfd *abfd, asection *section, bfd_vma addr_offset)
252b5132 1501{
b1f88ebe
AM
1502 const char *filename;
1503 const char *functionname;
91d6fa6a 1504 unsigned int linenumber;
9b8d1a36 1505 unsigned int discriminator;
0dafdf3f 1506 bfd_boolean reloc;
e1fa0163 1507 char *path = NULL;
252b5132
RH
1508
1509 if (! with_line_numbers && ! with_source_code)
1510 return;
1511
9b8d1a36 1512 if (! bfd_find_nearest_line_discriminator (abfd, section, syms, addr_offset,
8b5b2529
AM
1513 &filename, &functionname,
1514 &linenumber, &discriminator))
252b5132
RH
1515 return;
1516
1517 if (filename != NULL && *filename == '\0')
1518 filename = NULL;
1519 if (functionname != NULL && *functionname == '\0')
1520 functionname = NULL;
1521
0dafdf3f
L
1522 if (filename
1523 && IS_ABSOLUTE_PATH (filename)
1524 && prefix)
1525 {
1526 char *path_up;
1527 const char *fname = filename;
e1fa0163
NC
1528
1529 path = xmalloc (prefix_length + PATH_MAX + 1);
0dafdf3f
L
1530
1531 if (prefix_length)
1532 memcpy (path, prefix, prefix_length);
1533 path_up = path + prefix_length;
1534
1535 /* Build relocated filename, stripping off leading directories
e1fa0163 1536 from the initial filename if requested. */
0dafdf3f
L
1537 if (prefix_strip > 0)
1538 {
1539 int level = 0;
1540 const char *s;
1541
e1fa0163 1542 /* Skip selected directory levels. */
0dafdf3f
L
1543 for (s = fname + 1; *s != '\0' && level < prefix_strip; s++)
1544 if (IS_DIR_SEPARATOR(*s))
1545 {
1546 fname = s;
1547 level++;
1548 }
1549 }
1550
e1fa0163 1551 /* Update complete filename. */
0dafdf3f
L
1552 strncpy (path_up, fname, PATH_MAX);
1553 path_up[PATH_MAX] = '\0';
1554
1555 filename = path;
1556 reloc = TRUE;
1557 }
1558 else
1559 reloc = FALSE;
1560
252b5132
RH
1561 if (with_line_numbers)
1562 {
1563 if (functionname != NULL
1564 && (prev_functionname == NULL
1565 || strcmp (functionname, prev_functionname) != 0))
8b5b2529
AM
1566 {
1567 printf ("%s():\n", functionname);
1568 prev_line = -1;
1569 }
1570 if (linenumber > 0
1571 && (linenumber != prev_line
1572 || discriminator != prev_discriminator))
1573 {
1574 if (discriminator > 0)
1575 printf ("%s:%u (discriminator %u)\n",
1576 filename == NULL ? "???" : filename,
1577 linenumber, discriminator);
1578 else
1579 printf ("%s:%u\n", filename == NULL ? "???" : filename,
1580 linenumber);
1581 }
4a14e306
AK
1582 if (unwind_inlines)
1583 {
1584 const char *filename2;
1585 const char *functionname2;
1586 unsigned line2;
1587
1588 while (bfd_find_inliner_info (abfd, &filename2, &functionname2,
1589 &line2))
1590 printf ("inlined by %s:%u (%s)\n", filename2, line2,
1591 functionname2);
1592 }
252b5132
RH
1593 }
1594
1595 if (with_source_code
1596 && filename != NULL
91d6fa6a 1597 && linenumber > 0)
252b5132
RH
1598 {
1599 struct print_file_list **pp, *p;
e8f5eee4 1600 unsigned l;
252b5132
RH
1601
1602 for (pp = &print_files; *pp != NULL; pp = &(*pp)->next)
8b6efd89 1603 if (filename_cmp ((*pp)->filename, filename) == 0)
252b5132
RH
1604 break;
1605 p = *pp;
1606
e8f5eee4 1607 if (p == NULL)
0dafdf3f
L
1608 {
1609 if (reloc)
1610 filename = xstrdup (filename);
5ef2d51b 1611 p = update_source_path (filename, abfd);
0dafdf3f 1612 }
252b5132 1613
91d6fa6a 1614 if (p != NULL && linenumber != p->last_line)
e8f5eee4 1615 {
3aade688 1616 if (file_start_context && p->first)
e8f5eee4 1617 l = 1;
3aade688 1618 else
252b5132 1619 {
91d6fa6a 1620 l = linenumber - SHOW_PRECEDING_CONTEXT_LINES;
3aade688 1621 if (l >= linenumber)
e8f5eee4 1622 l = 1;
43339b1d
AM
1623 if (p->max_printed >= l)
1624 {
1625 if (p->max_printed < linenumber)
1626 l = p->max_printed + 1;
1627 else
1628 l = linenumber;
1629 }
252b5132 1630 }
91d6fa6a 1631 dump_lines (p, l, linenumber);
43339b1d
AM
1632 if (p->max_printed < linenumber)
1633 p->max_printed = linenumber;
91d6fa6a 1634 p->last_line = linenumber;
e8f5eee4 1635 p->first = 0;
252b5132
RH
1636 }
1637 }
1638
1639 if (functionname != NULL
1640 && (prev_functionname == NULL
1641 || strcmp (functionname, prev_functionname) != 0))
1642 {
1643 if (prev_functionname != NULL)
1644 free (prev_functionname);
3f5e193b 1645 prev_functionname = (char *) xmalloc (strlen (functionname) + 1);
252b5132
RH
1646 strcpy (prev_functionname, functionname);
1647 }
1648
91d6fa6a
NC
1649 if (linenumber > 0 && linenumber != prev_line)
1650 prev_line = linenumber;
9b8d1a36
CC
1651
1652 if (discriminator != prev_discriminator)
1653 prev_discriminator = discriminator;
e1fa0163
NC
1654
1655 if (path)
1656 free (path);
252b5132
RH
1657}
1658
1659/* Pseudo FILE object for strings. */
1660typedef struct
1661{
1662 char *buffer;
6f104306
NS
1663 size_t pos;
1664 size_t alloc;
252b5132
RH
1665} SFILE;
1666
46dca2e0 1667/* sprintf to a "stream". */
252b5132 1668
0fd3a477 1669static int ATTRIBUTE_PRINTF_2
46dca2e0 1670objdump_sprintf (SFILE *f, const char *format, ...)
252b5132 1671{
252b5132 1672 size_t n;
46dca2e0 1673 va_list args;
252b5132 1674
6f104306 1675 while (1)
252b5132 1676 {
6f104306 1677 size_t space = f->alloc - f->pos;
3aade688 1678
6f104306
NS
1679 va_start (args, format);
1680 n = vsnprintf (f->buffer + f->pos, space, format, args);
451dad9c 1681 va_end (args);
252b5132 1682
6f104306
NS
1683 if (space > n)
1684 break;
3aade688 1685
6f104306 1686 f->alloc = (f->alloc + n) * 2;
3f5e193b 1687 f->buffer = (char *) xrealloc (f->buffer, f->alloc);
252b5132 1688 }
6f104306 1689 f->pos += n;
3aade688 1690
252b5132
RH
1691 return n;
1692}
1693
1694/* The number of zeroes we want to see before we start skipping them.
1695 The number is arbitrarily chosen. */
1696
0bcb06d2 1697#define DEFAULT_SKIP_ZEROES 8
252b5132
RH
1698
1699/* The number of zeroes to skip at the end of a section. If the
1700 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1701 SKIP_ZEROES, they will be disassembled. If there are fewer than
1702 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1703 attempt to avoid disassembling zeroes inserted by section
1704 alignment. */
1705
0bcb06d2 1706#define DEFAULT_SKIP_ZEROES_AT_END 3
252b5132
RH
1707
1708/* Disassemble some data in memory between given values. */
1709
1710static void
91d6fa6a 1711disassemble_bytes (struct disassemble_info * inf,
46dca2e0
NC
1712 disassembler_ftype disassemble_fn,
1713 bfd_boolean insns,
1714 bfd_byte * data,
1715 bfd_vma start_offset,
1716 bfd_vma stop_offset,
fd7bb956 1717 bfd_vma rel_offset,
46dca2e0
NC
1718 arelent *** relppp,
1719 arelent ** relppend)
252b5132
RH
1720{
1721 struct objdump_disasm_info *aux;
1722 asection *section;
940b2b78 1723 int octets_per_line;
252b5132 1724 int skip_addr_chars;
940b2b78 1725 bfd_vma addr_offset;
91d6fa6a
NC
1726 unsigned int opb = inf->octets_per_byte;
1727 unsigned int skip_zeroes = inf->skip_zeroes;
1728 unsigned int skip_zeroes_at_end = inf->skip_zeroes_at_end;
ce04548a 1729 int octets = opb;
6f104306 1730 SFILE sfile;
252b5132 1731
91d6fa6a 1732 aux = (struct objdump_disasm_info *) inf->application_data;
252b5132
RH
1733 section = aux->sec;
1734
6f104306 1735 sfile.alloc = 120;
3f5e193b 1736 sfile.buffer = (char *) xmalloc (sfile.alloc);
6f104306 1737 sfile.pos = 0;
3aade688 1738
3dcb3fcb
L
1739 if (insn_width)
1740 octets_per_line = insn_width;
1741 else if (insns)
940b2b78 1742 octets_per_line = 4;
252b5132 1743 else
940b2b78 1744 octets_per_line = 16;
252b5132
RH
1745
1746 /* Figure out how many characters to skip at the start of an
1747 address, to make the disassembly look nicer. We discard leading
1748 zeroes in chunks of 4, ensuring that there is always a leading
1749 zero remaining. */
1750 skip_addr_chars = 0;
1751 if (! prefix_addresses)
1752 {
1753 char buf[30];
17ceb936
AM
1754
1755 bfd_sprintf_vma (aux->abfd, buf, section->vma + section->size / opb);
1756
1757 while (buf[skip_addr_chars] == '0')
1758 ++skip_addr_chars;
1759
1760 /* Don't discard zeros on overflow. */
1761 if (buf[skip_addr_chars] == '\0' && section->vma != 0)
1762 skip_addr_chars = 0;
1763
1764 if (skip_addr_chars != 0)
1765 skip_addr_chars = (skip_addr_chars - 1) & -4;
252b5132
RH
1766 }
1767
91d6fa6a 1768 inf->insn_info_valid = 0;
252b5132 1769
940b2b78
TW
1770 addr_offset = start_offset;
1771 while (addr_offset < stop_offset)
252b5132
RH
1772 {
1773 bfd_vma z;
b34976b6 1774 bfd_boolean need_nl = FALSE;
ce04548a
NC
1775 int previous_octets;
1776
1777 /* Remember the length of the previous instruction. */
1778 previous_octets = octets;
ce04548a 1779 octets = 0;
252b5132 1780
bb7c70ed
NC
1781 /* Make sure we don't use relocs from previous instructions. */
1782 aux->reloc = NULL;
1783
940b2b78 1784 /* If we see more than SKIP_ZEROES octets of zeroes, we just
43ac9881 1785 print `...'. */
940b2b78 1786 for (z = addr_offset * opb; z < stop_offset * opb; z++)
252b5132
RH
1787 if (data[z] != 0)
1788 break;
1789 if (! disassemble_zeroes
91d6fa6a
NC
1790 && (inf->insn_info_valid == 0
1791 || inf->branch_delay_insns == 0)
0bcb06d2 1792 && (z - addr_offset * opb >= skip_zeroes
0af11b59 1793 || (z == stop_offset * opb &&
0bcb06d2 1794 z - addr_offset * opb < skip_zeroes_at_end)))
252b5132 1795 {
940b2b78 1796 /* If there are more nonzero octets to follow, we only skip
43ac9881
AM
1797 zeroes in multiples of 4, to try to avoid running over
1798 the start of an instruction which happens to start with
1799 zero. */
940b2b78
TW
1800 if (z != stop_offset * opb)
1801 z = addr_offset * opb + ((z - addr_offset * opb) &~ 3);
252b5132 1802
940b2b78 1803 octets = z - addr_offset * opb;
98ec6e72
NC
1804
1805 /* If we are going to display more data, and we are displaying
1806 file offsets, then tell the user how many zeroes we skip
1807 and the file offset from where we resume dumping. */
1808 if (display_file_offsets && ((addr_offset + (octets / opb)) < stop_offset))
1809 printf ("\t... (skipping %d zeroes, resuming at file offset: 0x%lx)\n",
1810 octets / opb,
0af1713e
AM
1811 (unsigned long) (section->filepos
1812 + (addr_offset + (octets / opb))));
98ec6e72
NC
1813 else
1814 printf ("\t...\n");
252b5132
RH
1815 }
1816 else
1817 {
1818 char buf[50];
252b5132
RH
1819 int bpc = 0;
1820 int pb = 0;
1821
252b5132 1822 if (with_line_numbers || with_source_code)
bc79cded 1823 show_line (aux->abfd, section, addr_offset);
252b5132
RH
1824
1825 if (! prefix_addresses)
1826 {
1827 char *s;
1828
d8180c76 1829 bfd_sprintf_vma (aux->abfd, buf, section->vma + addr_offset);
252b5132
RH
1830 for (s = buf + skip_addr_chars; *s == '0'; s++)
1831 *s = ' ';
1832 if (*s == '\0')
1833 *--s = '0';
1834 printf ("%s:\t", buf + skip_addr_chars);
1835 }
1836 else
1837 {
b34976b6 1838 aux->require_sec = TRUE;
91d6fa6a 1839 objdump_print_address (section->vma + addr_offset, inf);
b34976b6 1840 aux->require_sec = FALSE;
252b5132
RH
1841 putchar (' ');
1842 }
1843
1844 if (insns)
1845 {
6f104306 1846 sfile.pos = 0;
91d6fa6a
NC
1847 inf->fprintf_func = (fprintf_ftype) objdump_sprintf;
1848 inf->stream = &sfile;
1849 inf->bytes_per_line = 0;
1850 inf->bytes_per_chunk = 0;
1851 inf->flags = disassemble_all ? DISASSEMBLE_DATA : 0;
0313a2b8 1852 if (machine)
91d6fa6a 1853 inf->flags |= USER_SPECIFIED_MACHINE_TYPE;
252b5132 1854
91d6fa6a 1855 if (inf->disassembler_needs_relocs
7df428b1
RS
1856 && (bfd_get_file_flags (aux->abfd) & EXEC_P) == 0
1857 && (bfd_get_file_flags (aux->abfd) & DYNAMIC) == 0
d99b6465 1858 && *relppp < relppend)
ce04548a
NC
1859 {
1860 bfd_signed_vma distance_to_rel;
1861
1862 distance_to_rel = (**relppp)->address
1863 - (rel_offset + addr_offset);
1864
1865 /* Check to see if the current reloc is associated with
1866 the instruction that we are about to disassemble. */
1867 if (distance_to_rel == 0
1868 /* FIXME: This is wrong. We are trying to catch
1869 relocs that are addressed part way through the
1870 current instruction, as might happen with a packed
1871 VLIW instruction. Unfortunately we do not know the
1872 length of the current instruction since we have not
1873 disassembled it yet. Instead we take a guess based
1874 upon the length of the previous instruction. The
1875 proper solution is to have a new target-specific
1876 disassembler function which just returns the length
1877 of an instruction at a given address without trying
1878 to display its disassembly. */
1879 || (distance_to_rel > 0
1880 && distance_to_rel < (bfd_signed_vma) (previous_octets/ opb)))
1881 {
91d6fa6a 1882 inf->flags |= INSN_HAS_RELOC;
ce04548a
NC
1883 aux->reloc = **relppp;
1884 }
ce04548a 1885 }
d99b6465 1886
bdc4de1b
NC
1887 if (! disassemble_all
1888 && (section->flags & (SEC_CODE | SEC_HAS_CONTENTS))
1889 == (SEC_CODE | SEC_HAS_CONTENTS))
1890 /* Set a stop_vma so that the disassembler will not read
1891 beyond the next symbol. We assume that symbols appear on
1892 the boundaries between instructions. We only do this when
1893 disassembling code of course, and when -D is in effect. */
1894 inf->stop_vma = section->vma + stop_offset;
3aade688 1895
91d6fa6a 1896 octets = (*disassemble_fn) (section->vma + addr_offset, inf);
bdc4de1b
NC
1897
1898 inf->stop_vma = 0;
91d6fa6a
NC
1899 inf->fprintf_func = (fprintf_ftype) fprintf;
1900 inf->stream = stdout;
1901 if (insn_width == 0 && inf->bytes_per_line != 0)
1902 octets_per_line = inf->bytes_per_line;
a8c62f1c 1903 if (octets < (int) opb)
e07bf1ac 1904 {
6f104306 1905 if (sfile.pos)
e07bf1ac 1906 printf ("%s\n", sfile.buffer);
a8c62f1c
AM
1907 if (octets >= 0)
1908 {
1909 non_fatal (_("disassemble_fn returned length %d"),
1910 octets);
1911 exit_status = 1;
1912 }
e07bf1ac
ILT
1913 break;
1914 }
252b5132
RH
1915 }
1916 else
1917 {
b4c96d0d 1918 bfd_vma j;
252b5132 1919
940b2b78
TW
1920 octets = octets_per_line;
1921 if (addr_offset + octets / opb > stop_offset)
1922 octets = (stop_offset - addr_offset) * opb;
252b5132 1923
940b2b78 1924 for (j = addr_offset * opb; j < addr_offset * opb + octets; ++j)
252b5132 1925 {
3882b010 1926 if (ISPRINT (data[j]))
940b2b78 1927 buf[j - addr_offset * opb] = data[j];
252b5132 1928 else
940b2b78 1929 buf[j - addr_offset * opb] = '.';
252b5132 1930 }
940b2b78 1931 buf[j - addr_offset * opb] = '\0';
252b5132
RH
1932 }
1933
1934 if (prefix_addresses
1935 ? show_raw_insn > 0
1936 : show_raw_insn >= 0)
1937 {
b4c96d0d 1938 bfd_vma j;
252b5132
RH
1939
1940 /* If ! prefix_addresses and ! wide_output, we print
43ac9881 1941 octets_per_line octets per line. */
940b2b78
TW
1942 pb = octets;
1943 if (pb > octets_per_line && ! prefix_addresses && ! wide_output)
1944 pb = octets_per_line;
252b5132 1945
91d6fa6a
NC
1946 if (inf->bytes_per_chunk)
1947 bpc = inf->bytes_per_chunk;
252b5132
RH
1948 else
1949 bpc = 1;
1950
940b2b78 1951 for (j = addr_offset * opb; j < addr_offset * opb + pb; j += bpc)
252b5132 1952 {
ae87f7e7
NC
1953 /* PR 21580: Check for a buffer ending early. */
1954 if (j + bpc <= stop_offset * opb)
252b5132 1955 {
ae87f7e7
NC
1956 int k;
1957
1958 if (inf->display_endian == BFD_ENDIAN_LITTLE)
1959 {
1960 for (k = bpc - 1; k >= 0; k--)
1961 printf ("%02x", (unsigned) data[j + k]);
1962 }
1963 else
1964 {
1965 for (k = 0; k < bpc; k++)
1966 printf ("%02x", (unsigned) data[j + k]);
1967 }
252b5132 1968 }
ae87f7e7 1969 putchar (' ');
252b5132
RH
1970 }
1971
940b2b78 1972 for (; pb < octets_per_line; pb += bpc)
252b5132
RH
1973 {
1974 int k;
1975
1976 for (k = 0; k < bpc; k++)
1977 printf (" ");
1978 putchar (' ');
1979 }
1980
1981 /* Separate raw data from instruction by extra space. */
1982 if (insns)
1983 putchar ('\t');
1984 else
1985 printf (" ");
1986 }
1987
1988 if (! insns)
1989 printf ("%s", buf);
6f104306
NS
1990 else if (sfile.pos)
1991 printf ("%s", sfile.buffer);
252b5132
RH
1992
1993 if (prefix_addresses
1994 ? show_raw_insn > 0
1995 : show_raw_insn >= 0)
1996 {
940b2b78 1997 while (pb < octets)
252b5132 1998 {
b4c96d0d 1999 bfd_vma j;
252b5132
RH
2000 char *s;
2001
2002 putchar ('\n');
940b2b78 2003 j = addr_offset * opb + pb;
252b5132 2004
d8180c76 2005 bfd_sprintf_vma (aux->abfd, buf, section->vma + j / opb);
252b5132
RH
2006 for (s = buf + skip_addr_chars; *s == '0'; s++)
2007 *s = ' ';
2008 if (*s == '\0')
2009 *--s = '0';
2010 printf ("%s:\t", buf + skip_addr_chars);
2011
940b2b78
TW
2012 pb += octets_per_line;
2013 if (pb > octets)
2014 pb = octets;
2015 for (; j < addr_offset * opb + pb; j += bpc)
252b5132 2016 {
d16fdddb
NC
2017 /* PR 21619: Check for a buffer ending early. */
2018 if (j + bpc <= stop_offset * opb)
252b5132 2019 {
d16fdddb
NC
2020 int k;
2021
2022 if (inf->display_endian == BFD_ENDIAN_LITTLE)
2023 {
2024 for (k = bpc - 1; k >= 0; k--)
2025 printf ("%02x", (unsigned) data[j + k]);
2026 }
2027 else
2028 {
2029 for (k = 0; k < bpc; k++)
2030 printf ("%02x", (unsigned) data[j + k]);
2031 }
252b5132 2032 }
d16fdddb 2033 putchar (' ');
252b5132
RH
2034 }
2035 }
2036 }
2037
2038 if (!wide_output)
2039 putchar ('\n');
2040 else
b34976b6 2041 need_nl = TRUE;
252b5132
RH
2042 }
2043
fd7bb956
AM
2044 while ((*relppp) < relppend
2045 && (**relppp)->address < rel_offset + addr_offset + octets / opb)
252b5132 2046 {
fd7bb956 2047 if (dump_reloc_info || dump_dynamic_reloc_info)
252b5132
RH
2048 {
2049 arelent *q;
2050
2051 q = **relppp;
2052
2053 if (wide_output)
2054 putchar ('\t');
2055 else
2056 printf ("\t\t\t");
2057
68b3b8dc 2058 objdump_print_value (section->vma - rel_offset + q->address,
91d6fa6a 2059 inf, TRUE);
252b5132 2060
f9ecb0a4
JJ
2061 if (q->howto == NULL)
2062 printf (": *unknown*\t");
2063 else if (q->howto->name)
2064 printf (": %s\t", q->howto->name);
2065 else
2066 printf (": %d\t", q->howto->type);
252b5132
RH
2067
2068 if (q->sym_ptr_ptr == NULL || *q->sym_ptr_ptr == NULL)
2069 printf ("*unknown*");
2070 else
2071 {
2072 const char *sym_name;
2073
2074 sym_name = bfd_asymbol_name (*q->sym_ptr_ptr);
2075 if (sym_name != NULL && *sym_name != '\0')
91d6fa6a 2076 objdump_print_symname (aux->abfd, inf, *q->sym_ptr_ptr);
252b5132
RH
2077 else
2078 {
2079 asection *sym_sec;
2080
2081 sym_sec = bfd_get_section (*q->sym_ptr_ptr);
2082 sym_name = bfd_get_section_name (aux->abfd, sym_sec);
2083 if (sym_name == NULL || *sym_name == '\0')
2084 sym_name = "*unknown*";
2085 printf ("%s", sym_name);
2086 }
2087 }
2088
2089 if (q->addend)
2090 {
343dbc36
L
2091 bfd_signed_vma addend = q->addend;
2092 if (addend < 0)
2093 {
2094 printf ("-0x");
2095 addend = -addend;
2096 }
2097 else
2098 printf ("+0x");
2099 objdump_print_value (addend, inf, TRUE);
252b5132
RH
2100 }
2101
2102 printf ("\n");
b34976b6 2103 need_nl = FALSE;
252b5132 2104 }
fd7bb956 2105 ++(*relppp);
252b5132
RH
2106 }
2107
2108 if (need_nl)
2109 printf ("\n");
2110
940b2b78 2111 addr_offset += octets / opb;
252b5132 2112 }
6f104306
NS
2113
2114 free (sfile.buffer);
252b5132
RH
2115}
2116
155e0d23 2117static void
91d6fa6a 2118disassemble_section (bfd *abfd, asection *section, void *inf)
155e0d23 2119{
1b0adfe0
NC
2120 const struct elf_backend_data * bed;
2121 bfd_vma sign_adjust = 0;
91d6fa6a 2122 struct disassemble_info * pinfo = (struct disassemble_info *) inf;
3b9ad1cc 2123 struct objdump_disasm_info * paux;
155e0d23
NC
2124 unsigned int opb = pinfo->octets_per_byte;
2125 bfd_byte * data = NULL;
2126 bfd_size_type datasize = 0;
2127 arelent ** rel_pp = NULL;
2128 arelent ** rel_ppstart = NULL;
2129 arelent ** rel_ppend;
bdc4de1b 2130 bfd_vma stop_offset;
155e0d23
NC
2131 asymbol * sym = NULL;
2132 long place = 0;
2133 long rel_count;
2134 bfd_vma rel_offset;
2135 unsigned long addr_offset;
2136
2137 /* Sections that do not contain machine
2138 code are not normally disassembled. */
2139 if (! disassemble_all
70ecb384 2140 && only_list == NULL
46212538
AM
2141 && ((section->flags & (SEC_CODE | SEC_HAS_CONTENTS))
2142 != (SEC_CODE | SEC_HAS_CONTENTS)))
155e0d23
NC
2143 return;
2144
2145 if (! process_section_p (section))
2146 return;
2147
135dfb4a 2148 datasize = bfd_get_section_size (section);
60a02042 2149 if (datasize == 0)
155e0d23
NC
2150 return;
2151
643902a4
AS
2152 if (start_address == (bfd_vma) -1
2153 || start_address < section->vma)
2154 addr_offset = 0;
2155 else
2156 addr_offset = start_address - section->vma;
2157
2158 if (stop_address == (bfd_vma) -1)
2159 stop_offset = datasize / opb;
2160 else
2161 {
2162 if (stop_address < section->vma)
2163 stop_offset = 0;
2164 else
2165 stop_offset = stop_address - section->vma;
2166 if (stop_offset > datasize / opb)
2167 stop_offset = datasize / opb;
2168 }
2169
2170 if (addr_offset >= stop_offset)
2171 return;
2172
155e0d23 2173 /* Decide which set of relocs to use. Load them if necessary. */
3b9ad1cc 2174 paux = (struct objdump_disasm_info *) pinfo->application_data;
a24bb4f0 2175 if (paux->dynrelbuf && dump_dynamic_reloc_info)
155e0d23
NC
2176 {
2177 rel_pp = paux->dynrelbuf;
2178 rel_count = paux->dynrelcount;
2179 /* Dynamic reloc addresses are absolute, non-dynamic are section
50c2245b 2180 relative. REL_OFFSET specifies the reloc address corresponding
155e0d23 2181 to the start of this section. */
68b3b8dc 2182 rel_offset = section->vma;
155e0d23
NC
2183 }
2184 else
2185 {
2186 rel_count = 0;
2187 rel_pp = NULL;
2188 rel_offset = 0;
2189
2190 if ((section->flags & SEC_RELOC) != 0
d99b6465 2191 && (dump_reloc_info || pinfo->disassembler_needs_relocs))
155e0d23
NC
2192 {
2193 long relsize;
2194
2195 relsize = bfd_get_reloc_upper_bound (abfd, section);
2196 if (relsize < 0)
2197 bfd_fatal (bfd_get_filename (abfd));
2198
2199 if (relsize > 0)
2200 {
3f5e193b 2201 rel_ppstart = rel_pp = (arelent **) xmalloc (relsize);
155e0d23
NC
2202 rel_count = bfd_canonicalize_reloc (abfd, section, rel_pp, syms);
2203 if (rel_count < 0)
2204 bfd_fatal (bfd_get_filename (abfd));
2205
2206 /* Sort the relocs by address. */
2207 qsort (rel_pp, rel_count, sizeof (arelent *), compare_relocs);
2208 }
2209 }
155e0d23
NC
2210 }
2211 rel_ppend = rel_pp + rel_count;
2212
bae7501e 2213 if (!bfd_malloc_and_get_section (abfd, section, &data))
b02cd3e9
AM
2214 {
2215 non_fatal (_("Reading section %s failed because: %s"),
2216 section->name, bfd_errmsg (bfd_get_error ()));
2217 return;
2218 }
155e0d23
NC
2219
2220 paux->sec = section;
2221 pinfo->buffer = data;
2222 pinfo->buffer_vma = section->vma;
2223 pinfo->buffer_length = datasize;
2224 pinfo->section = section;
2225
155e0d23
NC
2226 /* Skip over the relocs belonging to addresses below the
2227 start address. */
2228 while (rel_pp < rel_ppend
2229 && (*rel_pp)->address < rel_offset + addr_offset)
2230 ++rel_pp;
2231
643902a4 2232 printf (_("\nDisassembly of section %s:\n"), section->name);
155e0d23
NC
2233
2234 /* Find the nearest symbol forwards from our current position. */
3b9ad1cc 2235 paux->require_sec = TRUE;
3f5e193b 2236 sym = (asymbol *) find_symbol_for_address (section->vma + addr_offset,
91d6fa6a 2237 (struct disassemble_info *) inf,
3f5e193b 2238 &place);
3b9ad1cc 2239 paux->require_sec = FALSE;
155e0d23 2240
46bc35a9
RS
2241 /* PR 9774: If the target used signed addresses then we must make
2242 sure that we sign extend the value that we calculate for 'addr'
2243 in the loop below. */
1b0adfe0
NC
2244 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2245 && (bed = get_elf_backend_data (abfd)) != NULL
2246 && bed->sign_extend_vma)
46bc35a9 2247 sign_adjust = (bfd_vma) 1 << (bed->s->arch_size - 1);
1b0adfe0 2248
155e0d23
NC
2249 /* Disassemble a block of instructions up to the address associated with
2250 the symbol we have just found. Then print the symbol and find the
2251 next symbol on. Repeat until we have disassembled the entire section
2252 or we have reached the end of the address range we are interested in. */
2253 while (addr_offset < stop_offset)
2254 {
22a398e1 2255 bfd_vma addr;
155e0d23 2256 asymbol *nextsym;
bdc4de1b 2257 bfd_vma nextstop_offset;
155e0d23 2258 bfd_boolean insns;
d3def5d7 2259 bfd_boolean do_print = TRUE;
155e0d23 2260
22a398e1 2261 addr = section->vma + addr_offset;
095ad3b8 2262 addr = ((addr & ((sign_adjust << 1) - 1)) ^ sign_adjust) - sign_adjust;
22a398e1
NC
2263
2264 if (sym != NULL && bfd_asymbol_value (sym) <= addr)
155e0d23
NC
2265 {
2266 int x;
2267
2268 for (x = place;
2269 (x < sorted_symcount
22a398e1 2270 && (bfd_asymbol_value (sorted_syms[x]) <= addr));
155e0d23
NC
2271 ++x)
2272 continue;
2273
22a398e1 2274 pinfo->symbols = sorted_syms + place;
155e0d23 2275 pinfo->num_symbols = x - place;
2087ad84 2276 pinfo->symtab_pos = place;
155e0d23
NC
2277 }
2278 else
22a398e1
NC
2279 {
2280 pinfo->symbols = NULL;
2281 pinfo->num_symbols = 0;
2087ad84 2282 pinfo->symtab_pos = -1;
22a398e1 2283 }
155e0d23 2284
d3def5d7
MY
2285 if (sym && paux->symbol)
2286 {
2287 const char *name = bfd_asymbol_name (sym);
2288 char *alloc = NULL;
2289
2290 if (do_demangle && name[0] != '\0')
2291 {
2292 /* Demangle the name. */
2293 alloc = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
2294 if (alloc != NULL)
2295 name = alloc;
2296 }
2297 do_print = streq (name, paux->symbol);
2298 free (alloc);
2299 }
2300
2301 if (! prefix_addresses && do_print)
155e0d23
NC
2302 {
2303 pinfo->fprintf_func (pinfo->stream, "\n");
22a398e1 2304 objdump_print_addr_with_sym (abfd, section, sym, addr,
155e0d23
NC
2305 pinfo, FALSE);
2306 pinfo->fprintf_func (pinfo->stream, ":\n");
2307 }
2308
22a398e1 2309 if (sym != NULL && bfd_asymbol_value (sym) > addr)
155e0d23
NC
2310 nextsym = sym;
2311 else if (sym == NULL)
2312 nextsym = NULL;
2313 else
2314 {
22a398e1
NC
2315#define is_valid_next_sym(SYM) \
2316 ((SYM)->section == section \
2317 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
2318 && pinfo->symbol_is_valid (SYM, pinfo))
3aade688 2319
155e0d23
NC
2320 /* Search forward for the next appropriate symbol in
2321 SECTION. Note that all the symbols are sorted
2322 together into one big array, and that some sections
2323 may have overlapping addresses. */
2324 while (place < sorted_symcount
22a398e1 2325 && ! is_valid_next_sym (sorted_syms [place]))
155e0d23 2326 ++place;
22a398e1 2327
155e0d23
NC
2328 if (place >= sorted_symcount)
2329 nextsym = NULL;
2330 else
2331 nextsym = sorted_syms[place];
2332 }
2333
22a398e1
NC
2334 if (sym != NULL && bfd_asymbol_value (sym) > addr)
2335 nextstop_offset = bfd_asymbol_value (sym) - section->vma;
155e0d23
NC
2336 else if (nextsym == NULL)
2337 nextstop_offset = stop_offset;
2338 else
22a398e1
NC
2339 nextstop_offset = bfd_asymbol_value (nextsym) - section->vma;
2340
84d7b001
NC
2341 if (nextstop_offset > stop_offset
2342 || nextstop_offset <= addr_offset)
22a398e1 2343 nextstop_offset = stop_offset;
155e0d23
NC
2344
2345 /* If a symbol is explicitly marked as being an object
2346 rather than a function, just dump the bytes without
2347 disassembling them. */
2348 if (disassemble_all
2349 || sym == NULL
abf71725 2350 || sym->section != section
22a398e1 2351 || bfd_asymbol_value (sym) > addr
155e0d23
NC
2352 || ((sym->flags & BSF_OBJECT) == 0
2353 && (strstr (bfd_asymbol_name (sym), "gnu_compiled")
2354 == NULL)
2355 && (strstr (bfd_asymbol_name (sym), "gcc2_compiled")
2356 == NULL))
2357 || (sym->flags & BSF_FUNCTION) != 0)
2358 insns = TRUE;
2359 else
2360 insns = FALSE;
2361
d3def5d7
MY
2362 if (do_print)
2363 {
2364 disassemble_bytes (pinfo, paux->disassemble_fn, insns, data,
2365 addr_offset, nextstop_offset,
2366 rel_offset, &rel_pp, rel_ppend);
2367 if (paux->symbol)
2368 break;
2369 }
3aade688 2370
155e0d23
NC
2371 addr_offset = nextstop_offset;
2372 sym = nextsym;
2373 }
2374
2375 free (data);
2376
2377 if (rel_ppstart != NULL)
2378 free (rel_ppstart);
2379}
2380
252b5132
RH
2381/* Disassemble the contents of an object file. */
2382
2383static void
46dca2e0 2384disassemble_data (bfd *abfd)
252b5132 2385{
252b5132
RH
2386 struct disassemble_info disasm_info;
2387 struct objdump_disasm_info aux;
4c45e5c9 2388 long i;
252b5132
RH
2389
2390 print_files = NULL;
2391 prev_functionname = NULL;
2392 prev_line = -1;
9b8d1a36 2393 prev_discriminator = 0;
252b5132
RH
2394
2395 /* We make a copy of syms to sort. We don't want to sort syms
2396 because that will screw up the relocs. */
4c45e5c9 2397 sorted_symcount = symcount ? symcount : dynsymcount;
3f5e193b
NC
2398 sorted_syms = (asymbol **) xmalloc ((sorted_symcount + synthcount)
2399 * sizeof (asymbol *));
4c45e5c9
JJ
2400 memcpy (sorted_syms, symcount ? syms : dynsyms,
2401 sorted_symcount * sizeof (asymbol *));
252b5132 2402
4c45e5c9
JJ
2403 sorted_symcount = remove_useless_symbols (sorted_syms, sorted_symcount);
2404
2405 for (i = 0; i < synthcount; ++i)
2406 {
2407 sorted_syms[sorted_symcount] = synthsyms + i;
2408 ++sorted_symcount;
2409 }
252b5132 2410
98a91d6a 2411 /* Sort the symbols into section and symbol order. */
252b5132
RH
2412 qsort (sorted_syms, sorted_symcount, sizeof (asymbol *), compare_symbols);
2413
22a398e1 2414 init_disassemble_info (&disasm_info, stdout, (fprintf_ftype) fprintf);
98a91d6a 2415
46dca2e0 2416 disasm_info.application_data = (void *) &aux;
252b5132 2417 aux.abfd = abfd;
b34976b6 2418 aux.require_sec = FALSE;
155e0d23
NC
2419 aux.dynrelbuf = NULL;
2420 aux.dynrelcount = 0;
ce04548a 2421 aux.reloc = NULL;
d3def5d7 2422 aux.symbol = disasm_sym;
155e0d23 2423
252b5132
RH
2424 disasm_info.print_address_func = objdump_print_address;
2425 disasm_info.symbol_at_address_func = objdump_symbol_at_address;
2426
d3ba0551 2427 if (machine != NULL)
252b5132 2428 {
91d6fa6a 2429 const bfd_arch_info_type *inf = bfd_scan_arch (machine);
98a91d6a 2430
91d6fa6a 2431 if (inf == NULL)
a8c62f1c 2432 fatal (_("can't use supplied machine %s"), machine);
98a91d6a 2433
91d6fa6a 2434 abfd->arch_info = inf;
252b5132
RH
2435 }
2436
2437 if (endian != BFD_ENDIAN_UNKNOWN)
2438 {
2439 struct bfd_target *xvec;
2440
3f5e193b 2441 xvec = (struct bfd_target *) xmalloc (sizeof (struct bfd_target));
252b5132
RH
2442 memcpy (xvec, abfd->xvec, sizeof (struct bfd_target));
2443 xvec->byteorder = endian;
2444 abfd->xvec = xvec;
2445 }
2446
155e0d23 2447 /* Use libopcodes to locate a suitable disassembler. */
003ca0fd
YQ
2448 aux.disassemble_fn = disassembler (bfd_get_arch (abfd),
2449 bfd_big_endian (abfd),
2450 bfd_get_mach (abfd), abfd);
155e0d23 2451 if (!aux.disassemble_fn)
252b5132 2452 {
a8c62f1c 2453 non_fatal (_("can't disassemble for architecture %s\n"),
37cc8ec1 2454 bfd_printable_arch_mach (bfd_get_arch (abfd), 0));
75cd796a 2455 exit_status = 1;
252b5132
RH
2456 return;
2457 }
2458
2459 disasm_info.flavour = bfd_get_flavour (abfd);
2460 disasm_info.arch = bfd_get_arch (abfd);
2461 disasm_info.mach = bfd_get_mach (abfd);
dd92f639 2462 disasm_info.disassembler_options = disassembler_options;
155e0d23 2463 disasm_info.octets_per_byte = bfd_octets_per_byte (abfd);
0bcb06d2
AS
2464 disasm_info.skip_zeroes = DEFAULT_SKIP_ZEROES;
2465 disasm_info.skip_zeroes_at_end = DEFAULT_SKIP_ZEROES_AT_END;
d99b6465 2466 disasm_info.disassembler_needs_relocs = FALSE;
0af11b59 2467
252b5132 2468 if (bfd_big_endian (abfd))
a8a9050d 2469 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_BIG;
252b5132 2470 else if (bfd_little_endian (abfd))
a8a9050d 2471 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_LITTLE;
252b5132
RH
2472 else
2473 /* ??? Aborting here seems too drastic. We could default to big or little
2474 instead. */
2475 disasm_info.endian = BFD_ENDIAN_UNKNOWN;
2476
22a398e1
NC
2477 /* Allow the target to customize the info structure. */
2478 disassemble_init_for_target (& disasm_info);
2479
a24bb4f0 2480 /* Pre-load the dynamic relocs as we may need them during the disassembly. */
fd7bb956
AM
2481 {
2482 long relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
3aade688 2483
a24bb4f0 2484 if (relsize < 0 && dump_dynamic_reloc_info)
fd7bb956
AM
2485 bfd_fatal (bfd_get_filename (abfd));
2486
2487 if (relsize > 0)
2488 {
3f5e193b 2489 aux.dynrelbuf = (arelent **) xmalloc (relsize);
3b9ad1cc
AM
2490 aux.dynrelcount = bfd_canonicalize_dynamic_reloc (abfd,
2491 aux.dynrelbuf,
2492 dynsyms);
155e0d23 2493 if (aux.dynrelcount < 0)
fd7bb956
AM
2494 bfd_fatal (bfd_get_filename (abfd));
2495
2496 /* Sort the relocs by address. */
3b9ad1cc
AM
2497 qsort (aux.dynrelbuf, aux.dynrelcount, sizeof (arelent *),
2498 compare_relocs);
fd7bb956
AM
2499 }
2500 }
2087ad84
PB
2501 disasm_info.symtab = sorted_syms;
2502 disasm_info.symtab_size = sorted_symcount;
fd7bb956 2503
155e0d23 2504 bfd_map_over_sections (abfd, disassemble_section, & disasm_info);
98a91d6a 2505
155e0d23
NC
2506 if (aux.dynrelbuf != NULL)
2507 free (aux.dynrelbuf);
252b5132
RH
2508 free (sorted_syms);
2509}
2510\f
dda8d76d 2511static bfd_boolean
7bcbeb0f
CC
2512load_specific_debug_section (enum dwarf_section_display_enum debug,
2513 asection *sec, void *file)
365544c3
L
2514{
2515 struct dwarf_section *section = &debug_displays [debug].section;
3f5e193b 2516 bfd *abfd = (bfd *) file;
bfec0f11 2517 bfd_byte *contents;
f2023ce7 2518 bfd_size_type amt;
365544c3 2519
365544c3 2520 if (section->start != NULL)
dda8d76d
NC
2521 {
2522 /* If it is already loaded, do nothing. */
2523 if (streq (section->filename, bfd_get_filename (abfd)))
2524 return TRUE;
2525 free (section->start);
2526 }
365544c3 2527
dda8d76d 2528 section->filename = bfd_get_filename (abfd);
d1c4b12b 2529 section->reloc_info = NULL;
3aade688 2530 section->num_relocs = 0;
595330b7 2531 section->address = bfd_get_section_vma (abfd, sec);
365544c3 2532 section->size = bfd_get_section_size (sec);
f2023ce7
AM
2533 amt = section->size + 1;
2534 section->start = contents = malloc (amt);
06614111 2535 section->user_data = sec;
f2023ce7
AM
2536 if (amt == 0
2537 || section->start == NULL
bfec0f11 2538 || !bfd_get_full_section_contents (abfd, sec, &contents))
365544c3
L
2539 {
2540 free_debug_section (debug);
2541 printf (_("\nCan't get contents for section '%s'.\n"),
2542 section->name);
dda8d76d 2543 return FALSE;
1b315056 2544 }
4f1881b9
AM
2545 /* Ensure any string section has a terminating NUL. */
2546 section->start[section->size] = 0;
1b315056 2547
0acf065b
CC
2548 if (is_relocatable && debug_displays [debug].relocate)
2549 {
dda8d76d
NC
2550 long reloc_size;
2551 bfd_boolean ret;
2552
8a72cc6e 2553 bfd_cache_section_contents (sec, section->start);
0acf065b
CC
2554
2555 ret = bfd_simple_get_relocated_section_contents (abfd,
2556 sec,
2557 section->start,
2558 syms) != NULL;
2559
2560 if (! ret)
2561 {
2562 free_debug_section (debug);
2563 printf (_("\nCan't get contents for section '%s'.\n"),
2564 section->name);
dda8d76d 2565 return FALSE;
0acf065b 2566 }
d1c4b12b 2567
d1c4b12b
NC
2568 reloc_size = bfd_get_reloc_upper_bound (abfd, sec);
2569 if (reloc_size > 0)
2570 {
2571 unsigned long reloc_count;
2572 arelent **relocs;
2573
2574 relocs = (arelent **) xmalloc (reloc_size);
2575
2576 reloc_count = bfd_canonicalize_reloc (abfd, sec, relocs, NULL);
2577 if (reloc_count == 0)
2578 free (relocs);
2579 else
2580 {
2581 section->reloc_info = relocs;
2582 section->num_relocs = reloc_count;
2583 }
2584 }
bdc4de1b 2585 }
0acf065b 2586
dda8d76d 2587 return TRUE;
7bcbeb0f
CC
2588}
2589
d1c4b12b
NC
2590bfd_boolean
2591reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
2592{
2593 arelent ** relocs;
2594 arelent * rp;
2595
2596 if (dsec == NULL || dsec->reloc_info == NULL)
2597 return FALSE;
2598
2599 relocs = (arelent **) dsec->reloc_info;
2600
2601 for (; (rp = * relocs) != NULL; ++ relocs)
2602 if (rp->address == offset)
2603 return TRUE;
2604
2605 return FALSE;
2606}
2607
dda8d76d 2608bfd_boolean
7bcbeb0f
CC
2609load_debug_section (enum dwarf_section_display_enum debug, void *file)
2610{
2611 struct dwarf_section *section = &debug_displays [debug].section;
3f5e193b 2612 bfd *abfd = (bfd *) file;
7bcbeb0f
CC
2613 asection *sec;
2614
2615 /* If it is already loaded, do nothing. */
2616 if (section->start != NULL)
dda8d76d
NC
2617 {
2618 if (streq (section->filename, bfd_get_filename (abfd)))
2619 return TRUE;
2620 }
7bcbeb0f
CC
2621
2622 /* Locate the debug section. */
2623 sec = bfd_get_section_by_name (abfd, section->uncompressed_name);
2624 if (sec != NULL)
2625 section->name = section->uncompressed_name;
2626 else
2627 {
2628 sec = bfd_get_section_by_name (abfd, section->compressed_name);
2629 if (sec != NULL)
2630 section->name = section->compressed_name;
2631 }
2632 if (sec == NULL)
dda8d76d 2633 return FALSE;
7bcbeb0f
CC
2634
2635 return load_specific_debug_section (debug, sec, file);
365544c3
L
2636}
2637
2638void
2639free_debug_section (enum dwarf_section_display_enum debug)
2640{
2641 struct dwarf_section *section = &debug_displays [debug].section;
2642
2643 if (section->start == NULL)
2644 return;
2645
06614111
NC
2646 /* PR 17512: file: 0f67f69d. */
2647 if (section->user_data != NULL)
2648 {
2649 asection * sec = (asection *) section->user_data;
2650
2651 /* If we are freeing contents that are also pointed to by the BFD
2652 library's section structure then make sure to update those pointers
2653 too. Otherwise, the next time we try to load data for this section
2654 we can end up using a stale pointer. */
2655 if (section->start == sec->contents)
2656 {
2657 sec->contents = NULL;
2658 sec->flags &= ~ SEC_IN_MEMORY;
db6b071a 2659 sec->compress_status = COMPRESS_SECTION_NONE;
06614111
NC
2660 }
2661 }
2662
365544c3
L
2663 free ((char *) section->start);
2664 section->start = NULL;
2665 section->address = 0;
2666 section->size = 0;
2667}
2668
dda8d76d
NC
2669void
2670close_debug_file (void * file)
2671{
2672 bfd * abfd = (bfd *) file;
2673
2674 bfd_close (abfd);
2675}
2676
2677void *
2678open_debug_file (const char * pathname)
2679{
2680 bfd * data;
2681
2682 data = bfd_openr (pathname, NULL);
2683 if (data == NULL)
2684 return NULL;
2685
2686 if (! bfd_check_format (data, bfd_object))
2687 return NULL;
2688
2689 return data;
2690}
2691
365544c3
L
2692static void
2693dump_dwarf_section (bfd *abfd, asection *section,
2694 void *arg ATTRIBUTE_UNUSED)
2695{
2696 const char *name = bfd_get_section_name (abfd, section);
2697 const char *match;
3f5e193b 2698 int i;
365544c3 2699
0112cd26 2700 if (CONST_STRNEQ (name, ".gnu.linkonce.wi."))
365544c3
L
2701 match = ".debug_info";
2702 else
2703 match = name;
2704
2705 for (i = 0; i < max; i++)
4cb93e3b
TG
2706 if ((strcmp (debug_displays [i].section.uncompressed_name, match) == 0
2707 || strcmp (debug_displays [i].section.compressed_name, match) == 0)
2708 && debug_displays [i].enabled != NULL
2709 && *debug_displays [i].enabled)
365544c3 2710 {
c8450da8 2711 struct dwarf_section *sec = &debug_displays [i].section;
365544c3 2712
c8450da8
TG
2713 if (strcmp (sec->uncompressed_name, match) == 0)
2714 sec->name = sec->uncompressed_name;
2715 else
2716 sec->name = sec->compressed_name;
3f5e193b
NC
2717 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
2718 section, abfd))
c8450da8
TG
2719 {
2720 debug_displays [i].display (sec, abfd);
3aade688 2721
c8450da8 2722 if (i != info && i != abbrev)
3f5e193b 2723 free_debug_section ((enum dwarf_section_display_enum) i);
365544c3
L
2724 }
2725 break;
2726 }
2727}
2728
2729/* Dump the dwarf debugging information. */
2730
2731static void
2732dump_dwarf (bfd *abfd)
2733{
dda8d76d
NC
2734 bfd * separates;
2735
5184c2ae 2736 is_relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
365544c3 2737
09fc85f6 2738 eh_addr_size = bfd_arch_bits_per_address (abfd) / 8;
365544c3
L
2739
2740 if (bfd_big_endian (abfd))
2741 byte_get = byte_get_big_endian;
2742 else if (bfd_little_endian (abfd))
2743 byte_get = byte_get_little_endian;
2744 else
f41e4712
NC
2745 /* PR 17512: file: objdump-s-endless-loop.tekhex. */
2746 {
2747 warn (_("File %s does not contain any dwarf debug information\n"),
2748 bfd_get_filename (abfd));
2749 return;
2750 }
365544c3 2751
b129eb0e 2752 switch (bfd_get_arch (abfd))
2dc4cec1 2753 {
b129eb0e
RH
2754 case bfd_arch_i386:
2755 switch (bfd_get_mach (abfd))
2756 {
2757 case bfd_mach_x86_64:
2758 case bfd_mach_x86_64_intel_syntax:
64b384e1 2759 case bfd_mach_x86_64_nacl:
f24e5a8a
L
2760 case bfd_mach_x64_32:
2761 case bfd_mach_x64_32_intel_syntax:
64b384e1 2762 case bfd_mach_x64_32_nacl:
b129eb0e
RH
2763 init_dwarf_regnames_x86_64 ();
2764 break;
2765
2766 default:
2767 init_dwarf_regnames_i386 ();
2768 break;
2769 }
2770 break;
2771
3d875af5
L
2772 case bfd_arch_iamcu:
2773 init_dwarf_regnames_iamcu ();
2774 break;
2775
4ee22035
RH
2776 case bfd_arch_aarch64:
2777 init_dwarf_regnames_aarch64();
2778 break;
2779
d6bb17b0
AA
2780 case bfd_arch_s390:
2781 init_dwarf_regnames_s390 ();
2782 break;
2783
5bb0830d
AB
2784 case bfd_arch_riscv:
2785 init_dwarf_regnames_riscv ();
2786 break;
2787
8ab159a9
AM
2788 case bfd_arch_s12z:
2789 /* S12Z has a 24 bit address space. But the only known
2790 producer of dwarf_info encodes addresses into 32 bits. */
2791 eh_addr_size = 4;
2792 break;
2793
b129eb0e
RH
2794 default:
2795 break;
2dc4cec1
L
2796 }
2797
dda8d76d
NC
2798 separates = load_separate_debug_file (abfd, bfd_get_filename (abfd));
2799
365544c3
L
2800 bfd_map_over_sections (abfd, dump_dwarf_section, NULL);
2801
dda8d76d
NC
2802 if (separates)
2803 bfd_map_over_sections (separates, dump_dwarf_section, NULL);
2804
365544c3
L
2805 free_debug_memory ();
2806}
2807\f
29ca8dc5
NS
2808/* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
2809 it. Return NULL on failure. */
252b5132 2810
bae7501e 2811static bfd_byte *
29ca8dc5 2812read_section_stabs (bfd *abfd, const char *sect_name, bfd_size_type *size_ptr)
252b5132 2813{
29ca8dc5 2814 asection *stabsect;
bae7501e 2815 bfd_byte *contents;
252b5132 2816
29ca8dc5 2817 stabsect = bfd_get_section_by_name (abfd, sect_name);
155e0d23 2818 if (stabsect == NULL)
252b5132 2819 {
29ca8dc5 2820 printf (_("No %s section present\n\n"), sect_name);
b34976b6 2821 return FALSE;
252b5132
RH
2822 }
2823
bae7501e 2824 if (!bfd_malloc_and_get_section (abfd, stabsect, &contents))
252b5132 2825 {
a8c62f1c 2826 non_fatal (_("reading %s section of %s failed: %s"),
29ca8dc5 2827 sect_name, bfd_get_filename (abfd),
37cc8ec1 2828 bfd_errmsg (bfd_get_error ()));
75cd796a 2829 exit_status = 1;
a8c62f1c 2830 free (contents);
29ca8dc5 2831 return NULL;
252b5132
RH
2832 }
2833
bae7501e 2834 *size_ptr = bfd_section_size (abfd, stabsect);
252b5132 2835
29ca8dc5 2836 return contents;
252b5132
RH
2837}
2838
2839/* Stabs entries use a 12 byte format:
2840 4 byte string table index
2841 1 byte stab type
2842 1 byte stab other field
2843 2 byte stab desc field
2844 4 byte stab value
2845 FIXME: This will have to change for a 64 bit object format. */
2846
46dca2e0
NC
2847#define STRDXOFF (0)
2848#define TYPEOFF (4)
2849#define OTHEROFF (5)
2850#define DESCOFF (6)
2851#define VALOFF (8)
252b5132
RH
2852#define STABSIZE (12)
2853
2854/* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2855 using string table section STRSECT_NAME (in `strtab'). */
2856
2857static void
3b9ad1cc
AM
2858print_section_stabs (bfd *abfd,
2859 const char *stabsect_name,
2860 unsigned *string_offset_ptr)
252b5132
RH
2861{
2862 int i;
46dca2e0 2863 unsigned file_string_table_offset = 0;
29ca8dc5 2864 unsigned next_file_string_table_offset = *string_offset_ptr;
252b5132
RH
2865 bfd_byte *stabp, *stabs_end;
2866
2867 stabp = stabs;
2868 stabs_end = stabp + stab_size;
2869
2870 printf (_("Contents of %s section:\n\n"), stabsect_name);
2871 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2872
2873 /* Loop through all symbols and print them.
2874
2875 We start the index at -1 because there is a dummy symbol on
2876 the front of stabs-in-{coff,elf} sections that supplies sizes. */
f41e4712 2877 for (i = -1; stabp <= stabs_end - STABSIZE; stabp += STABSIZE, i++)
252b5132
RH
2878 {
2879 const char *name;
2880 unsigned long strx;
2881 unsigned char type, other;
2882 unsigned short desc;
2883 bfd_vma value;
2884
2885 strx = bfd_h_get_32 (abfd, stabp + STRDXOFF);
2886 type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
2887 other = bfd_h_get_8 (abfd, stabp + OTHEROFF);
2888 desc = bfd_h_get_16 (abfd, stabp + DESCOFF);
2889 value = bfd_h_get_32 (abfd, stabp + VALOFF);
2890
2891 printf ("\n%-6d ", i);
2892 /* Either print the stab name, or, if unnamed, print its number
0af11b59 2893 again (makes consistent formatting for tools like awk). */
252b5132
RH
2894 name = bfd_get_stab_name (type);
2895 if (name != NULL)
2896 printf ("%-6s", name);
2897 else if (type == N_UNDF)
2898 printf ("HdrSym");
2899 else
2900 printf ("%-6d", type);
2901 printf (" %-6d %-6d ", other, desc);
d8180c76 2902 bfd_printf_vma (abfd, value);
252b5132
RH
2903 printf (" %-6lu", strx);
2904
2905 /* Symbols with type == 0 (N_UNDF) specify the length of the
2906 string table associated with this file. We use that info
2907 to know how to relocate the *next* file's string table indices. */
252b5132
RH
2908 if (type == N_UNDF)
2909 {
2910 file_string_table_offset = next_file_string_table_offset;
2911 next_file_string_table_offset += value;
2912 }
2913 else
2914 {
f41e4712
NC
2915 bfd_size_type amt = strx + file_string_table_offset;
2916
252b5132
RH
2917 /* Using the (possibly updated) string table offset, print the
2918 string (if any) associated with this symbol. */
f41e4712
NC
2919 if (amt < stabstr_size)
2920 /* PR 17512: file: 079-79389-0.001:0.1. */
2921 printf (" %.*s", (int)(stabstr_size - amt), strtab + amt);
252b5132
RH
2922 else
2923 printf (" *");
2924 }
2925 }
2926 printf ("\n\n");
29ca8dc5 2927 *string_offset_ptr = next_file_string_table_offset;
252b5132
RH
2928}
2929
155e0d23
NC
2930typedef struct
2931{
2932 const char * section_name;
2933 const char * string_section_name;
29ca8dc5 2934 unsigned string_offset;
155e0d23
NC
2935}
2936stab_section_names;
2937
252b5132 2938static void
155e0d23 2939find_stabs_section (bfd *abfd, asection *section, void *names)
252b5132 2940{
155e0d23
NC
2941 int len;
2942 stab_section_names * sought = (stab_section_names *) names;
252b5132
RH
2943
2944 /* Check for section names for which stabsect_name is a prefix, to
29ca8dc5 2945 handle .stab.N, etc. */
155e0d23
NC
2946 len = strlen (sought->section_name);
2947
2948 /* If the prefix matches, and the files section name ends with a
2949 nul or a digit, then we match. I.e., we want either an exact
2950 match or a section followed by a number. */
2951 if (strncmp (sought->section_name, section->name, len) == 0
2952 && (section->name[len] == 0
29ca8dc5 2953 || (section->name[len] == '.' && ISDIGIT (section->name[len + 1]))))
252b5132 2954 {
29ca8dc5
NS
2955 if (strtab == NULL)
2956 strtab = read_section_stabs (abfd, sought->string_section_name,
2957 &stabstr_size);
3aade688 2958
29ca8dc5 2959 if (strtab)
252b5132 2960 {
bae7501e 2961 stabs = read_section_stabs (abfd, section->name, &stab_size);
29ca8dc5
NS
2962 if (stabs)
2963 print_section_stabs (abfd, section->name, &sought->string_offset);
252b5132
RH
2964 }
2965 }
2966}
98a91d6a 2967
155e0d23
NC
2968static void
2969dump_stabs_section (bfd *abfd, char *stabsect_name, char *strsect_name)
2970{
2971 stab_section_names s;
2972
2973 s.section_name = stabsect_name;
2974 s.string_section_name = strsect_name;
29ca8dc5
NS
2975 s.string_offset = 0;
2976
155e0d23 2977 bfd_map_over_sections (abfd, find_stabs_section, & s);
29ca8dc5
NS
2978
2979 free (strtab);
2980 strtab = NULL;
155e0d23
NC
2981}
2982
2983/* Dump the any sections containing stabs debugging information. */
2984
2985static void
2986dump_stabs (bfd *abfd)
2987{
2988 dump_stabs_section (abfd, ".stab", ".stabstr");
2989 dump_stabs_section (abfd, ".stab.excl", ".stab.exclstr");
2990 dump_stabs_section (abfd, ".stab.index", ".stab.indexstr");
62bb81b8
TG
2991
2992 /* For Darwin. */
2993 dump_stabs_section (abfd, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
2994
155e0d23
NC
2995 dump_stabs_section (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2996}
252b5132
RH
2997\f
2998static void
46dca2e0 2999dump_bfd_header (bfd *abfd)
252b5132
RH
3000{
3001 char *comma = "";
3002
3003 printf (_("architecture: %s, "),
3004 bfd_printable_arch_mach (bfd_get_arch (abfd),
3005 bfd_get_mach (abfd)));
6b6bc957 3006 printf (_("flags 0x%08x:\n"), abfd->flags & ~BFD_FLAGS_FOR_BFD_USE_MASK);
252b5132
RH
3007
3008#define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
3009 PF (HAS_RELOC, "HAS_RELOC");
3010 PF (EXEC_P, "EXEC_P");
3011 PF (HAS_LINENO, "HAS_LINENO");
3012 PF (HAS_DEBUG, "HAS_DEBUG");
3013 PF (HAS_SYMS, "HAS_SYMS");
3014 PF (HAS_LOCALS, "HAS_LOCALS");
3015 PF (DYNAMIC, "DYNAMIC");
3016 PF (WP_TEXT, "WP_TEXT");
3017 PF (D_PAGED, "D_PAGED");
3018 PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE");
3019 printf (_("\nstart address 0x"));
d8180c76 3020 bfd_printf_vma (abfd, abfd->start_address);
252b5132
RH
3021 printf ("\n");
3022}
98a91d6a 3023
252b5132
RH
3024\f
3025static void
46dca2e0 3026dump_bfd_private_header (bfd *abfd)
252b5132
RH
3027{
3028 bfd_print_private_bfd_data (abfd, stdout);
3029}
3030
6abcee90
TG
3031static void
3032dump_target_specific (bfd *abfd)
3033{
3034 const struct objdump_private_desc * const *desc;
3035 struct objdump_private_option *opt;
3036 char *e, *b;
3037
3038 /* Find the desc. */
3039 for (desc = objdump_private_vectors; *desc != NULL; desc++)
3040 if ((*desc)->filter (abfd))
3041 break;
3042
c32d6f7b 3043 if (*desc == NULL)
6abcee90
TG
3044 {
3045 non_fatal (_("option -P/--private not supported by this file"));
3046 return;
3047 }
3048
3049 /* Clear all options. */
3050 for (opt = (*desc)->options; opt->name; opt++)
3051 opt->selected = FALSE;
3052
3053 /* Decode options. */
3054 b = dump_private_options;
3055 do
3056 {
3057 e = strchr (b, ',');
3058
3059 if (e)
3060 *e = 0;
3061
3062 for (opt = (*desc)->options; opt->name; opt++)
3063 if (strcmp (opt->name, b) == 0)
3064 {
3065 opt->selected = TRUE;
3066 break;
3067 }
3068 if (opt->name == NULL)
3069 non_fatal (_("target specific dump '%s' not supported"), b);
3070
3071 if (e)
3072 {
3073 *e = ',';
3074 b = e + 1;
3075 }
3076 }
3077 while (e != NULL);
3078
3079 /* Dump. */
3080 (*desc)->dump (abfd);
3081}
155e0d23
NC
3082\f
3083/* Display a section in hexadecimal format with associated characters.
3084 Each line prefixed by the zero padded address. */
d24de309 3085
252b5132 3086static void
155e0d23 3087dump_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNUSED)
252b5132 3088{
cfd14a50 3089 bfd_byte *data = NULL;
155e0d23 3090 bfd_size_type datasize;
bdc4de1b
NC
3091 bfd_vma addr_offset;
3092 bfd_vma start_offset;
3093 bfd_vma stop_offset;
155e0d23
NC
3094 unsigned int opb = bfd_octets_per_byte (abfd);
3095 /* Bytes per line. */
3096 const int onaline = 16;
3097 char buf[64];
3098 int count;
3099 int width;
3100
3101 if ((section->flags & SEC_HAS_CONTENTS) == 0)
3102 return;
3103
3104 if (! process_section_p (section))
3105 return;
3aade688 3106
155e0d23
NC
3107 if ((datasize = bfd_section_size (abfd, section)) == 0)
3108 return;
3109
155e0d23
NC
3110 /* Compute the address range to display. */
3111 if (start_address == (bfd_vma) -1
3112 || start_address < section->vma)
3113 start_offset = 0;
3114 else
3115 start_offset = start_address - section->vma;
3116
3117 if (stop_address == (bfd_vma) -1)
3118 stop_offset = datasize / opb;
3119 else
252b5132 3120 {
155e0d23
NC
3121 if (stop_address < section->vma)
3122 stop_offset = 0;
3123 else
3124 stop_offset = stop_address - section->vma;
252b5132 3125
155e0d23
NC
3126 if (stop_offset > datasize / opb)
3127 stop_offset = datasize / opb;
252b5132
RH
3128 }
3129
32760852
NC
3130 if (start_offset >= stop_offset)
3131 return;
3aade688 3132
32760852
NC
3133 printf (_("Contents of section %s:"), section->name);
3134 if (display_file_offsets)
0af1713e
AM
3135 printf (_(" (Starting at file offset: 0x%lx)"),
3136 (unsigned long) (section->filepos + start_offset));
32760852
NC
3137 printf ("\n");
3138
4a114e3e
L
3139 if (!bfd_get_full_section_contents (abfd, section, &data))
3140 {
0821d5b1
NC
3141 non_fatal (_("Reading section %s failed because: %s"),
3142 section->name, bfd_errmsg (bfd_get_error ()));
4a114e3e
L
3143 return;
3144 }
32760852 3145
155e0d23 3146 width = 4;
026df7c5 3147
155e0d23
NC
3148 bfd_sprintf_vma (abfd, buf, start_offset + section->vma);
3149 if (strlen (buf) >= sizeof (buf))
3150 abort ();
026df7c5 3151
155e0d23
NC
3152 count = 0;
3153 while (buf[count] == '0' && buf[count+1] != '\0')
3154 count++;
3155 count = strlen (buf) - count;
3156 if (count > width)
3157 width = count;
252b5132 3158
155e0d23
NC
3159 bfd_sprintf_vma (abfd, buf, stop_offset + section->vma - 1);
3160 if (strlen (buf) >= sizeof (buf))
3161 abort ();
026df7c5 3162
155e0d23
NC
3163 count = 0;
3164 while (buf[count] == '0' && buf[count+1] != '\0')
3165 count++;
3166 count = strlen (buf) - count;
3167 if (count > width)
3168 width = count;
026df7c5 3169
155e0d23
NC
3170 for (addr_offset = start_offset;
3171 addr_offset < stop_offset; addr_offset += onaline / opb)
d24de309 3172 {
155e0d23 3173 bfd_size_type j;
d24de309 3174
155e0d23
NC
3175 bfd_sprintf_vma (abfd, buf, (addr_offset + section->vma));
3176 count = strlen (buf);
3177 if ((size_t) count >= sizeof (buf))
3178 abort ();
d24de309 3179
155e0d23
NC
3180 putchar (' ');
3181 while (count < width)
252b5132 3182 {
155e0d23
NC
3183 putchar ('0');
3184 count++;
3185 }
3186 fputs (buf + count - width, stdout);
3187 putchar (' ');
252b5132 3188
155e0d23
NC
3189 for (j = addr_offset * opb;
3190 j < addr_offset * opb + onaline; j++)
3191 {
3192 if (j < stop_offset * opb)
3193 printf ("%02x", (unsigned) (data[j]));
3194 else
3195 printf (" ");
3196 if ((j & 3) == 3)
3197 printf (" ");
252b5132
RH
3198 }
3199
155e0d23
NC
3200 printf (" ");
3201 for (j = addr_offset * opb;
3202 j < addr_offset * opb + onaline; j++)
3203 {
3204 if (j >= stop_offset * opb)
3205 printf (" ");
3206 else
3207 printf ("%c", ISPRINT (data[j]) ? data[j] : '.');
3208 }
3209 putchar ('\n');
252b5132 3210 }
155e0d23 3211 free (data);
252b5132 3212}
155e0d23 3213
98a91d6a 3214/* Actually display the various requested regions. */
252b5132
RH
3215
3216static void
46dca2e0 3217dump_data (bfd *abfd)
252b5132 3218{
155e0d23 3219 bfd_map_over_sections (abfd, dump_section, NULL);
252b5132
RH
3220}
3221
98a91d6a
NC
3222/* Should perhaps share code and display with nm? */
3223
252b5132 3224static void
46dca2e0 3225dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic)
252b5132
RH
3226{
3227 asymbol **current;
91d6fa6a 3228 long max_count;
252b5132
RH
3229 long count;
3230
3231 if (dynamic)
3232 {
3233 current = dynsyms;
91d6fa6a 3234 max_count = dynsymcount;
252b5132
RH
3235 printf ("DYNAMIC SYMBOL TABLE:\n");
3236 }
3237 else
3238 {
3239 current = syms;
91d6fa6a 3240 max_count = symcount;
252b5132
RH
3241 printf ("SYMBOL TABLE:\n");
3242 }
3243
91d6fa6a 3244 if (max_count == 0)
a1df01d1
AM
3245 printf (_("no symbols\n"));
3246
91d6fa6a 3247 for (count = 0; count < max_count; count++)
252b5132 3248 {
155e0d23
NC
3249 bfd *cur_bfd;
3250
3251 if (*current == NULL)
83ef0798 3252 printf (_("no information for symbol number %ld\n"), count);
155e0d23
NC
3253
3254 else if ((cur_bfd = bfd_asymbol_bfd (*current)) == NULL)
83ef0798 3255 printf (_("could not determine the type of symbol number %ld\n"),
155e0d23
NC
3256 count);
3257
661f7c35
NC
3258 else if (process_section_p ((* current)->section)
3259 && (dump_special_syms
3260 || !bfd_is_target_special_symbol (cur_bfd, *current)))
252b5132 3261 {
155e0d23 3262 const char *name = (*current)->name;
252b5132 3263
155e0d23 3264 if (do_demangle && name != NULL && *name != '\0')
252b5132 3265 {
252b5132
RH
3266 char *alloc;
3267
155e0d23
NC
3268 /* If we want to demangle the name, we demangle it
3269 here, and temporarily clobber it while calling
3270 bfd_print_symbol. FIXME: This is a gross hack. */
ed180cc5
AM
3271 alloc = bfd_demangle (cur_bfd, name, DMGL_ANSI | DMGL_PARAMS);
3272 if (alloc != NULL)
3273 (*current)->name = alloc;
252b5132
RH
3274 bfd_print_symbol (cur_bfd, stdout, *current,
3275 bfd_print_symbol_all);
ed180cc5
AM
3276 if (alloc != NULL)
3277 {
3278 (*current)->name = name;
3279 free (alloc);
3280 }
252b5132 3281 }
252b5132 3282 else
155e0d23
NC
3283 bfd_print_symbol (cur_bfd, stdout, *current,
3284 bfd_print_symbol_all);
83ef0798 3285 printf ("\n");
252b5132 3286 }
661f7c35 3287
155e0d23 3288 current++;
252b5132 3289 }
155e0d23 3290 printf ("\n\n");
252b5132 3291}
155e0d23 3292\f
252b5132 3293static void
46dca2e0 3294dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount)
252b5132
RH
3295{
3296 arelent **p;
3297 char *last_filename, *last_functionname;
3298 unsigned int last_line;
9b8d1a36 3299 unsigned int last_discriminator;
252b5132
RH
3300
3301 /* Get column headers lined up reasonably. */
3302 {
3303 static int width;
98a91d6a 3304
252b5132
RH
3305 if (width == 0)
3306 {
3307 char buf[30];
155e0d23 3308
d8180c76 3309 bfd_sprintf_vma (abfd, buf, (bfd_vma) -1);
252b5132
RH
3310 width = strlen (buf) - 7;
3311 }
3312 printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
3313 }
3314
3315 last_filename = NULL;
3316 last_functionname = NULL;
3317 last_line = 0;
9b8d1a36 3318 last_discriminator = 0;
252b5132 3319
d3ba0551 3320 for (p = relpp; relcount && *p != NULL; p++, relcount--)
252b5132
RH
3321 {
3322 arelent *q = *p;
3323 const char *filename, *functionname;
91d6fa6a 3324 unsigned int linenumber;
9b8d1a36 3325 unsigned int discriminator;
252b5132
RH
3326 const char *sym_name;
3327 const char *section_name;
bf03e632 3328 bfd_vma addend2 = 0;
252b5132
RH
3329
3330 if (start_address != (bfd_vma) -1
3331 && q->address < start_address)
3332 continue;
3333 if (stop_address != (bfd_vma) -1
3334 && q->address > stop_address)
3335 continue;
3336
3337 if (with_line_numbers
3338 && sec != NULL
9b8d1a36
CC
3339 && bfd_find_nearest_line_discriminator (abfd, sec, syms, q->address,
3340 &filename, &functionname,
3341 &linenumber, &discriminator))
252b5132
RH
3342 {
3343 if (functionname != NULL
3344 && (last_functionname == NULL
3345 || strcmp (functionname, last_functionname) != 0))
3346 {
3347 printf ("%s():\n", functionname);
3348 if (last_functionname != NULL)
3349 free (last_functionname);
3350 last_functionname = xstrdup (functionname);
3351 }
98a91d6a 3352
91d6fa6a
NC
3353 if (linenumber > 0
3354 && (linenumber != last_line
252b5132
RH
3355 || (filename != NULL
3356 && last_filename != NULL
9b8d1a36
CC
3357 && filename_cmp (filename, last_filename) != 0)
3358 || (discriminator != last_discriminator)))
252b5132 3359 {
9b8d1a36
CC
3360 if (discriminator > 0)
3361 printf ("%s:%u\n", filename == NULL ? "???" : filename, linenumber);
3362 else
3363 printf ("%s:%u (discriminator %u)\n", filename == NULL ? "???" : filename,
3364 linenumber, discriminator);
91d6fa6a 3365 last_line = linenumber;
9b8d1a36 3366 last_discriminator = discriminator;
252b5132
RH
3367 if (last_filename != NULL)
3368 free (last_filename);
3369 if (filename == NULL)
3370 last_filename = NULL;
3371 else
3372 last_filename = xstrdup (filename);
3373 }
3374 }
3375
3376 if (q->sym_ptr_ptr && *q->sym_ptr_ptr)
3377 {
3378 sym_name = (*(q->sym_ptr_ptr))->name;
3379 section_name = (*(q->sym_ptr_ptr))->section->name;
3380 }
3381 else
3382 {
3383 sym_name = NULL;
3384 section_name = NULL;
3385 }
98a91d6a 3386
f9ecb0a4
JJ
3387 bfd_printf_vma (abfd, q->address);
3388 if (q->howto == NULL)
3389 printf (" *unknown* ");
3390 else if (q->howto->name)
bf03e632
DM
3391 {
3392 const char *name = q->howto->name;
3393
3394 /* R_SPARC_OLO10 relocations contain two addends.
3395 But because 'arelent' lacks enough storage to
3396 store them both, the 64-bit ELF Sparc backend
3397 records this as two relocations. One R_SPARC_LO10
3398 and one R_SPARC_13, both pointing to the same
3399 address. This is merely so that we have some
3400 place to store both addend fields.
3401
3402 Undo this transformation, otherwise the output
3403 will be confusing. */
3404 if (abfd->xvec->flavour == bfd_target_elf_flavour
3405 && elf_tdata(abfd)->elf_header->e_machine == EM_SPARCV9
3406 && relcount > 1
3407 && !strcmp (q->howto->name, "R_SPARC_LO10"))
3408 {
3409 arelent *q2 = *(p + 1);
3410 if (q2 != NULL
3411 && q2->howto
3412 && q->address == q2->address
3413 && !strcmp (q2->howto->name, "R_SPARC_13"))
3414 {
3415 name = "R_SPARC_OLO10";
3416 addend2 = q2->addend;
3417 p++;
3418 }
3419 }
3420 printf (" %-16s ", name);
3421 }
f9ecb0a4
JJ
3422 else
3423 printf (" %-16d ", q->howto->type);
171191ba 3424
252b5132 3425 if (sym_name)
171191ba
NC
3426 {
3427 objdump_print_symname (abfd, NULL, *q->sym_ptr_ptr);
171191ba 3428 }
252b5132
RH
3429 else
3430 {
d3ba0551 3431 if (section_name == NULL)
252b5132 3432 section_name = "*unknown*";
f9ecb0a4 3433 printf ("[%s]", section_name);
252b5132 3434 }
98a91d6a 3435
252b5132
RH
3436 if (q->addend)
3437 {
343dbc36
L
3438 bfd_signed_vma addend = q->addend;
3439 if (addend < 0)
3440 {
3441 printf ("-0x");
3442 addend = -addend;
3443 }
3444 else
3445 printf ("+0x");
3446 bfd_printf_vma (abfd, addend);
252b5132 3447 }
bf03e632
DM
3448 if (addend2)
3449 {
3450 printf ("+0x");
3451 bfd_printf_vma (abfd, addend2);
3452 }
98a91d6a 3453
252b5132
RH
3454 printf ("\n");
3455 }
4b41844b
NC
3456
3457 if (last_filename != NULL)
3458 free (last_filename);
3459 if (last_functionname != NULL)
3460 free (last_functionname);
252b5132 3461}
43ac9881 3462
155e0d23 3463static void
3b9ad1cc
AM
3464dump_relocs_in_section (bfd *abfd,
3465 asection *section,
3466 void *dummy ATTRIBUTE_UNUSED)
155e0d23
NC
3467{
3468 arelent **relpp;
3469 long relcount;
3470 long relsize;
3471
3472 if ( bfd_is_abs_section (section)
3473 || bfd_is_und_section (section)
3474 || bfd_is_com_section (section)
3475 || (! process_section_p (section))
3476 || ((section->flags & SEC_RELOC) == 0))
3477 return;
3478
3479 relsize = bfd_get_reloc_upper_bound (abfd, section);
3480 if (relsize < 0)
3481 bfd_fatal (bfd_get_filename (abfd));
3482
3483 printf ("RELOCATION RECORDS FOR [%s]:", section->name);
3484
3485 if (relsize == 0)
3486 {
3487 printf (" (none)\n\n");
3488 return;
3489 }
3490
39ff1b79 3491 if ((bfd_get_file_flags (abfd) & (BFD_IN_MEMORY | BFD_LINKER_CREATED)) == 0
d785b7d4
NC
3492 && (((ufile_ptr) relsize > bfd_get_file_size (abfd))
3493 /* Also check the section's reloc count since if this is negative
3494 (or very large) the computation in bfd_get_reloc_upper_bound
3495 may have resulted in returning a small, positive integer.
3496 See PR 22508 for a reproducer.
3497
3498 Note - we check against file size rather than section size as
3499 it is possible for there to be more relocs that apply to a
3500 section than there are bytes in that section. */
3501 || (section->reloc_count > bfd_get_file_size (abfd))))
39ff1b79
NC
3502 {
3503 printf (" (too many: 0x%x)\n", section->reloc_count);
3504 bfd_set_error (bfd_error_file_truncated);
3505 bfd_fatal (bfd_get_filename (abfd));
3506 }
3507
3f5e193b 3508 relpp = (arelent **) xmalloc (relsize);
155e0d23
NC
3509 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms);
3510
3511 if (relcount < 0)
5a3f568b
NC
3512 {
3513 printf ("\n");
3514 non_fatal (_("failed to read relocs in: %s"), bfd_get_filename (abfd));
3515 bfd_fatal (_("error message was"));
3516 }
155e0d23
NC
3517 else if (relcount == 0)
3518 printf (" (none)\n\n");
3519 else
3520 {
3521 printf ("\n");
3522 dump_reloc_set (abfd, section, relpp, relcount);
3523 printf ("\n\n");
3524 }
3525 free (relpp);
3526}
3527
3528static void
3529dump_relocs (bfd *abfd)
3530{
3531 bfd_map_over_sections (abfd, dump_relocs_in_section, NULL);
3532}
3533
3534static void
3535dump_dynamic_relocs (bfd *abfd)
3536{
3537 long relsize;
3538 arelent **relpp;
3539 long relcount;
3540
3541 relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
3542 if (relsize < 0)
3543 bfd_fatal (bfd_get_filename (abfd));
3544
3545 printf ("DYNAMIC RELOCATION RECORDS");
3546
3547 if (relsize == 0)
3548 printf (" (none)\n\n");
3549 else
3550 {
3f5e193b 3551 relpp = (arelent **) xmalloc (relsize);
155e0d23
NC
3552 relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms);
3553
3554 if (relcount < 0)
3555 bfd_fatal (bfd_get_filename (abfd));
3556 else if (relcount == 0)
3557 printf (" (none)\n\n");
3558 else
3559 {
3560 printf ("\n");
3561 dump_reloc_set (abfd, NULL, relpp, relcount);
3562 printf ("\n\n");
3563 }
3564 free (relpp);
3565 }
3566}
3567
43ac9881
AM
3568/* Creates a table of paths, to search for source files. */
3569
3570static void
3571add_include_path (const char *path)
3572{
3573 if (path[0] == 0)
3574 return;
3575 include_path_count++;
3f5e193b
NC
3576 include_paths = (const char **)
3577 xrealloc (include_paths, include_path_count * sizeof (*include_paths));
43ac9881
AM
3578#ifdef HAVE_DOS_BASED_FILE_SYSTEM
3579 if (path[1] == ':' && path[2] == 0)
3580 path = concat (path, ".", (const char *) 0);
3581#endif
3582 include_paths[include_path_count - 1] = path;
3583}
155e0d23
NC
3584
3585static void
3b9ad1cc
AM
3586adjust_addresses (bfd *abfd ATTRIBUTE_UNUSED,
3587 asection *section,
bc79cded 3588 void *arg)
155e0d23 3589{
bc79cded
L
3590 if ((section->flags & SEC_DEBUGGING) == 0)
3591 {
3592 bfd_boolean *has_reloc_p = (bfd_boolean *) arg;
3593 section->vma += adjust_section_vma;
3594 if (*has_reloc_p)
3595 section->lma += adjust_section_vma;
3596 }
155e0d23
NC
3597}
3598
3599/* Dump selected contents of ABFD. */
3600
3601static void
3602dump_bfd (bfd *abfd)
3603{
3604 /* If we are adjusting section VMA's, change them all now. Changing
3605 the BFD information is a hack. However, we must do it, or
3606 bfd_find_nearest_line will not do the right thing. */
3607 if (adjust_section_vma != 0)
bc79cded
L
3608 {
3609 bfd_boolean has_reloc = (abfd->flags & HAS_RELOC);
3610 bfd_map_over_sections (abfd, adjust_addresses, &has_reloc);
3611 }
155e0d23 3612
fd2f0033 3613 if (! dump_debugging_tags && ! suppress_bfd_header)
155e0d23
NC
3614 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd),
3615 abfd->xvec->name);
3616 if (dump_ar_hdrs)
1869e86f 3617 print_arelt_descr (stdout, abfd, TRUE, FALSE);
155e0d23
NC
3618 if (dump_file_header)
3619 dump_bfd_header (abfd);
3620 if (dump_private_headers)
3621 dump_bfd_private_header (abfd);
6abcee90
TG
3622 if (dump_private_options != NULL)
3623 dump_target_specific (abfd);
fd2f0033 3624 if (! dump_debugging_tags && ! suppress_bfd_header)
155e0d23 3625 putchar ('\n');
155e0d23 3626
365544c3
L
3627 if (dump_symtab
3628 || dump_reloc_info
3629 || disassemble
3630 || dump_debugging
3631 || dump_dwarf_section_info)
155e0d23 3632 syms = slurp_symtab (abfd);
a29a8af8
KT
3633
3634 if (dump_section_headers)
3635 dump_headers (abfd);
3636
4c45e5c9
JJ
3637 if (dump_dynamic_symtab || dump_dynamic_reloc_info
3638 || (disassemble && bfd_get_dynamic_symtab_upper_bound (abfd) > 0))
155e0d23 3639 dynsyms = slurp_dynamic_symtab (abfd);
90e3cdf2 3640 if (disassemble)
4c45e5c9 3641 {
c9727e01
AM
3642 synthcount = bfd_get_synthetic_symtab (abfd, symcount, syms,
3643 dynsymcount, dynsyms, &synthsyms);
3644 if (synthcount < 0)
3645 synthcount = 0;
4c45e5c9 3646 }
155e0d23
NC
3647
3648 if (dump_symtab)
3649 dump_symbols (abfd, FALSE);
3650 if (dump_dynamic_symtab)
3651 dump_symbols (abfd, TRUE);
365544c3
L
3652 if (dump_dwarf_section_info)
3653 dump_dwarf (abfd);
155e0d23
NC
3654 if (dump_stab_section_info)
3655 dump_stabs (abfd);
3656 if (dump_reloc_info && ! disassemble)
3657 dump_relocs (abfd);
3658 if (dump_dynamic_reloc_info && ! disassemble)
3659 dump_dynamic_relocs (abfd);
3660 if (dump_section_contents)
3661 dump_data (abfd);
3662 if (disassemble)
3663 disassemble_data (abfd);
3664
3665 if (dump_debugging)
3666 {
3667 void *dhandle;
3668
b922d590 3669 dhandle = read_debugging_info (abfd, syms, symcount, TRUE);
155e0d23
NC
3670 if (dhandle != NULL)
3671 {
ed180cc5
AM
3672 if (!print_debugging_info (stdout, dhandle, abfd, syms,
3673 bfd_demangle,
3674 dump_debugging_tags ? TRUE : FALSE))
155e0d23
NC
3675 {
3676 non_fatal (_("%s: printing debugging information failed"),
3677 bfd_get_filename (abfd));
3678 exit_status = 1;
3679 }
3680 }
fdef3943
AM
3681 /* PR 6483: If there was no STABS debug info in the file, try
3682 DWARF instead. */
b922d590
NC
3683 else if (! dump_dwarf_section_info)
3684 {
3aade688 3685 dwarf_select_sections_all ();
b922d590
NC
3686 dump_dwarf (abfd);
3687 }
155e0d23
NC
3688 }
3689
3690 if (syms)
3691 {
3692 free (syms);
3693 syms = NULL;
3694 }
3695
3696 if (dynsyms)
3697 {
3698 free (dynsyms);
3699 dynsyms = NULL;
3700 }
4c45e5c9
JJ
3701
3702 if (synthsyms)
3703 {
3704 free (synthsyms);
3705 synthsyms = NULL;
3706 }
3707
3708 symcount = 0;
3709 dynsymcount = 0;
3710 synthcount = 0;
155e0d23
NC
3711}
3712
3713static void
1598539f 3714display_object_bfd (bfd *abfd)
155e0d23
NC
3715{
3716 char **matching;
3717
3718 if (bfd_check_format_matches (abfd, bfd_object, &matching))
3719 {
3720 dump_bfd (abfd);
3721 return;
3722 }
3723
3724 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
3725 {
3726 nonfatal (bfd_get_filename (abfd));
3727 list_matching_formats (matching);
3728 free (matching);
3729 return;
3730 }
3731
3732 if (bfd_get_error () != bfd_error_file_not_recognized)
3733 {
3734 nonfatal (bfd_get_filename (abfd));
3735 return;
3736 }
3737
3738 if (bfd_check_format_matches (abfd, bfd_core, &matching))
3739 {
3740 dump_bfd (abfd);
3741 return;
3742 }
3743
3744 nonfatal (bfd_get_filename (abfd));
3745
3746 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
3747 {
3748 list_matching_formats (matching);
3749 free (matching);
3750 }
3751}
3752
3753static void
1598539f 3754display_any_bfd (bfd *file, int level)
155e0d23 3755{
4a114e3e
L
3756 /* Decompress sections unless dumping the section contents. */
3757 if (!dump_section_contents)
3758 file->flags |= BFD_DECOMPRESS;
3759
155e0d23
NC
3760 /* If the file is an archive, process all of its elements. */
3761 if (bfd_check_format (file, bfd_archive))
3762 {
1598539f 3763 bfd *arfile = NULL;
155e0d23 3764 bfd *last_arfile = NULL;
bdc4de1b 3765
1598539f
TG
3766 if (level == 0)
3767 printf (_("In archive %s:\n"), bfd_get_filename (file));
c88f5b8e
NC
3768 else if (level > 100)
3769 {
3770 /* Prevent corrupted files from spinning us into an
3771 infinite loop. 100 is an arbitrary heuristic. */
64d29018 3772 fatal (_("Archive nesting is too deep"));
c88f5b8e
NC
3773 return;
3774 }
1598539f
TG
3775 else
3776 printf (_("In nested archive %s:\n"), bfd_get_filename (file));
3777
155e0d23
NC
3778 for (;;)
3779 {
3780 bfd_set_error (bfd_error_no_error);
3781
3782 arfile = bfd_openr_next_archived_file (file, arfile);
3783 if (arfile == NULL)
3784 {
3785 if (bfd_get_error () != bfd_error_no_more_archived_files)
3786 nonfatal (bfd_get_filename (file));
3787 break;
3788 }
3789
1598539f 3790 display_any_bfd (arfile, level + 1);
155e0d23
NC
3791
3792 if (last_arfile != NULL)
f64e188b
NC
3793 {
3794 bfd_close (last_arfile);
3795 /* PR 17512: file: ac585d01. */
3796 if (arfile == last_arfile)
3797 {
3798 last_arfile = NULL;
3799 break;
3800 }
3801 }
155e0d23
NC
3802 last_arfile = arfile;
3803 }
3804
3805 if (last_arfile != NULL)
3806 bfd_close (last_arfile);
3807 }
3808 else
1598539f
TG
3809 display_object_bfd (file);
3810}
3811
3812static void
cd6581da 3813display_file (char *filename, char *target, bfd_boolean last_file)
1598539f
TG
3814{
3815 bfd *file;
3816
3817 if (get_file_size (filename) < 1)
3818 {
3819 exit_status = 1;
3820 return;
3821 }
3822
3823 file = bfd_openr (filename, target);
3824 if (file == NULL)
3825 {
3826 nonfatal (filename);
3827 return;
3828 }
3829
3830 display_any_bfd (file, 0);
155e0d23 3831
cd6581da
NC
3832 /* This is an optimization to improve the speed of objdump, especially when
3833 dumping a file with lots of associated debug informatiom. Calling
3834 bfd_close on such a file can take a non-trivial amount of time as there
3835 are lots of lists to walk and buffers to free. This is only really
3836 necessary however if we are about to load another file and we need the
3837 memory back. Otherwise, if we are about to exit, then we can save (a lot
3838 of) time by only doing a quick close, and allowing the OS to reclaim the
3839 memory for us. */
3840 if (! last_file)
3841 bfd_close (file);
3842 else
3843 bfd_close_all_done (file);
155e0d23 3844}
252b5132 3845\f
252b5132 3846int
46dca2e0 3847main (int argc, char **argv)
252b5132
RH
3848{
3849 int c;
3850 char *target = default_target;
b34976b6 3851 bfd_boolean seenflag = FALSE;
252b5132 3852
155e0d23
NC
3853#if defined (HAVE_SETLOCALE)
3854#if defined (HAVE_LC_MESSAGES)
252b5132 3855 setlocale (LC_MESSAGES, "");
3882b010 3856#endif
3882b010 3857 setlocale (LC_CTYPE, "");
252b5132 3858#endif
155e0d23 3859
252b5132
RH
3860 bindtextdomain (PACKAGE, LOCALEDIR);
3861 textdomain (PACKAGE);
3862
3863 program_name = *argv;
3864 xmalloc_set_program_name (program_name);
86eafac0 3865 bfd_set_error_program_name (program_name);
252b5132
RH
3866
3867 START_PROGRESS (program_name, 0);
3868
869b9d07
MM
3869 expandargv (&argc, &argv);
3870
bf2dd8d7
AM
3871 if (bfd_init () != BFD_INIT_MAGIC)
3872 fatal (_("fatal error: libbfd ABI mismatch"));
252b5132
RH
3873 set_default_bfd_target ();
3874
4cb93e3b 3875 while ((c = getopt_long (argc, argv,
6abcee90 3876 "pP:ib:m:M:VvCdDlfFaHhrRtTxsSI:j:wE:zgeGW::",
252b5132
RH
3877 long_options, (int *) 0))
3878 != EOF)
3879 {
252b5132
RH
3880 switch (c)
3881 {
3882 case 0:
8b53311e 3883 break; /* We've been given a long option. */
252b5132
RH
3884 case 'm':
3885 machine = optarg;
3886 break;
dd92f639 3887 case 'M':
65b48a81
PB
3888 {
3889 char *options;
3890 if (disassembler_options)
3891 /* Ignore potential memory leak for now. */
3892 options = concat (disassembler_options, ",",
3893 optarg, (const char *) NULL);
3894 else
3895 options = optarg;
3896 disassembler_options = remove_whitespace_and_extra_commas (options);
3897 }
dd92f639 3898 break;
252b5132 3899 case 'j':
70ecb384 3900 add_only (optarg);
252b5132 3901 break;
98ec6e72
NC
3902 case 'F':
3903 display_file_offsets = TRUE;
3904 break;
252b5132 3905 case 'l':
b34976b6 3906 with_line_numbers = TRUE;
252b5132
RH
3907 break;
3908 case 'b':
3909 target = optarg;
3910 break;
1dada9c5 3911 case 'C':
b34976b6 3912 do_demangle = TRUE;
28c309a2
NC
3913 if (optarg != NULL)
3914 {
3915 enum demangling_styles style;
8b53311e 3916
28c309a2 3917 style = cplus_demangle_name_to_style (optarg);
0af11b59 3918 if (style == unknown_demangling)
28c309a2
NC
3919 fatal (_("unknown demangling style `%s'"),
3920 optarg);
8b53311e 3921
28c309a2 3922 cplus_demangle_set_style (style);
0af11b59 3923 }
1dada9c5
NC
3924 break;
3925 case 'w':
7b5d4822 3926 do_wide = wide_output = TRUE;
1dada9c5
NC
3927 break;
3928 case OPTION_ADJUST_VMA:
3929 adjust_section_vma = parse_vma (optarg, "--adjust-vma");
3930 break;
3931 case OPTION_START_ADDRESS:
3932 start_address = parse_vma (optarg, "--start-address");
98ec6e72
NC
3933 if ((stop_address != (bfd_vma) -1) && stop_address <= start_address)
3934 fatal (_("error: the start address should be before the end address"));
1dada9c5
NC
3935 break;
3936 case OPTION_STOP_ADDRESS:
3937 stop_address = parse_vma (optarg, "--stop-address");
98ec6e72
NC
3938 if ((start_address != (bfd_vma) -1) && stop_address <= start_address)
3939 fatal (_("error: the stop address should be after the start address"));
1dada9c5 3940 break;
0dafdf3f
L
3941 case OPTION_PREFIX:
3942 prefix = optarg;
3943 prefix_length = strlen (prefix);
3944 /* Remove an unnecessary trailing '/' */
3945 while (IS_DIR_SEPARATOR (prefix[prefix_length - 1]))
3946 prefix_length--;
3947 break;
3948 case OPTION_PREFIX_STRIP:
3949 prefix_strip = atoi (optarg);
3950 if (prefix_strip < 0)
3951 fatal (_("error: prefix strip must be non-negative"));
3952 break;
3dcb3fcb
L
3953 case OPTION_INSN_WIDTH:
3954 insn_width = strtoul (optarg, NULL, 0);
3955 if (insn_width <= 0)
3956 fatal (_("error: instruction width must be positive"));
3957 break;
4a14e306
AK
3958 case OPTION_INLINES:
3959 unwind_inlines = TRUE;
3960 break;
1dada9c5
NC
3961 case 'E':
3962 if (strcmp (optarg, "B") == 0)
3963 endian = BFD_ENDIAN_BIG;
3964 else if (strcmp (optarg, "L") == 0)
3965 endian = BFD_ENDIAN_LITTLE;
3966 else
3967 {
a8c62f1c 3968 nonfatal (_("unrecognized -E option"));
1dada9c5
NC
3969 usage (stderr, 1);
3970 }
3971 break;
3972 case OPTION_ENDIAN:
3973 if (strncmp (optarg, "big", strlen (optarg)) == 0)
3974 endian = BFD_ENDIAN_BIG;
3975 else if (strncmp (optarg, "little", strlen (optarg)) == 0)
3976 endian = BFD_ENDIAN_LITTLE;
3977 else
3978 {
37cc8ec1 3979 non_fatal (_("unrecognized --endian type `%s'"), optarg);
a8c62f1c 3980 exit_status = 1;
1dada9c5
NC
3981 usage (stderr, 1);
3982 }
3983 break;
8b53311e 3984
252b5132 3985 case 'f':
b34976b6
AM
3986 dump_file_header = TRUE;
3987 seenflag = TRUE;
252b5132
RH
3988 break;
3989 case 'i':
b34976b6
AM
3990 formats_info = TRUE;
3991 seenflag = TRUE;
252b5132 3992 break;
43ac9881
AM
3993 case 'I':
3994 add_include_path (optarg);
3995 break;
252b5132 3996 case 'p':
b34976b6
AM
3997 dump_private_headers = TRUE;
3998 seenflag = TRUE;
252b5132 3999 break;
6abcee90
TG
4000 case 'P':
4001 dump_private_options = optarg;
4002 seenflag = TRUE;
4003 break;
252b5132 4004 case 'x':
b34976b6
AM
4005 dump_private_headers = TRUE;
4006 dump_symtab = TRUE;
4007 dump_reloc_info = TRUE;
4008 dump_file_header = TRUE;
4009 dump_ar_hdrs = TRUE;
4010 dump_section_headers = TRUE;
4011 seenflag = TRUE;
252b5132
RH
4012 break;
4013 case 't':
b34976b6
AM
4014 dump_symtab = TRUE;
4015 seenflag = TRUE;
252b5132
RH
4016 break;
4017 case 'T':
b34976b6
AM
4018 dump_dynamic_symtab = TRUE;
4019 seenflag = TRUE;
252b5132
RH
4020 break;
4021 case 'd':
b34976b6
AM
4022 disassemble = TRUE;
4023 seenflag = TRUE;
d3def5d7 4024 disasm_sym = optarg;
1dada9c5
NC
4025 break;
4026 case 'z':
b34976b6 4027 disassemble_zeroes = TRUE;
252b5132
RH
4028 break;
4029 case 'D':
b34976b6
AM
4030 disassemble = TRUE;
4031 disassemble_all = TRUE;
4032 seenflag = TRUE;
252b5132
RH
4033 break;
4034 case 'S':
b34976b6
AM
4035 disassemble = TRUE;
4036 with_source_code = TRUE;
4037 seenflag = TRUE;
1dada9c5
NC
4038 break;
4039 case 'g':
4040 dump_debugging = 1;
b34976b6 4041 seenflag = TRUE;
1dada9c5 4042 break;
51cdc6e0
NC
4043 case 'e':
4044 dump_debugging = 1;
4045 dump_debugging_tags = 1;
4046 do_demangle = TRUE;
4047 seenflag = TRUE;
4048 break;
365544c3
L
4049 case 'W':
4050 dump_dwarf_section_info = TRUE;
4051 seenflag = TRUE;
4cb93e3b
TG
4052 if (optarg)
4053 dwarf_select_sections_by_letters (optarg);
4054 else
4055 dwarf_select_sections_all ();
4056 break;
4057 case OPTION_DWARF:
4058 dump_dwarf_section_info = TRUE;
4059 seenflag = TRUE;
4060 if (optarg)
4061 dwarf_select_sections_by_names (optarg);
4062 else
4063 dwarf_select_sections_all ();
365544c3 4064 break;
fd2f0033
TT
4065 case OPTION_DWARF_DEPTH:
4066 {
4067 char *cp;
4068 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
4069 }
4070 break;
4071 case OPTION_DWARF_START:
4072 {
4073 char *cp;
4074 dwarf_start_die = strtoul (optarg, & cp, 0);
4075 suppress_bfd_header = 1;
4076 }
4077 break;
4723351a
CC
4078 case OPTION_DWARF_CHECK:
4079 dwarf_check = TRUE;
4080 break;
1dada9c5 4081 case 'G':
b34976b6
AM
4082 dump_stab_section_info = TRUE;
4083 seenflag = TRUE;
252b5132
RH
4084 break;
4085 case 's':
b34976b6
AM
4086 dump_section_contents = TRUE;
4087 seenflag = TRUE;
252b5132
RH
4088 break;
4089 case 'r':
b34976b6
AM
4090 dump_reloc_info = TRUE;
4091 seenflag = TRUE;
252b5132
RH
4092 break;
4093 case 'R':
b34976b6
AM
4094 dump_dynamic_reloc_info = TRUE;
4095 seenflag = TRUE;
252b5132
RH
4096 break;
4097 case 'a':
b34976b6
AM
4098 dump_ar_hdrs = TRUE;
4099 seenflag = TRUE;
252b5132
RH
4100 break;
4101 case 'h':
b34976b6
AM
4102 dump_section_headers = TRUE;
4103 seenflag = TRUE;
252b5132 4104 break;
8b53311e 4105 case 'v':
252b5132 4106 case 'V':
b34976b6
AM
4107 show_version = TRUE;
4108 seenflag = TRUE;
252b5132 4109 break;
0af11b59 4110
aebcf7b7
NC
4111 case 'H':
4112 usage (stdout, 0);
4113 /* No need to set seenflag or to break - usage() does not return. */
252b5132
RH
4114 default:
4115 usage (stderr, 1);
4116 }
4117 }
4118
4119 if (show_version)
4120 print_version ("objdump");
4121
b34976b6 4122 if (!seenflag)
1dada9c5 4123 usage (stderr, 2);
252b5132
RH
4124
4125 if (formats_info)
06d86cf7 4126 exit_status = display_info ();
252b5132
RH
4127 else
4128 {
4129 if (optind == argc)
cd6581da 4130 display_file ("a.out", target, TRUE);
252b5132
RH
4131 else
4132 for (; optind < argc;)
cd6581da
NC
4133 {
4134 display_file (argv[optind], target, optind == argc - 1);
4135 optind++;
4136 }
252b5132
RH
4137 }
4138
70ecb384
NC
4139 free_only_list ();
4140
252b5132
RH
4141 END_PROGRESS (program_name);
4142
75cd796a 4143 return exit_status;
252b5132 4144}
This page took 1.147265 seconds and 4 git commands to generate.