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