1 /* objdump.c -- dump information about an object file.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
26 Objdump displays information about one or more object files, either on
27 their own, or inside libraries. It is commonly used as a disassembler,
28 but it can also display information about file headers, symbol tables,
29 relocations, debugging directives and more.
31 The flow of execution is as follows:
33 1. Command line arguments are checked for control switches and the
34 information to be displayed is selected.
36 2. Any remaining arguments are assumed to be object files, and they are
37 processed in order by display_bfd(). If the file is an archive each
38 of its elements is processed in turn.
40 3. The file's target architecture and binary file format are determined
41 by bfd_check_format(). If they are recognised, then dump_bfd() is
44 4. dump_bfd() in turn calls separate functions to display the requested
45 item(s) of information(s). For example disassemble_data() is called if
46 a disassembly has been requested.
48 When disassembling the code loops through blocks of instructions bounded
49 by symbols, calling disassemble_bytes() on each block. The actual
50 disassembling is done by the libopcodes library, via a function pointer
51 supplied by the disassembler() function. */
60 #include "safe-ctype.h"
62 #include "libiberty.h"
64 #include "filenames.h"
74 /* Internal headers for the ELF .stab-dump code - sorry. */
75 #define BYTES_IN_WORD 32
76 #include "aout/aout64.h"
79 static int exit_status
= 0;
81 static char *default_target
= NULL
; /* Default at runtime. */
83 /* The following variables are set based on arguments passed on the
85 static int show_version
= 0; /* Show the version number. */
86 static int dump_section_contents
; /* -s */
87 static int dump_section_headers
; /* -h */
88 static bfd_boolean dump_file_header
; /* -f */
89 static int dump_symtab
; /* -t */
90 static int dump_dynamic_symtab
; /* -T */
91 static int dump_reloc_info
; /* -r */
92 static int dump_dynamic_reloc_info
; /* -R */
93 static int dump_ar_hdrs
; /* -a */
94 static int dump_private_headers
; /* -p */
95 static int prefix_addresses
; /* --prefix-addresses */
96 static int with_line_numbers
; /* -l */
97 static bfd_boolean with_source_code
; /* -S */
98 static int show_raw_insn
; /* --show-raw-insn */
99 static int dump_dwarf_section_info
; /* --dwarf */
100 static int dump_stab_section_info
; /* --stabs */
101 static int do_demangle
; /* -C, --demangle */
102 static bfd_boolean disassemble
; /* -d */
103 static bfd_boolean disassemble_all
; /* -D */
104 static int disassemble_zeroes
; /* --disassemble-zeroes */
105 static bfd_boolean formats_info
; /* -i */
106 static int wide_output
; /* -w */
107 static int insn_width
; /* --insn-width */
108 static bfd_vma start_address
= (bfd_vma
) -1; /* --start-address */
109 static bfd_vma stop_address
= (bfd_vma
) -1; /* --stop-address */
110 static int dump_debugging
; /* --debugging */
111 static int dump_debugging_tags
; /* --debugging-tags */
112 static int dump_special_syms
= 0; /* --special-syms */
113 static bfd_vma adjust_section_vma
= 0; /* --adjust-vma */
114 static int file_start_context
= 0; /* --file-start-context */
115 static bfd_boolean display_file_offsets
;/* -F */
116 static const char *prefix
; /* --prefix */
117 static int prefix_strip
; /* --prefix-strip */
118 static size_t prefix_length
;
120 /* A structure to record the sections mentioned in -j switches. */
123 const char * name
; /* The name of the section. */
124 bfd_boolean seen
; /* A flag to indicate that the section has been found in one or more input files. */
125 struct only
* next
; /* Pointer to the next structure in the list. */
127 /* Pointer to an array of 'only' structures.
128 This pointer is NULL if the -j switch has not been used. */
129 static struct only
* only_list
= NULL
;
131 /* Variables for handling include file path table. */
132 static const char **include_paths
;
133 static int include_path_count
;
135 /* Extra info to pass to the section disassembler and address printing
137 struct objdump_disasm_info
141 bfd_boolean require_sec
;
142 arelent
** dynrelbuf
;
144 disassembler_ftype disassemble_fn
;
148 /* Architecture to disassemble for, or default if NULL. */
149 static char *machine
= NULL
;
151 /* Target specific options to the disassembler. */
152 static char *disassembler_options
= NULL
;
154 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
155 static enum bfd_endian endian
= BFD_ENDIAN_UNKNOWN
;
157 /* The symbol table. */
158 static asymbol
**syms
;
160 /* Number of symbols in `syms'. */
161 static long symcount
= 0;
163 /* The sorted symbol table. */
164 static asymbol
**sorted_syms
;
166 /* Number of symbols in `sorted_syms'. */
167 static long sorted_symcount
= 0;
169 /* The dynamic symbol table. */
170 static asymbol
**dynsyms
;
172 /* The synthetic symbol table. */
173 static asymbol
*synthsyms
;
174 static long synthcount
= 0;
176 /* Number of symbols in `dynsyms'. */
177 static long dynsymcount
= 0;
179 static bfd_byte
*stabs
;
180 static bfd_size_type stab_size
;
183 static bfd_size_type stabstr_size
;
185 static bfd_boolean is_relocatable
= FALSE
;
188 usage (FILE *stream
, int status
)
190 fprintf (stream
, _("Usage: %s <option(s)> <file(s)>\n"), program_name
);
191 fprintf (stream
, _(" Display information from object <file(s)>.\n"));
192 fprintf (stream
, _(" At least one of the following switches must be given:\n"));
193 fprintf (stream
, _("\
194 -a, --archive-headers Display archive header information\n\
195 -f, --file-headers Display the contents of the overall file header\n\
196 -p, --private-headers Display object format specific file header contents\n\
197 -h, --[section-]headers Display the contents of the section headers\n\
198 -x, --all-headers Display the contents of all headers\n\
199 -d, --disassemble Display assembler contents of executable sections\n\
200 -D, --disassemble-all Display assembler contents of all sections\n\
201 -S, --source Intermix source code with disassembly\n\
202 -s, --full-contents Display the full contents of all sections requested\n\
203 -g, --debugging Display debug information in object file\n\
204 -e, --debugging-tags Display debug information using ctags style\n\
205 -G, --stabs Display (in raw form) any STABS info in the file\n\
206 -W[lLiaprmfFsoRt] or\n\
207 --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
208 =frames-interp,=str,=loc,=Ranges,=pubtypes]\n\
209 Display DWARF info in the file\n\
210 -t, --syms Display the contents of the symbol table(s)\n\
211 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
212 -r, --reloc Display the relocation entries in the file\n\
213 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
214 @<file> Read options from <file>\n\
215 -v, --version Display this program's version number\n\
216 -i, --info List object formats and architectures supported\n\
217 -H, --help Display this information\n\
221 fprintf (stream
, _("\n The following switches are optional:\n"));
222 fprintf (stream
, _("\
223 -b, --target=BFDNAME Specify the target object format as BFDNAME\n\
224 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n\
225 -j, --section=NAME Only display information for section NAME\n\
226 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n\
227 -EB --endian=big Assume big endian format when disassembling\n\
228 -EL --endian=little Assume little endian format when disassembling\n\
229 --file-start-context Include context from start of file (with -S)\n\
230 -I, --include=DIR Add DIR to search list for source files\n\
231 -l, --line-numbers Include line numbers and filenames in output\n\
232 -F, --file-offsets Include file offsets when displaying information\n\
233 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
234 The STYLE, if specified, can be `auto', `gnu',\n\
235 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
237 -w, --wide Format output for more than 80 columns\n\
238 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
239 --start-address=ADDR Only process data whose address is >= ADDR\n\
240 --stop-address=ADDR Only process data whose address is <= ADDR\n\
241 --prefix-addresses Print complete address alongside disassembly\n\
242 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
243 --insn-width=WIDTH Display WIDTH bytes on a signle line for -d\n\
244 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
245 --special-syms Include special symbols in symbol dumps\n\
246 --prefix=PREFIX Add PREFIX to absolute paths for -S\n\
247 --prefix-strip=LEVEL Strip initial directory names for -S\n\
249 list_supported_targets (program_name
, stream
);
250 list_supported_architectures (program_name
, stream
);
252 disassembler_usage (stream
);
254 if (REPORT_BUGS_TO
[0] && status
== 0)
255 fprintf (stream
, _("Report bugs to %s.\n"), REPORT_BUGS_TO
);
259 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
263 OPTION_START_ADDRESS
,
272 static struct option long_options
[]=
274 {"adjust-vma", required_argument
, NULL
, OPTION_ADJUST_VMA
},
275 {"all-headers", no_argument
, NULL
, 'x'},
276 {"private-headers", no_argument
, NULL
, 'p'},
277 {"architecture", required_argument
, NULL
, 'm'},
278 {"archive-headers", no_argument
, NULL
, 'a'},
279 {"debugging", no_argument
, NULL
, 'g'},
280 {"debugging-tags", no_argument
, NULL
, 'e'},
281 {"demangle", optional_argument
, NULL
, 'C'},
282 {"disassemble", no_argument
, NULL
, 'd'},
283 {"disassemble-all", no_argument
, NULL
, 'D'},
284 {"disassembler-options", required_argument
, NULL
, 'M'},
285 {"disassemble-zeroes", no_argument
, NULL
, 'z'},
286 {"dynamic-reloc", no_argument
, NULL
, 'R'},
287 {"dynamic-syms", no_argument
, NULL
, 'T'},
288 {"endian", required_argument
, NULL
, OPTION_ENDIAN
},
289 {"file-headers", no_argument
, NULL
, 'f'},
290 {"file-offsets", no_argument
, NULL
, 'F'},
291 {"file-start-context", no_argument
, &file_start_context
, 1},
292 {"full-contents", no_argument
, NULL
, 's'},
293 {"headers", no_argument
, NULL
, 'h'},
294 {"help", no_argument
, NULL
, 'H'},
295 {"info", no_argument
, NULL
, 'i'},
296 {"line-numbers", no_argument
, NULL
, 'l'},
297 {"no-show-raw-insn", no_argument
, &show_raw_insn
, -1},
298 {"prefix-addresses", no_argument
, &prefix_addresses
, 1},
299 {"reloc", no_argument
, NULL
, 'r'},
300 {"section", required_argument
, NULL
, 'j'},
301 {"section-headers", no_argument
, NULL
, 'h'},
302 {"show-raw-insn", no_argument
, &show_raw_insn
, 1},
303 {"source", no_argument
, NULL
, 'S'},
304 {"special-syms", no_argument
, &dump_special_syms
, 1},
305 {"include", required_argument
, NULL
, 'I'},
306 {"dwarf", optional_argument
, NULL
, OPTION_DWARF
},
307 {"stabs", no_argument
, NULL
, 'G'},
308 {"start-address", required_argument
, NULL
, OPTION_START_ADDRESS
},
309 {"stop-address", required_argument
, NULL
, OPTION_STOP_ADDRESS
},
310 {"syms", no_argument
, NULL
, 't'},
311 {"target", required_argument
, NULL
, 'b'},
312 {"version", no_argument
, NULL
, 'V'},
313 {"wide", no_argument
, NULL
, 'w'},
314 {"prefix", required_argument
, NULL
, OPTION_PREFIX
},
315 {"prefix-strip", required_argument
, NULL
, OPTION_PREFIX_STRIP
},
316 {"insn-width", required_argument
, NULL
, OPTION_INSN_WIDTH
},
317 {0, no_argument
, 0, 0}
321 nonfatal (const char *msg
)
327 /* Returns TRUE if the specified section should be dumped. */
330 process_section_p (asection
* section
)
334 if (only_list
== NULL
)
337 for (only
= only_list
; only
; only
= only
->next
)
338 if (strcmp (only
->name
, section
->name
) == 0)
347 /* Add an entry to the 'only' list. */
350 add_only (char * name
)
354 /* First check to make sure that we do not
355 already have an entry for this name. */
356 for (only
= only_list
; only
; only
= only
->next
)
357 if (strcmp (only
->name
, name
) == 0)
360 only
= xmalloc (sizeof * only
);
363 only
->next
= only_list
;
367 /* Release the memory used by the 'only' list.
368 PR 11225: Issue a warning message for unseen sections.
369 Only do this if none of the sections were seen. This is mainly to support
370 tools like the GAS testsuite where an object file is dumped with a list of
371 generic section names known to be present in a range of different file
375 free_only_list (void)
377 bfd_boolean at_least_one_seen
= FALSE
;
381 if (only_list
== NULL
)
384 for (only
= only_list
; only
; only
= only
->next
)
387 at_least_one_seen
= TRUE
;
391 for (only
= only_list
; only
; only
= next
)
393 if (! at_least_one_seen
)
395 non_fatal (_("Section '%s' mentioned in a -j option, but not found in any input file"),
406 dump_section_header (bfd
*abfd
, asection
*section
,
407 void *ignored ATTRIBUTE_UNUSED
)
410 unsigned int opb
= bfd_octets_per_byte (abfd
);
412 /* Ignore linker created section. See elfNN_ia64_object_p in
414 if (section
->flags
& SEC_LINKER_CREATED
)
417 /* PR 10413: Skip sections that we are ignoring. */
418 if (! process_section_p (section
))
421 printf ("%3d %-13s %08lx ", section
->index
,
422 bfd_get_section_name (abfd
, section
),
423 (unsigned long) bfd_section_size (abfd
, section
) / opb
);
424 bfd_printf_vma (abfd
, bfd_get_section_vma (abfd
, section
));
426 bfd_printf_vma (abfd
, section
->lma
);
427 printf (" %08lx 2**%u", (unsigned long) section
->filepos
,
428 bfd_get_section_alignment (abfd
, section
));
434 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
436 PF (SEC_HAS_CONTENTS
, "CONTENTS");
437 PF (SEC_ALLOC
, "ALLOC");
438 PF (SEC_CONSTRUCTOR
, "CONSTRUCTOR");
439 PF (SEC_LOAD
, "LOAD");
440 PF (SEC_RELOC
, "RELOC");
441 PF (SEC_READONLY
, "READONLY");
442 PF (SEC_CODE
, "CODE");
443 PF (SEC_DATA
, "DATA");
445 PF (SEC_DEBUGGING
, "DEBUGGING");
446 PF (SEC_NEVER_LOAD
, "NEVER_LOAD");
447 PF (SEC_EXCLUDE
, "EXCLUDE");
448 PF (SEC_SORT_ENTRIES
, "SORT_ENTRIES");
449 if (bfd_get_arch (abfd
) == bfd_arch_tic54x
)
451 PF (SEC_TIC54X_BLOCK
, "BLOCK");
452 PF (SEC_TIC54X_CLINK
, "CLINK");
454 PF (SEC_SMALL_DATA
, "SMALL_DATA");
455 if (bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
456 PF (SEC_COFF_SHARED
, "SHARED");
457 PF (SEC_THREAD_LOCAL
, "THREAD_LOCAL");
458 PF (SEC_GROUP
, "GROUP");
460 if ((section
->flags
& SEC_LINK_ONCE
) != 0)
463 struct coff_comdat_info
*comdat
;
465 switch (section
->flags
& SEC_LINK_DUPLICATES
)
469 case SEC_LINK_DUPLICATES_DISCARD
:
470 ls
= "LINK_ONCE_DISCARD";
472 case SEC_LINK_DUPLICATES_ONE_ONLY
:
473 ls
= "LINK_ONCE_ONE_ONLY";
475 case SEC_LINK_DUPLICATES_SAME_SIZE
:
476 ls
= "LINK_ONCE_SAME_SIZE";
478 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
479 ls
= "LINK_ONCE_SAME_CONTENTS";
482 printf ("%s%s", comma
, ls
);
484 comdat
= bfd_coff_get_comdat_section (abfd
, section
);
486 printf (" (COMDAT %s %ld)", comdat
->name
, comdat
->symbol
);
496 dump_headers (bfd
*abfd
)
498 printf (_("Sections:\n"));
501 printf (_("Idx Name Size VMA LMA File off Algn"));
503 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
504 if (bfd_get_arch_size (abfd
) == 32)
505 printf (_("Idx Name Size VMA LMA File off Algn"));
507 printf (_("Idx Name Size VMA LMA File off Algn"));
511 printf (_(" Flags"));
512 if (abfd
->flags
& HAS_LOAD_PAGE
)
516 bfd_map_over_sections (abfd
, dump_section_header
, NULL
);
520 slurp_symtab (bfd
*abfd
)
525 if (!(bfd_get_file_flags (abfd
) & HAS_SYMS
))
531 storage
= bfd_get_symtab_upper_bound (abfd
);
533 bfd_fatal (bfd_get_filename (abfd
));
535 sy
= (asymbol
**) xmalloc (storage
);
537 symcount
= bfd_canonicalize_symtab (abfd
, sy
);
539 bfd_fatal (bfd_get_filename (abfd
));
543 /* Read in the dynamic symbols. */
546 slurp_dynamic_symtab (bfd
*abfd
)
551 storage
= bfd_get_dynamic_symtab_upper_bound (abfd
);
554 if (!(bfd_get_file_flags (abfd
) & DYNAMIC
))
556 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd
));
561 bfd_fatal (bfd_get_filename (abfd
));
564 sy
= (asymbol
**) xmalloc (storage
);
566 dynsymcount
= bfd_canonicalize_dynamic_symtab (abfd
, sy
);
568 bfd_fatal (bfd_get_filename (abfd
));
572 /* Filter out (in place) symbols that are useless for disassembly.
573 COUNT is the number of elements in SYMBOLS.
574 Return the number of useful symbols. */
577 remove_useless_symbols (asymbol
**symbols
, long count
)
579 asymbol
**in_ptr
= symbols
, **out_ptr
= symbols
;
583 asymbol
*sym
= *in_ptr
++;
585 if (sym
->name
== NULL
|| sym
->name
[0] == '\0')
587 if (sym
->flags
& (BSF_DEBUGGING
| BSF_SECTION_SYM
))
589 if (bfd_is_und_section (sym
->section
)
590 || bfd_is_com_section (sym
->section
))
595 return out_ptr
- symbols
;
598 /* Sort symbols into value order. */
601 compare_symbols (const void *ap
, const void *bp
)
603 const asymbol
*a
= * (const asymbol
**) ap
;
604 const asymbol
*b
= * (const asymbol
**) bp
;
614 if (bfd_asymbol_value (a
) > bfd_asymbol_value (b
))
616 else if (bfd_asymbol_value (a
) < bfd_asymbol_value (b
))
619 if (a
->section
> b
->section
)
621 else if (a
->section
< b
->section
)
624 an
= bfd_asymbol_name (a
);
625 bn
= bfd_asymbol_name (b
);
629 /* The symbols gnu_compiled and gcc2_compiled convey no real
630 information, so put them after other symbols with the same value. */
631 af
= (strstr (an
, "gnu_compiled") != NULL
632 || strstr (an
, "gcc2_compiled") != NULL
);
633 bf
= (strstr (bn
, "gnu_compiled") != NULL
634 || strstr (bn
, "gcc2_compiled") != NULL
);
641 /* We use a heuristic for the file name, to try to sort it after
642 more useful symbols. It may not work on non Unix systems, but it
643 doesn't really matter; the only difference is precisely which
644 symbol names get printed. */
646 #define file_symbol(s, sn, snl) \
647 (((s)->flags & BSF_FILE) != 0 \
648 || ((sn)[(snl) - 2] == '.' \
649 && ((sn)[(snl) - 1] == 'o' \
650 || (sn)[(snl) - 1] == 'a')))
652 af
= file_symbol (a
, an
, anl
);
653 bf
= file_symbol (b
, bn
, bnl
);
660 /* Try to sort global symbols before local symbols before function
661 symbols before debugging symbols. */
666 if ((aflags
& BSF_DEBUGGING
) != (bflags
& BSF_DEBUGGING
))
668 if ((aflags
& BSF_DEBUGGING
) != 0)
673 if ((aflags
& BSF_FUNCTION
) != (bflags
& BSF_FUNCTION
))
675 if ((aflags
& BSF_FUNCTION
) != 0)
680 if ((aflags
& BSF_LOCAL
) != (bflags
& BSF_LOCAL
))
682 if ((aflags
& BSF_LOCAL
) != 0)
687 if ((aflags
& BSF_GLOBAL
) != (bflags
& BSF_GLOBAL
))
689 if ((aflags
& BSF_GLOBAL
) != 0)
695 /* Symbols that start with '.' might be section names, so sort them
696 after symbols that don't start with '.'. */
697 if (an
[0] == '.' && bn
[0] != '.')
699 if (an
[0] != '.' && bn
[0] == '.')
702 /* Finally, if we can't distinguish them in any other way, try to
703 get consistent results by sorting the symbols by name. */
704 return strcmp (an
, bn
);
707 /* Sort relocs into address order. */
710 compare_relocs (const void *ap
, const void *bp
)
712 const arelent
*a
= * (const arelent
**) ap
;
713 const arelent
*b
= * (const arelent
**) bp
;
715 if (a
->address
> b
->address
)
717 else if (a
->address
< b
->address
)
720 /* So that associated relocations tied to the same address show up
721 in the correct order, we don't do any further sorting. */
730 /* Print an address (VMA) to the output stream in INFO.
731 If SKIP_ZEROES is TRUE, omit leading zeroes. */
734 objdump_print_value (bfd_vma vma
, struct disassemble_info
*inf
,
735 bfd_boolean skip_zeroes
)
739 struct objdump_disasm_info
*aux
;
741 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
742 bfd_sprintf_vma (aux
->abfd
, buf
, vma
);
747 for (p
= buf
; *p
== '0'; ++p
)
752 (*inf
->fprintf_func
) (inf
->stream
, "%s", p
);
755 /* Print the name of a symbol. */
758 objdump_print_symname (bfd
*abfd
, struct disassemble_info
*inf
,
765 name
= bfd_asymbol_name (sym
);
766 if (do_demangle
&& name
[0] != '\0')
768 /* Demangle the name. */
769 alloc
= bfd_demangle (abfd
, name
, DMGL_ANSI
| DMGL_PARAMS
);
775 (*inf
->fprintf_func
) (inf
->stream
, "%s", name
);
783 /* Locate a symbol given a bfd and a section (from INFO->application_data),
784 and a VMA. If INFO->application_data->require_sec is TRUE, then always
785 require the symbol to be in the section. Returns NULL if there is no
786 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
787 of the symbol in sorted_syms. */
790 find_symbol_for_address (bfd_vma vma
,
791 struct disassemble_info
*inf
,
794 /* @@ Would it speed things up to cache the last two symbols returned,
795 and maybe their address ranges? For many processors, only one memory
796 operand can be present at a time, so the 2-entry cache wouldn't be
797 constantly churned by code doing heavy memory accesses. */
799 /* Indices in `sorted_syms'. */
801 long max_count
= sorted_symcount
;
803 struct objdump_disasm_info
*aux
;
807 bfd_boolean want_section
;
809 if (sorted_symcount
< 1)
812 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
815 opb
= inf
->octets_per_byte
;
817 /* Perform a binary search looking for the closest symbol to the
818 required value. We are searching the range (min, max_count]. */
819 while (min
+ 1 < max_count
)
823 thisplace
= (max_count
+ min
) / 2;
824 sym
= sorted_syms
[thisplace
];
826 if (bfd_asymbol_value (sym
) > vma
)
827 max_count
= thisplace
;
828 else if (bfd_asymbol_value (sym
) < vma
)
837 /* The symbol we want is now in min, the low end of the range we
838 were searching. If there are several symbols with the same
839 value, we want the first one. */
842 && (bfd_asymbol_value (sorted_syms
[thisplace
])
843 == bfd_asymbol_value (sorted_syms
[thisplace
- 1])))
846 /* Prefer a symbol in the current section if we have multple symbols
847 with the same value, as can occur with overlays or zero size
850 while (min
< max_count
851 && (bfd_asymbol_value (sorted_syms
[min
])
852 == bfd_asymbol_value (sorted_syms
[thisplace
])))
854 if (sorted_syms
[min
]->section
== sec
855 && inf
->symbol_is_valid (sorted_syms
[min
], inf
))
862 return sorted_syms
[thisplace
];
867 /* If the file is relocatable, and the symbol could be from this
868 section, prefer a symbol from this section over symbols from
869 others, even if the other symbol's value might be closer.
871 Note that this may be wrong for some symbol references if the
872 sections have overlapping memory ranges, but in that case there's
873 no way to tell what's desired without looking at the relocation
876 Also give the target a chance to reject symbols. */
877 want_section
= (aux
->require_sec
878 || ((abfd
->flags
& HAS_RELOC
) != 0
879 && vma
>= bfd_get_section_vma (abfd
, sec
)
880 && vma
< (bfd_get_section_vma (abfd
, sec
)
881 + bfd_section_size (abfd
, sec
) / opb
)));
882 if ((sorted_syms
[thisplace
]->section
!= sec
&& want_section
)
883 || ! inf
->symbol_is_valid (sorted_syms
[thisplace
], inf
))
886 long newplace
= sorted_symcount
;
888 for (i
= min
- 1; i
>= 0; i
--)
890 if ((sorted_syms
[i
]->section
== sec
|| !want_section
)
891 && inf
->symbol_is_valid (sorted_syms
[i
], inf
))
893 if (newplace
== sorted_symcount
)
896 if (bfd_asymbol_value (sorted_syms
[i
])
897 != bfd_asymbol_value (sorted_syms
[newplace
]))
900 /* Remember this symbol and keep searching until we reach
901 an earlier address. */
906 if (newplace
!= sorted_symcount
)
907 thisplace
= newplace
;
910 /* We didn't find a good symbol with a smaller value.
911 Look for one with a larger value. */
912 for (i
= thisplace
+ 1; i
< sorted_symcount
; i
++)
914 if ((sorted_syms
[i
]->section
== sec
|| !want_section
)
915 && inf
->symbol_is_valid (sorted_syms
[i
], inf
))
923 if ((sorted_syms
[thisplace
]->section
!= sec
&& want_section
)
924 || ! inf
->symbol_is_valid (sorted_syms
[thisplace
], inf
))
925 /* There is no suitable symbol. */
932 return sorted_syms
[thisplace
];
935 /* Print an address and the offset to the nearest symbol. */
938 objdump_print_addr_with_sym (bfd
*abfd
, asection
*sec
, asymbol
*sym
,
939 bfd_vma vma
, struct disassemble_info
*inf
,
940 bfd_boolean skip_zeroes
)
942 objdump_print_value (vma
, inf
, skip_zeroes
);
948 (*inf
->fprintf_func
) (inf
->stream
, " <%s",
949 bfd_get_section_name (abfd
, sec
));
950 secaddr
= bfd_get_section_vma (abfd
, sec
);
953 (*inf
->fprintf_func
) (inf
->stream
, "-0x");
954 objdump_print_value (secaddr
- vma
, inf
, TRUE
);
956 else if (vma
> secaddr
)
958 (*inf
->fprintf_func
) (inf
->stream
, "+0x");
959 objdump_print_value (vma
- secaddr
, inf
, TRUE
);
961 (*inf
->fprintf_func
) (inf
->stream
, ">");
965 (*inf
->fprintf_func
) (inf
->stream
, " <");
966 objdump_print_symname (abfd
, inf
, sym
);
967 if (bfd_asymbol_value (sym
) > vma
)
969 (*inf
->fprintf_func
) (inf
->stream
, "-0x");
970 objdump_print_value (bfd_asymbol_value (sym
) - vma
, inf
, TRUE
);
972 else if (vma
> bfd_asymbol_value (sym
))
974 (*inf
->fprintf_func
) (inf
->stream
, "+0x");
975 objdump_print_value (vma
- bfd_asymbol_value (sym
), inf
, TRUE
);
977 (*inf
->fprintf_func
) (inf
->stream
, ">");
980 if (display_file_offsets
)
981 inf
->fprintf_func (inf
->stream
, _(" (File Offset: 0x%lx)"),
982 (long int)(sec
->filepos
+ (vma
- sec
->vma
)));
985 /* Print an address (VMA), symbolically if possible.
986 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
989 objdump_print_addr (bfd_vma vma
,
990 struct disassemble_info
*inf
,
991 bfd_boolean skip_zeroes
)
993 struct objdump_disasm_info
*aux
;
995 bfd_boolean skip_find
= FALSE
;
997 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
999 if (sorted_symcount
< 1)
1001 (*inf
->fprintf_func
) (inf
->stream
, "0x");
1002 objdump_print_value (vma
, inf
, skip_zeroes
);
1004 if (display_file_offsets
)
1005 inf
->fprintf_func (inf
->stream
, _(" (File Offset: 0x%lx)"),
1006 (long int)(aux
->sec
->filepos
+ (vma
- aux
->sec
->vma
)));
1010 if (aux
->reloc
!= NULL
1011 && aux
->reloc
->sym_ptr_ptr
!= NULL
1012 && * aux
->reloc
->sym_ptr_ptr
!= NULL
)
1014 sym
= * aux
->reloc
->sym_ptr_ptr
;
1016 /* Adjust the vma to the reloc. */
1017 vma
+= bfd_asymbol_value (sym
);
1019 if (bfd_is_und_section (bfd_get_section (sym
)))
1024 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1026 objdump_print_addr_with_sym (aux
->abfd
, aux
->sec
, sym
, vma
, inf
,
1030 /* Print VMA to INFO. This function is passed to the disassembler
1034 objdump_print_address (bfd_vma vma
, struct disassemble_info
*inf
)
1036 objdump_print_addr (vma
, inf
, ! prefix_addresses
);
1039 /* Determine if the given address has a symbol associated with it. */
1042 objdump_symbol_at_address (bfd_vma vma
, struct disassemble_info
* inf
)
1046 sym
= find_symbol_for_address (vma
, inf
, NULL
);
1048 return (sym
!= NULL
&& (bfd_asymbol_value (sym
) == vma
));
1051 /* Hold the last function name and the last line number we displayed
1052 in a disassembly. */
1054 static char *prev_functionname
;
1055 static unsigned int prev_line
;
1057 /* We keep a list of all files that we have seen when doing a
1058 disassembly with source, so that we know how much of the file to
1059 display. This can be important for inlined functions. */
1061 struct print_file_list
1063 struct print_file_list
*next
;
1064 const char *filename
;
1065 const char *modname
;
1068 const char **linemap
;
1074 static struct print_file_list
*print_files
;
1076 /* The number of preceding context lines to show when we start
1077 displaying a file for the first time. */
1079 #define SHOW_PRECEDING_CONTEXT_LINES (5)
1081 /* Read a complete file into memory. */
1084 slurp_file (const char *fn
, size_t *size
)
1087 int ps
= getpagesize ();
1092 int fd
= open (fn
, O_RDONLY
| O_BINARY
);
1096 if (fstat (fd
, &st
) < 0)
1100 msize
= (*size
+ ps
- 1) & ~(ps
- 1);
1101 map
= mmap (NULL
, msize
, PROT_READ
, MAP_SHARED
, fd
, 0);
1102 if (map
!= (char *)-1L)
1108 map
= (const char *) malloc (*size
);
1109 if (!map
|| (size_t) read (fd
, (char *)map
, *size
) != *size
)
1118 #define line_map_decrease 5
1120 /* Precompute array of lines for a mapped file. */
1122 static const char **
1123 index_file (const char *map
, size_t size
, unsigned int *maxline
)
1125 const char *p
, *lstart
, *end
;
1126 int chars_per_line
= 45; /* First iteration will use 40. */
1127 unsigned int lineno
;
1128 const char **linemap
= NULL
;
1129 unsigned long line_map_size
= 0;
1135 for (p
= map
; p
< end
; p
++)
1139 if (p
+ 1 < end
&& p
[1] == '\r')
1142 else if (*p
== '\r')
1144 if (p
+ 1 < end
&& p
[1] == '\n')
1150 /* End of line found. */
1152 if (linemap
== NULL
|| line_map_size
< lineno
+ 1)
1154 unsigned long newsize
;
1156 chars_per_line
-= line_map_decrease
;
1157 if (chars_per_line
<= 1)
1159 line_map_size
= size
/ chars_per_line
+ 1;
1160 if (line_map_size
< lineno
+ 1)
1161 line_map_size
= lineno
+ 1;
1162 newsize
= line_map_size
* sizeof (char *);
1163 linemap
= (const char **) xrealloc (linemap
, newsize
);
1166 linemap
[lineno
++] = lstart
;
1174 /* Tries to open MODNAME, and if successful adds a node to print_files
1175 linked list and returns that node. Returns NULL on failure. */
1177 static struct print_file_list
*
1178 try_print_file_open (const char *origname
, const char *modname
)
1180 struct print_file_list
*p
;
1182 p
= (struct print_file_list
*) xmalloc (sizeof (struct print_file_list
));
1184 p
->map
= slurp_file (modname
, &p
->mapsize
);
1191 p
->linemap
= index_file (p
->map
, p
->mapsize
, &p
->maxline
);
1193 p
->filename
= origname
;
1194 p
->modname
= modname
;
1195 p
->next
= print_files
;
1201 /* If the the source file, as described in the symtab, is not found
1202 try to locate it in one of the paths specified with -I
1203 If found, add location to print_files linked list. */
1205 static struct print_file_list
*
1206 update_source_path (const char *filename
)
1208 struct print_file_list
*p
;
1212 if (filename
== NULL
)
1215 p
= try_print_file_open (filename
, filename
);
1219 if (include_path_count
== 0)
1222 /* Get the name of the file. */
1223 fname
= lbasename (filename
);
1225 /* If file exists under a new path, we need to add it to the list
1226 so that show_line knows about it. */
1227 for (i
= 0; i
< include_path_count
; i
++)
1229 char *modname
= concat (include_paths
[i
], "/", fname
, (const char *) 0);
1231 p
= try_print_file_open (filename
, modname
);
1241 /* Print a source file line. */
1244 print_line (struct print_file_list
*p
, unsigned int linenum
)
1250 if (linenum
>= p
->maxline
)
1252 l
= p
->linemap
[linenum
];
1253 /* Test fwrite return value to quiet glibc warning. */
1254 len
= strcspn (l
, "\n\r");
1255 if (len
== 0 || fwrite (l
, len
, 1, stdout
) == 1)
1259 /* Print a range of source code lines. */
1262 dump_lines (struct print_file_list
*p
, unsigned int start
, unsigned int end
)
1266 while (start
<= end
)
1268 print_line (p
, start
);
1273 /* Show the line number, or the source line, in a disassembly
1277 show_line (bfd
*abfd
, asection
*section
, bfd_vma addr_offset
)
1279 const char *filename
;
1280 const char *functionname
;
1281 unsigned int linenumber
;
1284 if (! with_line_numbers
&& ! with_source_code
)
1287 if (! bfd_find_nearest_line (abfd
, section
, syms
, addr_offset
, &filename
,
1288 &functionname
, &linenumber
))
1291 if (filename
!= NULL
&& *filename
== '\0')
1293 if (functionname
!= NULL
&& *functionname
== '\0')
1294 functionname
= NULL
;
1297 && IS_ABSOLUTE_PATH (filename
)
1301 const char *fname
= filename
;
1302 char *path
= (char *) alloca (prefix_length
+ PATH_MAX
+ 1);
1305 memcpy (path
, prefix
, prefix_length
);
1306 path_up
= path
+ prefix_length
;
1308 /* Build relocated filename, stripping off leading directories
1309 from the initial filename if requested. */
1310 if (prefix_strip
> 0)
1315 /* Skip selected directory levels. */
1316 for (s
= fname
+ 1; *s
!= '\0' && level
< prefix_strip
; s
++)
1317 if (IS_DIR_SEPARATOR(*s
))
1324 /* Update complete filename. */
1325 strncpy (path_up
, fname
, PATH_MAX
);
1326 path_up
[PATH_MAX
] = '\0';
1334 if (with_line_numbers
)
1336 if (functionname
!= NULL
1337 && (prev_functionname
== NULL
1338 || strcmp (functionname
, prev_functionname
) != 0))
1339 printf ("%s():\n", functionname
);
1340 if (linenumber
> 0 && linenumber
!= prev_line
)
1341 printf ("%s:%u\n", filename
== NULL
? "???" : filename
, linenumber
);
1344 if (with_source_code
1348 struct print_file_list
**pp
, *p
;
1351 for (pp
= &print_files
; *pp
!= NULL
; pp
= &(*pp
)->next
)
1352 if (strcmp ((*pp
)->filename
, filename
) == 0)
1359 filename
= xstrdup (filename
);
1360 p
= update_source_path (filename
);
1363 if (p
!= NULL
&& linenumber
!= p
->last_line
)
1365 if (file_start_context
&& p
->first
)
1369 l
= linenumber
- SHOW_PRECEDING_CONTEXT_LINES
;
1370 if (l
>= linenumber
)
1372 if (p
->last_line
>= l
&& p
->last_line
<= linenumber
)
1373 l
= p
->last_line
+ 1;
1375 dump_lines (p
, l
, linenumber
);
1376 p
->last_line
= linenumber
;
1381 if (functionname
!= NULL
1382 && (prev_functionname
== NULL
1383 || strcmp (functionname
, prev_functionname
) != 0))
1385 if (prev_functionname
!= NULL
)
1386 free (prev_functionname
);
1387 prev_functionname
= (char *) xmalloc (strlen (functionname
) + 1);
1388 strcpy (prev_functionname
, functionname
);
1391 if (linenumber
> 0 && linenumber
!= prev_line
)
1392 prev_line
= linenumber
;
1395 /* Pseudo FILE object for strings. */
1403 /* sprintf to a "stream". */
1405 static int ATTRIBUTE_PRINTF_2
1406 objdump_sprintf (SFILE
*f
, const char *format
, ...)
1413 size_t space
= f
->alloc
- f
->pos
;
1415 va_start (args
, format
);
1416 n
= vsnprintf (f
->buffer
+ f
->pos
, space
, format
, args
);
1422 f
->alloc
= (f
->alloc
+ n
) * 2;
1423 f
->buffer
= (char *) xrealloc (f
->buffer
, f
->alloc
);
1430 /* The number of zeroes we want to see before we start skipping them.
1431 The number is arbitrarily chosen. */
1433 #define DEFAULT_SKIP_ZEROES 8
1435 /* The number of zeroes to skip at the end of a section. If the
1436 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1437 SKIP_ZEROES, they will be disassembled. If there are fewer than
1438 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1439 attempt to avoid disassembling zeroes inserted by section
1442 #define DEFAULT_SKIP_ZEROES_AT_END 3
1444 /* Disassemble some data in memory between given values. */
1447 disassemble_bytes (struct disassemble_info
* inf
,
1448 disassembler_ftype disassemble_fn
,
1451 bfd_vma start_offset
,
1452 bfd_vma stop_offset
,
1455 arelent
** relppend
)
1457 struct objdump_disasm_info
*aux
;
1459 int octets_per_line
;
1460 int skip_addr_chars
;
1461 bfd_vma addr_offset
;
1462 unsigned int opb
= inf
->octets_per_byte
;
1463 unsigned int skip_zeroes
= inf
->skip_zeroes
;
1464 unsigned int skip_zeroes_at_end
= inf
->skip_zeroes_at_end
;
1468 aux
= (struct objdump_disasm_info
*) inf
->application_data
;
1472 sfile
.buffer
= (char *) xmalloc (sfile
.alloc
);
1476 octets_per_line
= insn_width
;
1478 octets_per_line
= 4;
1480 octets_per_line
= 16;
1482 /* Figure out how many characters to skip at the start of an
1483 address, to make the disassembly look nicer. We discard leading
1484 zeroes in chunks of 4, ensuring that there is always a leading
1486 skip_addr_chars
= 0;
1487 if (! prefix_addresses
)
1491 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ section
->size
/ opb
);
1493 while (buf
[skip_addr_chars
] == '0')
1496 /* Don't discard zeros on overflow. */
1497 if (buf
[skip_addr_chars
] == '\0' && section
->vma
!= 0)
1498 skip_addr_chars
= 0;
1500 if (skip_addr_chars
!= 0)
1501 skip_addr_chars
= (skip_addr_chars
- 1) & -4;
1504 inf
->insn_info_valid
= 0;
1506 addr_offset
= start_offset
;
1507 while (addr_offset
< stop_offset
)
1510 bfd_boolean need_nl
= FALSE
;
1511 int previous_octets
;
1513 /* Remember the length of the previous instruction. */
1514 previous_octets
= octets
;
1517 /* Make sure we don't use relocs from previous instructions. */
1520 /* If we see more than SKIP_ZEROES octets of zeroes, we just
1522 for (z
= addr_offset
* opb
; z
< stop_offset
* opb
; z
++)
1525 if (! disassemble_zeroes
1526 && (inf
->insn_info_valid
== 0
1527 || inf
->branch_delay_insns
== 0)
1528 && (z
- addr_offset
* opb
>= skip_zeroes
1529 || (z
== stop_offset
* opb
&&
1530 z
- addr_offset
* opb
< skip_zeroes_at_end
)))
1532 /* If there are more nonzero octets to follow, we only skip
1533 zeroes in multiples of 4, to try to avoid running over
1534 the start of an instruction which happens to start with
1536 if (z
!= stop_offset
* opb
)
1537 z
= addr_offset
* opb
+ ((z
- addr_offset
* opb
) &~ 3);
1539 octets
= z
- addr_offset
* opb
;
1541 /* If we are going to display more data, and we are displaying
1542 file offsets, then tell the user how many zeroes we skip
1543 and the file offset from where we resume dumping. */
1544 if (display_file_offsets
&& ((addr_offset
+ (octets
/ opb
)) < stop_offset
))
1545 printf ("\t... (skipping %d zeroes, resuming at file offset: 0x%lx)\n",
1547 (unsigned long) (section
->filepos
1548 + (addr_offset
+ (octets
/ opb
))));
1558 if (with_line_numbers
|| with_source_code
)
1559 show_line (aux
->abfd
, section
, addr_offset
);
1561 if (! prefix_addresses
)
1565 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ addr_offset
);
1566 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1570 printf ("%s:\t", buf
+ skip_addr_chars
);
1574 aux
->require_sec
= TRUE
;
1575 objdump_print_address (section
->vma
+ addr_offset
, inf
);
1576 aux
->require_sec
= FALSE
;
1583 inf
->fprintf_func
= (fprintf_ftype
) objdump_sprintf
;
1584 inf
->stream
= &sfile
;
1585 inf
->bytes_per_line
= 0;
1586 inf
->bytes_per_chunk
= 0;
1587 inf
->flags
= disassemble_all
? DISASSEMBLE_DATA
: 0;
1589 inf
->flags
|= USER_SPECIFIED_MACHINE_TYPE
;
1591 if (inf
->disassembler_needs_relocs
1592 && (bfd_get_file_flags (aux
->abfd
) & EXEC_P
) == 0
1593 && (bfd_get_file_flags (aux
->abfd
) & DYNAMIC
) == 0
1594 && *relppp
< relppend
)
1596 bfd_signed_vma distance_to_rel
;
1598 distance_to_rel
= (**relppp
)->address
1599 - (rel_offset
+ addr_offset
);
1601 /* Check to see if the current reloc is associated with
1602 the instruction that we are about to disassemble. */
1603 if (distance_to_rel
== 0
1604 /* FIXME: This is wrong. We are trying to catch
1605 relocs that are addressed part way through the
1606 current instruction, as might happen with a packed
1607 VLIW instruction. Unfortunately we do not know the
1608 length of the current instruction since we have not
1609 disassembled it yet. Instead we take a guess based
1610 upon the length of the previous instruction. The
1611 proper solution is to have a new target-specific
1612 disassembler function which just returns the length
1613 of an instruction at a given address without trying
1614 to display its disassembly. */
1615 || (distance_to_rel
> 0
1616 && distance_to_rel
< (bfd_signed_vma
) (previous_octets
/ opb
)))
1618 inf
->flags
|= INSN_HAS_RELOC
;
1619 aux
->reloc
= **relppp
;
1623 octets
= (*disassemble_fn
) (section
->vma
+ addr_offset
, inf
);
1624 inf
->fprintf_func
= (fprintf_ftype
) fprintf
;
1625 inf
->stream
= stdout
;
1626 if (insn_width
== 0 && inf
->bytes_per_line
!= 0)
1627 octets_per_line
= inf
->bytes_per_line
;
1631 printf ("%s\n", sfile
.buffer
);
1639 octets
= octets_per_line
;
1640 if (addr_offset
+ octets
/ opb
> stop_offset
)
1641 octets
= (stop_offset
- addr_offset
) * opb
;
1643 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ octets
; ++j
)
1645 if (ISPRINT (data
[j
]))
1646 buf
[j
- addr_offset
* opb
] = data
[j
];
1648 buf
[j
- addr_offset
* opb
] = '.';
1650 buf
[j
- addr_offset
* opb
] = '\0';
1653 if (prefix_addresses
1655 : show_raw_insn
>= 0)
1659 /* If ! prefix_addresses and ! wide_output, we print
1660 octets_per_line octets per line. */
1662 if (pb
> octets_per_line
&& ! prefix_addresses
&& ! wide_output
)
1663 pb
= octets_per_line
;
1665 if (inf
->bytes_per_chunk
)
1666 bpc
= inf
->bytes_per_chunk
;
1670 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
1674 if (bpc
> 1 && inf
->display_endian
== BFD_ENDIAN_LITTLE
)
1676 for (k
= bpc
- 1; k
>= 0; k
--)
1677 printf ("%02x", (unsigned) data
[j
+ k
]);
1682 for (k
= 0; k
< bpc
; k
++)
1683 printf ("%02x", (unsigned) data
[j
+ k
]);
1688 for (; pb
< octets_per_line
; pb
+= bpc
)
1692 for (k
= 0; k
< bpc
; k
++)
1697 /* Separate raw data from instruction by extra space. */
1707 printf ("%s", sfile
.buffer
);
1709 if (prefix_addresses
1711 : show_raw_insn
>= 0)
1719 j
= addr_offset
* opb
+ pb
;
1721 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ j
/ opb
);
1722 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1726 printf ("%s:\t", buf
+ skip_addr_chars
);
1728 pb
+= octets_per_line
;
1731 for (; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
1735 if (bpc
> 1 && inf
->display_endian
== BFD_ENDIAN_LITTLE
)
1737 for (k
= bpc
- 1; k
>= 0; k
--)
1738 printf ("%02x", (unsigned) data
[j
+ k
]);
1743 for (k
= 0; k
< bpc
; k
++)
1744 printf ("%02x", (unsigned) data
[j
+ k
]);
1757 while ((*relppp
) < relppend
1758 && (**relppp
)->address
< rel_offset
+ addr_offset
+ octets
/ opb
)
1760 if (dump_reloc_info
|| dump_dynamic_reloc_info
)
1771 objdump_print_value (section
->vma
- rel_offset
+ q
->address
,
1774 if (q
->howto
== NULL
)
1775 printf (": *unknown*\t");
1776 else if (q
->howto
->name
)
1777 printf (": %s\t", q
->howto
->name
);
1779 printf (": %d\t", q
->howto
->type
);
1781 if (q
->sym_ptr_ptr
== NULL
|| *q
->sym_ptr_ptr
== NULL
)
1782 printf ("*unknown*");
1785 const char *sym_name
;
1787 sym_name
= bfd_asymbol_name (*q
->sym_ptr_ptr
);
1788 if (sym_name
!= NULL
&& *sym_name
!= '\0')
1789 objdump_print_symname (aux
->abfd
, inf
, *q
->sym_ptr_ptr
);
1794 sym_sec
= bfd_get_section (*q
->sym_ptr_ptr
);
1795 sym_name
= bfd_get_section_name (aux
->abfd
, sym_sec
);
1796 if (sym_name
== NULL
|| *sym_name
== '\0')
1797 sym_name
= "*unknown*";
1798 printf ("%s", sym_name
);
1805 objdump_print_value (q
->addend
, inf
, TRUE
);
1817 addr_offset
+= octets
/ opb
;
1820 free (sfile
.buffer
);
1824 disassemble_section (bfd
*abfd
, asection
*section
, void *inf
)
1826 const struct elf_backend_data
* bed
;
1827 bfd_vma sign_adjust
= 0;
1828 struct disassemble_info
* pinfo
= (struct disassemble_info
*) inf
;
1829 struct objdump_disasm_info
* paux
;
1830 unsigned int opb
= pinfo
->octets_per_byte
;
1831 bfd_byte
* data
= NULL
;
1832 bfd_size_type datasize
= 0;
1833 arelent
** rel_pp
= NULL
;
1834 arelent
** rel_ppstart
= NULL
;
1835 arelent
** rel_ppend
;
1836 unsigned long stop_offset
;
1837 asymbol
* sym
= NULL
;
1841 unsigned long addr_offset
;
1843 /* Sections that do not contain machine
1844 code are not normally disassembled. */
1845 if (! disassemble_all
1846 && only_list
== NULL
1847 && ((section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
1848 != (SEC_CODE
| SEC_HAS_CONTENTS
)))
1851 if (! process_section_p (section
))
1854 datasize
= bfd_get_section_size (section
);
1858 /* Decide which set of relocs to use. Load them if necessary. */
1859 paux
= (struct objdump_disasm_info
*) pinfo
->application_data
;
1860 if (paux
->dynrelbuf
)
1862 rel_pp
= paux
->dynrelbuf
;
1863 rel_count
= paux
->dynrelcount
;
1864 /* Dynamic reloc addresses are absolute, non-dynamic are section
1865 relative. REL_OFFSET specifies the reloc address corresponding
1866 to the start of this section. */
1867 rel_offset
= section
->vma
;
1875 if ((section
->flags
& SEC_RELOC
) != 0
1876 && (dump_reloc_info
|| pinfo
->disassembler_needs_relocs
))
1880 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
1882 bfd_fatal (bfd_get_filename (abfd
));
1886 rel_ppstart
= rel_pp
= (arelent
**) xmalloc (relsize
);
1887 rel_count
= bfd_canonicalize_reloc (abfd
, section
, rel_pp
, syms
);
1889 bfd_fatal (bfd_get_filename (abfd
));
1891 /* Sort the relocs by address. */
1892 qsort (rel_pp
, rel_count
, sizeof (arelent
*), compare_relocs
);
1896 rel_ppend
= rel_pp
+ rel_count
;
1898 data
= (bfd_byte
*) xmalloc (datasize
);
1900 bfd_get_section_contents (abfd
, section
, data
, 0, datasize
);
1902 paux
->sec
= section
;
1903 pinfo
->buffer
= data
;
1904 pinfo
->buffer_vma
= section
->vma
;
1905 pinfo
->buffer_length
= datasize
;
1906 pinfo
->section
= section
;
1908 if (start_address
== (bfd_vma
) -1
1909 || start_address
< pinfo
->buffer_vma
)
1912 addr_offset
= start_address
- pinfo
->buffer_vma
;
1914 if (stop_address
== (bfd_vma
) -1)
1915 stop_offset
= datasize
/ opb
;
1918 if (stop_address
< pinfo
->buffer_vma
)
1921 stop_offset
= stop_address
- pinfo
->buffer_vma
;
1922 if (stop_offset
> pinfo
->buffer_length
/ opb
)
1923 stop_offset
= pinfo
->buffer_length
/ opb
;
1926 /* Skip over the relocs belonging to addresses below the
1928 while (rel_pp
< rel_ppend
1929 && (*rel_pp
)->address
< rel_offset
+ addr_offset
)
1932 if (addr_offset
< stop_offset
)
1933 printf (_("\nDisassembly of section %s:\n"), section
->name
);
1935 /* Find the nearest symbol forwards from our current position. */
1936 paux
->require_sec
= TRUE
;
1937 sym
= (asymbol
*) find_symbol_for_address (section
->vma
+ addr_offset
,
1938 (struct disassemble_info
*) inf
,
1940 paux
->require_sec
= FALSE
;
1942 /* PR 9774: If the target used signed addresses then we must make
1943 sure that we sign extend the value that we calculate for 'addr'
1944 in the loop below. */
1945 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
1946 && (bed
= get_elf_backend_data (abfd
)) != NULL
1947 && bed
->sign_extend_vma
)
1948 sign_adjust
= (bfd_vma
) 1 << (bed
->s
->arch_size
- 1);
1950 /* Disassemble a block of instructions up to the address associated with
1951 the symbol we have just found. Then print the symbol and find the
1952 next symbol on. Repeat until we have disassembled the entire section
1953 or we have reached the end of the address range we are interested in. */
1954 while (addr_offset
< stop_offset
)
1958 unsigned long nextstop_offset
;
1961 addr
= section
->vma
+ addr_offset
;
1962 addr
= ((addr
& ((sign_adjust
<< 1) - 1)) ^ sign_adjust
) - sign_adjust
;
1964 if (sym
!= NULL
&& bfd_asymbol_value (sym
) <= addr
)
1969 (x
< sorted_symcount
1970 && (bfd_asymbol_value (sorted_syms
[x
]) <= addr
));
1974 pinfo
->symbols
= sorted_syms
+ place
;
1975 pinfo
->num_symbols
= x
- place
;
1976 pinfo
->symtab_pos
= place
;
1980 pinfo
->symbols
= NULL
;
1981 pinfo
->num_symbols
= 0;
1982 pinfo
->symtab_pos
= -1;
1985 if (! prefix_addresses
)
1987 pinfo
->fprintf_func (pinfo
->stream
, "\n");
1988 objdump_print_addr_with_sym (abfd
, section
, sym
, addr
,
1990 pinfo
->fprintf_func (pinfo
->stream
, ":\n");
1993 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
1995 else if (sym
== NULL
)
1999 #define is_valid_next_sym(SYM) \
2000 ((SYM)->section == section \
2001 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
2002 && pinfo->symbol_is_valid (SYM, pinfo))
2004 /* Search forward for the next appropriate symbol in
2005 SECTION. Note that all the symbols are sorted
2006 together into one big array, and that some sections
2007 may have overlapping addresses. */
2008 while (place
< sorted_symcount
2009 && ! is_valid_next_sym (sorted_syms
[place
]))
2012 if (place
>= sorted_symcount
)
2015 nextsym
= sorted_syms
[place
];
2018 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
2019 nextstop_offset
= bfd_asymbol_value (sym
) - section
->vma
;
2020 else if (nextsym
== NULL
)
2021 nextstop_offset
= stop_offset
;
2023 nextstop_offset
= bfd_asymbol_value (nextsym
) - section
->vma
;
2025 if (nextstop_offset
> stop_offset
2026 || nextstop_offset
<= addr_offset
)
2027 nextstop_offset
= stop_offset
;
2029 /* If a symbol is explicitly marked as being an object
2030 rather than a function, just dump the bytes without
2031 disassembling them. */
2034 || sym
->section
!= section
2035 || bfd_asymbol_value (sym
) > addr
2036 || ((sym
->flags
& BSF_OBJECT
) == 0
2037 && (strstr (bfd_asymbol_name (sym
), "gnu_compiled")
2039 && (strstr (bfd_asymbol_name (sym
), "gcc2_compiled")
2041 || (sym
->flags
& BSF_FUNCTION
) != 0)
2046 disassemble_bytes (pinfo
, paux
->disassemble_fn
, insns
, data
,
2047 addr_offset
, nextstop_offset
,
2048 rel_offset
, &rel_pp
, rel_ppend
);
2050 addr_offset
= nextstop_offset
;
2056 if (rel_ppstart
!= NULL
)
2060 /* Disassemble the contents of an object file. */
2063 disassemble_data (bfd
*abfd
)
2065 struct disassemble_info disasm_info
;
2066 struct objdump_disasm_info aux
;
2070 prev_functionname
= NULL
;
2073 /* We make a copy of syms to sort. We don't want to sort syms
2074 because that will screw up the relocs. */
2075 sorted_symcount
= symcount
? symcount
: dynsymcount
;
2076 sorted_syms
= (asymbol
**) xmalloc ((sorted_symcount
+ synthcount
)
2077 * sizeof (asymbol
*));
2078 memcpy (sorted_syms
, symcount
? syms
: dynsyms
,
2079 sorted_symcount
* sizeof (asymbol
*));
2081 sorted_symcount
= remove_useless_symbols (sorted_syms
, sorted_symcount
);
2083 for (i
= 0; i
< synthcount
; ++i
)
2085 sorted_syms
[sorted_symcount
] = synthsyms
+ i
;
2089 /* Sort the symbols into section and symbol order. */
2090 qsort (sorted_syms
, sorted_symcount
, sizeof (asymbol
*), compare_symbols
);
2092 init_disassemble_info (&disasm_info
, stdout
, (fprintf_ftype
) fprintf
);
2094 disasm_info
.application_data
= (void *) &aux
;
2096 aux
.require_sec
= FALSE
;
2097 aux
.dynrelbuf
= NULL
;
2098 aux
.dynrelcount
= 0;
2101 disasm_info
.print_address_func
= objdump_print_address
;
2102 disasm_info
.symbol_at_address_func
= objdump_symbol_at_address
;
2104 if (machine
!= NULL
)
2106 const bfd_arch_info_type
*inf
= bfd_scan_arch (machine
);
2109 fatal (_("Can't use supplied machine %s"), machine
);
2111 abfd
->arch_info
= inf
;
2114 if (endian
!= BFD_ENDIAN_UNKNOWN
)
2116 struct bfd_target
*xvec
;
2118 xvec
= (struct bfd_target
*) xmalloc (sizeof (struct bfd_target
));
2119 memcpy (xvec
, abfd
->xvec
, sizeof (struct bfd_target
));
2120 xvec
->byteorder
= endian
;
2124 /* Use libopcodes to locate a suitable disassembler. */
2125 aux
.disassemble_fn
= disassembler (abfd
);
2126 if (!aux
.disassemble_fn
)
2128 non_fatal (_("Can't disassemble for architecture %s\n"),
2129 bfd_printable_arch_mach (bfd_get_arch (abfd
), 0));
2134 disasm_info
.flavour
= bfd_get_flavour (abfd
);
2135 disasm_info
.arch
= bfd_get_arch (abfd
);
2136 disasm_info
.mach
= bfd_get_mach (abfd
);
2137 disasm_info
.disassembler_options
= disassembler_options
;
2138 disasm_info
.octets_per_byte
= bfd_octets_per_byte (abfd
);
2139 disasm_info
.skip_zeroes
= DEFAULT_SKIP_ZEROES
;
2140 disasm_info
.skip_zeroes_at_end
= DEFAULT_SKIP_ZEROES_AT_END
;
2141 disasm_info
.disassembler_needs_relocs
= FALSE
;
2143 if (bfd_big_endian (abfd
))
2144 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_BIG
;
2145 else if (bfd_little_endian (abfd
))
2146 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_LITTLE
;
2148 /* ??? Aborting here seems too drastic. We could default to big or little
2150 disasm_info
.endian
= BFD_ENDIAN_UNKNOWN
;
2152 /* Allow the target to customize the info structure. */
2153 disassemble_init_for_target (& disasm_info
);
2155 /* Pre-load the dynamic relocs if we are going
2156 to be dumping them along with the disassembly. */
2157 if (dump_dynamic_reloc_info
)
2159 long relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
2162 bfd_fatal (bfd_get_filename (abfd
));
2166 aux
.dynrelbuf
= (arelent
**) xmalloc (relsize
);
2167 aux
.dynrelcount
= bfd_canonicalize_dynamic_reloc (abfd
,
2170 if (aux
.dynrelcount
< 0)
2171 bfd_fatal (bfd_get_filename (abfd
));
2173 /* Sort the relocs by address. */
2174 qsort (aux
.dynrelbuf
, aux
.dynrelcount
, sizeof (arelent
*),
2178 disasm_info
.symtab
= sorted_syms
;
2179 disasm_info
.symtab_size
= sorted_symcount
;
2181 bfd_map_over_sections (abfd
, disassemble_section
, & disasm_info
);
2183 if (aux
.dynrelbuf
!= NULL
)
2184 free (aux
.dynrelbuf
);
2189 load_specific_debug_section (enum dwarf_section_display_enum debug
,
2190 asection
*sec
, void *file
)
2192 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2193 bfd
*abfd
= (bfd
*) file
;
2195 int section_is_compressed
;
2197 /* If it is already loaded, do nothing. */
2198 if (section
->start
!= NULL
)
2201 section_is_compressed
= section
->name
== section
->compressed_name
;
2203 section
->address
= 0;
2204 section
->size
= bfd_get_section_size (sec
);
2205 section
->start
= (unsigned char *) xmalloc (section
->size
);
2207 if (is_relocatable
&& debug_displays
[debug
].relocate
)
2208 ret
= bfd_simple_get_relocated_section_contents (abfd
,
2213 ret
= bfd_get_section_contents (abfd
, sec
, section
->start
, 0,
2218 free_debug_section (debug
);
2219 printf (_("\nCan't get contents for section '%s'.\n"),
2224 if (section_is_compressed
)
2226 bfd_size_type size
= section
->size
;
2227 if (! bfd_uncompress_section_contents (§ion
->start
, &size
))
2229 free_debug_section (debug
);
2230 printf (_("\nCan't uncompress section '%s'.\n"), section
->name
);
2233 section
->size
= size
;
2240 load_debug_section (enum dwarf_section_display_enum debug
, void *file
)
2242 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2243 bfd
*abfd
= (bfd
*) file
;
2246 /* If it is already loaded, do nothing. */
2247 if (section
->start
!= NULL
)
2250 /* Locate the debug section. */
2251 sec
= bfd_get_section_by_name (abfd
, section
->uncompressed_name
);
2253 section
->name
= section
->uncompressed_name
;
2256 sec
= bfd_get_section_by_name (abfd
, section
->compressed_name
);
2258 section
->name
= section
->compressed_name
;
2263 return load_specific_debug_section (debug
, sec
, file
);
2267 free_debug_section (enum dwarf_section_display_enum debug
)
2269 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2271 if (section
->start
== NULL
)
2274 free ((char *) section
->start
);
2275 section
->start
= NULL
;
2276 section
->address
= 0;
2281 dump_dwarf_section (bfd
*abfd
, asection
*section
,
2282 void *arg ATTRIBUTE_UNUSED
)
2284 const char *name
= bfd_get_section_name (abfd
, section
);
2288 if (CONST_STRNEQ (name
, ".gnu.linkonce.wi."))
2289 match
= ".debug_info";
2293 for (i
= 0; i
< max
; i
++)
2294 if ((strcmp (debug_displays
[i
].section
.uncompressed_name
, match
) == 0
2295 || strcmp (debug_displays
[i
].section
.compressed_name
, match
) == 0)
2296 && debug_displays
[i
].enabled
!= NULL
2297 && *debug_displays
[i
].enabled
)
2299 struct dwarf_section
*sec
= &debug_displays
[i
].section
;
2301 if (strcmp (sec
->uncompressed_name
, match
) == 0)
2302 sec
->name
= sec
->uncompressed_name
;
2304 sec
->name
= sec
->compressed_name
;
2305 if (load_specific_debug_section ((enum dwarf_section_display_enum
) i
,
2308 debug_displays
[i
].display (sec
, abfd
);
2310 if (i
!= info
&& i
!= abbrev
)
2311 free_debug_section ((enum dwarf_section_display_enum
) i
);
2317 /* Dump the dwarf debugging information. */
2320 dump_dwarf (bfd
*abfd
)
2322 is_relocatable
= (abfd
->flags
& (EXEC_P
| DYNAMIC
)) == 0;
2324 /* FIXME: bfd_get_arch_size may return -1. We assume that 64bit
2325 targets will return 64. */
2326 eh_addr_size
= bfd_get_arch_size (abfd
) == 64 ? 8 : 4;
2328 if (bfd_big_endian (abfd
))
2329 byte_get
= byte_get_big_endian
;
2330 else if (bfd_little_endian (abfd
))
2331 byte_get
= byte_get_little_endian
;
2335 if (bfd_get_flavour (abfd
) == bfd_target_elf_flavour
)
2337 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2338 init_dwarf_regnames (bed
->elf_machine_code
);
2341 bfd_map_over_sections (abfd
, dump_dwarf_section
, NULL
);
2343 free_debug_memory ();
2346 /* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
2347 it. Return NULL on failure. */
2350 read_section_stabs (bfd
*abfd
, const char *sect_name
, bfd_size_type
*size_ptr
)
2356 stabsect
= bfd_get_section_by_name (abfd
, sect_name
);
2357 if (stabsect
== NULL
)
2359 printf (_("No %s section present\n\n"), sect_name
);
2363 size
= bfd_section_size (abfd
, stabsect
);
2364 contents
= (char *) xmalloc (size
);
2366 if (! bfd_get_section_contents (abfd
, stabsect
, contents
, 0, size
))
2368 non_fatal (_("Reading %s section of %s failed: %s"),
2369 sect_name
, bfd_get_filename (abfd
),
2370 bfd_errmsg (bfd_get_error ()));
2381 /* Stabs entries use a 12 byte format:
2382 4 byte string table index
2384 1 byte stab other field
2385 2 byte stab desc field
2387 FIXME: This will have to change for a 64 bit object format. */
2389 #define STRDXOFF (0)
2391 #define OTHEROFF (5)
2394 #define STABSIZE (12)
2396 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2397 using string table section STRSECT_NAME (in `strtab'). */
2400 print_section_stabs (bfd
*abfd
,
2401 const char *stabsect_name
,
2402 unsigned *string_offset_ptr
)
2405 unsigned file_string_table_offset
= 0;
2406 unsigned next_file_string_table_offset
= *string_offset_ptr
;
2407 bfd_byte
*stabp
, *stabs_end
;
2410 stabs_end
= stabp
+ stab_size
;
2412 printf (_("Contents of %s section:\n\n"), stabsect_name
);
2413 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2415 /* Loop through all symbols and print them.
2417 We start the index at -1 because there is a dummy symbol on
2418 the front of stabs-in-{coff,elf} sections that supplies sizes. */
2419 for (i
= -1; stabp
< stabs_end
; stabp
+= STABSIZE
, i
++)
2423 unsigned char type
, other
;
2424 unsigned short desc
;
2427 strx
= bfd_h_get_32 (abfd
, stabp
+ STRDXOFF
);
2428 type
= bfd_h_get_8 (abfd
, stabp
+ TYPEOFF
);
2429 other
= bfd_h_get_8 (abfd
, stabp
+ OTHEROFF
);
2430 desc
= bfd_h_get_16 (abfd
, stabp
+ DESCOFF
);
2431 value
= bfd_h_get_32 (abfd
, stabp
+ VALOFF
);
2433 printf ("\n%-6d ", i
);
2434 /* Either print the stab name, or, if unnamed, print its number
2435 again (makes consistent formatting for tools like awk). */
2436 name
= bfd_get_stab_name (type
);
2438 printf ("%-6s", name
);
2439 else if (type
== N_UNDF
)
2442 printf ("%-6d", type
);
2443 printf (" %-6d %-6d ", other
, desc
);
2444 bfd_printf_vma (abfd
, value
);
2445 printf (" %-6lu", strx
);
2447 /* Symbols with type == 0 (N_UNDF) specify the length of the
2448 string table associated with this file. We use that info
2449 to know how to relocate the *next* file's string table indices. */
2452 file_string_table_offset
= next_file_string_table_offset
;
2453 next_file_string_table_offset
+= value
;
2457 /* Using the (possibly updated) string table offset, print the
2458 string (if any) associated with this symbol. */
2459 if ((strx
+ file_string_table_offset
) < stabstr_size
)
2460 printf (" %s", &strtab
[strx
+ file_string_table_offset
]);
2466 *string_offset_ptr
= next_file_string_table_offset
;
2471 const char * section_name
;
2472 const char * string_section_name
;
2473 unsigned string_offset
;
2478 find_stabs_section (bfd
*abfd
, asection
*section
, void *names
)
2481 stab_section_names
* sought
= (stab_section_names
*) names
;
2483 /* Check for section names for which stabsect_name is a prefix, to
2484 handle .stab.N, etc. */
2485 len
= strlen (sought
->section_name
);
2487 /* If the prefix matches, and the files section name ends with a
2488 nul or a digit, then we match. I.e., we want either an exact
2489 match or a section followed by a number. */
2490 if (strncmp (sought
->section_name
, section
->name
, len
) == 0
2491 && (section
->name
[len
] == 0
2492 || (section
->name
[len
] == '.' && ISDIGIT (section
->name
[len
+ 1]))))
2495 strtab
= read_section_stabs (abfd
, sought
->string_section_name
,
2500 stabs
= (bfd_byte
*) read_section_stabs (abfd
, section
->name
,
2503 print_section_stabs (abfd
, section
->name
, &sought
->string_offset
);
2509 dump_stabs_section (bfd
*abfd
, char *stabsect_name
, char *strsect_name
)
2511 stab_section_names s
;
2513 s
.section_name
= stabsect_name
;
2514 s
.string_section_name
= strsect_name
;
2515 s
.string_offset
= 0;
2517 bfd_map_over_sections (abfd
, find_stabs_section
, & s
);
2523 /* Dump the any sections containing stabs debugging information. */
2526 dump_stabs (bfd
*abfd
)
2528 dump_stabs_section (abfd
, ".stab", ".stabstr");
2529 dump_stabs_section (abfd
, ".stab.excl", ".stab.exclstr");
2530 dump_stabs_section (abfd
, ".stab.index", ".stab.indexstr");
2533 dump_stabs_section (abfd
, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
2535 dump_stabs_section (abfd
, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2539 dump_bfd_header (bfd
*abfd
)
2543 printf (_("architecture: %s, "),
2544 bfd_printable_arch_mach (bfd_get_arch (abfd
),
2545 bfd_get_mach (abfd
)));
2546 printf (_("flags 0x%08x:\n"), abfd
->flags
);
2548 #define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
2549 PF (HAS_RELOC
, "HAS_RELOC");
2550 PF (EXEC_P
, "EXEC_P");
2551 PF (HAS_LINENO
, "HAS_LINENO");
2552 PF (HAS_DEBUG
, "HAS_DEBUG");
2553 PF (HAS_SYMS
, "HAS_SYMS");
2554 PF (HAS_LOCALS
, "HAS_LOCALS");
2555 PF (DYNAMIC
, "DYNAMIC");
2556 PF (WP_TEXT
, "WP_TEXT");
2557 PF (D_PAGED
, "D_PAGED");
2558 PF (BFD_IS_RELAXABLE
, "BFD_IS_RELAXABLE");
2559 PF (HAS_LOAD_PAGE
, "HAS_LOAD_PAGE");
2560 printf (_("\nstart address 0x"));
2561 bfd_printf_vma (abfd
, abfd
->start_address
);
2567 dump_bfd_private_header (bfd
*abfd
)
2569 bfd_print_private_bfd_data (abfd
, stdout
);
2573 /* Display a section in hexadecimal format with associated characters.
2574 Each line prefixed by the zero padded address. */
2577 dump_section (bfd
*abfd
, asection
*section
, void *dummy ATTRIBUTE_UNUSED
)
2580 bfd_size_type datasize
;
2581 bfd_size_type addr_offset
;
2582 bfd_size_type start_offset
;
2583 bfd_size_type stop_offset
;
2584 unsigned int opb
= bfd_octets_per_byte (abfd
);
2585 /* Bytes per line. */
2586 const int onaline
= 16;
2591 if ((section
->flags
& SEC_HAS_CONTENTS
) == 0)
2594 if (! process_section_p (section
))
2597 if ((datasize
= bfd_section_size (abfd
, section
)) == 0)
2600 /* Compute the address range to display. */
2601 if (start_address
== (bfd_vma
) -1
2602 || start_address
< section
->vma
)
2605 start_offset
= start_address
- section
->vma
;
2607 if (stop_address
== (bfd_vma
) -1)
2608 stop_offset
= datasize
/ opb
;
2611 if (stop_address
< section
->vma
)
2614 stop_offset
= stop_address
- section
->vma
;
2616 if (stop_offset
> datasize
/ opb
)
2617 stop_offset
= datasize
/ opb
;
2620 if (start_offset
>= stop_offset
)
2623 printf (_("Contents of section %s:"), section
->name
);
2624 if (display_file_offsets
)
2625 printf (_(" (Starting at file offset: 0x%lx)"),
2626 (unsigned long) (section
->filepos
+ start_offset
));
2629 data
= (bfd_byte
*) xmalloc (datasize
);
2631 bfd_get_section_contents (abfd
, section
, data
, 0, datasize
);
2635 bfd_sprintf_vma (abfd
, buf
, start_offset
+ section
->vma
);
2636 if (strlen (buf
) >= sizeof (buf
))
2640 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
2642 count
= strlen (buf
) - count
;
2646 bfd_sprintf_vma (abfd
, buf
, stop_offset
+ section
->vma
- 1);
2647 if (strlen (buf
) >= sizeof (buf
))
2651 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
2653 count
= strlen (buf
) - count
;
2657 for (addr_offset
= start_offset
;
2658 addr_offset
< stop_offset
; addr_offset
+= onaline
/ opb
)
2662 bfd_sprintf_vma (abfd
, buf
, (addr_offset
+ section
->vma
));
2663 count
= strlen (buf
);
2664 if ((size_t) count
>= sizeof (buf
))
2668 while (count
< width
)
2673 fputs (buf
+ count
- width
, stdout
);
2676 for (j
= addr_offset
* opb
;
2677 j
< addr_offset
* opb
+ onaline
; j
++)
2679 if (j
< stop_offset
* opb
)
2680 printf ("%02x", (unsigned) (data
[j
]));
2688 for (j
= addr_offset
* opb
;
2689 j
< addr_offset
* opb
+ onaline
; j
++)
2691 if (j
>= stop_offset
* opb
)
2694 printf ("%c", ISPRINT (data
[j
]) ? data
[j
] : '.');
2701 /* Actually display the various requested regions. */
2704 dump_data (bfd
*abfd
)
2706 bfd_map_over_sections (abfd
, dump_section
, NULL
);
2709 /* Should perhaps share code and display with nm? */
2712 dump_symbols (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean dynamic
)
2721 max_count
= dynsymcount
;
2722 printf ("DYNAMIC SYMBOL TABLE:\n");
2727 max_count
= symcount
;
2728 printf ("SYMBOL TABLE:\n");
2732 printf (_("no symbols\n"));
2734 for (count
= 0; count
< max_count
; count
++)
2738 if (*current
== NULL
)
2739 printf (_("no information for symbol number %ld\n"), count
);
2741 else if ((cur_bfd
= bfd_asymbol_bfd (*current
)) == NULL
)
2742 printf (_("could not determine the type of symbol number %ld\n"),
2745 else if (process_section_p ((* current
)->section
)
2746 && (dump_special_syms
2747 || !bfd_is_target_special_symbol (cur_bfd
, *current
)))
2749 const char *name
= (*current
)->name
;
2751 if (do_demangle
&& name
!= NULL
&& *name
!= '\0')
2755 /* If we want to demangle the name, we demangle it
2756 here, and temporarily clobber it while calling
2757 bfd_print_symbol. FIXME: This is a gross hack. */
2758 alloc
= bfd_demangle (cur_bfd
, name
, DMGL_ANSI
| DMGL_PARAMS
);
2760 (*current
)->name
= alloc
;
2761 bfd_print_symbol (cur_bfd
, stdout
, *current
,
2762 bfd_print_symbol_all
);
2765 (*current
)->name
= name
;
2770 bfd_print_symbol (cur_bfd
, stdout
, *current
,
2771 bfd_print_symbol_all
);
2781 dump_reloc_set (bfd
*abfd
, asection
*sec
, arelent
**relpp
, long relcount
)
2784 char *last_filename
, *last_functionname
;
2785 unsigned int last_line
;
2787 /* Get column headers lined up reasonably. */
2795 bfd_sprintf_vma (abfd
, buf
, (bfd_vma
) -1);
2796 width
= strlen (buf
) - 7;
2798 printf ("OFFSET %*s TYPE %*s VALUE \n", width
, "", 12, "");
2801 last_filename
= NULL
;
2802 last_functionname
= NULL
;
2805 for (p
= relpp
; relcount
&& *p
!= NULL
; p
++, relcount
--)
2808 const char *filename
, *functionname
;
2809 unsigned int linenumber
;
2810 const char *sym_name
;
2811 const char *section_name
;
2813 if (start_address
!= (bfd_vma
) -1
2814 && q
->address
< start_address
)
2816 if (stop_address
!= (bfd_vma
) -1
2817 && q
->address
> stop_address
)
2820 if (with_line_numbers
2822 && bfd_find_nearest_line (abfd
, sec
, syms
, q
->address
,
2823 &filename
, &functionname
, &linenumber
))
2825 if (functionname
!= NULL
2826 && (last_functionname
== NULL
2827 || strcmp (functionname
, last_functionname
) != 0))
2829 printf ("%s():\n", functionname
);
2830 if (last_functionname
!= NULL
)
2831 free (last_functionname
);
2832 last_functionname
= xstrdup (functionname
);
2836 && (linenumber
!= last_line
2837 || (filename
!= NULL
2838 && last_filename
!= NULL
2839 && strcmp (filename
, last_filename
) != 0)))
2841 printf ("%s:%u\n", filename
== NULL
? "???" : filename
, linenumber
);
2842 last_line
= linenumber
;
2843 if (last_filename
!= NULL
)
2844 free (last_filename
);
2845 if (filename
== NULL
)
2846 last_filename
= NULL
;
2848 last_filename
= xstrdup (filename
);
2852 if (q
->sym_ptr_ptr
&& *q
->sym_ptr_ptr
)
2854 sym_name
= (*(q
->sym_ptr_ptr
))->name
;
2855 section_name
= (*(q
->sym_ptr_ptr
))->section
->name
;
2860 section_name
= NULL
;
2863 bfd_printf_vma (abfd
, q
->address
);
2864 if (q
->howto
== NULL
)
2865 printf (" *unknown* ");
2866 else if (q
->howto
->name
)
2867 printf (" %-16s ", q
->howto
->name
);
2869 printf (" %-16d ", q
->howto
->type
);
2873 objdump_print_symname (abfd
, NULL
, *q
->sym_ptr_ptr
);
2877 if (section_name
== NULL
)
2878 section_name
= "*unknown*";
2879 printf ("[%s]", section_name
);
2885 bfd_printf_vma (abfd
, q
->addend
);
2893 dump_relocs_in_section (bfd
*abfd
,
2895 void *dummy ATTRIBUTE_UNUSED
)
2901 if ( bfd_is_abs_section (section
)
2902 || bfd_is_und_section (section
)
2903 || bfd_is_com_section (section
)
2904 || (! process_section_p (section
))
2905 || ((section
->flags
& SEC_RELOC
) == 0))
2908 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
2910 bfd_fatal (bfd_get_filename (abfd
));
2912 printf ("RELOCATION RECORDS FOR [%s]:", section
->name
);
2916 printf (" (none)\n\n");
2920 relpp
= (arelent
**) xmalloc (relsize
);
2921 relcount
= bfd_canonicalize_reloc (abfd
, section
, relpp
, syms
);
2924 bfd_fatal (bfd_get_filename (abfd
));
2925 else if (relcount
== 0)
2926 printf (" (none)\n\n");
2930 dump_reloc_set (abfd
, section
, relpp
, relcount
);
2937 dump_relocs (bfd
*abfd
)
2939 bfd_map_over_sections (abfd
, dump_relocs_in_section
, NULL
);
2943 dump_dynamic_relocs (bfd
*abfd
)
2949 relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
2951 bfd_fatal (bfd_get_filename (abfd
));
2953 printf ("DYNAMIC RELOCATION RECORDS");
2956 printf (" (none)\n\n");
2959 relpp
= (arelent
**) xmalloc (relsize
);
2960 relcount
= bfd_canonicalize_dynamic_reloc (abfd
, relpp
, dynsyms
);
2963 bfd_fatal (bfd_get_filename (abfd
));
2964 else if (relcount
== 0)
2965 printf (" (none)\n\n");
2969 dump_reloc_set (abfd
, NULL
, relpp
, relcount
);
2976 /* Creates a table of paths, to search for source files. */
2979 add_include_path (const char *path
)
2983 include_path_count
++;
2984 include_paths
= (const char **)
2985 xrealloc (include_paths
, include_path_count
* sizeof (*include_paths
));
2986 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2987 if (path
[1] == ':' && path
[2] == 0)
2988 path
= concat (path
, ".", (const char *) 0);
2990 include_paths
[include_path_count
- 1] = path
;
2994 adjust_addresses (bfd
*abfd ATTRIBUTE_UNUSED
,
2998 if ((section
->flags
& SEC_DEBUGGING
) == 0)
3000 bfd_boolean
*has_reloc_p
= (bfd_boolean
*) arg
;
3001 section
->vma
+= adjust_section_vma
;
3003 section
->lma
+= adjust_section_vma
;
3007 /* Dump selected contents of ABFD. */
3010 dump_bfd (bfd
*abfd
)
3012 /* If we are adjusting section VMA's, change them all now. Changing
3013 the BFD information is a hack. However, we must do it, or
3014 bfd_find_nearest_line will not do the right thing. */
3015 if (adjust_section_vma
!= 0)
3017 bfd_boolean has_reloc
= (abfd
->flags
& HAS_RELOC
);
3018 bfd_map_over_sections (abfd
, adjust_addresses
, &has_reloc
);
3021 if (! dump_debugging_tags
)
3022 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd
),
3025 print_arelt_descr (stdout
, abfd
, TRUE
);
3026 if (dump_file_header
)
3027 dump_bfd_header (abfd
);
3028 if (dump_private_headers
)
3029 dump_bfd_private_header (abfd
);
3030 if (! dump_debugging_tags
)
3032 if (dump_section_headers
)
3033 dump_headers (abfd
);
3039 || dump_dwarf_section_info
)
3040 syms
= slurp_symtab (abfd
);
3041 if (dump_dynamic_symtab
|| dump_dynamic_reloc_info
3042 || (disassemble
&& bfd_get_dynamic_symtab_upper_bound (abfd
) > 0))
3043 dynsyms
= slurp_dynamic_symtab (abfd
);
3046 synthcount
= bfd_get_synthetic_symtab (abfd
, symcount
, syms
,
3047 dynsymcount
, dynsyms
, &synthsyms
);
3053 dump_symbols (abfd
, FALSE
);
3054 if (dump_dynamic_symtab
)
3055 dump_symbols (abfd
, TRUE
);
3056 if (dump_dwarf_section_info
)
3058 if (dump_stab_section_info
)
3060 if (dump_reloc_info
&& ! disassemble
)
3062 if (dump_dynamic_reloc_info
&& ! disassemble
)
3063 dump_dynamic_relocs (abfd
);
3064 if (dump_section_contents
)
3067 disassemble_data (abfd
);
3073 dhandle
= read_debugging_info (abfd
, syms
, symcount
, TRUE
);
3074 if (dhandle
!= NULL
)
3076 if (!print_debugging_info (stdout
, dhandle
, abfd
, syms
,
3078 dump_debugging_tags
? TRUE
: FALSE
))
3080 non_fatal (_("%s: printing debugging information failed"),
3081 bfd_get_filename (abfd
));
3085 /* PR 6483: If there was no STABS or IEEE debug
3086 info in the file, try DWARF instead. */
3087 else if (! dump_dwarf_section_info
)
3117 display_bfd (bfd
*abfd
)
3121 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
3127 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
3129 nonfatal (bfd_get_filename (abfd
));
3130 list_matching_formats (matching
);
3135 if (bfd_get_error () != bfd_error_file_not_recognized
)
3137 nonfatal (bfd_get_filename (abfd
));
3141 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
3147 nonfatal (bfd_get_filename (abfd
));
3149 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
3151 list_matching_formats (matching
);
3157 display_file (char *filename
, char *target
)
3162 if (get_file_size (filename
) < 1)
3168 file
= bfd_openr (filename
, target
);
3171 nonfatal (filename
);
3175 /* If the file is an archive, process all of its elements. */
3176 if (bfd_check_format (file
, bfd_archive
))
3178 bfd
*last_arfile
= NULL
;
3180 printf (_("In archive %s:\n"), bfd_get_filename (file
));
3183 bfd_set_error (bfd_error_no_error
);
3185 arfile
= bfd_openr_next_archived_file (file
, arfile
);
3188 if (bfd_get_error () != bfd_error_no_more_archived_files
)
3189 nonfatal (bfd_get_filename (file
));
3193 display_bfd (arfile
);
3195 if (last_arfile
!= NULL
)
3196 bfd_close (last_arfile
);
3197 last_arfile
= arfile
;
3200 if (last_arfile
!= NULL
)
3201 bfd_close (last_arfile
);
3210 main (int argc
, char **argv
)
3213 char *target
= default_target
;
3214 bfd_boolean seenflag
= FALSE
;
3216 #if defined (HAVE_SETLOCALE)
3217 #if defined (HAVE_LC_MESSAGES)
3218 setlocale (LC_MESSAGES
, "");
3220 setlocale (LC_CTYPE
, "");
3223 bindtextdomain (PACKAGE
, LOCALEDIR
);
3224 textdomain (PACKAGE
);
3226 program_name
= *argv
;
3227 xmalloc_set_program_name (program_name
);
3229 START_PROGRESS (program_name
, 0);
3231 expandargv (&argc
, &argv
);
3234 set_default_bfd_target ();
3236 while ((c
= getopt_long (argc
, argv
,
3237 "pib:m:M:VvCdDlfFaHhrRtTxsSI:j:wE:zgeGW::",
3238 long_options
, (int *) 0))
3244 break; /* We've been given a long option. */
3249 if (disassembler_options
)
3250 /* Ignore potential memory leak for now. */
3251 disassembler_options
= concat (disassembler_options
, ",",
3252 optarg
, (const char *) NULL
);
3254 disassembler_options
= optarg
;
3260 display_file_offsets
= TRUE
;
3263 with_line_numbers
= TRUE
;
3272 enum demangling_styles style
;
3274 style
= cplus_demangle_name_to_style (optarg
);
3275 if (style
== unknown_demangling
)
3276 fatal (_("unknown demangling style `%s'"),
3279 cplus_demangle_set_style (style
);
3285 case OPTION_ADJUST_VMA
:
3286 adjust_section_vma
= parse_vma (optarg
, "--adjust-vma");
3288 case OPTION_START_ADDRESS
:
3289 start_address
= parse_vma (optarg
, "--start-address");
3290 if ((stop_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
3291 fatal (_("error: the start address should be before the end address"));
3293 case OPTION_STOP_ADDRESS
:
3294 stop_address
= parse_vma (optarg
, "--stop-address");
3295 if ((start_address
!= (bfd_vma
) -1) && stop_address
<= start_address
)
3296 fatal (_("error: the stop address should be after the start address"));
3300 prefix_length
= strlen (prefix
);
3301 /* Remove an unnecessary trailing '/' */
3302 while (IS_DIR_SEPARATOR (prefix
[prefix_length
- 1]))
3305 case OPTION_PREFIX_STRIP
:
3306 prefix_strip
= atoi (optarg
);
3307 if (prefix_strip
< 0)
3308 fatal (_("error: prefix strip must be non-negative"));
3310 case OPTION_INSN_WIDTH
:
3311 insn_width
= strtoul (optarg
, NULL
, 0);
3312 if (insn_width
<= 0)
3313 fatal (_("error: instruction width must be positive"));
3316 if (strcmp (optarg
, "B") == 0)
3317 endian
= BFD_ENDIAN_BIG
;
3318 else if (strcmp (optarg
, "L") == 0)
3319 endian
= BFD_ENDIAN_LITTLE
;
3322 non_fatal (_("unrecognized -E option"));
3327 if (strncmp (optarg
, "big", strlen (optarg
)) == 0)
3328 endian
= BFD_ENDIAN_BIG
;
3329 else if (strncmp (optarg
, "little", strlen (optarg
)) == 0)
3330 endian
= BFD_ENDIAN_LITTLE
;
3333 non_fatal (_("unrecognized --endian type `%s'"), optarg
);
3339 dump_file_header
= TRUE
;
3343 formats_info
= TRUE
;
3347 add_include_path (optarg
);
3350 dump_private_headers
= TRUE
;
3354 dump_private_headers
= TRUE
;
3356 dump_reloc_info
= TRUE
;
3357 dump_file_header
= TRUE
;
3358 dump_ar_hdrs
= TRUE
;
3359 dump_section_headers
= TRUE
;
3367 dump_dynamic_symtab
= TRUE
;
3375 disassemble_zeroes
= TRUE
;
3379 disassemble_all
= TRUE
;
3384 with_source_code
= TRUE
;
3393 dump_debugging_tags
= 1;
3398 dump_dwarf_section_info
= TRUE
;
3401 dwarf_select_sections_by_letters (optarg
);
3403 dwarf_select_sections_all ();
3406 dump_dwarf_section_info
= TRUE
;
3409 dwarf_select_sections_by_names (optarg
);
3411 dwarf_select_sections_all ();
3414 dump_stab_section_info
= TRUE
;
3418 dump_section_contents
= TRUE
;
3422 dump_reloc_info
= TRUE
;
3426 dump_dynamic_reloc_info
= TRUE
;
3430 dump_ar_hdrs
= TRUE
;
3434 dump_section_headers
= TRUE
;
3442 show_version
= TRUE
;
3452 print_version ("objdump");
3458 exit_status
= display_info ();
3462 display_file ("a.out", target
);
3464 for (; optind
< argc
;)
3465 display_file (argv
[optind
++], target
);
3470 END_PROGRESS (program_name
);