1 /* objdump.c -- dump information about an object file.
2 Copyright (C) 1990-2024 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. */
57 #include "demanguse.h"
60 #include "sframe-api.h"
62 #include "safe-ctype.h"
64 #include "libiberty.h"
66 #include "filenames.h"
75 #ifdef HAVE_LIBDEBUGINFOD
76 #include <elfutils/debuginfod.h>
79 /* Internal headers for the ELF .stab-dump code - sorry. */
80 #define BYTES_IN_WORD 32
81 #include "aout/aout64.h"
84 static int exit_status
= 0;
86 static char *default_target
= NULL
; /* Default at runtime. */
88 /* The following variables are set based on arguments passed on the
90 static int show_version
= 0; /* Show the version number. */
91 static int dump_section_contents
; /* -s */
92 static int dump_section_headers
; /* -h */
93 static bool dump_file_header
; /* -f */
94 static int dump_symtab
; /* -t */
95 static int dump_dynamic_symtab
; /* -T */
96 static int dump_reloc_info
; /* -r */
97 static int dump_dynamic_reloc_info
; /* -R */
98 static int dump_ar_hdrs
; /* -a */
99 static int dump_private_headers
; /* -p */
100 static char *dump_private_options
; /* -P */
101 static int no_addresses
; /* --no-addresses */
102 static int prefix_addresses
; /* --prefix-addresses */
103 static int with_line_numbers
; /* -l */
104 static bool with_source_code
; /* -S */
105 static int show_raw_insn
; /* --show-raw-insn */
106 static int dump_dwarf_section_info
; /* --dwarf */
107 static int dump_stab_section_info
; /* --stabs */
108 static int dump_ctf_section_info
; /* --ctf */
109 static char *dump_ctf_section_name
;
110 static char *dump_ctf_parent_name
; /* --ctf-parent */
111 static char *dump_ctf_parent_section_name
; /* --ctf-parent-section */
112 static int dump_sframe_section_info
; /* --sframe */
113 static char *dump_sframe_section_name
;
114 static int do_demangle
; /* -C, --demangle */
115 static bool disassemble
; /* -d */
116 static bool disassemble_all
; /* -D */
117 static int disassemble_zeroes
; /* --disassemble-zeroes */
118 static bool formats_info
; /* -i */
119 int wide_output
; /* -w */
120 static int insn_width
; /* --insn-width */
121 static bfd_vma start_address
= (bfd_vma
) -1; /* --start-address */
122 static bfd_vma stop_address
= (bfd_vma
) -1; /* --stop-address */
123 static int dump_debugging
; /* --debugging */
124 static int dump_debugging_tags
; /* --debugging-tags */
125 static int suppress_bfd_header
;
126 static int dump_special_syms
= 0; /* --special-syms */
127 static bfd_vma adjust_section_vma
= 0; /* --adjust-vma */
128 static int file_start_context
= 0; /* --file-start-context */
129 static bool display_file_offsets
; /* -F */
130 static const char *prefix
; /* --prefix */
131 static int prefix_strip
; /* --prefix-strip */
132 static size_t prefix_length
;
133 static bool unwind_inlines
; /* --inlines. */
134 static const char * disasm_sym
; /* Disassembly start symbol. */
135 static const char * source_comment
; /* --source_comment. */
136 static bool visualize_jumps
= false; /* --visualize-jumps. */
137 static bool color_output
= false; /* --visualize-jumps=color. */
138 static bool extended_color_output
= false; /* --visualize-jumps=extended-color. */
139 static int process_links
= false; /* --process-links. */
140 static int show_all_symbols
; /* --show-all-symbols. */
141 static bool decompressed_dumps
= false; /* -Z, --decompress. */
143 static enum color_selection
145 on_if_terminal_output
,
146 on
, /* --disassembler-color=color. */
147 off
, /* --disassembler-color=off. */
148 extended
/* --disassembler-color=extended-color. */
149 } disassembler_color
=
150 #if DEFAULT_FOR_COLORED_DISASSEMBLY
151 on_if_terminal_output
;
156 static int dump_any_debugging
;
157 static int demangle_flags
= DMGL_ANSI
| DMGL_PARAMS
;
159 /* This is reset to false each time we enter the disassembler, and set true
160 when the disassembler emits something in the dis_style_comment_start
161 style. Once this is true, all further output on that line is done in
162 the comment style. This only has an effect when disassembler coloring
164 static bool disassembler_in_comment
= false;
166 /* A structure to record the sections mentioned in -j switches. */
169 const char *name
; /* The name of the section. */
170 bool seen
; /* A flag to indicate that the section has been found in one or more input files. */
171 struct only
*next
; /* Pointer to the next structure in the list. */
173 /* Pointer to an array of 'only' structures.
174 This pointer is NULL if the -j switch has not been used. */
175 static struct only
* only_list
= NULL
;
177 /* Variables for handling include file path table. */
178 static const char **include_paths
;
179 static int include_path_count
;
181 /* Extra info to pass to the section disassembler and address printing
183 struct objdump_disasm_info
187 disassembler_ftype disassemble_fn
;
192 /* Architecture to disassemble for, or default if NULL. */
193 static char *machine
= NULL
;
195 /* Target specific options to the disassembler. */
196 static char *disassembler_options
= NULL
;
198 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
199 static enum bfd_endian endian
= BFD_ENDIAN_UNKNOWN
;
201 /* The symbol table. */
202 static asymbol
**syms
;
204 /* Number of symbols in `syms'. */
205 static long symcount
= 0;
207 /* The sorted symbol table. */
208 static asymbol
**sorted_syms
;
210 /* Number of symbols in `sorted_syms'. */
211 static long sorted_symcount
= 0;
213 /* The dynamic symbol table. */
214 static asymbol
**dynsyms
;
216 /* The synthetic symbol table. */
217 static asymbol
*synthsyms
;
218 static long synthcount
= 0;
220 /* Number of symbols in `dynsyms'. */
221 static long dynsymcount
= 0;
223 static bfd_byte
*stabs
;
224 static bfd_size_type stab_size
;
226 static bfd_byte
*strtab
;
227 static bfd_size_type stabstr_size
;
229 /* Handlers for -P/--private. */
230 static const struct objdump_private_desc
* const objdump_private_vectors
[] =
232 OBJDUMP_PRIVATE_VECTORS
236 /* The list of detected jumps inside a function. */
237 static struct jump_info
*detected_jumps
= NULL
;
239 typedef enum unicode_display_type
247 } unicode_display_type
;
249 static unicode_display_type unicode_display
= unicode_default
;
251 static void usage (FILE *, int) ATTRIBUTE_NORETURN
;
253 usage (FILE *stream
, int status
)
255 fprintf (stream
, _("Usage: %s <option(s)> <file(s)>\n"), program_name
);
256 fprintf (stream
, _(" Display information from object <file(s)>.\n"));
257 fprintf (stream
, _(" At least one of the following switches must be given:\n"));
258 fprintf (stream
, _("\
259 -a, --archive-headers Display archive header information\n"));
260 fprintf (stream
, _("\
261 -f, --file-headers Display the contents of the overall file header\n"));
262 fprintf (stream
, _("\
263 -p, --private-headers Display object format specific file header contents\n"));
264 fprintf (stream
, _("\
265 -P, --private=OPT,OPT... Display object format specific contents\n"));
266 fprintf (stream
, _("\
267 -h, --[section-]headers Display the contents of the section headers\n"));
268 fprintf (stream
, _("\
269 -x, --all-headers Display the contents of all headers\n"));
270 fprintf (stream
, _("\
271 -d, --disassemble Display assembler contents of executable sections\n"));
272 fprintf (stream
, _("\
273 -D, --disassemble-all Display assembler contents of all sections\n"));
274 fprintf (stream
, _("\
275 --disassemble=<sym> Display assembler contents from <sym>\n"));
276 fprintf (stream
, _("\
277 -S, --source Intermix source code with disassembly\n"));
278 fprintf (stream
, _("\
279 --source-comment[=<txt>] Prefix lines of source code with <txt>\n"));
280 fprintf (stream
, _("\
281 -s, --full-contents Display the full contents of all sections requested\n"));
282 fprintf (stream
, _("\
283 -Z, --decompress Decompress section(s) before displaying their contents\n"));
284 fprintf (stream
, _("\
285 -g, --debugging Display debug information in object file\n"));
286 fprintf (stream
, _("\
287 -e, --debugging-tags Display debug information using ctags style\n"));
288 fprintf (stream
, _("\
289 -G, --stabs Display (in raw form) any STABS info in the file\n"));
290 fprintf (stream
, _("\
291 -W, --dwarf[a/=abbrev, A/=addr, r/=aranges, c/=cu_index, L/=decodedline,\n\
292 f/=frames, F/=frames-interp, g/=gdb_index, i/=info, o/=loc,\n\
293 m/=macro, p/=pubnames, t/=pubtypes, R/=Ranges, l/=rawline,\n\
294 s/=str, O/=str-offsets, u/=trace_abbrev, T/=trace_aranges,\n\
296 Display the contents of DWARF debug sections\n"));
297 fprintf (stream
, _("\
298 -Wk,--dwarf=links Display the contents of sections that link to\n\
299 separate debuginfo files\n"));
300 #if DEFAULT_FOR_FOLLOW_LINKS
301 fprintf (stream
, _("\
302 -WK,--dwarf=follow-links\n\
303 Follow links to separate debug info files (default)\n"));
304 fprintf (stream
, _("\
305 -WN,--dwarf=no-follow-links\n\
306 Do not follow links to separate debug info files\n"));
308 fprintf (stream
, _("\
309 -WK,--dwarf=follow-links\n\
310 Follow links to separate debug info files\n"));
311 fprintf (stream
, _("\
312 -WN,--dwarf=no-follow-links\n\
313 Do not follow links to separate debug info files\n\
316 #if HAVE_LIBDEBUGINFOD
317 fprintf (stream
, _("\
318 -WD --dwarf=use-debuginfod\n\
319 When following links, also query debuginfod servers (default)\n"));
320 fprintf (stream
, _("\
321 -WE --dwarf=do-not-use-debuginfod\n\
322 When following links, do not query debuginfod servers\n"));
324 fprintf (stream
, _("\
325 -L, --process-links Display the contents of non-debug sections in\n\
326 separate debuginfo files. (Implies -WK)\n"));
328 fprintf (stream
, _("\
329 --ctf[=SECTION] Display CTF info from SECTION, (default `.ctf')\n"));
331 fprintf (stream
, _("\
332 --sframe[=SECTION] Display SFrame info from SECTION, (default '.sframe')\n"));
333 fprintf (stream
, _("\
334 -t, --syms Display the contents of the symbol table(s)\n"));
335 fprintf (stream
, _("\
336 -T, --dynamic-syms Display the contents of the dynamic symbol table\n"));
337 fprintf (stream
, _("\
338 -r, --reloc Display the relocation entries in the file\n"));
339 fprintf (stream
, _("\
340 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n"));
341 fprintf (stream
, _("\
342 @<file> Read options from <file>\n"));
343 fprintf (stream
, _("\
344 -v, --version Display this program's version number\n"));
345 fprintf (stream
, _("\
346 -i, --info List object formats and architectures supported\n"));
347 fprintf (stream
, _("\
348 -H, --help Display this information\n"));
352 const struct objdump_private_desc
* const *desc
;
354 fprintf (stream
, _("\n The following switches are optional:\n"));
355 fprintf (stream
, _("\
356 -b, --target=BFDNAME Specify the target object format as BFDNAME\n"));
357 fprintf (stream
, _("\
358 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n"));
359 fprintf (stream
, _("\
360 -j, --section=NAME Only display information for section NAME\n"));
361 fprintf (stream
, _("\
362 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n"));
363 fprintf (stream
, _("\
364 -EB --endian=big Assume big endian format when disassembling\n"));
365 fprintf (stream
, _("\
366 -EL --endian=little Assume little endian format when disassembling\n"));
367 fprintf (stream
, _("\
368 --file-start-context Include context from start of file (with -S)\n"));
369 fprintf (stream
, _("\
370 -I, --include=DIR Add DIR to search list for source files\n"));
371 fprintf (stream
, _("\
372 -l, --line-numbers Include line numbers and filenames in output\n"));
373 fprintf (stream
, _("\
374 -F, --file-offsets Include file offsets when displaying information\n"));
375 fprintf (stream
, _("\
376 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n"));
377 display_demangler_styles (stream
, _("\
379 fprintf (stream
, _("\
380 --recurse-limit Enable a limit on recursion whilst demangling\n\
382 fprintf (stream
, _("\
383 --no-recurse-limit Disable a limit on recursion whilst demangling\n"));
384 fprintf (stream
, _("\
385 -w, --wide Format output for more than 80 columns\n"));
386 fprintf (stream
, _("\
387 -U[d|l|i|x|e|h] Controls the display of UTF-8 unicode characters\n\
388 --unicode=[default|locale|invalid|hex|escape|highlight]\n"));
389 fprintf (stream
, _("\
390 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n"));
391 fprintf (stream
, _("\
392 --start-address=ADDR Only process data whose address is >= ADDR\n"));
393 fprintf (stream
, _("\
394 --stop-address=ADDR Only process data whose address is < ADDR\n"));
395 fprintf (stream
, _("\
396 --no-addresses Do not print address alongside disassembly\n"));
397 fprintf (stream
, _("\
398 --prefix-addresses Print complete address alongside disassembly\n"));
399 fprintf (stream
, _("\
400 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n"));
401 fprintf (stream
, _("\
402 --insn-width=WIDTH Display WIDTH bytes on a single line for -d\n"));
403 fprintf (stream
, _("\
404 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n"));
405 fprintf (stream
, _("\
406 --show-all-symbols When disassembling, display all symbols at a given address\n"));
407 fprintf (stream
, _("\
408 --special-syms Include special symbols in symbol dumps\n"));
409 fprintf (stream
, _("\
410 --inlines Print all inlines for source line (with -l)\n"));
411 fprintf (stream
, _("\
412 --prefix=PREFIX Add PREFIX to absolute paths for -S\n"));
413 fprintf (stream
, _("\
414 --prefix-strip=LEVEL Strip initial directory names for -S\n"));
415 fprintf (stream
, _("\
416 --dwarf-depth=N Do not display DIEs at depth N or greater\n"));
417 fprintf (stream
, _("\
418 --dwarf-start=N Display DIEs starting at offset N\n"));
419 fprintf (stream
, _("\
420 --dwarf-check Make additional dwarf consistency checks.\n"));
422 fprintf (stream
, _("\
423 --ctf-parent=NAME Use CTF archive member NAME as the CTF parent\n"));
425 fprintf (stream
, _("\
426 --visualize-jumps Visualize jumps by drawing ASCII art lines\n"));
427 fprintf (stream
, _("\
428 --visualize-jumps=color Use colors in the ASCII art\n"));
429 fprintf (stream
, _("\
430 --visualize-jumps=extended-color\n\
431 Use extended 8-bit color codes\n"));
432 fprintf (stream
, _("\
433 --visualize-jumps=off Disable jump visualization\n"));
434 #if DEFAULT_FOR_COLORED_DISASSEMBLY
435 fprintf (stream
, _("\
436 --disassembler-color=off Disable disassembler color output.\n"));
437 fprintf (stream
, _("\
438 --disassembler-color=terminal Enable disassembler color output if displaying on a terminal. (default)\n"));
440 fprintf (stream
, _("\
441 --disassembler-color=off Disable disassembler color output. (default)\n"));
442 fprintf (stream
, _("\
443 --disassembler-color=terminal Enable disassembler color output if displaying on a terminal.\n"));
445 fprintf (stream
, _("\
446 --disassembler-color=on Enable disassembler color output.\n"));
447 fprintf (stream
, _("\
448 --disassembler-color=extended Use 8-bit colors in disassembler output.\n\n"));
450 list_supported_targets (program_name
, stream
);
451 list_supported_architectures (program_name
, stream
);
453 disassembler_usage (stream
);
455 if (objdump_private_vectors
[0] != NULL
)
458 _("\nOptions supported for -P/--private switch:\n"));
459 for (desc
= objdump_private_vectors
; *desc
!= NULL
; desc
++)
460 (*desc
)->help (stream
);
463 if (REPORT_BUGS_TO
[0] && status
== 0)
464 fprintf (stream
, _("Report bugs to %s.\n"), REPORT_BUGS_TO
);
468 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
472 OPTION_START_ADDRESS
,
482 OPTION_RECURSE_LIMIT
,
483 OPTION_NO_RECURSE_LIMIT
,
485 OPTION_SOURCE_COMMENT
,
489 OPTION_CTF_PARENT_SECTION
,
492 OPTION_VISUALIZE_JUMPS
,
493 OPTION_DISASSEMBLER_COLOR
496 static struct option long_options
[]=
498 {"adjust-vma", required_argument
, NULL
, OPTION_ADJUST_VMA
},
499 {"all-headers", no_argument
, NULL
, 'x'},
500 {"architecture", required_argument
, NULL
, 'm'},
501 {"archive-headers", no_argument
, NULL
, 'a'},
503 {"ctf", optional_argument
, NULL
, OPTION_CTF
},
504 {"ctf-parent", required_argument
, NULL
, OPTION_CTF_PARENT
},
505 {"ctf-parent-section", required_argument
, NULL
, OPTION_CTF_PARENT_SECTION
},
507 {"debugging", no_argument
, NULL
, 'g'},
508 {"debugging-tags", no_argument
, NULL
, 'e'},
509 {"decompress", no_argument
, NULL
, 'Z'},
510 {"demangle", optional_argument
, NULL
, 'C'},
511 {"disassemble", optional_argument
, NULL
, 'd'},
512 {"disassemble-all", no_argument
, NULL
, 'D'},
513 {"disassemble-zeroes", no_argument
, NULL
, 'z'},
514 {"disassembler-options", required_argument
, NULL
, 'M'},
515 {"dwarf", optional_argument
, NULL
, OPTION_DWARF
},
516 {"dwarf-check", no_argument
, 0, OPTION_DWARF_CHECK
},
517 {"dwarf-depth", required_argument
, 0, OPTION_DWARF_DEPTH
},
518 {"dwarf-start", required_argument
, 0, OPTION_DWARF_START
},
519 {"dynamic-reloc", no_argument
, NULL
, 'R'},
520 {"dynamic-syms", no_argument
, NULL
, 'T'},
521 {"endian", required_argument
, NULL
, OPTION_ENDIAN
},
522 {"file-headers", no_argument
, NULL
, 'f'},
523 {"file-offsets", no_argument
, NULL
, 'F'},
524 {"file-start-context", no_argument
, &file_start_context
, 1},
525 {"full-contents", no_argument
, NULL
, 's'},
526 {"headers", no_argument
, NULL
, 'h'},
527 {"help", no_argument
, NULL
, 'H'},
528 {"include", required_argument
, NULL
, 'I'},
529 {"info", no_argument
, NULL
, 'i'},
530 {"inlines", no_argument
, 0, OPTION_INLINES
},
531 {"insn-width", required_argument
, NULL
, OPTION_INSN_WIDTH
},
532 {"line-numbers", no_argument
, NULL
, 'l'},
533 {"no-addresses", no_argument
, &no_addresses
, 1},
534 {"no-recurse-limit", no_argument
, NULL
, OPTION_NO_RECURSE_LIMIT
},
535 {"no-recursion-limit", no_argument
, NULL
, OPTION_NO_RECURSE_LIMIT
},
536 {"no-show-raw-insn", no_argument
, &show_raw_insn
, -1},
537 {"prefix", required_argument
, NULL
, OPTION_PREFIX
},
538 {"prefix-addresses", no_argument
, &prefix_addresses
, 1},
539 {"prefix-strip", required_argument
, NULL
, OPTION_PREFIX_STRIP
},
540 {"private", required_argument
, NULL
, 'P'},
541 {"private-headers", no_argument
, NULL
, 'p'},
542 {"process-links", no_argument
, &process_links
, true},
543 {"recurse-limit", no_argument
, NULL
, OPTION_RECURSE_LIMIT
},
544 {"recursion-limit", no_argument
, NULL
, OPTION_RECURSE_LIMIT
},
545 {"reloc", no_argument
, NULL
, 'r'},
546 {"section", required_argument
, NULL
, 'j'},
547 {"section-headers", no_argument
, NULL
, 'h'},
548 {"sframe", optional_argument
, NULL
, OPTION_SFRAME
},
549 {"show-all-symbols", no_argument
, &show_all_symbols
, 1},
550 {"show-raw-insn", no_argument
, &show_raw_insn
, 1},
551 {"source", no_argument
, NULL
, 'S'},
552 {"source-comment", optional_argument
, NULL
, OPTION_SOURCE_COMMENT
},
553 {"special-syms", no_argument
, &dump_special_syms
, 1},
554 {"stabs", no_argument
, NULL
, 'G'},
555 {"start-address", required_argument
, NULL
, OPTION_START_ADDRESS
},
556 {"stop-address", required_argument
, NULL
, OPTION_STOP_ADDRESS
},
557 {"syms", no_argument
, NULL
, 't'},
558 {"target", required_argument
, NULL
, 'b'},
559 {"unicode", required_argument
, NULL
, 'U'},
560 {"version", no_argument
, NULL
, 'V'},
561 {"visualize-jumps", optional_argument
, 0, OPTION_VISUALIZE_JUMPS
},
562 {"wide", no_argument
, NULL
, 'w'},
563 {"disassembler-color", required_argument
, NULL
, OPTION_DISASSEMBLER_COLOR
},
564 {NULL
, no_argument
, NULL
, 0}
568 my_bfd_nonfatal (const char *msg
)
574 /* Convert a potential UTF-8 encoded sequence in IN into characters in OUT.
575 The conversion format is controlled by the unicode_display variable.
576 Returns the number of characters added to OUT.
577 Returns the number of bytes consumed from IN in CONSUMED.
578 Always consumes at least one byte and displays at least one character. */
581 display_utf8 (const unsigned char * in
, char * out
, unsigned int * consumed
)
583 char * orig_out
= out
;
584 unsigned int nchars
= 0;
587 if (unicode_display
== unicode_default
)
593 if ((in
[1] & 0xc0) != 0x80)
596 if ((in
[0] & 0x20) == 0)
602 if ((in
[2] & 0xc0) != 0x80)
605 if ((in
[0] & 0x10) == 0)
611 if ((in
[3] & 0xc0) != 0x80)
617 switch (unicode_display
)
620 /* Copy the bytes into the output buffer as is. */
621 memcpy (out
, in
, nchars
);
625 case unicode_invalid
:
627 *out
++ = unicode_display
== unicode_hex
? '<' : '{';
630 for (j
= 0; j
< nchars
; j
++)
631 out
+= sprintf (out
, "%02x", in
[j
]);
632 *out
++ = unicode_display
== unicode_hex
? '>' : '}';
635 case unicode_highlight
:
637 out
+= sprintf (out
, "\x1B[31;47m"); /* Red. */
643 out
+= sprintf (out
, "\\u%02x%02x",
644 ((in
[0] & 0x1c) >> 2),
645 ((in
[0] & 0x03) << 6) | (in
[1] & 0x3f));
649 out
+= sprintf (out
, "\\u%02x%02x",
650 ((in
[0] & 0x0f) << 4) | ((in
[1] & 0x3c) >> 2),
651 ((in
[1] & 0x03) << 6) | ((in
[2] & 0x3f)));
655 out
+= sprintf (out
, "\\u%02x%02x%02x",
656 ((in
[0] & 0x07) << 6) | ((in
[1] & 0x3c) >> 2),
657 ((in
[1] & 0x03) << 6) | ((in
[2] & 0x3c) >> 2),
658 ((in
[2] & 0x03) << 6) | ((in
[3] & 0x3f)));
665 if (unicode_display
== unicode_highlight
&& isatty (1))
666 out
+= sprintf (out
, "\x1B[0m"); /* Default colour. */
675 return out
- orig_out
;
678 /* Not a valid UTF-8 sequence. */
684 /* Returns a version of IN with any control characters
685 replaced by escape sequences. Uses a static buffer
688 If unicode display is enabled, then also handles the
689 conversion of unicode characters. */
692 sanitize_string (const char * in
)
694 static char * buffer
= NULL
;
695 static size_t buffer_len
= 0;
696 const char * original
= in
;
703 /* See if any conversion is necessary. In the majority
704 of cases it will not be needed. */
707 unsigned char c
= *in
++;
715 if (unicode_display
!= unicode_default
&& c
>= 0xc0)
720 /* Copy the input, translating as needed. */
722 /* For 2 char unicode, max out is 12 (colour escapes) + 6, ie. 9 per in
723 For hex, max out is 8 for 2 char unicode, ie. 4 per in.
724 3 and 4 char unicode produce less output for input. */
725 size_t max_needed
= strlen (in
) * 9 + 1;
726 if (buffer_len
< max_needed
)
728 buffer_len
= max_needed
;
730 buffer
= xmalloc (buffer_len
);
736 unsigned char c
= *in
++;
746 else if (unicode_display
!= unicode_default
&& c
>= 0xc0)
748 unsigned int num_consumed
;
750 out
+= display_utf8 ((const unsigned char *) --in
, out
, &num_consumed
);
763 /* Returns TRUE if the specified section should be dumped. */
766 process_section_p (asection
* section
)
770 if (only_list
== NULL
)
773 for (only
= only_list
; only
; only
= only
->next
)
774 if (strcmp (only
->name
, section
->name
) == 0)
783 /* Add an entry to the 'only' list. */
786 add_only (char * name
)
790 /* First check to make sure that we do not
791 already have an entry for this name. */
792 for (only
= only_list
; only
; only
= only
->next
)
793 if (strcmp (only
->name
, name
) == 0)
796 only
= xmalloc (sizeof * only
);
799 only
->next
= only_list
;
803 /* Release the memory used by the 'only' list.
804 PR 11225: Issue a warning message for unseen sections.
805 Only do this if none of the sections were seen. This is mainly to support
806 tools like the GAS testsuite where an object file is dumped with a list of
807 generic section names known to be present in a range of different file
811 free_only_list (void)
813 bool at_least_one_seen
= false;
817 if (only_list
== NULL
)
820 for (only
= only_list
; only
; only
= only
->next
)
823 at_least_one_seen
= true;
827 for (only
= only_list
; only
; only
= next
)
829 if (! at_least_one_seen
)
831 non_fatal (_("section '%s' mentioned in a -j option, "
832 "but not found in any input file"),
843 dump_section_header (bfd
*abfd
, asection
*section
, void *data
)
846 unsigned int opb
= bfd_octets_per_byte (abfd
, section
);
847 int longest_section_name
= *((int *) data
);
849 /* Ignore linker created section. See elfNN_ia64_object_p in
851 if (section
->flags
& SEC_LINKER_CREATED
)
854 /* PR 10413: Skip sections that we are ignoring. */
855 if (! process_section_p (section
))
858 printf ("%3d %-*s %08lx ", section
->index
, longest_section_name
,
859 sanitize_string (bfd_section_name (section
)),
860 (unsigned long) bfd_section_size (section
) / opb
);
861 bfd_printf_vma (abfd
, bfd_section_vma (section
));
863 bfd_printf_vma (abfd
, section
->lma
);
864 printf (" %08lx 2**%u", (unsigned long) section
->filepos
,
865 bfd_section_alignment (section
));
871 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
873 PF (SEC_HAS_CONTENTS
, "CONTENTS");
874 PF (SEC_ALLOC
, "ALLOC");
875 PF (SEC_CONSTRUCTOR
, "CONSTRUCTOR");
876 PF (SEC_LOAD
, "LOAD");
877 PF (SEC_RELOC
, "RELOC");
878 PF (SEC_READONLY
, "READONLY");
879 PF (SEC_CODE
, "CODE");
880 PF (SEC_DATA
, "DATA");
882 PF (SEC_DEBUGGING
, "DEBUGGING");
883 PF (SEC_NEVER_LOAD
, "NEVER_LOAD");
884 PF (SEC_EXCLUDE
, "EXCLUDE");
885 PF (SEC_SORT_ENTRIES
, "SORT_ENTRIES");
886 if (bfd_get_arch (abfd
) == bfd_arch_tic54x
)
888 PF (SEC_TIC54X_BLOCK
, "BLOCK");
889 PF (SEC_TIC54X_CLINK
, "CLINK");
891 PF (SEC_SMALL_DATA
, "SMALL_DATA");
892 if (bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
894 PF (SEC_COFF_SHARED
, "SHARED");
895 PF (SEC_COFF_NOREAD
, "NOREAD");
897 else if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
899 PF (SEC_ELF_OCTETS
, "OCTETS");
900 PF (SEC_ELF_PURECODE
, "PURECODE");
902 PF (SEC_THREAD_LOCAL
, "THREAD_LOCAL");
903 PF (SEC_GROUP
, "GROUP");
904 if (bfd_get_arch (abfd
) == bfd_arch_mep
)
906 PF (SEC_MEP_VLIW
, "VLIW");
909 if ((section
->flags
& SEC_LINK_ONCE
) != 0)
912 struct coff_comdat_info
*comdat
;
914 switch (section
->flags
& SEC_LINK_DUPLICATES
)
918 case SEC_LINK_DUPLICATES_DISCARD
:
919 ls
= "LINK_ONCE_DISCARD";
921 case SEC_LINK_DUPLICATES_ONE_ONLY
:
922 ls
= "LINK_ONCE_ONE_ONLY";
924 case SEC_LINK_DUPLICATES_SAME_SIZE
:
925 ls
= "LINK_ONCE_SAME_SIZE";
927 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
928 ls
= "LINK_ONCE_SAME_CONTENTS";
931 printf ("%s%s", comma
, ls
);
933 comdat
= bfd_coff_get_comdat_section (abfd
, section
);
935 printf (" (COMDAT %s %ld)", comdat
->name
, comdat
->symbol
);
940 if (bfd_is_section_compressed (abfd
, section
))
941 printf ("%sCOMPRESSED", comma
);
947 /* Called on each SECTION in ABFD, update the int variable pointed to by
948 DATA which contains the string length of the longest section name. */
951 find_longest_section_name (bfd
*abfd ATTRIBUTE_UNUSED
,
952 asection
*section
, void *data
)
954 int *longest_so_far
= (int *) data
;
958 /* Ignore linker created section. */
959 if (section
->flags
& SEC_LINKER_CREATED
)
962 /* Skip sections that we are ignoring. */
963 if (! process_section_p (section
))
966 name
= bfd_section_name (section
);
967 len
= (int) strlen (name
);
968 if (len
> *longest_so_far
)
969 *longest_so_far
= len
;
973 dump_headers (bfd
*abfd
)
975 /* The default width of 13 is just an arbitrary choice. */
976 int max_section_name_length
= 13;
982 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
983 if (bfd_get_arch_size (abfd
) == 32)
989 printf (_("Sections:\n"));
992 bfd_map_over_sections (abfd
, find_longest_section_name
,
993 &max_section_name_length
);
995 printf (_("Idx %-*s Size %-*s%-*sFile off Algn"),
996 max_section_name_length
, "Name",
997 bfd_vma_width
, "VMA",
998 bfd_vma_width
, "LMA");
1001 printf (_(" Flags"));
1004 bfd_map_over_sections (abfd
, dump_section_header
,
1005 &max_section_name_length
);
1009 slurp_symtab (bfd
*abfd
)
1012 if (!(bfd_get_file_flags (abfd
) & HAS_SYMS
))
1015 long storage
= bfd_get_symtab_upper_bound (abfd
);
1018 non_fatal (_("failed to read symbol table from: %s"),
1019 bfd_get_filename (abfd
));
1020 my_bfd_nonfatal (_("error message was"));
1026 asymbol
**sy
= (asymbol
**) xmalloc (storage
);
1027 symcount
= bfd_canonicalize_symtab (abfd
, sy
);
1030 my_bfd_nonfatal (bfd_get_filename (abfd
));
1038 /* Read in the dynamic symbols. */
1041 slurp_dynamic_symtab (bfd
*abfd
)
1044 long storage
= bfd_get_dynamic_symtab_upper_bound (abfd
);
1047 if (!(bfd_get_file_flags (abfd
) & DYNAMIC
))
1049 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd
));
1054 my_bfd_nonfatal (bfd_get_filename (abfd
));
1060 asymbol
**sy
= (asymbol
**) xmalloc (storage
);
1061 dynsymcount
= bfd_canonicalize_dynamic_symtab (abfd
, sy
);
1062 if (dynsymcount
< 0)
1064 my_bfd_nonfatal (bfd_get_filename (abfd
));
1072 /* Some symbol names are significant and should be kept in the
1073 table of sorted symbol names, even if they are marked as
1074 debugging/section symbols. */
1077 is_significant_symbol_name (const char * name
)
1079 return startswith (name
, ".plt") || startswith (name
, ".got");
1082 /* Filter out (in place) symbols that are useless for disassembly.
1083 COUNT is the number of elements in SYMBOLS.
1084 Return the number of useful symbols. */
1087 remove_useless_symbols (asymbol
**symbols
, long count
)
1089 asymbol
**in_ptr
= symbols
, **out_ptr
= symbols
;
1091 while (--count
>= 0)
1093 asymbol
*sym
= *in_ptr
++;
1095 if (sym
->name
== NULL
|| sym
->name
[0] == '\0')
1097 if ((sym
->flags
& (BSF_DEBUGGING
| BSF_SECTION_SYM
))
1098 && ! is_significant_symbol_name (sym
->name
))
1100 if (bfd_is_und_section (sym
->section
)
1101 || bfd_is_com_section (sym
->section
))
1106 return out_ptr
- symbols
;
1109 static const asection
*compare_section
;
1111 /* Sort symbols into value order. */
1114 compare_symbols (const void *ap
, const void *bp
)
1116 const asymbol
*a
= * (const asymbol
**) ap
;
1117 const asymbol
*b
= * (const asymbol
**) bp
;
1122 bool as
, af
, bs
, bf
;
1126 if (bfd_asymbol_value (a
) > bfd_asymbol_value (b
))
1128 else if (bfd_asymbol_value (a
) < bfd_asymbol_value (b
))
1131 /* Prefer symbols from the section currently being disassembled.
1132 Don't sort symbols from other sections by section, since there
1133 isn't much reason to prefer one section over another otherwise.
1134 See sym_ok comment for why we compare by section name. */
1135 as
= strcmp (compare_section
->name
, a
->section
->name
) == 0;
1136 bs
= strcmp (compare_section
->name
, b
->section
->name
) == 0;
1142 an
= bfd_asymbol_name (a
);
1143 bn
= bfd_asymbol_name (b
);
1147 /* The symbols gnu_compiled and gcc2_compiled convey no real
1148 information, so put them after other symbols with the same value. */
1149 af
= (strstr (an
, "gnu_compiled") != NULL
1150 || strstr (an
, "gcc2_compiled") != NULL
);
1151 bf
= (strstr (bn
, "gnu_compiled") != NULL
1152 || strstr (bn
, "gcc2_compiled") != NULL
);
1159 /* We use a heuristic for the file name, to try to sort it after
1160 more useful symbols. It may not work on non Unix systems, but it
1161 doesn't really matter; the only difference is precisely which
1162 symbol names get printed. */
1164 #define file_symbol(s, sn, snl) \
1165 (((s)->flags & BSF_FILE) != 0 \
1167 && (sn)[(snl) - 2] == '.' \
1168 && ((sn)[(snl) - 1] == 'o' \
1169 || (sn)[(snl) - 1] == 'a')))
1171 af
= file_symbol (a
, an
, anl
);
1172 bf
= file_symbol (b
, bn
, bnl
);
1179 /* Sort function and object symbols before global symbols before
1180 local symbols before section symbols before debugging symbols. */
1185 if ((aflags
& BSF_DEBUGGING
) != (bflags
& BSF_DEBUGGING
))
1187 if ((aflags
& BSF_DEBUGGING
) != 0)
1192 if ((aflags
& BSF_SECTION_SYM
) != (bflags
& BSF_SECTION_SYM
))
1194 if ((aflags
& BSF_SECTION_SYM
) != 0)
1199 if ((aflags
& BSF_FUNCTION
) != (bflags
& BSF_FUNCTION
))
1201 if ((aflags
& BSF_FUNCTION
) != 0)
1206 if ((aflags
& BSF_OBJECT
) != (bflags
& BSF_OBJECT
))
1208 if ((aflags
& BSF_OBJECT
) != 0)
1213 if ((aflags
& BSF_LOCAL
) != (bflags
& BSF_LOCAL
))
1215 if ((aflags
& BSF_LOCAL
) != 0)
1220 if ((aflags
& BSF_GLOBAL
) != (bflags
& BSF_GLOBAL
))
1222 if ((aflags
& BSF_GLOBAL
) != 0)
1228 /* Sort larger size ELF symbols before smaller. See PR20337. */
1230 if ((a
->flags
& (BSF_SECTION_SYM
| BSF_SYNTHETIC
)) == 0
1231 && bfd_get_flavour (bfd_asymbol_bfd (a
)) == bfd_target_elf_flavour
)
1232 asz
= ((elf_symbol_type
*) a
)->internal_elf_sym
.st_size
;
1234 if ((b
->flags
& (BSF_SECTION_SYM
| BSF_SYNTHETIC
)) == 0
1235 && bfd_get_flavour (bfd_asymbol_bfd (b
)) == bfd_target_elf_flavour
)
1236 bsz
= ((elf_symbol_type
*) b
)->internal_elf_sym
.st_size
;
1238 return asz
> bsz
? -1 : 1;
1240 /* Symbols that start with '.' might be section names, so sort them
1241 after symbols that don't start with '.'. */
1242 if (an
[0] == '.' && bn
[0] != '.')
1244 if (an
[0] != '.' && bn
[0] == '.')
1247 /* Finally, if we can't distinguish them in any other way, try to
1248 get consistent results by sorting the symbols by name. */
1249 return strcmp (an
, bn
);
1252 /* Sort relocs into address order. */
1255 compare_relocs (const void *ap
, const void *bp
)
1257 const arelent
*a
= * (const arelent
**) ap
;
1258 const arelent
*b
= * (const arelent
**) bp
;
1260 if (a
->address
> b
->address
)
1262 else if (a
->address
< b
->address
)
1265 /* So that associated relocations tied to the same address show up
1266 in the correct order, we don't do any further sorting. */
1275 /* Print an address (VMA) to the output stream in INFO.
1276 If SKIP_ZEROES is TRUE, omit leading zeroes. */
1279 objdump_print_value (bfd_vma vma
, struct disassemble_info
*inf
,
1284 struct objdump_disasm_info
*aux
;
1286 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1287 bfd_sprintf_vma (aux
->abfd
, buf
, vma
);
1292 for (p
= buf
; *p
== '0'; ++p
)
1297 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_address
, "%s", p
);
1300 /* Print the name of a symbol. */
1303 objdump_print_symname (bfd
*abfd
, struct disassemble_info
*inf
,
1307 const char *name
, *version_string
= NULL
;
1308 bool hidden
= false;
1311 name
= bfd_asymbol_name (sym
);
1312 if (do_demangle
&& name
[0] != '\0')
1314 /* Demangle the name. */
1315 alloc
= bfd_demangle (abfd
, name
, demangle_flags
);
1320 if ((sym
->flags
& (BSF_SECTION_SYM
| BSF_SYNTHETIC
)) == 0)
1321 version_string
= bfd_get_symbol_version_string (abfd
, sym
, true,
1324 if (bfd_is_und_section (bfd_asymbol_section (sym
)))
1327 name
= sanitize_string (name
);
1331 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_symbol
, "%s", name
);
1332 if (version_string
&& *version_string
!= '\0')
1333 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_symbol
,
1334 hidden
? "@%s" : "@@%s",
1339 printf ("%s", name
);
1340 if (version_string
&& *version_string
!= '\0')
1341 printf (hidden
? "@%s" : "@@%s", version_string
);
1349 sym_ok (bool want_section
,
1350 bfd
*abfd ATTRIBUTE_UNUSED
,
1353 struct disassemble_info
*inf
)
1357 /* NB: An object file can have different sections with the same
1358 section name. Compare compare section pointers if they have
1360 if (sorted_syms
[place
]->section
->owner
== sec
->owner
1361 && sorted_syms
[place
]->section
!= sec
)
1364 /* Note - we cannot just compare section pointers because they could
1365 be different, but the same... Ie the symbol that we are trying to
1366 find could have come from a separate debug info file. Under such
1367 circumstances the symbol will be associated with a section in the
1368 debug info file, whilst the section we want is in a normal file.
1369 So the section pointers will be different, but the section names
1370 will be the same. */
1371 if (strcmp (bfd_section_name (sorted_syms
[place
]->section
),
1372 bfd_section_name (sec
)) != 0)
1376 return inf
->symbol_is_valid (sorted_syms
[place
], inf
);
1379 /* Locate a symbol given a bfd and a section (from INFO->application_data),
1380 and a VMA. If INFO->application_data->require_sec is TRUE, then always
1381 require the symbol to be in the section. Returns NULL if there is no
1382 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
1383 of the symbol in sorted_syms. */
1386 find_symbol_for_address (bfd_vma vma
,
1387 struct disassemble_info
*inf
,
1390 /* @@ Would it speed things up to cache the last two symbols returned,
1391 and maybe their address ranges? For many processors, only one memory
1392 operand can be present at a time, so the 2-entry cache wouldn't be
1393 constantly churned by code doing heavy memory accesses. */
1395 /* Indices in `sorted_syms'. */
1397 long max_count
= sorted_symcount
;
1399 struct objdump_disasm_info
*aux
;
1406 if (sorted_symcount
< 1)
1409 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1412 opb
= inf
->octets_per_byte
;
1414 /* Perform a binary search looking for the closest symbol to the
1415 required value. We are searching the range (min, max_count]. */
1416 while (min
+ 1 < max_count
)
1420 thisplace
= (max_count
+ min
) / 2;
1421 sym
= sorted_syms
[thisplace
];
1423 if (bfd_asymbol_value (sym
) > vma
)
1424 max_count
= thisplace
;
1425 else if (bfd_asymbol_value (sym
) < vma
)
1434 /* The symbol we want is now in min, the low end of the range we
1435 were searching. If there are several symbols with the same
1436 value, we want the first one. */
1438 while (thisplace
> 0
1439 && (bfd_asymbol_value (sorted_syms
[thisplace
])
1440 == bfd_asymbol_value (sorted_syms
[thisplace
- 1])))
1443 /* Prefer a symbol in the current section if we have multple symbols
1444 with the same value, as can occur with overlays or zero size
1447 while (min
< max_count
1448 && (bfd_asymbol_value (sorted_syms
[min
])
1449 == bfd_asymbol_value (sorted_syms
[thisplace
])))
1451 if (sym_ok (true, abfd
, min
, sec
, inf
))
1458 return sorted_syms
[thisplace
];
1463 /* If the file is relocatable, and the symbol could be from this
1464 section, prefer a symbol from this section over symbols from
1465 others, even if the other symbol's value might be closer.
1467 Note that this may be wrong for some symbol references if the
1468 sections have overlapping memory ranges, but in that case there's
1469 no way to tell what's desired without looking at the relocation
1472 Also give the target a chance to reject symbols. */
1473 want_section
= (aux
->require_sec
1474 || ((abfd
->flags
& HAS_RELOC
) != 0
1475 && vma
>= bfd_section_vma (sec
)
1476 && vma
< (bfd_section_vma (sec
)
1477 + bfd_section_size (sec
) / opb
)));
1479 if (! sym_ok (want_section
, abfd
, thisplace
, sec
, inf
))
1482 long newplace
= sorted_symcount
;
1484 for (i
= min
- 1; i
>= 0; i
--)
1486 if (sym_ok (want_section
, abfd
, i
, sec
, inf
))
1488 if (newplace
== sorted_symcount
)
1491 if (bfd_asymbol_value (sorted_syms
[i
])
1492 != bfd_asymbol_value (sorted_syms
[newplace
]))
1495 /* Remember this symbol and keep searching until we reach
1496 an earlier address. */
1501 if (newplace
!= sorted_symcount
)
1502 thisplace
= newplace
;
1505 /* We didn't find a good symbol with a smaller value.
1506 Look for one with a larger value. */
1507 for (i
= thisplace
+ 1; i
< sorted_symcount
; i
++)
1509 if (sym_ok (want_section
, abfd
, i
, sec
, inf
))
1517 if (! sym_ok (want_section
, abfd
, thisplace
, sec
, inf
))
1518 /* There is no suitable symbol. */
1522 /* If we have not found an exact match for the specified address
1523 and we have dynamic relocations available, then we can produce
1524 a better result by matching a relocation to the address and
1525 using the symbol associated with that relocation. */
1526 rel_count
= inf
->dynrelcount
;
1528 && sorted_syms
[thisplace
]->value
!= vma
1530 && inf
->dynrelbuf
!= NULL
1531 && inf
->dynrelbuf
[0]->address
<= vma
1532 && inf
->dynrelbuf
[rel_count
- 1]->address
>= vma
1533 /* If we have matched a synthetic symbol, then stick with that. */
1534 && (sorted_syms
[thisplace
]->flags
& BSF_SYNTHETIC
) == 0)
1537 arelent
** rel_high
;
1539 rel_low
= inf
->dynrelbuf
;
1540 rel_high
= rel_low
+ rel_count
- 1;
1541 while (rel_low
<= rel_high
)
1543 arelent
**rel_mid
= &rel_low
[(rel_high
- rel_low
) / 2];
1544 arelent
* rel
= *rel_mid
;
1546 if (rel
->address
== vma
)
1548 /* Absolute relocations do not provide a more helpful
1549 symbolic address. Find a non-absolute relocation
1550 with the same address. */
1551 arelent
**rel_vma
= rel_mid
;
1553 rel_mid
>= rel_low
&& rel_mid
[0]->address
== vma
;
1557 for (; rel_vma
<= rel_high
&& rel_vma
[0]->address
== vma
;
1561 if (rel
->sym_ptr_ptr
!= NULL
1562 && ! bfd_is_abs_section ((* rel
->sym_ptr_ptr
)->section
))
1565 * place
= thisplace
;
1566 return * rel
->sym_ptr_ptr
;
1572 if (vma
< rel
->address
)
1574 else if (vma
>= rel_mid
[1]->address
)
1575 rel_low
= rel_mid
+ 1;
1584 return sorted_syms
[thisplace
];
1587 /* Print an address and the offset to the nearest symbol. */
1590 objdump_print_addr_with_sym (bfd
*abfd
, asection
*sec
, asymbol
*sym
,
1591 bfd_vma vma
, struct disassemble_info
*inf
,
1596 objdump_print_value (vma
, inf
, skip_zeroes
);
1597 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_text
, " ");
1604 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_text
,"<");
1605 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_symbol
, "%s",
1606 sanitize_string (bfd_section_name (sec
)));
1607 secaddr
= bfd_section_vma (sec
);
1610 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_immediate
,
1612 objdump_print_value (secaddr
- vma
, inf
, true);
1614 else if (vma
> secaddr
)
1616 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_immediate
, "+0x");
1617 objdump_print_value (vma
- secaddr
, inf
, true);
1619 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_text
, ">");
1623 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_text
, "<");
1625 objdump_print_symname (abfd
, inf
, sym
);
1627 if (bfd_asymbol_value (sym
) == vma
)
1629 /* Undefined symbols in an executables and dynamic objects do not have
1630 a value associated with them, so it does not make sense to display
1631 an offset relative to them. Normally we would not be provided with
1632 this kind of symbol, but the target backend might choose to do so,
1633 and the code in find_symbol_for_address might return an as yet
1634 unresolved symbol associated with a dynamic reloc. */
1635 else if ((bfd_get_file_flags (abfd
) & (EXEC_P
| DYNAMIC
))
1636 && bfd_is_und_section (sym
->section
))
1638 else if (bfd_asymbol_value (sym
) > vma
)
1640 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_immediate
,"-0x");
1641 objdump_print_value (bfd_asymbol_value (sym
) - vma
, inf
, true);
1643 else if (vma
> bfd_asymbol_value (sym
))
1645 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_immediate
, "+0x");
1646 objdump_print_value (vma
- bfd_asymbol_value (sym
), inf
, true);
1649 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_text
, ">");
1652 if (display_file_offsets
)
1653 inf
->fprintf_styled_func (inf
->stream
, dis_style_text
,
1654 _(" (File Offset: 0x%lx)"),
1655 (long int)(sec
->filepos
+ (vma
- sec
->vma
)));
1658 /* Displays all symbols in the sorted symbol table starting at PLACE
1659 which match the address VMA. Assumes that show_all_symbols == true. */
1662 display_extra_syms (long place
,
1664 struct disassemble_info
*inf
)
1666 struct objdump_disasm_info
*aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1673 for (; place
< sorted_symcount
; place
++)
1675 asymbol
*sym
= sorted_syms
[place
];
1677 if (bfd_asymbol_value (sym
) != vma
)
1680 if (! inf
->symbol_is_valid (sym
, inf
))
1683 if (first
&& ! do_wide
)
1684 inf
->fprintf_styled_func (inf
->stream
, dis_style_immediate
, ",\n\t<");
1686 inf
->fprintf_styled_func (inf
->stream
, dis_style_immediate
, ", <");
1688 objdump_print_symname (aux
->abfd
, inf
, sym
);
1689 inf
->fprintf_styled_func (inf
->stream
, dis_style_immediate
, ">");
1694 /* Print an address (VMA), symbolically if possible.
1695 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
1698 objdump_print_addr (bfd_vma vma
,
1699 struct disassemble_info
*inf
,
1702 struct objdump_disasm_info
*aux
;
1703 asymbol
*sym
= NULL
;
1704 bool skip_find
= false;
1707 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1709 if (sorted_symcount
< 1)
1713 (*inf
->fprintf_styled_func
) (inf
->stream
, dis_style_address
, "0x");
1714 objdump_print_value (vma
, inf
, skip_zeroes
);
1717 if (display_file_offsets
)
1718 inf
->fprintf_styled_func (inf
->stream
, dis_style_text
,
1719 _(" (File Offset: 0x%lx)"),
1720 (long int) (inf
->section
->filepos
1721 + (vma
- inf
->section
->vma
)));
1725 if (aux
->reloc
!= NULL
1726 && aux
->reloc
->sym_ptr_ptr
!= NULL
1727 && * aux
->reloc
->sym_ptr_ptr
!= NULL
)
1729 sym
= * aux
->reloc
->sym_ptr_ptr
;
1731 /* Adjust the vma to the reloc. */
1732 vma
+= bfd_asymbol_value (sym
);
1734 if (bfd_is_und_section (bfd_asymbol_section (sym
)))
1739 sym
= find_symbol_for_address (vma
, inf
, &place
);
1741 objdump_print_addr_with_sym (aux
->abfd
, inf
->section
, sym
, vma
, inf
,
1744 /* If requested, display any extra symbols at this address. */
1745 if (sym
== NULL
|| ! show_all_symbols
)
1749 display_extra_syms (place
+ 1, vma
, inf
);
1751 /* If we found an absolute symbol in the reloc (ie: "*ABS*+0x....")
1752 and there is a valid symbol at the address contained in the absolute symbol
1753 then display any extra symbols that match this address. This helps
1754 particularly with relocations for PLT entries. */
1755 if (startswith (sym
->name
, BFD_ABS_SECTION_NAME
"+"))
1757 bfd_vma addr
= strtoul (sym
->name
+ strlen (BFD_ABS_SECTION_NAME
"+"), NULL
, 0);
1759 if (addr
&& addr
!= vma
)
1761 sym
= find_symbol_for_address (addr
, inf
, &place
);
1764 display_extra_syms (place
, addr
, inf
);
1769 /* Print VMA to INFO. This function is passed to the disassembler
1773 objdump_print_address (bfd_vma vma
, struct disassemble_info
*inf
)
1775 objdump_print_addr (vma
, inf
, ! prefix_addresses
);
1778 /* Determine if the given address has a symbol associated with it. */
1781 objdump_symbol_at_address (bfd_vma vma
, struct disassemble_info
* inf
)
1785 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1786 if (sym
!= NULL
&& bfd_asymbol_value (sym
) == vma
)
1792 /* Hold the last function name and the last line number we displayed
1793 in a disassembly. */
1795 static char *prev_functionname
;
1796 static unsigned int prev_line
;
1797 static unsigned int prev_discriminator
;
1799 /* We keep a list of all files that we have seen when doing a
1800 disassembly with source, so that we know how much of the file to
1801 display. This can be important for inlined functions. */
1803 struct print_file_list
1805 struct print_file_list
*next
;
1806 const char *filename
;
1807 const char *modname
;
1810 const char **linemap
;
1813 unsigned max_printed
;
1817 static struct print_file_list
*print_files
;
1819 /* The number of preceding context lines to show when we start
1820 displaying a file for the first time. */
1822 #define SHOW_PRECEDING_CONTEXT_LINES (5)
1824 #if HAVE_LIBDEBUGINFOD
1825 /* Return a hex string represention of the build-id. */
1828 get_build_id (void * data
)
1831 char * build_id_str
;
1832 bfd
* abfd
= (bfd
*) data
;
1833 const struct bfd_build_id
* build_id
;
1835 build_id
= abfd
->build_id
;
1836 if (build_id
== NULL
)
1839 build_id_str
= malloc (build_id
->size
* 2 + 1);
1840 if (build_id_str
== NULL
)
1843 for (i
= 0; i
< build_id
->size
; i
++)
1844 sprintf (build_id_str
+ (i
* 2), "%02x", build_id
->data
[i
]);
1845 build_id_str
[build_id
->size
* 2] = '\0';
1847 return (unsigned char *) build_id_str
;
1850 /* Search for a separate debug file matching ABFD's build-id. */
1853 find_separate_debug (const bfd
* abfd
)
1855 const struct bfd_build_id
* build_id
= abfd
->build_id
;
1856 separate_info
* i
= first_separate_info
;
1858 if (build_id
== NULL
|| i
== NULL
)
1863 const bfd
* i_bfd
= (bfd
*) i
->handle
;
1865 if (abfd
!= NULL
&& i_bfd
->build_id
!= NULL
)
1867 const unsigned char * data
= i_bfd
->build_id
->data
;
1868 size_t size
= i_bfd
->build_id
->size
;
1870 if (size
== build_id
->size
1871 && memcmp (data
, build_id
->data
, size
) == 0)
1872 return (bfd
*) i
->handle
;
1881 /* Search for a separate debug file matching ABFD's .gnu_debugaltlink
1885 find_alt_debug (const bfd
* abfd
)
1890 struct dwarf_section
* section
;
1891 const struct bfd_build_id
* build_id
= abfd
->build_id
;
1892 separate_info
* i
= first_separate_info
;
1896 || !load_debug_section (gnu_debugaltlink
, (void *) abfd
))
1899 section
= &debug_displays
[gnu_debugaltlink
].section
;
1900 if (section
== NULL
)
1903 name
= (const char *) section
->start
;
1904 namelen
= strnlen (name
, section
->size
) + 1;
1907 if (namelen
>= section
->size
)
1910 id_len
= section
->size
- namelen
;
1914 /* Compare the .gnu_debugaltlink build-id with the build-ids of the
1915 known separate_info files. */
1918 const bfd
* i_bfd
= (bfd
*) i
->handle
;
1920 if (i_bfd
!= NULL
&& i_bfd
->build_id
!= NULL
)
1922 const unsigned char * data
= i_bfd
->build_id
->data
;
1923 size_t size
= i_bfd
->build_id
->size
;
1926 && memcmp (section
->start
+ namelen
, data
, size
) == 0)
1927 return (bfd
*) i
->handle
;
1936 #endif /* HAVE_LIBDEBUGINFOD */
1938 /* Reads the contents of file FN into memory. Returns a pointer to the buffer.
1939 Also returns the size of the buffer in SIZE_RETURN and a filled out
1940 stat structure in FST_RETURN. Returns NULL upon failure. */
1943 slurp_file (const char * fn
,
1944 size_t * size_return
,
1945 struct stat
* fst_return
,
1946 bfd
* abfd ATTRIBUTE_UNUSED
)
1956 if (fn
== NULL
|| * fn
== 0 || size_return
== NULL
|| fst_return
== NULL
)
1959 fd
= open (fn
, O_RDONLY
| O_BINARY
);
1961 #if HAVE_LIBDEBUGINFOD
1962 if (fd
< 0 && use_debuginfod
&& fn
[0] == '/' && abfd
!= NULL
)
1964 unsigned char *build_id
= get_build_id (abfd
);
1968 debuginfod_client
*client
= debuginfod_begin ();
1972 fd
= debuginfod_find_source (client
, build_id
, 0, fn
, NULL
);
1973 debuginfod_end (client
);
1983 if (fstat (fd
, fst_return
) < 0)
1989 *size_return
= fst_return
->st_size
;
1992 ps
= getpagesize ();
1993 msize
= (*size_return
+ ps
- 1) & ~(ps
- 1);
1994 map
= mmap (NULL
, msize
, PROT_READ
, MAP_SHARED
, fd
, 0);
1995 if (map
!= (char *) -1L)
2002 map
= (const char *) malloc (*size_return
);
2003 if (!map
|| (size_t) read (fd
, (char *) map
, *size_return
) != *size_return
)
2005 free ((void *) map
);
2012 #define line_map_decrease 5
2014 /* Precompute array of lines for a mapped file. */
2016 static const char **
2017 index_file (const char *map
, size_t size
, unsigned int *maxline
)
2019 const char *p
, *lstart
, *end
;
2020 int chars_per_line
= 45; /* First iteration will use 40. */
2021 unsigned int lineno
;
2022 const char **linemap
= NULL
;
2023 unsigned long line_map_size
= 0;
2029 for (p
= map
; p
< end
; p
++)
2033 if (p
+ 1 < end
&& p
[1] == '\r')
2036 else if (*p
== '\r')
2038 if (p
+ 1 < end
&& p
[1] == '\n')
2044 /* End of line found. */
2046 if (linemap
== NULL
|| line_map_size
< lineno
+ 1)
2048 unsigned long newsize
;
2050 chars_per_line
-= line_map_decrease
;
2051 if (chars_per_line
<= 1)
2053 line_map_size
= size
/ chars_per_line
+ 1;
2054 if (line_map_size
< lineno
+ 1)
2055 line_map_size
= lineno
+ 1;
2056 newsize
= line_map_size
* sizeof (char *);
2057 linemap
= (const char **) xrealloc (linemap
, newsize
);
2060 linemap
[lineno
++] = lstart
;
2068 /* Tries to open MODNAME, and if successful adds a node to print_files
2069 linked list and returns that node. Also fills in the stat structure
2070 pointed to by FST_RETURN. Returns NULL on failure. */
2072 static struct print_file_list
*
2073 try_print_file_open (const char * origname
,
2074 const char * modname
,
2075 struct stat
* fst_return
,
2078 struct print_file_list
*p
;
2080 p
= (struct print_file_list
*) xmalloc (sizeof (struct print_file_list
));
2082 p
->map
= slurp_file (modname
, &p
->mapsize
, fst_return
, abfd
);
2089 p
->linemap
= index_file (p
->map
, p
->mapsize
, &p
->maxline
);
2092 p
->filename
= origname
;
2093 p
->modname
= modname
;
2094 p
->next
= print_files
;
2100 /* If the source file, as described in the symtab, is not found
2101 try to locate it in one of the paths specified with -I
2102 If found, add location to print_files linked list. */
2104 static struct print_file_list
*
2105 update_source_path (const char *filename
, bfd
*abfd
)
2107 struct print_file_list
*p
;
2112 p
= try_print_file_open (filename
, filename
, &fst
, abfd
);
2115 if (include_path_count
== 0)
2118 /* Get the name of the file. */
2119 fname
= lbasename (filename
);
2121 /* If file exists under a new path, we need to add it to the list
2122 so that show_line knows about it. */
2123 for (i
= 0; i
< include_path_count
; i
++)
2125 char *modname
= concat (include_paths
[i
], "/", fname
,
2128 p
= try_print_file_open (filename
, modname
, &fst
, abfd
);
2138 long mtime
= bfd_get_mtime (abfd
);
2140 if (fst
.st_mtime
> mtime
)
2141 warn (_("source file %s is more recent than object file\n"),
2148 /* Print a source file line. */
2151 print_line (struct print_file_list
*p
, unsigned int linenum
)
2156 if (linenum
>= p
->maxline
)
2158 l
= p
->linemap
[linenum
];
2159 if (source_comment
!= NULL
&& strlen (l
) > 0)
2160 printf ("%s", source_comment
);
2161 len
= strcspn (l
, "\n\r");
2162 /* Test fwrite return value to quiet glibc warning. */
2163 if (len
== 0 || fwrite (l
, len
, 1, stdout
) == 1)
2167 /* Print a range of source code lines. */
2170 dump_lines (struct print_file_list
*p
, unsigned int start
, unsigned int end
)
2178 print_line (p
, start
);
2183 /* Show the line number, or the source line, in a disassembly
2187 show_line (bfd
*abfd
, asection
*section
, bfd_vma addr_offset
)
2189 const char *filename
;
2190 const char *functionname
;
2191 unsigned int linenumber
;
2192 unsigned int discriminator
;
2196 if (! with_line_numbers
&& ! with_source_code
)
2199 #ifdef HAVE_LIBDEBUGINFOD
2202 const char *alt_filename
= NULL
;
2208 /* PR 29075: Check for separate debuginfo and .gnu_debugaltlink files.
2209 They need to be passed to bfd_find_nearest_line_with_alt in case they
2210 were downloaded from debuginfod. Otherwise libbfd will attempt to
2211 search for them and fail to locate them. */
2212 debug_bfd
= find_separate_debug (abfd
);
2213 if (debug_bfd
== NULL
)
2216 alt_bfd
= find_alt_debug (debug_bfd
);
2217 if (alt_bfd
!= NULL
)
2218 alt_filename
= bfd_get_filename (alt_bfd
);
2223 bfd_set_error (bfd_error_no_error
);
2224 if (! bfd_find_nearest_line_with_alt (debug_bfd
, alt_filename
,
2226 addr_offset
, &filename
,
2227 &functionname
, &linenumber
,
2230 if (bfd_get_error () == bfd_error_no_error
)
2232 if (! bfd_find_nearest_line_discriminator (abfd
, section
, syms
,
2233 addr_offset
, &filename
,
2234 &functionname
, &linenumber
,
2240 if (! bfd_find_nearest_line_discriminator (abfd
, section
, syms
, addr_offset
,
2241 &filename
, &functionname
,
2242 &linenumber
, &discriminator
))
2246 if (filename
!= NULL
&& *filename
== '\0')
2248 if (functionname
!= NULL
&& *functionname
== '\0')
2249 functionname
= NULL
;
2252 && IS_ABSOLUTE_PATH (filename
)
2256 const char *fname
= filename
;
2258 path
= xmalloc (prefix_length
+ 1 + strlen (filename
));
2261 memcpy (path
, prefix
, prefix_length
);
2262 path_up
= path
+ prefix_length
;
2264 /* Build relocated filename, stripping off leading directories
2265 from the initial filename if requested. */
2266 if (prefix_strip
> 0)
2271 /* Skip selected directory levels. */
2272 for (s
= fname
+ 1; *s
!= '\0' && level
< prefix_strip
; s
++)
2273 if (IS_DIR_SEPARATOR (*s
))
2280 /* Update complete filename. */
2281 strcpy (path_up
, fname
);
2289 if (with_line_numbers
)
2291 if (functionname
!= NULL
2292 && (prev_functionname
== NULL
2293 || strcmp (functionname
, prev_functionname
) != 0))
2295 char *demangle_alloc
= NULL
;
2296 if (do_demangle
&& functionname
[0] != '\0')
2298 /* Demangle the name. */
2299 demangle_alloc
= bfd_demangle (abfd
, functionname
,
2303 /* Demangling adds trailing parens, so don't print those. */
2304 if (demangle_alloc
!= NULL
)
2305 printf ("%s:\n", sanitize_string (demangle_alloc
));
2307 printf ("%s():\n", sanitize_string (functionname
));
2310 free (demangle_alloc
);
2313 && (linenumber
!= prev_line
2314 || discriminator
!= prev_discriminator
))
2316 if (discriminator
> 0)
2317 printf ("%s:%u (discriminator %u)\n",
2318 filename
== NULL
? "???" : sanitize_string (filename
),
2319 linenumber
, discriminator
);
2321 printf ("%s:%u\n", filename
== NULL
2322 ? "???" : sanitize_string (filename
),
2327 const char *filename2
;
2328 const char *functionname2
;
2331 while (bfd_find_inliner_info (abfd
, &filename2
, &functionname2
,
2334 printf ("inlined by %s:%u",
2335 sanitize_string (filename2
), line2
);
2336 printf (" (%s)\n", sanitize_string (functionname2
));
2341 if (with_source_code
2345 struct print_file_list
**pp
, *p
;
2348 for (pp
= &print_files
; *pp
!= NULL
; pp
= &(*pp
)->next
)
2349 if (filename_cmp ((*pp
)->filename
, filename
) == 0)
2356 filename
= xstrdup (filename
);
2357 p
= update_source_path (filename
, abfd
);
2360 if (p
!= NULL
&& linenumber
!= p
->last_line
)
2362 if (file_start_context
&& p
->first
)
2366 l
= linenumber
- SHOW_PRECEDING_CONTEXT_LINES
;
2367 if (l
>= linenumber
)
2369 if (p
->max_printed
>= l
)
2371 if (p
->max_printed
< linenumber
)
2372 l
= p
->max_printed
+ 1;
2377 dump_lines (p
, l
, linenumber
);
2378 if (p
->max_printed
< linenumber
)
2379 p
->max_printed
= linenumber
;
2380 p
->last_line
= linenumber
;
2385 if (functionname
!= NULL
2386 && (prev_functionname
== NULL
2387 || strcmp (functionname
, prev_functionname
) != 0))
2389 if (prev_functionname
!= NULL
)
2390 free (prev_functionname
);
2391 prev_functionname
= (char *) xmalloc (strlen (functionname
) + 1);
2392 strcpy (prev_functionname
, functionname
);
2395 if (linenumber
> 0 && linenumber
!= prev_line
)
2396 prev_line
= linenumber
;
2398 if (discriminator
!= prev_discriminator
)
2399 prev_discriminator
= discriminator
;
2405 /* Pseudo FILE object for strings. */
2413 /* sprintf to a "stream". */
2415 static int ATTRIBUTE_PRINTF_2
2416 objdump_sprintf (SFILE
*f
, const char *format
, ...)
2423 size_t space
= f
->alloc
- f
->pos
;
2425 va_start (args
, format
);
2426 n
= vsnprintf (f
->buffer
+ f
->pos
, space
, format
, args
);
2432 f
->alloc
= (f
->alloc
+ n
) * 2;
2433 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
2440 /* Return an integer greater than, or equal to zero, representing the color
2441 for STYLE, or -1 if no color should be used. */
2444 objdump_color_for_disassembler_style (enum disassembler_style style
)
2448 if (style
== dis_style_comment_start
)
2449 disassembler_in_comment
= true;
2451 if (disassembler_color
== on
)
2453 if (disassembler_in_comment
)
2458 case dis_style_symbol
:
2461 case dis_style_assembler_directive
:
2462 case dis_style_sub_mnemonic
:
2463 case dis_style_mnemonic
:
2466 case dis_style_register
:
2469 case dis_style_address
:
2470 case dis_style_address_offset
:
2471 case dis_style_immediate
:
2475 case dis_style_text
:
2480 else if (disassembler_color
== extended
)
2482 if (disassembler_in_comment
)
2487 case dis_style_symbol
:
2490 case dis_style_assembler_directive
:
2491 case dis_style_sub_mnemonic
:
2492 case dis_style_mnemonic
:
2495 case dis_style_register
:
2498 case dis_style_address
:
2499 case dis_style_address_offset
:
2500 case dis_style_immediate
:
2504 case dis_style_text
:
2509 else if (disassembler_color
!= off
)
2510 bfd_fatal (_("disassembly color not correctly selected"));
2515 /* Like objdump_sprintf, but add in escape sequences to highlight the
2516 content according to STYLE. */
2518 static int ATTRIBUTE_PRINTF_3
2519 objdump_styled_sprintf (SFILE
*f
, enum disassembler_style style
,
2520 const char *format
, ...)
2524 int color
= objdump_color_for_disassembler_style (style
);
2530 size_t space
= f
->alloc
- f
->pos
;
2532 if (disassembler_color
== on
)
2533 n
= snprintf (f
->buffer
+ f
->pos
, space
, "\033[%dm", color
);
2535 n
= snprintf (f
->buffer
+ f
->pos
, space
, "\033[38;5;%dm", color
);
2539 f
->alloc
= (f
->alloc
+ n
) * 2;
2540 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
2547 size_t space
= f
->alloc
- f
->pos
;
2549 va_start (args
, format
);
2550 n
= vsnprintf (f
->buffer
+ f
->pos
, space
, format
, args
);
2556 f
->alloc
= (f
->alloc
+ n
) * 2;
2557 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
2565 size_t space
= f
->alloc
- f
->pos
;
2567 n
= snprintf (f
->buffer
+ f
->pos
, space
, "\033[0m");
2572 f
->alloc
= (f
->alloc
+ n
) * 2;
2573 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
2581 /* We discard the styling information here. This function is only used
2582 when objdump is printing auxiliary information, the symbol headers, and
2583 disassembly address, or the bytes of the disassembled instruction. We
2584 don't (currently) apply styling to any of this stuff, so, for now, just
2585 print the content with no additional style added. */
2587 static int ATTRIBUTE_PRINTF_3
2588 fprintf_styled (FILE *f
, enum disassembler_style style ATTRIBUTE_UNUSED
,
2589 const char *fmt
, ...)
2595 res
= vfprintf (f
, fmt
, ap
);
2601 /* Code for generating (colored) diagrams of control flow start and end
2604 /* Structure used to store the properties of a jump. */
2608 /* The next jump, or NULL if this is the last object. */
2609 struct jump_info
*next
;
2610 /* The previous jump, or NULL if this is the first object. */
2611 struct jump_info
*prev
;
2612 /* The start addresses of the jump. */
2615 /* The list of start addresses. */
2617 /* The number of elements. */
2619 /* The maximum number of elements that fit into the array. */
2622 /* The end address of the jump. */
2624 /* The drawing level of the jump. */
2628 /* Construct a jump object for a jump from start
2629 to end with the corresponding level. */
2631 static struct jump_info
*
2632 jump_info_new (bfd_vma start
, bfd_vma end
, int level
)
2634 struct jump_info
*result
= xmalloc (sizeof (struct jump_info
));
2636 result
->next
= NULL
;
2637 result
->prev
= NULL
;
2638 result
->start
.addresses
= xmalloc (sizeof (bfd_vma
*) * 2);
2639 result
->start
.addresses
[0] = start
;
2640 result
->start
.count
= 1;
2641 result
->start
.max_count
= 2;
2643 result
->level
= level
;
2648 /* Free a jump object and return the next object
2649 or NULL if this was the last one. */
2651 static struct jump_info
*
2652 jump_info_free (struct jump_info
*ji
)
2654 struct jump_info
*result
= NULL
;
2659 if (ji
->start
.addresses
)
2660 free (ji
->start
.addresses
);
2667 /* Get the smallest value of all start and end addresses. */
2670 jump_info_min_address (const struct jump_info
*ji
)
2672 bfd_vma min_address
= ji
->end
;
2675 for (i
= ji
->start
.count
; i
-- > 0;)
2676 if (ji
->start
.addresses
[i
] < min_address
)
2677 min_address
= ji
->start
.addresses
[i
];
2681 /* Get the largest value of all start and end addresses. */
2684 jump_info_max_address (const struct jump_info
*ji
)
2686 bfd_vma max_address
= ji
->end
;
2689 for (i
= ji
->start
.count
; i
-- > 0;)
2690 if (ji
->start
.addresses
[i
] > max_address
)
2691 max_address
= ji
->start
.addresses
[i
];
2695 /* Get the target address of a jump. */
2698 jump_info_end_address (const struct jump_info
*ji
)
2703 /* Test if an address is one of the start addresses of a jump. */
2706 jump_info_is_start_address (const struct jump_info
*ji
, bfd_vma address
)
2708 bool result
= false;
2711 for (i
= ji
->start
.count
; i
-- > 0;)
2712 if (address
== ji
->start
.addresses
[i
])
2721 /* Test if an address is the target address of a jump. */
2724 jump_info_is_end_address (const struct jump_info
*ji
, bfd_vma address
)
2726 return (address
== ji
->end
);
2729 /* Get the difference between the smallest and largest address of a jump. */
2732 jump_info_size (const struct jump_info
*ji
)
2734 return jump_info_max_address (ji
) - jump_info_min_address (ji
);
2737 /* Unlink a jump object from a list. */
2740 jump_info_unlink (struct jump_info
*node
,
2741 struct jump_info
**base
)
2744 node
->next
->prev
= node
->prev
;
2746 node
->prev
->next
= node
->next
;
2753 /* Insert unlinked jump info node into a list. */
2756 jump_info_insert (struct jump_info
*node
,
2757 struct jump_info
*target
,
2758 struct jump_info
**base
)
2760 node
->next
= target
;
2761 node
->prev
= target
->prev
;
2762 target
->prev
= node
;
2764 node
->prev
->next
= node
;
2769 /* Add unlinked node to the front of a list. */
2772 jump_info_add_front (struct jump_info
*node
,
2773 struct jump_info
**base
)
2777 node
->next
->prev
= node
;
2782 /* Move linked node to target position. */
2785 jump_info_move_linked (struct jump_info
*node
,
2786 struct jump_info
*target
,
2787 struct jump_info
**base
)
2790 jump_info_unlink (node
, base
);
2791 /* Insert node at target position. */
2792 jump_info_insert (node
, target
, base
);
2795 /* Test if two jumps intersect. */
2798 jump_info_intersect (const struct jump_info
*a
,
2799 const struct jump_info
*b
)
2801 return ((jump_info_max_address (a
) >= jump_info_min_address (b
))
2802 && (jump_info_min_address (a
) <= jump_info_max_address (b
)));
2805 /* Merge two compatible jump info objects. */
2808 jump_info_merge (struct jump_info
**base
)
2810 struct jump_info
*a
;
2812 for (a
= *base
; a
; a
= a
->next
)
2814 struct jump_info
*b
;
2816 for (b
= a
->next
; b
; b
= b
->next
)
2818 /* Merge both jumps into one. */
2819 if (a
->end
== b
->end
)
2821 /* Reallocate addresses. */
2822 size_t needed_size
= a
->start
.count
+ b
->start
.count
;
2825 if (needed_size
> a
->start
.max_count
)
2827 a
->start
.max_count
+= b
->start
.max_count
;
2828 a
->start
.addresses
=
2829 xrealloc (a
->start
.addresses
,
2830 a
->start
.max_count
* sizeof (bfd_vma
*));
2833 /* Append start addresses. */
2834 for (i
= 0; i
< b
->start
.count
; ++i
)
2835 a
->start
.addresses
[a
->start
.count
++] =
2836 b
->start
.addresses
[i
];
2838 /* Remove and delete jump. */
2839 struct jump_info
*tmp
= b
->prev
;
2840 jump_info_unlink (b
, base
);
2848 /* Sort jumps by their size and starting point using a stable
2849 minsort. This could be improved if sorting performance is
2850 an issue, for example by using mergesort. */
2853 jump_info_sort (struct jump_info
**base
)
2855 struct jump_info
*current_element
= *base
;
2857 while (current_element
)
2859 struct jump_info
*best_match
= current_element
;
2860 struct jump_info
*runner
= current_element
->next
;
2861 bfd_vma best_size
= jump_info_size (best_match
);
2865 bfd_vma runner_size
= jump_info_size (runner
);
2867 if ((runner_size
< best_size
)
2868 || ((runner_size
== best_size
)
2869 && (jump_info_min_address (runner
)
2870 < jump_info_min_address (best_match
))))
2872 best_match
= runner
;
2873 best_size
= runner_size
;
2876 runner
= runner
->next
;
2879 if (best_match
== current_element
)
2880 current_element
= current_element
->next
;
2882 jump_info_move_linked (best_match
, current_element
, base
);
2886 /* Visualize all jumps at a given address. */
2889 jump_info_visualize_address (bfd_vma address
,
2892 uint8_t *color_buffer
)
2894 struct jump_info
*ji
= detected_jumps
;
2895 size_t len
= (max_level
+ 1) * 3;
2897 /* Clear line buffer. */
2898 memset (line_buffer
, ' ', len
);
2899 memset (color_buffer
, 0, len
);
2901 /* Iterate over jumps and add their ASCII art. */
2904 /* Discard jumps that are never needed again. */
2905 if (jump_info_max_address (ji
) < address
)
2907 struct jump_info
*tmp
= ji
;
2910 jump_info_unlink (tmp
, &detected_jumps
);
2911 jump_info_free (tmp
);
2915 /* This jump intersects with the current address. */
2916 if (jump_info_min_address (ji
) <= address
)
2918 /* Hash target address to get an even
2919 distribution between all values. */
2920 bfd_vma hash_address
= jump_info_end_address (ji
);
2921 uint8_t color
= iterative_hash_object (hash_address
, 0);
2922 /* Fetch line offset. */
2923 int offset
= (max_level
- ji
->level
) * 3;
2925 /* Draw start line. */
2926 if (jump_info_is_start_address (ji
, address
))
2928 size_t i
= offset
+ 1;
2930 for (; i
< len
- 1; ++i
)
2931 if (line_buffer
[i
] == ' ')
2933 line_buffer
[i
] = '-';
2934 color_buffer
[i
] = color
;
2937 if (line_buffer
[i
] == ' ')
2939 line_buffer
[i
] = '-';
2940 color_buffer
[i
] = color
;
2942 else if (line_buffer
[i
] == '>')
2944 line_buffer
[i
] = 'X';
2945 color_buffer
[i
] = color
;
2948 if (line_buffer
[offset
] == ' ')
2950 if (address
<= ji
->end
)
2951 line_buffer
[offset
] =
2952 (jump_info_min_address (ji
) == address
) ? ',': '+';
2954 line_buffer
[offset
] =
2955 (jump_info_max_address (ji
) == address
) ? '\'': '+';
2956 color_buffer
[offset
] = color
;
2959 /* Draw jump target. */
2960 else if (jump_info_is_end_address (ji
, address
))
2962 size_t i
= offset
+ 1;
2964 for (; i
< len
- 1; ++i
)
2965 if (line_buffer
[i
] == ' ')
2967 line_buffer
[i
] = '-';
2968 color_buffer
[i
] = color
;
2971 if (line_buffer
[i
] == ' ')
2973 line_buffer
[i
] = '>';
2974 color_buffer
[i
] = color
;
2976 else if (line_buffer
[i
] == '-')
2978 line_buffer
[i
] = 'X';
2979 color_buffer
[i
] = color
;
2982 if (line_buffer
[offset
] == ' ')
2984 if (jump_info_min_address (ji
) < address
)
2985 line_buffer
[offset
] =
2986 (jump_info_max_address (ji
) > address
) ? '>' : '\'';
2988 line_buffer
[offset
] = ',';
2989 color_buffer
[offset
] = color
;
2992 /* Draw intermediate line segment. */
2993 else if (line_buffer
[offset
] == ' ')
2995 line_buffer
[offset
] = '|';
2996 color_buffer
[offset
] = color
;
3004 /* Clone of disassemble_bytes to detect jumps inside a function. */
3005 /* FIXME: is this correct? Can we strip it down even further? */
3007 static struct jump_info
*
3008 disassemble_jumps (struct disassemble_info
* inf
,
3009 disassembler_ftype disassemble_fn
,
3010 bfd_vma start_offset
,
3011 bfd_vma stop_offset
,
3014 arelent
** relppend
)
3016 struct objdump_disasm_info
*aux
;
3017 struct jump_info
*jumps
= NULL
;
3019 bfd_vma addr_offset
;
3020 unsigned int opb
= inf
->octets_per_byte
;
3024 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
3025 section
= inf
->section
;
3028 sfile
.buffer
= (char *) xmalloc (sfile
.alloc
);
3031 inf
->insn_info_valid
= 0;
3032 disassemble_set_printf (inf
, &sfile
, (fprintf_ftype
) objdump_sprintf
,
3033 (fprintf_styled_ftype
) objdump_styled_sprintf
);
3035 addr_offset
= start_offset
;
3036 while (addr_offset
< stop_offset
)
3038 int previous_octets
;
3040 /* Remember the length of the previous instruction. */
3041 previous_octets
= octets
;
3045 inf
->bytes_per_line
= 0;
3046 inf
->bytes_per_chunk
= 0;
3047 inf
->flags
= ((disassemble_all
? DISASSEMBLE_DATA
: 0)
3048 | (wide_output
? WIDE_OUTPUT
: 0));
3050 inf
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
3052 if (inf
->disassembler_needs_relocs
3053 && (bfd_get_file_flags (aux
->abfd
) & EXEC_P
) == 0
3054 && (bfd_get_file_flags (aux
->abfd
) & DYNAMIC
) == 0
3055 && relpp
< relppend
)
3057 bfd_signed_vma distance_to_rel
;
3059 distance_to_rel
= (*relpp
)->address
- (rel_offset
+ addr_offset
);
3061 /* Check to see if the current reloc is associated with
3062 the instruction that we are about to disassemble. */
3063 if (distance_to_rel
== 0
3064 /* FIXME: This is wrong. We are trying to catch
3065 relocs that are addressed part way through the
3066 current instruction, as might happen with a packed
3067 VLIW instruction. Unfortunately we do not know the
3068 length of the current instruction since we have not
3069 disassembled it yet. Instead we take a guess based
3070 upon the length of the previous instruction. The
3071 proper solution is to have a new target-specific
3072 disassembler function which just returns the length
3073 of an instruction at a given address without trying
3074 to display its disassembly. */
3075 || (distance_to_rel
> 0
3076 && distance_to_rel
< (bfd_signed_vma
) (previous_octets
/ opb
)))
3078 inf
->flags
|= INSN_HAS_RELOC
;
3082 if (! disassemble_all
3083 && (section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
3084 == (SEC_CODE
| SEC_HAS_CONTENTS
))
3085 /* Set a stop_vma so that the disassembler will not read
3086 beyond the next symbol. We assume that symbols appear on
3087 the boundaries between instructions. We only do this when
3088 disassembling code of course, and when -D is in effect. */
3089 inf
->stop_vma
= section
->vma
+ stop_offset
;
3091 inf
->stop_offset
= stop_offset
;
3093 /* Extract jump information. */
3094 inf
->insn_info_valid
= 0;
3095 disassembler_in_comment
= false;
3096 octets
= (*disassemble_fn
) (section
->vma
+ addr_offset
, inf
);
3097 /* Test if a jump was detected. */
3098 if (inf
->insn_info_valid
3099 && ((inf
->insn_type
== dis_branch
)
3100 || (inf
->insn_type
== dis_condbranch
)
3101 || (inf
->insn_type
== dis_jsr
)
3102 || (inf
->insn_type
== dis_condjsr
))
3103 && (inf
->target
>= section
->vma
+ start_offset
)
3104 && (inf
->target
< section
->vma
+ stop_offset
))
3106 struct jump_info
*ji
=
3107 jump_info_new (section
->vma
+ addr_offset
, inf
->target
, -1);
3108 jump_info_add_front (ji
, &jumps
);
3113 addr_offset
+= octets
/ opb
;
3116 disassemble_set_printf (inf
, (void *) stdout
, (fprintf_ftype
) fprintf
,
3117 (fprintf_styled_ftype
) fprintf_styled
);
3118 free (sfile
.buffer
);
3121 jump_info_merge (&jumps
);
3122 /* Process jumps. */
3123 jump_info_sort (&jumps
);
3125 /* Group jumps by level. */
3126 struct jump_info
*last_jump
= jumps
;
3131 /* The last jump is part of the next group. */
3132 struct jump_info
*base
= last_jump
;
3133 /* Increment level. */
3134 base
->level
= ++max_level
;
3136 /* Find jumps that can be combined on the same
3137 level, with the largest jumps tested first.
3138 This has the advantage that large jumps are on
3139 lower levels and do not intersect with small
3140 jumps that get grouped on higher levels. */
3141 struct jump_info
*exchange_item
= last_jump
->next
;
3142 struct jump_info
*it
= exchange_item
;
3144 for (; it
; it
= it
->next
)
3146 /* Test if the jump intersects with any
3147 jump from current group. */
3149 struct jump_info
*it_collision
;
3151 for (it_collision
= base
;
3152 it_collision
!= exchange_item
;
3153 it_collision
= it_collision
->next
)
3155 /* This jump intersects so we leave it out. */
3156 if (jump_info_intersect (it_collision
, it
))
3163 /* Add jump to group. */
3166 /* Move current element to the front. */
3167 if (it
!= exchange_item
)
3169 struct jump_info
*save
= it
->prev
;
3170 jump_info_move_linked (it
, exchange_item
, &jumps
);
3176 last_jump
= exchange_item
;
3177 exchange_item
= exchange_item
->next
;
3179 last_jump
->level
= max_level
;
3183 /* Move to next group. */
3184 last_jump
= exchange_item
;
3190 /* The number of zeroes we want to see before we start skipping them.
3191 The number is arbitrarily chosen. */
3193 #define DEFAULT_SKIP_ZEROES 8
3195 /* The number of zeroes to skip at the end of a section. If the
3196 number of zeroes at the end is between SKIP_ZEROES_AT_END and
3197 SKIP_ZEROES, they will be disassembled. If there are fewer than
3198 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
3199 attempt to avoid disassembling zeroes inserted by section
3202 #define DEFAULT_SKIP_ZEROES_AT_END 3
3205 null_print (const void * stream ATTRIBUTE_UNUSED
, const char * format ATTRIBUTE_UNUSED
, ...)
3210 /* Like null_print, but takes the extra STYLE argument. As this is not
3211 going to print anything, the extra argument is just ignored. */
3214 null_styled_print (const void * stream ATTRIBUTE_UNUSED
,
3215 enum disassembler_style style ATTRIBUTE_UNUSED
,
3216 const char * format ATTRIBUTE_UNUSED
, ...)
3221 /* Print out jump visualization. */
3224 print_jump_visualisation (bfd_vma addr
, int max_level
, char *line_buffer
,
3225 uint8_t *color_buffer
)
3230 jump_info_visualize_address (addr
, max_level
, line_buffer
, color_buffer
);
3232 size_t line_buffer_size
= strlen (line_buffer
);
3233 char last_color
= 0;
3236 for (i
= 0; i
<= line_buffer_size
; ++i
)
3240 uint8_t color
= (i
< line_buffer_size
) ? color_buffer
[i
]: 0;
3242 if (color
!= last_color
)
3245 if (extended_color_output
)
3246 /* Use extended 8bit color, but
3247 do not choose dark colors. */
3248 printf ("\033[38;5;%dm", 124 + (color
% 108));
3250 /* Use simple terminal colors. */
3251 printf ("\033[%dm", 31 + (color
% 7));
3258 putchar ((i
< line_buffer_size
) ? line_buffer
[i
]: ' ');
3262 /* Disassemble some data in memory between given values. */
3265 disassemble_bytes (struct disassemble_info
*inf
,
3266 disassembler_ftype disassemble_fn
,
3269 bfd_vma start_offset
,
3270 bfd_vma stop_offset
,
3275 struct objdump_disasm_info
*aux
;
3277 unsigned int octets_per_line
;
3278 unsigned int skip_addr_chars
;
3279 bfd_vma addr_offset
;
3280 unsigned int opb
= inf
->octets_per_byte
;
3281 unsigned int skip_zeroes
= inf
->skip_zeroes
;
3282 unsigned int skip_zeroes_at_end
= inf
->skip_zeroes_at_end
;
3286 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
3287 section
= inf
->section
;
3290 sfile
.buffer
= (char *) xmalloc (sfile
.alloc
);
3294 octets_per_line
= insn_width
;
3296 octets_per_line
= 4;
3298 octets_per_line
= 16;
3300 /* Figure out how many characters to skip at the start of an
3301 address, to make the disassembly look nicer. We discard leading
3302 zeroes in chunks of 4, ensuring that there is always a leading
3304 skip_addr_chars
= 0;
3305 if (!no_addresses
&& !prefix_addresses
)
3309 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ section
->size
/ opb
);
3311 while (buf
[skip_addr_chars
] == '0')
3314 /* Don't discard zeros on overflow. */
3315 if (buf
[skip_addr_chars
] == '\0' && section
->vma
!= 0)
3316 skip_addr_chars
= 0;
3318 if (skip_addr_chars
!= 0)
3319 skip_addr_chars
= (skip_addr_chars
- 1) & -4;
3322 inf
->insn_info_valid
= 0;
3324 /* Determine maximum level. */
3325 uint8_t *color_buffer
= NULL
;
3326 char *line_buffer
= NULL
;
3329 /* Some jumps were detected. */
3332 struct jump_info
*ji
;
3334 /* Find maximum jump level. */
3335 for (ji
= detected_jumps
; ji
; ji
= ji
->next
)
3337 if (ji
->level
> max_level
)
3338 max_level
= ji
->level
;
3341 /* Allocate buffers. */
3342 size_t len
= (max_level
+ 1) * 3 + 1;
3343 line_buffer
= xmalloc (len
);
3344 line_buffer
[len
- 1] = 0;
3345 color_buffer
= xmalloc (len
);
3346 color_buffer
[len
- 1] = 0;
3349 addr_offset
= start_offset
;
3350 while (addr_offset
< stop_offset
)
3352 bool need_nl
= false;
3356 /* Make sure we don't use relocs from previous instructions. */
3359 /* If we see more than SKIP_ZEROES octets of zeroes, we just
3361 if (! disassemble_zeroes
)
3362 for (; octets
< (stop_offset
- addr_offset
) * opb
; octets
++)
3363 if (data
[addr_offset
* opb
+ octets
] != 0)
3365 if (! disassemble_zeroes
3366 && (inf
->insn_info_valid
== 0
3367 || inf
->branch_delay_insns
== 0)
3368 && (octets
>= skip_zeroes
3369 || (octets
== (stop_offset
- addr_offset
) * opb
3370 && octets
< skip_zeroes_at_end
)))
3372 /* If there are more nonzero octets to follow, we only skip
3373 zeroes in multiples of 4, to try to avoid running over
3374 the start of an instruction which happens to start with
3376 if (octets
!= (stop_offset
- addr_offset
) * opb
)
3379 /* If we are going to display more data, and we are displaying
3380 file offsets, then tell the user how many zeroes we skip
3381 and the file offset from where we resume dumping. */
3382 if (display_file_offsets
3383 && octets
/ opb
< stop_offset
- addr_offset
)
3384 printf (_("\t... (skipping %lu zeroes, "
3385 "resuming at file offset: 0x%lx)\n"),
3386 (unsigned long) (octets
/ opb
),
3387 (unsigned long) (section
->filepos
3388 + addr_offset
+ octets
/ opb
));
3395 unsigned int bpc
= 0;
3396 unsigned int pb
= 0;
3398 if (with_line_numbers
|| with_source_code
)
3399 show_line (aux
->abfd
, section
, addr_offset
);
3403 else if (!prefix_addresses
)
3407 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ addr_offset
);
3408 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
3412 printf ("%s:\t", buf
+ skip_addr_chars
);
3416 aux
->require_sec
= true;
3417 objdump_print_address (section
->vma
+ addr_offset
, inf
);
3418 aux
->require_sec
= false;
3422 print_jump_visualisation (section
->vma
+ addr_offset
,
3423 max_level
, line_buffer
,
3431 disassemble_set_printf
3432 (inf
, &sfile
, (fprintf_ftype
) objdump_sprintf
,
3433 (fprintf_styled_ftype
) objdump_styled_sprintf
);
3434 inf
->bytes_per_line
= 0;
3435 inf
->bytes_per_chunk
= 0;
3436 inf
->flags
= ((disassemble_all
? DISASSEMBLE_DATA
: 0)
3437 | (wide_output
? WIDE_OUTPUT
: 0));
3439 inf
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
3441 if (inf
->disassembler_needs_relocs
3442 && (bfd_get_file_flags (aux
->abfd
) & EXEC_P
) == 0
3443 && (bfd_get_file_flags (aux
->abfd
) & DYNAMIC
) == 0
3444 && relpp
< relppend
)
3446 bfd_signed_vma distance_to_rel
;
3447 int max_reloc_offset
3448 = aux
->abfd
->arch_info
->max_reloc_offset_into_insn
;
3450 distance_to_rel
= ((*relpp
)->address
- rel_offset
3454 if (distance_to_rel
> 0
3455 && (max_reloc_offset
< 0
3456 || distance_to_rel
<= max_reloc_offset
))
3458 /* This reloc *might* apply to the current insn,
3459 starting somewhere inside it. Discover the length
3460 of the current insn so that the check below will
3463 insn_size
= insn_width
;
3466 /* We find the length by calling the dissassembler
3467 function with a dummy print handler. This should
3468 work unless the disassembler is not expecting to
3469 be called multiple times for the same address.
3471 This does mean disassembling the instruction
3472 twice, but we only do this when there is a high
3473 probability that there is a reloc that will
3474 affect the instruction. */
3475 disassemble_set_printf
3476 (inf
, inf
->stream
, (fprintf_ftype
) null_print
,
3477 (fprintf_styled_ftype
) null_styled_print
);
3478 insn_size
= disassemble_fn (section
->vma
3479 + addr_offset
, inf
);
3480 disassemble_set_printf
3482 (fprintf_ftype
) objdump_sprintf
,
3483 (fprintf_styled_ftype
) objdump_styled_sprintf
);
3487 /* Check to see if the current reloc is associated with
3488 the instruction that we are about to disassemble. */
3489 if (distance_to_rel
== 0
3490 || (distance_to_rel
> 0
3491 && distance_to_rel
< insn_size
/ (int) opb
))
3493 inf
->flags
|= INSN_HAS_RELOC
;
3494 aux
->reloc
= *relpp
;
3498 if (! disassemble_all
3499 && ((section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
3500 == (SEC_CODE
| SEC_HAS_CONTENTS
)))
3501 /* Set a stop_vma so that the disassembler will not read
3502 beyond the next symbol. We assume that symbols appear on
3503 the boundaries between instructions. We only do this when
3504 disassembling code of course, and when -D is in effect. */
3505 inf
->stop_vma
= section
->vma
+ stop_offset
;
3507 inf
->stop_offset
= stop_offset
;
3508 disassembler_in_comment
= false;
3509 insn_size
= (*disassemble_fn
) (section
->vma
+ addr_offset
, inf
);
3513 disassemble_set_printf (inf
, stdout
, (fprintf_ftype
) fprintf
,
3514 (fprintf_styled_ftype
) fprintf_styled
);
3515 if (insn_width
== 0 && inf
->bytes_per_line
!= 0)
3516 octets_per_line
= inf
->bytes_per_line
;
3517 if (insn_size
< (int) opb
)
3520 printf ("%s\n", sfile
.buffer
);
3523 non_fatal (_("disassemble_fn returned length %d"),
3534 octets
= octets_per_line
;
3535 if (octets
/ opb
> stop_offset
- addr_offset
)
3536 octets
= (stop_offset
- addr_offset
) * opb
;
3538 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ octets
; ++j
)
3540 if (ISPRINT (data
[j
]))
3541 buf
[j
- addr_offset
* opb
] = data
[j
];
3543 buf
[j
- addr_offset
* opb
] = '.';
3545 buf
[j
- addr_offset
* opb
] = '\0';
3548 if (prefix_addresses
3550 : show_raw_insn
>= 0)
3554 /* If ! prefix_addresses and ! wide_output, we print
3555 octets_per_line octets per line. */
3557 if (pb
> octets_per_line
&& ! prefix_addresses
&& ! wide_output
)
3558 pb
= octets_per_line
;
3560 if (inf
->bytes_per_chunk
)
3561 bpc
= inf
->bytes_per_chunk
;
3565 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
3567 /* PR 21580: Check for a buffer ending early. */
3568 if (j
+ bpc
<= stop_offset
* opb
)
3572 if (inf
->display_endian
== BFD_ENDIAN_LITTLE
)
3574 for (k
= bpc
; k
-- != 0; )
3575 printf ("%02x", (unsigned) data
[j
+ k
]);
3579 for (k
= 0; k
< bpc
; k
++)
3580 printf ("%02x", (unsigned) data
[j
+ k
]);
3586 for (; pb
< octets_per_line
; pb
+= bpc
)
3590 for (k
= 0; k
< bpc
; k
++)
3595 /* Separate raw data from instruction by extra space. */
3605 printf ("%s", sfile
.buffer
);
3607 if (prefix_addresses
3609 : show_raw_insn
>= 0)
3617 j
= addr_offset
* opb
+ pb
;
3623 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ j
/ opb
);
3624 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
3628 printf ("%s:\t", buf
+ skip_addr_chars
);
3631 print_jump_visualisation (section
->vma
+ j
/ opb
,
3632 max_level
, line_buffer
,
3635 pb
+= octets_per_line
;
3638 for (; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
3640 /* PR 21619: Check for a buffer ending early. */
3641 if (j
+ bpc
<= stop_offset
* opb
)
3645 if (inf
->display_endian
== BFD_ENDIAN_LITTLE
)
3647 for (k
= bpc
; k
-- != 0; )
3648 printf ("%02x", (unsigned) data
[j
+ k
]);
3652 for (k
= 0; k
< bpc
; k
++)
3653 printf ("%02x", (unsigned) data
[j
+ k
]);
3667 while (relpp
< relppend
3668 && (*relpp
)->address
< rel_offset
+ addr_offset
+ octets
/ opb
)
3670 if (dump_reloc_info
|| dump_dynamic_reloc_info
)
3683 objdump_print_value (section
->vma
- rel_offset
+ q
->address
,
3688 if (q
->howto
== NULL
)
3689 printf ("*unknown*\t");
3690 else if (q
->howto
->name
)
3691 printf ("%s\t", q
->howto
->name
);
3693 printf ("%d\t", q
->howto
->type
);
3695 if (q
->sym_ptr_ptr
== NULL
|| *q
->sym_ptr_ptr
== NULL
)
3696 printf ("*unknown*");
3699 const char *sym_name
;
3701 sym_name
= bfd_asymbol_name (*q
->sym_ptr_ptr
);
3702 if (sym_name
!= NULL
&& *sym_name
!= '\0')
3703 objdump_print_symname (aux
->abfd
, inf
, *q
->sym_ptr_ptr
);
3708 sym_sec
= bfd_asymbol_section (*q
->sym_ptr_ptr
);
3709 sym_name
= bfd_section_name (sym_sec
);
3710 if (sym_name
== NULL
|| *sym_name
== '\0')
3711 sym_name
= "*unknown*";
3712 printf ("%s", sanitize_string (sym_name
));
3718 bfd_vma addend
= q
->addend
;
3719 if ((bfd_signed_vma
) addend
< 0)
3726 objdump_print_value (addend
, inf
, true);
3738 addr_offset
+= octets
/ opb
;
3741 free (sfile
.buffer
);
3743 free (color_buffer
);
3747 disassemble_section (bfd
*abfd
, asection
*section
, void *inf
)
3749 const struct elf_backend_data
*bed
;
3750 bfd_vma sign_adjust
= 0;
3751 struct disassemble_info
*pinfo
= (struct disassemble_info
*) inf
;
3752 struct objdump_disasm_info
*paux
;
3753 unsigned int opb
= pinfo
->octets_per_byte
;
3754 bfd_byte
*data
= NULL
;
3755 bfd_size_type datasize
= 0;
3756 arelent
**rel_pp
= NULL
;
3757 arelent
**rel_ppstart
= NULL
;
3758 arelent
**rel_ppend
;
3759 bfd_vma stop_offset
;
3760 asymbol
*sym
= NULL
;
3764 unsigned long addr_offset
;
3768 stop_offset_reached
,
3773 if (only_list
== NULL
)
3775 /* Sections that do not contain machine
3776 code are not normally disassembled. */
3777 if ((section
->flags
& SEC_HAS_CONTENTS
) == 0)
3780 if (! disassemble_all
3781 && (section
->flags
& SEC_CODE
) == 0)
3784 else if (!process_section_p (section
))
3787 datasize
= bfd_section_size (section
);
3791 if (start_address
== (bfd_vma
) -1
3792 || start_address
< section
->vma
)
3795 addr_offset
= start_address
- section
->vma
;
3797 if (stop_address
== (bfd_vma
) -1)
3798 stop_offset
= datasize
/ opb
;
3801 if (stop_address
< section
->vma
)
3804 stop_offset
= stop_address
- section
->vma
;
3805 if (stop_offset
> datasize
/ opb
)
3806 stop_offset
= datasize
/ opb
;
3809 if (addr_offset
>= stop_offset
)
3812 /* Decide which set of relocs to use. Load them if necessary. */
3813 paux
= (struct objdump_disasm_info
*) pinfo
->application_data
;
3814 if (pinfo
->dynrelbuf
&& dump_dynamic_reloc_info
)
3816 rel_pp
= pinfo
->dynrelbuf
;
3817 rel_count
= pinfo
->dynrelcount
;
3818 /* Dynamic reloc addresses are absolute, non-dynamic are section
3819 relative. REL_OFFSET specifies the reloc address corresponding
3820 to the start of this section. */
3821 rel_offset
= section
->vma
;
3829 if ((section
->flags
& SEC_RELOC
) != 0
3830 && (dump_reloc_info
|| pinfo
->disassembler_needs_relocs
))
3834 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
3836 my_bfd_nonfatal (bfd_get_filename (abfd
));
3840 rel_pp
= (arelent
**) xmalloc (relsize
);
3841 rel_count
= bfd_canonicalize_reloc (abfd
, section
, rel_pp
, syms
);
3844 my_bfd_nonfatal (bfd_get_filename (abfd
));
3849 else if (rel_count
> 1)
3850 /* Sort the relocs by address. */
3851 qsort (rel_pp
, rel_count
, sizeof (arelent
*), compare_relocs
);
3852 rel_ppstart
= rel_pp
;
3856 rel_ppend
= PTR_ADD (rel_pp
, rel_count
);
3858 if (!bfd_malloc_and_get_section (abfd
, section
, &data
))
3860 non_fatal (_("Reading section %s failed because: %s"),
3861 section
->name
, bfd_errmsg (bfd_get_error ()));
3866 pinfo
->buffer
= data
;
3867 pinfo
->buffer_vma
= section
->vma
;
3868 pinfo
->buffer_length
= datasize
;
3869 pinfo
->section
= section
;
3871 /* Sort the symbols into value and section order. */
3872 compare_section
= section
;
3873 if (sorted_symcount
> 1)
3874 qsort (sorted_syms
, sorted_symcount
, sizeof (asymbol
*), compare_symbols
);
3876 printf (_("\nDisassembly of section %s:\n"), sanitize_string (section
->name
));
3878 /* Find the nearest symbol forwards from our current position. */
3879 paux
->require_sec
= true;
3880 sym
= (asymbol
*) find_symbol_for_address (section
->vma
+ addr_offset
,
3881 (struct disassemble_info
*) inf
,
3883 paux
->require_sec
= false;
3885 /* PR 9774: If the target used signed addresses then we must make
3886 sure that we sign extend the value that we calculate for 'addr'
3887 in the loop below. */
3888 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
3889 && (bed
= get_elf_backend_data (abfd
)) != NULL
3890 && bed
->sign_extend_vma
)
3891 sign_adjust
= (bfd_vma
) 1 << (bed
->s
->arch_size
- 1);
3893 /* Disassemble a block of instructions up to the address associated with
3894 the symbol we have just found. Then print the symbol and find the
3895 next symbol on. Repeat until we have disassembled the entire section
3896 or we have reached the end of the address range we are interested in. */
3897 do_print
= paux
->symbol
== NULL
;
3898 loop_until
= stop_offset_reached
;
3900 while (addr_offset
< stop_offset
)
3904 bfd_vma nextstop_offset
;
3907 /* Skip over the relocs belonging to addresses below the
3909 while (rel_pp
< rel_ppend
3910 && (*rel_pp
)->address
< rel_offset
+ addr_offset
)
3913 addr
= section
->vma
+ addr_offset
;
3914 addr
= ((addr
& ((sign_adjust
<< 1) - 1)) ^ sign_adjust
) - sign_adjust
;
3916 if (sym
!= NULL
&& bfd_asymbol_value (sym
) <= addr
)
3921 (x
< sorted_symcount
3922 && (bfd_asymbol_value (sorted_syms
[x
]) <= addr
));
3926 pinfo
->symbols
= sorted_syms
+ place
;
3927 pinfo
->num_symbols
= x
- place
;
3928 pinfo
->symtab_pos
= place
;
3932 pinfo
->symbols
= NULL
;
3933 pinfo
->num_symbols
= 0;
3934 pinfo
->symtab_pos
= -1;
3937 /* If we are only disassembling from a specific symbol,
3938 check to see if we should start or stop displaying. */
3939 if (sym
&& paux
->symbol
)
3943 /* See if we should stop printing. */
3947 if (sym
->flags
& BSF_FUNCTION
)
3951 case stop_offset_reached
:
3952 /* Handled by the while loop. */
3956 /* FIXME: There is an implicit assumption here
3957 that the name of sym is different from
3959 if (! bfd_is_local_label (abfd
, sym
))
3966 const char * name
= bfd_asymbol_name (sym
);
3967 char * alloc
= NULL
;
3969 if (do_demangle
&& name
[0] != '\0')
3971 /* Demangle the name. */
3972 alloc
= bfd_demangle (abfd
, name
, demangle_flags
);
3977 /* We are not currently printing. Check to see
3978 if the current symbol matches the requested symbol. */
3979 if (streq (name
, paux
->symbol
)
3980 && bfd_asymbol_value (sym
) <= addr
)
3984 loop_until
= next_sym
;
3985 if (sym
->flags
& BSF_FUNCTION
)
3987 loop_until
= function_sym
;
3989 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
3991 bfd_size_type fsize
=
3992 ((elf_symbol_type
*) sym
)->internal_elf_sym
.st_size
;
3994 bfd_asymbol_value (sym
) - section
->vma
+ fsize
;
3995 if (fend
> addr_offset
&& fend
<= stop_offset
)
3997 /* Sym is a function symbol with a valid
3998 size associated with it. Disassemble
3999 to the end of the function. */
4001 loop_until
= stop_offset_reached
;
4011 if (! prefix_addresses
&& do_print
)
4013 pinfo
->fprintf_func (pinfo
->stream
, "\n");
4014 objdump_print_addr_with_sym (abfd
, section
, sym
, addr
,
4016 pinfo
->fprintf_func (pinfo
->stream
, ":\n");
4018 if (sym
!= NULL
&& show_all_symbols
)
4020 for (++place
; place
< sorted_symcount
; place
++)
4022 sym
= sorted_syms
[place
];
4024 if (bfd_asymbol_value (sym
) != addr
)
4026 if (! pinfo
->symbol_is_valid (sym
, pinfo
))
4028 if (strcmp (bfd_section_name (sym
->section
), bfd_section_name (section
)) != 0)
4031 objdump_print_addr_with_sym (abfd
, section
, sym
, addr
, pinfo
, false);
4032 pinfo
->fprintf_func (pinfo
->stream
, ":\n");
4037 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
4039 else if (sym
== NULL
)
4043 #define is_valid_next_sym(SYM) \
4044 (strcmp (bfd_section_name ((SYM)->section), bfd_section_name (section)) == 0 \
4045 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
4046 && pinfo->symbol_is_valid (SYM, pinfo))
4048 /* Search forward for the next appropriate symbol in
4049 SECTION. Note that all the symbols are sorted
4050 together into one big array, and that some sections
4051 may have overlapping addresses. */
4052 while (place
< sorted_symcount
4053 && ! is_valid_next_sym (sorted_syms
[place
]))
4056 if (place
>= sorted_symcount
)
4059 nextsym
= sorted_syms
[place
];
4062 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
4063 nextstop_offset
= bfd_asymbol_value (sym
) - section
->vma
;
4064 else if (nextsym
== NULL
)
4065 nextstop_offset
= stop_offset
;
4067 nextstop_offset
= bfd_asymbol_value (nextsym
) - section
->vma
;
4069 if (nextstop_offset
> stop_offset
4070 || nextstop_offset
<= addr_offset
)
4071 nextstop_offset
= stop_offset
;
4073 /* If a symbol is explicitly marked as being an object
4074 rather than a function, just dump the bytes without
4075 disassembling them. */
4078 || sym
->section
!= section
4079 || bfd_asymbol_value (sym
) > addr
4080 || ((sym
->flags
& BSF_OBJECT
) == 0
4081 && (strstr (bfd_asymbol_name (sym
), "gnu_compiled")
4083 && (strstr (bfd_asymbol_name (sym
), "gcc2_compiled")
4085 || (sym
->flags
& BSF_FUNCTION
) != 0)
4092 /* Resolve symbol name. */
4093 if (visualize_jumps
&& abfd
&& sym
&& sym
->name
)
4095 struct disassemble_info di
;
4098 sf
.alloc
= strlen (sym
->name
) + 40;
4099 sf
.buffer
= (char*) xmalloc (sf
.alloc
);
4101 disassemble_set_printf
4102 (&di
, &sf
, (fprintf_ftype
) objdump_sprintf
,
4103 (fprintf_styled_ftype
) objdump_styled_sprintf
);
4105 objdump_print_symname (abfd
, &di
, sym
);
4107 /* Fetch jump information. */
4108 detected_jumps
= disassemble_jumps (pinfo
, paux
->disassemble_fn
,
4109 addr_offset
, nextstop_offset
,
4110 rel_offset
, rel_pp
, rel_ppend
);
4111 /* Free symbol name. */
4115 /* Add jumps to output. */
4116 disassemble_bytes (pinfo
, paux
->disassemble_fn
, insns
, data
,
4117 addr_offset
, nextstop_offset
,
4118 rel_offset
, rel_pp
, rel_ppend
);
4121 while (detected_jumps
)
4123 detected_jumps
= jump_info_free (detected_jumps
);
4127 addr_offset
= nextstop_offset
;
4135 /* Disassemble the contents of an object file. */
4138 disassemble_data (bfd
*abfd
)
4140 struct disassemble_info disasm_info
;
4141 struct objdump_disasm_info aux
;
4145 prev_functionname
= NULL
;
4147 prev_discriminator
= 0;
4149 /* We make a copy of syms to sort. We don't want to sort syms
4150 because that will screw up the relocs. */
4151 sorted_symcount
= symcount
? symcount
: dynsymcount
;
4152 sorted_syms
= (asymbol
**) xmalloc ((sorted_symcount
+ synthcount
)
4153 * sizeof (asymbol
*));
4154 if (sorted_symcount
!= 0)
4156 memcpy (sorted_syms
, symcount
? syms
: dynsyms
,
4157 sorted_symcount
* sizeof (asymbol
*));
4159 sorted_symcount
= remove_useless_symbols (sorted_syms
, sorted_symcount
);
4162 for (i
= 0; i
< synthcount
; ++i
)
4164 sorted_syms
[sorted_symcount
] = synthsyms
+ i
;
4168 init_disassemble_info (&disasm_info
, stdout
, (fprintf_ftype
) fprintf
,
4169 (fprintf_styled_ftype
) fprintf_styled
);
4170 disasm_info
.application_data
= (void *) &aux
;
4172 aux
.require_sec
= false;
4173 disasm_info
.dynrelbuf
= NULL
;
4174 disasm_info
.dynrelcount
= 0;
4176 aux
.symbol
= disasm_sym
;
4178 disasm_info
.print_address_func
= objdump_print_address
;
4179 disasm_info
.symbol_at_address_func
= objdump_symbol_at_address
;
4181 if (machine
!= NULL
)
4183 const bfd_arch_info_type
*inf
= bfd_scan_arch (machine
);
4187 non_fatal (_("can't use supplied machine %s"), machine
);
4191 abfd
->arch_info
= inf
;
4194 if (endian
!= BFD_ENDIAN_UNKNOWN
)
4196 struct bfd_target
*xvec
;
4198 xvec
= (struct bfd_target
*) xmalloc (sizeof (struct bfd_target
));
4199 memcpy (xvec
, abfd
->xvec
, sizeof (struct bfd_target
));
4200 xvec
->byteorder
= endian
;
4204 /* Use libopcodes to locate a suitable disassembler. */
4205 aux
.disassemble_fn
= disassembler (bfd_get_arch (abfd
),
4206 bfd_big_endian (abfd
),
4207 bfd_get_mach (abfd
), abfd
);
4208 if (!aux
.disassemble_fn
)
4210 non_fatal (_("can't disassemble for architecture %s\n"),
4211 bfd_printable_arch_mach (bfd_get_arch (abfd
), 0));
4217 disasm_info
.flavour
= bfd_get_flavour (abfd
);
4218 disasm_info
.arch
= bfd_get_arch (abfd
);
4219 disasm_info
.mach
= bfd_get_mach (abfd
);
4220 disasm_info
.disassembler_options
= disassembler_options
;
4221 disasm_info
.octets_per_byte
= bfd_octets_per_byte (abfd
, NULL
);
4222 disasm_info
.skip_zeroes
= DEFAULT_SKIP_ZEROES
;
4223 disasm_info
.skip_zeroes_at_end
= DEFAULT_SKIP_ZEROES_AT_END
;
4224 disasm_info
.disassembler_needs_relocs
= false;
4226 if (bfd_big_endian (abfd
))
4227 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_BIG
;
4228 else if (bfd_little_endian (abfd
))
4229 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_LITTLE
;
4231 /* ??? Aborting here seems too drastic. We could default to big or little
4233 disasm_info
.endian
= BFD_ENDIAN_UNKNOWN
;
4235 disasm_info
.endian_code
= disasm_info
.endian
;
4237 /* Allow the target to customize the info structure. */
4238 disassemble_init_for_target (& disasm_info
);
4240 /* Pre-load the dynamic relocs as we may need them during the disassembly. */
4241 long relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
4245 disasm_info
.dynrelbuf
= (arelent
**) xmalloc (relsize
);
4246 disasm_info
.dynrelcount
4247 = bfd_canonicalize_dynamic_reloc (abfd
, disasm_info
.dynrelbuf
, dynsyms
);
4248 if (disasm_info
.dynrelcount
< 0)
4250 my_bfd_nonfatal (bfd_get_filename (abfd
));
4251 free (disasm_info
.dynrelbuf
);
4252 disasm_info
.dynrelbuf
= NULL
;
4253 disasm_info
.dynrelcount
= 0;
4255 else if (disasm_info
.dynrelcount
> 1)
4256 /* Sort the relocs by address. */
4257 qsort (disasm_info
.dynrelbuf
, disasm_info
.dynrelcount
,
4258 sizeof (arelent
*), compare_relocs
);
4261 disasm_info
.symtab
= sorted_syms
;
4262 disasm_info
.symtab_size
= sorted_symcount
;
4264 bfd_map_over_sections (abfd
, disassemble_section
, & disasm_info
);
4266 free (disasm_info
.dynrelbuf
);
4267 disasm_info
.dynrelbuf
= NULL
;
4269 disassemble_free_target (&disasm_info
);
4273 load_specific_debug_section (enum dwarf_section_display_enum debug
,
4274 asection
*sec
, void *file
)
4276 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
4277 bfd
*abfd
= (bfd
*) file
;
4283 if (section
->start
!= NULL
)
4285 /* If it is already loaded, do nothing. */
4286 if (streq (section
->filename
, bfd_get_filename (abfd
)))
4288 free (section
->start
);
4289 section
->start
= NULL
;
4292 section
->filename
= bfd_get_filename (abfd
);
4293 section
->reloc_info
= NULL
;
4294 section
->num_relocs
= 0;
4295 section
->address
= bfd_section_vma (sec
);
4296 section
->size
= bfd_section_size (sec
);
4297 /* PR 24360: On 32-bit hosts sizeof (size_t) < sizeof (bfd_size_type). */
4298 alloced
= amt
= section
->size
+ 1;
4301 || bfd_section_size_insane (abfd
, sec
))
4303 printf (_("\nSection '%s' has an invalid size: %#" PRIx64
".\n"),
4304 sanitize_string (section
->name
),
4306 free_debug_section (debug
);
4311 if ((sec
->flags
& SEC_HAS_CONTENTS
) != 0)
4313 section
->start
= contents
= xmalloc (alloced
);
4314 /* Ensure any string section has a terminating NUL. */
4315 section
->start
[section
->size
] = 0;
4317 if ((abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0
4318 && debug_displays
[debug
].relocate
)
4320 ret
= bfd_simple_get_relocated_section_contents (abfd
,
4326 long reloc_size
= bfd_get_reloc_upper_bound (abfd
, sec
);
4333 relocs
= (arelent
**) xmalloc (reloc_size
);
4335 reloc_count
= bfd_canonicalize_reloc (abfd
, sec
, relocs
, syms
);
4336 if (reloc_count
<= 0)
4340 section
->reloc_info
= relocs
;
4341 section
->num_relocs
= reloc_count
;
4347 ret
= bfd_get_full_section_contents (abfd
, sec
, &contents
);
4352 printf (_("\nCan't get contents for section '%s'.\n"),
4353 sanitize_string (section
->name
));
4354 free_debug_section (debug
);
4362 reloc_at (struct dwarf_section
* dsec
, uint64_t offset
)
4367 if (dsec
== NULL
|| dsec
->reloc_info
== NULL
)
4370 relocs
= (arelent
**) dsec
->reloc_info
;
4372 for (; (rp
= * relocs
) != NULL
; ++ relocs
)
4373 if (rp
->address
== offset
)
4380 load_debug_section (enum dwarf_section_display_enum debug
, void *file
)
4382 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
4383 bfd
*abfd
= (bfd
*) file
;
4387 if (!dump_any_debugging
)
4390 /* If it is already loaded, do nothing. */
4391 if (section
->start
!= NULL
)
4393 if (streq (section
->filename
, bfd_get_filename (abfd
)))
4396 /* Locate the debug section. */
4397 name
= section
->uncompressed_name
;
4398 sec
= bfd_get_section_by_name (abfd
, name
);
4401 name
= section
->compressed_name
;
4403 sec
= bfd_get_section_by_name (abfd
, name
);
4407 name
= section
->xcoff_name
;
4409 sec
= bfd_get_section_by_name (abfd
, name
);
4414 section
->name
= name
;
4415 return load_specific_debug_section (debug
, sec
, file
);
4419 free_debug_section (enum dwarf_section_display_enum debug
)
4421 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
4423 free ((char *) section
->start
);
4424 section
->start
= NULL
;
4425 section
->address
= 0;
4427 free ((char*) section
->reloc_info
);
4428 section
->reloc_info
= NULL
;
4429 section
->num_relocs
= 0;
4433 close_debug_file (void * file
)
4435 bfd
* abfd
= (bfd
*) file
;
4441 open_debug_file (const char * pathname
)
4445 data
= bfd_openr (pathname
, NULL
);
4449 if (! bfd_check_format (data
, bfd_object
))
4456 dump_dwarf_section (bfd
*abfd
, asection
*section
,
4459 const char *name
= bfd_section_name (section
);
4462 bool is_mainfile
= *(bool *) arg
;
4467 if (!is_mainfile
&& !process_links
4468 && (section
->flags
& SEC_DEBUGGING
) == 0)
4471 if (startswith (name
, ".gnu.linkonce.wi."))
4472 match
= ".debug_info";
4476 for (i
= 0; i
< max
; i
++)
4477 if ((strcmp (debug_displays
[i
].section
.uncompressed_name
, match
) == 0
4478 || strcmp (debug_displays
[i
].section
.compressed_name
, match
) == 0
4479 || strcmp (debug_displays
[i
].section
.xcoff_name
, match
) == 0)
4480 && debug_displays
[i
].enabled
!= NULL
4481 && *debug_displays
[i
].enabled
)
4483 struct dwarf_section
*sec
= &debug_displays
[i
].section
;
4485 if (strcmp (sec
->uncompressed_name
, match
) == 0)
4486 sec
->name
= sec
->uncompressed_name
;
4487 else if (strcmp (sec
->compressed_name
, match
) == 0)
4488 sec
->name
= sec
->compressed_name
;
4490 sec
->name
= sec
->xcoff_name
;
4491 if (load_specific_debug_section ((enum dwarf_section_display_enum
) i
,
4494 debug_displays
[i
].display (sec
, abfd
);
4496 if (i
!= info
&& i
!= abbrev
)
4497 free_debug_section ((enum dwarf_section_display_enum
) i
);
4503 /* Dump the dwarf debugging information. */
4506 dump_dwarf (bfd
*abfd
, bool is_mainfile
)
4508 /* The byte_get pointer should have been set at the start of dump_bfd(). */
4509 if (byte_get
== NULL
)
4511 warn (_("File %s does not contain any dwarf debug information\n"),
4512 bfd_get_filename (abfd
));
4516 switch (bfd_get_arch (abfd
))
4519 /* S12Z has a 24 bit address space. But the only known
4520 producer of dwarf_info encodes addresses into 32 bits. */
4525 eh_addr_size
= bfd_arch_bits_per_address (abfd
) / 8;
4529 init_dwarf_regnames_by_bfd_arch_and_mach (bfd_get_arch (abfd
),
4530 bfd_get_mach (abfd
));
4532 bfd_map_over_sections (abfd
, dump_dwarf_section
, (void *) &is_mainfile
);
4535 /* Read ABFD's section SECT_NAME into *CONTENTS, and return a pointer to
4536 the section. Return NULL on failure. */
4539 read_section (bfd
*abfd
, const char *sect_name
, bfd_byte
**contents
)
4544 sec
= bfd_get_section_by_name (abfd
, sect_name
);
4547 printf (_("No %s section present\n\n"), sanitize_string (sect_name
));
4551 if ((bfd_section_flags (sec
) & SEC_HAS_CONTENTS
) == 0)
4552 bfd_set_error (bfd_error_no_contents
);
4553 else if (bfd_malloc_and_get_section (abfd
, sec
, contents
))
4556 non_fatal (_("reading %s section of %s failed: %s"),
4557 sect_name
, bfd_get_filename (abfd
),
4558 bfd_errmsg (bfd_get_error ()));
4563 /* Stabs entries use a 12 byte format:
4564 4 byte string table index
4566 1 byte stab other field
4567 2 byte stab desc field
4569 FIXME: This will have to change for a 64 bit object format. */
4571 #define STRDXOFF (0)
4573 #define OTHEROFF (5)
4576 #define STABSIZE (12)
4578 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
4579 using string table section STRSECT_NAME (in `strtab'). */
4582 print_section_stabs (bfd
*abfd
,
4583 const char *stabsect_name
,
4584 unsigned *string_offset_ptr
)
4587 unsigned file_string_table_offset
= 0;
4588 unsigned next_file_string_table_offset
= *string_offset_ptr
;
4589 bfd_byte
*stabp
, *stabs_end
;
4592 stabs_end
= PTR_ADD (stabp
, stab_size
);
4594 printf (_("Contents of %s section:\n\n"), sanitize_string (stabsect_name
));
4595 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
4597 /* Loop through all symbols and print them.
4599 We start the index at -1 because there is a dummy symbol on
4600 the front of stabs-in-{coff,elf} sections that supplies sizes. */
4601 for (i
= -1; (size_t) (stabs_end
- stabp
) >= STABSIZE
; stabp
+= STABSIZE
, i
++)
4605 unsigned char type
, other
;
4606 unsigned short desc
;
4609 strx
= bfd_h_get_32 (abfd
, stabp
+ STRDXOFF
);
4610 type
= bfd_h_get_8 (abfd
, stabp
+ TYPEOFF
);
4611 other
= bfd_h_get_8 (abfd
, stabp
+ OTHEROFF
);
4612 desc
= bfd_h_get_16 (abfd
, stabp
+ DESCOFF
);
4613 value
= bfd_h_get_32 (abfd
, stabp
+ VALOFF
);
4615 printf ("\n%-6d ", i
);
4616 /* Either print the stab name, or, if unnamed, print its number
4617 again (makes consistent formatting for tools like awk). */
4618 name
= bfd_get_stab_name (type
);
4620 printf ("%-6s", sanitize_string (name
));
4621 else if (type
== N_UNDF
)
4624 printf ("%-6d", type
);
4625 printf (" %-6d %-6d ", other
, desc
);
4626 bfd_printf_vma (abfd
, value
);
4627 printf (" %-6lu", strx
);
4629 /* Symbols with type == 0 (N_UNDF) specify the length of the
4630 string table associated with this file. We use that info
4631 to know how to relocate the *next* file's string table indices. */
4634 file_string_table_offset
= next_file_string_table_offset
;
4635 next_file_string_table_offset
+= value
;
4639 bfd_size_type amt
= strx
+ file_string_table_offset
;
4641 /* Using the (possibly updated) string table offset, print the
4642 string (if any) associated with this symbol. */
4643 if (amt
< stabstr_size
)
4644 /* PR 17512: file: 079-79389-0.001:0.1.
4645 FIXME: May need to sanitize this string before displaying. */
4646 printf (" %.*s", (int)(stabstr_size
- amt
), strtab
+ amt
);
4652 *string_offset_ptr
= next_file_string_table_offset
;
4657 const char * section_name
;
4658 const char * string_section_name
;
4659 unsigned string_offset
;
4664 find_stabs_section (bfd
*abfd
, asection
*section
, void *names
)
4667 stab_section_names
* sought
= (stab_section_names
*) names
;
4669 /* Check for section names for which stabsect_name is a prefix, to
4670 handle .stab.N, etc. */
4671 len
= strlen (sought
->section_name
);
4673 /* If the prefix matches, and the files section name ends with a
4674 nul or a digit, then we match. I.e., we want either an exact
4675 match or a section followed by a number. */
4676 if (strncmp (sought
->section_name
, section
->name
, len
) == 0
4677 && (section
->name
[len
] == 0
4678 || (section
->name
[len
] == '.' && ISDIGIT (section
->name
[len
+ 1]))))
4683 s
= read_section (abfd
, sought
->string_section_name
, &strtab
);
4685 stabstr_size
= bfd_section_size (s
);
4690 s
= read_section (abfd
, section
->name
, &stabs
);
4693 stab_size
= bfd_section_size (s
);
4694 print_section_stabs (abfd
, section
->name
, &sought
->string_offset
);
4702 dump_stabs_section (bfd
*abfd
, char *stabsect_name
, char *strsect_name
)
4704 stab_section_names s
;
4706 s
.section_name
= stabsect_name
;
4707 s
.string_section_name
= strsect_name
;
4708 s
.string_offset
= 0;
4710 bfd_map_over_sections (abfd
, find_stabs_section
, & s
);
4716 /* Dump the any sections containing stabs debugging information. */
4719 dump_stabs (bfd
*abfd
)
4721 dump_stabs_section (abfd
, ".stab", ".stabstr");
4722 dump_stabs_section (abfd
, ".stab.excl", ".stab.exclstr");
4723 dump_stabs_section (abfd
, ".stab.index", ".stab.indexstr");
4726 dump_stabs_section (abfd
, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
4728 dump_stabs_section (abfd
, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
4732 dump_bfd_header (bfd
*abfd
)
4736 printf (_("architecture: %s, "),
4737 bfd_printable_arch_mach (bfd_get_arch (abfd
),
4738 bfd_get_mach (abfd
)));
4739 printf (_("flags 0x%08x:\n"), abfd
->flags
& ~BFD_FLAGS_FOR_BFD_USE_MASK
);
4741 #define PF(x, y) if (abfd->flags & x) {printf ("%s%s", comma, y); comma=", ";}
4742 PF (HAS_RELOC
, "HAS_RELOC");
4743 PF (EXEC_P
, "EXEC_P");
4744 PF (HAS_LINENO
, "HAS_LINENO");
4745 PF (HAS_DEBUG
, "HAS_DEBUG");
4746 PF (HAS_SYMS
, "HAS_SYMS");
4747 PF (HAS_LOCALS
, "HAS_LOCALS");
4748 PF (DYNAMIC
, "DYNAMIC");
4749 PF (WP_TEXT
, "WP_TEXT");
4750 PF (D_PAGED
, "D_PAGED");
4751 PF (BFD_IS_RELAXABLE
, "BFD_IS_RELAXABLE");
4752 printf (_("\nstart address 0x"));
4753 bfd_printf_vma (abfd
, abfd
->start_address
);
4758 #ifdef ENABLE_LIBCTF
4759 /* Formatting callback function passed to ctf_dump. Returns either the pointer
4760 it is passed, or a pointer to newly-allocated storage, in which case
4761 dump_ctf() will free it when it no longer needs it. */
4764 dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED
,
4767 const char *blanks
= arg
;
4770 if (asprintf (&new_s
, "%s%s", blanks
, s
) < 0)
4775 /* Make a ctfsect suitable for ctf_bfdopen_ctfsect(). */
4777 make_ctfsect (const char *name
, bfd_byte
*data
,
4782 ctfsect
.cts_name
= name
;
4783 ctfsect
.cts_entsize
= 1;
4784 ctfsect
.cts_size
= size
;
4785 ctfsect
.cts_data
= data
;
4790 /* Dump CTF errors/warnings. */
4792 dump_ctf_errs (ctf_dict_t
*fp
)
4794 ctf_next_t
*it
= NULL
;
4799 /* Dump accumulated errors and warnings. */
4800 while ((errtext
= ctf_errwarning_next (fp
, &it
, &is_warning
, &err
)) != NULL
)
4802 non_fatal (_("%s: %s"), is_warning
? _("warning"): _("error"),
4806 if (err
!= ECTF_NEXT_END
)
4808 non_fatal (_("CTF error: cannot get CTF errors: `%s'"),
4813 /* Dump one CTF archive member. */
4816 dump_ctf_archive_member (ctf_dict_t
*ctf
, const char *name
, ctf_dict_t
*parent
,
4819 const char *things
[] = {"Header", "Labels", "Data objects",
4820 "Function objects", "Variables", "Types", "Strings",
4825 /* Don't print out the name of the default-named archive member if it appears
4826 first in the list. The name .ctf appears everywhere, even for things that
4827 aren't really archives, so printing it out is liable to be confusing; also,
4828 the common case by far is for only one archive member to exist, and hiding
4829 it in that case seems worthwhile. */
4831 if (strcmp (name
, ".ctf") != 0 || member
!= 0)
4832 printf (_("\nCTF archive member: %s:\n"), sanitize_string (name
));
4834 if (ctf_parent_name (ctf
) != NULL
)
4835 ctf_import (ctf
, parent
);
4837 for (i
= 0, thing
= things
; *thing
[0]; thing
++, i
++)
4839 ctf_dump_state_t
*s
= NULL
;
4842 printf ("\n %s:\n", *thing
);
4843 while ((item
= ctf_dump (ctf
, &s
, i
, dump_ctf_indent_lines
,
4844 (void *) " ")) != NULL
)
4846 printf ("%s\n", item
);
4850 if (ctf_errno (ctf
))
4852 non_fatal (_("Iteration failed: %s, %s"), *thing
,
4853 ctf_errmsg (ctf_errno (ctf
)));
4858 dump_ctf_errs (ctf
);
4861 /* Dump the CTF debugging information. */
4864 dump_ctf (bfd
*abfd
, const char *sect_name
, const char *parent_name
,
4865 const char *parent_sect_name
)
4867 asection
*sec
, *psec
= NULL
;
4868 ctf_archive_t
*ctfa
;
4869 ctf_archive_t
*ctfpa
= NULL
;
4870 bfd_byte
*ctfdata
= NULL
;
4871 bfd_byte
*ctfpdata
= NULL
;
4875 ctf_next_t
*i
= NULL
;
4880 if (sect_name
== NULL
)
4883 sec
= read_section (abfd
, sect_name
, &ctfdata
);
4886 my_bfd_nonfatal (bfd_get_filename (abfd
));
4890 /* Load the CTF file and dump it. Preload the parent dict, since it will
4891 need to be imported into every child in turn. The parent dict may come
4892 from a different section entirely. */
4894 ctfsect
= make_ctfsect (sect_name
, ctfdata
, bfd_section_size (sec
));
4895 if ((ctfa
= ctf_bfdopen_ctfsect (abfd
, &ctfsect
, &err
)) == NULL
)
4897 dump_ctf_errs (NULL
);
4898 non_fatal (_("CTF open failure: %s"), ctf_errmsg (err
));
4899 my_bfd_nonfatal (bfd_get_filename (abfd
));
4904 if (parent_sect_name
)
4906 psec
= read_section (abfd
, parent_sect_name
, &ctfpdata
);
4909 my_bfd_nonfatal (bfd_get_filename (abfd
));
4914 ctfsect
= make_ctfsect (parent_sect_name
, ctfpdata
, bfd_section_size (psec
));
4915 if ((ctfpa
= ctf_bfdopen_ctfsect (abfd
, &ctfsect
, &err
)) == NULL
)
4917 dump_ctf_errs (NULL
);
4918 non_fatal (_("CTF open failure: %s"), ctf_errmsg (err
));
4919 my_bfd_nonfatal (bfd_get_filename (abfd
));
4928 if ((parent
= ctf_dict_open (ctfpa
, parent_name
, &err
)) == NULL
)
4930 dump_ctf_errs (NULL
);
4931 non_fatal (_("CTF open failure: %s"), ctf_errmsg (err
));
4932 my_bfd_nonfatal (bfd_get_filename (abfd
));
4939 printf (_("Contents of CTF section %s:\n"), sanitize_string (sect_name
));
4941 while ((fp
= ctf_archive_next (ctfa
, &i
, &name
, 0, &err
)) != NULL
)
4942 dump_ctf_archive_member (fp
, name
, parent
, member
++);
4943 if (err
!= ECTF_NEXT_END
)
4945 dump_ctf_errs (NULL
);
4946 non_fatal (_("CTF archive member open failure: %s"), ctf_errmsg (err
));
4947 my_bfd_nonfatal (bfd_get_filename (abfd
));
4949 ctf_dict_close (parent
);
4952 if (parent_sect_name
)
4960 dump_ctf (bfd
*abfd ATTRIBUTE_UNUSED
, const char *sect_name ATTRIBUTE_UNUSED
,
4961 const char *parent_name ATTRIBUTE_UNUSED
,
4962 const char *parent_sect_name ATTRIBUTE_UNUSED
) {}
4966 dump_section_sframe (bfd
*abfd ATTRIBUTE_UNUSED
,
4967 const char * sect_name
)
4970 sframe_decoder_ctx
*sfd_ctx
= NULL
;
4971 bfd_size_type sf_size
;
4972 bfd_byte
*sframe_data
;
4976 if (sect_name
== NULL
)
4977 sect_name
= ".sframe";
4979 sec
= read_section (abfd
, sect_name
, &sframe_data
);
4982 my_bfd_nonfatal (bfd_get_filename (abfd
));
4985 sf_size
= bfd_section_size (sec
);
4986 sf_vma
= bfd_section_vma (sec
);
4988 /* Decode the contents of the section. */
4989 sfd_ctx
= sframe_decode ((const char*)sframe_data
, sf_size
, &err
);
4992 my_bfd_nonfatal (bfd_get_filename (abfd
));
4997 printf (_("Contents of the SFrame section %s:"),
4998 sanitize_string (sect_name
));
4999 /* Dump the contents as text. */
5000 dump_sframe (sfd_ctx
, sf_vma
);
5002 sframe_decoder_free (&sfd_ctx
);
5008 dump_bfd_private_header (bfd
*abfd
)
5010 if (!bfd_print_private_bfd_data (abfd
, stdout
))
5011 non_fatal (_("warning: private headers incomplete: %s"),
5012 bfd_errmsg (bfd_get_error ()));
5016 dump_target_specific (bfd
*abfd
)
5018 const struct objdump_private_desc
* const *desc
;
5019 struct objdump_private_option
*opt
;
5022 /* Find the desc. */
5023 for (desc
= objdump_private_vectors
; *desc
!= NULL
; desc
++)
5024 if ((*desc
)->filter (abfd
))
5029 non_fatal (_("option -P/--private not supported by this file"));
5033 /* Clear all options. */
5034 for (opt
= (*desc
)->options
; opt
->name
; opt
++)
5035 opt
->selected
= false;
5037 /* Decode options. */
5038 b
= dump_private_options
;
5041 e
= strchr (b
, ',');
5046 for (opt
= (*desc
)->options
; opt
->name
; opt
++)
5047 if (strcmp (opt
->name
, b
) == 0)
5049 opt
->selected
= true;
5052 if (opt
->name
== NULL
)
5053 non_fatal (_("target specific dump '%s' not supported"), b
);
5064 (*desc
)->dump (abfd
);
5067 /* Display a section in hexadecimal format with associated characters.
5068 Each line prefixed by the zero padded address. */
5071 dump_section (bfd
*abfd
, asection
*section
, void *dummy ATTRIBUTE_UNUSED
)
5073 bfd_byte
*data
= NULL
;
5074 bfd_size_type datasize
;
5075 bfd_vma addr_offset
;
5076 bfd_vma start_offset
;
5077 bfd_vma stop_offset
;
5078 unsigned int opb
= bfd_octets_per_byte (abfd
, section
);
5079 /* Bytes per line. */
5080 const int onaline
= 16;
5085 if (only_list
== NULL
)
5087 if ((section
->flags
& SEC_HAS_CONTENTS
) == 0)
5090 else if (!process_section_p (section
))
5093 if ((datasize
= bfd_section_size (section
)) == 0)
5096 /* Compute the address range to display. */
5097 if (start_address
== (bfd_vma
) -1
5098 || start_address
< section
->vma
)
5101 start_offset
= start_address
- section
->vma
;
5103 if (stop_address
== (bfd_vma
) -1)
5104 stop_offset
= datasize
/ opb
;
5107 if (stop_address
< section
->vma
)
5110 stop_offset
= stop_address
- section
->vma
;
5112 if (stop_offset
> datasize
/ opb
)
5113 stop_offset
= datasize
/ opb
;
5116 if (start_offset
>= stop_offset
)
5119 printf (_("Contents of section %s:"), sanitize_string (section
->name
));
5120 if (display_file_offsets
)
5121 printf (_(" (Starting at file offset: 0x%lx)"),
5122 (unsigned long) (section
->filepos
+ start_offset
));
5125 if (bfd_is_section_compressed (abfd
, section
) && ! decompressed_dumps
)
5126 printf (_(" NOTE: This section is compressed, but its contents have NOT been expanded for this dump.\n"));
5128 if (!bfd_get_full_section_contents (abfd
, section
, &data
))
5130 non_fatal (_("Reading section %s failed because: %s"),
5131 section
->name
, bfd_errmsg (bfd_get_error ()));
5137 bfd_sprintf_vma (abfd
, buf
, start_offset
+ section
->vma
);
5138 if (strlen (buf
) >= sizeof (buf
))
5142 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
5144 count
= strlen (buf
) - count
;
5148 bfd_sprintf_vma (abfd
, buf
, stop_offset
+ section
->vma
- 1);
5149 if (strlen (buf
) >= sizeof (buf
))
5153 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
5155 count
= strlen (buf
) - count
;
5159 for (addr_offset
= start_offset
;
5160 addr_offset
< stop_offset
; addr_offset
+= onaline
/ opb
)
5164 bfd_sprintf_vma (abfd
, buf
, (addr_offset
+ section
->vma
));
5165 count
= strlen (buf
);
5166 if ((size_t) count
>= sizeof (buf
))
5170 while (count
< width
)
5175 fputs (buf
+ count
- width
, stdout
);
5178 for (j
= addr_offset
* opb
;
5179 j
< addr_offset
* opb
+ onaline
; j
++)
5181 if (j
< stop_offset
* opb
)
5182 printf ("%02x", (unsigned) (data
[j
]));
5190 for (j
= addr_offset
* opb
;
5191 j
< addr_offset
* opb
+ onaline
; j
++)
5193 if (j
>= stop_offset
* opb
)
5196 printf ("%c", ISPRINT (data
[j
]) ? data
[j
] : '.');
5203 /* Actually display the various requested regions. */
5206 dump_data (bfd
*abfd
)
5208 bfd_map_over_sections (abfd
, dump_section
, NULL
);
5211 /* Should perhaps share code and display with nm? */
5214 dump_symbols (bfd
*abfd ATTRIBUTE_UNUSED
, bool dynamic
)
5223 max_count
= dynsymcount
;
5224 printf ("DYNAMIC SYMBOL TABLE:\n");
5229 max_count
= symcount
;
5230 printf ("SYMBOL TABLE:\n");
5234 printf (_("no symbols\n"));
5236 for (count
= 0; count
< max_count
; count
++)
5240 if (*current
== NULL
)
5241 printf (_("no information for symbol number %ld\n"), count
);
5243 else if ((cur_bfd
= bfd_asymbol_bfd (*current
)) == NULL
)
5244 printf (_("could not determine the type of symbol number %ld\n"),
5247 else if (process_section_p ((* current
)->section
)
5248 && (dump_special_syms
5249 || !bfd_is_target_special_symbol (cur_bfd
, *current
)))
5251 const char *name
= (*current
)->name
;
5253 if (do_demangle
&& name
!= NULL
&& *name
!= '\0')
5257 /* If we want to demangle the name, we demangle it
5258 here, and temporarily clobber it while calling
5259 bfd_print_symbol. FIXME: This is a gross hack. */
5260 alloc
= bfd_demangle (cur_bfd
, name
, demangle_flags
);
5262 (*current
)->name
= alloc
;
5263 bfd_print_symbol (cur_bfd
, stdout
, *current
,
5264 bfd_print_symbol_all
);
5267 (*current
)->name
= name
;
5271 else if (unicode_display
!= unicode_default
5272 && name
!= NULL
&& *name
!= '\0')
5274 const char * sanitized_name
;
5276 /* If we want to sanitize the name, we do it here, and
5277 temporarily clobber it while calling bfd_print_symbol.
5278 FIXME: This is a gross hack. */
5279 sanitized_name
= sanitize_string (name
);
5280 if (sanitized_name
!= name
)
5281 (*current
)->name
= sanitized_name
;
5283 sanitized_name
= NULL
;
5284 bfd_print_symbol (cur_bfd
, stdout
, *current
,
5285 bfd_print_symbol_all
);
5286 if (sanitized_name
!= NULL
)
5287 (*current
)->name
= name
;
5290 bfd_print_symbol (cur_bfd
, stdout
, *current
,
5291 bfd_print_symbol_all
);
5301 dump_reloc_set (bfd
*abfd
, asection
*sec
, arelent
**relpp
, long relcount
)
5304 char *last_filename
, *last_functionname
;
5305 unsigned int last_line
;
5306 unsigned int last_discriminator
;
5308 /* Get column headers lined up reasonably. */
5316 bfd_sprintf_vma (abfd
, buf
, (bfd_vma
) -1);
5317 width
= strlen (buf
) - 7;
5319 printf ("OFFSET %*s TYPE %*s VALUE\n", width
, "", 12, "");
5322 last_filename
= NULL
;
5323 last_functionname
= NULL
;
5325 last_discriminator
= 0;
5327 for (p
= relpp
; relcount
&& *p
!= NULL
; p
++, relcount
--)
5330 const char *filename
, *functionname
;
5331 unsigned int linenumber
;
5332 unsigned int discriminator
;
5333 const char *sym_name
;
5334 const char *section_name
;
5335 bfd_vma addend2
= 0;
5337 if (start_address
!= (bfd_vma
) -1
5338 && q
->address
< start_address
)
5340 if (stop_address
!= (bfd_vma
) -1
5341 && q
->address
> stop_address
)
5344 if (with_line_numbers
5346 && bfd_find_nearest_line_discriminator (abfd
, sec
, syms
, q
->address
,
5347 &filename
, &functionname
,
5348 &linenumber
, &discriminator
))
5350 if (functionname
!= NULL
5351 && (last_functionname
== NULL
5352 || strcmp (functionname
, last_functionname
) != 0))
5354 printf ("%s():\n", sanitize_string (functionname
));
5355 if (last_functionname
!= NULL
)
5356 free (last_functionname
);
5357 last_functionname
= xstrdup (functionname
);
5361 && (linenumber
!= last_line
5362 || (filename
!= NULL
5363 && last_filename
!= NULL
5364 && filename_cmp (filename
, last_filename
) != 0)
5365 || (discriminator
!= last_discriminator
)))
5367 if (discriminator
> 0)
5368 printf ("%s:%u\n", filename
== NULL
? "???" :
5369 sanitize_string (filename
), linenumber
);
5371 printf ("%s:%u (discriminator %u)\n",
5372 filename
== NULL
? "???" : sanitize_string (filename
),
5373 linenumber
, discriminator
);
5374 last_line
= linenumber
;
5375 last_discriminator
= discriminator
;
5376 if (last_filename
!= NULL
)
5377 free (last_filename
);
5378 if (filename
== NULL
)
5379 last_filename
= NULL
;
5381 last_filename
= xstrdup (filename
);
5385 if (q
->sym_ptr_ptr
&& *q
->sym_ptr_ptr
)
5387 sym_name
= (*(q
->sym_ptr_ptr
))->name
;
5388 section_name
= (*(q
->sym_ptr_ptr
))->section
->name
;
5393 section_name
= NULL
;
5396 bfd_printf_vma (abfd
, q
->address
);
5397 if (q
->howto
== NULL
)
5398 printf (" *unknown* ");
5399 else if (q
->howto
->name
)
5401 const char *name
= q
->howto
->name
;
5403 /* R_SPARC_OLO10 relocations contain two addends.
5404 But because 'arelent' lacks enough storage to
5405 store them both, the 64-bit ELF Sparc backend
5406 records this as two relocations. One R_SPARC_LO10
5407 and one R_SPARC_13, both pointing to the same
5408 address. This is merely so that we have some
5409 place to store both addend fields.
5411 Undo this transformation, otherwise the output
5412 will be confusing. */
5413 if (abfd
->xvec
->flavour
== bfd_target_elf_flavour
5414 && elf_tdata (abfd
)->elf_header
->e_machine
== EM_SPARCV9
5416 && !strcmp (q
->howto
->name
, "R_SPARC_LO10"))
5418 arelent
*q2
= *(p
+ 1);
5421 && q
->address
== q2
->address
5422 && !strcmp (q2
->howto
->name
, "R_SPARC_13"))
5424 name
= "R_SPARC_OLO10";
5425 addend2
= q2
->addend
;
5429 printf (" %-16s ", name
);
5432 printf (" %-16d ", q
->howto
->type
);
5436 objdump_print_symname (abfd
, NULL
, *q
->sym_ptr_ptr
);
5440 if (section_name
== NULL
)
5441 section_name
= "*unknown*";
5442 printf ("[%s]", sanitize_string (section_name
));
5447 bfd_signed_vma addend
= q
->addend
;
5455 bfd_printf_vma (abfd
, addend
);
5460 bfd_printf_vma (abfd
, addend2
);
5466 if (last_filename
!= NULL
)
5467 free (last_filename
);
5468 if (last_functionname
!= NULL
)
5469 free (last_functionname
);
5473 dump_relocs_in_section (bfd
*abfd
,
5475 void *dummy ATTRIBUTE_UNUSED
)
5481 if ( bfd_is_abs_section (section
)
5482 || bfd_is_und_section (section
)
5483 || bfd_is_com_section (section
)
5484 || (! process_section_p (section
))
5485 || ((section
->flags
& SEC_RELOC
) == 0))
5488 printf ("RELOCATION RECORDS FOR [%s]:", sanitize_string (section
->name
));
5490 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
5493 printf (" (none)\n\n");
5504 relpp
= (arelent
**) xmalloc (relsize
);
5505 relcount
= bfd_canonicalize_reloc (abfd
, section
, relpp
, syms
);
5511 non_fatal (_("failed to read relocs in: %s"),
5512 sanitize_string (bfd_get_filename (abfd
)));
5513 my_bfd_nonfatal (_("error message was"));
5515 else if (relcount
== 0)
5516 printf (" (none)\n\n");
5520 dump_reloc_set (abfd
, section
, relpp
, relcount
);
5527 dump_relocs (bfd
*abfd
)
5529 bfd_map_over_sections (abfd
, dump_relocs_in_section
, NULL
);
5533 dump_dynamic_relocs (bfd
*abfd
)
5539 relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
5541 printf ("DYNAMIC RELOCATION RECORDS");
5545 printf (" (none)\n\n");
5556 relpp
= (arelent
**) xmalloc (relsize
);
5557 relcount
= bfd_canonicalize_dynamic_reloc (abfd
, relpp
, dynsyms
);
5563 non_fatal (_("failed to read relocs in: %s"),
5564 sanitize_string (bfd_get_filename (abfd
)));
5565 my_bfd_nonfatal (_("error message was"));
5567 else if (relcount
== 0)
5568 printf (" (none)\n\n");
5572 dump_reloc_set (abfd
, NULL
, relpp
, relcount
);
5578 /* Creates a table of paths, to search for source files. */
5581 add_include_path (const char *path
)
5585 include_path_count
++;
5586 include_paths
= (const char **)
5587 xrealloc (include_paths
, include_path_count
* sizeof (*include_paths
));
5588 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
5589 if (path
[1] == ':' && path
[2] == 0)
5590 path
= concat (path
, ".", (const char *) 0);
5592 include_paths
[include_path_count
- 1] = path
;
5596 adjust_addresses (bfd
*abfd ATTRIBUTE_UNUSED
,
5600 if ((section
->flags
& SEC_DEBUGGING
) == 0)
5602 bool *has_reloc_p
= (bool *) arg
;
5603 section
->vma
+= adjust_section_vma
;
5605 section
->lma
+= adjust_section_vma
;
5609 /* Return the sign-extended form of an ARCH_SIZE sized VMA. */
5612 sign_extend_address (bfd
*abfd ATTRIBUTE_UNUSED
,
5617 mask
= (bfd_vma
) 1 << (arch_size
- 1);
5618 return (((vma
& ((mask
<< 1) - 1)) ^ mask
) - mask
);
5622 might_need_separate_debug_info (bool is_mainfile
)
5624 /* We do not follow links from debug info files. */
5628 /* Since do_follow_links might be enabled by default, only treat it as an
5629 indication that separate files should be loaded if setting it was a
5630 deliberate user action. */
5631 if (DEFAULT_FOR_FOLLOW_LINKS
== 0 && do_follow_links
)
5634 if (process_links
|| dump_symtab
|| dump_debugging
5635 || dump_dwarf_section_info
|| with_source_code
)
5641 /* Dump selected contents of ABFD. */
5644 dump_bfd (bfd
*abfd
, bool is_mainfile
)
5646 const struct elf_backend_data
* bed
;
5648 if (bfd_big_endian (abfd
))
5649 byte_get
= byte_get_big_endian
;
5650 else if (bfd_little_endian (abfd
))
5651 byte_get
= byte_get_little_endian
;
5655 /* Load any separate debug information files. */
5656 if (byte_get
!= NULL
&& might_need_separate_debug_info (is_mainfile
))
5658 load_separate_debug_files (abfd
, bfd_get_filename (abfd
));
5660 /* If asked to do so, recursively dump the separate files. */
5661 if (do_follow_links
)
5665 for (i
= first_separate_info
; i
!= NULL
; i
= i
->next
)
5666 dump_bfd (i
->handle
, false);
5670 /* Adjust user-specified start and stop limits for targets that use
5671 signed addresses. */
5672 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
5673 && (bed
= get_elf_backend_data (abfd
)) != NULL
5674 && bed
->sign_extend_vma
)
5676 start_address
= sign_extend_address (abfd
, start_address
,
5678 stop_address
= sign_extend_address (abfd
, stop_address
,
5682 /* If we are adjusting section VMA's, change them all now. Changing
5683 the BFD information is a hack. However, we must do it, or
5684 bfd_find_nearest_line will not do the right thing. */
5685 if (adjust_section_vma
!= 0)
5687 bool has_reloc
= (abfd
->flags
& HAS_RELOC
);
5688 bfd_map_over_sections (abfd
, adjust_addresses
, &has_reloc
);
5691 if (is_mainfile
|| process_links
)
5693 if (! dump_debugging_tags
&& ! suppress_bfd_header
)
5694 printf (_("\n%s: file format %s\n"),
5695 sanitize_string (bfd_get_filename (abfd
)),
5698 print_arelt_descr (stdout
, abfd
, true, false);
5699 if (dump_file_header
)
5700 dump_bfd_header (abfd
);
5701 if (dump_private_headers
)
5702 dump_bfd_private_header (abfd
);
5703 if (dump_private_options
!= NULL
)
5704 dump_target_specific (abfd
);
5705 if (! dump_debugging_tags
&& ! suppress_bfd_header
)
5713 || dump_dwarf_section_info
)
5715 syms
= slurp_symtab (abfd
);
5717 /* If following links, load any symbol tables from the linked files as well. */
5718 if (do_follow_links
&& is_mainfile
)
5722 for (i
= first_separate_info
; i
!= NULL
; i
= i
->next
)
5724 asymbol
** extra_syms
;
5725 long old_symcount
= symcount
;
5727 extra_syms
= slurp_symtab (i
->handle
);
5731 if (old_symcount
== 0)
5737 syms
= xrealloc (syms
, ((symcount
+ old_symcount
+ 1)
5738 * sizeof (asymbol
*)));
5739 memcpy (syms
+ old_symcount
,
5741 (symcount
+ 1) * sizeof (asymbol
*));
5745 symcount
+= old_symcount
;
5750 if (is_mainfile
|| process_links
)
5752 if (dump_section_headers
)
5753 dump_headers (abfd
);
5755 if (dump_dynamic_symtab
|| dump_dynamic_reloc_info
5756 || (disassemble
&& bfd_get_dynamic_symtab_upper_bound (abfd
) > 0))
5757 dynsyms
= slurp_dynamic_symtab (abfd
);
5761 synthcount
= bfd_get_synthetic_symtab (abfd
, symcount
, syms
,
5762 dynsymcount
, dynsyms
,
5769 dump_symbols (abfd
, false);
5770 if (dump_dynamic_symtab
)
5771 dump_symbols (abfd
, true);
5773 if (dump_dwarf_section_info
)
5774 dump_dwarf (abfd
, is_mainfile
);
5775 if (is_mainfile
|| process_links
)
5777 if (dump_ctf_section_info
)
5778 dump_ctf (abfd
, dump_ctf_section_name
, dump_ctf_parent_name
,
5779 dump_ctf_parent_section_name
);
5780 if (dump_sframe_section_info
)
5781 dump_section_sframe (abfd
, dump_sframe_section_name
);
5782 if (dump_stab_section_info
)
5784 if (dump_reloc_info
&& ! disassemble
)
5786 if (dump_dynamic_reloc_info
&& ! disassemble
)
5787 dump_dynamic_relocs (abfd
);
5788 if (dump_section_contents
)
5791 disassemble_data (abfd
);
5798 dhandle
= read_debugging_info (abfd
, syms
, symcount
, true);
5799 if (dhandle
!= NULL
)
5801 if (!print_debugging_info (stdout
, dhandle
, abfd
, syms
,
5803 dump_debugging_tags
!= 0))
5805 non_fatal (_("%s: printing debugging information failed"),
5806 bfd_get_filename (abfd
));
5810 /* PR 6483: If there was no STABS debug info in the file, try
5812 else if (! dump_dwarf_section_info
)
5814 dwarf_select_sections_all ();
5815 dump_dwarf (abfd
, is_mainfile
);
5842 free_debug_memory ();
5846 display_object_bfd (bfd
*abfd
)
5850 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
5852 dump_bfd (abfd
, true);
5856 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
5858 my_bfd_nonfatal (bfd_get_filename (abfd
));
5859 list_matching_formats (matching
);
5863 if (bfd_get_error () != bfd_error_file_not_recognized
)
5865 my_bfd_nonfatal (bfd_get_filename (abfd
));
5869 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
5871 dump_bfd (abfd
, true);
5875 my_bfd_nonfatal (bfd_get_filename (abfd
));
5877 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
5878 list_matching_formats (matching
);
5882 display_any_bfd (bfd
*file
, int level
)
5884 /* Decompress sections unless dumping the section contents. */
5885 if (!dump_section_contents
|| decompressed_dumps
)
5886 file
->flags
|= BFD_DECOMPRESS
;
5888 /* If the file is an archive, process all of its elements. */
5889 if (bfd_check_format (file
, bfd_archive
))
5892 bfd
*last_arfile
= NULL
;
5895 printf (_("In archive %s:\n"), sanitize_string (bfd_get_filename (file
)));
5896 else if (level
> 100)
5898 /* Prevent corrupted files from spinning us into an
5899 infinite loop. 100 is an arbitrary heuristic. */
5900 non_fatal (_("Archive nesting is too deep"));
5905 printf (_("In nested archive %s:\n"),
5906 sanitize_string (bfd_get_filename (file
)));
5910 bfd_set_error (bfd_error_no_error
);
5912 arfile
= bfd_openr_next_archived_file (file
, arfile
);
5915 if (bfd_get_error () != bfd_error_no_more_archived_files
)
5916 my_bfd_nonfatal (bfd_get_filename (file
));
5920 display_any_bfd (arfile
, level
+ 1);
5922 if (last_arfile
!= NULL
)
5924 bfd_close (last_arfile
);
5925 /* PR 17512: file: ac585d01. */
5926 if (arfile
== last_arfile
)
5932 last_arfile
= arfile
;
5935 if (last_arfile
!= NULL
)
5936 bfd_close (last_arfile
);
5939 display_object_bfd (file
);
5943 display_file (char *filename
, char *target
, bool last_file
)
5947 if (get_file_size (filename
) < 1)
5953 file
= bfd_openr (filename
, target
);
5956 my_bfd_nonfatal (filename
);
5960 display_any_bfd (file
, 0);
5962 /* This is an optimization to improve the speed of objdump, especially when
5963 dumping a file with lots of associated debug informatiom. Calling
5964 bfd_close on such a file can take a non-trivial amount of time as there
5965 are lots of lists to walk and buffers to free. This is only really
5966 necessary however if we are about to load another file and we need the
5967 memory back. Otherwise, if we are about to exit, then we can save (a lot
5968 of) time by only doing a quick close, and allowing the OS to reclaim the
5973 bfd_close_all_done (file
);
5977 main (int argc
, char **argv
)
5980 char *target
= default_target
;
5981 bool seenflag
= false;
5983 #ifdef HAVE_LC_MESSAGES
5984 setlocale (LC_MESSAGES
, "");
5986 setlocale (LC_CTYPE
, "");
5988 bindtextdomain (PACKAGE
, LOCALEDIR
);
5989 textdomain (PACKAGE
);
5991 program_name
= *argv
;
5992 xmalloc_set_program_name (program_name
);
5993 bfd_set_error_program_name (program_name
);
5995 expandargv (&argc
, &argv
);
5997 if (bfd_init () != BFD_INIT_MAGIC
)
5998 fatal (_("fatal error: libbfd ABI mismatch"));
5999 set_default_bfd_target ();
6001 while ((c
= getopt_long (argc
, argv
,
6002 "CDE:FGHI:LM:P:RSTU:VW::Zab:defghij:lm:prstvwxz",
6003 long_options
, (int *) 0))
6009 break; /* We've been given a long option. */
6014 decompressed_dumps
= true;
6019 if (disassembler_options
)
6020 /* Ignore potential memory leak for now. */
6021 options
= concat (disassembler_options
, ",",
6022 optarg
, (const char *) NULL
);
6025 disassembler_options
= remove_whitespace_and_extra_commas (options
);
6032 display_file_offsets
= true;
6035 with_line_numbers
= true;
6044 enum demangling_styles style
;
6046 style
= cplus_demangle_name_to_style (optarg
);
6047 if (style
== unknown_demangling
)
6048 fatal (_("unknown demangling style `%s'"),
6051 cplus_demangle_set_style (style
);
6054 case OPTION_RECURSE_LIMIT
:
6055 demangle_flags
&= ~ DMGL_NO_RECURSE_LIMIT
;
6057 case OPTION_NO_RECURSE_LIMIT
:
6058 demangle_flags
|= DMGL_NO_RECURSE_LIMIT
;
6061 do_wide
= wide_output
= true;
6063 case OPTION_ADJUST_VMA
:
6064 adjust_section_vma
= parse_vma (optarg
, "--adjust-vma");
6066 case OPTION_START_ADDRESS
:
6067 start_address
= parse_vma (optarg
, "--start-address");
6068 if ((stop_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
6069 fatal (_("error: the start address should be before the end address"));
6071 case OPTION_STOP_ADDRESS
:
6072 stop_address
= parse_vma (optarg
, "--stop-address");
6073 if ((start_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
6074 fatal (_("error: the stop address should be after the start address"));
6078 prefix_length
= strlen (prefix
);
6079 /* Remove an unnecessary trailing '/' */
6080 while (IS_DIR_SEPARATOR (prefix
[prefix_length
- 1]))
6083 case OPTION_PREFIX_STRIP
:
6084 prefix_strip
= atoi (optarg
);
6085 if (prefix_strip
< 0)
6086 fatal (_("error: prefix strip must be non-negative"));
6088 case OPTION_INSN_WIDTH
:
6089 insn_width
= strtoul (optarg
, NULL
, 0);
6090 if (insn_width
<= 0)
6091 fatal (_("error: instruction width must be positive"));
6093 case OPTION_INLINES
:
6094 unwind_inlines
= true;
6096 case OPTION_VISUALIZE_JUMPS
:
6097 visualize_jumps
= true;
6098 color_output
= false;
6099 extended_color_output
= false;
6102 if (streq (optarg
, "color"))
6103 color_output
= true;
6104 else if (streq (optarg
, "extended-color"))
6106 color_output
= true;
6107 extended_color_output
= true;
6109 else if (streq (optarg
, "off"))
6110 visualize_jumps
= false;
6113 non_fatal (_("unrecognized argument to --visualize-option"));
6118 case OPTION_DISASSEMBLER_COLOR
:
6119 if (streq (optarg
, "off"))
6120 disassembler_color
= off
;
6121 else if (streq (optarg
, "terminal"))
6122 disassembler_color
= on_if_terminal_output
;
6123 else if (streq (optarg
, "color")
6124 || streq (optarg
, "colour")
6125 || streq (optarg
, "on"))
6126 disassembler_color
= on
;
6127 else if (streq (optarg
, "extended")
6128 || streq (optarg
, "extended-color")
6129 || streq (optarg
, "extended-colour"))
6130 disassembler_color
= extended
;
6133 non_fatal (_("unrecognized argument to --disassembler-color"));
6138 if (strcmp (optarg
, "B") == 0)
6139 endian
= BFD_ENDIAN_BIG
;
6140 else if (strcmp (optarg
, "L") == 0)
6141 endian
= BFD_ENDIAN_LITTLE
;
6144 non_fatal (_("unrecognized -E option"));
6149 if (strncmp (optarg
, "big", strlen (optarg
)) == 0)
6150 endian
= BFD_ENDIAN_BIG
;
6151 else if (strncmp (optarg
, "little", strlen (optarg
)) == 0)
6152 endian
= BFD_ENDIAN_LITTLE
;
6155 non_fatal (_("unrecognized --endian type `%s'"), optarg
);
6161 dump_file_header
= true;
6165 formats_info
= true;
6169 add_include_path (optarg
);
6172 dump_private_headers
= true;
6176 dump_private_options
= optarg
;
6180 dump_private_headers
= true;
6182 dump_reloc_info
= true;
6183 dump_file_header
= true;
6184 dump_ar_hdrs
= true;
6185 dump_section_headers
= true;
6193 dump_dynamic_symtab
= true;
6199 disasm_sym
= optarg
;
6202 disassemble_zeroes
= true;
6206 disassemble_all
= true;
6211 with_source_code
= true;
6214 case OPTION_SOURCE_COMMENT
:
6216 with_source_code
= true;
6219 source_comment
= xstrdup (sanitize_string (optarg
));
6221 source_comment
= xstrdup ("# ");
6229 dump_debugging_tags
= 1;
6234 process_links
= true;
6235 do_follow_links
= true;
6241 if (dwarf_select_sections_by_letters (optarg
))
6242 dump_dwarf_section_info
= true;
6246 dump_dwarf_section_info
= true;
6247 dwarf_select_sections_all ();
6254 if (dwarf_select_sections_by_names (optarg
))
6255 dump_dwarf_section_info
= true;
6259 dwarf_select_sections_all ();
6260 dump_dwarf_section_info
= true;
6263 case OPTION_DWARF_DEPTH
:
6266 dwarf_cutoff_level
= strtoul (optarg
, & cp
, 0);
6269 case OPTION_DWARF_START
:
6272 dwarf_start_die
= strtoul (optarg
, & cp
, 0);
6273 suppress_bfd_header
= 1;
6276 case OPTION_DWARF_CHECK
:
6279 #ifdef ENABLE_LIBCTF
6281 dump_ctf_section_info
= true;
6283 dump_ctf_section_name
= xstrdup (optarg
);
6286 case OPTION_CTF_PARENT
:
6287 dump_ctf_parent_name
= xstrdup (optarg
);
6289 case OPTION_CTF_PARENT_SECTION
:
6290 dump_ctf_parent_section_name
= xstrdup (optarg
);
6294 dump_sframe_section_info
= true;
6296 dump_sframe_section_name
= xstrdup (optarg
);
6300 dump_stab_section_info
= true;
6304 dump_section_contents
= true;
6308 dump_reloc_info
= true;
6312 dump_dynamic_reloc_info
= true;
6316 dump_ar_hdrs
= true;
6320 dump_section_headers
= true;
6325 show_version
= true;
6330 if (streq (optarg
, "default") || streq (optarg
, "d"))
6331 unicode_display
= unicode_default
;
6332 else if (streq (optarg
, "locale") || streq (optarg
, "l"))
6333 unicode_display
= unicode_locale
;
6334 else if (streq (optarg
, "escape") || streq (optarg
, "e"))
6335 unicode_display
= unicode_escape
;
6336 else if (streq (optarg
, "invalid") || streq (optarg
, "i"))
6337 unicode_display
= unicode_invalid
;
6338 else if (streq (optarg
, "hex") || streq (optarg
, "x"))
6339 unicode_display
= unicode_hex
;
6340 else if (streq (optarg
, "highlight") || streq (optarg
, "h"))
6341 unicode_display
= unicode_highlight
;
6343 fatal (_("invalid argument to -U/--unicode: %s"), optarg
);
6348 /* No need to set seenflag or to break - usage() does not return. */
6354 if (disassembler_color
== on_if_terminal_output
)
6355 disassembler_color
= isatty (1) ? on
: off
;
6358 print_version ("objdump");
6363 dump_any_debugging
= (dump_debugging
6364 || dump_dwarf_section_info
6366 || with_source_code
);
6369 exit_status
= display_info ();
6373 display_file ("a.out", target
, true);
6375 for (; optind
< argc
;)
6377 display_file (argv
[optind
], target
, optind
== argc
- 1);
6383 free (dump_ctf_section_name
);
6384 free (dump_ctf_parent_name
);
6385 free ((void *) source_comment
);
6386 free (dump_ctf_parent_section_name
);