1 /* objdump.c -- dump information about an object file.
2 Copyright (C) 1990-2019 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. */
61 #include "safe-ctype.h"
63 #include "libiberty.h"
65 #include "filenames.h"
74 /* Internal headers for the ELF .stab-dump code - sorry. */
75 #define BYTES_IN_WORD 32
76 #include "aout/aout64.h"
79 static int exit_status
= 0;
81 static char *default_target
= NULL
; /* Default at runtime. */
83 /* The following variables are set based on arguments passed on the
85 static int show_version
= 0; /* Show the version number. */
86 static int dump_section_contents
; /* -s */
87 static int dump_section_headers
; /* -h */
88 static bfd_boolean dump_file_header
; /* -f */
89 static int dump_symtab
; /* -t */
90 static int dump_dynamic_symtab
; /* -T */
91 static int dump_reloc_info
; /* -r */
92 static int dump_dynamic_reloc_info
; /* -R */
93 static int dump_ar_hdrs
; /* -a */
94 static int dump_private_headers
; /* -p */
95 static char *dump_private_options
; /* -P */
96 static int prefix_addresses
; /* --prefix-addresses */
97 static int with_line_numbers
; /* -l */
98 static bfd_boolean with_source_code
; /* -S */
99 static int show_raw_insn
; /* --show-raw-insn */
100 static int dump_dwarf_section_info
; /* --dwarf */
101 static int dump_stab_section_info
; /* --stabs */
102 static int dump_ctf_section_info
; /* --ctf */
103 static char *dump_ctf_section_name
;
104 static char *dump_ctf_parent_name
; /* --ctf-parent */
105 static int do_demangle
; /* -C, --demangle */
106 static bfd_boolean disassemble
; /* -d */
107 static bfd_boolean disassemble_all
; /* -D */
108 static int disassemble_zeroes
; /* --disassemble-zeroes */
109 static bfd_boolean formats_info
; /* -i */
110 static int wide_output
; /* -w */
111 static int insn_width
; /* --insn-width */
112 static bfd_vma start_address
= (bfd_vma
) -1; /* --start-address */
113 static bfd_vma stop_address
= (bfd_vma
) -1; /* --stop-address */
114 static int dump_debugging
; /* --debugging */
115 static int dump_debugging_tags
; /* --debugging-tags */
116 static int suppress_bfd_header
;
117 static int dump_special_syms
= 0; /* --special-syms */
118 static bfd_vma adjust_section_vma
= 0; /* --adjust-vma */
119 static int file_start_context
= 0; /* --file-start-context */
120 static bfd_boolean display_file_offsets
;/* -F */
121 static const char *prefix
; /* --prefix */
122 static int prefix_strip
; /* --prefix-strip */
123 static size_t prefix_length
;
124 static bfd_boolean unwind_inlines
; /* --inlines. */
125 static const char * disasm_sym
; /* Disassembly start symbol. */
127 static int demangle_flags
= DMGL_ANSI
| DMGL_PARAMS
;
129 /* A structure to record the sections mentioned in -j switches. */
132 const char * name
; /* The name of the section. */
133 bfd_boolean seen
; /* A flag to indicate that the section has been found in one or more input files. */
134 struct only
* next
; /* Pointer to the next structure in the list. */
136 /* Pointer to an array of 'only' structures.
137 This pointer is NULL if the -j switch has not been used. */
138 static struct only
* only_list
= NULL
;
140 /* Variables for handling include file path table. */
141 static const char **include_paths
;
142 static int include_path_count
;
144 /* Extra info to pass to the section disassembler and address printing
146 struct objdump_disasm_info
150 bfd_boolean require_sec
;
151 arelent
** dynrelbuf
;
153 disassembler_ftype disassemble_fn
;
158 /* Architecture to disassemble for, or default if NULL. */
159 static char *machine
= NULL
;
161 /* Target specific options to the disassembler. */
162 static char *disassembler_options
= NULL
;
164 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
165 static enum bfd_endian endian
= BFD_ENDIAN_UNKNOWN
;
167 /* The symbol table. */
168 static asymbol
**syms
;
170 /* Number of symbols in `syms'. */
171 static long symcount
= 0;
173 /* The sorted symbol table. */
174 static asymbol
**sorted_syms
;
176 /* Number of symbols in `sorted_syms'. */
177 static long sorted_symcount
= 0;
179 /* The dynamic symbol table. */
180 static asymbol
**dynsyms
;
182 /* The synthetic symbol table. */
183 static asymbol
*synthsyms
;
184 static long synthcount
= 0;
186 /* Number of symbols in `dynsyms'. */
187 static long dynsymcount
= 0;
189 static bfd_byte
*stabs
;
190 static bfd_size_type stab_size
;
192 static bfd_byte
*strtab
;
193 static bfd_size_type stabstr_size
;
195 static bfd_boolean is_relocatable
= FALSE
;
197 /* Handlers for -P/--private. */
198 static const struct objdump_private_desc
* const objdump_private_vectors
[] =
200 OBJDUMP_PRIVATE_VECTORS
204 static void usage (FILE *, int) ATTRIBUTE_NORETURN
;
206 usage (FILE *stream
, int status
)
208 fprintf (stream
, _("Usage: %s <option(s)> <file(s)>\n"), program_name
);
209 fprintf (stream
, _(" Display information from object <file(s)>.\n"));
210 fprintf (stream
, _(" At least one of the following switches must be given:\n"));
211 fprintf (stream
, _("\
212 -a, --archive-headers Display archive header information\n\
213 -f, --file-headers Display the contents of the overall file header\n\
214 -p, --private-headers Display object format specific file header contents\n\
215 -P, --private=OPT,OPT... Display object format specific contents\n\
216 -h, --[section-]headers Display the contents of the section headers\n\
217 -x, --all-headers Display the contents of all headers\n\
218 -d, --disassemble Display assembler contents of executable sections\n\
219 -D, --disassemble-all Display assembler contents of all sections\n\
220 --disassemble=<sym> Display assembler contents from <sym>\n\
221 -S, --source Intermix source code with disassembly\n\
222 -s, --full-contents Display the full contents of all sections requested\n\
223 -g, --debugging Display debug information in object file\n\
224 -e, --debugging-tags Display debug information using ctags style\n\
225 -G, --stabs Display (in raw form) any STABS info in the file\n\
226 -W[lLiaprmfFsoRtUuTgAckK] or\n\
227 --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
228 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
229 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
230 =addr,=cu_index,=links,=follow-links]\n\
231 Display DWARF info in the file\n\
232 --ctf=SECTION Display CTF info from SECTION\n\
233 -t, --syms Display the contents of the symbol table(s)\n\
234 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
235 -r, --reloc Display the relocation entries in the file\n\
236 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
237 @<file> Read options from <file>\n\
238 -v, --version Display this program's version number\n\
239 -i, --info List object formats and architectures supported\n\
240 -H, --help Display this information\n\
244 const struct objdump_private_desc
* const *desc
;
246 fprintf (stream
, _("\n The following switches are optional:\n"));
247 fprintf (stream
, _("\
248 -b, --target=BFDNAME Specify the target object format as BFDNAME\n\
249 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n\
250 -j, --section=NAME Only display information for section NAME\n\
251 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n\
252 -EB --endian=big Assume big endian format when disassembling\n\
253 -EL --endian=little Assume little endian format when disassembling\n\
254 --file-start-context Include context from start of file (with -S)\n\
255 -I, --include=DIR Add DIR to search list for source files\n\
256 -l, --line-numbers Include line numbers and filenames in output\n\
257 -F, --file-offsets Include file offsets when displaying information\n\
258 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
259 The STYLE, if specified, can be `auto', `gnu',\n\
260 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
262 --recurse-limit Enable a limit on recursion whilst demangling. [Default]\n\
263 --no-recurse-limit Disable a limit on recursion whilst demangling\n\
264 -w, --wide Format output for more than 80 columns\n\
265 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
266 --start-address=ADDR Only process data whose address is >= ADDR\n\
267 --stop-address=ADDR Only process data whose address is <= ADDR\n\
268 --prefix-addresses Print complete address alongside disassembly\n\
269 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
270 --insn-width=WIDTH Display WIDTH bytes on a single line for -d\n\
271 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
272 --special-syms Include special symbols in symbol dumps\n\
273 --inlines Print all inlines for source line (with -l)\n\
274 --prefix=PREFIX Add PREFIX to absolute paths for -S\n\
275 --prefix-strip=LEVEL Strip initial directory names for -S\n"));
276 fprintf (stream
, _("\
277 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
278 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
280 --dwarf-check Make additional dwarf internal consistency checks.\
282 --ctf-parent=SECTION Use SECTION as the CTF parent\n\n"));
283 list_supported_targets (program_name
, stream
);
284 list_supported_architectures (program_name
, stream
);
286 disassembler_usage (stream
);
288 if (objdump_private_vectors
[0] != NULL
)
291 _("\nOptions supported for -P/--private switch:\n"));
292 for (desc
= objdump_private_vectors
; *desc
!= NULL
; desc
++)
293 (*desc
)->help (stream
);
296 if (REPORT_BUGS_TO
[0] && status
== 0)
297 fprintf (stream
, _("Report bugs to %s.\n"), REPORT_BUGS_TO
);
301 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
305 OPTION_START_ADDRESS
,
315 OPTION_RECURSE_LIMIT
,
316 OPTION_NO_RECURSE_LIMIT
,
322 static struct option long_options
[]=
324 {"adjust-vma", required_argument
, NULL
, OPTION_ADJUST_VMA
},
325 {"all-headers", no_argument
, NULL
, 'x'},
326 {"private-headers", no_argument
, NULL
, 'p'},
327 {"private", required_argument
, NULL
, 'P'},
328 {"architecture", required_argument
, NULL
, 'm'},
329 {"archive-headers", no_argument
, NULL
, 'a'},
330 {"debugging", no_argument
, NULL
, 'g'},
331 {"debugging-tags", no_argument
, NULL
, 'e'},
332 {"demangle", optional_argument
, NULL
, 'C'},
333 {"disassemble", optional_argument
, NULL
, 'd'},
334 {"disassemble-all", no_argument
, NULL
, 'D'},
335 {"disassembler-options", required_argument
, NULL
, 'M'},
336 {"disassemble-zeroes", no_argument
, NULL
, 'z'},
337 {"dynamic-reloc", no_argument
, NULL
, 'R'},
338 {"dynamic-syms", no_argument
, NULL
, 'T'},
339 {"endian", required_argument
, NULL
, OPTION_ENDIAN
},
340 {"file-headers", no_argument
, NULL
, 'f'},
341 {"file-offsets", no_argument
, NULL
, 'F'},
342 {"file-start-context", no_argument
, &file_start_context
, 1},
343 {"full-contents", no_argument
, NULL
, 's'},
344 {"headers", no_argument
, NULL
, 'h'},
345 {"help", no_argument
, NULL
, 'H'},
346 {"info", no_argument
, NULL
, 'i'},
347 {"line-numbers", no_argument
, NULL
, 'l'},
348 {"no-show-raw-insn", no_argument
, &show_raw_insn
, -1},
349 {"prefix-addresses", no_argument
, &prefix_addresses
, 1},
350 {"recurse-limit", no_argument
, NULL
, OPTION_RECURSE_LIMIT
},
351 {"recursion-limit", no_argument
, NULL
, OPTION_RECURSE_LIMIT
},
352 {"no-recurse-limit", no_argument
, NULL
, OPTION_NO_RECURSE_LIMIT
},
353 {"no-recursion-limit", no_argument
, NULL
, OPTION_NO_RECURSE_LIMIT
},
354 {"reloc", no_argument
, NULL
, 'r'},
355 {"section", required_argument
, NULL
, 'j'},
356 {"section-headers", no_argument
, NULL
, 'h'},
357 {"show-raw-insn", no_argument
, &show_raw_insn
, 1},
358 {"source", no_argument
, NULL
, 'S'},
359 {"special-syms", no_argument
, &dump_special_syms
, 1},
360 {"include", required_argument
, NULL
, 'I'},
361 {"dwarf", optional_argument
, NULL
, OPTION_DWARF
},
362 {"ctf", required_argument
, NULL
, OPTION_CTF
},
363 {"ctf-parent", required_argument
, NULL
, OPTION_CTF_PARENT
},
364 {"stabs", no_argument
, NULL
, 'G'},
365 {"start-address", required_argument
, NULL
, OPTION_START_ADDRESS
},
366 {"stop-address", required_argument
, NULL
, OPTION_STOP_ADDRESS
},
367 {"syms", no_argument
, NULL
, 't'},
368 {"target", required_argument
, NULL
, 'b'},
369 {"version", no_argument
, NULL
, 'V'},
370 {"wide", no_argument
, NULL
, 'w'},
371 {"prefix", required_argument
, NULL
, OPTION_PREFIX
},
372 {"prefix-strip", required_argument
, NULL
, OPTION_PREFIX_STRIP
},
373 {"insn-width", required_argument
, NULL
, OPTION_INSN_WIDTH
},
374 {"dwarf-depth", required_argument
, 0, OPTION_DWARF_DEPTH
},
375 {"dwarf-start", required_argument
, 0, OPTION_DWARF_START
},
376 {"dwarf-check", no_argument
, 0, OPTION_DWARF_CHECK
},
377 {"inlines", no_argument
, 0, OPTION_INLINES
},
378 {0, no_argument
, 0, 0}
382 nonfatal (const char *msg
)
388 /* Returns a version of IN with any control characters
389 replaced by escape sequences. Uses a static buffer
393 sanitize_string (const char * in
)
395 static char * buffer
= NULL
;
396 static size_t buffer_len
= 0;
397 const char * original
= in
;
404 /* See if any conversion is necessary. In the majority
405 of cases it will not be needed. */
418 /* Copy the input, translating as needed. */
420 if (buffer_len
< (strlen (in
) * 2))
422 free ((void *) buffer
);
423 buffer_len
= strlen (in
) * 2;
424 buffer
= xmalloc (buffer_len
+ 1);
450 /* Returns TRUE if the specified section should be dumped. */
453 process_section_p (asection
* section
)
457 if (only_list
== NULL
)
460 for (only
= only_list
; only
; only
= only
->next
)
461 if (strcmp (only
->name
, section
->name
) == 0)
470 /* Add an entry to the 'only' list. */
473 add_only (char * name
)
477 /* First check to make sure that we do not
478 already have an entry for this name. */
479 for (only
= only_list
; only
; only
= only
->next
)
480 if (strcmp (only
->name
, name
) == 0)
483 only
= xmalloc (sizeof * only
);
486 only
->next
= only_list
;
490 /* Release the memory used by the 'only' list.
491 PR 11225: Issue a warning message for unseen sections.
492 Only do this if none of the sections were seen. This is mainly to support
493 tools like the GAS testsuite where an object file is dumped with a list of
494 generic section names known to be present in a range of different file
498 free_only_list (void)
500 bfd_boolean at_least_one_seen
= FALSE
;
504 if (only_list
== NULL
)
507 for (only
= only_list
; only
; only
= only
->next
)
510 at_least_one_seen
= TRUE
;
514 for (only
= only_list
; only
; only
= next
)
516 if (! at_least_one_seen
)
518 non_fatal (_("section '%s' mentioned in a -j option, "
519 "but not found in any input file"),
530 dump_section_header (bfd
*abfd
, asection
*section
, void *data
)
533 unsigned int opb
= bfd_octets_per_byte (abfd
);
534 int longest_section_name
= *((int *) data
);
536 /* Ignore linker created section. See elfNN_ia64_object_p in
538 if (section
->flags
& SEC_LINKER_CREATED
)
541 /* PR 10413: Skip sections that we are ignoring. */
542 if (! process_section_p (section
))
545 printf ("%3d %-*s %08lx ", section
->index
, longest_section_name
,
546 sanitize_string (bfd_get_section_name (abfd
, section
)),
547 (unsigned long) bfd_section_size (abfd
, section
) / opb
);
548 bfd_printf_vma (abfd
, bfd_get_section_vma (abfd
, section
));
550 bfd_printf_vma (abfd
, section
->lma
);
551 printf (" %08lx 2**%u", (unsigned long) section
->filepos
,
552 bfd_get_section_alignment (abfd
, section
));
558 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
560 PF (SEC_HAS_CONTENTS
, "CONTENTS");
561 PF (SEC_ALLOC
, "ALLOC");
562 PF (SEC_CONSTRUCTOR
, "CONSTRUCTOR");
563 PF (SEC_LOAD
, "LOAD");
564 PF (SEC_RELOC
, "RELOC");
565 PF (SEC_READONLY
, "READONLY");
566 PF (SEC_CODE
, "CODE");
567 PF (SEC_DATA
, "DATA");
569 PF (SEC_DEBUGGING
, "DEBUGGING");
570 PF (SEC_NEVER_LOAD
, "NEVER_LOAD");
571 PF (SEC_EXCLUDE
, "EXCLUDE");
572 PF (SEC_SORT_ENTRIES
, "SORT_ENTRIES");
573 if (bfd_get_arch (abfd
) == bfd_arch_tic54x
)
575 PF (SEC_TIC54X_BLOCK
, "BLOCK");
576 PF (SEC_TIC54X_CLINK
, "CLINK");
578 PF (SEC_SMALL_DATA
, "SMALL_DATA");
579 if (bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
581 PF (SEC_COFF_SHARED
, "SHARED");
582 PF (SEC_COFF_NOREAD
, "NOREAD");
584 else if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
585 PF (SEC_ELF_PURECODE
, "PURECODE");
586 PF (SEC_THREAD_LOCAL
, "THREAD_LOCAL");
587 PF (SEC_GROUP
, "GROUP");
588 if (bfd_get_arch (abfd
) == bfd_arch_mep
)
590 PF (SEC_MEP_VLIW
, "VLIW");
593 if ((section
->flags
& SEC_LINK_ONCE
) != 0)
596 struct coff_comdat_info
*comdat
;
598 switch (section
->flags
& SEC_LINK_DUPLICATES
)
602 case SEC_LINK_DUPLICATES_DISCARD
:
603 ls
= "LINK_ONCE_DISCARD";
605 case SEC_LINK_DUPLICATES_ONE_ONLY
:
606 ls
= "LINK_ONCE_ONE_ONLY";
608 case SEC_LINK_DUPLICATES_SAME_SIZE
:
609 ls
= "LINK_ONCE_SAME_SIZE";
611 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
612 ls
= "LINK_ONCE_SAME_CONTENTS";
615 printf ("%s%s", comma
, ls
);
617 comdat
= bfd_coff_get_comdat_section (abfd
, section
);
619 printf (" (COMDAT %s %ld)", comdat
->name
, comdat
->symbol
);
628 /* Called on each SECTION in ABFD, update the int variable pointed to by
629 DATA which contains the string length of the longest section name. */
632 find_longest_section_name (bfd
*abfd
, asection
*section
, void *data
)
634 int *longest_so_far
= (int *) data
;
638 /* Ignore linker created section. */
639 if (section
->flags
& SEC_LINKER_CREATED
)
642 /* Skip sections that we are ignoring. */
643 if (! process_section_p (section
))
646 name
= bfd_get_section_name (abfd
, section
);
647 len
= (int) strlen (name
);
648 if (len
> *longest_so_far
)
649 *longest_so_far
= len
;
653 dump_headers (bfd
*abfd
)
655 /* The default width of 13 is just an arbitrary choice. */
656 int max_section_name_length
= 13;
662 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
663 if (bfd_get_arch_size (abfd
) == 32)
669 printf (_("Sections:\n"));
672 bfd_map_over_sections (abfd
, find_longest_section_name
,
673 &max_section_name_length
);
675 printf (_("Idx %-*s Size %-*s%-*sFile off Algn"),
676 max_section_name_length
, "Name",
677 bfd_vma_width
, "VMA",
678 bfd_vma_width
, "LMA");
681 printf (_(" Flags"));
684 bfd_map_over_sections (abfd
, dump_section_header
,
685 &max_section_name_length
);
689 slurp_symtab (bfd
*abfd
)
694 if (!(bfd_get_file_flags (abfd
) & HAS_SYMS
))
700 storage
= bfd_get_symtab_upper_bound (abfd
);
703 non_fatal (_("failed to read symbol table from: %s"), bfd_get_filename (abfd
));
704 bfd_fatal (_("error message was"));
708 off_t filesize
= bfd_get_file_size (abfd
);
712 && filesize
< storage
713 /* The MMO file format supports its own special compression
714 technique, so its sections can be larger than the file size. */
715 && bfd_get_flavour (abfd
) != bfd_target_mmo_flavour
)
717 bfd_nonfatal_message (bfd_get_filename (abfd
), abfd
, NULL
,
718 _("error: symbol table size (%#lx) is larger than filesize (%#lx)"),
719 storage
, (long) filesize
);
725 sy
= (asymbol
**) xmalloc (storage
);
728 symcount
= bfd_canonicalize_symtab (abfd
, sy
);
730 bfd_fatal (bfd_get_filename (abfd
));
734 /* Read in the dynamic symbols. */
737 slurp_dynamic_symtab (bfd
*abfd
)
742 storage
= bfd_get_dynamic_symtab_upper_bound (abfd
);
745 if (!(bfd_get_file_flags (abfd
) & DYNAMIC
))
747 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd
));
753 bfd_fatal (bfd_get_filename (abfd
));
756 sy
= (asymbol
**) xmalloc (storage
);
758 dynsymcount
= bfd_canonicalize_dynamic_symtab (abfd
, sy
);
760 bfd_fatal (bfd_get_filename (abfd
));
764 /* Some symbol names are significant and should be kept in the
765 table of sorted symbol names, even if they are marked as
766 debugging/section symbols. */
769 is_significant_symbol_name (const char * name
)
771 return strncmp (name
, ".plt", 4) == 0 || strcmp (name
, ".got") == 0;
774 /* Filter out (in place) symbols that are useless for disassembly.
775 COUNT is the number of elements in SYMBOLS.
776 Return the number of useful symbols. */
779 remove_useless_symbols (asymbol
**symbols
, long count
)
781 asymbol
**in_ptr
= symbols
, **out_ptr
= symbols
;
785 asymbol
*sym
= *in_ptr
++;
787 if (sym
->name
== NULL
|| sym
->name
[0] == '\0')
789 if ((sym
->flags
& (BSF_DEBUGGING
| BSF_SECTION_SYM
))
790 && ! is_significant_symbol_name (sym
->name
))
792 if (bfd_is_und_section (sym
->section
)
793 || bfd_is_com_section (sym
->section
))
798 return out_ptr
- symbols
;
801 /* Sort symbols into value order. */
804 compare_symbols (const void *ap
, const void *bp
)
806 const asymbol
*a
= * (const asymbol
**) ap
;
807 const asymbol
*b
= * (const asymbol
**) bp
;
817 if (bfd_asymbol_value (a
) > bfd_asymbol_value (b
))
819 else if (bfd_asymbol_value (a
) < bfd_asymbol_value (b
))
822 if (a
->section
> b
->section
)
824 else if (a
->section
< b
->section
)
827 an
= bfd_asymbol_name (a
);
828 bn
= bfd_asymbol_name (b
);
832 /* The symbols gnu_compiled and gcc2_compiled convey no real
833 information, so put them after other symbols with the same value. */
834 af
= (strstr (an
, "gnu_compiled") != NULL
835 || strstr (an
, "gcc2_compiled") != NULL
);
836 bf
= (strstr (bn
, "gnu_compiled") != NULL
837 || strstr (bn
, "gcc2_compiled") != NULL
);
844 /* We use a heuristic for the file name, to try to sort it after
845 more useful symbols. It may not work on non Unix systems, but it
846 doesn't really matter; the only difference is precisely which
847 symbol names get printed. */
849 #define file_symbol(s, sn, snl) \
850 (((s)->flags & BSF_FILE) != 0 \
851 || ((sn)[(snl) - 2] == '.' \
852 && ((sn)[(snl) - 1] == 'o' \
853 || (sn)[(snl) - 1] == 'a')))
855 af
= file_symbol (a
, an
, anl
);
856 bf
= file_symbol (b
, bn
, bnl
);
863 /* Try to sort global symbols before local symbols before function
864 symbols before debugging symbols. */
869 if ((aflags
& BSF_DEBUGGING
) != (bflags
& BSF_DEBUGGING
))
871 if ((aflags
& BSF_DEBUGGING
) != 0)
876 if ((aflags
& BSF_FUNCTION
) != (bflags
& BSF_FUNCTION
))
878 if ((aflags
& BSF_FUNCTION
) != 0)
883 if ((aflags
& BSF_LOCAL
) != (bflags
& BSF_LOCAL
))
885 if ((aflags
& BSF_LOCAL
) != 0)
890 if ((aflags
& BSF_GLOBAL
) != (bflags
& BSF_GLOBAL
))
892 if ((aflags
& BSF_GLOBAL
) != 0)
898 if (bfd_get_flavour (bfd_asymbol_bfd (a
)) == bfd_target_elf_flavour
899 && bfd_get_flavour (bfd_asymbol_bfd (b
)) == bfd_target_elf_flavour
)
904 if ((a
->flags
& (BSF_SECTION_SYM
| BSF_SYNTHETIC
)) == 0)
905 asz
= ((elf_symbol_type
*) a
)->internal_elf_sym
.st_size
;
907 if ((b
->flags
& (BSF_SECTION_SYM
| BSF_SYNTHETIC
)) == 0)
908 bsz
= ((elf_symbol_type
*) b
)->internal_elf_sym
.st_size
;
910 return asz
> bsz
? -1 : 1;
913 /* Symbols that start with '.' might be section names, so sort them
914 after symbols that don't start with '.'. */
915 if (an
[0] == '.' && bn
[0] != '.')
917 if (an
[0] != '.' && bn
[0] == '.')
920 /* Finally, if we can't distinguish them in any other way, try to
921 get consistent results by sorting the symbols by name. */
922 return strcmp (an
, bn
);
925 /* Sort relocs into address order. */
928 compare_relocs (const void *ap
, const void *bp
)
930 const arelent
*a
= * (const arelent
**) ap
;
931 const arelent
*b
= * (const arelent
**) bp
;
933 if (a
->address
> b
->address
)
935 else if (a
->address
< b
->address
)
938 /* So that associated relocations tied to the same address show up
939 in the correct order, we don't do any further sorting. */
948 /* Print an address (VMA) to the output stream in INFO.
949 If SKIP_ZEROES is TRUE, omit leading zeroes. */
952 objdump_print_value (bfd_vma vma
, struct disassemble_info
*inf
,
953 bfd_boolean skip_zeroes
)
957 struct objdump_disasm_info
*aux
;
959 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
960 bfd_sprintf_vma (aux
->abfd
, buf
, vma
);
965 for (p
= buf
; *p
== '0'; ++p
)
970 (*inf
->fprintf_func
) (inf
->stream
, "%s", p
);
973 /* Print the name of a symbol. */
976 objdump_print_symname (bfd
*abfd
, struct disassemble_info
*inf
,
980 const char *name
, *version_string
= NULL
;
981 bfd_boolean hidden
= FALSE
;
984 name
= bfd_asymbol_name (sym
);
985 if (do_demangle
&& name
[0] != '\0')
987 /* Demangle the name. */
988 alloc
= bfd_demangle (abfd
, name
, demangle_flags
);
993 if ((sym
->flags
& (BSF_SECTION_SYM
| BSF_SYNTHETIC
)) == 0)
994 version_string
= bfd_get_symbol_version_string (abfd
, sym
, &hidden
);
996 if (bfd_is_und_section (bfd_get_section (sym
)))
999 name
= sanitize_string (name
);
1003 (*inf
->fprintf_func
) (inf
->stream
, "%s", name
);
1004 if (version_string
&& *version_string
!= '\0')
1005 (*inf
->fprintf_func
) (inf
->stream
, hidden
? "@%s" : "@@%s",
1010 printf ("%s", name
);
1011 if (version_string
&& *version_string
!= '\0')
1012 printf (hidden
? "@%s" : "@@%s", version_string
);
1019 static inline bfd_boolean
1020 sym_ok (bfd_boolean want_section
,
1021 bfd
* abfd ATTRIBUTE_UNUSED
,
1024 struct disassemble_info
* inf
)
1028 /* Note - we cannot just compare section pointers because they could
1029 be different, but the same... Ie the symbol that we are trying to
1030 find could have come from a separate debug info file. Under such
1031 circumstances the symbol will be associated with a section in the
1032 debug info file, whilst the section we want is in a normal file.
1033 So the section pointers will be different, but the section names
1034 will be the same. */
1035 if (strcmp (bfd_section_name (abfd
, sorted_syms
[place
]->section
),
1036 bfd_section_name (abfd
, sec
)) != 0)
1040 return inf
->symbol_is_valid (sorted_syms
[place
], inf
);
1043 /* Locate a symbol given a bfd and a section (from INFO->application_data),
1044 and a VMA. If INFO->application_data->require_sec is TRUE, then always
1045 require the symbol to be in the section. Returns NULL if there is no
1046 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
1047 of the symbol in sorted_syms. */
1050 find_symbol_for_address (bfd_vma vma
,
1051 struct disassemble_info
*inf
,
1054 /* @@ Would it speed things up to cache the last two symbols returned,
1055 and maybe their address ranges? For many processors, only one memory
1056 operand can be present at a time, so the 2-entry cache wouldn't be
1057 constantly churned by code doing heavy memory accesses. */
1059 /* Indices in `sorted_syms'. */
1061 long max_count
= sorted_symcount
;
1063 struct objdump_disasm_info
*aux
;
1067 bfd_boolean want_section
;
1070 if (sorted_symcount
< 1)
1073 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1076 opb
= inf
->octets_per_byte
;
1078 /* Perform a binary search looking for the closest symbol to the
1079 required value. We are searching the range (min, max_count]. */
1080 while (min
+ 1 < max_count
)
1084 thisplace
= (max_count
+ min
) / 2;
1085 sym
= sorted_syms
[thisplace
];
1087 if (bfd_asymbol_value (sym
) > vma
)
1088 max_count
= thisplace
;
1089 else if (bfd_asymbol_value (sym
) < vma
)
1098 /* The symbol we want is now in min, the low end of the range we
1099 were searching. If there are several symbols with the same
1100 value, we want the first (non-section/non-debugging) one. */
1102 while (thisplace
> 0
1103 && (bfd_asymbol_value (sorted_syms
[thisplace
])
1104 == bfd_asymbol_value (sorted_syms
[thisplace
- 1]))
1105 && ((sorted_syms
[thisplace
- 1]->flags
1106 & (BSF_SECTION_SYM
| BSF_DEBUGGING
)) == 0)
1110 /* Prefer a symbol in the current section if we have multple symbols
1111 with the same value, as can occur with overlays or zero size
1114 while (min
< max_count
1115 && (bfd_asymbol_value (sorted_syms
[min
])
1116 == bfd_asymbol_value (sorted_syms
[thisplace
])))
1118 if (sym_ok (TRUE
, abfd
, min
, sec
, inf
))
1125 return sorted_syms
[thisplace
];
1130 /* If the file is relocatable, and the symbol could be from this
1131 section, prefer a symbol from this section over symbols from
1132 others, even if the other symbol's value might be closer.
1134 Note that this may be wrong for some symbol references if the
1135 sections have overlapping memory ranges, but in that case there's
1136 no way to tell what's desired without looking at the relocation
1139 Also give the target a chance to reject symbols. */
1140 want_section
= (aux
->require_sec
1141 || ((abfd
->flags
& HAS_RELOC
) != 0
1142 && vma
>= bfd_get_section_vma (abfd
, sec
)
1143 && vma
< (bfd_get_section_vma (abfd
, sec
)
1144 + bfd_section_size (abfd
, sec
) / opb
)));
1146 if (! sym_ok (want_section
, abfd
, thisplace
, sec
, inf
))
1149 long newplace
= sorted_symcount
;
1151 for (i
= min
- 1; i
>= 0; i
--)
1153 if (sym_ok (want_section
, abfd
, i
, sec
, inf
))
1155 if (newplace
== sorted_symcount
)
1158 if (bfd_asymbol_value (sorted_syms
[i
])
1159 != bfd_asymbol_value (sorted_syms
[newplace
]))
1162 /* Remember this symbol and keep searching until we reach
1163 an earlier address. */
1168 if (newplace
!= sorted_symcount
)
1169 thisplace
= newplace
;
1172 /* We didn't find a good symbol with a smaller value.
1173 Look for one with a larger value. */
1174 for (i
= thisplace
+ 1; i
< sorted_symcount
; i
++)
1176 if (sym_ok (want_section
, abfd
, i
, sec
, inf
))
1184 if (! sym_ok (want_section
, abfd
, thisplace
, sec
, inf
))
1185 /* There is no suitable symbol. */
1189 /* If we have not found an exact match for the specified address
1190 and we have dynamic relocations available, then we can produce
1191 a better result by matching a relocation to the address and
1192 using the symbol associated with that relocation. */
1193 rel_count
= aux
->dynrelcount
;
1195 && sorted_syms
[thisplace
]->value
!= vma
1197 && aux
->dynrelbuf
!= NULL
1198 && aux
->dynrelbuf
[0]->address
<= vma
1199 && aux
->dynrelbuf
[rel_count
- 1]->address
>= vma
1200 /* If we have matched a synthetic symbol, then stick with that. */
1201 && (sorted_syms
[thisplace
]->flags
& BSF_SYNTHETIC
) == 0)
1204 arelent
** rel_high
;
1206 rel_low
= aux
->dynrelbuf
;
1207 rel_high
= rel_low
+ rel_count
- 1;
1208 while (rel_low
<= rel_high
)
1210 arelent
**rel_mid
= &rel_low
[(rel_high
- rel_low
) / 2];
1211 arelent
* rel
= *rel_mid
;
1213 if (rel
->address
== vma
)
1215 /* Absolute relocations do not provide a more helpful
1216 symbolic address. Find a non-absolute relocation
1217 with the same address. */
1218 arelent
**rel_vma
= rel_mid
;
1220 rel_mid
>= rel_low
&& rel_mid
[0]->address
== vma
;
1224 for (; rel_vma
<= rel_high
&& rel_vma
[0]->address
== vma
;
1228 if (rel
->sym_ptr_ptr
!= NULL
1229 && ! bfd_is_abs_section ((* rel
->sym_ptr_ptr
)->section
))
1232 * place
= thisplace
;
1233 return * rel
->sym_ptr_ptr
;
1239 if (vma
< rel
->address
)
1241 else if (vma
>= rel_mid
[1]->address
)
1242 rel_low
= rel_mid
+ 1;
1251 return sorted_syms
[thisplace
];
1254 /* Print an address and the offset to the nearest symbol. */
1257 objdump_print_addr_with_sym (bfd
*abfd
, asection
*sec
, asymbol
*sym
,
1258 bfd_vma vma
, struct disassemble_info
*inf
,
1259 bfd_boolean skip_zeroes
)
1261 objdump_print_value (vma
, inf
, skip_zeroes
);
1267 (*inf
->fprintf_func
) (inf
->stream
, " <%s",
1268 sanitize_string (bfd_get_section_name (abfd
, sec
)));
1269 secaddr
= bfd_get_section_vma (abfd
, sec
);
1272 (*inf
->fprintf_func
) (inf
->stream
, "-0x");
1273 objdump_print_value (secaddr
- vma
, inf
, TRUE
);
1275 else if (vma
> secaddr
)
1277 (*inf
->fprintf_func
) (inf
->stream
, "+0x");
1278 objdump_print_value (vma
- secaddr
, inf
, TRUE
);
1280 (*inf
->fprintf_func
) (inf
->stream
, ">");
1284 (*inf
->fprintf_func
) (inf
->stream
, " <");
1286 objdump_print_symname (abfd
, inf
, sym
);
1288 if (bfd_asymbol_value (sym
) == vma
)
1290 /* Undefined symbols in an executables and dynamic objects do not have
1291 a value associated with them, so it does not make sense to display
1292 an offset relative to them. Normally we would not be provided with
1293 this kind of symbol, but the target backend might choose to do so,
1294 and the code in find_symbol_for_address might return an as yet
1295 unresolved symbol associated with a dynamic reloc. */
1296 else if ((bfd_get_file_flags (abfd
) & (EXEC_P
| DYNAMIC
))
1297 && bfd_is_und_section (sym
->section
))
1299 else if (bfd_asymbol_value (sym
) > vma
)
1301 (*inf
->fprintf_func
) (inf
->stream
, "-0x");
1302 objdump_print_value (bfd_asymbol_value (sym
) - vma
, inf
, TRUE
);
1304 else if (vma
> bfd_asymbol_value (sym
))
1306 (*inf
->fprintf_func
) (inf
->stream
, "+0x");
1307 objdump_print_value (vma
- bfd_asymbol_value (sym
), inf
, TRUE
);
1310 (*inf
->fprintf_func
) (inf
->stream
, ">");
1313 if (display_file_offsets
)
1314 inf
->fprintf_func (inf
->stream
, _(" (File Offset: 0x%lx)"),
1315 (long int)(sec
->filepos
+ (vma
- sec
->vma
)));
1318 /* Print an address (VMA), symbolically if possible.
1319 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
1322 objdump_print_addr (bfd_vma vma
,
1323 struct disassemble_info
*inf
,
1324 bfd_boolean skip_zeroes
)
1326 struct objdump_disasm_info
*aux
;
1327 asymbol
*sym
= NULL
;
1328 bfd_boolean skip_find
= FALSE
;
1330 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1332 if (sorted_symcount
< 1)
1334 (*inf
->fprintf_func
) (inf
->stream
, "0x");
1335 objdump_print_value (vma
, inf
, skip_zeroes
);
1337 if (display_file_offsets
)
1338 inf
->fprintf_func (inf
->stream
, _(" (File Offset: 0x%lx)"),
1339 (long int)(aux
->sec
->filepos
+ (vma
- aux
->sec
->vma
)));
1343 if (aux
->reloc
!= NULL
1344 && aux
->reloc
->sym_ptr_ptr
!= NULL
1345 && * aux
->reloc
->sym_ptr_ptr
!= NULL
)
1347 sym
= * aux
->reloc
->sym_ptr_ptr
;
1349 /* Adjust the vma to the reloc. */
1350 vma
+= bfd_asymbol_value (sym
);
1352 if (bfd_is_und_section (bfd_get_section (sym
)))
1357 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1359 objdump_print_addr_with_sym (aux
->abfd
, aux
->sec
, sym
, vma
, inf
,
1363 /* Print VMA to INFO. This function is passed to the disassembler
1367 objdump_print_address (bfd_vma vma
, struct disassemble_info
*inf
)
1369 objdump_print_addr (vma
, inf
, ! prefix_addresses
);
1372 /* Determine if the given address has a symbol associated with it. */
1375 objdump_symbol_at_address (bfd_vma vma
, struct disassemble_info
* inf
)
1379 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1381 return (sym
!= NULL
&& (bfd_asymbol_value (sym
) == vma
));
1384 /* Hold the last function name and the last line number we displayed
1385 in a disassembly. */
1387 static char *prev_functionname
;
1388 static unsigned int prev_line
;
1389 static unsigned int prev_discriminator
;
1391 /* We keep a list of all files that we have seen when doing a
1392 disassembly with source, so that we know how much of the file to
1393 display. This can be important for inlined functions. */
1395 struct print_file_list
1397 struct print_file_list
*next
;
1398 const char *filename
;
1399 const char *modname
;
1402 const char **linemap
;
1405 unsigned max_printed
;
1409 static struct print_file_list
*print_files
;
1411 /* The number of preceding context lines to show when we start
1412 displaying a file for the first time. */
1414 #define SHOW_PRECEDING_CONTEXT_LINES (5)
1416 /* Read a complete file into memory. */
1419 slurp_file (const char *fn
, size_t *size
, struct stat
*fst
)
1422 int ps
= getpagesize ();
1426 int fd
= open (fn
, O_RDONLY
| O_BINARY
);
1430 if (fstat (fd
, fst
) < 0)
1435 *size
= fst
->st_size
;
1437 msize
= (*size
+ ps
- 1) & ~(ps
- 1);
1438 map
= mmap (NULL
, msize
, PROT_READ
, MAP_SHARED
, fd
, 0);
1439 if (map
!= (char *) -1L)
1445 map
= (const char *) malloc (*size
);
1446 if (!map
|| (size_t) read (fd
, (char *) map
, *size
) != *size
)
1448 free ((void *) map
);
1455 #define line_map_decrease 5
1457 /* Precompute array of lines for a mapped file. */
1459 static const char **
1460 index_file (const char *map
, size_t size
, unsigned int *maxline
)
1462 const char *p
, *lstart
, *end
;
1463 int chars_per_line
= 45; /* First iteration will use 40. */
1464 unsigned int lineno
;
1465 const char **linemap
= NULL
;
1466 unsigned long line_map_size
= 0;
1472 for (p
= map
; p
< end
; p
++)
1476 if (p
+ 1 < end
&& p
[1] == '\r')
1479 else if (*p
== '\r')
1481 if (p
+ 1 < end
&& p
[1] == '\n')
1487 /* End of line found. */
1489 if (linemap
== NULL
|| line_map_size
< lineno
+ 1)
1491 unsigned long newsize
;
1493 chars_per_line
-= line_map_decrease
;
1494 if (chars_per_line
<= 1)
1496 line_map_size
= size
/ chars_per_line
+ 1;
1497 if (line_map_size
< lineno
+ 1)
1498 line_map_size
= lineno
+ 1;
1499 newsize
= line_map_size
* sizeof (char *);
1500 linemap
= (const char **) xrealloc (linemap
, newsize
);
1503 linemap
[lineno
++] = lstart
;
1511 /* Tries to open MODNAME, and if successful adds a node to print_files
1512 linked list and returns that node. Returns NULL on failure. */
1514 static struct print_file_list
*
1515 try_print_file_open (const char *origname
, const char *modname
, struct stat
*fst
)
1517 struct print_file_list
*p
;
1519 p
= (struct print_file_list
*) xmalloc (sizeof (struct print_file_list
));
1521 p
->map
= slurp_file (modname
, &p
->mapsize
, fst
);
1528 p
->linemap
= index_file (p
->map
, p
->mapsize
, &p
->maxline
);
1531 p
->filename
= origname
;
1532 p
->modname
= modname
;
1533 p
->next
= print_files
;
1539 /* If the source file, as described in the symtab, is not found
1540 try to locate it in one of the paths specified with -I
1541 If found, add location to print_files linked list. */
1543 static struct print_file_list
*
1544 update_source_path (const char *filename
, bfd
*abfd
)
1546 struct print_file_list
*p
;
1551 p
= try_print_file_open (filename
, filename
, &fst
);
1554 if (include_path_count
== 0)
1557 /* Get the name of the file. */
1558 fname
= lbasename (filename
);
1560 /* If file exists under a new path, we need to add it to the list
1561 so that show_line knows about it. */
1562 for (i
= 0; i
< include_path_count
; i
++)
1564 char *modname
= concat (include_paths
[i
], "/", fname
,
1567 p
= try_print_file_open (filename
, modname
, &fst
);
1577 long mtime
= bfd_get_mtime (abfd
);
1579 if (fst
.st_mtime
> mtime
)
1580 warn (_("source file %s is more recent than object file\n"),
1587 /* Print a source file line. */
1590 print_line (struct print_file_list
*p
, unsigned int linenum
)
1596 if (linenum
>= p
->maxline
)
1598 l
= p
->linemap
[linenum
];
1599 /* Test fwrite return value to quiet glibc warning. */
1600 len
= strcspn (l
, "\n\r");
1601 if (len
== 0 || fwrite (l
, len
, 1, stdout
) == 1)
1605 /* Print a range of source code lines. */
1608 dump_lines (struct print_file_list
*p
, unsigned int start
, unsigned int end
)
1612 while (start
<= end
)
1614 print_line (p
, start
);
1619 /* Show the line number, or the source line, in a disassembly
1623 show_line (bfd
*abfd
, asection
*section
, bfd_vma addr_offset
)
1625 const char *filename
;
1626 const char *functionname
;
1627 unsigned int linenumber
;
1628 unsigned int discriminator
;
1632 if (! with_line_numbers
&& ! with_source_code
)
1635 if (! bfd_find_nearest_line_discriminator (abfd
, section
, syms
, addr_offset
,
1636 &filename
, &functionname
,
1637 &linenumber
, &discriminator
))
1640 if (filename
!= NULL
&& *filename
== '\0')
1642 if (functionname
!= NULL
&& *functionname
== '\0')
1643 functionname
= NULL
;
1646 && IS_ABSOLUTE_PATH (filename
)
1650 const char *fname
= filename
;
1652 path
= xmalloc (prefix_length
+ PATH_MAX
+ 1);
1655 memcpy (path
, prefix
, prefix_length
);
1656 path_up
= path
+ prefix_length
;
1658 /* Build relocated filename, stripping off leading directories
1659 from the initial filename if requested. */
1660 if (prefix_strip
> 0)
1665 /* Skip selected directory levels. */
1666 for (s
= fname
+ 1; *s
!= '\0' && level
< prefix_strip
; s
++)
1667 if (IS_DIR_SEPARATOR(*s
))
1674 /* Update complete filename. */
1675 strncpy (path_up
, fname
, PATH_MAX
);
1676 path_up
[PATH_MAX
] = '\0';
1684 if (with_line_numbers
)
1686 if (functionname
!= NULL
1687 && (prev_functionname
== NULL
1688 || strcmp (functionname
, prev_functionname
) != 0))
1690 printf ("%s():\n", sanitize_string (functionname
));
1694 && (linenumber
!= prev_line
1695 || discriminator
!= prev_discriminator
))
1697 if (discriminator
> 0)
1698 printf ("%s:%u (discriminator %u)\n",
1699 filename
== NULL
? "???" : sanitize_string (filename
),
1700 linenumber
, discriminator
);
1702 printf ("%s:%u\n", filename
== NULL
1703 ? "???" : sanitize_string (filename
),
1708 const char *filename2
;
1709 const char *functionname2
;
1712 while (bfd_find_inliner_info (abfd
, &filename2
, &functionname2
,
1715 printf ("inlined by %s:%u",
1716 sanitize_string (filename2
), line2
);
1717 printf (" (%s)\n", sanitize_string (functionname2
));
1722 if (with_source_code
1726 struct print_file_list
**pp
, *p
;
1729 for (pp
= &print_files
; *pp
!= NULL
; pp
= &(*pp
)->next
)
1730 if (filename_cmp ((*pp
)->filename
, filename
) == 0)
1737 filename
= xstrdup (filename
);
1738 p
= update_source_path (filename
, abfd
);
1741 if (p
!= NULL
&& linenumber
!= p
->last_line
)
1743 if (file_start_context
&& p
->first
)
1747 l
= linenumber
- SHOW_PRECEDING_CONTEXT_LINES
;
1748 if (l
>= linenumber
)
1750 if (p
->max_printed
>= l
)
1752 if (p
->max_printed
< linenumber
)
1753 l
= p
->max_printed
+ 1;
1758 dump_lines (p
, l
, linenumber
);
1759 if (p
->max_printed
< linenumber
)
1760 p
->max_printed
= linenumber
;
1761 p
->last_line
= linenumber
;
1766 if (functionname
!= NULL
1767 && (prev_functionname
== NULL
1768 || strcmp (functionname
, prev_functionname
) != 0))
1770 if (prev_functionname
!= NULL
)
1771 free (prev_functionname
);
1772 prev_functionname
= (char *) xmalloc (strlen (functionname
) + 1);
1773 strcpy (prev_functionname
, functionname
);
1776 if (linenumber
> 0 && linenumber
!= prev_line
)
1777 prev_line
= linenumber
;
1779 if (discriminator
!= prev_discriminator
)
1780 prev_discriminator
= discriminator
;
1786 /* Pseudo FILE object for strings. */
1794 /* sprintf to a "stream". */
1796 static int ATTRIBUTE_PRINTF_2
1797 objdump_sprintf (SFILE
*f
, const char *format
, ...)
1804 size_t space
= f
->alloc
- f
->pos
;
1806 va_start (args
, format
);
1807 n
= vsnprintf (f
->buffer
+ f
->pos
, space
, format
, args
);
1813 f
->alloc
= (f
->alloc
+ n
) * 2;
1814 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
1821 /* The number of zeroes we want to see before we start skipping them.
1822 The number is arbitrarily chosen. */
1824 #define DEFAULT_SKIP_ZEROES 8
1826 /* The number of zeroes to skip at the end of a section. If the
1827 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1828 SKIP_ZEROES, they will be disassembled. If there are fewer than
1829 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1830 attempt to avoid disassembling zeroes inserted by section
1833 #define DEFAULT_SKIP_ZEROES_AT_END 3
1835 /* Disassemble some data in memory between given values. */
1838 disassemble_bytes (struct disassemble_info
* inf
,
1839 disassembler_ftype disassemble_fn
,
1842 bfd_vma start_offset
,
1843 bfd_vma stop_offset
,
1846 arelent
** relppend
)
1848 struct objdump_disasm_info
*aux
;
1850 int octets_per_line
;
1851 int skip_addr_chars
;
1852 bfd_vma addr_offset
;
1853 unsigned int opb
= inf
->octets_per_byte
;
1854 unsigned int skip_zeroes
= inf
->skip_zeroes
;
1855 unsigned int skip_zeroes_at_end
= inf
->skip_zeroes_at_end
;
1859 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1863 sfile
.buffer
= (char *) xmalloc (sfile
.alloc
);
1867 octets_per_line
= insn_width
;
1869 octets_per_line
= 4;
1871 octets_per_line
= 16;
1873 /* Figure out how many characters to skip at the start of an
1874 address, to make the disassembly look nicer. We discard leading
1875 zeroes in chunks of 4, ensuring that there is always a leading
1877 skip_addr_chars
= 0;
1878 if (! prefix_addresses
)
1882 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ section
->size
/ opb
);
1884 while (buf
[skip_addr_chars
] == '0')
1887 /* Don't discard zeros on overflow. */
1888 if (buf
[skip_addr_chars
] == '\0' && section
->vma
!= 0)
1889 skip_addr_chars
= 0;
1891 if (skip_addr_chars
!= 0)
1892 skip_addr_chars
= (skip_addr_chars
- 1) & -4;
1895 inf
->insn_info_valid
= 0;
1897 addr_offset
= start_offset
;
1898 while (addr_offset
< stop_offset
)
1901 bfd_boolean need_nl
= FALSE
;
1902 int previous_octets
;
1904 /* Remember the length of the previous instruction. */
1905 previous_octets
= octets
;
1908 /* Make sure we don't use relocs from previous instructions. */
1911 /* If we see more than SKIP_ZEROES octets of zeroes, we just
1913 for (z
= addr_offset
* opb
; z
< stop_offset
* opb
; z
++)
1916 if (! disassemble_zeroes
1917 && (inf
->insn_info_valid
== 0
1918 || inf
->branch_delay_insns
== 0)
1919 && (z
- addr_offset
* opb
>= skip_zeroes
1920 || (z
== stop_offset
* opb
&&
1921 z
- addr_offset
* opb
< skip_zeroes_at_end
)))
1923 /* If there are more nonzero octets to follow, we only skip
1924 zeroes in multiples of 4, to try to avoid running over
1925 the start of an instruction which happens to start with
1927 if (z
!= stop_offset
* opb
)
1928 z
= addr_offset
* opb
+ ((z
- addr_offset
* opb
) &~ 3);
1930 octets
= z
- addr_offset
* opb
;
1932 /* If we are going to display more data, and we are displaying
1933 file offsets, then tell the user how many zeroes we skip
1934 and the file offset from where we resume dumping. */
1935 if (display_file_offsets
&& ((addr_offset
+ (octets
/ opb
)) < stop_offset
))
1936 printf ("\t... (skipping %d zeroes, resuming at file offset: 0x%lx)\n",
1938 (unsigned long) (section
->filepos
1939 + (addr_offset
+ (octets
/ opb
))));
1949 if (with_line_numbers
|| with_source_code
)
1950 show_line (aux
->abfd
, section
, addr_offset
);
1952 if (! prefix_addresses
)
1956 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ addr_offset
);
1957 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1961 printf ("%s:\t", buf
+ skip_addr_chars
);
1965 aux
->require_sec
= TRUE
;
1966 objdump_print_address (section
->vma
+ addr_offset
, inf
);
1967 aux
->require_sec
= FALSE
;
1974 inf
->fprintf_func
= (fprintf_ftype
) objdump_sprintf
;
1975 inf
->stream
= &sfile
;
1976 inf
->bytes_per_line
= 0;
1977 inf
->bytes_per_chunk
= 0;
1978 inf
->flags
= ((disassemble_all
? DISASSEMBLE_DATA
: 0)
1979 | (wide_output
? WIDE_OUTPUT
: 0));
1981 inf
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
1983 if (inf
->disassembler_needs_relocs
1984 && (bfd_get_file_flags (aux
->abfd
) & EXEC_P
) == 0
1985 && (bfd_get_file_flags (aux
->abfd
) & DYNAMIC
) == 0
1986 && *relppp
< relppend
)
1988 bfd_signed_vma distance_to_rel
;
1990 distance_to_rel
= (**relppp
)->address
1991 - (rel_offset
+ addr_offset
);
1993 /* Check to see if the current reloc is associated with
1994 the instruction that we are about to disassemble. */
1995 if (distance_to_rel
== 0
1996 /* FIXME: This is wrong. We are trying to catch
1997 relocs that are addressed part way through the
1998 current instruction, as might happen with a packed
1999 VLIW instruction. Unfortunately we do not know the
2000 length of the current instruction since we have not
2001 disassembled it yet. Instead we take a guess based
2002 upon the length of the previous instruction. The
2003 proper solution is to have a new target-specific
2004 disassembler function which just returns the length
2005 of an instruction at a given address without trying
2006 to display its disassembly. */
2007 || (distance_to_rel
> 0
2008 && distance_to_rel
< (bfd_signed_vma
) (previous_octets
/ opb
)))
2010 inf
->flags
|= INSN_HAS_RELOC
;
2011 aux
->reloc
= **relppp
;
2015 if (! disassemble_all
2016 && (section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
2017 == (SEC_CODE
| SEC_HAS_CONTENTS
))
2018 /* Set a stop_vma so that the disassembler will not read
2019 beyond the next symbol. We assume that symbols appear on
2020 the boundaries between instructions. We only do this when
2021 disassembling code of course, and when -D is in effect. */
2022 inf
->stop_vma
= section
->vma
+ stop_offset
;
2024 inf
->stop_offset
= stop_offset
;
2025 octets
= (*disassemble_fn
) (section
->vma
+ addr_offset
, inf
);
2028 inf
->fprintf_func
= (fprintf_ftype
) fprintf
;
2029 inf
->stream
= stdout
;
2030 if (insn_width
== 0 && inf
->bytes_per_line
!= 0)
2031 octets_per_line
= inf
->bytes_per_line
;
2032 if (octets
< (int) opb
)
2035 printf ("%s\n", sfile
.buffer
);
2038 non_fatal (_("disassemble_fn returned length %d"),
2049 octets
= octets_per_line
;
2050 if (addr_offset
+ octets
/ opb
> stop_offset
)
2051 octets
= (stop_offset
- addr_offset
) * opb
;
2053 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ octets
; ++j
)
2055 if (ISPRINT (data
[j
]))
2056 buf
[j
- addr_offset
* opb
] = data
[j
];
2058 buf
[j
- addr_offset
* opb
] = '.';
2060 buf
[j
- addr_offset
* opb
] = '\0';
2063 if (prefix_addresses
2065 : show_raw_insn
>= 0)
2069 /* If ! prefix_addresses and ! wide_output, we print
2070 octets_per_line octets per line. */
2072 if (pb
> octets_per_line
&& ! prefix_addresses
&& ! wide_output
)
2073 pb
= octets_per_line
;
2075 if (inf
->bytes_per_chunk
)
2076 bpc
= inf
->bytes_per_chunk
;
2080 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
2082 /* PR 21580: Check for a buffer ending early. */
2083 if (j
+ bpc
<= stop_offset
* opb
)
2087 if (inf
->display_endian
== BFD_ENDIAN_LITTLE
)
2089 for (k
= bpc
- 1; k
>= 0; k
--)
2090 printf ("%02x", (unsigned) data
[j
+ k
]);
2094 for (k
= 0; k
< bpc
; k
++)
2095 printf ("%02x", (unsigned) data
[j
+ k
]);
2101 for (; pb
< octets_per_line
; pb
+= bpc
)
2105 for (k
= 0; k
< bpc
; k
++)
2110 /* Separate raw data from instruction by extra space. */
2120 printf ("%s", sfile
.buffer
);
2122 if (prefix_addresses
2124 : show_raw_insn
>= 0)
2132 j
= addr_offset
* opb
+ pb
;
2134 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ j
/ opb
);
2135 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
2139 printf ("%s:\t", buf
+ skip_addr_chars
);
2141 pb
+= octets_per_line
;
2144 for (; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
2146 /* PR 21619: Check for a buffer ending early. */
2147 if (j
+ bpc
<= stop_offset
* opb
)
2151 if (inf
->display_endian
== BFD_ENDIAN_LITTLE
)
2153 for (k
= bpc
- 1; k
>= 0; k
--)
2154 printf ("%02x", (unsigned) data
[j
+ k
]);
2158 for (k
= 0; k
< bpc
; k
++)
2159 printf ("%02x", (unsigned) data
[j
+ k
]);
2173 while ((*relppp
) < relppend
2174 && (**relppp
)->address
< rel_offset
+ addr_offset
+ octets
/ opb
)
2176 if (dump_reloc_info
|| dump_dynamic_reloc_info
)
2187 objdump_print_value (section
->vma
- rel_offset
+ q
->address
,
2190 if (q
->howto
== NULL
)
2191 printf (": *unknown*\t");
2192 else if (q
->howto
->name
)
2193 printf (": %s\t", q
->howto
->name
);
2195 printf (": %d\t", q
->howto
->type
);
2197 if (q
->sym_ptr_ptr
== NULL
|| *q
->sym_ptr_ptr
== NULL
)
2198 printf ("*unknown*");
2201 const char *sym_name
;
2203 sym_name
= bfd_asymbol_name (*q
->sym_ptr_ptr
);
2204 if (sym_name
!= NULL
&& *sym_name
!= '\0')
2205 objdump_print_symname (aux
->abfd
, inf
, *q
->sym_ptr_ptr
);
2210 sym_sec
= bfd_get_section (*q
->sym_ptr_ptr
);
2211 sym_name
= bfd_get_section_name (aux
->abfd
, sym_sec
);
2212 if (sym_name
== NULL
|| *sym_name
== '\0')
2213 sym_name
= "*unknown*";
2214 printf ("%s", sanitize_string (sym_name
));
2220 bfd_signed_vma addend
= q
->addend
;
2228 objdump_print_value (addend
, inf
, TRUE
);
2240 addr_offset
+= octets
/ opb
;
2243 free (sfile
.buffer
);
2247 disassemble_section (bfd
*abfd
, asection
*section
, void *inf
)
2249 const struct elf_backend_data
* bed
;
2250 bfd_vma sign_adjust
= 0;
2251 struct disassemble_info
* pinfo
= (struct disassemble_info
*) inf
;
2252 struct objdump_disasm_info
* paux
;
2253 unsigned int opb
= pinfo
->octets_per_byte
;
2254 bfd_byte
* data
= NULL
;
2255 bfd_size_type datasize
= 0;
2256 arelent
** rel_pp
= NULL
;
2257 arelent
** rel_ppstart
= NULL
;
2258 arelent
** rel_ppend
;
2259 bfd_vma stop_offset
;
2260 asymbol
* sym
= NULL
;
2264 unsigned long addr_offset
;
2265 bfd_boolean do_print
;
2268 stop_offset_reached
,
2273 /* Sections that do not contain machine
2274 code are not normally disassembled. */
2275 if (! disassemble_all
2276 && only_list
== NULL
2277 && ((section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
2278 != (SEC_CODE
| SEC_HAS_CONTENTS
)))
2281 if (! process_section_p (section
))
2284 datasize
= bfd_get_section_size (section
);
2288 if (start_address
== (bfd_vma
) -1
2289 || start_address
< section
->vma
)
2292 addr_offset
= start_address
- section
->vma
;
2294 if (stop_address
== (bfd_vma
) -1)
2295 stop_offset
= datasize
/ opb
;
2298 if (stop_address
< section
->vma
)
2301 stop_offset
= stop_address
- section
->vma
;
2302 if (stop_offset
> datasize
/ opb
)
2303 stop_offset
= datasize
/ opb
;
2306 if (addr_offset
>= stop_offset
)
2309 /* Decide which set of relocs to use. Load them if necessary. */
2310 paux
= (struct objdump_disasm_info
*) pinfo
->application_data
;
2311 if (paux
->dynrelbuf
&& dump_dynamic_reloc_info
)
2313 rel_pp
= paux
->dynrelbuf
;
2314 rel_count
= paux
->dynrelcount
;
2315 /* Dynamic reloc addresses are absolute, non-dynamic are section
2316 relative. REL_OFFSET specifies the reloc address corresponding
2317 to the start of this section. */
2318 rel_offset
= section
->vma
;
2326 if ((section
->flags
& SEC_RELOC
) != 0
2327 && (dump_reloc_info
|| pinfo
->disassembler_needs_relocs
))
2331 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
2333 bfd_fatal (bfd_get_filename (abfd
));
2337 rel_ppstart
= rel_pp
= (arelent
**) xmalloc (relsize
);
2338 rel_count
= bfd_canonicalize_reloc (abfd
, section
, rel_pp
, syms
);
2340 bfd_fatal (bfd_get_filename (abfd
));
2342 /* Sort the relocs by address. */
2343 qsort (rel_pp
, rel_count
, sizeof (arelent
*), compare_relocs
);
2347 rel_ppend
= rel_pp
+ rel_count
;
2349 if (!bfd_malloc_and_get_section (abfd
, section
, &data
))
2351 non_fatal (_("Reading section %s failed because: %s"),
2352 section
->name
, bfd_errmsg (bfd_get_error ()));
2356 paux
->sec
= section
;
2357 pinfo
->buffer
= data
;
2358 pinfo
->buffer_vma
= section
->vma
;
2359 pinfo
->buffer_length
= datasize
;
2360 pinfo
->section
= section
;
2362 /* Skip over the relocs belonging to addresses below the
2364 while (rel_pp
< rel_ppend
2365 && (*rel_pp
)->address
< rel_offset
+ addr_offset
)
2368 printf (_("\nDisassembly of section %s:\n"), sanitize_string (section
->name
));
2370 /* Find the nearest symbol forwards from our current position. */
2371 paux
->require_sec
= TRUE
;
2372 sym
= (asymbol
*) find_symbol_for_address (section
->vma
+ addr_offset
,
2373 (struct disassemble_info
*) inf
,
2375 paux
->require_sec
= FALSE
;
2377 /* PR 9774: If the target used signed addresses then we must make
2378 sure that we sign extend the value that we calculate for 'addr'
2379 in the loop below. */
2380 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
2381 && (bed
= get_elf_backend_data (abfd
)) != NULL
2382 && bed
->sign_extend_vma
)
2383 sign_adjust
= (bfd_vma
) 1 << (bed
->s
->arch_size
- 1);
2385 /* Disassemble a block of instructions up to the address associated with
2386 the symbol we have just found. Then print the symbol and find the
2387 next symbol on. Repeat until we have disassembled the entire section
2388 or we have reached the end of the address range we are interested in. */
2389 do_print
= paux
->symbol
== NULL
;
2390 loop_until
= stop_offset_reached
;
2392 while (addr_offset
< stop_offset
)
2396 bfd_vma nextstop_offset
;
2399 addr
= section
->vma
+ addr_offset
;
2400 addr
= ((addr
& ((sign_adjust
<< 1) - 1)) ^ sign_adjust
) - sign_adjust
;
2402 if (sym
!= NULL
&& bfd_asymbol_value (sym
) <= addr
)
2407 (x
< sorted_symcount
2408 && (bfd_asymbol_value (sorted_syms
[x
]) <= addr
));
2412 pinfo
->symbols
= sorted_syms
+ place
;
2413 pinfo
->num_symbols
= x
- place
;
2414 pinfo
->symtab_pos
= place
;
2418 pinfo
->symbols
= NULL
;
2419 pinfo
->num_symbols
= 0;
2420 pinfo
->symtab_pos
= -1;
2423 /* If we are only disassembling from a specific symbol,
2424 check to see if we should start or stop displaying. */
2425 if (sym
&& paux
->symbol
)
2429 /* See if we should stop printing. */
2433 if (sym
->flags
& BSF_FUNCTION
)
2437 case stop_offset_reached
:
2438 /* Handled by the while loop. */
2442 /* FIXME: There is an implicit assumption here
2443 that the name of sym is different from
2445 if (! bfd_is_local_label (abfd
, sym
))
2452 const char * name
= bfd_asymbol_name (sym
);
2453 char * alloc
= NULL
;
2455 if (do_demangle
&& name
[0] != '\0')
2457 /* Demangle the name. */
2458 alloc
= bfd_demangle (abfd
, name
, demangle_flags
);
2463 /* We are not currently printing. Check to see
2464 if the current symbol matches the requested symbol. */
2465 if (streq (name
, paux
->symbol
))
2469 if (sym
->flags
& BSF_FUNCTION
)
2471 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
2472 && ((elf_symbol_type
*) sym
)->internal_elf_sym
.st_size
> 0)
2474 /* Sym is a function symbol with a size associated
2475 with it. Turn on automatic disassembly for the
2476 next VALUE bytes. */
2477 stop_offset
= addr_offset
2478 + ((elf_symbol_type
*) sym
)->internal_elf_sym
.st_size
;
2479 loop_until
= stop_offset_reached
;
2483 /* Otherwise we need to tell the loop heuristic to
2484 loop until the next function symbol is encountered. */
2485 loop_until
= function_sym
;
2490 /* Otherwise loop until the next symbol is encountered. */
2491 loop_until
= next_sym
;
2499 if (! prefix_addresses
&& do_print
)
2501 pinfo
->fprintf_func (pinfo
->stream
, "\n");
2502 objdump_print_addr_with_sym (abfd
, section
, sym
, addr
,
2504 pinfo
->fprintf_func (pinfo
->stream
, ":\n");
2507 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
2509 else if (sym
== NULL
)
2513 #define is_valid_next_sym(SYM) \
2514 (strcmp (bfd_section_name (abfd, (SYM)->section), bfd_section_name (abfd, section)) == 0 \
2515 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
2516 && pinfo->symbol_is_valid (SYM, pinfo))
2518 /* Search forward for the next appropriate symbol in
2519 SECTION. Note that all the symbols are sorted
2520 together into one big array, and that some sections
2521 may have overlapping addresses. */
2522 while (place
< sorted_symcount
2523 && ! is_valid_next_sym (sorted_syms
[place
]))
2526 if (place
>= sorted_symcount
)
2529 nextsym
= sorted_syms
[place
];
2532 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
2533 nextstop_offset
= bfd_asymbol_value (sym
) - section
->vma
;
2534 else if (nextsym
== NULL
)
2535 nextstop_offset
= stop_offset
;
2537 nextstop_offset
= bfd_asymbol_value (nextsym
) - section
->vma
;
2539 if (nextstop_offset
> stop_offset
2540 || nextstop_offset
<= addr_offset
)
2541 nextstop_offset
= stop_offset
;
2543 /* If a symbol is explicitly marked as being an object
2544 rather than a function, just dump the bytes without
2545 disassembling them. */
2548 || sym
->section
!= section
2549 || bfd_asymbol_value (sym
) > addr
2550 || ((sym
->flags
& BSF_OBJECT
) == 0
2551 && (strstr (bfd_asymbol_name (sym
), "gnu_compiled")
2553 && (strstr (bfd_asymbol_name (sym
), "gcc2_compiled")
2555 || (sym
->flags
& BSF_FUNCTION
) != 0)
2561 disassemble_bytes (pinfo
, paux
->disassemble_fn
, insns
, data
,
2562 addr_offset
, nextstop_offset
,
2563 rel_offset
, &rel_pp
, rel_ppend
);
2565 addr_offset
= nextstop_offset
;
2571 if (rel_ppstart
!= NULL
)
2575 /* Disassemble the contents of an object file. */
2578 disassemble_data (bfd
*abfd
)
2580 struct disassemble_info disasm_info
;
2581 struct objdump_disasm_info aux
;
2585 prev_functionname
= NULL
;
2587 prev_discriminator
= 0;
2589 /* We make a copy of syms to sort. We don't want to sort syms
2590 because that will screw up the relocs. */
2591 sorted_symcount
= symcount
? symcount
: dynsymcount
;
2592 sorted_syms
= (asymbol
**) xmalloc ((sorted_symcount
+ synthcount
)
2593 * sizeof (asymbol
*));
2594 memcpy (sorted_syms
, symcount
? syms
: dynsyms
,
2595 sorted_symcount
* sizeof (asymbol
*));
2597 sorted_symcount
= remove_useless_symbols (sorted_syms
, sorted_symcount
);
2599 for (i
= 0; i
< synthcount
; ++i
)
2601 sorted_syms
[sorted_symcount
] = synthsyms
+ i
;
2605 /* Sort the symbols into section and symbol order. */
2606 qsort (sorted_syms
, sorted_symcount
, sizeof (asymbol
*), compare_symbols
);
2608 init_disassemble_info (&disasm_info
, stdout
, (fprintf_ftype
) fprintf
);
2610 disasm_info
.application_data
= (void *) &aux
;
2612 aux
.require_sec
= FALSE
;
2613 aux
.dynrelbuf
= NULL
;
2614 aux
.dynrelcount
= 0;
2616 aux
.symbol
= disasm_sym
;
2618 disasm_info
.print_address_func
= objdump_print_address
;
2619 disasm_info
.symbol_at_address_func
= objdump_symbol_at_address
;
2621 if (machine
!= NULL
)
2623 const bfd_arch_info_type
*inf
= bfd_scan_arch (machine
);
2626 fatal (_("can't use supplied machine %s"), machine
);
2628 abfd
->arch_info
= inf
;
2631 if (endian
!= BFD_ENDIAN_UNKNOWN
)
2633 struct bfd_target
*xvec
;
2635 xvec
= (struct bfd_target
*) xmalloc (sizeof (struct bfd_target
));
2636 memcpy (xvec
, abfd
->xvec
, sizeof (struct bfd_target
));
2637 xvec
->byteorder
= endian
;
2641 /* Use libopcodes to locate a suitable disassembler. */
2642 aux
.disassemble_fn
= disassembler (bfd_get_arch (abfd
),
2643 bfd_big_endian (abfd
),
2644 bfd_get_mach (abfd
), abfd
);
2645 if (!aux
.disassemble_fn
)
2647 non_fatal (_("can't disassemble for architecture %s\n"),
2648 bfd_printable_arch_mach (bfd_get_arch (abfd
), 0));
2653 disasm_info
.flavour
= bfd_get_flavour (abfd
);
2654 disasm_info
.arch
= bfd_get_arch (abfd
);
2655 disasm_info
.mach
= bfd_get_mach (abfd
);
2656 disasm_info
.disassembler_options
= disassembler_options
;
2657 disasm_info
.octets_per_byte
= bfd_octets_per_byte (abfd
);
2658 disasm_info
.skip_zeroes
= DEFAULT_SKIP_ZEROES
;
2659 disasm_info
.skip_zeroes_at_end
= DEFAULT_SKIP_ZEROES_AT_END
;
2660 disasm_info
.disassembler_needs_relocs
= FALSE
;
2662 if (bfd_big_endian (abfd
))
2663 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_BIG
;
2664 else if (bfd_little_endian (abfd
))
2665 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_LITTLE
;
2667 /* ??? Aborting here seems too drastic. We could default to big or little
2669 disasm_info
.endian
= BFD_ENDIAN_UNKNOWN
;
2671 /* Allow the target to customize the info structure. */
2672 disassemble_init_for_target (& disasm_info
);
2674 /* Pre-load the dynamic relocs as we may need them during the disassembly. */
2676 long relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
2678 if (relsize
< 0 && dump_dynamic_reloc_info
)
2679 bfd_fatal (bfd_get_filename (abfd
));
2683 aux
.dynrelbuf
= (arelent
**) xmalloc (relsize
);
2684 aux
.dynrelcount
= bfd_canonicalize_dynamic_reloc (abfd
,
2687 if (aux
.dynrelcount
< 0)
2688 bfd_fatal (bfd_get_filename (abfd
));
2690 /* Sort the relocs by address. */
2691 qsort (aux
.dynrelbuf
, aux
.dynrelcount
, sizeof (arelent
*),
2695 disasm_info
.symtab
= sorted_syms
;
2696 disasm_info
.symtab_size
= sorted_symcount
;
2698 bfd_map_over_sections (abfd
, disassemble_section
, & disasm_info
);
2700 if (aux
.dynrelbuf
!= NULL
)
2701 free (aux
.dynrelbuf
);
2706 load_specific_debug_section (enum dwarf_section_display_enum debug
,
2707 asection
*sec
, void *file
)
2709 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2710 bfd
*abfd
= (bfd
*) file
;
2715 if (section
->start
!= NULL
)
2717 /* If it is already loaded, do nothing. */
2718 if (streq (section
->filename
, bfd_get_filename (abfd
)))
2720 free (section
->start
);
2723 section
->filename
= bfd_get_filename (abfd
);
2724 section
->reloc_info
= NULL
;
2725 section
->num_relocs
= 0;
2726 section
->address
= bfd_get_section_vma (abfd
, sec
);
2727 section
->user_data
= sec
;
2728 section
->size
= bfd_get_section_size (sec
);
2729 /* PR 24360: On 32-bit hosts sizeof (size_t) < sizeof (bfd_size_type). */
2730 alloced
= amt
= section
->size
+ 1;
2731 if (alloced
!= amt
|| alloced
== 0)
2733 section
->start
= NULL
;
2734 free_debug_section (debug
);
2735 printf (_("\nSection '%s' has an invalid size: %#llx.\n"),
2736 sanitize_string (section
->name
),
2737 (unsigned long long) section
->size
);
2740 section
->start
= contents
= malloc (alloced
);
2741 if (section
->start
== NULL
2742 || !bfd_get_full_section_contents (abfd
, sec
, &contents
))
2744 free_debug_section (debug
);
2745 printf (_("\nCan't get contents for section '%s'.\n"),
2746 sanitize_string (section
->name
));
2749 /* Ensure any string section has a terminating NUL. */
2750 section
->start
[section
->size
] = 0;
2752 if (is_relocatable
&& debug_displays
[debug
].relocate
)
2757 bfd_cache_section_contents (sec
, section
->start
);
2759 ret
= bfd_simple_get_relocated_section_contents (abfd
,
2766 free_debug_section (debug
);
2767 printf (_("\nCan't get contents for section '%s'.\n"),
2768 sanitize_string (section
->name
));
2772 reloc_size
= bfd_get_reloc_upper_bound (abfd
, sec
);
2775 unsigned long reloc_count
;
2778 relocs
= (arelent
**) xmalloc (reloc_size
);
2780 reloc_count
= bfd_canonicalize_reloc (abfd
, sec
, relocs
, NULL
);
2781 if (reloc_count
== 0)
2785 section
->reloc_info
= relocs
;
2786 section
->num_relocs
= reloc_count
;
2795 reloc_at (struct dwarf_section
* dsec
, dwarf_vma offset
)
2800 if (dsec
== NULL
|| dsec
->reloc_info
== NULL
)
2803 relocs
= (arelent
**) dsec
->reloc_info
;
2805 for (; (rp
= * relocs
) != NULL
; ++ relocs
)
2806 if (rp
->address
== offset
)
2813 load_debug_section (enum dwarf_section_display_enum debug
, void *file
)
2815 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2816 bfd
*abfd
= (bfd
*) file
;
2819 /* If it is already loaded, do nothing. */
2820 if (section
->start
!= NULL
)
2822 if (streq (section
->filename
, bfd_get_filename (abfd
)))
2826 /* Locate the debug section. */
2827 sec
= bfd_get_section_by_name (abfd
, section
->uncompressed_name
);
2829 section
->name
= section
->uncompressed_name
;
2832 sec
= bfd_get_section_by_name (abfd
, section
->compressed_name
);
2834 section
->name
= section
->compressed_name
;
2839 return load_specific_debug_section (debug
, sec
, file
);
2843 free_debug_section (enum dwarf_section_display_enum debug
)
2845 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2847 if (section
->start
== NULL
)
2850 /* PR 17512: file: 0f67f69d. */
2851 if (section
->user_data
!= NULL
)
2853 asection
* sec
= (asection
*) section
->user_data
;
2855 /* If we are freeing contents that are also pointed to by the BFD
2856 library's section structure then make sure to update those pointers
2857 too. Otherwise, the next time we try to load data for this section
2858 we can end up using a stale pointer. */
2859 if (section
->start
== sec
->contents
)
2861 sec
->contents
= NULL
;
2862 sec
->flags
&= ~ SEC_IN_MEMORY
;
2863 sec
->compress_status
= COMPRESS_SECTION_NONE
;
2867 free ((char *) section
->start
);
2868 section
->start
= NULL
;
2869 section
->address
= 0;
2874 close_debug_file (void * file
)
2876 bfd
* abfd
= (bfd
*) file
;
2882 open_debug_file (const char * pathname
)
2886 data
= bfd_openr (pathname
, NULL
);
2890 if (! bfd_check_format (data
, bfd_object
))
2897 dump_dwarf_section (bfd
*abfd
, asection
*section
,
2898 void *arg ATTRIBUTE_UNUSED
)
2900 const char *name
= bfd_get_section_name (abfd
, section
);
2904 if (CONST_STRNEQ (name
, ".gnu.linkonce.wi."))
2905 match
= ".debug_info";
2909 for (i
= 0; i
< max
; i
++)
2910 if ((strcmp (debug_displays
[i
].section
.uncompressed_name
, match
) == 0
2911 || strcmp (debug_displays
[i
].section
.compressed_name
, match
) == 0)
2912 && debug_displays
[i
].enabled
!= NULL
2913 && *debug_displays
[i
].enabled
)
2915 struct dwarf_section
*sec
= &debug_displays
[i
].section
;
2917 if (strcmp (sec
->uncompressed_name
, match
) == 0)
2918 sec
->name
= sec
->uncompressed_name
;
2920 sec
->name
= sec
->compressed_name
;
2921 if (load_specific_debug_section ((enum dwarf_section_display_enum
) i
,
2924 debug_displays
[i
].display (sec
, abfd
);
2926 if (i
!= info
&& i
!= abbrev
)
2927 free_debug_section ((enum dwarf_section_display_enum
) i
);
2933 /* Dump the dwarf debugging information. */
2936 dump_dwarf (bfd
*abfd
)
2938 /* The byte_get pointer should have been set at the start of dump_bfd(). */
2939 if (byte_get
== NULL
)
2941 warn (_("File %s does not contain any dwarf debug information\n"),
2942 bfd_get_filename (abfd
));
2946 is_relocatable
= (abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0;
2948 eh_addr_size
= bfd_arch_bits_per_address (abfd
) / 8;
2950 switch (bfd_get_arch (abfd
))
2953 switch (bfd_get_mach (abfd
))
2955 case bfd_mach_x86_64
:
2956 case bfd_mach_x86_64_intel_syntax
:
2957 case bfd_mach_x86_64_nacl
:
2958 case bfd_mach_x64_32
:
2959 case bfd_mach_x64_32_intel_syntax
:
2960 case bfd_mach_x64_32_nacl
:
2961 init_dwarf_regnames_x86_64 ();
2965 init_dwarf_regnames_i386 ();
2970 case bfd_arch_iamcu
:
2971 init_dwarf_regnames_iamcu ();
2974 case bfd_arch_aarch64
:
2975 init_dwarf_regnames_aarch64();
2979 init_dwarf_regnames_s390 ();
2982 case bfd_arch_riscv
:
2983 init_dwarf_regnames_riscv ();
2987 /* S12Z has a 24 bit address space. But the only known
2988 producer of dwarf_info encodes addresses into 32 bits. */
2996 bfd_map_over_sections (abfd
, dump_dwarf_section
, NULL
);
2999 /* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
3000 it. Return NULL on failure. */
3003 read_section_stabs (bfd
*abfd
, const char *sect_name
, bfd_size_type
*size_ptr
,
3004 bfd_size_type
*entsize_ptr
)
3009 stabsect
= bfd_get_section_by_name (abfd
, sect_name
);
3010 if (stabsect
== NULL
)
3012 printf (_("No %s section present\n\n"),
3013 sanitize_string (sect_name
));
3017 if (!bfd_malloc_and_get_section (abfd
, stabsect
, &contents
))
3019 non_fatal (_("reading %s section of %s failed: %s"),
3020 sect_name
, bfd_get_filename (abfd
),
3021 bfd_errmsg (bfd_get_error ()));
3027 *size_ptr
= bfd_section_size (abfd
, stabsect
);
3029 *entsize_ptr
= stabsect
->entsize
;
3034 /* Stabs entries use a 12 byte format:
3035 4 byte string table index
3037 1 byte stab other field
3038 2 byte stab desc field
3040 FIXME: This will have to change for a 64 bit object format. */
3042 #define STRDXOFF (0)
3044 #define OTHEROFF (5)
3047 #define STABSIZE (12)
3049 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
3050 using string table section STRSECT_NAME (in `strtab'). */
3053 print_section_stabs (bfd
*abfd
,
3054 const char *stabsect_name
,
3055 unsigned *string_offset_ptr
)
3058 unsigned file_string_table_offset
= 0;
3059 unsigned next_file_string_table_offset
= *string_offset_ptr
;
3060 bfd_byte
*stabp
, *stabs_end
;
3063 stabs_end
= stabp
+ stab_size
;
3065 printf (_("Contents of %s section:\n\n"), sanitize_string (stabsect_name
));
3066 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
3068 /* Loop through all symbols and print them.
3070 We start the index at -1 because there is a dummy symbol on
3071 the front of stabs-in-{coff,elf} sections that supplies sizes. */
3072 for (i
= -1; stabp
<= stabs_end
- STABSIZE
; stabp
+= STABSIZE
, i
++)
3076 unsigned char type
, other
;
3077 unsigned short desc
;
3080 strx
= bfd_h_get_32 (abfd
, stabp
+ STRDXOFF
);
3081 type
= bfd_h_get_8 (abfd
, stabp
+ TYPEOFF
);
3082 other
= bfd_h_get_8 (abfd
, stabp
+ OTHEROFF
);
3083 desc
= bfd_h_get_16 (abfd
, stabp
+ DESCOFF
);
3084 value
= bfd_h_get_32 (abfd
, stabp
+ VALOFF
);
3086 printf ("\n%-6d ", i
);
3087 /* Either print the stab name, or, if unnamed, print its number
3088 again (makes consistent formatting for tools like awk). */
3089 name
= bfd_get_stab_name (type
);
3091 printf ("%-6s", sanitize_string (name
));
3092 else if (type
== N_UNDF
)
3095 printf ("%-6d", type
);
3096 printf (" %-6d %-6d ", other
, desc
);
3097 bfd_printf_vma (abfd
, value
);
3098 printf (" %-6lu", strx
);
3100 /* Symbols with type == 0 (N_UNDF) specify the length of the
3101 string table associated with this file. We use that info
3102 to know how to relocate the *next* file's string table indices. */
3105 file_string_table_offset
= next_file_string_table_offset
;
3106 next_file_string_table_offset
+= value
;
3110 bfd_size_type amt
= strx
+ file_string_table_offset
;
3112 /* Using the (possibly updated) string table offset, print the
3113 string (if any) associated with this symbol. */
3114 if (amt
< stabstr_size
)
3115 /* PR 17512: file: 079-79389-0.001:0.1.
3116 FIXME: May need to sanitize this string before displaying. */
3117 printf (" %.*s", (int)(stabstr_size
- amt
), strtab
+ amt
);
3123 *string_offset_ptr
= next_file_string_table_offset
;
3128 const char * section_name
;
3129 const char * string_section_name
;
3130 unsigned string_offset
;
3135 find_stabs_section (bfd
*abfd
, asection
*section
, void *names
)
3138 stab_section_names
* sought
= (stab_section_names
*) names
;
3140 /* Check for section names for which stabsect_name is a prefix, to
3141 handle .stab.N, etc. */
3142 len
= strlen (sought
->section_name
);
3144 /* If the prefix matches, and the files section name ends with a
3145 nul or a digit, then we match. I.e., we want either an exact
3146 match or a section followed by a number. */
3147 if (strncmp (sought
->section_name
, section
->name
, len
) == 0
3148 && (section
->name
[len
] == 0
3149 || (section
->name
[len
] == '.' && ISDIGIT (section
->name
[len
+ 1]))))
3152 strtab
= read_section_stabs (abfd
, sought
->string_section_name
,
3153 &stabstr_size
, NULL
);
3157 stabs
= read_section_stabs (abfd
, section
->name
, &stab_size
, NULL
);
3159 print_section_stabs (abfd
, section
->name
, &sought
->string_offset
);
3165 dump_stabs_section (bfd
*abfd
, char *stabsect_name
, char *strsect_name
)
3167 stab_section_names s
;
3169 s
.section_name
= stabsect_name
;
3170 s
.string_section_name
= strsect_name
;
3171 s
.string_offset
= 0;
3173 bfd_map_over_sections (abfd
, find_stabs_section
, & s
);
3179 /* Dump the any sections containing stabs debugging information. */
3182 dump_stabs (bfd
*abfd
)
3184 dump_stabs_section (abfd
, ".stab", ".stabstr");
3185 dump_stabs_section (abfd
, ".stab.excl", ".stab.exclstr");
3186 dump_stabs_section (abfd
, ".stab.index", ".stab.indexstr");
3189 dump_stabs_section (abfd
, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
3191 dump_stabs_section (abfd
, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
3195 dump_bfd_header (bfd
*abfd
)
3199 printf (_("architecture: %s, "),
3200 bfd_printable_arch_mach (bfd_get_arch (abfd
),
3201 bfd_get_mach (abfd
)));
3202 printf (_("flags 0x%08x:\n"), abfd
->flags
& ~BFD_FLAGS_FOR_BFD_USE_MASK
);
3204 #define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
3205 PF (HAS_RELOC
, "HAS_RELOC");
3206 PF (EXEC_P
, "EXEC_P");
3207 PF (HAS_LINENO
, "HAS_LINENO");
3208 PF (HAS_DEBUG
, "HAS_DEBUG");
3209 PF (HAS_SYMS
, "HAS_SYMS");
3210 PF (HAS_LOCALS
, "HAS_LOCALS");
3211 PF (DYNAMIC
, "DYNAMIC");
3212 PF (WP_TEXT
, "WP_TEXT");
3213 PF (D_PAGED
, "D_PAGED");
3214 PF (BFD_IS_RELAXABLE
, "BFD_IS_RELAXABLE");
3215 printf (_("\nstart address 0x"));
3216 bfd_printf_vma (abfd
, abfd
->start_address
);
3221 /* Formatting callback function passed to ctf_dump. Returns either the pointer
3222 it is passed, or a pointer to newly-allocated storage, in which case
3223 dump_ctf() will free it when it no longer needs it. */
3226 dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED
,
3229 const char *blanks
= arg
;
3232 if (asprintf (&new_s
, "%s%s", blanks
, s
) < 0)
3237 /* Make a ctfsect suitable for ctf_bfdopen_ctfsect(). */
3239 make_ctfsect (const char *name
, bfd_byte
*data
,
3244 ctfsect
.cts_name
= name
;
3245 ctfsect
.cts_entsize
= 1;
3246 ctfsect
.cts_size
= size
;
3247 ctfsect
.cts_data
= data
;
3252 /* Dump one CTF archive member. */
3255 dump_ctf_archive_member (ctf_file_t
*ctf
, const char *name
, void *arg
)
3257 ctf_file_t
*parent
= (ctf_file_t
*) arg
;
3258 const char *things
[] = {"Labels", "Data objects", "Function objects",
3259 "Variables", "Types", "Strings", ""};
3263 /* Only print out the name of non-default-named archive members.
3264 The name .ctf appears everywhere, even for things that aren't
3265 really archives, so printing it out is liable to be confusing. */
3266 if (strcmp (name
, ".ctf") != 0)
3267 printf (_("\nCTF archive member: %s:\n"), sanitize_string (name
));
3269 ctf_import (ctf
, parent
);
3270 for (i
= 1, thing
= things
; *thing
[0]; thing
++, i
++)
3272 ctf_dump_state_t
*s
= NULL
;
3275 printf ("\n %s:\n", *thing
);
3276 while ((item
= ctf_dump (ctf
, &s
, i
, dump_ctf_indent_lines
,
3277 (void *) " ")) != NULL
)
3279 printf ("%s\n", item
);
3283 if (ctf_errno (ctf
))
3285 non_fatal (_("Iteration failed: %s, %s\n"), *thing
,
3286 ctf_errmsg (ctf_errno (ctf
)));
3293 /* Dump the CTF debugging information. */
3296 dump_ctf (bfd
*abfd
, const char *sect_name
, const char *parent_name
)
3298 ctf_archive_t
*ctfa
, *parenta
= NULL
;
3299 bfd_byte
*ctfdata
, *parentdata
= NULL
;
3300 bfd_size_type ctfsize
, parentsize
;
3302 ctf_file_t
*parent
= NULL
;
3305 if ((ctfdata
= read_section_stabs (abfd
, sect_name
, &ctfsize
, NULL
)) == NULL
)
3306 bfd_fatal (bfd_get_filename (abfd
));
3309 && (parentdata
= read_section_stabs (abfd
, parent_name
, &parentsize
,
3311 bfd_fatal (bfd_get_filename (abfd
));
3313 /* Load the CTF file and dump it. */
3315 ctfsect
= make_ctfsect (sect_name
, ctfdata
, ctfsize
);
3316 if ((ctfa
= ctf_bfdopen_ctfsect (abfd
, &ctfsect
, &err
)) == NULL
)
3318 non_fatal (_("CTF open failure: %s\n"), ctf_errmsg (err
));
3319 bfd_fatal (bfd_get_filename (abfd
));
3324 ctfsect
= make_ctfsect (parent_name
, parentdata
, parentsize
);
3325 if ((parenta
= ctf_bfdopen_ctfsect (abfd
, &ctfsect
, &err
)) == NULL
)
3327 non_fatal (_("CTF open failure: %s\n"), ctf_errmsg (err
));
3328 bfd_fatal (bfd_get_filename (abfd
));
3331 /* Assume that the applicable parent archive member is the default one.
3332 (This is what all known implementations are expected to do, if they
3333 put CTFs and their parents in archives together.) */
3334 if ((parent
= ctf_arc_open_by_name (parenta
, NULL
, &err
)) == NULL
)
3336 non_fatal (_("CTF open failure: %s\n"), ctf_errmsg (err
));
3337 bfd_fatal (bfd_get_filename (abfd
));
3341 printf (_("Contents of CTF section %s:\n"), sanitize_string (sect_name
));
3343 ctf_archive_iter (ctfa
, dump_ctf_archive_member
, parent
);
3344 ctf_file_close (parent
);
3346 ctf_close (parenta
);
3353 dump_bfd_private_header (bfd
*abfd
)
3355 if (!bfd_print_private_bfd_data (abfd
, stdout
))
3356 non_fatal (_("warning: private headers incomplete: %s"),
3357 bfd_errmsg (bfd_get_error ()));
3361 dump_target_specific (bfd
*abfd
)
3363 const struct objdump_private_desc
* const *desc
;
3364 struct objdump_private_option
*opt
;
3367 /* Find the desc. */
3368 for (desc
= objdump_private_vectors
; *desc
!= NULL
; desc
++)
3369 if ((*desc
)->filter (abfd
))
3374 non_fatal (_("option -P/--private not supported by this file"));
3378 /* Clear all options. */
3379 for (opt
= (*desc
)->options
; opt
->name
; opt
++)
3380 opt
->selected
= FALSE
;
3382 /* Decode options. */
3383 b
= dump_private_options
;
3386 e
= strchr (b
, ',');
3391 for (opt
= (*desc
)->options
; opt
->name
; opt
++)
3392 if (strcmp (opt
->name
, b
) == 0)
3394 opt
->selected
= TRUE
;
3397 if (opt
->name
== NULL
)
3398 non_fatal (_("target specific dump '%s' not supported"), b
);
3409 (*desc
)->dump (abfd
);
3412 /* Display a section in hexadecimal format with associated characters.
3413 Each line prefixed by the zero padded address. */
3416 dump_section (bfd
*abfd
, asection
*section
, void *dummy ATTRIBUTE_UNUSED
)
3418 bfd_byte
*data
= NULL
;
3419 bfd_size_type datasize
;
3420 bfd_vma addr_offset
;
3421 bfd_vma start_offset
;
3422 bfd_vma stop_offset
;
3423 unsigned int opb
= bfd_octets_per_byte (abfd
);
3424 /* Bytes per line. */
3425 const int onaline
= 16;
3430 if ((section
->flags
& SEC_HAS_CONTENTS
) == 0)
3433 if (! process_section_p (section
))
3436 if ((datasize
= bfd_section_size (abfd
, section
)) == 0)
3439 /* Compute the address range to display. */
3440 if (start_address
== (bfd_vma
) -1
3441 || start_address
< section
->vma
)
3444 start_offset
= start_address
- section
->vma
;
3446 if (stop_address
== (bfd_vma
) -1)
3447 stop_offset
= datasize
/ opb
;
3450 if (stop_address
< section
->vma
)
3453 stop_offset
= stop_address
- section
->vma
;
3455 if (stop_offset
> datasize
/ opb
)
3456 stop_offset
= datasize
/ opb
;
3459 if (start_offset
>= stop_offset
)
3462 printf (_("Contents of section %s:"), sanitize_string (section
->name
));
3463 if (display_file_offsets
)
3464 printf (_(" (Starting at file offset: 0x%lx)"),
3465 (unsigned long) (section
->filepos
+ start_offset
));
3468 if (!bfd_get_full_section_contents (abfd
, section
, &data
))
3470 non_fatal (_("Reading section %s failed because: %s"),
3471 section
->name
, bfd_errmsg (bfd_get_error ()));
3477 bfd_sprintf_vma (abfd
, buf
, start_offset
+ section
->vma
);
3478 if (strlen (buf
) >= sizeof (buf
))
3482 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
3484 count
= strlen (buf
) - count
;
3488 bfd_sprintf_vma (abfd
, buf
, stop_offset
+ section
->vma
- 1);
3489 if (strlen (buf
) >= sizeof (buf
))
3493 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
3495 count
= strlen (buf
) - count
;
3499 for (addr_offset
= start_offset
;
3500 addr_offset
< stop_offset
; addr_offset
+= onaline
/ opb
)
3504 bfd_sprintf_vma (abfd
, buf
, (addr_offset
+ section
->vma
));
3505 count
= strlen (buf
);
3506 if ((size_t) count
>= sizeof (buf
))
3510 while (count
< width
)
3515 fputs (buf
+ count
- width
, stdout
);
3518 for (j
= addr_offset
* opb
;
3519 j
< addr_offset
* opb
+ onaline
; j
++)
3521 if (j
< stop_offset
* opb
)
3522 printf ("%02x", (unsigned) (data
[j
]));
3530 for (j
= addr_offset
* opb
;
3531 j
< addr_offset
* opb
+ onaline
; j
++)
3533 if (j
>= stop_offset
* opb
)
3536 printf ("%c", ISPRINT (data
[j
]) ? data
[j
] : '.');
3543 /* Actually display the various requested regions. */
3546 dump_data (bfd
*abfd
)
3548 bfd_map_over_sections (abfd
, dump_section
, NULL
);
3551 /* Should perhaps share code and display with nm? */
3554 dump_symbols (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean dynamic
)
3563 max_count
= dynsymcount
;
3564 printf ("DYNAMIC SYMBOL TABLE:\n");
3569 max_count
= symcount
;
3570 printf ("SYMBOL TABLE:\n");
3574 printf (_("no symbols\n"));
3576 for (count
= 0; count
< max_count
; count
++)
3580 if (*current
== NULL
)
3581 printf (_("no information for symbol number %ld\n"), count
);
3583 else if ((cur_bfd
= bfd_asymbol_bfd (*current
)) == NULL
)
3584 printf (_("could not determine the type of symbol number %ld\n"),
3587 else if (process_section_p ((* current
)->section
)
3588 && (dump_special_syms
3589 || !bfd_is_target_special_symbol (cur_bfd
, *current
)))
3591 const char *name
= (*current
)->name
;
3593 if (do_demangle
&& name
!= NULL
&& *name
!= '\0')
3597 /* If we want to demangle the name, we demangle it
3598 here, and temporarily clobber it while calling
3599 bfd_print_symbol. FIXME: This is a gross hack. */
3600 alloc
= bfd_demangle (cur_bfd
, name
, demangle_flags
);
3602 (*current
)->name
= alloc
;
3603 bfd_print_symbol (cur_bfd
, stdout
, *current
,
3604 bfd_print_symbol_all
);
3607 (*current
)->name
= name
;
3612 bfd_print_symbol (cur_bfd
, stdout
, *current
,
3613 bfd_print_symbol_all
);
3623 dump_reloc_set (bfd
*abfd
, asection
*sec
, arelent
**relpp
, long relcount
)
3626 char *last_filename
, *last_functionname
;
3627 unsigned int last_line
;
3628 unsigned int last_discriminator
;
3630 /* Get column headers lined up reasonably. */
3638 bfd_sprintf_vma (abfd
, buf
, (bfd_vma
) -1);
3639 width
= strlen (buf
) - 7;
3641 printf ("OFFSET %*s TYPE %*s VALUE \n", width
, "", 12, "");
3644 last_filename
= NULL
;
3645 last_functionname
= NULL
;
3647 last_discriminator
= 0;
3649 for (p
= relpp
; relcount
&& *p
!= NULL
; p
++, relcount
--)
3652 const char *filename
, *functionname
;
3653 unsigned int linenumber
;
3654 unsigned int discriminator
;
3655 const char *sym_name
;
3656 const char *section_name
;
3657 bfd_vma addend2
= 0;
3659 if (start_address
!= (bfd_vma
) -1
3660 && q
->address
< start_address
)
3662 if (stop_address
!= (bfd_vma
) -1
3663 && q
->address
> stop_address
)
3666 if (with_line_numbers
3668 && bfd_find_nearest_line_discriminator (abfd
, sec
, syms
, q
->address
,
3669 &filename
, &functionname
,
3670 &linenumber
, &discriminator
))
3672 if (functionname
!= NULL
3673 && (last_functionname
== NULL
3674 || strcmp (functionname
, last_functionname
) != 0))
3676 printf ("%s():\n", sanitize_string (functionname
));
3677 if (last_functionname
!= NULL
)
3678 free (last_functionname
);
3679 last_functionname
= xstrdup (functionname
);
3683 && (linenumber
!= last_line
3684 || (filename
!= NULL
3685 && last_filename
!= NULL
3686 && filename_cmp (filename
, last_filename
) != 0)
3687 || (discriminator
!= last_discriminator
)))
3689 if (discriminator
> 0)
3690 printf ("%s:%u\n", filename
== NULL
? "???" :
3691 sanitize_string (filename
), linenumber
);
3693 printf ("%s:%u (discriminator %u)\n",
3694 filename
== NULL
? "???" : sanitize_string (filename
),
3695 linenumber
, discriminator
);
3696 last_line
= linenumber
;
3697 last_discriminator
= discriminator
;
3698 if (last_filename
!= NULL
)
3699 free (last_filename
);
3700 if (filename
== NULL
)
3701 last_filename
= NULL
;
3703 last_filename
= xstrdup (filename
);
3707 if (q
->sym_ptr_ptr
&& *q
->sym_ptr_ptr
)
3709 sym_name
= (*(q
->sym_ptr_ptr
))->name
;
3710 section_name
= (*(q
->sym_ptr_ptr
))->section
->name
;
3715 section_name
= NULL
;
3718 bfd_printf_vma (abfd
, q
->address
);
3719 if (q
->howto
== NULL
)
3720 printf (" *unknown* ");
3721 else if (q
->howto
->name
)
3723 const char *name
= q
->howto
->name
;
3725 /* R_SPARC_OLO10 relocations contain two addends.
3726 But because 'arelent' lacks enough storage to
3727 store them both, the 64-bit ELF Sparc backend
3728 records this as two relocations. One R_SPARC_LO10
3729 and one R_SPARC_13, both pointing to the same
3730 address. This is merely so that we have some
3731 place to store both addend fields.
3733 Undo this transformation, otherwise the output
3734 will be confusing. */
3735 if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
3736 && elf_tdata(abfd
)->elf_header
->e_machine
== EM_SPARCV9
3738 && !strcmp (q
->howto
->name
, "R_SPARC_LO10"))
3740 arelent
*q2
= *(p
+ 1);
3743 && q
->address
== q2
->address
3744 && !strcmp (q2
->howto
->name
, "R_SPARC_13"))
3746 name
= "R_SPARC_OLO10";
3747 addend2
= q2
->addend
;
3751 printf (" %-16s ", name
);
3754 printf (" %-16d ", q
->howto
->type
);
3758 objdump_print_symname (abfd
, NULL
, *q
->sym_ptr_ptr
);
3762 if (section_name
== NULL
)
3763 section_name
= "*unknown*";
3764 printf ("[%s]", sanitize_string (section_name
));
3769 bfd_signed_vma addend
= q
->addend
;
3777 bfd_printf_vma (abfd
, addend
);
3782 bfd_printf_vma (abfd
, addend2
);
3788 if (last_filename
!= NULL
)
3789 free (last_filename
);
3790 if (last_functionname
!= NULL
)
3791 free (last_functionname
);
3795 dump_relocs_in_section (bfd
*abfd
,
3797 void *dummy ATTRIBUTE_UNUSED
)
3799 arelent
**relpp
= NULL
;
3803 if ( bfd_is_abs_section (section
)
3804 || bfd_is_und_section (section
)
3805 || bfd_is_com_section (section
)
3806 || (! process_section_p (section
))
3807 || ((section
->flags
& SEC_RELOC
) == 0))
3810 printf ("RELOCATION RECORDS FOR [%s]:", sanitize_string (section
->name
));
3812 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
3815 printf (" (none)\n\n");
3823 relpp
= (arelent
**) xmalloc (relsize
);
3824 relcount
= bfd_canonicalize_reloc (abfd
, section
, relpp
, syms
);
3830 non_fatal (_("failed to read relocs in: %s"),
3831 sanitize_string (bfd_get_filename (abfd
)));
3832 bfd_fatal (_("error message was"));
3834 else if (relcount
== 0)
3835 printf (" (none)\n\n");
3839 dump_reloc_set (abfd
, section
, relpp
, relcount
);
3846 dump_relocs (bfd
*abfd
)
3848 bfd_map_over_sections (abfd
, dump_relocs_in_section
, NULL
);
3852 dump_dynamic_relocs (bfd
*abfd
)
3858 relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
3860 bfd_fatal (bfd_get_filename (abfd
));
3862 printf ("DYNAMIC RELOCATION RECORDS");
3865 printf (" (none)\n\n");
3868 relpp
= (arelent
**) xmalloc (relsize
);
3869 relcount
= bfd_canonicalize_dynamic_reloc (abfd
, relpp
, dynsyms
);
3872 bfd_fatal (bfd_get_filename (abfd
));
3873 else if (relcount
== 0)
3874 printf (" (none)\n\n");
3878 dump_reloc_set (abfd
, NULL
, relpp
, relcount
);
3885 /* Creates a table of paths, to search for source files. */
3888 add_include_path (const char *path
)
3892 include_path_count
++;
3893 include_paths
= (const char **)
3894 xrealloc (include_paths
, include_path_count
* sizeof (*include_paths
));
3895 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3896 if (path
[1] == ':' && path
[2] == 0)
3897 path
= concat (path
, ".", (const char *) 0);
3899 include_paths
[include_path_count
- 1] = path
;
3903 adjust_addresses (bfd
*abfd ATTRIBUTE_UNUSED
,
3907 if ((section
->flags
& SEC_DEBUGGING
) == 0)
3909 bfd_boolean
*has_reloc_p
= (bfd_boolean
*) arg
;
3910 section
->vma
+= adjust_section_vma
;
3912 section
->lma
+= adjust_section_vma
;
3916 /* Return the sign-extended form of an ARCH_SIZE sized VMA. */
3919 sign_extend_address (bfd
*abfd ATTRIBUTE_UNUSED
,
3924 mask
= (bfd_vma
) 1 << (arch_size
- 1);
3925 return (((vma
& ((mask
<< 1) - 1)) ^ mask
) - mask
);
3928 /* Dump selected contents of ABFD. */
3931 dump_bfd (bfd
*abfd
, bfd_boolean is_mainfile
)
3933 const struct elf_backend_data
* bed
;
3935 if (bfd_big_endian (abfd
))
3936 byte_get
= byte_get_big_endian
;
3937 else if (bfd_little_endian (abfd
))
3938 byte_get
= byte_get_little_endian
;
3942 /* Load any separate debug information files.
3943 We do this now and without checking do_follow_links because separate
3944 debug info files may contain symbol tables that we will need when
3945 displaying information about the main file. Any memory allocated by
3946 load_separate_debug_files will be released when we call
3947 free_debug_memory below.
3949 The test on is_mainfile is there because the chain of separate debug
3950 info files is a global variable shared by all invocations of dump_bfd. */
3953 load_separate_debug_files (abfd
, bfd_get_filename (abfd
));
3955 /* If asked to do so, recursively dump the separate files. */
3956 if (do_follow_links
)
3960 for (i
= first_separate_info
; i
!= NULL
; i
= i
->next
)
3961 dump_bfd (i
->handle
, FALSE
);
3965 /* Adjust user-specified start and stop limits for targets that use
3966 signed addresses. */
3967 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
3968 && (bed
= get_elf_backend_data (abfd
)) != NULL
3969 && bed
->sign_extend_vma
)
3971 start_address
= sign_extend_address (abfd
, start_address
,
3973 stop_address
= sign_extend_address (abfd
, stop_address
,
3977 /* If we are adjusting section VMA's, change them all now. Changing
3978 the BFD information is a hack. However, we must do it, or
3979 bfd_find_nearest_line will not do the right thing. */
3980 if (adjust_section_vma
!= 0)
3982 bfd_boolean has_reloc
= (abfd
->flags
& HAS_RELOC
);
3983 bfd_map_over_sections (abfd
, adjust_addresses
, &has_reloc
);
3986 if (! dump_debugging_tags
&& ! suppress_bfd_header
)
3987 printf (_("\n%s: file format %s\n"),
3988 sanitize_string (bfd_get_filename (abfd
)),
3991 print_arelt_descr (stdout
, abfd
, TRUE
, FALSE
);
3992 if (dump_file_header
)
3993 dump_bfd_header (abfd
);
3994 if (dump_private_headers
)
3995 dump_bfd_private_header (abfd
);
3996 if (dump_private_options
!= NULL
)
3997 dump_target_specific (abfd
);
3998 if (! dump_debugging_tags
&& ! suppress_bfd_header
)
4005 || dump_dwarf_section_info
)
4007 syms
= slurp_symtab (abfd
);
4009 /* If following links, load any symbol tables from the linked files as well. */
4010 if (do_follow_links
&& is_mainfile
)
4014 for (i
= first_separate_info
; i
!= NULL
; i
= i
->next
)
4016 asymbol
** extra_syms
;
4017 long old_symcount
= symcount
;
4019 extra_syms
= slurp_symtab (i
->handle
);
4023 if (old_symcount
== 0)
4029 syms
= xrealloc (syms
, (symcount
+ old_symcount
) * sizeof (asymbol
*));
4030 memcpy (syms
+ old_symcount
,
4032 symcount
* sizeof (asymbol
*));
4036 symcount
+= old_symcount
;
4041 if (dump_section_headers
)
4042 dump_headers (abfd
);
4044 if (dump_dynamic_symtab
|| dump_dynamic_reloc_info
4045 || (disassemble
&& bfd_get_dynamic_symtab_upper_bound (abfd
) > 0))
4046 dynsyms
= slurp_dynamic_symtab (abfd
);
4050 synthcount
= bfd_get_synthetic_symtab (abfd
, symcount
, syms
,
4051 dynsymcount
, dynsyms
, &synthsyms
);
4057 dump_symbols (abfd
, FALSE
);
4058 if (dump_dynamic_symtab
)
4059 dump_symbols (abfd
, TRUE
);
4060 if (dump_dwarf_section_info
)
4062 if (dump_ctf_section_info
)
4063 dump_ctf (abfd
, dump_ctf_section_name
, dump_ctf_parent_name
);
4064 if (dump_stab_section_info
)
4066 if (dump_reloc_info
&& ! disassemble
)
4068 if (dump_dynamic_reloc_info
&& ! disassemble
)
4069 dump_dynamic_relocs (abfd
);
4070 if (dump_section_contents
)
4073 disassemble_data (abfd
);
4079 dhandle
= read_debugging_info (abfd
, syms
, symcount
, TRUE
);
4080 if (dhandle
!= NULL
)
4082 if (!print_debugging_info (stdout
, dhandle
, abfd
, syms
,
4084 dump_debugging_tags
? TRUE
: FALSE
))
4086 non_fatal (_("%s: printing debugging information failed"),
4087 bfd_get_filename (abfd
));
4093 /* PR 6483: If there was no STABS debug info in the file, try
4095 else if (! dump_dwarf_section_info
)
4097 dwarf_select_sections_all ();
4125 free_debug_memory ();
4129 display_object_bfd (bfd
*abfd
)
4133 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
4135 dump_bfd (abfd
, TRUE
);
4139 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
4141 nonfatal (bfd_get_filename (abfd
));
4142 list_matching_formats (matching
);
4147 if (bfd_get_error () != bfd_error_file_not_recognized
)
4149 nonfatal (bfd_get_filename (abfd
));
4153 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
4155 dump_bfd (abfd
, TRUE
);
4159 nonfatal (bfd_get_filename (abfd
));
4161 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
4163 list_matching_formats (matching
);
4169 display_any_bfd (bfd
*file
, int level
)
4171 /* Decompress sections unless dumping the section contents. */
4172 if (!dump_section_contents
)
4173 file
->flags
|= BFD_DECOMPRESS
;
4175 /* If the file is an archive, process all of its elements. */
4176 if (bfd_check_format (file
, bfd_archive
))
4179 bfd
*last_arfile
= NULL
;
4182 printf (_("In archive %s:\n"), sanitize_string (bfd_get_filename (file
)));
4183 else if (level
> 100)
4185 /* Prevent corrupted files from spinning us into an
4186 infinite loop. 100 is an arbitrary heuristic. */
4187 fatal (_("Archive nesting is too deep"));
4191 printf (_("In nested archive %s:\n"),
4192 sanitize_string (bfd_get_filename (file
)));
4196 bfd_set_error (bfd_error_no_error
);
4198 arfile
= bfd_openr_next_archived_file (file
, arfile
);
4201 if (bfd_get_error () != bfd_error_no_more_archived_files
)
4202 nonfatal (bfd_get_filename (file
));
4206 display_any_bfd (arfile
, level
+ 1);
4208 if (last_arfile
!= NULL
)
4210 bfd_close (last_arfile
);
4211 /* PR 17512: file: ac585d01. */
4212 if (arfile
== last_arfile
)
4218 last_arfile
= arfile
;
4221 if (last_arfile
!= NULL
)
4222 bfd_close (last_arfile
);
4225 display_object_bfd (file
);
4229 display_file (char *filename
, char *target
, bfd_boolean last_file
)
4233 if (get_file_size (filename
) < 1)
4239 file
= bfd_openr (filename
, target
);
4242 nonfatal (filename
);
4246 display_any_bfd (file
, 0);
4248 /* This is an optimization to improve the speed of objdump, especially when
4249 dumping a file with lots of associated debug informatiom. Calling
4250 bfd_close on such a file can take a non-trivial amount of time as there
4251 are lots of lists to walk and buffers to free. This is only really
4252 necessary however if we are about to load another file and we need the
4253 memory back. Otherwise, if we are about to exit, then we can save (a lot
4254 of) time by only doing a quick close, and allowing the OS to reclaim the
4259 bfd_close_all_done (file
);
4263 main (int argc
, char **argv
)
4266 char *target
= default_target
;
4267 bfd_boolean seenflag
= FALSE
;
4269 #if defined (HAVE_SETLOCALE)
4270 #if defined (HAVE_LC_MESSAGES)
4271 setlocale (LC_MESSAGES
, "");
4273 setlocale (LC_CTYPE
, "");
4276 bindtextdomain (PACKAGE
, LOCALEDIR
);
4277 textdomain (PACKAGE
);
4279 program_name
= *argv
;
4280 xmalloc_set_program_name (program_name
);
4281 bfd_set_error_program_name (program_name
);
4283 START_PROGRESS (program_name
, 0);
4285 expandargv (&argc
, &argv
);
4287 if (bfd_init () != BFD_INIT_MAGIC
)
4288 fatal (_("fatal error: libbfd ABI mismatch"));
4289 set_default_bfd_target ();
4291 while ((c
= getopt_long (argc
, argv
,
4292 "pP:ib:m:M:VvCdDlfFaHhrRtTxsSI:j:wE:zgeGW::",
4293 long_options
, (int *) 0))
4299 break; /* We've been given a long option. */
4306 if (disassembler_options
)
4307 /* Ignore potential memory leak for now. */
4308 options
= concat (disassembler_options
, ",",
4309 optarg
, (const char *) NULL
);
4312 disassembler_options
= remove_whitespace_and_extra_commas (options
);
4319 display_file_offsets
= TRUE
;
4322 with_line_numbers
= TRUE
;
4331 enum demangling_styles style
;
4333 style
= cplus_demangle_name_to_style (optarg
);
4334 if (style
== unknown_demangling
)
4335 fatal (_("unknown demangling style `%s'"),
4338 cplus_demangle_set_style (style
);
4341 case OPTION_RECURSE_LIMIT
:
4342 demangle_flags
&= ~ DMGL_NO_RECURSE_LIMIT
;
4344 case OPTION_NO_RECURSE_LIMIT
:
4345 demangle_flags
|= DMGL_NO_RECURSE_LIMIT
;
4348 do_wide
= wide_output
= TRUE
;
4350 case OPTION_ADJUST_VMA
:
4351 adjust_section_vma
= parse_vma (optarg
, "--adjust-vma");
4353 case OPTION_START_ADDRESS
:
4354 start_address
= parse_vma (optarg
, "--start-address");
4355 if ((stop_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
4356 fatal (_("error: the start address should be before the end address"));
4358 case OPTION_STOP_ADDRESS
:
4359 stop_address
= parse_vma (optarg
, "--stop-address");
4360 if ((start_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
4361 fatal (_("error: the stop address should be after the start address"));
4365 prefix_length
= strlen (prefix
);
4366 /* Remove an unnecessary trailing '/' */
4367 while (IS_DIR_SEPARATOR (prefix
[prefix_length
- 1]))
4370 case OPTION_PREFIX_STRIP
:
4371 prefix_strip
= atoi (optarg
);
4372 if (prefix_strip
< 0)
4373 fatal (_("error: prefix strip must be non-negative"));
4375 case OPTION_INSN_WIDTH
:
4376 insn_width
= strtoul (optarg
, NULL
, 0);
4377 if (insn_width
<= 0)
4378 fatal (_("error: instruction width must be positive"));
4380 case OPTION_INLINES
:
4381 unwind_inlines
= TRUE
;
4384 if (strcmp (optarg
, "B") == 0)
4385 endian
= BFD_ENDIAN_BIG
;
4386 else if (strcmp (optarg
, "L") == 0)
4387 endian
= BFD_ENDIAN_LITTLE
;
4390 nonfatal (_("unrecognized -E option"));
4395 if (strncmp (optarg
, "big", strlen (optarg
)) == 0)
4396 endian
= BFD_ENDIAN_BIG
;
4397 else if (strncmp (optarg
, "little", strlen (optarg
)) == 0)
4398 endian
= BFD_ENDIAN_LITTLE
;
4401 non_fatal (_("unrecognized --endian type `%s'"), optarg
);
4408 dump_file_header
= TRUE
;
4412 formats_info
= TRUE
;
4416 add_include_path (optarg
);
4419 dump_private_headers
= TRUE
;
4423 dump_private_options
= optarg
;
4427 dump_private_headers
= TRUE
;
4429 dump_reloc_info
= TRUE
;
4430 dump_file_header
= TRUE
;
4431 dump_ar_hdrs
= TRUE
;
4432 dump_section_headers
= TRUE
;
4440 dump_dynamic_symtab
= TRUE
;
4446 disasm_sym
= optarg
;
4449 disassemble_zeroes
= TRUE
;
4453 disassemble_all
= TRUE
;
4458 with_source_code
= TRUE
;
4467 dump_debugging_tags
= 1;
4472 dump_dwarf_section_info
= TRUE
;
4475 dwarf_select_sections_by_letters (optarg
);
4477 dwarf_select_sections_all ();
4480 dump_dwarf_section_info
= TRUE
;
4483 dwarf_select_sections_by_names (optarg
);
4485 dwarf_select_sections_all ();
4487 case OPTION_DWARF_DEPTH
:
4490 dwarf_cutoff_level
= strtoul (optarg
, & cp
, 0);
4493 case OPTION_DWARF_START
:
4496 dwarf_start_die
= strtoul (optarg
, & cp
, 0);
4497 suppress_bfd_header
= 1;
4500 case OPTION_DWARF_CHECK
:
4504 dump_ctf_section_info
= TRUE
;
4505 dump_ctf_section_name
= xstrdup (optarg
);
4508 case OPTION_CTF_PARENT
:
4509 dump_ctf_parent_name
= xstrdup (optarg
);
4512 dump_stab_section_info
= TRUE
;
4516 dump_section_contents
= TRUE
;
4520 dump_reloc_info
= TRUE
;
4524 dump_dynamic_reloc_info
= TRUE
;
4528 dump_ar_hdrs
= TRUE
;
4532 dump_section_headers
= TRUE
;
4537 show_version
= TRUE
;
4543 /* No need to set seenflag or to break - usage() does not return. */
4550 print_version ("objdump");
4556 exit_status
= display_info ();
4560 display_file ("a.out", target
, TRUE
);
4562 for (; optind
< argc
;)
4564 display_file (argv
[optind
], target
, optind
== argc
- 1);
4570 free (dump_ctf_section_name
);
4571 free (dump_ctf_parent_name
);
4573 END_PROGRESS (program_name
);