1 /* objdump.c -- dump information about an object file.
2 Copyright (C) 1990-2017 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
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
8 the Free Software Foundation; either version 3, or (at your option)
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.
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
18 Foundation, 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
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.
29 The flow of execution is as follows:
31 1. Command line arguments are checked for control switches and the
32 information to be displayed is selected.
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.
38 3. The file's target architecture and binary file format are determined
39 by bfd_check_format(). If they are recognised, then dump_bfd() is
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
44 a disassembly has been requested.
46 When disassembling the code loops through blocks of instructions bounded
47 by symbols, calling disassemble_bytes() on each block. The actual
48 disassembling is done by the libopcodes library, via a function pointer
49 supplied by the disassembler() function. */
60 #include "safe-ctype.h"
62 #include "libiberty.h"
64 #include "filenames.h"
73 /* Internal headers for the ELF .stab-dump code - sorry. */
74 #define BYTES_IN_WORD 32
75 #include "aout/aout64.h"
78 static int exit_status
= 0;
80 static char *default_target
= NULL
; /* Default at runtime. */
82 /* The following variables are set based on arguments passed on the
84 static int show_version
= 0; /* Show the version number. */
85 static int dump_section_contents
; /* -s */
86 static int dump_section_headers
; /* -h */
87 static bfd_boolean dump_file_header
; /* -f */
88 static int dump_symtab
; /* -t */
89 static int dump_dynamic_symtab
; /* -T */
90 static int dump_reloc_info
; /* -r */
91 static int dump_dynamic_reloc_info
; /* -R */
92 static int dump_ar_hdrs
; /* -a */
93 static int dump_private_headers
; /* -p */
94 static char *dump_private_options
; /* -P */
95 static int prefix_addresses
; /* --prefix-addresses */
96 static int with_line_numbers
; /* -l */
97 static bfd_boolean with_source_code
; /* -S */
98 static int show_raw_insn
; /* --show-raw-insn */
99 static int dump_dwarf_section_info
; /* --dwarf */
100 static int dump_stab_section_info
; /* --stabs */
101 static int do_demangle
; /* -C, --demangle */
102 static bfd_boolean disassemble
; /* -d */
103 static bfd_boolean disassemble_all
; /* -D */
104 static int disassemble_zeroes
; /* --disassemble-zeroes */
105 static bfd_boolean formats_info
; /* -i */
106 static int wide_output
; /* -w */
107 static int insn_width
; /* --insn-width */
108 static bfd_vma start_address
= (bfd_vma
) -1; /* --start-address */
109 static bfd_vma stop_address
= (bfd_vma
) -1; /* --stop-address */
110 static int dump_debugging
; /* --debugging */
111 static int dump_debugging_tags
; /* --debugging-tags */
112 static int suppress_bfd_header
;
113 static int dump_special_syms
= 0; /* --special-syms */
114 static bfd_vma adjust_section_vma
= 0; /* --adjust-vma */
115 static int file_start_context
= 0; /* --file-start-context */
116 static bfd_boolean display_file_offsets
;/* -F */
117 static const char *prefix
; /* --prefix */
118 static int prefix_strip
; /* --prefix-strip */
119 static size_t prefix_length
;
120 static bfd_boolean unwind_inlines
; /* --inlines. */
122 /* A structure to record the sections mentioned in -j switches. */
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. */
129 /* Pointer to an array of 'only' structures.
130 This pointer is NULL if the -j switch has not been used. */
131 static struct only
* only_list
= NULL
;
133 /* Variables for handling include file path table. */
134 static const char **include_paths
;
135 static int include_path_count
;
137 /* Extra info to pass to the section disassembler and address printing
139 struct objdump_disasm_info
143 bfd_boolean require_sec
;
144 arelent
** dynrelbuf
;
146 disassembler_ftype disassemble_fn
;
150 /* Architecture to disassemble for, or default if NULL. */
151 static char *machine
= NULL
;
153 /* Target specific options to the disassembler. */
154 static char *disassembler_options
= NULL
;
156 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
157 static enum bfd_endian endian
= BFD_ENDIAN_UNKNOWN
;
159 /* The symbol table. */
160 static asymbol
**syms
;
162 /* Number of symbols in `syms'. */
163 static long symcount
= 0;
165 /* The sorted symbol table. */
166 static asymbol
**sorted_syms
;
168 /* Number of symbols in `sorted_syms'. */
169 static long sorted_symcount
= 0;
171 /* The dynamic symbol table. */
172 static asymbol
**dynsyms
;
174 /* The synthetic symbol table. */
175 static asymbol
*synthsyms
;
176 static long synthcount
= 0;
178 /* Number of symbols in `dynsyms'. */
179 static long dynsymcount
= 0;
181 static bfd_byte
*stabs
;
182 static bfd_size_type stab_size
;
185 static bfd_size_type stabstr_size
;
187 static bfd_boolean is_relocatable
= FALSE
;
189 /* Handlers for -P/--private. */
190 static const struct objdump_private_desc
* const objdump_private_vectors
[] =
192 OBJDUMP_PRIVATE_VECTORS
196 static void usage (FILE *, int) ATTRIBUTE_NORETURN
;
198 usage (FILE *stream
, int status
)
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"));
203 fprintf (stream
, _("\
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\
207 -P, --private=OPT,OPT... Display object format specific contents\n\
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\
215 -e, --debugging-tags Display debug information using ctags style\n\
216 -G, --stabs Display (in raw form) any STABS info in the file\n\
217 -W[lLiaprmfFsoRt] or\n\
218 --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
219 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
220 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
222 Display DWARF info in the file\n\
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\
227 @<file> Read options from <file>\n\
228 -v, --version Display this program's version number\n\
229 -i, --info List object formats and architectures supported\n\
230 -H, --help Display this information\n\
234 const struct objdump_private_desc
* const *desc
;
236 fprintf (stream
, _("\n The following switches are optional:\n"));
237 fprintf (stream
, _("\
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\
242 -EB --endian=big Assume big endian format when disassembling\n\
243 -EL --endian=little Assume little endian format when disassembling\n\
244 --file-start-context Include context from start of file (with -S)\n\
245 -I, --include=DIR Add DIR to search list for source files\n\
246 -l, --line-numbers Include line numbers and filenames in output\n\
247 -F, --file-offsets Include file offsets when displaying information\n\
248 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
249 The STYLE, if specified, can be `auto', `gnu',\n\
250 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
252 -w, --wide Format output for more than 80 columns\n\
253 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
254 --start-address=ADDR Only process data whose address is >= ADDR\n\
255 --stop-address=ADDR Only process data whose address is <= ADDR\n\
256 --prefix-addresses Print complete address alongside disassembly\n\
257 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
258 --insn-width=WIDTH Display WIDTH bytes on a single line for -d\n\
259 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
260 --special-syms Include special symbols in symbol dumps\n\
261 --inlines Print all inlines for source line (with -l)\n\
262 --prefix=PREFIX Add PREFIX to absolute paths for -S\n\
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\
268 --dwarf-check Make additional dwarf internal consistency checks.\
270 list_supported_targets (program_name
, stream
);
271 list_supported_architectures (program_name
, stream
);
273 disassembler_usage (stream
);
275 if (objdump_private_vectors
[0] != NULL
)
278 _("\nOptions supported for -P/--private switch:\n"));
279 for (desc
= objdump_private_vectors
; *desc
!= NULL
; desc
++)
280 (*desc
)->help (stream
);
283 if (REPORT_BUGS_TO
[0] && status
== 0)
284 fprintf (stream
, _("Report bugs to %s.\n"), REPORT_BUGS_TO
);
288 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
292 OPTION_START_ADDRESS
,
305 static struct option long_options
[]=
307 {"adjust-vma", required_argument
, NULL
, OPTION_ADJUST_VMA
},
308 {"all-headers", no_argument
, NULL
, 'x'},
309 {"private-headers", no_argument
, NULL
, 'p'},
310 {"private", required_argument
, NULL
, 'P'},
311 {"architecture", required_argument
, NULL
, 'm'},
312 {"archive-headers", no_argument
, NULL
, 'a'},
313 {"debugging", no_argument
, NULL
, 'g'},
314 {"debugging-tags", no_argument
, NULL
, 'e'},
315 {"demangle", optional_argument
, NULL
, 'C'},
316 {"disassemble", no_argument
, NULL
, 'd'},
317 {"disassemble-all", no_argument
, NULL
, 'D'},
318 {"disassembler-options", required_argument
, NULL
, 'M'},
319 {"disassemble-zeroes", no_argument
, NULL
, 'z'},
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'},
324 {"file-offsets", no_argument
, NULL
, 'F'},
325 {"file-start-context", no_argument
, &file_start_context
, 1},
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'},
338 {"special-syms", no_argument
, &dump_special_syms
, 1},
339 {"include", required_argument
, NULL
, 'I'},
340 {"dwarf", optional_argument
, NULL
, OPTION_DWARF
},
341 {"stabs", no_argument
, NULL
, 'G'},
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'},
346 {"version", no_argument
, NULL
, 'V'},
347 {"wide", no_argument
, NULL
, 'w'},
348 {"prefix", required_argument
, NULL
, OPTION_PREFIX
},
349 {"prefix-strip", required_argument
, NULL
, OPTION_PREFIX_STRIP
},
350 {"insn-width", required_argument
, NULL
, OPTION_INSN_WIDTH
},
351 {"dwarf-depth", required_argument
, 0, OPTION_DWARF_DEPTH
},
352 {"dwarf-start", required_argument
, 0, OPTION_DWARF_START
},
353 {"dwarf-check", no_argument
, 0, OPTION_DWARF_CHECK
},
354 {"inlines", no_argument
, 0, OPTION_INLINES
},
355 {0, no_argument
, 0, 0}
359 nonfatal (const char *msg
)
365 /* Returns TRUE if the specified section should be dumped. */
368 process_section_p (asection
* section
)
372 if (only_list
== NULL
)
375 for (only
= only_list
; only
; only
= only
->next
)
376 if (strcmp (only
->name
, section
->name
) == 0)
385 /* Add an entry to the 'only' list. */
388 add_only (char * name
)
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)
398 only
= xmalloc (sizeof * only
);
401 only
->next
= only_list
;
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
413 free_only_list (void)
415 bfd_boolean at_least_one_seen
= FALSE
;
419 if (only_list
== NULL
)
422 for (only
= only_list
; only
; only
= only
->next
)
425 at_least_one_seen
= TRUE
;
429 for (only
= only_list
; only
; only
= next
)
431 if (! at_least_one_seen
)
433 non_fatal (_("section '%s' mentioned in a -j option, "
434 "but not found in any input file"),
445 dump_section_header (bfd
*abfd
, asection
*section
, void *data
)
448 unsigned int opb
= bfd_octets_per_byte (abfd
);
449 int longest_section_name
= *((int *) data
);
451 /* Ignore linker created section. See elfNN_ia64_object_p in
453 if (section
->flags
& SEC_LINKER_CREATED
)
456 /* PR 10413: Skip sections that we are ignoring. */
457 if (! process_section_p (section
))
460 printf ("%3d %-*s %08lx ", section
->index
, longest_section_name
,
461 bfd_get_section_name (abfd
, section
),
462 (unsigned long) bfd_section_size (abfd
, section
) / opb
);
463 bfd_printf_vma (abfd
, bfd_get_section_vma (abfd
, section
));
465 bfd_printf_vma (abfd
, section
->lma
);
466 printf (" %08lx 2**%u", (unsigned long) section
->filepos
,
467 bfd_get_section_alignment (abfd
, section
));
473 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
475 PF (SEC_HAS_CONTENTS
, "CONTENTS");
476 PF (SEC_ALLOC
, "ALLOC");
477 PF (SEC_CONSTRUCTOR
, "CONSTRUCTOR");
478 PF (SEC_LOAD
, "LOAD");
479 PF (SEC_RELOC
, "RELOC");
480 PF (SEC_READONLY
, "READONLY");
481 PF (SEC_CODE
, "CODE");
482 PF (SEC_DATA
, "DATA");
484 PF (SEC_DEBUGGING
, "DEBUGGING");
485 PF (SEC_NEVER_LOAD
, "NEVER_LOAD");
486 PF (SEC_EXCLUDE
, "EXCLUDE");
487 PF (SEC_SORT_ENTRIES
, "SORT_ENTRIES");
488 if (bfd_get_arch (abfd
) == bfd_arch_tic54x
)
490 PF (SEC_TIC54X_BLOCK
, "BLOCK");
491 PF (SEC_TIC54X_CLINK
, "CLINK");
493 PF (SEC_SMALL_DATA
, "SMALL_DATA");
494 if (bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
496 PF (SEC_COFF_SHARED
, "SHARED");
497 PF (SEC_COFF_NOREAD
, "NOREAD");
499 else if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
500 PF (SEC_ELF_PURECODE
, "PURECODE");
501 PF (SEC_THREAD_LOCAL
, "THREAD_LOCAL");
502 PF (SEC_GROUP
, "GROUP");
503 if (bfd_get_arch (abfd
) == bfd_arch_mep
)
505 PF (SEC_MEP_VLIW
, "VLIW");
508 if ((section
->flags
& SEC_LINK_ONCE
) != 0)
511 struct coff_comdat_info
*comdat
;
513 switch (section
->flags
& SEC_LINK_DUPLICATES
)
517 case SEC_LINK_DUPLICATES_DISCARD
:
518 ls
= "LINK_ONCE_DISCARD";
520 case SEC_LINK_DUPLICATES_ONE_ONLY
:
521 ls
= "LINK_ONCE_ONE_ONLY";
523 case SEC_LINK_DUPLICATES_SAME_SIZE
:
524 ls
= "LINK_ONCE_SAME_SIZE";
526 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
527 ls
= "LINK_ONCE_SAME_CONTENTS";
530 printf ("%s%s", comma
, ls
);
532 comdat
= bfd_coff_get_comdat_section (abfd
, section
);
534 printf (" (COMDAT %s %ld)", comdat
->name
, comdat
->symbol
);
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. */
547 find_longest_section_name (bfd
*abfd
, asection
*section
, void *data
)
549 int *longest_so_far
= (int *) data
;
553 /* Ignore linker created section. */
554 if (section
->flags
& SEC_LINKER_CREATED
)
557 /* Skip sections that we are ignoring. */
558 if (! process_section_p (section
))
561 name
= bfd_get_section_name (abfd
, section
);
562 len
= (int) strlen (name
);
563 if (len
> *longest_so_far
)
564 *longest_so_far
= len
;
568 dump_headers (bfd
*abfd
)
570 /* The default width of 13 is just an arbitrary choice. */
571 int max_section_name_length
= 13;
577 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
578 if (bfd_get_arch_size (abfd
) == 32)
584 printf (_("Sections:\n"));
587 bfd_map_over_sections (abfd
, find_longest_section_name
,
588 &max_section_name_length
);
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");
596 printf (_(" Flags"));
599 bfd_map_over_sections (abfd
, dump_section_header
,
600 &max_section_name_length
);
604 slurp_symtab (bfd
*abfd
)
609 if (!(bfd_get_file_flags (abfd
) & HAS_SYMS
))
615 storage
= bfd_get_symtab_upper_bound (abfd
);
618 non_fatal (_("failed to read symbol table from: %s"), bfd_get_filename (abfd
));
619 bfd_fatal (_("error message was"));
622 sy
= (asymbol
**) xmalloc (storage
);
624 symcount
= bfd_canonicalize_symtab (abfd
, sy
);
626 bfd_fatal (bfd_get_filename (abfd
));
630 /* Read in the dynamic symbols. */
633 slurp_dynamic_symtab (bfd
*abfd
)
638 storage
= bfd_get_dynamic_symtab_upper_bound (abfd
);
641 if (!(bfd_get_file_flags (abfd
) & DYNAMIC
))
643 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd
));
649 bfd_fatal (bfd_get_filename (abfd
));
652 sy
= (asymbol
**) xmalloc (storage
);
654 dynsymcount
= bfd_canonicalize_dynamic_symtab (abfd
, sy
);
656 bfd_fatal (bfd_get_filename (abfd
));
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. */
665 is_significant_symbol_name (const char * name
)
667 return strcmp (name
, ".plt") == 0
668 || strcmp (name
, ".got") == 0
669 || strcmp (name
, ".plt.got") == 0;
672 /* Filter out (in place) symbols that are useless for disassembly.
673 COUNT is the number of elements in SYMBOLS.
674 Return the number of useful symbols. */
677 remove_useless_symbols (asymbol
**symbols
, long count
)
679 asymbol
**in_ptr
= symbols
, **out_ptr
= symbols
;
683 asymbol
*sym
= *in_ptr
++;
685 if (sym
->name
== NULL
|| sym
->name
[0] == '\0')
687 if ((sym
->flags
& (BSF_DEBUGGING
| BSF_SECTION_SYM
))
688 && ! is_significant_symbol_name (sym
->name
))
690 if (bfd_is_und_section (sym
->section
)
691 || bfd_is_com_section (sym
->section
))
696 return out_ptr
- symbols
;
699 /* Sort symbols into value order. */
702 compare_symbols (const void *ap
, const void *bp
)
704 const asymbol
*a
= * (const asymbol
**) ap
;
705 const asymbol
*b
= * (const asymbol
**) bp
;
715 if (bfd_asymbol_value (a
) > bfd_asymbol_value (b
))
717 else if (bfd_asymbol_value (a
) < bfd_asymbol_value (b
))
720 if (a
->section
> b
->section
)
722 else if (a
->section
< b
->section
)
725 an
= bfd_asymbol_name (a
);
726 bn
= bfd_asymbol_name (b
);
730 /* The symbols gnu_compiled and gcc2_compiled convey no real
731 information, so put them after other symbols with the same value. */
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
);
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. */
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')))
753 af
= file_symbol (a
, an
, anl
);
754 bf
= file_symbol (b
, bn
, bnl
);
761 /* Try to sort global symbols before local symbols before function
762 symbols before debugging symbols. */
767 if ((aflags
& BSF_DEBUGGING
) != (bflags
& BSF_DEBUGGING
))
769 if ((aflags
& BSF_DEBUGGING
) != 0)
774 if ((aflags
& BSF_FUNCTION
) != (bflags
& BSF_FUNCTION
))
776 if ((aflags
& BSF_FUNCTION
) != 0)
781 if ((aflags
& BSF_LOCAL
) != (bflags
& BSF_LOCAL
))
783 if ((aflags
& BSF_LOCAL
) != 0)
788 if ((aflags
& BSF_GLOBAL
) != (bflags
& BSF_GLOBAL
))
790 if ((aflags
& BSF_GLOBAL
) != 0)
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
)
802 if ((a
->flags
& BSF_SYNTHETIC
) == 0)
803 asz
= ((elf_symbol_type
*) a
)->internal_elf_sym
.st_size
;
805 if ((b
->flags
& BSF_SYNTHETIC
) == 0)
806 bsz
= ((elf_symbol_type
*) b
)->internal_elf_sym
.st_size
;
808 return asz
> bsz
? -1 : 1;
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] != '.')
815 if (an
[0] != '.' && bn
[0] == '.')
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
);
823 /* Sort relocs into address order. */
826 compare_relocs (const void *ap
, const void *bp
)
828 const arelent
*a
= * (const arelent
**) ap
;
829 const arelent
*b
= * (const arelent
**) bp
;
831 if (a
->address
> b
->address
)
833 else if (a
->address
< b
->address
)
836 /* So that associated relocations tied to the same address show up
837 in the correct order, we don't do any further sorting. */
846 /* Print an address (VMA) to the output stream in INFO.
847 If SKIP_ZEROES is TRUE, omit leading zeroes. */
850 objdump_print_value (bfd_vma vma
, struct disassemble_info
*inf
,
851 bfd_boolean skip_zeroes
)
855 struct objdump_disasm_info
*aux
;
857 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
858 bfd_sprintf_vma (aux
->abfd
, buf
, vma
);
863 for (p
= buf
; *p
== '0'; ++p
)
868 (*inf
->fprintf_func
) (inf
->stream
, "%s", p
);
871 /* Print the name of a symbol. */
874 objdump_print_symname (bfd
*abfd
, struct disassemble_info
*inf
,
878 const char *name
, *version_string
= NULL
;
879 bfd_boolean hidden
= FALSE
;
882 name
= bfd_asymbol_name (sym
);
883 if (do_demangle
&& name
[0] != '\0')
885 /* Demangle the name. */
886 alloc
= bfd_demangle (abfd
, name
, DMGL_ANSI
| DMGL_PARAMS
);
891 if ((sym
->flags
& BSF_SYNTHETIC
) == 0)
892 version_string
= bfd_get_symbol_version_string (abfd
, sym
, &hidden
);
894 if (bfd_is_und_section (bfd_get_section (sym
)))
899 (*inf
->fprintf_func
) (inf
->stream
, "%s", name
);
900 if (version_string
&& *version_string
!= '\0')
901 (*inf
->fprintf_func
) (inf
->stream
, hidden
? "@%s" : "@@%s",
907 if (version_string
&& *version_string
!= '\0')
908 printf (hidden
? "@%s" : "@@%s", version_string
);
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. */
922 find_symbol_for_address (bfd_vma vma
,
923 struct disassemble_info
*inf
,
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. */
931 /* Indices in `sorted_syms'. */
933 long max_count
= sorted_symcount
;
935 struct objdump_disasm_info
*aux
;
939 bfd_boolean want_section
;
941 if (sorted_symcount
< 1)
944 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
947 opb
= inf
->octets_per_byte
;
949 /* Perform a binary search looking for the closest symbol to the
950 required value. We are searching the range (min, max_count]. */
951 while (min
+ 1 < max_count
)
955 thisplace
= (max_count
+ min
) / 2;
956 sym
= sorted_syms
[thisplace
];
958 if (bfd_asymbol_value (sym
) > vma
)
959 max_count
= thisplace
;
960 else if (bfd_asymbol_value (sym
) < vma
)
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
971 value, we want the first (non-section/non-debugging) one. */
974 && (bfd_asymbol_value (sorted_syms
[thisplace
])
975 == bfd_asymbol_value (sorted_syms
[thisplace
- 1]))
976 && ((sorted_syms
[thisplace
- 1]->flags
977 & (BSF_SECTION_SYM
| BSF_DEBUGGING
)) == 0)
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
985 while (min
< max_count
986 && (bfd_asymbol_value (sorted_syms
[min
])
987 == bfd_asymbol_value (sorted_syms
[thisplace
])))
989 if (sorted_syms
[min
]->section
== sec
990 && inf
->symbol_is_valid (sorted_syms
[min
], inf
))
997 return sorted_syms
[thisplace
];
1002 /* If the file is relocatable, and the symbol could be from this
1003 section, prefer a symbol from this section over symbols from
1004 others, even if the other symbol's value might be closer.
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
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
)
1018 || ! inf
->symbol_is_valid (sorted_syms
[thisplace
], inf
))
1021 long newplace
= sorted_symcount
;
1023 for (i
= min
- 1; i
>= 0; i
--)
1025 if ((sorted_syms
[i
]->section
== sec
|| !want_section
)
1026 && inf
->symbol_is_valid (sorted_syms
[i
], inf
))
1028 if (newplace
== sorted_symcount
)
1031 if (bfd_asymbol_value (sorted_syms
[i
])
1032 != bfd_asymbol_value (sorted_syms
[newplace
]))
1035 /* Remember this symbol and keep searching until we reach
1036 an earlier address. */
1041 if (newplace
!= sorted_symcount
)
1042 thisplace
= newplace
;
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
++)
1049 if ((sorted_syms
[i
]->section
== sec
|| !want_section
)
1050 && inf
->symbol_is_valid (sorted_syms
[i
], inf
))
1058 if ((sorted_syms
[thisplace
]->section
!= sec
&& want_section
)
1059 || ! inf
->symbol_is_valid (sorted_syms
[thisplace
], inf
))
1060 /* There is no suitable symbol. */
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. */
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)
1077 for (rel_count
= aux
->dynrelcount
, rel_pp
= aux
->dynrelbuf
;
1080 arelent
* rel
= rel_pp
[rel_count
];
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
))
1088 * place
= thisplace
;
1089 return * rel
->sym_ptr_ptr
;
1092 /* We are scanning backwards, so if we go below the target address
1094 if (rel_pp
[rel_count
]->address
< vma
)
1102 return sorted_syms
[thisplace
];
1105 /* Print an address and the offset to the nearest symbol. */
1108 objdump_print_addr_with_sym (bfd
*abfd
, asection
*sec
, asymbol
*sym
,
1109 bfd_vma vma
, struct disassemble_info
*inf
,
1110 bfd_boolean skip_zeroes
)
1112 objdump_print_value (vma
, inf
, skip_zeroes
);
1118 (*inf
->fprintf_func
) (inf
->stream
, " <%s",
1119 bfd_get_section_name (abfd
, sec
));
1120 secaddr
= bfd_get_section_vma (abfd
, sec
);
1123 (*inf
->fprintf_func
) (inf
->stream
, "-0x");
1124 objdump_print_value (secaddr
- vma
, inf
, TRUE
);
1126 else if (vma
> secaddr
)
1128 (*inf
->fprintf_func
) (inf
->stream
, "+0x");
1129 objdump_print_value (vma
- secaddr
, inf
, TRUE
);
1131 (*inf
->fprintf_func
) (inf
->stream
, ">");
1135 (*inf
->fprintf_func
) (inf
->stream
, " <");
1137 objdump_print_symname (abfd
, inf
, sym
);
1139 if (bfd_asymbol_value (sym
) == vma
)
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
))
1150 else if (bfd_asymbol_value (sym
) > vma
)
1152 (*inf
->fprintf_func
) (inf
->stream
, "-0x");
1153 objdump_print_value (bfd_asymbol_value (sym
) - vma
, inf
, TRUE
);
1155 else if (vma
> bfd_asymbol_value (sym
))
1157 (*inf
->fprintf_func
) (inf
->stream
, "+0x");
1158 objdump_print_value (vma
- bfd_asymbol_value (sym
), inf
, TRUE
);
1161 (*inf
->fprintf_func
) (inf
->stream
, ">");
1164 if (display_file_offsets
)
1165 inf
->fprintf_func (inf
->stream
, _(" (File Offset: 0x%lx)"),
1166 (long int)(sec
->filepos
+ (vma
- sec
->vma
)));
1169 /* Print an address (VMA), symbolically if possible.
1170 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
1173 objdump_print_addr (bfd_vma vma
,
1174 struct disassemble_info
*inf
,
1175 bfd_boolean skip_zeroes
)
1177 struct objdump_disasm_info
*aux
;
1178 asymbol
*sym
= NULL
;
1179 bfd_boolean skip_find
= FALSE
;
1181 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1183 if (sorted_symcount
< 1)
1185 (*inf
->fprintf_func
) (inf
->stream
, "0x");
1186 objdump_print_value (vma
, inf
, skip_zeroes
);
1188 if (display_file_offsets
)
1189 inf
->fprintf_func (inf
->stream
, _(" (File Offset: 0x%lx)"),
1190 (long int)(aux
->sec
->filepos
+ (vma
- aux
->sec
->vma
)));
1194 if (aux
->reloc
!= NULL
1195 && aux
->reloc
->sym_ptr_ptr
!= NULL
1196 && * aux
->reloc
->sym_ptr_ptr
!= NULL
)
1198 sym
= * aux
->reloc
->sym_ptr_ptr
;
1200 /* Adjust the vma to the reloc. */
1201 vma
+= bfd_asymbol_value (sym
);
1203 if (bfd_is_und_section (bfd_get_section (sym
)))
1208 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1210 objdump_print_addr_with_sym (aux
->abfd
, aux
->sec
, sym
, vma
, inf
,
1214 /* Print VMA to INFO. This function is passed to the disassembler
1218 objdump_print_address (bfd_vma vma
, struct disassemble_info
*inf
)
1220 objdump_print_addr (vma
, inf
, ! prefix_addresses
);
1223 /* Determine if the given address has a symbol associated with it. */
1226 objdump_symbol_at_address (bfd_vma vma
, struct disassemble_info
* inf
)
1230 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1232 return (sym
!= NULL
&& (bfd_asymbol_value (sym
) == vma
));
1235 /* Hold the last function name and the last line number we displayed
1236 in a disassembly. */
1238 static char *prev_functionname
;
1239 static unsigned int prev_line
;
1240 static unsigned int prev_discriminator
;
1242 /* We keep a list of all files that we have seen when doing a
1243 disassembly with source, so that we know how much of the file to
1244 display. This can be important for inlined functions. */
1246 struct print_file_list
1248 struct print_file_list
*next
;
1249 const char *filename
;
1250 const char *modname
;
1253 const char **linemap
;
1256 unsigned max_printed
;
1260 static struct print_file_list
*print_files
;
1262 /* The number of preceding context lines to show when we start
1263 displaying a file for the first time. */
1265 #define SHOW_PRECEDING_CONTEXT_LINES (5)
1267 /* Read a complete file into memory. */
1270 slurp_file (const char *fn
, size_t *size
, struct stat
*fst
)
1273 int ps
= getpagesize ();
1277 int fd
= open (fn
, O_RDONLY
| O_BINARY
);
1281 if (fstat (fd
, fst
) < 0)
1286 *size
= fst
->st_size
;
1288 msize
= (*size
+ ps
- 1) & ~(ps
- 1);
1289 map
= mmap (NULL
, msize
, PROT_READ
, MAP_SHARED
, fd
, 0);
1290 if (map
!= (char *) -1L)
1296 map
= (const char *) malloc (*size
);
1297 if (!map
|| (size_t) read (fd
, (char *) map
, *size
) != *size
)
1299 free ((void *) map
);
1306 #define line_map_decrease 5
1308 /* Precompute array of lines for a mapped file. */
1310 static const char **
1311 index_file (const char *map
, size_t size
, unsigned int *maxline
)
1313 const char *p
, *lstart
, *end
;
1314 int chars_per_line
= 45; /* First iteration will use 40. */
1315 unsigned int lineno
;
1316 const char **linemap
= NULL
;
1317 unsigned long line_map_size
= 0;
1323 for (p
= map
; p
< end
; p
++)
1327 if (p
+ 1 < end
&& p
[1] == '\r')
1330 else if (*p
== '\r')
1332 if (p
+ 1 < end
&& p
[1] == '\n')
1338 /* End of line found. */
1340 if (linemap
== NULL
|| line_map_size
< lineno
+ 1)
1342 unsigned long newsize
;
1344 chars_per_line
-= line_map_decrease
;
1345 if (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 *);
1351 linemap
= (const char **) xrealloc (linemap
, newsize
);
1354 linemap
[lineno
++] = lstart
;
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. */
1365 static struct print_file_list
*
1366 try_print_file_open (const char *origname
, const char *modname
, struct stat
*fst
)
1368 struct print_file_list
*p
;
1370 p
= (struct print_file_list
*) xmalloc (sizeof (struct print_file_list
));
1372 p
->map
= slurp_file (modname
, &p
->mapsize
, fst
);
1379 p
->linemap
= index_file (p
->map
, p
->mapsize
, &p
->maxline
);
1382 p
->filename
= origname
;
1383 p
->modname
= modname
;
1384 p
->next
= print_files
;
1390 /* If the source file, as described in the symtab, is not found
1391 try to locate it in one of the paths specified with -I
1392 If found, add location to print_files linked list. */
1394 static struct print_file_list
*
1395 update_source_path (const char *filename
, bfd
*abfd
)
1397 struct print_file_list
*p
;
1402 p
= try_print_file_open (filename
, filename
, &fst
);
1405 if (include_path_count
== 0)
1408 /* Get the name of the file. */
1409 fname
= lbasename (filename
);
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
++)
1415 char *modname
= concat (include_paths
[i
], "/", fname
,
1418 p
= try_print_file_open (filename
, modname
, &fst
);
1428 long mtime
= bfd_get_mtime (abfd
);
1430 if (fst
.st_mtime
> mtime
)
1431 warn (_("source file %s is more recent than object file\n"),
1438 /* Print a source file line. */
1441 print_line (struct print_file_list
*p
, unsigned int linenum
)
1447 if (linenum
>= p
->maxline
)
1449 l
= p
->linemap
[linenum
];
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)
1456 /* Print a range of source code lines. */
1459 dump_lines (struct print_file_list
*p
, unsigned int start
, unsigned int end
)
1463 while (start
<= end
)
1465 print_line (p
, start
);
1470 /* Show the line number, or the source line, in a disassembly
1474 show_line (bfd
*abfd
, asection
*section
, bfd_vma addr_offset
)
1476 const char *filename
;
1477 const char *functionname
;
1478 unsigned int linenumber
;
1479 unsigned int discriminator
;
1483 if (! with_line_numbers
&& ! with_source_code
)
1486 if (! bfd_find_nearest_line_discriminator (abfd
, section
, syms
, addr_offset
,
1487 &filename
, &functionname
,
1488 &linenumber
, &discriminator
))
1491 if (filename
!= NULL
&& *filename
== '\0')
1493 if (functionname
!= NULL
&& *functionname
== '\0')
1494 functionname
= NULL
;
1497 && IS_ABSOLUTE_PATH (filename
)
1501 const char *fname
= filename
;
1503 path
= xmalloc (prefix_length
+ PATH_MAX
+ 1);
1506 memcpy (path
, prefix
, prefix_length
);
1507 path_up
= path
+ prefix_length
;
1509 /* Build relocated filename, stripping off leading directories
1510 from the initial filename if requested. */
1511 if (prefix_strip
> 0)
1516 /* Skip selected directory levels. */
1517 for (s
= fname
+ 1; *s
!= '\0' && level
< prefix_strip
; s
++)
1518 if (IS_DIR_SEPARATOR(*s
))
1525 /* Update complete filename. */
1526 strncpy (path_up
, fname
, PATH_MAX
);
1527 path_up
[PATH_MAX
] = '\0';
1535 if (with_line_numbers
)
1537 if (functionname
!= NULL
1538 && (prev_functionname
== NULL
1539 || strcmp (functionname
, prev_functionname
) != 0))
1540 printf ("%s():\n", functionname
);
1541 if (linenumber
> 0 && (linenumber
!= prev_line
||
1542 (discriminator
!= prev_discriminator
)))
1544 if (discriminator
> 0)
1545 printf ("%s:%u (discriminator %u)\n", filename
== NULL
? "???" : filename
,
1546 linenumber
, discriminator
);
1548 printf ("%s:%u\n", filename
== NULL
? "???" : filename
, linenumber
);
1552 const char *filename2
;
1553 const char *functionname2
;
1556 while (bfd_find_inliner_info (abfd
, &filename2
, &functionname2
,
1558 printf ("inlined by %s:%u (%s)\n", filename2
, line2
,
1563 if (with_source_code
1567 struct print_file_list
**pp
, *p
;
1570 for (pp
= &print_files
; *pp
!= NULL
; pp
= &(*pp
)->next
)
1571 if (filename_cmp ((*pp
)->filename
, filename
) == 0)
1578 filename
= xstrdup (filename
);
1579 p
= update_source_path (filename
, abfd
);
1582 if (p
!= NULL
&& linenumber
!= p
->last_line
)
1584 if (file_start_context
&& p
->first
)
1588 l
= linenumber
- SHOW_PRECEDING_CONTEXT_LINES
;
1589 if (l
>= linenumber
)
1591 if (p
->max_printed
>= l
)
1593 if (p
->max_printed
< linenumber
)
1594 l
= p
->max_printed
+ 1;
1599 dump_lines (p
, l
, linenumber
);
1600 if (p
->max_printed
< linenumber
)
1601 p
->max_printed
= linenumber
;
1602 p
->last_line
= linenumber
;
1607 if (functionname
!= NULL
1608 && (prev_functionname
== NULL
1609 || strcmp (functionname
, prev_functionname
) != 0))
1611 if (prev_functionname
!= NULL
)
1612 free (prev_functionname
);
1613 prev_functionname
= (char *) xmalloc (strlen (functionname
) + 1);
1614 strcpy (prev_functionname
, functionname
);
1617 if (linenumber
> 0 && linenumber
!= prev_line
)
1618 prev_line
= linenumber
;
1620 if (discriminator
!= prev_discriminator
)
1621 prev_discriminator
= discriminator
;
1627 /* Pseudo FILE object for strings. */
1635 /* sprintf to a "stream". */
1637 static int ATTRIBUTE_PRINTF_2
1638 objdump_sprintf (SFILE
*f
, const char *format
, ...)
1645 size_t space
= f
->alloc
- f
->pos
;
1647 va_start (args
, format
);
1648 n
= vsnprintf (f
->buffer
+ f
->pos
, space
, format
, args
);
1654 f
->alloc
= (f
->alloc
+ n
) * 2;
1655 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
1662 /* The number of zeroes we want to see before we start skipping them.
1663 The number is arbitrarily chosen. */
1665 #define DEFAULT_SKIP_ZEROES 8
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
1674 #define DEFAULT_SKIP_ZEROES_AT_END 3
1676 /* Disassemble some data in memory between given values. */
1679 disassemble_bytes (struct disassemble_info
* inf
,
1680 disassembler_ftype disassemble_fn
,
1683 bfd_vma start_offset
,
1684 bfd_vma stop_offset
,
1687 arelent
** relppend
)
1689 struct objdump_disasm_info
*aux
;
1691 int octets_per_line
;
1692 int skip_addr_chars
;
1693 bfd_vma addr_offset
;
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
;
1700 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1704 sfile
.buffer
= (char *) xmalloc (sfile
.alloc
);
1708 octets_per_line
= insn_width
;
1710 octets_per_line
= 4;
1712 octets_per_line
= 16;
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
1718 skip_addr_chars
= 0;
1719 if (! prefix_addresses
)
1723 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ section
->size
/ opb
);
1725 while (buf
[skip_addr_chars
] == '0')
1728 /* Don't discard zeros on overflow. */
1729 if (buf
[skip_addr_chars
] == '\0' && section
->vma
!= 0)
1730 skip_addr_chars
= 0;
1732 if (skip_addr_chars
!= 0)
1733 skip_addr_chars
= (skip_addr_chars
- 1) & -4;
1736 inf
->insn_info_valid
= 0;
1738 addr_offset
= start_offset
;
1739 while (addr_offset
< stop_offset
)
1742 bfd_boolean need_nl
= FALSE
;
1743 int previous_octets
;
1745 /* Remember the length of the previous instruction. */
1746 previous_octets
= octets
;
1749 /* Make sure we don't use relocs from previous instructions. */
1752 /* If we see more than SKIP_ZEROES octets of zeroes, we just
1754 for (z
= addr_offset
* opb
; z
< stop_offset
* opb
; z
++)
1757 if (! disassemble_zeroes
1758 && (inf
->insn_info_valid
== 0
1759 || inf
->branch_delay_insns
== 0)
1760 && (z
- addr_offset
* opb
>= skip_zeroes
1761 || (z
== stop_offset
* opb
&&
1762 z
- addr_offset
* opb
< skip_zeroes_at_end
)))
1764 /* If there are more nonzero octets to follow, we only skip
1765 zeroes in multiples of 4, to try to avoid running over
1766 the start of an instruction which happens to start with
1768 if (z
!= stop_offset
* opb
)
1769 z
= addr_offset
* opb
+ ((z
- addr_offset
* opb
) &~ 3);
1771 octets
= z
- addr_offset
* opb
;
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",
1779 (unsigned long) (section
->filepos
1780 + (addr_offset
+ (octets
/ opb
))));
1790 if (with_line_numbers
|| with_source_code
)
1791 show_line (aux
->abfd
, section
, addr_offset
);
1793 if (! prefix_addresses
)
1797 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ addr_offset
);
1798 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1802 printf ("%s:\t", buf
+ skip_addr_chars
);
1806 aux
->require_sec
= TRUE
;
1807 objdump_print_address (section
->vma
+ addr_offset
, inf
);
1808 aux
->require_sec
= FALSE
;
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;
1821 inf
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
1823 if (inf
->disassembler_needs_relocs
1824 && (bfd_get_file_flags (aux
->abfd
) & EXEC_P
) == 0
1825 && (bfd_get_file_flags (aux
->abfd
) & DYNAMIC
) == 0
1826 && *relppp
< relppend
)
1828 bfd_signed_vma distance_to_rel
;
1830 distance_to_rel
= (**relppp
)->address
1831 - (rel_offset
+ addr_offset
);
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
)))
1850 inf
->flags
|= INSN_HAS_RELOC
;
1851 aux
->reloc
= **relppp
;
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
;
1864 octets
= (*disassemble_fn
) (section
->vma
+ addr_offset
, inf
);
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
;
1871 if (octets
< (int) opb
)
1874 printf ("%s\n", sfile
.buffer
);
1877 non_fatal (_("disassemble_fn returned length %d"),
1888 octets
= octets_per_line
;
1889 if (addr_offset
+ octets
/ opb
> stop_offset
)
1890 octets
= (stop_offset
- addr_offset
) * opb
;
1892 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ octets
; ++j
)
1894 if (ISPRINT (data
[j
]))
1895 buf
[j
- addr_offset
* opb
] = data
[j
];
1897 buf
[j
- addr_offset
* opb
] = '.';
1899 buf
[j
- addr_offset
* opb
] = '\0';
1902 if (prefix_addresses
1904 : show_raw_insn
>= 0)
1908 /* If ! prefix_addresses and ! wide_output, we print
1909 octets_per_line octets per line. */
1911 if (pb
> octets_per_line
&& ! prefix_addresses
&& ! wide_output
)
1912 pb
= octets_per_line
;
1914 if (inf
->bytes_per_chunk
)
1915 bpc
= inf
->bytes_per_chunk
;
1919 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
1923 if (bpc
> 1 && inf
->display_endian
== BFD_ENDIAN_LITTLE
)
1925 for (k
= bpc
- 1; k
>= 0; k
--)
1926 printf ("%02x", (unsigned) data
[j
+ k
]);
1931 for (k
= 0; k
< bpc
; k
++)
1932 printf ("%02x", (unsigned) data
[j
+ k
]);
1937 for (; pb
< octets_per_line
; pb
+= bpc
)
1941 for (k
= 0; k
< bpc
; k
++)
1946 /* Separate raw data from instruction by extra space. */
1956 printf ("%s", sfile
.buffer
);
1958 if (prefix_addresses
1960 : show_raw_insn
>= 0)
1968 j
= addr_offset
* opb
+ pb
;
1970 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ j
/ opb
);
1971 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1975 printf ("%s:\t", buf
+ skip_addr_chars
);
1977 pb
+= octets_per_line
;
1980 for (; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
1984 if (bpc
> 1 && inf
->display_endian
== BFD_ENDIAN_LITTLE
)
1986 for (k
= bpc
- 1; k
>= 0; k
--)
1987 printf ("%02x", (unsigned) data
[j
+ k
]);
1992 for (k
= 0; k
< bpc
; k
++)
1993 printf ("%02x", (unsigned) data
[j
+ k
]);
2006 while ((*relppp
) < relppend
2007 && (**relppp
)->address
< rel_offset
+ addr_offset
+ octets
/ opb
)
2009 if (dump_reloc_info
|| dump_dynamic_reloc_info
)
2020 objdump_print_value (section
->vma
- rel_offset
+ q
->address
,
2023 if (q
->howto
== NULL
)
2024 printf (": *unknown*\t");
2025 else if (q
->howto
->name
)
2026 printf (": %s\t", q
->howto
->name
);
2028 printf (": %d\t", q
->howto
->type
);
2030 if (q
->sym_ptr_ptr
== NULL
|| *q
->sym_ptr_ptr
== NULL
)
2031 printf ("*unknown*");
2034 const char *sym_name
;
2036 sym_name
= bfd_asymbol_name (*q
->sym_ptr_ptr
);
2037 if (sym_name
!= NULL
&& *sym_name
!= '\0')
2038 objdump_print_symname (aux
->abfd
, inf
, *q
->sym_ptr_ptr
);
2043 sym_sec
= bfd_get_section (*q
->sym_ptr_ptr
);
2044 sym_name
= bfd_get_section_name (aux
->abfd
, sym_sec
);
2045 if (sym_name
== NULL
|| *sym_name
== '\0')
2046 sym_name
= "*unknown*";
2047 printf ("%s", sym_name
);
2053 bfd_signed_vma addend
= q
->addend
;
2061 objdump_print_value (addend
, inf
, TRUE
);
2073 addr_offset
+= octets
/ opb
;
2076 free (sfile
.buffer
);
2080 disassemble_section (bfd
*abfd
, asection
*section
, void *inf
)
2082 const struct elf_backend_data
* bed
;
2083 bfd_vma sign_adjust
= 0;
2084 struct disassemble_info
* pinfo
= (struct disassemble_info
*) inf
;
2085 struct objdump_disasm_info
* paux
;
2086 unsigned int opb
= pinfo
->octets_per_byte
;
2087 bfd_byte
* data
= NULL
;
2088 bfd_size_type datasize
= 0;
2089 arelent
** rel_pp
= NULL
;
2090 arelent
** rel_ppstart
= NULL
;
2091 arelent
** rel_ppend
;
2092 bfd_vma stop_offset
;
2093 asymbol
* sym
= NULL
;
2097 unsigned long addr_offset
;
2099 /* Sections that do not contain machine
2100 code are not normally disassembled. */
2101 if (! disassemble_all
2102 && only_list
== NULL
2103 && ((section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
2104 != (SEC_CODE
| SEC_HAS_CONTENTS
)))
2107 if (! process_section_p (section
))
2110 datasize
= bfd_get_section_size (section
);
2114 if (start_address
== (bfd_vma
) -1
2115 || start_address
< section
->vma
)
2118 addr_offset
= start_address
- section
->vma
;
2120 if (stop_address
== (bfd_vma
) -1)
2121 stop_offset
= datasize
/ opb
;
2124 if (stop_address
< section
->vma
)
2127 stop_offset
= stop_address
- section
->vma
;
2128 if (stop_offset
> datasize
/ opb
)
2129 stop_offset
= datasize
/ opb
;
2132 if (addr_offset
>= stop_offset
)
2135 /* Decide which set of relocs to use. Load them if necessary. */
2136 paux
= (struct objdump_disasm_info
*) pinfo
->application_data
;
2137 if (paux
->dynrelbuf
&& dump_dynamic_reloc_info
)
2139 rel_pp
= paux
->dynrelbuf
;
2140 rel_count
= paux
->dynrelcount
;
2141 /* Dynamic reloc addresses are absolute, non-dynamic are section
2142 relative. REL_OFFSET specifies the reloc address corresponding
2143 to the start of this section. */
2144 rel_offset
= section
->vma
;
2152 if ((section
->flags
& SEC_RELOC
) != 0
2153 && (dump_reloc_info
|| pinfo
->disassembler_needs_relocs
))
2157 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
2159 bfd_fatal (bfd_get_filename (abfd
));
2163 rel_ppstart
= rel_pp
= (arelent
**) xmalloc (relsize
);
2164 rel_count
= bfd_canonicalize_reloc (abfd
, section
, rel_pp
, syms
);
2166 bfd_fatal (bfd_get_filename (abfd
));
2168 /* Sort the relocs by address. */
2169 qsort (rel_pp
, rel_count
, sizeof (arelent
*), compare_relocs
);
2173 rel_ppend
= rel_pp
+ rel_count
;
2175 data
= (bfd_byte
*) xmalloc (datasize
);
2177 bfd_get_section_contents (abfd
, section
, data
, 0, datasize
);
2179 paux
->sec
= section
;
2180 pinfo
->buffer
= data
;
2181 pinfo
->buffer_vma
= section
->vma
;
2182 pinfo
->buffer_length
= datasize
;
2183 pinfo
->section
= section
;
2185 /* Skip over the relocs belonging to addresses below the
2187 while (rel_pp
< rel_ppend
2188 && (*rel_pp
)->address
< rel_offset
+ addr_offset
)
2191 printf (_("\nDisassembly of section %s:\n"), section
->name
);
2193 /* Find the nearest symbol forwards from our current position. */
2194 paux
->require_sec
= TRUE
;
2195 sym
= (asymbol
*) find_symbol_for_address (section
->vma
+ addr_offset
,
2196 (struct disassemble_info
*) inf
,
2198 paux
->require_sec
= FALSE
;
2200 /* PR 9774: If the target used signed addresses then we must make
2201 sure that we sign extend the value that we calculate for 'addr'
2202 in the loop below. */
2203 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
2204 && (bed
= get_elf_backend_data (abfd
)) != NULL
2205 && bed
->sign_extend_vma
)
2206 sign_adjust
= (bfd_vma
) 1 << (bed
->s
->arch_size
- 1);
2208 /* Disassemble a block of instructions up to the address associated with
2209 the symbol we have just found. Then print the symbol and find the
2210 next symbol on. Repeat until we have disassembled the entire section
2211 or we have reached the end of the address range we are interested in. */
2212 while (addr_offset
< stop_offset
)
2216 bfd_vma nextstop_offset
;
2219 addr
= section
->vma
+ addr_offset
;
2220 addr
= ((addr
& ((sign_adjust
<< 1) - 1)) ^ sign_adjust
) - sign_adjust
;
2222 if (sym
!= NULL
&& bfd_asymbol_value (sym
) <= addr
)
2227 (x
< sorted_symcount
2228 && (bfd_asymbol_value (sorted_syms
[x
]) <= addr
));
2232 pinfo
->symbols
= sorted_syms
+ place
;
2233 pinfo
->num_symbols
= x
- place
;
2234 pinfo
->symtab_pos
= place
;
2238 pinfo
->symbols
= NULL
;
2239 pinfo
->num_symbols
= 0;
2240 pinfo
->symtab_pos
= -1;
2243 if (! prefix_addresses
)
2245 pinfo
->fprintf_func (pinfo
->stream
, "\n");
2246 objdump_print_addr_with_sym (abfd
, section
, sym
, addr
,
2248 pinfo
->fprintf_func (pinfo
->stream
, ":\n");
2251 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
2253 else if (sym
== NULL
)
2257 #define is_valid_next_sym(SYM) \
2258 ((SYM)->section == section \
2259 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
2260 && pinfo->symbol_is_valid (SYM, pinfo))
2262 /* Search forward for the next appropriate symbol in
2263 SECTION. Note that all the symbols are sorted
2264 together into one big array, and that some sections
2265 may have overlapping addresses. */
2266 while (place
< sorted_symcount
2267 && ! is_valid_next_sym (sorted_syms
[place
]))
2270 if (place
>= sorted_symcount
)
2273 nextsym
= sorted_syms
[place
];
2276 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
2277 nextstop_offset
= bfd_asymbol_value (sym
) - section
->vma
;
2278 else if (nextsym
== NULL
)
2279 nextstop_offset
= stop_offset
;
2281 nextstop_offset
= bfd_asymbol_value (nextsym
) - section
->vma
;
2283 if (nextstop_offset
> stop_offset
2284 || nextstop_offset
<= addr_offset
)
2285 nextstop_offset
= stop_offset
;
2287 /* If a symbol is explicitly marked as being an object
2288 rather than a function, just dump the bytes without
2289 disassembling them. */
2292 || sym
->section
!= section
2293 || bfd_asymbol_value (sym
) > addr
2294 || ((sym
->flags
& BSF_OBJECT
) == 0
2295 && (strstr (bfd_asymbol_name (sym
), "gnu_compiled")
2297 && (strstr (bfd_asymbol_name (sym
), "gcc2_compiled")
2299 || (sym
->flags
& BSF_FUNCTION
) != 0)
2304 disassemble_bytes (pinfo
, paux
->disassemble_fn
, insns
, data
,
2305 addr_offset
, nextstop_offset
,
2306 rel_offset
, &rel_pp
, rel_ppend
);
2308 addr_offset
= nextstop_offset
;
2314 if (rel_ppstart
!= NULL
)
2318 /* Disassemble the contents of an object file. */
2321 disassemble_data (bfd
*abfd
)
2323 struct disassemble_info disasm_info
;
2324 struct objdump_disasm_info aux
;
2328 prev_functionname
= NULL
;
2330 prev_discriminator
= 0;
2332 /* We make a copy of syms to sort. We don't want to sort syms
2333 because that will screw up the relocs. */
2334 sorted_symcount
= symcount
? symcount
: dynsymcount
;
2335 sorted_syms
= (asymbol
**) xmalloc ((sorted_symcount
+ synthcount
)
2336 * sizeof (asymbol
*));
2337 memcpy (sorted_syms
, symcount
? syms
: dynsyms
,
2338 sorted_symcount
* sizeof (asymbol
*));
2340 sorted_symcount
= remove_useless_symbols (sorted_syms
, sorted_symcount
);
2342 for (i
= 0; i
< synthcount
; ++i
)
2344 sorted_syms
[sorted_symcount
] = synthsyms
+ i
;
2348 /* Sort the symbols into section and symbol order. */
2349 qsort (sorted_syms
, sorted_symcount
, sizeof (asymbol
*), compare_symbols
);
2351 init_disassemble_info (&disasm_info
, stdout
, (fprintf_ftype
) fprintf
);
2353 disasm_info
.application_data
= (void *) &aux
;
2355 aux
.require_sec
= FALSE
;
2356 aux
.dynrelbuf
= NULL
;
2357 aux
.dynrelcount
= 0;
2360 disasm_info
.print_address_func
= objdump_print_address
;
2361 disasm_info
.symbol_at_address_func
= objdump_symbol_at_address
;
2363 if (machine
!= NULL
)
2365 const bfd_arch_info_type
*inf
= bfd_scan_arch (machine
);
2368 fatal (_("can't use supplied machine %s"), machine
);
2370 abfd
->arch_info
= inf
;
2373 if (endian
!= BFD_ENDIAN_UNKNOWN
)
2375 struct bfd_target
*xvec
;
2377 xvec
= (struct bfd_target
*) xmalloc (sizeof (struct bfd_target
));
2378 memcpy (xvec
, abfd
->xvec
, sizeof (struct bfd_target
));
2379 xvec
->byteorder
= endian
;
2383 /* Use libopcodes to locate a suitable disassembler. */
2384 aux
.disassemble_fn
= disassembler (abfd
);
2385 if (!aux
.disassemble_fn
)
2387 non_fatal (_("can't disassemble for architecture %s\n"),
2388 bfd_printable_arch_mach (bfd_get_arch (abfd
), 0));
2393 disasm_info
.flavour
= bfd_get_flavour (abfd
);
2394 disasm_info
.arch
= bfd_get_arch (abfd
);
2395 disasm_info
.mach
= bfd_get_mach (abfd
);
2396 disasm_info
.disassembler_options
= disassembler_options
;
2397 disasm_info
.octets_per_byte
= bfd_octets_per_byte (abfd
);
2398 disasm_info
.skip_zeroes
= DEFAULT_SKIP_ZEROES
;
2399 disasm_info
.skip_zeroes_at_end
= DEFAULT_SKIP_ZEROES_AT_END
;
2400 disasm_info
.disassembler_needs_relocs
= FALSE
;
2402 if (bfd_big_endian (abfd
))
2403 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_BIG
;
2404 else if (bfd_little_endian (abfd
))
2405 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_LITTLE
;
2407 /* ??? Aborting here seems too drastic. We could default to big or little
2409 disasm_info
.endian
= BFD_ENDIAN_UNKNOWN
;
2411 /* Allow the target to customize the info structure. */
2412 disassemble_init_for_target (& disasm_info
);
2414 /* Pre-load the dynamic relocs as we may need them during the disassembly. */
2416 long relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
2418 if (relsize
< 0 && dump_dynamic_reloc_info
)
2419 bfd_fatal (bfd_get_filename (abfd
));
2423 aux
.dynrelbuf
= (arelent
**) xmalloc (relsize
);
2424 aux
.dynrelcount
= bfd_canonicalize_dynamic_reloc (abfd
,
2427 if (aux
.dynrelcount
< 0)
2428 bfd_fatal (bfd_get_filename (abfd
));
2430 /* Sort the relocs by address. */
2431 qsort (aux
.dynrelbuf
, aux
.dynrelcount
, sizeof (arelent
*),
2435 disasm_info
.symtab
= sorted_syms
;
2436 disasm_info
.symtab_size
= sorted_symcount
;
2438 bfd_map_over_sections (abfd
, disassemble_section
, & disasm_info
);
2440 if (aux
.dynrelbuf
!= NULL
)
2441 free (aux
.dynrelbuf
);
2446 load_specific_debug_section (enum dwarf_section_display_enum debug
,
2447 asection
*sec
, void *file
)
2449 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2450 bfd
*abfd
= (bfd
*) file
;
2453 /* If it is already loaded, do nothing. */
2454 if (section
->start
!= NULL
)
2457 section
->reloc_info
= NULL
;
2458 section
->num_relocs
= 0;
2459 section
->address
= bfd_get_section_vma (abfd
, sec
);
2460 section
->size
= bfd_get_section_size (sec
);
2461 section
->start
= NULL
;
2462 section
->user_data
= sec
;
2463 ret
= bfd_get_full_section_contents (abfd
, sec
, §ion
->start
);
2467 free_debug_section (debug
);
2468 printf (_("\nCan't get contents for section '%s'.\n"),
2473 if (is_relocatable
&& debug_displays
[debug
].relocate
)
2475 bfd_cache_section_contents (sec
, section
->start
);
2477 ret
= bfd_simple_get_relocated_section_contents (abfd
,
2484 free_debug_section (debug
);
2485 printf (_("\nCan't get contents for section '%s'.\n"),
2492 reloc_size
= bfd_get_reloc_upper_bound (abfd
, sec
);
2495 unsigned long reloc_count
;
2498 relocs
= (arelent
**) xmalloc (reloc_size
);
2500 reloc_count
= bfd_canonicalize_reloc (abfd
, sec
, relocs
, NULL
);
2501 if (reloc_count
== 0)
2505 section
->reloc_info
= relocs
;
2506 section
->num_relocs
= reloc_count
;
2515 reloc_at (struct dwarf_section
* dsec
, dwarf_vma offset
)
2520 if (dsec
== NULL
|| dsec
->reloc_info
== NULL
)
2523 relocs
= (arelent
**) dsec
->reloc_info
;
2525 for (; (rp
= * relocs
) != NULL
; ++ relocs
)
2526 if (rp
->address
== offset
)
2533 load_debug_section (enum dwarf_section_display_enum debug
, void *file
)
2535 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2536 bfd
*abfd
= (bfd
*) file
;
2539 /* If it is already loaded, do nothing. */
2540 if (section
->start
!= NULL
)
2543 /* Locate the debug section. */
2544 sec
= bfd_get_section_by_name (abfd
, section
->uncompressed_name
);
2546 section
->name
= section
->uncompressed_name
;
2549 sec
= bfd_get_section_by_name (abfd
, section
->compressed_name
);
2551 section
->name
= section
->compressed_name
;
2556 return load_specific_debug_section (debug
, sec
, file
);
2560 free_debug_section (enum dwarf_section_display_enum debug
)
2562 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2564 if (section
->start
== NULL
)
2567 /* PR 17512: file: 0f67f69d. */
2568 if (section
->user_data
!= NULL
)
2570 asection
* sec
= (asection
*) section
->user_data
;
2572 /* If we are freeing contents that are also pointed to by the BFD
2573 library's section structure then make sure to update those pointers
2574 too. Otherwise, the next time we try to load data for this section
2575 we can end up using a stale pointer. */
2576 if (section
->start
== sec
->contents
)
2578 sec
->contents
= NULL
;
2579 sec
->flags
&= ~ SEC_IN_MEMORY
;
2580 sec
->compress_status
= COMPRESS_SECTION_NONE
;
2584 free ((char *) section
->start
);
2585 section
->start
= NULL
;
2586 section
->address
= 0;
2591 dump_dwarf_section (bfd
*abfd
, asection
*section
,
2592 void *arg ATTRIBUTE_UNUSED
)
2594 const char *name
= bfd_get_section_name (abfd
, section
);
2598 if (CONST_STRNEQ (name
, ".gnu.linkonce.wi."))
2599 match
= ".debug_info";
2603 for (i
= 0; i
< max
; i
++)
2604 if ((strcmp (debug_displays
[i
].section
.uncompressed_name
, match
) == 0
2605 || strcmp (debug_displays
[i
].section
.compressed_name
, match
) == 0)
2606 && debug_displays
[i
].enabled
!= NULL
2607 && *debug_displays
[i
].enabled
)
2609 struct dwarf_section
*sec
= &debug_displays
[i
].section
;
2611 if (strcmp (sec
->uncompressed_name
, match
) == 0)
2612 sec
->name
= sec
->uncompressed_name
;
2614 sec
->name
= sec
->compressed_name
;
2615 if (load_specific_debug_section ((enum dwarf_section_display_enum
) i
,
2618 debug_displays
[i
].display (sec
, abfd
);
2620 if (i
!= info
&& i
!= abbrev
)
2621 free_debug_section ((enum dwarf_section_display_enum
) i
);
2627 /* Dump the dwarf debugging information. */
2630 dump_dwarf (bfd
*abfd
)
2632 is_relocatable
= (abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0;
2634 eh_addr_size
= bfd_arch_bits_per_address (abfd
) / 8;
2636 if (bfd_big_endian (abfd
))
2637 byte_get
= byte_get_big_endian
;
2638 else if (bfd_little_endian (abfd
))
2639 byte_get
= byte_get_little_endian
;
2641 /* PR 17512: file: objdump-s-endless-loop.tekhex. */
2643 warn (_("File %s does not contain any dwarf debug information\n"),
2644 bfd_get_filename (abfd
));
2648 switch (bfd_get_arch (abfd
))
2651 switch (bfd_get_mach (abfd
))
2653 case bfd_mach_x86_64
:
2654 case bfd_mach_x86_64_intel_syntax
:
2655 case bfd_mach_x86_64_nacl
:
2656 case bfd_mach_x64_32
:
2657 case bfd_mach_x64_32_intel_syntax
:
2658 case bfd_mach_x64_32_nacl
:
2659 init_dwarf_regnames_x86_64 ();
2663 init_dwarf_regnames_i386 ();
2668 case bfd_arch_iamcu
:
2669 init_dwarf_regnames_iamcu ();
2672 case bfd_arch_aarch64
:
2673 init_dwarf_regnames_aarch64();
2677 init_dwarf_regnames_s390 ();
2684 bfd_map_over_sections (abfd
, dump_dwarf_section
, NULL
);
2686 free_debug_memory ();
2689 /* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
2690 it. Return NULL on failure. */
2693 read_section_stabs (bfd
*abfd
, const char *sect_name
, bfd_size_type
*size_ptr
)
2699 stabsect
= bfd_get_section_by_name (abfd
, sect_name
);
2700 if (stabsect
== NULL
)
2702 printf (_("No %s section present\n\n"), sect_name
);
2706 size
= bfd_section_size (abfd
, stabsect
);
2707 contents
= (char *) xmalloc (size
);
2709 if (! bfd_get_section_contents (abfd
, stabsect
, contents
, 0, size
))
2711 non_fatal (_("reading %s section of %s failed: %s"),
2712 sect_name
, bfd_get_filename (abfd
),
2713 bfd_errmsg (bfd_get_error ()));
2724 /* Stabs entries use a 12 byte format:
2725 4 byte string table index
2727 1 byte stab other field
2728 2 byte stab desc field
2730 FIXME: This will have to change for a 64 bit object format. */
2732 #define STRDXOFF (0)
2734 #define OTHEROFF (5)
2737 #define STABSIZE (12)
2739 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2740 using string table section STRSECT_NAME (in `strtab'). */
2743 print_section_stabs (bfd
*abfd
,
2744 const char *stabsect_name
,
2745 unsigned *string_offset_ptr
)
2748 unsigned file_string_table_offset
= 0;
2749 unsigned next_file_string_table_offset
= *string_offset_ptr
;
2750 bfd_byte
*stabp
, *stabs_end
;
2753 stabs_end
= stabp
+ stab_size
;
2755 printf (_("Contents of %s section:\n\n"), stabsect_name
);
2756 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2758 /* Loop through all symbols and print them.
2760 We start the index at -1 because there is a dummy symbol on
2761 the front of stabs-in-{coff,elf} sections that supplies sizes. */
2762 for (i
= -1; stabp
<= stabs_end
- STABSIZE
; stabp
+= STABSIZE
, i
++)
2766 unsigned char type
, other
;
2767 unsigned short desc
;
2770 strx
= bfd_h_get_32 (abfd
, stabp
+ STRDXOFF
);
2771 type
= bfd_h_get_8 (abfd
, stabp
+ TYPEOFF
);
2772 other
= bfd_h_get_8 (abfd
, stabp
+ OTHEROFF
);
2773 desc
= bfd_h_get_16 (abfd
, stabp
+ DESCOFF
);
2774 value
= bfd_h_get_32 (abfd
, stabp
+ VALOFF
);
2776 printf ("\n%-6d ", i
);
2777 /* Either print the stab name, or, if unnamed, print its number
2778 again (makes consistent formatting for tools like awk). */
2779 name
= bfd_get_stab_name (type
);
2781 printf ("%-6s", name
);
2782 else if (type
== N_UNDF
)
2785 printf ("%-6d", type
);
2786 printf (" %-6d %-6d ", other
, desc
);
2787 bfd_printf_vma (abfd
, value
);
2788 printf (" %-6lu", strx
);
2790 /* Symbols with type == 0 (N_UNDF) specify the length of the
2791 string table associated with this file. We use that info
2792 to know how to relocate the *next* file's string table indices. */
2795 file_string_table_offset
= next_file_string_table_offset
;
2796 next_file_string_table_offset
+= value
;
2800 bfd_size_type amt
= strx
+ file_string_table_offset
;
2802 /* Using the (possibly updated) string table offset, print the
2803 string (if any) associated with this symbol. */
2804 if (amt
< stabstr_size
)
2805 /* PR 17512: file: 079-79389-0.001:0.1. */
2806 printf (" %.*s", (int)(stabstr_size
- amt
), strtab
+ amt
);
2812 *string_offset_ptr
= next_file_string_table_offset
;
2817 const char * section_name
;
2818 const char * string_section_name
;
2819 unsigned string_offset
;
2824 find_stabs_section (bfd
*abfd
, asection
*section
, void *names
)
2827 stab_section_names
* sought
= (stab_section_names
*) names
;
2829 /* Check for section names for which stabsect_name is a prefix, to
2830 handle .stab.N, etc. */
2831 len
= strlen (sought
->section_name
);
2833 /* If the prefix matches, and the files section name ends with a
2834 nul or a digit, then we match. I.e., we want either an exact
2835 match or a section followed by a number. */
2836 if (strncmp (sought
->section_name
, section
->name
, len
) == 0
2837 && (section
->name
[len
] == 0
2838 || (section
->name
[len
] == '.' && ISDIGIT (section
->name
[len
+ 1]))))
2841 strtab
= read_section_stabs (abfd
, sought
->string_section_name
,
2846 stabs
= (bfd_byte
*) read_section_stabs (abfd
, section
->name
,
2849 print_section_stabs (abfd
, section
->name
, &sought
->string_offset
);
2855 dump_stabs_section (bfd
*abfd
, char *stabsect_name
, char *strsect_name
)
2857 stab_section_names s
;
2859 s
.section_name
= stabsect_name
;
2860 s
.string_section_name
= strsect_name
;
2861 s
.string_offset
= 0;
2863 bfd_map_over_sections (abfd
, find_stabs_section
, & s
);
2869 /* Dump the any sections containing stabs debugging information. */
2872 dump_stabs (bfd
*abfd
)
2874 dump_stabs_section (abfd
, ".stab", ".stabstr");
2875 dump_stabs_section (abfd
, ".stab.excl", ".stab.exclstr");
2876 dump_stabs_section (abfd
, ".stab.index", ".stab.indexstr");
2879 dump_stabs_section (abfd
, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
2881 dump_stabs_section (abfd
, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2885 dump_bfd_header (bfd
*abfd
)
2889 printf (_("architecture: %s, "),
2890 bfd_printable_arch_mach (bfd_get_arch (abfd
),
2891 bfd_get_mach (abfd
)));
2892 printf (_("flags 0x%08x:\n"), abfd
->flags
& ~BFD_FLAGS_FOR_BFD_USE_MASK
);
2894 #define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
2895 PF (HAS_RELOC
, "HAS_RELOC");
2896 PF (EXEC_P
, "EXEC_P");
2897 PF (HAS_LINENO
, "HAS_LINENO");
2898 PF (HAS_DEBUG
, "HAS_DEBUG");
2899 PF (HAS_SYMS
, "HAS_SYMS");
2900 PF (HAS_LOCALS
, "HAS_LOCALS");
2901 PF (DYNAMIC
, "DYNAMIC");
2902 PF (WP_TEXT
, "WP_TEXT");
2903 PF (D_PAGED
, "D_PAGED");
2904 PF (BFD_IS_RELAXABLE
, "BFD_IS_RELAXABLE");
2905 printf (_("\nstart address 0x"));
2906 bfd_printf_vma (abfd
, abfd
->start_address
);
2912 dump_bfd_private_header (bfd
*abfd
)
2914 bfd_print_private_bfd_data (abfd
, stdout
);
2918 dump_target_specific (bfd
*abfd
)
2920 const struct objdump_private_desc
* const *desc
;
2921 struct objdump_private_option
*opt
;
2924 /* Find the desc. */
2925 for (desc
= objdump_private_vectors
; *desc
!= NULL
; desc
++)
2926 if ((*desc
)->filter (abfd
))
2931 non_fatal (_("option -P/--private not supported by this file"));
2935 /* Clear all options. */
2936 for (opt
= (*desc
)->options
; opt
->name
; opt
++)
2937 opt
->selected
= FALSE
;
2939 /* Decode options. */
2940 b
= dump_private_options
;
2943 e
= strchr (b
, ',');
2948 for (opt
= (*desc
)->options
; opt
->name
; opt
++)
2949 if (strcmp (opt
->name
, b
) == 0)
2951 opt
->selected
= TRUE
;
2954 if (opt
->name
== NULL
)
2955 non_fatal (_("target specific dump '%s' not supported"), b
);
2966 (*desc
)->dump (abfd
);
2969 /* Display a section in hexadecimal format with associated characters.
2970 Each line prefixed by the zero padded address. */
2973 dump_section (bfd
*abfd
, asection
*section
, void *dummy ATTRIBUTE_UNUSED
)
2976 bfd_size_type datasize
;
2977 bfd_vma addr_offset
;
2978 bfd_vma start_offset
;
2979 bfd_vma stop_offset
;
2980 unsigned int opb
= bfd_octets_per_byte (abfd
);
2981 /* Bytes per line. */
2982 const int onaline
= 16;
2987 if ((section
->flags
& SEC_HAS_CONTENTS
) == 0)
2990 if (! process_section_p (section
))
2993 if ((datasize
= bfd_section_size (abfd
, section
)) == 0)
2996 /* Compute the address range to display. */
2997 if (start_address
== (bfd_vma
) -1
2998 || start_address
< section
->vma
)
3001 start_offset
= start_address
- section
->vma
;
3003 if (stop_address
== (bfd_vma
) -1)
3004 stop_offset
= datasize
/ opb
;
3007 if (stop_address
< section
->vma
)
3010 stop_offset
= stop_address
- section
->vma
;
3012 if (stop_offset
> datasize
/ opb
)
3013 stop_offset
= datasize
/ opb
;
3016 if (start_offset
>= stop_offset
)
3019 printf (_("Contents of section %s:"), section
->name
);
3020 if (display_file_offsets
)
3021 printf (_(" (Starting at file offset: 0x%lx)"),
3022 (unsigned long) (section
->filepos
+ start_offset
));
3025 if (!bfd_get_full_section_contents (abfd
, section
, &data
))
3027 non_fatal (_("Reading section %s failed because: %s"),
3028 section
->name
, bfd_errmsg (bfd_get_error ()));
3034 bfd_sprintf_vma (abfd
, buf
, start_offset
+ section
->vma
);
3035 if (strlen (buf
) >= sizeof (buf
))
3039 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
3041 count
= strlen (buf
) - count
;
3045 bfd_sprintf_vma (abfd
, buf
, stop_offset
+ section
->vma
- 1);
3046 if (strlen (buf
) >= sizeof (buf
))
3050 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
3052 count
= strlen (buf
) - count
;
3056 for (addr_offset
= start_offset
;
3057 addr_offset
< stop_offset
; addr_offset
+= onaline
/ opb
)
3061 bfd_sprintf_vma (abfd
, buf
, (addr_offset
+ section
->vma
));
3062 count
= strlen (buf
);
3063 if ((size_t) count
>= sizeof (buf
))
3067 while (count
< width
)
3072 fputs (buf
+ count
- width
, stdout
);
3075 for (j
= addr_offset
* opb
;
3076 j
< addr_offset
* opb
+ onaline
; j
++)
3078 if (j
< stop_offset
* opb
)
3079 printf ("%02x", (unsigned) (data
[j
]));
3087 for (j
= addr_offset
* opb
;
3088 j
< addr_offset
* opb
+ onaline
; j
++)
3090 if (j
>= stop_offset
* opb
)
3093 printf ("%c", ISPRINT (data
[j
]) ? data
[j
] : '.');
3100 /* Actually display the various requested regions. */
3103 dump_data (bfd
*abfd
)
3105 bfd_map_over_sections (abfd
, dump_section
, NULL
);
3108 /* Should perhaps share code and display with nm? */
3111 dump_symbols (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean dynamic
)
3120 max_count
= dynsymcount
;
3121 printf ("DYNAMIC SYMBOL TABLE:\n");
3126 max_count
= symcount
;
3127 printf ("SYMBOL TABLE:\n");
3131 printf (_("no symbols\n"));
3133 for (count
= 0; count
< max_count
; count
++)
3137 if (*current
== NULL
)
3138 printf (_("no information for symbol number %ld\n"), count
);
3140 else if ((cur_bfd
= bfd_asymbol_bfd (*current
)) == NULL
)
3141 printf (_("could not determine the type of symbol number %ld\n"),
3144 else if (process_section_p ((* current
)->section
)
3145 && (dump_special_syms
3146 || !bfd_is_target_special_symbol (cur_bfd
, *current
)))
3148 const char *name
= (*current
)->name
;
3150 if (do_demangle
&& name
!= NULL
&& *name
!= '\0')
3154 /* If we want to demangle the name, we demangle it
3155 here, and temporarily clobber it while calling
3156 bfd_print_symbol. FIXME: This is a gross hack. */
3157 alloc
= bfd_demangle (cur_bfd
, name
, DMGL_ANSI
| DMGL_PARAMS
);
3159 (*current
)->name
= alloc
;
3160 bfd_print_symbol (cur_bfd
, stdout
, *current
,
3161 bfd_print_symbol_all
);
3164 (*current
)->name
= name
;
3169 bfd_print_symbol (cur_bfd
, stdout
, *current
,
3170 bfd_print_symbol_all
);
3180 dump_reloc_set (bfd
*abfd
, asection
*sec
, arelent
**relpp
, long relcount
)
3183 char *last_filename
, *last_functionname
;
3184 unsigned int last_line
;
3185 unsigned int last_discriminator
;
3187 /* Get column headers lined up reasonably. */
3195 bfd_sprintf_vma (abfd
, buf
, (bfd_vma
) -1);
3196 width
= strlen (buf
) - 7;
3198 printf ("OFFSET %*s TYPE %*s VALUE \n", width
, "", 12, "");
3201 last_filename
= NULL
;
3202 last_functionname
= NULL
;
3204 last_discriminator
= 0;
3206 for (p
= relpp
; relcount
&& *p
!= NULL
; p
++, relcount
--)
3209 const char *filename
, *functionname
;
3210 unsigned int linenumber
;
3211 unsigned int discriminator
;
3212 const char *sym_name
;
3213 const char *section_name
;
3214 bfd_vma addend2
= 0;
3216 if (start_address
!= (bfd_vma
) -1
3217 && q
->address
< start_address
)
3219 if (stop_address
!= (bfd_vma
) -1
3220 && q
->address
> stop_address
)
3223 if (with_line_numbers
3225 && bfd_find_nearest_line_discriminator (abfd
, sec
, syms
, q
->address
,
3226 &filename
, &functionname
,
3227 &linenumber
, &discriminator
))
3229 if (functionname
!= NULL
3230 && (last_functionname
== NULL
3231 || strcmp (functionname
, last_functionname
) != 0))
3233 printf ("%s():\n", functionname
);
3234 if (last_functionname
!= NULL
)
3235 free (last_functionname
);
3236 last_functionname
= xstrdup (functionname
);
3240 && (linenumber
!= last_line
3241 || (filename
!= NULL
3242 && last_filename
!= NULL
3243 && filename_cmp (filename
, last_filename
) != 0)
3244 || (discriminator
!= last_discriminator
)))
3246 if (discriminator
> 0)
3247 printf ("%s:%u\n", filename
== NULL
? "???" : filename
, linenumber
);
3249 printf ("%s:%u (discriminator %u)\n", filename
== NULL
? "???" : filename
,
3250 linenumber
, discriminator
);
3251 last_line
= linenumber
;
3252 last_discriminator
= discriminator
;
3253 if (last_filename
!= NULL
)
3254 free (last_filename
);
3255 if (filename
== NULL
)
3256 last_filename
= NULL
;
3258 last_filename
= xstrdup (filename
);
3262 if (q
->sym_ptr_ptr
&& *q
->sym_ptr_ptr
)
3264 sym_name
= (*(q
->sym_ptr_ptr
))->name
;
3265 section_name
= (*(q
->sym_ptr_ptr
))->section
->name
;
3270 section_name
= NULL
;
3273 bfd_printf_vma (abfd
, q
->address
);
3274 if (q
->howto
== NULL
)
3275 printf (" *unknown* ");
3276 else if (q
->howto
->name
)
3278 const char *name
= q
->howto
->name
;
3280 /* R_SPARC_OLO10 relocations contain two addends.
3281 But because 'arelent' lacks enough storage to
3282 store them both, the 64-bit ELF Sparc backend
3283 records this as two relocations. One R_SPARC_LO10
3284 and one R_SPARC_13, both pointing to the same
3285 address. This is merely so that we have some
3286 place to store both addend fields.
3288 Undo this transformation, otherwise the output
3289 will be confusing. */
3290 if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
3291 && elf_tdata(abfd
)->elf_header
->e_machine
== EM_SPARCV9
3293 && !strcmp (q
->howto
->name
, "R_SPARC_LO10"))
3295 arelent
*q2
= *(p
+ 1);
3298 && q
->address
== q2
->address
3299 && !strcmp (q2
->howto
->name
, "R_SPARC_13"))
3301 name
= "R_SPARC_OLO10";
3302 addend2
= q2
->addend
;
3306 printf (" %-16s ", name
);
3309 printf (" %-16d ", q
->howto
->type
);
3313 objdump_print_symname (abfd
, NULL
, *q
->sym_ptr_ptr
);
3317 if (section_name
== NULL
)
3318 section_name
= "*unknown*";
3319 printf ("[%s]", section_name
);
3324 bfd_signed_vma addend
= q
->addend
;
3332 bfd_printf_vma (abfd
, addend
);
3337 bfd_printf_vma (abfd
, addend2
);
3343 if (last_filename
!= NULL
)
3344 free (last_filename
);
3345 if (last_functionname
!= NULL
)
3346 free (last_functionname
);
3350 dump_relocs_in_section (bfd
*abfd
,
3352 void *dummy ATTRIBUTE_UNUSED
)
3358 if ( bfd_is_abs_section (section
)
3359 || bfd_is_und_section (section
)
3360 || bfd_is_com_section (section
)
3361 || (! process_section_p (section
))
3362 || ((section
->flags
& SEC_RELOC
) == 0))
3365 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
3367 bfd_fatal (bfd_get_filename (abfd
));
3369 printf ("RELOCATION RECORDS FOR [%s]:", section
->name
);
3373 printf (" (none)\n\n");
3377 relpp
= (arelent
**) xmalloc (relsize
);
3378 relcount
= bfd_canonicalize_reloc (abfd
, section
, relpp
, syms
);
3383 non_fatal (_("failed to read relocs in: %s"), bfd_get_filename (abfd
));
3384 bfd_fatal (_("error message was"));
3386 else if (relcount
== 0)
3387 printf (" (none)\n\n");
3391 dump_reloc_set (abfd
, section
, relpp
, relcount
);
3398 dump_relocs (bfd
*abfd
)
3400 bfd_map_over_sections (abfd
, dump_relocs_in_section
, NULL
);
3404 dump_dynamic_relocs (bfd
*abfd
)
3410 relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
3412 bfd_fatal (bfd_get_filename (abfd
));
3414 printf ("DYNAMIC RELOCATION RECORDS");
3417 printf (" (none)\n\n");
3420 relpp
= (arelent
**) xmalloc (relsize
);
3421 relcount
= bfd_canonicalize_dynamic_reloc (abfd
, relpp
, dynsyms
);
3424 bfd_fatal (bfd_get_filename (abfd
));
3425 else if (relcount
== 0)
3426 printf (" (none)\n\n");
3430 dump_reloc_set (abfd
, NULL
, relpp
, relcount
);
3437 /* Creates a table of paths, to search for source files. */
3440 add_include_path (const char *path
)
3444 include_path_count
++;
3445 include_paths
= (const char **)
3446 xrealloc (include_paths
, include_path_count
* sizeof (*include_paths
));
3447 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3448 if (path
[1] == ':' && path
[2] == 0)
3449 path
= concat (path
, ".", (const char *) 0);
3451 include_paths
[include_path_count
- 1] = path
;
3455 adjust_addresses (bfd
*abfd ATTRIBUTE_UNUSED
,
3459 if ((section
->flags
& SEC_DEBUGGING
) == 0)
3461 bfd_boolean
*has_reloc_p
= (bfd_boolean
*) arg
;
3462 section
->vma
+= adjust_section_vma
;
3464 section
->lma
+= adjust_section_vma
;
3468 /* Dump selected contents of ABFD. */
3471 dump_bfd (bfd
*abfd
)
3473 /* If we are adjusting section VMA's, change them all now. Changing
3474 the BFD information is a hack. However, we must do it, or
3475 bfd_find_nearest_line will not do the right thing. */
3476 if (adjust_section_vma
!= 0)
3478 bfd_boolean has_reloc
= (abfd
->flags
& HAS_RELOC
);
3479 bfd_map_over_sections (abfd
, adjust_addresses
, &has_reloc
);
3482 if (! dump_debugging_tags
&& ! suppress_bfd_header
)
3483 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd
),
3486 print_arelt_descr (stdout
, abfd
, TRUE
);
3487 if (dump_file_header
)
3488 dump_bfd_header (abfd
);
3489 if (dump_private_headers
)
3490 dump_bfd_private_header (abfd
);
3491 if (dump_private_options
!= NULL
)
3492 dump_target_specific (abfd
);
3493 if (! dump_debugging_tags
&& ! suppress_bfd_header
)
3500 || dump_dwarf_section_info
)
3501 syms
= slurp_symtab (abfd
);
3503 if (dump_section_headers
)
3504 dump_headers (abfd
);
3506 if (dump_dynamic_symtab
|| dump_dynamic_reloc_info
3507 || (disassemble
&& bfd_get_dynamic_symtab_upper_bound (abfd
) > 0))
3508 dynsyms
= slurp_dynamic_symtab (abfd
);
3511 synthcount
= bfd_get_synthetic_symtab (abfd
, symcount
, syms
,
3512 dynsymcount
, dynsyms
, &synthsyms
);
3518 dump_symbols (abfd
, FALSE
);
3519 if (dump_dynamic_symtab
)
3520 dump_symbols (abfd
, TRUE
);
3521 if (dump_dwarf_section_info
)
3523 if (dump_stab_section_info
)
3525 if (dump_reloc_info
&& ! disassemble
)
3527 if (dump_dynamic_reloc_info
&& ! disassemble
)
3528 dump_dynamic_relocs (abfd
);
3529 if (dump_section_contents
)
3532 disassemble_data (abfd
);
3538 dhandle
= read_debugging_info (abfd
, syms
, symcount
, TRUE
);
3539 if (dhandle
!= NULL
)
3541 if (!print_debugging_info (stdout
, dhandle
, abfd
, syms
,
3543 dump_debugging_tags
? TRUE
: FALSE
))
3545 non_fatal (_("%s: printing debugging information failed"),
3546 bfd_get_filename (abfd
));
3550 /* PR 6483: If there was no STABS or IEEE debug
3551 info in the file, try DWARF instead. */
3552 else if (! dump_dwarf_section_info
)
3554 dwarf_select_sections_all ();
3583 display_object_bfd (bfd
*abfd
)
3587 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
3593 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
3595 nonfatal (bfd_get_filename (abfd
));
3596 list_matching_formats (matching
);
3601 if (bfd_get_error () != bfd_error_file_not_recognized
)
3603 nonfatal (bfd_get_filename (abfd
));
3607 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
3613 nonfatal (bfd_get_filename (abfd
));
3615 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
3617 list_matching_formats (matching
);
3623 display_any_bfd (bfd
*file
, int level
)
3625 /* Decompress sections unless dumping the section contents. */
3626 if (!dump_section_contents
)
3627 file
->flags
|= BFD_DECOMPRESS
;
3629 /* If the file is an archive, process all of its elements. */
3630 if (bfd_check_format (file
, bfd_archive
))
3633 bfd
*last_arfile
= NULL
;
3636 printf (_("In archive %s:\n"), bfd_get_filename (file
));
3637 else if (level
> 100)
3639 /* Prevent corrupted files from spinning us into an
3640 infinite loop. 100 is an arbitrary heuristic. */
3641 fatal (_("Archive nesting is too deep"));
3645 printf (_("In nested archive %s:\n"), bfd_get_filename (file
));
3649 bfd_set_error (bfd_error_no_error
);
3651 arfile
= bfd_openr_next_archived_file (file
, arfile
);
3654 if (bfd_get_error () != bfd_error_no_more_archived_files
)
3655 nonfatal (bfd_get_filename (file
));
3659 display_any_bfd (arfile
, level
+ 1);
3661 if (last_arfile
!= NULL
)
3663 bfd_close (last_arfile
);
3664 /* PR 17512: file: ac585d01. */
3665 if (arfile
== last_arfile
)
3671 last_arfile
= arfile
;
3674 if (last_arfile
!= NULL
)
3675 bfd_close (last_arfile
);
3678 display_object_bfd (file
);
3682 display_file (char *filename
, char *target
, bfd_boolean last_file
)
3686 if (get_file_size (filename
) < 1)
3692 file
= bfd_openr (filename
, target
);
3695 nonfatal (filename
);
3699 display_any_bfd (file
, 0);
3701 /* This is an optimization to improve the speed of objdump, especially when
3702 dumping a file with lots of associated debug informatiom. Calling
3703 bfd_close on such a file can take a non-trivial amount of time as there
3704 are lots of lists to walk and buffers to free. This is only really
3705 necessary however if we are about to load another file and we need the
3706 memory back. Otherwise, if we are about to exit, then we can save (a lot
3707 of) time by only doing a quick close, and allowing the OS to reclaim the
3712 bfd_close_all_done (file
);
3716 main (int argc
, char **argv
)
3719 char *target
= default_target
;
3720 bfd_boolean seenflag
= FALSE
;
3722 #if defined (HAVE_SETLOCALE)
3723 #if defined (HAVE_LC_MESSAGES)
3724 setlocale (LC_MESSAGES
, "");
3726 setlocale (LC_CTYPE
, "");
3729 bindtextdomain (PACKAGE
, LOCALEDIR
);
3730 textdomain (PACKAGE
);
3732 program_name
= *argv
;
3733 xmalloc_set_program_name (program_name
);
3734 bfd_set_error_program_name (program_name
);
3736 START_PROGRESS (program_name
, 0);
3738 expandargv (&argc
, &argv
);
3741 set_default_bfd_target ();
3743 while ((c
= getopt_long (argc
, argv
,
3744 "pP:ib:m:M:VvCdDlfFaHhrRtTxsSI:j:wE:zgeGW::",
3745 long_options
, (int *) 0))
3751 break; /* We've been given a long option. */
3758 if (disassembler_options
)
3759 /* Ignore potential memory leak for now. */
3760 options
= concat (disassembler_options
, ",",
3761 optarg
, (const char *) NULL
);
3764 disassembler_options
= remove_whitespace_and_extra_commas (options
);
3771 display_file_offsets
= TRUE
;
3774 with_line_numbers
= TRUE
;
3783 enum demangling_styles style
;
3785 style
= cplus_demangle_name_to_style (optarg
);
3786 if (style
== unknown_demangling
)
3787 fatal (_("unknown demangling style `%s'"),
3790 cplus_demangle_set_style (style
);
3794 do_wide
= wide_output
= TRUE
;
3796 case OPTION_ADJUST_VMA
:
3797 adjust_section_vma
= parse_vma (optarg
, "--adjust-vma");
3799 case OPTION_START_ADDRESS
:
3800 start_address
= parse_vma (optarg
, "--start-address");
3801 if ((stop_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
3802 fatal (_("error: the start address should be before the end address"));
3804 case OPTION_STOP_ADDRESS
:
3805 stop_address
= parse_vma (optarg
, "--stop-address");
3806 if ((start_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
3807 fatal (_("error: the stop address should be after the start address"));
3811 prefix_length
= strlen (prefix
);
3812 /* Remove an unnecessary trailing '/' */
3813 while (IS_DIR_SEPARATOR (prefix
[prefix_length
- 1]))
3816 case OPTION_PREFIX_STRIP
:
3817 prefix_strip
= atoi (optarg
);
3818 if (prefix_strip
< 0)
3819 fatal (_("error: prefix strip must be non-negative"));
3821 case OPTION_INSN_WIDTH
:
3822 insn_width
= strtoul (optarg
, NULL
, 0);
3823 if (insn_width
<= 0)
3824 fatal (_("error: instruction width must be positive"));
3826 case OPTION_INLINES
:
3827 unwind_inlines
= TRUE
;
3830 if (strcmp (optarg
, "B") == 0)
3831 endian
= BFD_ENDIAN_BIG
;
3832 else if (strcmp (optarg
, "L") == 0)
3833 endian
= BFD_ENDIAN_LITTLE
;
3836 nonfatal (_("unrecognized -E option"));
3841 if (strncmp (optarg
, "big", strlen (optarg
)) == 0)
3842 endian
= BFD_ENDIAN_BIG
;
3843 else if (strncmp (optarg
, "little", strlen (optarg
)) == 0)
3844 endian
= BFD_ENDIAN_LITTLE
;
3847 non_fatal (_("unrecognized --endian type `%s'"), optarg
);
3854 dump_file_header
= TRUE
;
3858 formats_info
= TRUE
;
3862 add_include_path (optarg
);
3865 dump_private_headers
= TRUE
;
3869 dump_private_options
= optarg
;
3873 dump_private_headers
= TRUE
;
3875 dump_reloc_info
= TRUE
;
3876 dump_file_header
= TRUE
;
3877 dump_ar_hdrs
= TRUE
;
3878 dump_section_headers
= TRUE
;
3886 dump_dynamic_symtab
= TRUE
;
3894 disassemble_zeroes
= TRUE
;
3898 disassemble_all
= TRUE
;
3903 with_source_code
= TRUE
;
3912 dump_debugging_tags
= 1;
3917 dump_dwarf_section_info
= TRUE
;
3920 dwarf_select_sections_by_letters (optarg
);
3922 dwarf_select_sections_all ();
3925 dump_dwarf_section_info
= TRUE
;
3928 dwarf_select_sections_by_names (optarg
);
3930 dwarf_select_sections_all ();
3932 case OPTION_DWARF_DEPTH
:
3935 dwarf_cutoff_level
= strtoul (optarg
, & cp
, 0);
3938 case OPTION_DWARF_START
:
3941 dwarf_start_die
= strtoul (optarg
, & cp
, 0);
3942 suppress_bfd_header
= 1;
3945 case OPTION_DWARF_CHECK
:
3949 dump_stab_section_info
= TRUE
;
3953 dump_section_contents
= TRUE
;
3957 dump_reloc_info
= TRUE
;
3961 dump_dynamic_reloc_info
= TRUE
;
3965 dump_ar_hdrs
= TRUE
;
3969 dump_section_headers
= TRUE
;
3974 show_version
= TRUE
;
3980 /* No need to set seenflag or to break - usage() does not return. */
3987 print_version ("objdump");
3993 exit_status
= display_info ();
3997 display_file ("a.out", target
, TRUE
);
3999 for (; optind
< argc
;)
4001 display_file (argv
[optind
], target
, optind
== argc
- 1);
4008 END_PROGRESS (program_name
);