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, 2011
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. */
61 #include "safe-ctype.h"
63 #include "libiberty.h"
65 #include "filenames.h"
76 /* Internal headers for the ELF .stab-dump code - sorry. */
77 #define BYTES_IN_WORD 32
78 #include "aout/aout64.h"
81 static int exit_status = 0;
83 static char *default_target = NULL; /* Default at runtime. */
85 /* The following variables are set based on arguments passed on the
87 static int show_version = 0; /* Show the version number. */
88 static int dump_section_contents; /* -s */
89 static int dump_section_headers; /* -h */
90 static bfd_boolean dump_file_header; /* -f */
91 static int dump_symtab; /* -t */
92 static int dump_dynamic_symtab; /* -T */
93 static int dump_reloc_info; /* -r */
94 static int dump_dynamic_reloc_info; /* -R */
95 static int dump_ar_hdrs; /* -a */
96 static int dump_private_headers; /* -p */
97 static char *dump_private_options; /* -P */
98 static int prefix_addresses; /* --prefix-addresses */
99 static int with_line_numbers; /* -l */
100 static bfd_boolean with_source_code; /* -S */
101 static int show_raw_insn; /* --show-raw-insn */
102 static int dump_dwarf_section_info; /* --dwarf */
103 static int dump_stab_section_info; /* --stabs */
104 static int do_demangle; /* -C, --demangle */
105 static bfd_boolean disassemble; /* -d */
106 static bfd_boolean disassemble_all; /* -D */
107 static int disassemble_zeroes; /* --disassemble-zeroes */
108 static bfd_boolean formats_info; /* -i */
109 static int wide_output; /* -w */
110 static int insn_width; /* --insn-width */
111 static bfd_vma start_address = (bfd_vma) -1; /* --start-address */
112 static bfd_vma stop_address = (bfd_vma) -1; /* --stop-address */
113 static int dump_debugging; /* --debugging */
114 static int dump_debugging_tags; /* --debugging-tags */
115 static int suppress_bfd_header;
116 static int dump_special_syms = 0; /* --special-syms */
117 static bfd_vma adjust_section_vma = 0; /* --adjust-vma */
118 static int file_start_context = 0; /* --file-start-context */
119 static bfd_boolean display_file_offsets;/* -F */
120 static const char *prefix; /* --prefix */
121 static int prefix_strip; /* --prefix-strip */
122 static size_t prefix_length;
124 /* A structure to record the sections mentioned in -j switches. */
127 const char * name; /* The name of the section. */
128 bfd_boolean seen; /* A flag to indicate that the section has been found in one or more input files. */
129 struct only * next; /* Pointer to the next structure in the list. */
131 /* Pointer to an array of 'only' structures.
132 This pointer is NULL if the -j switch has not been used. */
133 static struct only * only_list = NULL;
135 /* Variables for handling include file path table. */
136 static const char **include_paths;
137 static int include_path_count;
139 /* Extra info to pass to the section disassembler and address printing
141 struct objdump_disasm_info
145 bfd_boolean require_sec;
146 arelent ** dynrelbuf;
148 disassembler_ftype disassemble_fn;
152 /* Architecture to disassemble for, or default if NULL. */
153 static char *machine = NULL;
155 /* Target specific options to the disassembler. */
156 static char *disassembler_options = NULL;
158 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
159 static enum bfd_endian endian = BFD_ENDIAN_UNKNOWN;
161 /* The symbol table. */
162 static asymbol **syms;
164 /* Number of symbols in `syms'. */
165 static long symcount = 0;
167 /* The sorted symbol table. */
168 static asymbol **sorted_syms;
170 /* Number of symbols in `sorted_syms'. */
171 static long sorted_symcount = 0;
173 /* The dynamic symbol table. */
174 static asymbol **dynsyms;
176 /* The synthetic symbol table. */
177 static asymbol *synthsyms;
178 static long synthcount = 0;
180 /* Number of symbols in `dynsyms'. */
181 static long dynsymcount = 0;
183 static bfd_byte *stabs;
184 static bfd_size_type stab_size;
187 static bfd_size_type stabstr_size;
189 static bfd_boolean is_relocatable = FALSE;
191 /* Handlers for -P/--private. */
192 static const struct objdump_private_desc * const objdump_private_vectors[] =
194 OBJDUMP_PRIVATE_VECTORS
199 usage (FILE *stream, int status)
201 fprintf (stream, _("Usage: %s <option(s)> <file(s)>\n"), program_name);
202 fprintf (stream, _(" Display information from object <file(s)>.\n"));
203 fprintf (stream, _(" At least one of the following switches must be given:\n"));
204 fprintf (stream, _("\
205 -a, --archive-headers Display archive header information\n\
206 -f, --file-headers Display the contents of the overall file header\n\
207 -p, --private-headers Display object format specific file header contents\n\
208 -P, --private=OPT,OPT... Display object format specific contents\n\
209 -h, --[section-]headers Display the contents of the section headers\n\
210 -x, --all-headers Display the contents of all headers\n\
211 -d, --disassemble Display assembler contents of executable sections\n\
212 -D, --disassemble-all Display assembler contents of all sections\n\
213 -S, --source Intermix source code with disassembly\n\
214 -s, --full-contents Display the full contents of all sections requested\n\
215 -g, --debugging Display debug information in object file\n\
216 -e, --debugging-tags Display debug information using ctags style\n\
217 -G, --stabs Display (in raw form) any STABS info in the file\n\
218 -W[lLiaprmfFsoRt] or\n\
219 --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
220 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
221 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges]\n\
222 Display DWARF info in the file\n\
223 -t, --syms Display the contents of the symbol table(s)\n\
224 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
225 -r, --reloc Display the relocation entries in the file\n\
226 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
227 @<file> Read options from <file>\n\
228 -v, --version Display this program's version number\n\
229 -i, --info List object formats and architectures supported\n\
230 -H, --help Display this information\n\
234 const struct objdump_private_desc * const *desc;
236 fprintf (stream, _("\n The following switches are optional:\n"));
237 fprintf (stream, _("\
238 -b, --target=BFDNAME Specify the target object format as BFDNAME\n\
239 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n\
240 -j, --section=NAME Only display information for section NAME\n\
241 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n\
242 -EB --endian=big Assume big endian format when disassembling\n\
243 -EL --endian=little Assume little endian format when disassembling\n\
244 --file-start-context Include context from start of file (with -S)\n\
245 -I, --include=DIR Add DIR to search list for source files\n\
246 -l, --line-numbers Include line numbers and filenames in output\n\
247 -F, --file-offsets Include file offsets when displaying information\n\
248 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
249 The STYLE, if specified, can be `auto', `gnu',\n\
250 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
252 -w, --wide Format output for more than 80 columns\n\
253 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
254 --start-address=ADDR Only process data whose address is >= ADDR\n\
255 --stop-address=ADDR Only process data whose address is <= ADDR\n\
256 --prefix-addresses Print complete address alongside disassembly\n\
257 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
258 --insn-width=WIDTH Display WIDTH bytes on a single line for -d\n\
259 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
260 --special-syms Include special symbols in symbol dumps\n\
261 --prefix=PREFIX Add PREFIX to absolute paths for -S\n\
262 --prefix-strip=LEVEL Strip initial directory names for -S\n"));
263 fprintf (stream, _("\
264 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
265 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
267 list_supported_targets (program_name, stream);
268 list_supported_architectures (program_name, stream);
270 disassembler_usage (stream);
272 if (objdump_private_vectors[0] != NULL)
275 _("\nOptions supported for -P/--private switch:\n"));
276 for (desc = objdump_private_vectors; *desc != NULL; desc++)
277 (*desc)->help (stream);
280 if (REPORT_BUGS_TO[0] && status == 0)
281 fprintf (stream, _("Report bugs to %s.\n"), REPORT_BUGS_TO);
285 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
289 OPTION_START_ADDRESS,
300 static struct option long_options[]=
302 {"adjust-vma", required_argument, NULL, OPTION_ADJUST_VMA},
303 {"all-headers", no_argument, NULL, 'x'},
304 {"private-headers", no_argument, NULL, 'p'},
305 {"private", required_argument, NULL, 'P'},
306 {"architecture", required_argument, NULL, 'm'},
307 {"archive-headers", no_argument, NULL, 'a'},
308 {"debugging", no_argument, NULL, 'g'},
309 {"debugging-tags", no_argument, NULL, 'e'},
310 {"demangle", optional_argument, NULL, 'C'},
311 {"disassemble", no_argument, NULL, 'd'},
312 {"disassemble-all", no_argument, NULL, 'D'},
313 {"disassembler-options", required_argument, NULL, 'M'},
314 {"disassemble-zeroes", no_argument, NULL, 'z'},
315 {"dynamic-reloc", no_argument, NULL, 'R'},
316 {"dynamic-syms", no_argument, NULL, 'T'},
317 {"endian", required_argument, NULL, OPTION_ENDIAN},
318 {"file-headers", no_argument, NULL, 'f'},
319 {"file-offsets", no_argument, NULL, 'F'},
320 {"file-start-context", no_argument, &file_start_context, 1},
321 {"full-contents", no_argument, NULL, 's'},
322 {"headers", no_argument, NULL, 'h'},
323 {"help", no_argument, NULL, 'H'},
324 {"info", no_argument, NULL, 'i'},
325 {"line-numbers", no_argument, NULL, 'l'},
326 {"no-show-raw-insn", no_argument, &show_raw_insn, -1},
327 {"prefix-addresses", no_argument, &prefix_addresses, 1},
328 {"reloc", no_argument, NULL, 'r'},
329 {"section", required_argument, NULL, 'j'},
330 {"section-headers", no_argument, NULL, 'h'},
331 {"show-raw-insn", no_argument, &show_raw_insn, 1},
332 {"source", no_argument, NULL, 'S'},
333 {"special-syms", no_argument, &dump_special_syms, 1},
334 {"include", required_argument, NULL, 'I'},
335 {"dwarf", optional_argument, NULL, OPTION_DWARF},
336 {"stabs", no_argument, NULL, 'G'},
337 {"start-address", required_argument, NULL, OPTION_START_ADDRESS},
338 {"stop-address", required_argument, NULL, OPTION_STOP_ADDRESS},
339 {"syms", no_argument, NULL, 't'},
340 {"target", required_argument, NULL, 'b'},
341 {"version", no_argument, NULL, 'V'},
342 {"wide", no_argument, NULL, 'w'},
343 {"prefix", required_argument, NULL, OPTION_PREFIX},
344 {"prefix-strip", required_argument, NULL, OPTION_PREFIX_STRIP},
345 {"insn-width", required_argument, NULL, OPTION_INSN_WIDTH},
346 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
347 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
348 {0, no_argument, 0, 0}
352 nonfatal (const char *msg)
358 /* Returns TRUE if the specified section should be dumped. */
361 process_section_p (asection * section)
365 if (only_list == NULL)
368 for (only = only_list; only; only = only->next)
369 if (strcmp (only->name, section->name) == 0)
378 /* Add an entry to the 'only' list. */
381 add_only (char * name)
385 /* First check to make sure that we do not
386 already have an entry for this name. */
387 for (only = only_list; only; only = only->next)
388 if (strcmp (only->name, name) == 0)
391 only = xmalloc (sizeof * only);
394 only->next = only_list;
398 /* Release the memory used by the 'only' list.
399 PR 11225: Issue a warning message for unseen sections.
400 Only do this if none of the sections were seen. This is mainly to support
401 tools like the GAS testsuite where an object file is dumped with a list of
402 generic section names known to be present in a range of different file
406 free_only_list (void)
408 bfd_boolean at_least_one_seen = FALSE;
412 if (only_list == NULL)
415 for (only = only_list; only; only = only->next)
418 at_least_one_seen = TRUE;
422 for (only = only_list; only; only = next)
424 if (! at_least_one_seen)
426 non_fatal (_("section '%s' mentioned in a -j option, "
427 "but not found in any input file"),
438 dump_section_header (bfd *abfd, asection *section,
439 void *ignored ATTRIBUTE_UNUSED)
442 unsigned int opb = bfd_octets_per_byte (abfd);
444 /* Ignore linker created section. See elfNN_ia64_object_p in
446 if (section->flags & SEC_LINKER_CREATED)
449 /* PR 10413: Skip sections that we are ignoring. */
450 if (! process_section_p (section))
453 printf ("%3d %-13s %08lx ", section->index,
454 bfd_get_section_name (abfd, section),
455 (unsigned long) bfd_section_size (abfd, section) / opb);
456 bfd_printf_vma (abfd, bfd_get_section_vma (abfd, section));
458 bfd_printf_vma (abfd, section->lma);
459 printf (" %08lx 2**%u", (unsigned long) section->filepos,
460 bfd_get_section_alignment (abfd, section));
466 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
468 PF (SEC_HAS_CONTENTS, "CONTENTS");
469 PF (SEC_ALLOC, "ALLOC");
470 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
471 PF (SEC_LOAD, "LOAD");
472 PF (SEC_RELOC, "RELOC");
473 PF (SEC_READONLY, "READONLY");
474 PF (SEC_CODE, "CODE");
475 PF (SEC_DATA, "DATA");
477 PF (SEC_DEBUGGING, "DEBUGGING");
478 PF (SEC_NEVER_LOAD, "NEVER_LOAD");
479 PF (SEC_EXCLUDE, "EXCLUDE");
480 PF (SEC_SORT_ENTRIES, "SORT_ENTRIES");
481 if (bfd_get_arch (abfd) == bfd_arch_tic54x)
483 PF (SEC_TIC54X_BLOCK, "BLOCK");
484 PF (SEC_TIC54X_CLINK, "CLINK");
486 PF (SEC_SMALL_DATA, "SMALL_DATA");
487 if (bfd_get_flavour (abfd) == bfd_target_coff_flavour)
488 PF (SEC_COFF_SHARED, "SHARED");
489 PF (SEC_THREAD_LOCAL, "THREAD_LOCAL");
490 PF (SEC_GROUP, "GROUP");
492 if ((section->flags & SEC_LINK_ONCE) != 0)
495 struct coff_comdat_info *comdat;
497 switch (section->flags & SEC_LINK_DUPLICATES)
501 case SEC_LINK_DUPLICATES_DISCARD:
502 ls = "LINK_ONCE_DISCARD";
504 case SEC_LINK_DUPLICATES_ONE_ONLY:
505 ls = "LINK_ONCE_ONE_ONLY";
507 case SEC_LINK_DUPLICATES_SAME_SIZE:
508 ls = "LINK_ONCE_SAME_SIZE";
510 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
511 ls = "LINK_ONCE_SAME_CONTENTS";
514 printf ("%s%s", comma, ls);
516 comdat = bfd_coff_get_comdat_section (abfd, section);
518 printf (" (COMDAT %s %ld)", comdat->name, comdat->symbol);
528 dump_headers (bfd *abfd)
530 printf (_("Sections:\n"));
533 printf (_("Idx Name Size VMA LMA File off Algn"));
535 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
536 if (bfd_get_arch_size (abfd) == 32)
537 printf (_("Idx Name Size VMA LMA File off Algn"));
539 printf (_("Idx Name Size VMA LMA File off Algn"));
543 printf (_(" Flags"));
546 bfd_map_over_sections (abfd, dump_section_header, NULL);
550 slurp_symtab (bfd *abfd)
555 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
561 storage = bfd_get_symtab_upper_bound (abfd);
563 bfd_fatal (bfd_get_filename (abfd));
565 sy = (asymbol **) xmalloc (storage);
567 symcount = bfd_canonicalize_symtab (abfd, sy);
569 bfd_fatal (bfd_get_filename (abfd));
573 /* Read in the dynamic symbols. */
576 slurp_dynamic_symtab (bfd *abfd)
581 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
584 if (!(bfd_get_file_flags (abfd) & DYNAMIC))
586 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd));
592 bfd_fatal (bfd_get_filename (abfd));
595 sy = (asymbol **) xmalloc (storage);
597 dynsymcount = bfd_canonicalize_dynamic_symtab (abfd, sy);
599 bfd_fatal (bfd_get_filename (abfd));
603 /* Filter out (in place) symbols that are useless for disassembly.
604 COUNT is the number of elements in SYMBOLS.
605 Return the number of useful symbols. */
608 remove_useless_symbols (asymbol **symbols, long count)
610 asymbol **in_ptr = symbols, **out_ptr = symbols;
614 asymbol *sym = *in_ptr++;
616 if (sym->name == NULL || sym->name[0] == '\0')
618 if (sym->flags & (BSF_DEBUGGING | BSF_SECTION_SYM))
620 if (bfd_is_und_section (sym->section)
621 || bfd_is_com_section (sym->section))
626 return out_ptr - symbols;
629 /* Sort symbols into value order. */
632 compare_symbols (const void *ap, const void *bp)
634 const asymbol *a = * (const asymbol **) ap;
635 const asymbol *b = * (const asymbol **) bp;
645 if (bfd_asymbol_value (a) > bfd_asymbol_value (b))
647 else if (bfd_asymbol_value (a) < bfd_asymbol_value (b))
650 if (a->section > b->section)
652 else if (a->section < b->section)
655 an = bfd_asymbol_name (a);
656 bn = bfd_asymbol_name (b);
660 /* The symbols gnu_compiled and gcc2_compiled convey no real
661 information, so put them after other symbols with the same value. */
662 af = (strstr (an, "gnu_compiled") != NULL
663 || strstr (an, "gcc2_compiled") != NULL);
664 bf = (strstr (bn, "gnu_compiled") != NULL
665 || strstr (bn, "gcc2_compiled") != NULL);
672 /* We use a heuristic for the file name, to try to sort it after
673 more useful symbols. It may not work on non Unix systems, but it
674 doesn't really matter; the only difference is precisely which
675 symbol names get printed. */
677 #define file_symbol(s, sn, snl) \
678 (((s)->flags & BSF_FILE) != 0 \
679 || ((sn)[(snl) - 2] == '.' \
680 && ((sn)[(snl) - 1] == 'o' \
681 || (sn)[(snl) - 1] == 'a')))
683 af = file_symbol (a, an, anl);
684 bf = file_symbol (b, bn, bnl);
691 /* Try to sort global symbols before local symbols before function
692 symbols before debugging symbols. */
697 if ((aflags & BSF_DEBUGGING) != (bflags & BSF_DEBUGGING))
699 if ((aflags & BSF_DEBUGGING) != 0)
704 if ((aflags & BSF_FUNCTION) != (bflags & BSF_FUNCTION))
706 if ((aflags & BSF_FUNCTION) != 0)
711 if ((aflags & BSF_LOCAL) != (bflags & BSF_LOCAL))
713 if ((aflags & BSF_LOCAL) != 0)
718 if ((aflags & BSF_GLOBAL) != (bflags & BSF_GLOBAL))
720 if ((aflags & BSF_GLOBAL) != 0)
726 /* Symbols that start with '.' might be section names, so sort them
727 after symbols that don't start with '.'. */
728 if (an[0] == '.' && bn[0] != '.')
730 if (an[0] != '.' && bn[0] == '.')
733 /* Finally, if we can't distinguish them in any other way, try to
734 get consistent results by sorting the symbols by name. */
735 return strcmp (an, bn);
738 /* Sort relocs into address order. */
741 compare_relocs (const void *ap, const void *bp)
743 const arelent *a = * (const arelent **) ap;
744 const arelent *b = * (const arelent **) bp;
746 if (a->address > b->address)
748 else if (a->address < b->address)
751 /* So that associated relocations tied to the same address show up
752 in the correct order, we don't do any further sorting. */
761 /* Print an address (VMA) to the output stream in INFO.
762 If SKIP_ZEROES is TRUE, omit leading zeroes. */
765 objdump_print_value (bfd_vma vma, struct disassemble_info *inf,
766 bfd_boolean skip_zeroes)
770 struct objdump_disasm_info *aux;
772 aux = (struct objdump_disasm_info *) inf->application_data;
773 bfd_sprintf_vma (aux->abfd, buf, vma);
778 for (p = buf; *p == '0'; ++p)
783 (*inf->fprintf_func) (inf->stream, "%s", p);
786 /* Print the name of a symbol. */
789 objdump_print_symname (bfd *abfd, struct disassemble_info *inf,
796 name = bfd_asymbol_name (sym);
797 if (do_demangle && name[0] != '\0')
799 /* Demangle the name. */
800 alloc = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
806 (*inf->fprintf_func) (inf->stream, "%s", name);
814 /* Locate a symbol given a bfd and a section (from INFO->application_data),
815 and a VMA. If INFO->application_data->require_sec is TRUE, then always
816 require the symbol to be in the section. Returns NULL if there is no
817 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
818 of the symbol in sorted_syms. */
821 find_symbol_for_address (bfd_vma vma,
822 struct disassemble_info *inf,
825 /* @@ Would it speed things up to cache the last two symbols returned,
826 and maybe their address ranges? For many processors, only one memory
827 operand can be present at a time, so the 2-entry cache wouldn't be
828 constantly churned by code doing heavy memory accesses. */
830 /* Indices in `sorted_syms'. */
832 long max_count = sorted_symcount;
834 struct objdump_disasm_info *aux;
838 bfd_boolean want_section;
840 if (sorted_symcount < 1)
843 aux = (struct objdump_disasm_info *) inf->application_data;
846 opb = inf->octets_per_byte;
848 /* Perform a binary search looking for the closest symbol to the
849 required value. We are searching the range (min, max_count]. */
850 while (min + 1 < max_count)
854 thisplace = (max_count + min) / 2;
855 sym = sorted_syms[thisplace];
857 if (bfd_asymbol_value (sym) > vma)
858 max_count = thisplace;
859 else if (bfd_asymbol_value (sym) < vma)
868 /* The symbol we want is now in min, the low end of the range we
869 were searching. If there are several symbols with the same
870 value, we want the first one. */
873 && (bfd_asymbol_value (sorted_syms[thisplace])
874 == bfd_asymbol_value (sorted_syms[thisplace - 1])))
877 /* Prefer a symbol in the current section if we have multple symbols
878 with the same value, as can occur with overlays or zero size
881 while (min < max_count
882 && (bfd_asymbol_value (sorted_syms[min])
883 == bfd_asymbol_value (sorted_syms[thisplace])))
885 if (sorted_syms[min]->section == sec
886 && inf->symbol_is_valid (sorted_syms[min], inf))
893 return sorted_syms[thisplace];
898 /* If the file is relocatable, and the symbol could be from this
899 section, prefer a symbol from this section over symbols from
900 others, even if the other symbol's value might be closer.
902 Note that this may be wrong for some symbol references if the
903 sections have overlapping memory ranges, but in that case there's
904 no way to tell what's desired without looking at the relocation
907 Also give the target a chance to reject symbols. */
908 want_section = (aux->require_sec
909 || ((abfd->flags & HAS_RELOC) != 0
910 && vma >= bfd_get_section_vma (abfd, sec)
911 && vma < (bfd_get_section_vma (abfd, sec)
912 + bfd_section_size (abfd, sec) / opb)));
913 if ((sorted_syms[thisplace]->section != sec && want_section)
914 || ! inf->symbol_is_valid (sorted_syms[thisplace], inf))
917 long newplace = sorted_symcount;
919 for (i = min - 1; i >= 0; i--)
921 if ((sorted_syms[i]->section == sec || !want_section)
922 && inf->symbol_is_valid (sorted_syms[i], inf))
924 if (newplace == sorted_symcount)
927 if (bfd_asymbol_value (sorted_syms[i])
928 != bfd_asymbol_value (sorted_syms[newplace]))
931 /* Remember this symbol and keep searching until we reach
932 an earlier address. */
937 if (newplace != sorted_symcount)
938 thisplace = newplace;
941 /* We didn't find a good symbol with a smaller value.
942 Look for one with a larger value. */
943 for (i = thisplace + 1; i < sorted_symcount; i++)
945 if ((sorted_syms[i]->section == sec || !want_section)
946 && inf->symbol_is_valid (sorted_syms[i], inf))
954 if ((sorted_syms[thisplace]->section != sec && want_section)
955 || ! inf->symbol_is_valid (sorted_syms[thisplace], inf))
956 /* There is no suitable symbol. */
963 return sorted_syms[thisplace];
966 /* Print an address and the offset to the nearest symbol. */
969 objdump_print_addr_with_sym (bfd *abfd, asection *sec, asymbol *sym,
970 bfd_vma vma, struct disassemble_info *inf,
971 bfd_boolean skip_zeroes)
973 objdump_print_value (vma, inf, skip_zeroes);
979 (*inf->fprintf_func) (inf->stream, " <%s",
980 bfd_get_section_name (abfd, sec));
981 secaddr = bfd_get_section_vma (abfd, sec);
984 (*inf->fprintf_func) (inf->stream, "-0x");
985 objdump_print_value (secaddr - vma, inf, TRUE);
987 else if (vma > secaddr)
989 (*inf->fprintf_func) (inf->stream, "+0x");
990 objdump_print_value (vma - secaddr, inf, TRUE);
992 (*inf->fprintf_func) (inf->stream, ">");
996 (*inf->fprintf_func) (inf->stream, " <");
997 objdump_print_symname (abfd, inf, sym);
998 if (bfd_asymbol_value (sym) > vma)
1000 (*inf->fprintf_func) (inf->stream, "-0x");
1001 objdump_print_value (bfd_asymbol_value (sym) - vma, inf, TRUE);
1003 else if (vma > bfd_asymbol_value (sym))
1005 (*inf->fprintf_func) (inf->stream, "+0x");
1006 objdump_print_value (vma - bfd_asymbol_value (sym), inf, TRUE);
1008 (*inf->fprintf_func) (inf->stream, ">");
1011 if (display_file_offsets)
1012 inf->fprintf_func (inf->stream, _(" (File Offset: 0x%lx)"),
1013 (long int)(sec->filepos + (vma - sec->vma)));
1016 /* Print an address (VMA), symbolically if possible.
1017 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
1020 objdump_print_addr (bfd_vma vma,
1021 struct disassemble_info *inf,
1022 bfd_boolean skip_zeroes)
1024 struct objdump_disasm_info *aux;
1025 asymbol *sym = NULL;
1026 bfd_boolean skip_find = FALSE;
1028 aux = (struct objdump_disasm_info *) inf->application_data;
1030 if (sorted_symcount < 1)
1032 (*inf->fprintf_func) (inf->stream, "0x");
1033 objdump_print_value (vma, inf, skip_zeroes);
1035 if (display_file_offsets)
1036 inf->fprintf_func (inf->stream, _(" (File Offset: 0x%lx)"),
1037 (long int)(aux->sec->filepos + (vma - aux->sec->vma)));
1041 if (aux->reloc != NULL
1042 && aux->reloc->sym_ptr_ptr != NULL
1043 && * aux->reloc->sym_ptr_ptr != NULL)
1045 sym = * aux->reloc->sym_ptr_ptr;
1047 /* Adjust the vma to the reloc. */
1048 vma += bfd_asymbol_value (sym);
1050 if (bfd_is_und_section (bfd_get_section (sym)))
1055 sym = find_symbol_for_address (vma, inf, NULL);
1057 objdump_print_addr_with_sym (aux->abfd, aux->sec, sym, vma, inf,
1061 /* Print VMA to INFO. This function is passed to the disassembler
1065 objdump_print_address (bfd_vma vma, struct disassemble_info *inf)
1067 objdump_print_addr (vma, inf, ! prefix_addresses);
1070 /* Determine if the given address has a symbol associated with it. */
1073 objdump_symbol_at_address (bfd_vma vma, struct disassemble_info * inf)
1077 sym = find_symbol_for_address (vma, inf, NULL);
1079 return (sym != NULL && (bfd_asymbol_value (sym) == vma));
1082 /* Hold the last function name and the last line number we displayed
1083 in a disassembly. */
1085 static char *prev_functionname;
1086 static unsigned int prev_line;
1088 /* We keep a list of all files that we have seen when doing a
1089 disassembly with source, so that we know how much of the file to
1090 display. This can be important for inlined functions. */
1092 struct print_file_list
1094 struct print_file_list *next;
1095 const char *filename;
1096 const char *modname;
1099 const char **linemap;
1105 static struct print_file_list *print_files;
1107 /* The number of preceding context lines to show when we start
1108 displaying a file for the first time. */
1110 #define SHOW_PRECEDING_CONTEXT_LINES (5)
1112 /* Read a complete file into memory. */
1115 slurp_file (const char *fn, size_t *size)
1118 int ps = getpagesize ();
1123 int fd = open (fn, O_RDONLY | O_BINARY);
1127 if (fstat (fd, &st) < 0)
1131 msize = (*size + ps - 1) & ~(ps - 1);
1132 map = mmap (NULL, msize, PROT_READ, MAP_SHARED, fd, 0);
1133 if (map != (char *)-1L)
1139 map = (const char *) malloc (*size);
1140 if (!map || (size_t) read (fd, (char *)map, *size) != *size)
1149 #define line_map_decrease 5
1151 /* Precompute array of lines for a mapped file. */
1153 static const char **
1154 index_file (const char *map, size_t size, unsigned int *maxline)
1156 const char *p, *lstart, *end;
1157 int chars_per_line = 45; /* First iteration will use 40. */
1158 unsigned int lineno;
1159 const char **linemap = NULL;
1160 unsigned long line_map_size = 0;
1166 for (p = map; p < end; p++)
1170 if (p + 1 < end && p[1] == '\r')
1173 else if (*p == '\r')
1175 if (p + 1 < end && p[1] == '\n')
1181 /* End of line found. */
1183 if (linemap == NULL || line_map_size < lineno + 1)
1185 unsigned long newsize;
1187 chars_per_line -= line_map_decrease;
1188 if (chars_per_line <= 1)
1190 line_map_size = size / chars_per_line + 1;
1191 if (line_map_size < lineno + 1)
1192 line_map_size = lineno + 1;
1193 newsize = line_map_size * sizeof (char *);
1194 linemap = (const char **) xrealloc (linemap, newsize);
1197 linemap[lineno++] = lstart;
1205 /* Tries to open MODNAME, and if successful adds a node to print_files
1206 linked list and returns that node. Returns NULL on failure. */
1208 static struct print_file_list *
1209 try_print_file_open (const char *origname, const char *modname)
1211 struct print_file_list *p;
1213 p = (struct print_file_list *) xmalloc (sizeof (struct print_file_list));
1215 p->map = slurp_file (modname, &p->mapsize);
1222 p->linemap = index_file (p->map, p->mapsize, &p->maxline);
1224 p->filename = origname;
1225 p->modname = modname;
1226 p->next = print_files;
1232 /* If the the source file, as described in the symtab, is not found
1233 try to locate it in one of the paths specified with -I
1234 If found, add location to print_files linked list. */
1236 static struct print_file_list *
1237 update_source_path (const char *filename)
1239 struct print_file_list *p;
1243 p = try_print_file_open (filename, filename);
1247 if (include_path_count == 0)
1250 /* Get the name of the file. */
1251 fname = lbasename (filename);
1253 /* If file exists under a new path, we need to add it to the list
1254 so that show_line knows about it. */
1255 for (i = 0; i < include_path_count; i++)
1257 char *modname = concat (include_paths[i], "/", fname, (const char *) 0);
1259 p = try_print_file_open (filename, modname);
1269 /* Print a source file line. */
1272 print_line (struct print_file_list *p, unsigned int linenum)
1278 if (linenum >= p->maxline)
1280 l = p->linemap [linenum];
1281 /* Test fwrite return value to quiet glibc warning. */
1282 len = strcspn (l, "\n\r");
1283 if (len == 0 || fwrite (l, len, 1, stdout) == 1)
1287 /* Print a range of source code lines. */
1290 dump_lines (struct print_file_list *p, unsigned int start, unsigned int end)
1294 while (start <= end)
1296 print_line (p, start);
1301 /* Show the line number, or the source line, in a disassembly
1305 show_line (bfd *abfd, asection *section, bfd_vma addr_offset)
1307 const char *filename;
1308 const char *functionname;
1309 unsigned int linenumber;
1312 if (! with_line_numbers && ! with_source_code)
1315 if (! bfd_find_nearest_line (abfd, section, syms, addr_offset, &filename,
1316 &functionname, &linenumber))
1319 if (filename != NULL && *filename == '\0')
1321 if (functionname != NULL && *functionname == '\0')
1322 functionname = NULL;
1325 && IS_ABSOLUTE_PATH (filename)
1329 const char *fname = filename;
1330 char *path = (char *) alloca (prefix_length + PATH_MAX + 1);
1333 memcpy (path, prefix, prefix_length);
1334 path_up = path + prefix_length;
1336 /* Build relocated filename, stripping off leading directories
1337 from the initial filename if requested. */
1338 if (prefix_strip > 0)
1343 /* Skip selected directory levels. */
1344 for (s = fname + 1; *s != '\0' && level < prefix_strip; s++)
1345 if (IS_DIR_SEPARATOR(*s))
1352 /* Update complete filename. */
1353 strncpy (path_up, fname, PATH_MAX);
1354 path_up[PATH_MAX] = '\0';
1362 if (with_line_numbers)
1364 if (functionname != NULL
1365 && (prev_functionname == NULL
1366 || strcmp (functionname, prev_functionname) != 0))
1367 printf ("%s():\n", functionname);
1368 if (linenumber > 0 && linenumber != prev_line)
1369 printf ("%s:%u\n", filename == NULL ? "???" : filename, linenumber);
1372 if (with_source_code
1376 struct print_file_list **pp, *p;
1379 for (pp = &print_files; *pp != NULL; pp = &(*pp)->next)
1380 if (filename_cmp ((*pp)->filename, filename) == 0)
1387 filename = xstrdup (filename);
1388 p = update_source_path (filename);
1391 if (p != NULL && linenumber != p->last_line)
1393 if (file_start_context && p->first)
1397 l = linenumber - SHOW_PRECEDING_CONTEXT_LINES;
1398 if (l >= linenumber)
1400 if (p->last_line >= l && p->last_line <= linenumber)
1401 l = p->last_line + 1;
1403 dump_lines (p, l, linenumber);
1404 p->last_line = linenumber;
1409 if (functionname != NULL
1410 && (prev_functionname == NULL
1411 || strcmp (functionname, prev_functionname) != 0))
1413 if (prev_functionname != NULL)
1414 free (prev_functionname);
1415 prev_functionname = (char *) xmalloc (strlen (functionname) + 1);
1416 strcpy (prev_functionname, functionname);
1419 if (linenumber > 0 && linenumber != prev_line)
1420 prev_line = linenumber;
1423 /* Pseudo FILE object for strings. */
1431 /* sprintf to a "stream". */
1433 static int ATTRIBUTE_PRINTF_2
1434 objdump_sprintf (SFILE *f, const char *format, ...)
1441 size_t space = f->alloc - f->pos;
1443 va_start (args, format);
1444 n = vsnprintf (f->buffer + f->pos, space, format, args);
1450 f->alloc = (f->alloc + n) * 2;
1451 f->buffer = (char *) xrealloc (f->buffer, f->alloc);
1458 /* The number of zeroes we want to see before we start skipping them.
1459 The number is arbitrarily chosen. */
1461 #define DEFAULT_SKIP_ZEROES 8
1463 /* The number of zeroes to skip at the end of a section. If the
1464 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1465 SKIP_ZEROES, they will be disassembled. If there are fewer than
1466 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1467 attempt to avoid disassembling zeroes inserted by section
1470 #define DEFAULT_SKIP_ZEROES_AT_END 3
1472 /* Disassemble some data in memory between given values. */
1475 disassemble_bytes (struct disassemble_info * inf,
1476 disassembler_ftype disassemble_fn,
1479 bfd_vma start_offset,
1480 bfd_vma stop_offset,
1483 arelent ** relppend)
1485 struct objdump_disasm_info *aux;
1487 int octets_per_line;
1488 int skip_addr_chars;
1489 bfd_vma addr_offset;
1490 unsigned int opb = inf->octets_per_byte;
1491 unsigned int skip_zeroes = inf->skip_zeroes;
1492 unsigned int skip_zeroes_at_end = inf->skip_zeroes_at_end;
1496 aux = (struct objdump_disasm_info *) inf->application_data;
1500 sfile.buffer = (char *) xmalloc (sfile.alloc);
1504 octets_per_line = insn_width;
1506 octets_per_line = 4;
1508 octets_per_line = 16;
1510 /* Figure out how many characters to skip at the start of an
1511 address, to make the disassembly look nicer. We discard leading
1512 zeroes in chunks of 4, ensuring that there is always a leading
1514 skip_addr_chars = 0;
1515 if (! prefix_addresses)
1519 bfd_sprintf_vma (aux->abfd, buf, section->vma + section->size / opb);
1521 while (buf[skip_addr_chars] == '0')
1524 /* Don't discard zeros on overflow. */
1525 if (buf[skip_addr_chars] == '\0' && section->vma != 0)
1526 skip_addr_chars = 0;
1528 if (skip_addr_chars != 0)
1529 skip_addr_chars = (skip_addr_chars - 1) & -4;
1532 inf->insn_info_valid = 0;
1534 addr_offset = start_offset;
1535 while (addr_offset < stop_offset)
1538 bfd_boolean need_nl = FALSE;
1539 int previous_octets;
1541 /* Remember the length of the previous instruction. */
1542 previous_octets = octets;
1545 /* Make sure we don't use relocs from previous instructions. */
1548 /* If we see more than SKIP_ZEROES octets of zeroes, we just
1550 for (z = addr_offset * opb; z < stop_offset * opb; z++)
1553 if (! disassemble_zeroes
1554 && (inf->insn_info_valid == 0
1555 || inf->branch_delay_insns == 0)
1556 && (z - addr_offset * opb >= skip_zeroes
1557 || (z == stop_offset * opb &&
1558 z - addr_offset * opb < skip_zeroes_at_end)))
1560 /* If there are more nonzero octets to follow, we only skip
1561 zeroes in multiples of 4, to try to avoid running over
1562 the start of an instruction which happens to start with
1564 if (z != stop_offset * opb)
1565 z = addr_offset * opb + ((z - addr_offset * opb) &~ 3);
1567 octets = z - addr_offset * opb;
1569 /* If we are going to display more data, and we are displaying
1570 file offsets, then tell the user how many zeroes we skip
1571 and the file offset from where we resume dumping. */
1572 if (display_file_offsets && ((addr_offset + (octets / opb)) < stop_offset))
1573 printf ("\t... (skipping %d zeroes, resuming at file offset: 0x%lx)\n",
1575 (unsigned long) (section->filepos
1576 + (addr_offset + (octets / opb))));
1586 if (with_line_numbers || with_source_code)
1587 show_line (aux->abfd, section, addr_offset);
1589 if (! prefix_addresses)
1593 bfd_sprintf_vma (aux->abfd, buf, section->vma + addr_offset);
1594 for (s = buf + skip_addr_chars; *s == '0'; s++)
1598 printf ("%s:\t", buf + skip_addr_chars);
1602 aux->require_sec = TRUE;
1603 objdump_print_address (section->vma + addr_offset, inf);
1604 aux->require_sec = FALSE;
1611 inf->fprintf_func = (fprintf_ftype) objdump_sprintf;
1612 inf->stream = &sfile;
1613 inf->bytes_per_line = 0;
1614 inf->bytes_per_chunk = 0;
1615 inf->flags = disassemble_all ? DISASSEMBLE_DATA : 0;
1617 inf->flags |= USER_SPECIFIED_MACHINE_TYPE;
1619 if (inf->disassembler_needs_relocs
1620 && (bfd_get_file_flags (aux->abfd) & EXEC_P) == 0
1621 && (bfd_get_file_flags (aux->abfd) & DYNAMIC) == 0
1622 && *relppp < relppend)
1624 bfd_signed_vma distance_to_rel;
1626 distance_to_rel = (**relppp)->address
1627 - (rel_offset + addr_offset);
1629 /* Check to see if the current reloc is associated with
1630 the instruction that we are about to disassemble. */
1631 if (distance_to_rel == 0
1632 /* FIXME: This is wrong. We are trying to catch
1633 relocs that are addressed part way through the
1634 current instruction, as might happen with a packed
1635 VLIW instruction. Unfortunately we do not know the
1636 length of the current instruction since we have not
1637 disassembled it yet. Instead we take a guess based
1638 upon the length of the previous instruction. The
1639 proper solution is to have a new target-specific
1640 disassembler function which just returns the length
1641 of an instruction at a given address without trying
1642 to display its disassembly. */
1643 || (distance_to_rel > 0
1644 && distance_to_rel < (bfd_signed_vma) (previous_octets/ opb)))
1646 inf->flags |= INSN_HAS_RELOC;
1647 aux->reloc = **relppp;
1651 octets = (*disassemble_fn) (section->vma + addr_offset, inf);
1652 inf->fprintf_func = (fprintf_ftype) fprintf;
1653 inf->stream = stdout;
1654 if (insn_width == 0 && inf->bytes_per_line != 0)
1655 octets_per_line = inf->bytes_per_line;
1656 if (octets < (int) opb)
1659 printf ("%s\n", sfile.buffer);
1662 non_fatal (_("disassemble_fn returned length %d"),
1673 octets = octets_per_line;
1674 if (addr_offset + octets / opb > stop_offset)
1675 octets = (stop_offset - addr_offset) * opb;
1677 for (j = addr_offset * opb; j < addr_offset * opb + octets; ++j)
1679 if (ISPRINT (data[j]))
1680 buf[j - addr_offset * opb] = data[j];
1682 buf[j - addr_offset * opb] = '.';
1684 buf[j - addr_offset * opb] = '\0';
1687 if (prefix_addresses
1689 : show_raw_insn >= 0)
1693 /* If ! prefix_addresses and ! wide_output, we print
1694 octets_per_line octets per line. */
1696 if (pb > octets_per_line && ! prefix_addresses && ! wide_output)
1697 pb = octets_per_line;
1699 if (inf->bytes_per_chunk)
1700 bpc = inf->bytes_per_chunk;
1704 for (j = addr_offset * opb; j < addr_offset * opb + pb; j += bpc)
1708 if (bpc > 1 && inf->display_endian == BFD_ENDIAN_LITTLE)
1710 for (k = bpc - 1; k >= 0; k--)
1711 printf ("%02x", (unsigned) data[j + k]);
1716 for (k = 0; k < bpc; k++)
1717 printf ("%02x", (unsigned) data[j + k]);
1722 for (; pb < octets_per_line; pb += bpc)
1726 for (k = 0; k < bpc; k++)
1731 /* Separate raw data from instruction by extra space. */
1741 printf ("%s", sfile.buffer);
1743 if (prefix_addresses
1745 : show_raw_insn >= 0)
1753 j = addr_offset * opb + pb;
1755 bfd_sprintf_vma (aux->abfd, buf, section->vma + j / opb);
1756 for (s = buf + skip_addr_chars; *s == '0'; s++)
1760 printf ("%s:\t", buf + skip_addr_chars);
1762 pb += octets_per_line;
1765 for (; j < addr_offset * opb + pb; j += bpc)
1769 if (bpc > 1 && inf->display_endian == BFD_ENDIAN_LITTLE)
1771 for (k = bpc - 1; k >= 0; k--)
1772 printf ("%02x", (unsigned) data[j + k]);
1777 for (k = 0; k < bpc; k++)
1778 printf ("%02x", (unsigned) data[j + k]);
1791 while ((*relppp) < relppend
1792 && (**relppp)->address < rel_offset + addr_offset + octets / opb)
1794 if (dump_reloc_info || dump_dynamic_reloc_info)
1805 objdump_print_value (section->vma - rel_offset + q->address,
1808 if (q->howto == NULL)
1809 printf (": *unknown*\t");
1810 else if (q->howto->name)
1811 printf (": %s\t", q->howto->name);
1813 printf (": %d\t", q->howto->type);
1815 if (q->sym_ptr_ptr == NULL || *q->sym_ptr_ptr == NULL)
1816 printf ("*unknown*");
1819 const char *sym_name;
1821 sym_name = bfd_asymbol_name (*q->sym_ptr_ptr);
1822 if (sym_name != NULL && *sym_name != '\0')
1823 objdump_print_symname (aux->abfd, inf, *q->sym_ptr_ptr);
1828 sym_sec = bfd_get_section (*q->sym_ptr_ptr);
1829 sym_name = bfd_get_section_name (aux->abfd, sym_sec);
1830 if (sym_name == NULL || *sym_name == '\0')
1831 sym_name = "*unknown*";
1832 printf ("%s", sym_name);
1839 objdump_print_value (q->addend, inf, TRUE);
1851 addr_offset += octets / opb;
1854 free (sfile.buffer);
1858 disassemble_section (bfd *abfd, asection *section, void *inf)
1860 const struct elf_backend_data * bed;
1861 bfd_vma sign_adjust = 0;
1862 struct disassemble_info * pinfo = (struct disassemble_info *) inf;
1863 struct objdump_disasm_info * paux;
1864 unsigned int opb = pinfo->octets_per_byte;
1865 bfd_byte * data = NULL;
1866 bfd_size_type datasize = 0;
1867 arelent ** rel_pp = NULL;
1868 arelent ** rel_ppstart = NULL;
1869 arelent ** rel_ppend;
1870 unsigned long stop_offset;
1871 asymbol * sym = NULL;
1875 unsigned long addr_offset;
1877 /* Sections that do not contain machine
1878 code are not normally disassembled. */
1879 if (! disassemble_all
1880 && only_list == NULL
1881 && ((section->flags & (SEC_CODE | SEC_HAS_CONTENTS))
1882 != (SEC_CODE | SEC_HAS_CONTENTS)))
1885 if (! process_section_p (section))
1888 datasize = bfd_get_section_size (section);
1892 /* Decide which set of relocs to use. Load them if necessary. */
1893 paux = (struct objdump_disasm_info *) pinfo->application_data;
1894 if (paux->dynrelbuf)
1896 rel_pp = paux->dynrelbuf;
1897 rel_count = paux->dynrelcount;
1898 /* Dynamic reloc addresses are absolute, non-dynamic are section
1899 relative. REL_OFFSET specifies the reloc address corresponding
1900 to the start of this section. */
1901 rel_offset = section->vma;
1909 if ((section->flags & SEC_RELOC) != 0
1910 && (dump_reloc_info || pinfo->disassembler_needs_relocs))
1914 relsize = bfd_get_reloc_upper_bound (abfd, section);
1916 bfd_fatal (bfd_get_filename (abfd));
1920 rel_ppstart = rel_pp = (arelent **) xmalloc (relsize);
1921 rel_count = bfd_canonicalize_reloc (abfd, section, rel_pp, syms);
1923 bfd_fatal (bfd_get_filename (abfd));
1925 /* Sort the relocs by address. */
1926 qsort (rel_pp, rel_count, sizeof (arelent *), compare_relocs);
1930 rel_ppend = rel_pp + rel_count;
1932 data = (bfd_byte *) xmalloc (datasize);
1934 bfd_get_section_contents (abfd, section, data, 0, datasize);
1936 paux->sec = section;
1937 pinfo->buffer = data;
1938 pinfo->buffer_vma = section->vma;
1939 pinfo->buffer_length = datasize;
1940 pinfo->section = section;
1942 if (start_address == (bfd_vma) -1
1943 || start_address < pinfo->buffer_vma)
1946 addr_offset = start_address - pinfo->buffer_vma;
1948 if (stop_address == (bfd_vma) -1)
1949 stop_offset = datasize / opb;
1952 if (stop_address < pinfo->buffer_vma)
1955 stop_offset = stop_address - pinfo->buffer_vma;
1956 if (stop_offset > pinfo->buffer_length / opb)
1957 stop_offset = pinfo->buffer_length / opb;
1960 /* Skip over the relocs belonging to addresses below the
1962 while (rel_pp < rel_ppend
1963 && (*rel_pp)->address < rel_offset + addr_offset)
1966 if (addr_offset < stop_offset)
1967 printf (_("\nDisassembly of section %s:\n"), section->name);
1969 /* Find the nearest symbol forwards from our current position. */
1970 paux->require_sec = TRUE;
1971 sym = (asymbol *) find_symbol_for_address (section->vma + addr_offset,
1972 (struct disassemble_info *) inf,
1974 paux->require_sec = FALSE;
1976 /* PR 9774: If the target used signed addresses then we must make
1977 sure that we sign extend the value that we calculate for 'addr'
1978 in the loop below. */
1979 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1980 && (bed = get_elf_backend_data (abfd)) != NULL
1981 && bed->sign_extend_vma)
1982 sign_adjust = (bfd_vma) 1 << (bed->s->arch_size - 1);
1984 /* Disassemble a block of instructions up to the address associated with
1985 the symbol we have just found. Then print the symbol and find the
1986 next symbol on. Repeat until we have disassembled the entire section
1987 or we have reached the end of the address range we are interested in. */
1988 while (addr_offset < stop_offset)
1992 unsigned long nextstop_offset;
1995 addr = section->vma + addr_offset;
1996 addr = ((addr & ((sign_adjust << 1) - 1)) ^ sign_adjust) - sign_adjust;
1998 if (sym != NULL && bfd_asymbol_value (sym) <= addr)
2003 (x < sorted_symcount
2004 && (bfd_asymbol_value (sorted_syms[x]) <= addr));
2008 pinfo->symbols = sorted_syms + place;
2009 pinfo->num_symbols = x - place;
2010 pinfo->symtab_pos = place;
2014 pinfo->symbols = NULL;
2015 pinfo->num_symbols = 0;
2016 pinfo->symtab_pos = -1;
2019 if (! prefix_addresses)
2021 pinfo->fprintf_func (pinfo->stream, "\n");
2022 objdump_print_addr_with_sym (abfd, section, sym, addr,
2024 pinfo->fprintf_func (pinfo->stream, ":\n");
2027 if (sym != NULL && bfd_asymbol_value (sym) > addr)
2029 else if (sym == NULL)
2033 #define is_valid_next_sym(SYM) \
2034 ((SYM)->section == section \
2035 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
2036 && pinfo->symbol_is_valid (SYM, pinfo))
2038 /* Search forward for the next appropriate symbol in
2039 SECTION. Note that all the symbols are sorted
2040 together into one big array, and that some sections
2041 may have overlapping addresses. */
2042 while (place < sorted_symcount
2043 && ! is_valid_next_sym (sorted_syms [place]))
2046 if (place >= sorted_symcount)
2049 nextsym = sorted_syms[place];
2052 if (sym != NULL && bfd_asymbol_value (sym) > addr)
2053 nextstop_offset = bfd_asymbol_value (sym) - section->vma;
2054 else if (nextsym == NULL)
2055 nextstop_offset = stop_offset;
2057 nextstop_offset = bfd_asymbol_value (nextsym) - section->vma;
2059 if (nextstop_offset > stop_offset
2060 || nextstop_offset <= addr_offset)
2061 nextstop_offset = stop_offset;
2063 /* If a symbol is explicitly marked as being an object
2064 rather than a function, just dump the bytes without
2065 disassembling them. */
2068 || sym->section != section
2069 || bfd_asymbol_value (sym) > addr
2070 || ((sym->flags & BSF_OBJECT) == 0
2071 && (strstr (bfd_asymbol_name (sym), "gnu_compiled")
2073 && (strstr (bfd_asymbol_name (sym), "gcc2_compiled")
2075 || (sym->flags & BSF_FUNCTION) != 0)
2080 disassemble_bytes (pinfo, paux->disassemble_fn, insns, data,
2081 addr_offset, nextstop_offset,
2082 rel_offset, &rel_pp, rel_ppend);
2084 addr_offset = nextstop_offset;
2090 if (rel_ppstart != NULL)
2094 /* Disassemble the contents of an object file. */
2097 disassemble_data (bfd *abfd)
2099 struct disassemble_info disasm_info;
2100 struct objdump_disasm_info aux;
2104 prev_functionname = NULL;
2107 /* We make a copy of syms to sort. We don't want to sort syms
2108 because that will screw up the relocs. */
2109 sorted_symcount = symcount ? symcount : dynsymcount;
2110 sorted_syms = (asymbol **) xmalloc ((sorted_symcount + synthcount)
2111 * sizeof (asymbol *));
2112 memcpy (sorted_syms, symcount ? syms : dynsyms,
2113 sorted_symcount * sizeof (asymbol *));
2115 sorted_symcount = remove_useless_symbols (sorted_syms, sorted_symcount);
2117 for (i = 0; i < synthcount; ++i)
2119 sorted_syms[sorted_symcount] = synthsyms + i;
2123 /* Sort the symbols into section and symbol order. */
2124 qsort (sorted_syms, sorted_symcount, sizeof (asymbol *), compare_symbols);
2126 init_disassemble_info (&disasm_info, stdout, (fprintf_ftype) fprintf);
2128 disasm_info.application_data = (void *) &aux;
2130 aux.require_sec = FALSE;
2131 aux.dynrelbuf = NULL;
2132 aux.dynrelcount = 0;
2135 disasm_info.print_address_func = objdump_print_address;
2136 disasm_info.symbol_at_address_func = objdump_symbol_at_address;
2138 if (machine != NULL)
2140 const bfd_arch_info_type *inf = bfd_scan_arch (machine);
2143 fatal (_("can't use supplied machine %s"), machine);
2145 abfd->arch_info = inf;
2148 if (endian != BFD_ENDIAN_UNKNOWN)
2150 struct bfd_target *xvec;
2152 xvec = (struct bfd_target *) xmalloc (sizeof (struct bfd_target));
2153 memcpy (xvec, abfd->xvec, sizeof (struct bfd_target));
2154 xvec->byteorder = endian;
2158 /* Use libopcodes to locate a suitable disassembler. */
2159 aux.disassemble_fn = disassembler (abfd);
2160 if (!aux.disassemble_fn)
2162 non_fatal (_("can't disassemble for architecture %s\n"),
2163 bfd_printable_arch_mach (bfd_get_arch (abfd), 0));
2168 disasm_info.flavour = bfd_get_flavour (abfd);
2169 disasm_info.arch = bfd_get_arch (abfd);
2170 disasm_info.mach = bfd_get_mach (abfd);
2171 disasm_info.disassembler_options = disassembler_options;
2172 disasm_info.octets_per_byte = bfd_octets_per_byte (abfd);
2173 disasm_info.skip_zeroes = DEFAULT_SKIP_ZEROES;
2174 disasm_info.skip_zeroes_at_end = DEFAULT_SKIP_ZEROES_AT_END;
2175 disasm_info.disassembler_needs_relocs = FALSE;
2177 if (bfd_big_endian (abfd))
2178 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_BIG;
2179 else if (bfd_little_endian (abfd))
2180 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_LITTLE;
2182 /* ??? Aborting here seems too drastic. We could default to big or little
2184 disasm_info.endian = BFD_ENDIAN_UNKNOWN;
2186 /* Allow the target to customize the info structure. */
2187 disassemble_init_for_target (& disasm_info);
2189 /* Pre-load the dynamic relocs if we are going
2190 to be dumping them along with the disassembly. */
2191 if (dump_dynamic_reloc_info)
2193 long relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
2196 bfd_fatal (bfd_get_filename (abfd));
2200 aux.dynrelbuf = (arelent **) xmalloc (relsize);
2201 aux.dynrelcount = bfd_canonicalize_dynamic_reloc (abfd,
2204 if (aux.dynrelcount < 0)
2205 bfd_fatal (bfd_get_filename (abfd));
2207 /* Sort the relocs by address. */
2208 qsort (aux.dynrelbuf, aux.dynrelcount, sizeof (arelent *),
2212 disasm_info.symtab = sorted_syms;
2213 disasm_info.symtab_size = sorted_symcount;
2215 bfd_map_over_sections (abfd, disassemble_section, & disasm_info);
2217 if (aux.dynrelbuf != NULL)
2218 free (aux.dynrelbuf);
2223 load_specific_debug_section (enum dwarf_section_display_enum debug,
2224 asection *sec, void *file)
2226 struct dwarf_section *section = &debug_displays [debug].section;
2227 bfd *abfd = (bfd *) file;
2230 /* If it is already loaded, do nothing. */
2231 if (section->start != NULL)
2234 section->address = 0;
2235 section->size = bfd_get_section_size (sec);
2236 section->start = NULL;
2237 ret = bfd_get_full_section_contents (abfd, sec, §ion->start);
2241 free_debug_section (debug);
2242 printf (_("\nCan't get contents for section '%s'.\n"),
2247 if (is_relocatable && debug_displays [debug].relocate)
2249 /* We want to relocate the data we've already read (and
2250 decompressed), so we store a pointer to the data in
2251 the bfd_section, and tell it that the contents are
2252 already in memory. */
2253 sec->contents = section->start;
2254 sec->flags |= SEC_IN_MEMORY;
2255 sec->size = section->size;
2257 ret = bfd_simple_get_relocated_section_contents (abfd,
2264 free_debug_section (debug);
2265 printf (_("\nCan't get contents for section '%s'.\n"),
2275 load_debug_section (enum dwarf_section_display_enum debug, void *file)
2277 struct dwarf_section *section = &debug_displays [debug].section;
2278 bfd *abfd = (bfd *) file;
2281 /* If it is already loaded, do nothing. */
2282 if (section->start != NULL)
2285 /* Locate the debug section. */
2286 sec = bfd_get_section_by_name (abfd, section->uncompressed_name);
2288 section->name = section->uncompressed_name;
2291 sec = bfd_get_section_by_name (abfd, section->compressed_name);
2293 section->name = section->compressed_name;
2298 return load_specific_debug_section (debug, sec, file);
2302 free_debug_section (enum dwarf_section_display_enum debug)
2304 struct dwarf_section *section = &debug_displays [debug].section;
2306 if (section->start == NULL)
2309 free ((char *) section->start);
2310 section->start = NULL;
2311 section->address = 0;
2316 dump_dwarf_section (bfd *abfd, asection *section,
2317 void *arg ATTRIBUTE_UNUSED)
2319 const char *name = bfd_get_section_name (abfd, section);
2323 if (CONST_STRNEQ (name, ".gnu.linkonce.wi."))
2324 match = ".debug_info";
2328 for (i = 0; i < max; i++)
2329 if ((strcmp (debug_displays [i].section.uncompressed_name, match) == 0
2330 || strcmp (debug_displays [i].section.compressed_name, match) == 0)
2331 && debug_displays [i].enabled != NULL
2332 && *debug_displays [i].enabled)
2334 struct dwarf_section *sec = &debug_displays [i].section;
2336 if (strcmp (sec->uncompressed_name, match) == 0)
2337 sec->name = sec->uncompressed_name;
2339 sec->name = sec->compressed_name;
2340 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
2343 debug_displays [i].display (sec, abfd);
2345 if (i != info && i != abbrev)
2346 free_debug_section ((enum dwarf_section_display_enum) i);
2352 /* Dump the dwarf debugging information. */
2355 dump_dwarf (bfd *abfd)
2357 is_relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
2359 eh_addr_size = bfd_arch_bits_per_address (abfd) / 8;
2361 if (bfd_big_endian (abfd))
2362 byte_get = byte_get_big_endian;
2363 else if (bfd_little_endian (abfd))
2364 byte_get = byte_get_little_endian;
2368 switch (bfd_get_arch (abfd))
2371 switch (bfd_get_mach (abfd))
2373 case bfd_mach_x86_64:
2374 case bfd_mach_x86_64_intel_syntax:
2375 init_dwarf_regnames_x86_64 ();
2379 init_dwarf_regnames_i386 ();
2388 bfd_map_over_sections (abfd, dump_dwarf_section, NULL);
2390 free_debug_memory ();
2393 /* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
2394 it. Return NULL on failure. */
2397 read_section_stabs (bfd *abfd, const char *sect_name, bfd_size_type *size_ptr)
2403 stabsect = bfd_get_section_by_name (abfd, sect_name);
2404 if (stabsect == NULL)
2406 printf (_("No %s section present\n\n"), sect_name);
2410 size = bfd_section_size (abfd, stabsect);
2411 contents = (char *) xmalloc (size);
2413 if (! bfd_get_section_contents (abfd, stabsect, contents, 0, size))
2415 non_fatal (_("reading %s section of %s failed: %s"),
2416 sect_name, bfd_get_filename (abfd),
2417 bfd_errmsg (bfd_get_error ()));
2428 /* Stabs entries use a 12 byte format:
2429 4 byte string table index
2431 1 byte stab other field
2432 2 byte stab desc field
2434 FIXME: This will have to change for a 64 bit object format. */
2436 #define STRDXOFF (0)
2438 #define OTHEROFF (5)
2441 #define STABSIZE (12)
2443 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2444 using string table section STRSECT_NAME (in `strtab'). */
2447 print_section_stabs (bfd *abfd,
2448 const char *stabsect_name,
2449 unsigned *string_offset_ptr)
2452 unsigned file_string_table_offset = 0;
2453 unsigned next_file_string_table_offset = *string_offset_ptr;
2454 bfd_byte *stabp, *stabs_end;
2457 stabs_end = stabp + stab_size;
2459 printf (_("Contents of %s section:\n\n"), stabsect_name);
2460 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2462 /* Loop through all symbols and print them.
2464 We start the index at -1 because there is a dummy symbol on
2465 the front of stabs-in-{coff,elf} sections that supplies sizes. */
2466 for (i = -1; stabp < stabs_end; stabp += STABSIZE, i++)
2470 unsigned char type, other;
2471 unsigned short desc;
2474 strx = bfd_h_get_32 (abfd, stabp + STRDXOFF);
2475 type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
2476 other = bfd_h_get_8 (abfd, stabp + OTHEROFF);
2477 desc = bfd_h_get_16 (abfd, stabp + DESCOFF);
2478 value = bfd_h_get_32 (abfd, stabp + VALOFF);
2480 printf ("\n%-6d ", i);
2481 /* Either print the stab name, or, if unnamed, print its number
2482 again (makes consistent formatting for tools like awk). */
2483 name = bfd_get_stab_name (type);
2485 printf ("%-6s", name);
2486 else if (type == N_UNDF)
2489 printf ("%-6d", type);
2490 printf (" %-6d %-6d ", other, desc);
2491 bfd_printf_vma (abfd, value);
2492 printf (" %-6lu", strx);
2494 /* Symbols with type == 0 (N_UNDF) specify the length of the
2495 string table associated with this file. We use that info
2496 to know how to relocate the *next* file's string table indices. */
2499 file_string_table_offset = next_file_string_table_offset;
2500 next_file_string_table_offset += value;
2504 /* Using the (possibly updated) string table offset, print the
2505 string (if any) associated with this symbol. */
2506 if ((strx + file_string_table_offset) < stabstr_size)
2507 printf (" %s", &strtab[strx + file_string_table_offset]);
2513 *string_offset_ptr = next_file_string_table_offset;
2518 const char * section_name;
2519 const char * string_section_name;
2520 unsigned string_offset;
2525 find_stabs_section (bfd *abfd, asection *section, void *names)
2528 stab_section_names * sought = (stab_section_names *) names;
2530 /* Check for section names for which stabsect_name is a prefix, to
2531 handle .stab.N, etc. */
2532 len = strlen (sought->section_name);
2534 /* If the prefix matches, and the files section name ends with a
2535 nul or a digit, then we match. I.e., we want either an exact
2536 match or a section followed by a number. */
2537 if (strncmp (sought->section_name, section->name, len) == 0
2538 && (section->name[len] == 0
2539 || (section->name[len] == '.' && ISDIGIT (section->name[len + 1]))))
2542 strtab = read_section_stabs (abfd, sought->string_section_name,
2547 stabs = (bfd_byte *) read_section_stabs (abfd, section->name,
2550 print_section_stabs (abfd, section->name, &sought->string_offset);
2556 dump_stabs_section (bfd *abfd, char *stabsect_name, char *strsect_name)
2558 stab_section_names s;
2560 s.section_name = stabsect_name;
2561 s.string_section_name = strsect_name;
2562 s.string_offset = 0;
2564 bfd_map_over_sections (abfd, find_stabs_section, & s);
2570 /* Dump the any sections containing stabs debugging information. */
2573 dump_stabs (bfd *abfd)
2575 dump_stabs_section (abfd, ".stab", ".stabstr");
2576 dump_stabs_section (abfd, ".stab.excl", ".stab.exclstr");
2577 dump_stabs_section (abfd, ".stab.index", ".stab.indexstr");
2580 dump_stabs_section (abfd, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
2582 dump_stabs_section (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2586 dump_bfd_header (bfd *abfd)
2590 printf (_("architecture: %s, "),
2591 bfd_printable_arch_mach (bfd_get_arch (abfd),
2592 bfd_get_mach (abfd)));
2593 printf (_("flags 0x%08x:\n"), abfd->flags & ~BFD_FLAGS_FOR_BFD_USE_MASK);
2595 #define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
2596 PF (HAS_RELOC, "HAS_RELOC");
2597 PF (EXEC_P, "EXEC_P");
2598 PF (HAS_LINENO, "HAS_LINENO");
2599 PF (HAS_DEBUG, "HAS_DEBUG");
2600 PF (HAS_SYMS, "HAS_SYMS");
2601 PF (HAS_LOCALS, "HAS_LOCALS");
2602 PF (DYNAMIC, "DYNAMIC");
2603 PF (WP_TEXT, "WP_TEXT");
2604 PF (D_PAGED, "D_PAGED");
2605 PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE");
2606 PF (HAS_LOAD_PAGE, "HAS_LOAD_PAGE");
2607 printf (_("\nstart address 0x"));
2608 bfd_printf_vma (abfd, abfd->start_address);
2614 dump_bfd_private_header (bfd *abfd)
2616 bfd_print_private_bfd_data (abfd, stdout);
2620 dump_target_specific (bfd *abfd)
2622 const struct objdump_private_desc * const *desc;
2623 struct objdump_private_option *opt;
2626 /* Find the desc. */
2627 for (desc = objdump_private_vectors; *desc != NULL; desc++)
2628 if ((*desc)->filter (abfd))
2633 non_fatal (_("option -P/--private not supported by this file"));
2637 /* Clear all options. */
2638 for (opt = (*desc)->options; opt->name; opt++)
2639 opt->selected = FALSE;
2641 /* Decode options. */
2642 b = dump_private_options;
2645 e = strchr (b, ',');
2650 for (opt = (*desc)->options; opt->name; opt++)
2651 if (strcmp (opt->name, b) == 0)
2653 opt->selected = TRUE;
2656 if (opt->name == NULL)
2657 non_fatal (_("target specific dump '%s' not supported"), b);
2668 (*desc)->dump (abfd);
2671 /* Display a section in hexadecimal format with associated characters.
2672 Each line prefixed by the zero padded address. */
2675 dump_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNUSED)
2678 bfd_size_type datasize;
2679 bfd_size_type addr_offset;
2680 bfd_size_type start_offset;
2681 bfd_size_type stop_offset;
2682 unsigned int opb = bfd_octets_per_byte (abfd);
2683 /* Bytes per line. */
2684 const int onaline = 16;
2689 if ((section->flags & SEC_HAS_CONTENTS) == 0)
2692 if (! process_section_p (section))
2695 if ((datasize = bfd_section_size (abfd, section)) == 0)
2698 /* Compute the address range to display. */
2699 if (start_address == (bfd_vma) -1
2700 || start_address < section->vma)
2703 start_offset = start_address - section->vma;
2705 if (stop_address == (bfd_vma) -1)
2706 stop_offset = datasize / opb;
2709 if (stop_address < section->vma)
2712 stop_offset = stop_address - section->vma;
2714 if (stop_offset > datasize / opb)
2715 stop_offset = datasize / opb;
2718 if (start_offset >= stop_offset)
2721 printf (_("Contents of section %s:"), section->name);
2722 if (display_file_offsets)
2723 printf (_(" (Starting at file offset: 0x%lx)"),
2724 (unsigned long) (section->filepos + start_offset));
2727 if (!bfd_get_full_section_contents (abfd, section, &data))
2729 non_fatal (_("Reading section failed"));
2735 bfd_sprintf_vma (abfd, buf, start_offset + section->vma);
2736 if (strlen (buf) >= sizeof (buf))
2740 while (buf[count] == '0' && buf[count+1] != '\0')
2742 count = strlen (buf) - count;
2746 bfd_sprintf_vma (abfd, buf, stop_offset + section->vma - 1);
2747 if (strlen (buf) >= sizeof (buf))
2751 while (buf[count] == '0' && buf[count+1] != '\0')
2753 count = strlen (buf) - count;
2757 for (addr_offset = start_offset;
2758 addr_offset < stop_offset; addr_offset += onaline / opb)
2762 bfd_sprintf_vma (abfd, buf, (addr_offset + section->vma));
2763 count = strlen (buf);
2764 if ((size_t) count >= sizeof (buf))
2768 while (count < width)
2773 fputs (buf + count - width, stdout);
2776 for (j = addr_offset * opb;
2777 j < addr_offset * opb + onaline; j++)
2779 if (j < stop_offset * opb)
2780 printf ("%02x", (unsigned) (data[j]));
2788 for (j = addr_offset * opb;
2789 j < addr_offset * opb + onaline; j++)
2791 if (j >= stop_offset * opb)
2794 printf ("%c", ISPRINT (data[j]) ? data[j] : '.');
2801 /* Actually display the various requested regions. */
2804 dump_data (bfd *abfd)
2806 bfd_map_over_sections (abfd, dump_section, NULL);
2809 /* Should perhaps share code and display with nm? */
2812 dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic)
2821 max_count = dynsymcount;
2822 printf ("DYNAMIC SYMBOL TABLE:\n");
2827 max_count = symcount;
2828 printf ("SYMBOL TABLE:\n");
2832 printf (_("no symbols\n"));
2834 for (count = 0; count < max_count; count++)
2838 if (*current == NULL)
2839 printf (_("no information for symbol number %ld\n"), count);
2841 else if ((cur_bfd = bfd_asymbol_bfd (*current)) == NULL)
2842 printf (_("could not determine the type of symbol number %ld\n"),
2845 else if (process_section_p ((* current)->section)
2846 && (dump_special_syms
2847 || !bfd_is_target_special_symbol (cur_bfd, *current)))
2849 const char *name = (*current)->name;
2851 if (do_demangle && name != NULL && *name != '\0')
2855 /* If we want to demangle the name, we demangle it
2856 here, and temporarily clobber it while calling
2857 bfd_print_symbol. FIXME: This is a gross hack. */
2858 alloc = bfd_demangle (cur_bfd, name, DMGL_ANSI | DMGL_PARAMS);
2860 (*current)->name = alloc;
2861 bfd_print_symbol (cur_bfd, stdout, *current,
2862 bfd_print_symbol_all);
2865 (*current)->name = name;
2870 bfd_print_symbol (cur_bfd, stdout, *current,
2871 bfd_print_symbol_all);
2881 dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount)
2884 char *last_filename, *last_functionname;
2885 unsigned int last_line;
2887 /* Get column headers lined up reasonably. */
2895 bfd_sprintf_vma (abfd, buf, (bfd_vma) -1);
2896 width = strlen (buf) - 7;
2898 printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
2901 last_filename = NULL;
2902 last_functionname = NULL;
2905 for (p = relpp; relcount && *p != NULL; p++, relcount--)
2908 const char *filename, *functionname;
2909 unsigned int linenumber;
2910 const char *sym_name;
2911 const char *section_name;
2912 bfd_vma addend2 = 0;
2914 if (start_address != (bfd_vma) -1
2915 && q->address < start_address)
2917 if (stop_address != (bfd_vma) -1
2918 && q->address > stop_address)
2921 if (with_line_numbers
2923 && bfd_find_nearest_line (abfd, sec, syms, q->address,
2924 &filename, &functionname, &linenumber))
2926 if (functionname != NULL
2927 && (last_functionname == NULL
2928 || strcmp (functionname, last_functionname) != 0))
2930 printf ("%s():\n", functionname);
2931 if (last_functionname != NULL)
2932 free (last_functionname);
2933 last_functionname = xstrdup (functionname);
2937 && (linenumber != last_line
2938 || (filename != NULL
2939 && last_filename != NULL
2940 && filename_cmp (filename, last_filename) != 0)))
2942 printf ("%s:%u\n", filename == NULL ? "???" : filename, linenumber);
2943 last_line = linenumber;
2944 if (last_filename != NULL)
2945 free (last_filename);
2946 if (filename == NULL)
2947 last_filename = NULL;
2949 last_filename = xstrdup (filename);
2953 if (q->sym_ptr_ptr && *q->sym_ptr_ptr)
2955 sym_name = (*(q->sym_ptr_ptr))->name;
2956 section_name = (*(q->sym_ptr_ptr))->section->name;
2961 section_name = NULL;
2964 bfd_printf_vma (abfd, q->address);
2965 if (q->howto == NULL)
2966 printf (" *unknown* ");
2967 else if (q->howto->name)
2969 const char *name = q->howto->name;
2971 /* R_SPARC_OLO10 relocations contain two addends.
2972 But because 'arelent' lacks enough storage to
2973 store them both, the 64-bit ELF Sparc backend
2974 records this as two relocations. One R_SPARC_LO10
2975 and one R_SPARC_13, both pointing to the same
2976 address. This is merely so that we have some
2977 place to store both addend fields.
2979 Undo this transformation, otherwise the output
2980 will be confusing. */
2981 if (abfd->xvec->flavour == bfd_target_elf_flavour
2982 && elf_tdata(abfd)->elf_header->e_machine == EM_SPARCV9
2984 && !strcmp (q->howto->name, "R_SPARC_LO10"))
2986 arelent *q2 = *(p + 1);
2989 && q->address == q2->address
2990 && !strcmp (q2->howto->name, "R_SPARC_13"))
2992 name = "R_SPARC_OLO10";
2993 addend2 = q2->addend;
2997 printf (" %-16s ", name);
3000 printf (" %-16d ", q->howto->type);
3004 objdump_print_symname (abfd, NULL, *q->sym_ptr_ptr);
3008 if (section_name == NULL)
3009 section_name = "*unknown*";
3010 printf ("[%s]", section_name);
3016 bfd_printf_vma (abfd, q->addend);
3021 bfd_printf_vma (abfd, addend2);
3027 if (last_filename != NULL)
3028 free (last_filename);
3029 if (last_functionname != NULL)
3030 free (last_functionname);
3034 dump_relocs_in_section (bfd *abfd,
3036 void *dummy ATTRIBUTE_UNUSED)
3042 if ( bfd_is_abs_section (section)
3043 || bfd_is_und_section (section)
3044 || bfd_is_com_section (section)
3045 || (! process_section_p (section))
3046 || ((section->flags & SEC_RELOC) == 0))
3049 relsize = bfd_get_reloc_upper_bound (abfd, section);
3051 bfd_fatal (bfd_get_filename (abfd));
3053 printf ("RELOCATION RECORDS FOR [%s]:", section->name);
3057 printf (" (none)\n\n");
3061 relpp = (arelent **) xmalloc (relsize);
3062 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms);
3065 bfd_fatal (bfd_get_filename (abfd));
3066 else if (relcount == 0)
3067 printf (" (none)\n\n");
3071 dump_reloc_set (abfd, section, relpp, relcount);
3078 dump_relocs (bfd *abfd)
3080 bfd_map_over_sections (abfd, dump_relocs_in_section, NULL);
3084 dump_dynamic_relocs (bfd *abfd)
3090 relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
3092 bfd_fatal (bfd_get_filename (abfd));
3094 printf ("DYNAMIC RELOCATION RECORDS");
3097 printf (" (none)\n\n");
3100 relpp = (arelent **) xmalloc (relsize);
3101 relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms);
3104 bfd_fatal (bfd_get_filename (abfd));
3105 else if (relcount == 0)
3106 printf (" (none)\n\n");
3110 dump_reloc_set (abfd, NULL, relpp, relcount);
3117 /* Creates a table of paths, to search for source files. */
3120 add_include_path (const char *path)
3124 include_path_count++;
3125 include_paths = (const char **)
3126 xrealloc (include_paths, include_path_count * sizeof (*include_paths));
3127 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3128 if (path[1] == ':' && path[2] == 0)
3129 path = concat (path, ".", (const char *) 0);
3131 include_paths[include_path_count - 1] = path;
3135 adjust_addresses (bfd *abfd ATTRIBUTE_UNUSED,
3139 if ((section->flags & SEC_DEBUGGING) == 0)
3141 bfd_boolean *has_reloc_p = (bfd_boolean *) arg;
3142 section->vma += adjust_section_vma;
3144 section->lma += adjust_section_vma;
3148 /* Dump selected contents of ABFD. */
3151 dump_bfd (bfd *abfd)
3153 /* If we are adjusting section VMA's, change them all now. Changing
3154 the BFD information is a hack. However, we must do it, or
3155 bfd_find_nearest_line will not do the right thing. */
3156 if (adjust_section_vma != 0)
3158 bfd_boolean has_reloc = (abfd->flags & HAS_RELOC);
3159 bfd_map_over_sections (abfd, adjust_addresses, &has_reloc);
3162 if (! dump_debugging_tags && ! suppress_bfd_header)
3163 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd),
3166 print_arelt_descr (stdout, abfd, TRUE);
3167 if (dump_file_header)
3168 dump_bfd_header (abfd);
3169 if (dump_private_headers)
3170 dump_bfd_private_header (abfd);
3171 if (dump_private_options != NULL)
3172 dump_target_specific (abfd);
3173 if (! dump_debugging_tags && ! suppress_bfd_header)
3175 if (dump_section_headers)
3176 dump_headers (abfd);
3182 || dump_dwarf_section_info)
3183 syms = slurp_symtab (abfd);
3184 if (dump_dynamic_symtab || dump_dynamic_reloc_info
3185 || (disassemble && bfd_get_dynamic_symtab_upper_bound (abfd) > 0))
3186 dynsyms = slurp_dynamic_symtab (abfd);
3189 synthcount = bfd_get_synthetic_symtab (abfd, symcount, syms,
3190 dynsymcount, dynsyms, &synthsyms);
3196 dump_symbols (abfd, FALSE);
3197 if (dump_dynamic_symtab)
3198 dump_symbols (abfd, TRUE);
3199 if (dump_dwarf_section_info)
3201 if (dump_stab_section_info)
3203 if (dump_reloc_info && ! disassemble)
3205 if (dump_dynamic_reloc_info && ! disassemble)
3206 dump_dynamic_relocs (abfd);
3207 if (dump_section_contents)
3210 disassemble_data (abfd);
3216 dhandle = read_debugging_info (abfd, syms, symcount, TRUE);
3217 if (dhandle != NULL)
3219 if (!print_debugging_info (stdout, dhandle, abfd, syms,
3221 dump_debugging_tags ? TRUE : FALSE))
3223 non_fatal (_("%s: printing debugging information failed"),
3224 bfd_get_filename (abfd));
3228 /* PR 6483: If there was no STABS or IEEE debug
3229 info in the file, try DWARF instead. */
3230 else if (! dump_dwarf_section_info)
3260 display_object_bfd (bfd *abfd)
3264 if (bfd_check_format_matches (abfd, bfd_object, &matching))
3270 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
3272 nonfatal (bfd_get_filename (abfd));
3273 list_matching_formats (matching);
3278 if (bfd_get_error () != bfd_error_file_not_recognized)
3280 nonfatal (bfd_get_filename (abfd));
3284 if (bfd_check_format_matches (abfd, bfd_core, &matching))
3290 nonfatal (bfd_get_filename (abfd));
3292 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
3294 list_matching_formats (matching);
3300 display_any_bfd (bfd *file, int level)
3302 /* Decompress sections unless dumping the section contents. */
3303 if (!dump_section_contents)
3304 file->flags |= BFD_DECOMPRESS;
3306 /* If the file is an archive, process all of its elements. */
3307 if (bfd_check_format (file, bfd_archive))
3310 bfd *last_arfile = NULL;
3313 printf (_("In archive %s:\n"), bfd_get_filename (file));
3315 printf (_("In nested archive %s:\n"), bfd_get_filename (file));
3319 bfd_set_error (bfd_error_no_error);
3321 arfile = bfd_openr_next_archived_file (file, arfile);
3324 if (bfd_get_error () != bfd_error_no_more_archived_files)
3325 nonfatal (bfd_get_filename (file));
3329 display_any_bfd (arfile, level + 1);
3331 if (last_arfile != NULL)
3332 bfd_close (last_arfile);
3333 last_arfile = arfile;
3336 if (last_arfile != NULL)
3337 bfd_close (last_arfile);
3340 display_object_bfd (file);
3344 display_file (char *filename, char *target)
3348 if (get_file_size (filename) < 1)
3354 file = bfd_openr (filename, target);
3357 nonfatal (filename);
3361 display_any_bfd (file, 0);
3367 main (int argc, char **argv)
3370 char *target = default_target;
3371 bfd_boolean seenflag = FALSE;
3373 #if defined (HAVE_SETLOCALE)
3374 #if defined (HAVE_LC_MESSAGES)
3375 setlocale (LC_MESSAGES, "");
3377 setlocale (LC_CTYPE, "");
3380 bindtextdomain (PACKAGE, LOCALEDIR);
3381 textdomain (PACKAGE);
3383 program_name = *argv;
3384 xmalloc_set_program_name (program_name);
3386 START_PROGRESS (program_name, 0);
3388 expandargv (&argc, &argv);
3391 set_default_bfd_target ();
3393 while ((c = getopt_long (argc, argv,
3394 "pP:ib:m:M:VvCdDlfFaHhrRtTxsSI:j:wE:zgeGW::",
3395 long_options, (int *) 0))
3401 break; /* We've been given a long option. */
3406 if (disassembler_options)
3407 /* Ignore potential memory leak for now. */
3408 disassembler_options = concat (disassembler_options, ",",
3409 optarg, (const char *) NULL);
3411 disassembler_options = optarg;
3417 display_file_offsets = TRUE;
3420 with_line_numbers = TRUE;
3429 enum demangling_styles style;
3431 style = cplus_demangle_name_to_style (optarg);
3432 if (style == unknown_demangling)
3433 fatal (_("unknown demangling style `%s'"),
3436 cplus_demangle_set_style (style);
3442 case OPTION_ADJUST_VMA:
3443 adjust_section_vma = parse_vma (optarg, "--adjust-vma");
3445 case OPTION_START_ADDRESS:
3446 start_address = parse_vma (optarg, "--start-address");
3447 if ((stop_address != (bfd_vma) -1) && stop_address <= start_address)
3448 fatal (_("error: the start address should be before the end address"));
3450 case OPTION_STOP_ADDRESS:
3451 stop_address = parse_vma (optarg, "--stop-address");
3452 if ((start_address != (bfd_vma) -1) && stop_address <= start_address)
3453 fatal (_("error: the stop address should be after the start address"));
3457 prefix_length = strlen (prefix);
3458 /* Remove an unnecessary trailing '/' */
3459 while (IS_DIR_SEPARATOR (prefix[prefix_length - 1]))
3462 case OPTION_PREFIX_STRIP:
3463 prefix_strip = atoi (optarg);
3464 if (prefix_strip < 0)
3465 fatal (_("error: prefix strip must be non-negative"));
3467 case OPTION_INSN_WIDTH:
3468 insn_width = strtoul (optarg, NULL, 0);
3469 if (insn_width <= 0)
3470 fatal (_("error: instruction width must be positive"));
3473 if (strcmp (optarg, "B") == 0)
3474 endian = BFD_ENDIAN_BIG;
3475 else if (strcmp (optarg, "L") == 0)
3476 endian = BFD_ENDIAN_LITTLE;
3479 nonfatal (_("unrecognized -E option"));
3484 if (strncmp (optarg, "big", strlen (optarg)) == 0)
3485 endian = BFD_ENDIAN_BIG;
3486 else if (strncmp (optarg, "little", strlen (optarg)) == 0)
3487 endian = BFD_ENDIAN_LITTLE;
3490 non_fatal (_("unrecognized --endian type `%s'"), optarg);
3497 dump_file_header = TRUE;
3501 formats_info = TRUE;
3505 add_include_path (optarg);
3508 dump_private_headers = TRUE;
3512 dump_private_options = optarg;
3516 dump_private_headers = TRUE;
3518 dump_reloc_info = TRUE;
3519 dump_file_header = TRUE;
3520 dump_ar_hdrs = TRUE;
3521 dump_section_headers = TRUE;
3529 dump_dynamic_symtab = TRUE;
3537 disassemble_zeroes = TRUE;
3541 disassemble_all = TRUE;
3546 with_source_code = TRUE;
3555 dump_debugging_tags = 1;
3560 dump_dwarf_section_info = TRUE;
3563 dwarf_select_sections_by_letters (optarg);
3565 dwarf_select_sections_all ();
3568 dump_dwarf_section_info = TRUE;
3571 dwarf_select_sections_by_names (optarg);
3573 dwarf_select_sections_all ();
3575 case OPTION_DWARF_DEPTH:
3578 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
3581 case OPTION_DWARF_START:
3584 dwarf_start_die = strtoul (optarg, & cp, 0);
3585 suppress_bfd_header = 1;
3589 dump_stab_section_info = TRUE;
3593 dump_section_contents = TRUE;
3597 dump_reloc_info = TRUE;
3601 dump_dynamic_reloc_info = TRUE;
3605 dump_ar_hdrs = TRUE;
3609 dump_section_headers = TRUE;
3617 show_version = TRUE;
3627 print_version ("objdump");
3633 exit_status = display_info ();
3637 display_file ("a.out", target);
3639 for (; optind < argc;)
3640 display_file (argv[optind++], target);
3645 END_PROGRESS (program_name);