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
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 2, 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, MA 02110-1301, USA. */
24 Objdump displays information about one or more object files, either on
25 their own, or inside libraries. It is commonly used as a disassembler,
26 but it can also display information about file headers, symbol tables,
27 relocations, debugging directives and more.
29 The flow of execution is as follows:
31 1. Command line arguments are checked for control switches and the
32 information to be displayed is selected.
34 2. Any remaining arguments are assumed to be object files, and they are
35 processed in order by display_bfd(). If the file is an archive each
36 of its elements is processed in turn.
38 3. The file's target architecture and binary file format are determined
39 by bfd_check_format(). If they are recognised, then dump_bfd() is
42 4. dump_bfd() in turn calls separate functions to display the requested
43 item(s) of information(s). For example disassemble_data() is called if
44 a disassembly has been requested.
46 When disassembling the code loops through blocks of instructions bounded
47 by symbols, calling disassemble_bytes() on each block. The actual
48 disassembling is done by the libopcodes library, via a function pointer
49 supplied by the disassembler() function. */
58 #include "safe-ctype.h"
60 #include "libiberty.h"
65 /* Internal headers for the ELF .stab-dump code - sorry. */
66 #define BYTES_IN_WORD 32
67 #include "aout/aout64.h"
70 static int exit_status
= 0;
72 static char *default_target
= NULL
; /* Default at runtime. */
74 /* The following variables are set based on arguments passed on the
76 static int show_version
= 0; /* Show the version number. */
77 static int dump_section_contents
; /* -s */
78 static int dump_section_headers
; /* -h */
79 static bfd_boolean dump_file_header
; /* -f */
80 static int dump_symtab
; /* -t */
81 static int dump_dynamic_symtab
; /* -T */
82 static int dump_reloc_info
; /* -r */
83 static int dump_dynamic_reloc_info
; /* -R */
84 static int dump_ar_hdrs
; /* -a */
85 static int dump_private_headers
; /* -p */
86 static int prefix_addresses
; /* --prefix-addresses */
87 static int with_line_numbers
; /* -l */
88 static bfd_boolean with_source_code
; /* -S */
89 static int show_raw_insn
; /* --show-raw-insn */
90 static int dump_dwarf_section_info
; /* --dwarf */
91 static int dump_stab_section_info
; /* --stabs */
92 static int do_demangle
; /* -C, --demangle */
93 static bfd_boolean disassemble
; /* -d */
94 static bfd_boolean disassemble_all
; /* -D */
95 static int disassemble_zeroes
; /* --disassemble-zeroes */
96 static bfd_boolean formats_info
; /* -i */
97 static int wide_output
; /* -w */
98 static bfd_vma start_address
= (bfd_vma
) -1; /* --start-address */
99 static bfd_vma stop_address
= (bfd_vma
) -1; /* --stop-address */
100 static int dump_debugging
; /* --debugging */
101 static int dump_debugging_tags
; /* --debugging-tags */
102 static int dump_special_syms
= 0; /* --special-syms */
103 static bfd_vma adjust_section_vma
= 0; /* --adjust-vma */
104 static int file_start_context
= 0; /* --file-start-context */
106 /* Pointer to an array of section names provided by
107 one or more "-j secname" command line options. */
109 /* The total number of slots in the only[] array. */
110 static size_t only_size
= 0;
111 /* The number of occupied slots in the only[] array. */
112 static size_t only_used
= 0;
114 /* Variables for handling include file path table. */
115 static const char **include_paths
;
116 static int include_path_count
;
118 /* Extra info to pass to the section disassembler and address printing
120 struct objdump_disasm_info
124 bfd_boolean require_sec
;
125 arelent
** dynrelbuf
;
127 disassembler_ftype disassemble_fn
;
131 /* Architecture to disassemble for, or default if NULL. */
132 static char *machine
= NULL
;
134 /* Target specific options to the disassembler. */
135 static char *disassembler_options
= NULL
;
137 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
138 static enum bfd_endian endian
= BFD_ENDIAN_UNKNOWN
;
140 /* The symbol table. */
141 static asymbol
**syms
;
143 /* Number of symbols in `syms'. */
144 static long symcount
= 0;
146 /* The sorted symbol table. */
147 static asymbol
**sorted_syms
;
149 /* Number of symbols in `sorted_syms'. */
150 static long sorted_symcount
= 0;
152 /* The dynamic symbol table. */
153 static asymbol
**dynsyms
;
155 /* The synthetic symbol table. */
156 static asymbol
*synthsyms
;
157 static long synthcount
= 0;
159 /* Number of symbols in `dynsyms'. */
160 static long dynsymcount
= 0;
162 static bfd_byte
*stabs
;
163 static bfd_size_type stab_size
;
166 static bfd_size_type stabstr_size
;
169 usage (FILE *stream
, int status
)
171 fprintf (stream
, _("Usage: %s <option(s)> <file(s)>\n"), program_name
);
172 fprintf (stream
, _(" Display information from object <file(s)>.\n"));
173 fprintf (stream
, _(" At least one of the following switches must be given:\n"));
174 fprintf (stream
, _("\
175 -a, --archive-headers Display archive header information\n\
176 -f, --file-headers Display the contents of the overall file header\n\
177 -p, --private-headers Display object format specific file header contents\n\
178 -h, --[section-]headers Display the contents of the section headers\n\
179 -x, --all-headers Display the contents of all headers\n\
180 -d, --disassemble Display assembler contents of executable sections\n\
181 -D, --disassemble-all Display assembler contents of all sections\n\
182 -S, --source Intermix source code with disassembly\n\
183 -s, --full-contents Display the full contents of all sections requested\n\
184 -g, --debugging Display debug information in object file\n\
185 -e, --debugging-tags Display debug information using ctags style\n\
186 -G, --stabs Display (in raw form) any STABS info in the file\n\
187 -W, --dwarf Display DWARF info in the file\n\
188 -t, --syms Display the contents of the symbol table(s)\n\
189 -T, --dynamic-syms Display the contents of the dynamic symbol table\n\
190 -r, --reloc Display the relocation entries in the file\n\
191 -R, --dynamic-reloc Display the dynamic relocation entries in the file\n\
192 @<file> Read options from <file>\n\
193 -v, --version Display this program's version number\n\
194 -i, --info List object formats and architectures supported\n\
195 -H, --help Display this information\n\
199 fprintf (stream
, _("\n The following switches are optional:\n"));
200 fprintf (stream
, _("\
201 -b, --target=BFDNAME Specify the target object format as BFDNAME\n\
202 -m, --architecture=MACHINE Specify the target architecture as MACHINE\n\
203 -j, --section=NAME Only display information for section NAME\n\
204 -M, --disassembler-options=OPT Pass text OPT on to the disassembler\n\
205 -EB --endian=big Assume big endian format when disassembling\n\
206 -EL --endian=little Assume little endian format when disassembling\n\
207 --file-start-context Include context from start of file (with -S)\n\
208 -I, --include=DIR Add DIR to search list for source files\n\
209 -l, --line-numbers Include line numbers and filenames in output\n\
210 -C, --demangle[=STYLE] Decode mangled/processed symbol names\n\
211 The STYLE, if specified, can be `auto', `gnu',\n\
212 `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
214 -w, --wide Format output for more than 80 columns\n\
215 -z, --disassemble-zeroes Do not skip blocks of zeroes when disassembling\n\
216 --start-address=ADDR Only process data whose address is >= ADDR\n\
217 --stop-address=ADDR Only process data whose address is <= ADDR\n\
218 --prefix-addresses Print complete address alongside disassembly\n\
219 --[no-]show-raw-insn Display hex alongside symbolic disassembly\n\
220 --adjust-vma=OFFSET Add OFFSET to all displayed section addresses\n\
221 --special-syms Include special symbols in symbol dumps\n\
223 list_supported_targets (program_name
, stream
);
224 list_supported_architectures (program_name
, stream
);
226 disassembler_usage (stream
);
229 fprintf (stream
, _("Report bugs to %s.\n"), REPORT_BUGS_TO
);
233 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
237 OPTION_START_ADDRESS
,
242 static struct option long_options
[]=
244 {"adjust-vma", required_argument
, NULL
, OPTION_ADJUST_VMA
},
245 {"all-headers", no_argument
, NULL
, 'x'},
246 {"private-headers", no_argument
, NULL
, 'p'},
247 {"architecture", required_argument
, NULL
, 'm'},
248 {"archive-headers", no_argument
, NULL
, 'a'},
249 {"debugging", no_argument
, NULL
, 'g'},
250 {"debugging-tags", no_argument
, NULL
, 'e'},
251 {"demangle", optional_argument
, NULL
, 'C'},
252 {"disassemble", no_argument
, NULL
, 'd'},
253 {"disassemble-all", no_argument
, NULL
, 'D'},
254 {"disassembler-options", required_argument
, NULL
, 'M'},
255 {"disassemble-zeroes", no_argument
, NULL
, 'z'},
256 {"dynamic-reloc", no_argument
, NULL
, 'R'},
257 {"dynamic-syms", no_argument
, NULL
, 'T'},
258 {"endian", required_argument
, NULL
, OPTION_ENDIAN
},
259 {"file-headers", no_argument
, NULL
, 'f'},
260 {"file-start-context", no_argument
, &file_start_context
, 1},
261 {"full-contents", no_argument
, NULL
, 's'},
262 {"headers", no_argument
, NULL
, 'h'},
263 {"help", no_argument
, NULL
, 'H'},
264 {"info", no_argument
, NULL
, 'i'},
265 {"line-numbers", no_argument
, NULL
, 'l'},
266 {"no-show-raw-insn", no_argument
, &show_raw_insn
, -1},
267 {"prefix-addresses", no_argument
, &prefix_addresses
, 1},
268 {"reloc", no_argument
, NULL
, 'r'},
269 {"section", required_argument
, NULL
, 'j'},
270 {"section-headers", no_argument
, NULL
, 'h'},
271 {"show-raw-insn", no_argument
, &show_raw_insn
, 1},
272 {"source", no_argument
, NULL
, 'S'},
273 {"special-syms", no_argument
, &dump_special_syms
, 1},
274 {"include", required_argument
, NULL
, 'I'},
275 {"dwarf", no_argument
, NULL
, 'W'},
276 {"stabs", no_argument
, NULL
, 'G'},
277 {"start-address", required_argument
, NULL
, OPTION_START_ADDRESS
},
278 {"stop-address", required_argument
, NULL
, OPTION_STOP_ADDRESS
},
279 {"syms", no_argument
, NULL
, 't'},
280 {"target", required_argument
, NULL
, 'b'},
281 {"version", no_argument
, NULL
, 'V'},
282 {"wide", no_argument
, NULL
, 'w'},
283 {0, no_argument
, 0, 0}
287 nonfatal (const char *msg
)
294 dump_section_header (bfd
*abfd
, asection
*section
,
295 void *ignored ATTRIBUTE_UNUSED
)
298 unsigned int opb
= bfd_octets_per_byte (abfd
);
300 /* Ignore linker created section. See elfNN_ia64_object_p in
302 if (section
->flags
& SEC_LINKER_CREATED
)
305 printf ("%3d %-13s %08lx ", section
->index
,
306 bfd_get_section_name (abfd
, section
),
307 (unsigned long) bfd_section_size (abfd
, section
) / opb
);
308 bfd_printf_vma (abfd
, bfd_get_section_vma (abfd
, section
));
310 bfd_printf_vma (abfd
, section
->lma
);
311 printf (" %08lx 2**%u", (unsigned long) section
->filepos
,
312 bfd_get_section_alignment (abfd
, section
));
318 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
320 PF (SEC_HAS_CONTENTS
, "CONTENTS");
321 PF (SEC_ALLOC
, "ALLOC");
322 PF (SEC_CONSTRUCTOR
, "CONSTRUCTOR");
323 PF (SEC_LOAD
, "LOAD");
324 PF (SEC_RELOC
, "RELOC");
325 PF (SEC_READONLY
, "READONLY");
326 PF (SEC_CODE
, "CODE");
327 PF (SEC_DATA
, "DATA");
329 PF (SEC_DEBUGGING
, "DEBUGGING");
330 PF (SEC_NEVER_LOAD
, "NEVER_LOAD");
331 PF (SEC_EXCLUDE
, "EXCLUDE");
332 PF (SEC_SORT_ENTRIES
, "SORT_ENTRIES");
333 if (bfd_get_arch (abfd
) == bfd_arch_tic54x
)
335 PF (SEC_TIC54X_BLOCK
, "BLOCK");
336 PF (SEC_TIC54X_CLINK
, "CLINK");
338 PF (SEC_SMALL_DATA
, "SMALL_DATA");
339 if (bfd_get_flavour (abfd
) == bfd_target_coff_flavour
)
340 PF (SEC_COFF_SHARED
, "SHARED");
341 PF (SEC_THREAD_LOCAL
, "THREAD_LOCAL");
342 PF (SEC_GROUP
, "GROUP");
344 if ((section
->flags
& SEC_LINK_ONCE
) != 0)
347 struct coff_comdat_info
*comdat
;
349 switch (section
->flags
& SEC_LINK_DUPLICATES
)
353 case SEC_LINK_DUPLICATES_DISCARD
:
354 ls
= "LINK_ONCE_DISCARD";
356 case SEC_LINK_DUPLICATES_ONE_ONLY
:
357 ls
= "LINK_ONCE_ONE_ONLY";
359 case SEC_LINK_DUPLICATES_SAME_SIZE
:
360 ls
= "LINK_ONCE_SAME_SIZE";
362 case SEC_LINK_DUPLICATES_SAME_CONTENTS
:
363 ls
= "LINK_ONCE_SAME_CONTENTS";
366 printf ("%s%s", comma
, ls
);
368 comdat
= bfd_coff_get_comdat_section (abfd
, section
);
370 printf (" (COMDAT %s %ld)", comdat
->name
, comdat
->symbol
);
380 dump_headers (bfd
*abfd
)
382 printf (_("Sections:\n"));
385 printf (_("Idx Name Size VMA LMA File off Algn"));
387 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
388 if (bfd_get_arch_size (abfd
) == 32)
389 printf (_("Idx Name Size VMA LMA File off Algn"));
391 printf (_("Idx Name Size VMA LMA File off Algn"));
395 printf (_(" Flags"));
396 if (abfd
->flags
& HAS_LOAD_PAGE
)
400 bfd_map_over_sections (abfd
, dump_section_header
, NULL
);
404 slurp_symtab (bfd
*abfd
)
409 if (!(bfd_get_file_flags (abfd
) & HAS_SYMS
))
415 storage
= bfd_get_symtab_upper_bound (abfd
);
417 bfd_fatal (bfd_get_filename (abfd
));
419 sy
= xmalloc (storage
);
421 symcount
= bfd_canonicalize_symtab (abfd
, sy
);
423 bfd_fatal (bfd_get_filename (abfd
));
427 /* Read in the dynamic symbols. */
430 slurp_dynamic_symtab (bfd
*abfd
)
435 storage
= bfd_get_dynamic_symtab_upper_bound (abfd
);
438 if (!(bfd_get_file_flags (abfd
) & DYNAMIC
))
440 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd
));
445 bfd_fatal (bfd_get_filename (abfd
));
448 sy
= xmalloc (storage
);
450 dynsymcount
= bfd_canonicalize_dynamic_symtab (abfd
, sy
);
452 bfd_fatal (bfd_get_filename (abfd
));
456 /* Filter out (in place) symbols that are useless for disassembly.
457 COUNT is the number of elements in SYMBOLS.
458 Return the number of useful symbols. */
461 remove_useless_symbols (asymbol
**symbols
, long count
)
463 asymbol
**in_ptr
= symbols
, **out_ptr
= symbols
;
467 asymbol
*sym
= *in_ptr
++;
469 if (sym
->name
== NULL
|| sym
->name
[0] == '\0')
471 if (sym
->flags
& (BSF_DEBUGGING
| BSF_SECTION_SYM
))
473 if (bfd_is_und_section (sym
->section
)
474 || bfd_is_com_section (sym
->section
))
479 return out_ptr
- symbols
;
482 /* Sort symbols into value order. */
485 compare_symbols (const void *ap
, const void *bp
)
487 const asymbol
*a
= * (const asymbol
**) ap
;
488 const asymbol
*b
= * (const asymbol
**) bp
;
498 if (bfd_asymbol_value (a
) > bfd_asymbol_value (b
))
500 else if (bfd_asymbol_value (a
) < bfd_asymbol_value (b
))
503 if (a
->section
> b
->section
)
505 else if (a
->section
< b
->section
)
508 an
= bfd_asymbol_name (a
);
509 bn
= bfd_asymbol_name (b
);
513 /* The symbols gnu_compiled and gcc2_compiled convey no real
514 information, so put them after other symbols with the same value. */
515 af
= (strstr (an
, "gnu_compiled") != NULL
516 || strstr (an
, "gcc2_compiled") != NULL
);
517 bf
= (strstr (bn
, "gnu_compiled") != NULL
518 || strstr (bn
, "gcc2_compiled") != NULL
);
525 /* We use a heuristic for the file name, to try to sort it after
526 more useful symbols. It may not work on non Unix systems, but it
527 doesn't really matter; the only difference is precisely which
528 symbol names get printed. */
530 #define file_symbol(s, sn, snl) \
531 (((s)->flags & BSF_FILE) != 0 \
532 || ((sn)[(snl) - 2] == '.' \
533 && ((sn)[(snl) - 1] == 'o' \
534 || (sn)[(snl) - 1] == 'a')))
536 af
= file_symbol (a
, an
, anl
);
537 bf
= file_symbol (b
, bn
, bnl
);
544 /* Try to sort global symbols before local symbols before function
545 symbols before debugging symbols. */
550 if ((aflags
& BSF_DEBUGGING
) != (bflags
& BSF_DEBUGGING
))
552 if ((aflags
& BSF_DEBUGGING
) != 0)
557 if ((aflags
& BSF_FUNCTION
) != (bflags
& BSF_FUNCTION
))
559 if ((aflags
& BSF_FUNCTION
) != 0)
564 if ((aflags
& BSF_LOCAL
) != (bflags
& BSF_LOCAL
))
566 if ((aflags
& BSF_LOCAL
) != 0)
571 if ((aflags
& BSF_GLOBAL
) != (bflags
& BSF_GLOBAL
))
573 if ((aflags
& BSF_GLOBAL
) != 0)
579 /* Symbols that start with '.' might be section names, so sort them
580 after symbols that don't start with '.'. */
581 if (an
[0] == '.' && bn
[0] != '.')
583 if (an
[0] != '.' && bn
[0] == '.')
586 /* Finally, if we can't distinguish them in any other way, try to
587 get consistent results by sorting the symbols by name. */
588 return strcmp (an
, bn
);
591 /* Sort relocs into address order. */
594 compare_relocs (const void *ap
, const void *bp
)
596 const arelent
*a
= * (const arelent
**) ap
;
597 const arelent
*b
= * (const arelent
**) bp
;
599 if (a
->address
> b
->address
)
601 else if (a
->address
< b
->address
)
604 /* So that associated relocations tied to the same address show up
605 in the correct order, we don't do any further sorting. */
614 /* Print an address (VMA) to the output stream in INFO.
615 If SKIP_ZEROES is TRUE, omit leading zeroes. */
618 objdump_print_value (bfd_vma vma
, struct disassemble_info
*info
,
619 bfd_boolean skip_zeroes
)
623 struct objdump_disasm_info
*aux
;
625 aux
= (struct objdump_disasm_info
*) info
->application_data
;
626 bfd_sprintf_vma (aux
->abfd
, buf
, vma
);
631 for (p
= buf
; *p
== '0'; ++p
)
636 (*info
->fprintf_func
) (info
->stream
, "%s", p
);
639 /* Print the name of a symbol. */
642 objdump_print_symname (bfd
*abfd
, struct disassemble_info
*info
,
649 name
= bfd_asymbol_name (sym
);
650 if (do_demangle
&& name
[0] != '\0')
652 /* Demangle the name. */
653 alloc
= demangle (abfd
, name
);
658 (*info
->fprintf_func
) (info
->stream
, "%s", name
);
666 /* Locate a symbol given a bfd and a section (from INFO->application_data),
667 and a VMA. If INFO->application_data->require_sec is TRUE, then always
668 require the symbol to be in the section. Returns NULL if there is no
669 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
670 of the symbol in sorted_syms. */
673 find_symbol_for_address (bfd_vma vma
,
674 struct disassemble_info
*info
,
677 /* @@ Would it speed things up to cache the last two symbols returned,
678 and maybe their address ranges? For many processors, only one memory
679 operand can be present at a time, so the 2-entry cache wouldn't be
680 constantly churned by code doing heavy memory accesses. */
682 /* Indices in `sorted_syms'. */
684 long max
= sorted_symcount
;
686 struct objdump_disasm_info
*aux
;
691 if (sorted_symcount
< 1)
694 aux
= (struct objdump_disasm_info
*) info
->application_data
;
697 opb
= bfd_octets_per_byte (abfd
);
699 /* Perform a binary search looking for the closest symbol to the
700 required value. We are searching the range (min, max]. */
701 while (min
+ 1 < max
)
705 thisplace
= (max
+ min
) / 2;
706 sym
= sorted_syms
[thisplace
];
708 if (bfd_asymbol_value (sym
) > vma
)
710 else if (bfd_asymbol_value (sym
) < vma
)
719 /* The symbol we want is now in min, the low end of the range we
720 were searching. If there are several symbols with the same
721 value, we want the first one. */
724 && (bfd_asymbol_value (sorted_syms
[thisplace
])
725 == bfd_asymbol_value (sorted_syms
[thisplace
- 1])))
728 /* If the file is relocatable, and the symbol could be from this
729 section, prefer a symbol from this section over symbols from
730 others, even if the other symbol's value might be closer.
732 Note that this may be wrong for some symbol references if the
733 sections have overlapping memory ranges, but in that case there's
734 no way to tell what's desired without looking at the relocation
736 if (sorted_syms
[thisplace
]->section
!= sec
738 || ((abfd
->flags
& HAS_RELOC
) != 0
739 && vma
>= bfd_get_section_vma (abfd
, sec
)
740 && vma
< (bfd_get_section_vma (abfd
, sec
)
741 + bfd_section_size (abfd
, sec
) / opb
))))
745 for (i
= thisplace
+ 1; i
< sorted_symcount
; i
++)
747 if (bfd_asymbol_value (sorted_syms
[i
])
748 != bfd_asymbol_value (sorted_syms
[thisplace
]))
756 if (sorted_syms
[i
]->section
== sec
758 || sorted_syms
[i
- 1]->section
!= sec
759 || (bfd_asymbol_value (sorted_syms
[i
])
760 != bfd_asymbol_value (sorted_syms
[i
- 1]))))
767 if (sorted_syms
[thisplace
]->section
!= sec
)
769 /* We didn't find a good symbol with a smaller value.
770 Look for one with a larger value. */
771 for (i
= thisplace
+ 1; i
< sorted_symcount
; i
++)
773 if (sorted_syms
[i
]->section
== sec
)
781 if (sorted_syms
[thisplace
]->section
!= sec
783 || ((abfd
->flags
& HAS_RELOC
) != 0
784 && vma
>= bfd_get_section_vma (abfd
, sec
)
785 && vma
< (bfd_get_section_vma (abfd
, sec
)
786 + bfd_section_size (abfd
, sec
)))))
787 /* There is no suitable symbol. */
791 /* Give the target a chance to reject the symbol. */
792 while (! info
->symbol_is_valid (sorted_syms
[thisplace
], info
))
795 if (thisplace
>= sorted_symcount
796 || bfd_asymbol_value (sorted_syms
[thisplace
]) > vma
)
803 return sorted_syms
[thisplace
];
806 /* Print an address and the offset to the nearest symbol. */
809 objdump_print_addr_with_sym (bfd
*abfd
, asection
*sec
, asymbol
*sym
,
810 bfd_vma vma
, struct disassemble_info
*info
,
811 bfd_boolean skip_zeroes
)
813 objdump_print_value (vma
, info
, skip_zeroes
);
819 (*info
->fprintf_func
) (info
->stream
, " <%s",
820 bfd_get_section_name (abfd
, sec
));
821 secaddr
= bfd_get_section_vma (abfd
, sec
);
824 (*info
->fprintf_func
) (info
->stream
, "-0x");
825 objdump_print_value (secaddr
- vma
, info
, TRUE
);
827 else if (vma
> secaddr
)
829 (*info
->fprintf_func
) (info
->stream
, "+0x");
830 objdump_print_value (vma
- secaddr
, info
, TRUE
);
832 (*info
->fprintf_func
) (info
->stream
, ">");
836 (*info
->fprintf_func
) (info
->stream
, " <");
837 objdump_print_symname (abfd
, info
, sym
);
838 if (bfd_asymbol_value (sym
) > vma
)
840 (*info
->fprintf_func
) (info
->stream
, "-0x");
841 objdump_print_value (bfd_asymbol_value (sym
) - vma
, info
, TRUE
);
843 else if (vma
> bfd_asymbol_value (sym
))
845 (*info
->fprintf_func
) (info
->stream
, "+0x");
846 objdump_print_value (vma
- bfd_asymbol_value (sym
), info
, TRUE
);
848 (*info
->fprintf_func
) (info
->stream
, ">");
852 /* Print an address (VMA), symbolically if possible.
853 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
856 objdump_print_addr (bfd_vma vma
,
857 struct disassemble_info
*info
,
858 bfd_boolean skip_zeroes
)
860 struct objdump_disasm_info
*aux
;
861 asymbol
*sym
= NULL
; /* Initialize to avoid compiler warning. */
862 bfd_boolean skip_find
= FALSE
;
864 if (sorted_symcount
< 1)
866 (*info
->fprintf_func
) (info
->stream
, "0x");
867 objdump_print_value (vma
, info
, skip_zeroes
);
871 aux
= (struct objdump_disasm_info
*) info
->application_data
;
873 if (aux
->reloc
!= NULL
874 && aux
->reloc
->sym_ptr_ptr
!= NULL
875 && * aux
->reloc
->sym_ptr_ptr
!= NULL
)
877 sym
= * aux
->reloc
->sym_ptr_ptr
;
879 /* Adjust the vma to the reloc. */
880 vma
+= bfd_asymbol_value (sym
);
882 if (bfd_is_und_section (bfd_get_section (sym
)))
887 sym
= find_symbol_for_address (vma
, info
, NULL
);
889 objdump_print_addr_with_sym (aux
->abfd
, aux
->sec
, sym
, vma
, info
,
893 /* Print VMA to INFO. This function is passed to the disassembler
897 objdump_print_address (bfd_vma vma
, struct disassemble_info
*info
)
899 objdump_print_addr (vma
, info
, ! prefix_addresses
);
902 /* Determine if the given address has a symbol associated with it. */
905 objdump_symbol_at_address (bfd_vma vma
, struct disassemble_info
* info
)
909 sym
= find_symbol_for_address (vma
, info
, NULL
);
911 return (sym
!= NULL
&& (bfd_asymbol_value (sym
) == vma
));
914 /* Hold the last function name and the last line number we displayed
917 static char *prev_functionname
;
918 static unsigned int prev_line
;
920 /* We keep a list of all files that we have seen when doing a
921 disassembly with source, so that we know how much of the file to
922 display. This can be important for inlined functions. */
924 struct print_file_list
926 struct print_file_list
*next
;
927 const char *filename
;
933 static struct print_file_list
*print_files
;
935 /* The number of preceding context lines to show when we start
936 displaying a file for the first time. */
938 #define SHOW_PRECEDING_CONTEXT_LINES (5)
940 /* Tries to open MODNAME, and if successful adds a node to print_files
941 linked list and returns that node. Returns NULL on failure. */
943 static struct print_file_list
*
944 try_print_file_open (const char *origname
, const char *modname
)
946 struct print_file_list
*p
;
949 f
= fopen (modname
, "r");
953 if (print_files
!= NULL
&& print_files
->f
!= NULL
)
955 fclose (print_files
->f
);
956 print_files
->f
= NULL
;
959 p
= xmalloc (sizeof (struct print_file_list
));
960 p
->filename
= origname
;
961 p
->modname
= modname
;
964 p
->next
= print_files
;
969 /* If the the source file, as described in the symtab, is not found
970 try to locate it in one of the paths specified with -I
971 If found, add location to print_files linked list. */
973 static struct print_file_list
*
974 update_source_path (const char *filename
)
976 struct print_file_list
*p
;
980 if (filename
== NULL
)
983 p
= try_print_file_open (filename
, filename
);
987 if (include_path_count
== 0)
990 /* Get the name of the file. */
991 fname
= strrchr (filename
, '/');
992 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
994 /* We could have a mixed forward/back slash case. */
995 char *backslash
= strrchr (filename
, '\\');
996 if (fname
== NULL
|| (backslash
!= NULL
&& backslash
> fname
))
998 if (fname
== NULL
&& filename
[0] != '\0' && filename
[1] == ':')
999 fname
= filename
+ 1;
1007 /* If file exists under a new path, we need to add it to the list
1008 so that show_line knows about it. */
1009 for (i
= 0; i
< include_path_count
; i
++)
1011 char *modname
= concat (include_paths
[i
], "/", fname
, (const char *) 0);
1013 p
= try_print_file_open (filename
, modname
);
1023 /* Skip ahead to a given line in a file, optionally printing each
1027 skip_to_line (struct print_file_list
*p
, unsigned int line
,
1030 while (p
->line
< line
)
1034 if (fgets (buf
, sizeof buf
, p
->f
) == NULL
)
1044 if (strchr (buf
, '\n') != NULL
)
1049 /* Show the line number, or the source line, in a disassembly
1053 show_line (bfd
*abfd
, asection
*section
, bfd_vma addr_offset
)
1055 const char *filename
;
1056 const char *functionname
;
1059 if (! with_line_numbers
&& ! with_source_code
)
1062 if (! bfd_find_nearest_line (abfd
, section
, syms
, addr_offset
, &filename
,
1063 &functionname
, &line
))
1066 if (filename
!= NULL
&& *filename
== '\0')
1068 if (functionname
!= NULL
&& *functionname
== '\0')
1069 functionname
= NULL
;
1071 if (with_line_numbers
)
1073 if (functionname
!= NULL
1074 && (prev_functionname
== NULL
1075 || strcmp (functionname
, prev_functionname
) != 0))
1076 printf ("%s():\n", functionname
);
1077 if (line
> 0 && line
!= prev_line
)
1078 printf ("%s:%u\n", filename
== NULL
? "???" : filename
, line
);
1081 if (with_source_code
1085 struct print_file_list
**pp
, *p
;
1087 for (pp
= &print_files
; *pp
!= NULL
; pp
= &(*pp
)->next
)
1088 if (strcmp ((*pp
)->filename
, filename
) == 0)
1094 if (p
!= print_files
)
1098 /* We have reencountered a file name which we saw
1099 earlier. This implies that either we are dumping out
1100 code from an included file, or the same file was
1101 linked in more than once. There are two common cases
1102 of an included file: inline functions in a header
1103 file, and a bison or flex skeleton file. In the
1104 former case we want to just start printing (but we
1105 back up a few lines to give context); in the latter
1106 case we want to continue from where we left off. I
1107 can't think of a good way to distinguish the cases,
1108 so I used a heuristic based on the file name. */
1109 if (strcmp (p
->filename
+ strlen (p
->filename
) - 2, ".h") != 0)
1113 l
= line
- SHOW_PRECEDING_CONTEXT_LINES
;
1120 p
->f
= fopen (p
->modname
, "r");
1124 skip_to_line (p
, l
, FALSE
);
1126 if (print_files
->f
!= NULL
)
1128 fclose (print_files
->f
);
1129 print_files
->f
= NULL
;
1135 skip_to_line (p
, line
, TRUE
);
1137 p
->next
= print_files
;
1143 p
= update_source_path (filename
);
1149 if (file_start_context
)
1152 l
= line
- SHOW_PRECEDING_CONTEXT_LINES
;
1155 skip_to_line (p
, l
, FALSE
);
1157 skip_to_line (p
, line
, TRUE
);
1162 if (functionname
!= NULL
1163 && (prev_functionname
== NULL
1164 || strcmp (functionname
, prev_functionname
) != 0))
1166 if (prev_functionname
!= NULL
)
1167 free (prev_functionname
);
1168 prev_functionname
= xmalloc (strlen (functionname
) + 1);
1169 strcpy (prev_functionname
, functionname
);
1172 if (line
> 0 && line
!= prev_line
)
1176 /* Pseudo FILE object for strings. */
1184 /* sprintf to a "stream". */
1186 static int ATTRIBUTE_PRINTF_2
1187 objdump_sprintf (SFILE
*f
, const char *format
, ...)
1194 size_t space
= f
->alloc
- f
->pos
;
1196 va_start (args
, format
);
1197 n
= vsnprintf (f
->buffer
+ f
->pos
, space
, format
, args
);
1203 f
->alloc
= (f
->alloc
+ n
) * 2;
1204 f
->buffer
= xrealloc (f
->buffer
, f
->alloc
);
1211 /* Returns TRUE if the specified section should be dumped. */
1214 process_section_p (asection
* section
)
1221 for (i
= 0; i
< only_used
; i
++)
1222 if (strcmp (only
[i
], section
->name
) == 0)
1229 /* The number of zeroes we want to see before we start skipping them.
1230 The number is arbitrarily chosen. */
1232 #define DEFAULT_SKIP_ZEROES 8
1234 /* The number of zeroes to skip at the end of a section. If the
1235 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1236 SKIP_ZEROES, they will be disassembled. If there are fewer than
1237 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1238 attempt to avoid disassembling zeroes inserted by section
1241 #define DEFAULT_SKIP_ZEROES_AT_END 3
1243 /* Disassemble some data in memory between given values. */
1246 disassemble_bytes (struct disassemble_info
* info
,
1247 disassembler_ftype disassemble_fn
,
1250 bfd_vma start_offset
,
1251 bfd_vma stop_offset
,
1254 arelent
** relppend
)
1256 struct objdump_disasm_info
*aux
;
1258 int octets_per_line
;
1259 bfd_boolean done_dot
;
1260 int skip_addr_chars
;
1261 bfd_vma addr_offset
;
1262 unsigned int opb
= info
->octets_per_byte
;
1263 unsigned int skip_zeroes
= info
->skip_zeroes
;
1264 unsigned int skip_zeroes_at_end
= info
->skip_zeroes_at_end
;
1268 aux
= (struct objdump_disasm_info
*) info
->application_data
;
1272 sfile
.buffer
= xmalloc (sfile
.alloc
);
1276 octets_per_line
= 4;
1278 octets_per_line
= 16;
1280 /* Figure out how many characters to skip at the start of an
1281 address, to make the disassembly look nicer. We discard leading
1282 zeroes in chunks of 4, ensuring that there is always a leading
1284 skip_addr_chars
= 0;
1285 if (! prefix_addresses
)
1293 + bfd_section_size (section
->owner
, section
) / opb
));
1295 while (s
[0] == '0' && s
[1] == '0' && s
[2] == '0' && s
[3] == '0'
1298 skip_addr_chars
+= 4;
1303 info
->insn_info_valid
= 0;
1306 addr_offset
= start_offset
;
1307 while (addr_offset
< stop_offset
)
1310 bfd_boolean need_nl
= FALSE
;
1311 int previous_octets
;
1313 /* Remember the length of the previous instruction. */
1314 previous_octets
= octets
;
1317 /* If we see more than SKIP_ZEROES octets of zeroes, we just
1319 for (z
= addr_offset
* opb
; z
< stop_offset
* opb
; z
++)
1322 if (! disassemble_zeroes
1323 && (info
->insn_info_valid
== 0
1324 || info
->branch_delay_insns
== 0)
1325 && (z
- addr_offset
* opb
>= skip_zeroes
1326 || (z
== stop_offset
* opb
&&
1327 z
- addr_offset
* opb
< skip_zeroes_at_end
)))
1331 /* If there are more nonzero octets to follow, we only skip
1332 zeroes in multiples of 4, to try to avoid running over
1333 the start of an instruction which happens to start with
1335 if (z
!= stop_offset
* opb
)
1336 z
= addr_offset
* opb
+ ((z
- addr_offset
* opb
) &~ 3);
1338 octets
= z
- addr_offset
* opb
;
1348 if (with_line_numbers
|| with_source_code
)
1349 show_line (aux
->abfd
, section
, addr_offset
);
1351 if (! prefix_addresses
)
1355 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ addr_offset
);
1356 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1360 printf ("%s:\t", buf
+ skip_addr_chars
);
1364 aux
->require_sec
= TRUE
;
1365 objdump_print_address (section
->vma
+ addr_offset
, info
);
1366 aux
->require_sec
= FALSE
;
1373 info
->fprintf_func
= (fprintf_ftype
) objdump_sprintf
;
1374 info
->stream
= &sfile
;
1375 info
->bytes_per_line
= 0;
1376 info
->bytes_per_chunk
= 0;
1379 if (info
->disassembler_needs_relocs
1380 && *relppp
< relppend
)
1382 bfd_signed_vma distance_to_rel
;
1384 distance_to_rel
= (**relppp
)->address
1385 - (rel_offset
+ addr_offset
);
1387 /* Check to see if the current reloc is associated with
1388 the instruction that we are about to disassemble. */
1389 if (distance_to_rel
== 0
1390 /* FIXME: This is wrong. We are trying to catch
1391 relocs that are addressed part way through the
1392 current instruction, as might happen with a packed
1393 VLIW instruction. Unfortunately we do not know the
1394 length of the current instruction since we have not
1395 disassembled it yet. Instead we take a guess based
1396 upon the length of the previous instruction. The
1397 proper solution is to have a new target-specific
1398 disassembler function which just returns the length
1399 of an instruction at a given address without trying
1400 to display its disassembly. */
1401 || (distance_to_rel
> 0
1402 && distance_to_rel
< (bfd_signed_vma
) (previous_octets
/ opb
)))
1404 info
->flags
= INSN_HAS_RELOC
;
1405 aux
->reloc
= **relppp
;
1411 octets
= (*disassemble_fn
) (section
->vma
+ addr_offset
, info
);
1412 info
->fprintf_func
= (fprintf_ftype
) fprintf
;
1413 info
->stream
= stdout
;
1414 if (info
->bytes_per_line
!= 0)
1415 octets_per_line
= info
->bytes_per_line
;
1419 printf ("%s\n", sfile
.buffer
);
1427 octets
= octets_per_line
;
1428 if (addr_offset
+ octets
/ opb
> stop_offset
)
1429 octets
= (stop_offset
- addr_offset
) * opb
;
1431 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ octets
; ++j
)
1433 if (ISPRINT (data
[j
]))
1434 buf
[j
- addr_offset
* opb
] = data
[j
];
1436 buf
[j
- addr_offset
* opb
] = '.';
1438 buf
[j
- addr_offset
* opb
] = '\0';
1441 if (prefix_addresses
1443 : show_raw_insn
>= 0)
1447 /* If ! prefix_addresses and ! wide_output, we print
1448 octets_per_line octets per line. */
1450 if (pb
> octets_per_line
&& ! prefix_addresses
&& ! wide_output
)
1451 pb
= octets_per_line
;
1453 if (info
->bytes_per_chunk
)
1454 bpc
= info
->bytes_per_chunk
;
1458 for (j
= addr_offset
* opb
; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
1462 if (bpc
> 1 && info
->display_endian
== BFD_ENDIAN_LITTLE
)
1464 for (k
= bpc
- 1; k
>= 0; k
--)
1465 printf ("%02x", (unsigned) data
[j
+ k
]);
1470 for (k
= 0; k
< bpc
; k
++)
1471 printf ("%02x", (unsigned) data
[j
+ k
]);
1476 for (; pb
< octets_per_line
; pb
+= bpc
)
1480 for (k
= 0; k
< bpc
; k
++)
1485 /* Separate raw data from instruction by extra space. */
1495 printf ("%s", sfile
.buffer
);
1497 if (prefix_addresses
1499 : show_raw_insn
>= 0)
1507 j
= addr_offset
* opb
+ pb
;
1509 bfd_sprintf_vma (aux
->abfd
, buf
, section
->vma
+ j
/ opb
);
1510 for (s
= buf
+ skip_addr_chars
; *s
== '0'; s
++)
1514 printf ("%s:\t", buf
+ skip_addr_chars
);
1516 pb
+= octets_per_line
;
1519 for (; j
< addr_offset
* opb
+ pb
; j
+= bpc
)
1523 if (bpc
> 1 && info
->display_endian
== BFD_ENDIAN_LITTLE
)
1525 for (k
= bpc
- 1; k
>= 0; k
--)
1526 printf ("%02x", (unsigned) data
[j
+ k
]);
1531 for (k
= 0; k
< bpc
; k
++)
1532 printf ("%02x", (unsigned) data
[j
+ k
]);
1545 while ((*relppp
) < relppend
1546 && (**relppp
)->address
< rel_offset
+ addr_offset
+ octets
/ opb
)
1548 if (dump_reloc_info
|| dump_dynamic_reloc_info
)
1559 objdump_print_value (section
->vma
- rel_offset
+ q
->address
,
1562 if (q
->howto
== NULL
)
1563 printf (": *unknown*\t");
1564 else if (q
->howto
->name
)
1565 printf (": %s\t", q
->howto
->name
);
1567 printf (": %d\t", q
->howto
->type
);
1569 if (q
->sym_ptr_ptr
== NULL
|| *q
->sym_ptr_ptr
== NULL
)
1570 printf ("*unknown*");
1573 const char *sym_name
;
1575 sym_name
= bfd_asymbol_name (*q
->sym_ptr_ptr
);
1576 if (sym_name
!= NULL
&& *sym_name
!= '\0')
1577 objdump_print_symname (aux
->abfd
, info
, *q
->sym_ptr_ptr
);
1582 sym_sec
= bfd_get_section (*q
->sym_ptr_ptr
);
1583 sym_name
= bfd_get_section_name (aux
->abfd
, sym_sec
);
1584 if (sym_name
== NULL
|| *sym_name
== '\0')
1585 sym_name
= "*unknown*";
1586 printf ("%s", sym_name
);
1593 objdump_print_value (q
->addend
, info
, TRUE
);
1605 addr_offset
+= octets
/ opb
;
1608 free (sfile
.buffer
);
1612 disassemble_section (bfd
*abfd
, asection
*section
, void *info
)
1614 struct disassemble_info
* pinfo
= (struct disassemble_info
*) info
;
1615 struct objdump_disasm_info
* paux
;
1616 unsigned int opb
= pinfo
->octets_per_byte
;
1617 bfd_byte
* data
= NULL
;
1618 bfd_size_type datasize
= 0;
1619 arelent
** rel_pp
= NULL
;
1620 arelent
** rel_ppstart
= NULL
;
1621 arelent
** rel_ppend
;
1622 unsigned long stop_offset
;
1623 asymbol
* sym
= NULL
;
1627 unsigned long addr_offset
;
1629 /* Sections that do not contain machine
1630 code are not normally disassembled. */
1631 if (! disassemble_all
1633 && ((section
->flags
& (SEC_CODE
| SEC_HAS_CONTENTS
))
1634 != (SEC_CODE
| SEC_HAS_CONTENTS
)))
1637 if (! process_section_p (section
))
1640 datasize
= bfd_get_section_size (section
);
1644 /* Decide which set of relocs to use. Load them if necessary. */
1645 paux
= (struct objdump_disasm_info
*) pinfo
->application_data
;
1646 if (paux
->dynrelbuf
)
1648 rel_pp
= paux
->dynrelbuf
;
1649 rel_count
= paux
->dynrelcount
;
1650 /* Dynamic reloc addresses are absolute, non-dynamic are section
1651 relative. REL_OFFSET specifies the reloc address corresponding
1652 to the start of this section. */
1653 rel_offset
= section
->vma
;
1661 if ((section
->flags
& SEC_RELOC
) != 0
1662 && (dump_reloc_info
|| pinfo
->disassembler_needs_relocs
))
1666 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
1668 bfd_fatal (bfd_get_filename (abfd
));
1672 rel_ppstart
= rel_pp
= xmalloc (relsize
);
1673 rel_count
= bfd_canonicalize_reloc (abfd
, section
, rel_pp
, syms
);
1675 bfd_fatal (bfd_get_filename (abfd
));
1677 /* Sort the relocs by address. */
1678 qsort (rel_pp
, rel_count
, sizeof (arelent
*), compare_relocs
);
1683 rel_ppend
= rel_pp
+ rel_count
;
1685 data
= xmalloc (datasize
);
1687 bfd_get_section_contents (abfd
, section
, data
, 0, datasize
);
1689 paux
->sec
= section
;
1690 pinfo
->buffer
= data
;
1691 pinfo
->buffer_vma
= section
->vma
;
1692 pinfo
->buffer_length
= datasize
;
1693 pinfo
->section
= section
;
1695 if (start_address
== (bfd_vma
) -1
1696 || start_address
< pinfo
->buffer_vma
)
1699 addr_offset
= start_address
- pinfo
->buffer_vma
;
1701 if (stop_address
== (bfd_vma
) -1)
1702 stop_offset
= datasize
/ opb
;
1705 if (stop_address
< pinfo
->buffer_vma
)
1708 stop_offset
= stop_address
- pinfo
->buffer_vma
;
1709 if (stop_offset
> pinfo
->buffer_length
/ opb
)
1710 stop_offset
= pinfo
->buffer_length
/ opb
;
1713 /* Skip over the relocs belonging to addresses below the
1715 while (rel_pp
< rel_ppend
1716 && (*rel_pp
)->address
< rel_offset
+ addr_offset
)
1719 printf (_("Disassembly of section %s:\n"), section
->name
);
1721 /* Find the nearest symbol forwards from our current position. */
1722 paux
->require_sec
= TRUE
;
1723 sym
= find_symbol_for_address (section
->vma
+ addr_offset
, info
, &place
);
1724 paux
->require_sec
= FALSE
;
1726 /* Disassemble a block of instructions up to the address associated with
1727 the symbol we have just found. Then print the symbol and find the
1728 next symbol on. Repeat until we have disassembled the entire section
1729 or we have reached the end of the address range we are interested in. */
1730 while (addr_offset
< stop_offset
)
1734 unsigned long nextstop_offset
;
1737 addr
= section
->vma
+ addr_offset
;
1739 if (sym
!= NULL
&& bfd_asymbol_value (sym
) <= addr
)
1744 (x
< sorted_symcount
1745 && (bfd_asymbol_value (sorted_syms
[x
]) <= addr
));
1749 pinfo
->symbols
= sorted_syms
+ place
;
1750 pinfo
->num_symbols
= x
- place
;
1751 pinfo
->symtab_pos
= place
;
1755 pinfo
->symbols
= NULL
;
1756 pinfo
->num_symbols
= 0;
1757 pinfo
->symtab_pos
= -1;
1760 if (! prefix_addresses
)
1762 pinfo
->fprintf_func (pinfo
->stream
, "\n");
1763 objdump_print_addr_with_sym (abfd
, section
, sym
, addr
,
1765 pinfo
->fprintf_func (pinfo
->stream
, ":\n");
1768 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
1770 else if (sym
== NULL
)
1774 #define is_valid_next_sym(SYM) \
1775 ((SYM)->section == section \
1776 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
1777 && pinfo->symbol_is_valid (SYM, pinfo))
1779 /* Search forward for the next appropriate symbol in
1780 SECTION. Note that all the symbols are sorted
1781 together into one big array, and that some sections
1782 may have overlapping addresses. */
1783 while (place
< sorted_symcount
1784 && ! is_valid_next_sym (sorted_syms
[place
]))
1787 if (place
>= sorted_symcount
)
1790 nextsym
= sorted_syms
[place
];
1793 if (sym
!= NULL
&& bfd_asymbol_value (sym
) > addr
)
1794 nextstop_offset
= bfd_asymbol_value (sym
) - section
->vma
;
1795 else if (nextsym
== NULL
)
1796 nextstop_offset
= stop_offset
;
1798 nextstop_offset
= bfd_asymbol_value (nextsym
) - section
->vma
;
1800 if (nextstop_offset
> stop_offset
)
1801 nextstop_offset
= stop_offset
;
1803 /* If a symbol is explicitly marked as being an object
1804 rather than a function, just dump the bytes without
1805 disassembling them. */
1808 || bfd_asymbol_value (sym
) > addr
1809 || ((sym
->flags
& BSF_OBJECT
) == 0
1810 && (strstr (bfd_asymbol_name (sym
), "gnu_compiled")
1812 && (strstr (bfd_asymbol_name (sym
), "gcc2_compiled")
1814 || (sym
->flags
& BSF_FUNCTION
) != 0)
1819 disassemble_bytes (pinfo
, paux
->disassemble_fn
, insns
, data
,
1820 addr_offset
, nextstop_offset
,
1821 rel_offset
, &rel_pp
, rel_ppend
);
1823 addr_offset
= nextstop_offset
;
1829 if (rel_ppstart
!= NULL
)
1833 /* Disassemble the contents of an object file. */
1836 disassemble_data (bfd
*abfd
)
1838 struct disassemble_info disasm_info
;
1839 struct objdump_disasm_info aux
;
1843 prev_functionname
= NULL
;
1846 /* We make a copy of syms to sort. We don't want to sort syms
1847 because that will screw up the relocs. */
1848 sorted_symcount
= symcount
? symcount
: dynsymcount
;
1849 sorted_syms
= xmalloc ((sorted_symcount
+ synthcount
) * sizeof (asymbol
*));
1850 memcpy (sorted_syms
, symcount
? syms
: dynsyms
,
1851 sorted_symcount
* sizeof (asymbol
*));
1853 sorted_symcount
= remove_useless_symbols (sorted_syms
, sorted_symcount
);
1855 for (i
= 0; i
< synthcount
; ++i
)
1857 sorted_syms
[sorted_symcount
] = synthsyms
+ i
;
1861 /* Sort the symbols into section and symbol order. */
1862 qsort (sorted_syms
, sorted_symcount
, sizeof (asymbol
*), compare_symbols
);
1864 init_disassemble_info (&disasm_info
, stdout
, (fprintf_ftype
) fprintf
);
1866 disasm_info
.application_data
= (void *) &aux
;
1868 aux
.require_sec
= FALSE
;
1869 aux
.dynrelbuf
= NULL
;
1870 aux
.dynrelcount
= 0;
1873 disasm_info
.print_address_func
= objdump_print_address
;
1874 disasm_info
.symbol_at_address_func
= objdump_symbol_at_address
;
1876 if (machine
!= NULL
)
1878 const bfd_arch_info_type
*info
= bfd_scan_arch (machine
);
1881 fatal (_("Can't use supplied machine %s"), machine
);
1883 abfd
->arch_info
= info
;
1886 if (endian
!= BFD_ENDIAN_UNKNOWN
)
1888 struct bfd_target
*xvec
;
1890 xvec
= xmalloc (sizeof (struct bfd_target
));
1891 memcpy (xvec
, abfd
->xvec
, sizeof (struct bfd_target
));
1892 xvec
->byteorder
= endian
;
1896 /* Use libopcodes to locate a suitable disassembler. */
1897 aux
.disassemble_fn
= disassembler (abfd
);
1898 if (!aux
.disassemble_fn
)
1900 non_fatal (_("Can't disassemble for architecture %s\n"),
1901 bfd_printable_arch_mach (bfd_get_arch (abfd
), 0));
1906 disasm_info
.flavour
= bfd_get_flavour (abfd
);
1907 disasm_info
.arch
= bfd_get_arch (abfd
);
1908 disasm_info
.mach
= bfd_get_mach (abfd
);
1909 disasm_info
.disassembler_options
= disassembler_options
;
1910 disasm_info
.octets_per_byte
= bfd_octets_per_byte (abfd
);
1911 disasm_info
.skip_zeroes
= DEFAULT_SKIP_ZEROES
;
1912 disasm_info
.skip_zeroes_at_end
= DEFAULT_SKIP_ZEROES_AT_END
;
1913 disasm_info
.disassembler_needs_relocs
= FALSE
;
1915 if (bfd_big_endian (abfd
))
1916 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_BIG
;
1917 else if (bfd_little_endian (abfd
))
1918 disasm_info
.display_endian
= disasm_info
.endian
= BFD_ENDIAN_LITTLE
;
1920 /* ??? Aborting here seems too drastic. We could default to big or little
1922 disasm_info
.endian
= BFD_ENDIAN_UNKNOWN
;
1924 /* Allow the target to customize the info structure. */
1925 disassemble_init_for_target (& disasm_info
);
1927 /* Pre-load the dynamic relocs if we are going
1928 to be dumping them along with the disassembly. */
1929 if (dump_dynamic_reloc_info
)
1931 long relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
1934 bfd_fatal (bfd_get_filename (abfd
));
1938 aux
.dynrelbuf
= xmalloc (relsize
);
1939 aux
.dynrelcount
= bfd_canonicalize_dynamic_reloc (abfd
,
1942 if (aux
.dynrelcount
< 0)
1943 bfd_fatal (bfd_get_filename (abfd
));
1945 /* Sort the relocs by address. */
1946 qsort (aux
.dynrelbuf
, aux
.dynrelcount
, sizeof (arelent
*),
1950 disasm_info
.symtab
= sorted_syms
;
1951 disasm_info
.symtab_size
= sorted_symcount
;
1953 bfd_map_over_sections (abfd
, disassemble_section
, & disasm_info
);
1955 if (aux
.dynrelbuf
!= NULL
)
1956 free (aux
.dynrelbuf
);
1961 load_debug_section (enum dwarf_section_display_enum debug
, void *file
)
1963 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
1968 /* If it is already loaded, do nothing. */
1969 if (section
->start
!= NULL
)
1972 /* Locate the debug section. */
1973 sec
= bfd_get_section_by_name (abfd
, section
->name
);
1977 section
->address
= bfd_get_section_vma (abfd
, sec
);
1978 section
->size
= bfd_get_section_size (sec
);
1979 section
->start
= xmalloc (section
->size
);
1981 if (is_relocatable
&& debug_displays
[debug
].relocate
)
1982 ret
= bfd_simple_get_relocated_section_contents (abfd
,
1987 ret
= bfd_get_section_contents (abfd
, sec
, section
->start
, 0,
1992 free_debug_section (debug
);
1993 printf (_("\nCan't get contents for section '%s'.\n"),
2001 free_debug_section (enum dwarf_section_display_enum debug
)
2003 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
2005 if (section
->start
== NULL
)
2008 free ((char *) section
->start
);
2009 section
->start
= NULL
;
2010 section
->address
= 0;
2015 dump_dwarf_section (bfd
*abfd
, asection
*section
,
2016 void *arg ATTRIBUTE_UNUSED
)
2018 const char *name
= bfd_get_section_name (abfd
, section
);
2020 enum dwarf_section_display_enum i
;
2022 if (CONST_STRNEQ (name
, ".gnu.linkonce.wi."))
2023 match
= ".debug_info";
2027 for (i
= 0; i
< max
; i
++)
2028 if (strcmp (debug_displays
[i
].section
.name
, match
) == 0)
2030 if (!debug_displays
[i
].eh_frame
)
2032 struct dwarf_section
*sec
= &debug_displays
[i
].section
;
2034 if (load_debug_section (i
, abfd
))
2036 debug_displays
[i
].display (sec
, abfd
);
2038 if (i
!= info
&& i
!= abbrev
)
2039 free_debug_section (i
);
2046 static const char *mach_o_dwarf_sections
[] = {
2047 "LC_SEGMENT.__DWARFA.__debug_abbrev", /* .debug_abbrev */
2048 "LC_SEGMENT.__DWARFA.__debug_aranges", /* .debug_aranges */
2049 "LC_SEGMENT.__DWARFA.__debug_frame", /* .debug_frame */
2050 "LC_SEGMENT.__DWARFA.__debug_info", /* .debug_info */
2051 "LC_SEGMENT.__DWARFA.__debug_line", /* .debug_line */
2052 "LC_SEGMENT.__DWARFA.__debug_pubnames", /* .debug_pubnames */
2053 ".eh_frame", /* .eh_frame */
2054 "LC_SEGMENT.__DWARFA.__debug_macinfo", /* .debug_macinfo */
2055 "LC_SEGMENT.__DWARFA.__debug_str", /* .debug_str */
2056 "LC_SEGMENT.__DWARFA.__debug_loc", /* .debug_loc */
2057 "LC_SEGMENT.__DWARFA.__debug_pubtypes", /* .debug_pubtypes */
2058 "LC_SEGMENT.__DWARFA.__debug_ranges", /* .debug_ranges */
2059 "LC_SEGMENT.__DWARFA.__debug_static_func", /* .debug_static_func */
2060 "LC_SEGMENT.__DWARFA.__debug_static_vars", /* .debug_static_vars */
2061 "LC_SEGMENT.__DWARFA.__debug_types", /* .debug_types */
2062 "LC_SEGMENT.__DWARFA.__debug_weaknames" /* .debug_weaknames */
2065 static const char *generic_dwarf_sections
[max
];
2068 check_mach_o_dwarf (bfd
*abfd
)
2070 static enum bfd_flavour old_flavour
= bfd_target_unknown_flavour
;
2071 enum bfd_flavour current_flavour
= bfd_get_flavour (abfd
);
2072 enum dwarf_section_display_enum i
;
2074 if (generic_dwarf_sections
[0] == NULL
)
2075 for (i
= 0; i
< max
; i
++)
2076 generic_dwarf_sections
[i
] = debug_displays
[i
].section
.name
;
2078 if (old_flavour
!= current_flavour
)
2080 if (current_flavour
== bfd_target_mach_o_flavour
)
2081 for (i
= 0; i
< max
; i
++)
2082 debug_displays
[i
].section
.name
= mach_o_dwarf_sections
[i
];
2083 else if (old_flavour
== bfd_target_mach_o_flavour
)
2084 for (i
= 0; i
< max
; i
++)
2085 debug_displays
[i
].section
.name
= generic_dwarf_sections
[i
];
2087 old_flavour
= current_flavour
;
2091 /* Dump the dwarf debugging information. */
2094 dump_dwarf (bfd
*abfd
)
2096 is_relocatable
= ((abfd
->flags
& (HAS_RELOC
| EXEC_P
| DYNAMIC
))
2099 /* FIXME: bfd_get_arch_size may return -1. We assume that 64bit
2100 targets will return 64. */
2101 eh_addr_size
= bfd_get_arch_size (abfd
) == 64 ? 8 : 4;
2103 if (bfd_big_endian (abfd
))
2104 byte_get
= byte_get_big_endian
;
2105 else if (bfd_little_endian (abfd
))
2106 byte_get
= byte_get_little_endian
;
2110 check_mach_o_dwarf (abfd
);
2112 bfd_map_over_sections (abfd
, dump_dwarf_section
, NULL
);
2114 free_debug_memory ();
2117 /* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
2118 it. Return NULL on failure. */
2121 read_section_stabs (bfd
*abfd
, const char *sect_name
, bfd_size_type
*size_ptr
)
2127 stabsect
= bfd_get_section_by_name (abfd
, sect_name
);
2128 if (stabsect
== NULL
)
2130 printf (_("No %s section present\n\n"), sect_name
);
2134 size
= bfd_section_size (abfd
, stabsect
);
2135 contents
= xmalloc (size
);
2137 if (! bfd_get_section_contents (abfd
, stabsect
, contents
, 0, size
))
2139 non_fatal (_("Reading %s section of %s failed: %s"),
2140 sect_name
, bfd_get_filename (abfd
),
2141 bfd_errmsg (bfd_get_error ()));
2152 /* Stabs entries use a 12 byte format:
2153 4 byte string table index
2155 1 byte stab other field
2156 2 byte stab desc field
2158 FIXME: This will have to change for a 64 bit object format. */
2160 #define STRDXOFF (0)
2162 #define OTHEROFF (5)
2165 #define STABSIZE (12)
2167 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2168 using string table section STRSECT_NAME (in `strtab'). */
2171 print_section_stabs (bfd
*abfd
,
2172 const char *stabsect_name
,
2173 unsigned *string_offset_ptr
)
2176 unsigned file_string_table_offset
= 0;
2177 unsigned next_file_string_table_offset
= *string_offset_ptr
;
2178 bfd_byte
*stabp
, *stabs_end
;
2181 stabs_end
= stabp
+ stab_size
;
2183 printf (_("Contents of %s section:\n\n"), stabsect_name
);
2184 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2186 /* Loop through all symbols and print them.
2188 We start the index at -1 because there is a dummy symbol on
2189 the front of stabs-in-{coff,elf} sections that supplies sizes. */
2190 for (i
= -1; stabp
< stabs_end
; stabp
+= STABSIZE
, i
++)
2194 unsigned char type
, other
;
2195 unsigned short desc
;
2198 strx
= bfd_h_get_32 (abfd
, stabp
+ STRDXOFF
);
2199 type
= bfd_h_get_8 (abfd
, stabp
+ TYPEOFF
);
2200 other
= bfd_h_get_8 (abfd
, stabp
+ OTHEROFF
);
2201 desc
= bfd_h_get_16 (abfd
, stabp
+ DESCOFF
);
2202 value
= bfd_h_get_32 (abfd
, stabp
+ VALOFF
);
2204 printf ("\n%-6d ", i
);
2205 /* Either print the stab name, or, if unnamed, print its number
2206 again (makes consistent formatting for tools like awk). */
2207 name
= bfd_get_stab_name (type
);
2209 printf ("%-6s", name
);
2210 else if (type
== N_UNDF
)
2213 printf ("%-6d", type
);
2214 printf (" %-6d %-6d ", other
, desc
);
2215 bfd_printf_vma (abfd
, value
);
2216 printf (" %-6lu", strx
);
2218 /* Symbols with type == 0 (N_UNDF) specify the length of the
2219 string table associated with this file. We use that info
2220 to know how to relocate the *next* file's string table indices. */
2223 file_string_table_offset
= next_file_string_table_offset
;
2224 next_file_string_table_offset
+= value
;
2228 /* Using the (possibly updated) string table offset, print the
2229 string (if any) associated with this symbol. */
2230 if ((strx
+ file_string_table_offset
) < stabstr_size
)
2231 printf (" %s", &strtab
[strx
+ file_string_table_offset
]);
2237 *string_offset_ptr
= next_file_string_table_offset
;
2242 const char * section_name
;
2243 const char * string_section_name
;
2244 unsigned string_offset
;
2249 find_stabs_section (bfd
*abfd
, asection
*section
, void *names
)
2252 stab_section_names
* sought
= (stab_section_names
*) names
;
2254 /* Check for section names for which stabsect_name is a prefix, to
2255 handle .stab.N, etc. */
2256 len
= strlen (sought
->section_name
);
2258 /* If the prefix matches, and the files section name ends with a
2259 nul or a digit, then we match. I.e., we want either an exact
2260 match or a section followed by a number. */
2261 if (strncmp (sought
->section_name
, section
->name
, len
) == 0
2262 && (section
->name
[len
] == 0
2263 || (section
->name
[len
] == '.' && ISDIGIT (section
->name
[len
+ 1]))))
2266 strtab
= read_section_stabs (abfd
, sought
->string_section_name
,
2271 stabs
= (bfd_byte
*) read_section_stabs (abfd
, section
->name
,
2274 print_section_stabs (abfd
, section
->name
, &sought
->string_offset
);
2280 dump_stabs_section (bfd
*abfd
, char *stabsect_name
, char *strsect_name
)
2282 stab_section_names s
;
2284 s
.section_name
= stabsect_name
;
2285 s
.string_section_name
= strsect_name
;
2286 s
.string_offset
= 0;
2288 bfd_map_over_sections (abfd
, find_stabs_section
, & s
);
2294 /* Dump the any sections containing stabs debugging information. */
2297 dump_stabs (bfd
*abfd
)
2299 dump_stabs_section (abfd
, ".stab", ".stabstr");
2300 dump_stabs_section (abfd
, ".stab.excl", ".stab.exclstr");
2301 dump_stabs_section (abfd
, ".stab.index", ".stab.indexstr");
2302 dump_stabs_section (abfd
, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2306 dump_bfd_header (bfd
*abfd
)
2310 printf (_("architecture: %s, "),
2311 bfd_printable_arch_mach (bfd_get_arch (abfd
),
2312 bfd_get_mach (abfd
)));
2313 printf (_("flags 0x%08x:\n"), abfd
->flags
);
2315 #define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
2316 PF (HAS_RELOC
, "HAS_RELOC");
2317 PF (EXEC_P
, "EXEC_P");
2318 PF (HAS_LINENO
, "HAS_LINENO");
2319 PF (HAS_DEBUG
, "HAS_DEBUG");
2320 PF (HAS_SYMS
, "HAS_SYMS");
2321 PF (HAS_LOCALS
, "HAS_LOCALS");
2322 PF (DYNAMIC
, "DYNAMIC");
2323 PF (WP_TEXT
, "WP_TEXT");
2324 PF (D_PAGED
, "D_PAGED");
2325 PF (BFD_IS_RELAXABLE
, "BFD_IS_RELAXABLE");
2326 PF (HAS_LOAD_PAGE
, "HAS_LOAD_PAGE");
2327 printf (_("\nstart address 0x"));
2328 bfd_printf_vma (abfd
, abfd
->start_address
);
2334 dump_bfd_private_header (bfd
*abfd
)
2336 bfd_print_private_bfd_data (abfd
, stdout
);
2340 /* Display a section in hexadecimal format with associated characters.
2341 Each line prefixed by the zero padded address. */
2344 dump_section (bfd
*abfd
, asection
*section
, void *dummy ATTRIBUTE_UNUSED
)
2347 bfd_size_type datasize
;
2348 bfd_size_type addr_offset
;
2349 bfd_size_type start_offset
;
2350 bfd_size_type stop_offset
;
2351 unsigned int opb
= bfd_octets_per_byte (abfd
);
2352 /* Bytes per line. */
2353 const int onaline
= 16;
2358 if ((section
->flags
& SEC_HAS_CONTENTS
) == 0)
2361 if (! process_section_p (section
))
2364 if ((datasize
= bfd_section_size (abfd
, section
)) == 0)
2367 printf (_("Contents of section %s:\n"), section
->name
);
2369 data
= xmalloc (datasize
);
2371 bfd_get_section_contents (abfd
, section
, data
, 0, datasize
);
2373 /* Compute the address range to display. */
2374 if (start_address
== (bfd_vma
) -1
2375 || start_address
< section
->vma
)
2378 start_offset
= start_address
- section
->vma
;
2380 if (stop_address
== (bfd_vma
) -1)
2381 stop_offset
= datasize
/ opb
;
2384 if (stop_address
< section
->vma
)
2387 stop_offset
= stop_address
- section
->vma
;
2389 if (stop_offset
> datasize
/ opb
)
2390 stop_offset
= datasize
/ opb
;
2395 bfd_sprintf_vma (abfd
, buf
, start_offset
+ section
->vma
);
2396 if (strlen (buf
) >= sizeof (buf
))
2400 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
2402 count
= strlen (buf
) - count
;
2406 bfd_sprintf_vma (abfd
, buf
, stop_offset
+ section
->vma
- 1);
2407 if (strlen (buf
) >= sizeof (buf
))
2411 while (buf
[count
] == '0' && buf
[count
+1] != '\0')
2413 count
= strlen (buf
) - count
;
2417 for (addr_offset
= start_offset
;
2418 addr_offset
< stop_offset
; addr_offset
+= onaline
/ opb
)
2422 bfd_sprintf_vma (abfd
, buf
, (addr_offset
+ section
->vma
));
2423 count
= strlen (buf
);
2424 if ((size_t) count
>= sizeof (buf
))
2428 while (count
< width
)
2433 fputs (buf
+ count
- width
, stdout
);
2436 for (j
= addr_offset
* opb
;
2437 j
< addr_offset
* opb
+ onaline
; j
++)
2439 if (j
< stop_offset
* opb
)
2440 printf ("%02x", (unsigned) (data
[j
]));
2448 for (j
= addr_offset
* opb
;
2449 j
< addr_offset
* opb
+ onaline
; j
++)
2451 if (j
>= stop_offset
* opb
)
2454 printf ("%c", ISPRINT (data
[j
]) ? data
[j
] : '.');
2461 /* Actually display the various requested regions. */
2464 dump_data (bfd
*abfd
)
2466 bfd_map_over_sections (abfd
, dump_section
, NULL
);
2469 /* Should perhaps share code and display with nm? */
2472 dump_symbols (bfd
*abfd ATTRIBUTE_UNUSED
, bfd_boolean dynamic
)
2482 printf ("DYNAMIC SYMBOL TABLE:\n");
2488 printf ("SYMBOL TABLE:\n");
2492 printf (_("no symbols\n"));
2494 for (count
= 0; count
< max
; count
++)
2498 if (*current
== NULL
)
2499 printf (_("no information for symbol number %ld\n"), count
);
2501 else if ((cur_bfd
= bfd_asymbol_bfd (*current
)) == NULL
)
2502 printf (_("could not determine the type of symbol number %ld\n"),
2505 else if (process_section_p ((* current
)->section
)
2506 && (dump_special_syms
2507 || !bfd_is_target_special_symbol (cur_bfd
, *current
)))
2509 const char *name
= (*current
)->name
;
2511 if (do_demangle
&& name
!= NULL
&& *name
!= '\0')
2515 /* If we want to demangle the name, we demangle it
2516 here, and temporarily clobber it while calling
2517 bfd_print_symbol. FIXME: This is a gross hack. */
2518 alloc
= demangle (cur_bfd
, name
);
2519 (*current
)->name
= alloc
;
2520 bfd_print_symbol (cur_bfd
, stdout
, *current
,
2521 bfd_print_symbol_all
);
2522 (*current
)->name
= name
;
2526 bfd_print_symbol (cur_bfd
, stdout
, *current
,
2527 bfd_print_symbol_all
);
2537 dump_reloc_set (bfd
*abfd
, asection
*sec
, arelent
**relpp
, long relcount
)
2540 char *last_filename
, *last_functionname
;
2541 unsigned int last_line
;
2543 /* Get column headers lined up reasonably. */
2551 bfd_sprintf_vma (abfd
, buf
, (bfd_vma
) -1);
2552 width
= strlen (buf
) - 7;
2554 printf ("OFFSET %*s TYPE %*s VALUE \n", width
, "", 12, "");
2557 last_filename
= NULL
;
2558 last_functionname
= NULL
;
2561 for (p
= relpp
; relcount
&& *p
!= NULL
; p
++, relcount
--)
2564 const char *filename
, *functionname
;
2566 const char *sym_name
;
2567 const char *section_name
;
2569 if (start_address
!= (bfd_vma
) -1
2570 && q
->address
< start_address
)
2572 if (stop_address
!= (bfd_vma
) -1
2573 && q
->address
> stop_address
)
2576 if (with_line_numbers
2578 && bfd_find_nearest_line (abfd
, sec
, syms
, q
->address
,
2579 &filename
, &functionname
, &line
))
2581 if (functionname
!= NULL
2582 && (last_functionname
== NULL
2583 || strcmp (functionname
, last_functionname
) != 0))
2585 printf ("%s():\n", functionname
);
2586 if (last_functionname
!= NULL
)
2587 free (last_functionname
);
2588 last_functionname
= xstrdup (functionname
);
2592 && (line
!= last_line
2593 || (filename
!= NULL
2594 && last_filename
!= NULL
2595 && strcmp (filename
, last_filename
) != 0)))
2597 printf ("%s:%u\n", filename
== NULL
? "???" : filename
, line
);
2599 if (last_filename
!= NULL
)
2600 free (last_filename
);
2601 if (filename
== NULL
)
2602 last_filename
= NULL
;
2604 last_filename
= xstrdup (filename
);
2608 if (q
->sym_ptr_ptr
&& *q
->sym_ptr_ptr
)
2610 sym_name
= (*(q
->sym_ptr_ptr
))->name
;
2611 section_name
= (*(q
->sym_ptr_ptr
))->section
->name
;
2616 section_name
= NULL
;
2619 bfd_printf_vma (abfd
, q
->address
);
2620 if (q
->howto
== NULL
)
2621 printf (" *unknown* ");
2622 else if (q
->howto
->name
)
2623 printf (" %-16s ", q
->howto
->name
);
2625 printf (" %-16d ", q
->howto
->type
);
2627 objdump_print_symname (abfd
, NULL
, *q
->sym_ptr_ptr
);
2630 if (section_name
== NULL
)
2631 section_name
= "*unknown*";
2632 printf ("[%s]", section_name
);
2638 bfd_printf_vma (abfd
, q
->addend
);
2646 dump_relocs_in_section (bfd
*abfd
,
2648 void *dummy ATTRIBUTE_UNUSED
)
2654 if ( bfd_is_abs_section (section
)
2655 || bfd_is_und_section (section
)
2656 || bfd_is_com_section (section
)
2657 || (! process_section_p (section
))
2658 || ((section
->flags
& SEC_RELOC
) == 0))
2661 relsize
= bfd_get_reloc_upper_bound (abfd
, section
);
2663 bfd_fatal (bfd_get_filename (abfd
));
2665 printf ("RELOCATION RECORDS FOR [%s]:", section
->name
);
2669 printf (" (none)\n\n");
2673 relpp
= xmalloc (relsize
);
2674 relcount
= bfd_canonicalize_reloc (abfd
, section
, relpp
, syms
);
2677 bfd_fatal (bfd_get_filename (abfd
));
2678 else if (relcount
== 0)
2679 printf (" (none)\n\n");
2683 dump_reloc_set (abfd
, section
, relpp
, relcount
);
2690 dump_relocs (bfd
*abfd
)
2692 bfd_map_over_sections (abfd
, dump_relocs_in_section
, NULL
);
2696 dump_dynamic_relocs (bfd
*abfd
)
2702 relsize
= bfd_get_dynamic_reloc_upper_bound (abfd
);
2704 bfd_fatal (bfd_get_filename (abfd
));
2706 printf ("DYNAMIC RELOCATION RECORDS");
2709 printf (" (none)\n\n");
2712 relpp
= xmalloc (relsize
);
2713 relcount
= bfd_canonicalize_dynamic_reloc (abfd
, relpp
, dynsyms
);
2716 bfd_fatal (bfd_get_filename (abfd
));
2717 else if (relcount
== 0)
2718 printf (" (none)\n\n");
2722 dump_reloc_set (abfd
, NULL
, relpp
, relcount
);
2729 /* Creates a table of paths, to search for source files. */
2732 add_include_path (const char *path
)
2736 include_path_count
++;
2737 include_paths
= xrealloc (include_paths
,
2738 include_path_count
* sizeof (*include_paths
));
2739 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2740 if (path
[1] == ':' && path
[2] == 0)
2741 path
= concat (path
, ".", (const char *) 0);
2743 include_paths
[include_path_count
- 1] = path
;
2747 adjust_addresses (bfd
*abfd ATTRIBUTE_UNUSED
,
2751 if ((section
->flags
& SEC_DEBUGGING
) == 0)
2753 bfd_boolean
*has_reloc_p
= (bfd_boolean
*) arg
;
2754 section
->vma
+= adjust_section_vma
;
2756 section
->lma
+= adjust_section_vma
;
2760 /* Dump selected contents of ABFD. */
2763 dump_bfd (bfd
*abfd
)
2765 /* If we are adjusting section VMA's, change them all now. Changing
2766 the BFD information is a hack. However, we must do it, or
2767 bfd_find_nearest_line will not do the right thing. */
2768 if (adjust_section_vma
!= 0)
2770 bfd_boolean has_reloc
= (abfd
->flags
& HAS_RELOC
);
2771 bfd_map_over_sections (abfd
, adjust_addresses
, &has_reloc
);
2774 if (! dump_debugging_tags
)
2775 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd
),
2778 print_arelt_descr (stdout
, abfd
, TRUE
);
2779 if (dump_file_header
)
2780 dump_bfd_header (abfd
);
2781 if (dump_private_headers
)
2782 dump_bfd_private_header (abfd
);
2783 if (! dump_debugging_tags
)
2785 if (dump_section_headers
)
2786 dump_headers (abfd
);
2792 || dump_dwarf_section_info
)
2793 syms
= slurp_symtab (abfd
);
2794 if (dump_dynamic_symtab
|| dump_dynamic_reloc_info
2795 || (disassemble
&& bfd_get_dynamic_symtab_upper_bound (abfd
) > 0))
2796 dynsyms
= slurp_dynamic_symtab (abfd
);
2799 synthcount
= bfd_get_synthetic_symtab (abfd
, symcount
, syms
,
2800 dynsymcount
, dynsyms
, &synthsyms
);
2806 dump_symbols (abfd
, FALSE
);
2807 if (dump_dynamic_symtab
)
2808 dump_symbols (abfd
, TRUE
);
2809 if (dump_dwarf_section_info
)
2811 if (dump_stab_section_info
)
2813 if (dump_reloc_info
&& ! disassemble
)
2815 if (dump_dynamic_reloc_info
&& ! disassemble
)
2816 dump_dynamic_relocs (abfd
);
2817 if (dump_section_contents
)
2820 disassemble_data (abfd
);
2826 dhandle
= read_debugging_info (abfd
, syms
, symcount
);
2827 if (dhandle
!= NULL
)
2829 if (! print_debugging_info (stdout
, dhandle
, abfd
, syms
, demangle
,
2830 dump_debugging_tags
? TRUE
: FALSE
))
2832 non_fatal (_("%s: printing debugging information failed"),
2833 bfd_get_filename (abfd
));
2863 display_bfd (bfd
*abfd
)
2867 if (bfd_check_format_matches (abfd
, bfd_object
, &matching
))
2873 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
2875 nonfatal (bfd_get_filename (abfd
));
2876 list_matching_formats (matching
);
2881 if (bfd_get_error () != bfd_error_file_not_recognized
)
2883 nonfatal (bfd_get_filename (abfd
));
2887 if (bfd_check_format_matches (abfd
, bfd_core
, &matching
))
2893 nonfatal (bfd_get_filename (abfd
));
2895 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
2897 list_matching_formats (matching
);
2903 display_file (char *filename
, char *target
)
2908 if (get_file_size (filename
) < 1)
2914 file
= bfd_openr (filename
, target
);
2917 nonfatal (filename
);
2921 /* If the file is an archive, process all of its elements. */
2922 if (bfd_check_format (file
, bfd_archive
))
2924 bfd
*last_arfile
= NULL
;
2926 printf (_("In archive %s:\n"), bfd_get_filename (file
));
2929 bfd_set_error (bfd_error_no_error
);
2931 arfile
= bfd_openr_next_archived_file (file
, arfile
);
2934 if (bfd_get_error () != bfd_error_no_more_archived_files
)
2935 nonfatal (bfd_get_filename (file
));
2939 display_bfd (arfile
);
2941 if (last_arfile
!= NULL
)
2942 bfd_close (last_arfile
);
2943 last_arfile
= arfile
;
2946 if (last_arfile
!= NULL
)
2947 bfd_close (last_arfile
);
2956 main (int argc
, char **argv
)
2959 char *target
= default_target
;
2960 bfd_boolean seenflag
= FALSE
;
2962 #if defined (HAVE_SETLOCALE)
2963 #if defined (HAVE_LC_MESSAGES)
2964 setlocale (LC_MESSAGES
, "");
2966 setlocale (LC_CTYPE
, "");
2969 bindtextdomain (PACKAGE
, LOCALEDIR
);
2970 textdomain (PACKAGE
);
2972 program_name
= *argv
;
2973 xmalloc_set_program_name (program_name
);
2975 START_PROGRESS (program_name
, 0);
2977 expandargv (&argc
, &argv
);
2980 set_default_bfd_target ();
2982 while ((c
= getopt_long (argc
, argv
, "pib:m:M:VvCdDlfaHhrRtTxsSI:j:wE:zgeGW",
2983 long_options
, (int *) 0))
2989 break; /* We've been given a long option. */
2994 if (disassembler_options
)
2995 /* Ignore potential memory leak for now. */
2996 disassembler_options
= concat (disassembler_options
, ",",
2999 disassembler_options
= optarg
;
3002 if (only_used
== only_size
)
3005 only
= xrealloc (only
, only_size
* sizeof (char *));
3007 only
[only_used
++] = optarg
;
3010 with_line_numbers
= TRUE
;
3019 enum demangling_styles style
;
3021 style
= cplus_demangle_name_to_style (optarg
);
3022 if (style
== unknown_demangling
)
3023 fatal (_("unknown demangling style `%s'"),
3026 cplus_demangle_set_style (style
);
3032 case OPTION_ADJUST_VMA
:
3033 adjust_section_vma
= parse_vma (optarg
, "--adjust-vma");
3035 case OPTION_START_ADDRESS
:
3036 start_address
= parse_vma (optarg
, "--start-address");
3038 case OPTION_STOP_ADDRESS
:
3039 stop_address
= parse_vma (optarg
, "--stop-address");
3042 if (strcmp (optarg
, "B") == 0)
3043 endian
= BFD_ENDIAN_BIG
;
3044 else if (strcmp (optarg
, "L") == 0)
3045 endian
= BFD_ENDIAN_LITTLE
;
3048 non_fatal (_("unrecognized -E option"));
3053 if (strncmp (optarg
, "big", strlen (optarg
)) == 0)
3054 endian
= BFD_ENDIAN_BIG
;
3055 else if (strncmp (optarg
, "little", strlen (optarg
)) == 0)
3056 endian
= BFD_ENDIAN_LITTLE
;
3059 non_fatal (_("unrecognized --endian type `%s'"), optarg
);
3065 dump_file_header
= TRUE
;
3069 formats_info
= TRUE
;
3073 add_include_path (optarg
);
3076 dump_private_headers
= TRUE
;
3080 dump_private_headers
= TRUE
;
3082 dump_reloc_info
= TRUE
;
3083 dump_file_header
= TRUE
;
3084 dump_ar_hdrs
= TRUE
;
3085 dump_section_headers
= TRUE
;
3093 dump_dynamic_symtab
= TRUE
;
3101 disassemble_zeroes
= TRUE
;
3105 disassemble_all
= TRUE
;
3110 with_source_code
= TRUE
;
3119 dump_debugging_tags
= 1;
3124 dump_dwarf_section_info
= TRUE
;
3127 do_debug_abbrevs
= 1;
3129 do_debug_pubnames
= 1;
3130 do_debug_aranges
= 1;
3131 do_debug_ranges
= 1;
3132 do_debug_frames
= 1;
3133 do_debug_macinfo
= 1;
3138 dump_stab_section_info
= TRUE
;
3142 dump_section_contents
= TRUE
;
3146 dump_reloc_info
= TRUE
;
3150 dump_dynamic_reloc_info
= TRUE
;
3154 dump_ar_hdrs
= TRUE
;
3158 dump_section_headers
= TRUE
;
3166 show_version
= TRUE
;
3176 print_version ("objdump");
3182 exit_status
= display_info ();
3186 display_file ("a.out", target
);
3188 for (; optind
< argc
;)
3189 display_file (argv
[optind
++], target
);
3192 END_PROGRESS (program_name
);