Fix failures in MMIX linker tests introduced by fix for PR 21665.
[deliverable/binutils-gdb.git] / binutils / objdump.c
1 /* objdump.c -- dump information about an object file.
2 Copyright (C) 1990-2017 Free Software Foundation, Inc.
3
4 This file is part of GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21
22 /* Objdump overview.
23
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.
28
29 The flow of execution is as follows:
30
31 1. Command line arguments are checked for control switches and the
32 information to be displayed is selected.
33
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.
37
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
40 called.
41
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.
45
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. */
50
51 #include "sysdep.h"
52 #include "bfd.h"
53 #include "elf-bfd.h"
54 #include "coff-bfd.h"
55 #include "progress.h"
56 #include "bucomm.h"
57 #include "elfcomm.h"
58 #include "dwarf.h"
59 #include "getopt.h"
60 #include "safe-ctype.h"
61 #include "dis-asm.h"
62 #include "libiberty.h"
63 #include "demangle.h"
64 #include "filenames.h"
65 #include "debug.h"
66 #include "budbg.h"
67 #include "objdump.h"
68
69 #ifdef HAVE_MMAP
70 #include <sys/mman.h>
71 #endif
72
73 /* Internal headers for the ELF .stab-dump code - sorry. */
74 #define BYTES_IN_WORD 32
75 #include "aout/aout64.h"
76
77 /* Exit status. */
78 static int exit_status = 0;
79
80 static char *default_target = NULL; /* Default at runtime. */
81
82 /* The following variables are set based on arguments passed on the
83 command line. */
84 static int show_version = 0; /* Show the version number. */
85 static int dump_section_contents; /* -s */
86 static int dump_section_headers; /* -h */
87 static bfd_boolean dump_file_header; /* -f */
88 static int dump_symtab; /* -t */
89 static int dump_dynamic_symtab; /* -T */
90 static int dump_reloc_info; /* -r */
91 static int dump_dynamic_reloc_info; /* -R */
92 static int dump_ar_hdrs; /* -a */
93 static int dump_private_headers; /* -p */
94 static char *dump_private_options; /* -P */
95 static int prefix_addresses; /* --prefix-addresses */
96 static int with_line_numbers; /* -l */
97 static bfd_boolean with_source_code; /* -S */
98 static int show_raw_insn; /* --show-raw-insn */
99 static int dump_dwarf_section_info; /* --dwarf */
100 static int dump_stab_section_info; /* --stabs */
101 static int do_demangle; /* -C, --demangle */
102 static bfd_boolean disassemble; /* -d */
103 static bfd_boolean disassemble_all; /* -D */
104 static int disassemble_zeroes; /* --disassemble-zeroes */
105 static bfd_boolean formats_info; /* -i */
106 static int wide_output; /* -w */
107 static int insn_width; /* --insn-width */
108 static bfd_vma start_address = (bfd_vma) -1; /* --start-address */
109 static bfd_vma stop_address = (bfd_vma) -1; /* --stop-address */
110 static int dump_debugging; /* --debugging */
111 static int dump_debugging_tags; /* --debugging-tags */
112 static int suppress_bfd_header;
113 static int dump_special_syms = 0; /* --special-syms */
114 static bfd_vma adjust_section_vma = 0; /* --adjust-vma */
115 static int file_start_context = 0; /* --file-start-context */
116 static bfd_boolean display_file_offsets;/* -F */
117 static const char *prefix; /* --prefix */
118 static int prefix_strip; /* --prefix-strip */
119 static size_t prefix_length;
120 static bfd_boolean unwind_inlines; /* --inlines. */
121
122 /* A structure to record the sections mentioned in -j switches. */
123 struct only
124 {
125 const char * name; /* The name of the section. */
126 bfd_boolean seen; /* A flag to indicate that the section has been found in one or more input files. */
127 struct only * next; /* Pointer to the next structure in the list. */
128 };
129 /* Pointer to an array of 'only' structures.
130 This pointer is NULL if the -j switch has not been used. */
131 static struct only * only_list = NULL;
132
133 /* Variables for handling include file path table. */
134 static const char **include_paths;
135 static int include_path_count;
136
137 /* Extra info to pass to the section disassembler and address printing
138 function. */
139 struct objdump_disasm_info
140 {
141 bfd * abfd;
142 asection * sec;
143 bfd_boolean require_sec;
144 arelent ** dynrelbuf;
145 long dynrelcount;
146 disassembler_ftype disassemble_fn;
147 arelent * reloc;
148 };
149
150 /* Architecture to disassemble for, or default if NULL. */
151 static char *machine = NULL;
152
153 /* Target specific options to the disassembler. */
154 static char *disassembler_options = NULL;
155
156 /* Endianness to disassemble for, or default if BFD_ENDIAN_UNKNOWN. */
157 static enum bfd_endian endian = BFD_ENDIAN_UNKNOWN;
158
159 /* The symbol table. */
160 static asymbol **syms;
161
162 /* Number of symbols in `syms'. */
163 static long symcount = 0;
164
165 /* The sorted symbol table. */
166 static asymbol **sorted_syms;
167
168 /* Number of symbols in `sorted_syms'. */
169 static long sorted_symcount = 0;
170
171 /* The dynamic symbol table. */
172 static asymbol **dynsyms;
173
174 /* The synthetic symbol table. */
175 static asymbol *synthsyms;
176 static long synthcount = 0;
177
178 /* Number of symbols in `dynsyms'. */
179 static long dynsymcount = 0;
180
181 static bfd_byte *stabs;
182 static bfd_size_type stab_size;
183
184 static char *strtab;
185 static bfd_size_type stabstr_size;
186
187 static bfd_boolean is_relocatable = FALSE;
188
189 /* Handlers for -P/--private. */
190 static const struct objdump_private_desc * const objdump_private_vectors[] =
191 {
192 OBJDUMP_PRIVATE_VECTORS
193 NULL
194 };
195 \f
196 static void usage (FILE *, int) ATTRIBUTE_NORETURN;
197 static void
198 usage (FILE *stream, int status)
199 {
200 fprintf (stream, _("Usage: %s <option(s)> <file(s)>\n"), program_name);
201 fprintf (stream, _(" Display information from object <file(s)>.\n"));
202 fprintf (stream, _(" At least one of the following switches must be given:\n"));
203 fprintf (stream, _("\
204 -a, --archive-headers Display archive header information\n\
205 -f, --file-headers Display the contents of the overall file header\n\
206 -p, --private-headers Display object format specific file header contents\n\
207 -P, --private=OPT,OPT... Display object format specific contents\n\
208 -h, --[section-]headers Display the contents of the section headers\n\
209 -x, --all-headers Display the contents of all headers\n\
210 -d, --disassemble Display assembler contents of executable sections\n\
211 -D, --disassemble-all Display assembler contents of all sections\n\
212 -S, --source Intermix source code with disassembly\n\
213 -s, --full-contents Display the full contents of all sections requested\n\
214 -g, --debugging Display debug information in object file\n\
215 -e, --debugging-tags Display debug information using ctags style\n\
216 -G, --stabs Display (in raw form) any STABS info in the file\n\
217 -W[lLiaprmfFsoRt] or\n\
218 --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
219 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
220 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
221 =addr,=cu_index]\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\
231 "));
232 if (status != 2)
233 {
234 const struct objdump_private_desc * const *desc;
235
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\
251 or `gnat'\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 --inlines Print all inlines for source line (with -l)\n\
262 --prefix=PREFIX Add PREFIX to absolute paths for -S\n\
263 --prefix-strip=LEVEL Strip initial directory names for -S\n"));
264 fprintf (stream, _("\
265 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
266 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
267 or deeper\n\
268 --dwarf-check Make additional dwarf internal consistency checks.\
269 \n\n"));
270 list_supported_targets (program_name, stream);
271 list_supported_architectures (program_name, stream);
272
273 disassembler_usage (stream);
274
275 if (objdump_private_vectors[0] != NULL)
276 {
277 fprintf (stream,
278 _("\nOptions supported for -P/--private switch:\n"));
279 for (desc = objdump_private_vectors; *desc != NULL; desc++)
280 (*desc)->help (stream);
281 }
282 }
283 if (REPORT_BUGS_TO[0] && status == 0)
284 fprintf (stream, _("Report bugs to %s.\n"), REPORT_BUGS_TO);
285 exit (status);
286 }
287
288 /* 150 isn't special; it's just an arbitrary non-ASCII char value. */
289 enum option_values
290 {
291 OPTION_ENDIAN=150,
292 OPTION_START_ADDRESS,
293 OPTION_STOP_ADDRESS,
294 OPTION_DWARF,
295 OPTION_PREFIX,
296 OPTION_PREFIX_STRIP,
297 OPTION_INSN_WIDTH,
298 OPTION_ADJUST_VMA,
299 OPTION_DWARF_DEPTH,
300 OPTION_DWARF_CHECK,
301 OPTION_DWARF_START,
302 OPTION_INLINES
303 };
304
305 static struct option long_options[]=
306 {
307 {"adjust-vma", required_argument, NULL, OPTION_ADJUST_VMA},
308 {"all-headers", no_argument, NULL, 'x'},
309 {"private-headers", no_argument, NULL, 'p'},
310 {"private", required_argument, NULL, 'P'},
311 {"architecture", required_argument, NULL, 'm'},
312 {"archive-headers", no_argument, NULL, 'a'},
313 {"debugging", no_argument, NULL, 'g'},
314 {"debugging-tags", no_argument, NULL, 'e'},
315 {"demangle", optional_argument, NULL, 'C'},
316 {"disassemble", no_argument, NULL, 'd'},
317 {"disassemble-all", no_argument, NULL, 'D'},
318 {"disassembler-options", required_argument, NULL, 'M'},
319 {"disassemble-zeroes", no_argument, NULL, 'z'},
320 {"dynamic-reloc", no_argument, NULL, 'R'},
321 {"dynamic-syms", no_argument, NULL, 'T'},
322 {"endian", required_argument, NULL, OPTION_ENDIAN},
323 {"file-headers", no_argument, NULL, 'f'},
324 {"file-offsets", no_argument, NULL, 'F'},
325 {"file-start-context", no_argument, &file_start_context, 1},
326 {"full-contents", no_argument, NULL, 's'},
327 {"headers", no_argument, NULL, 'h'},
328 {"help", no_argument, NULL, 'H'},
329 {"info", no_argument, NULL, 'i'},
330 {"line-numbers", no_argument, NULL, 'l'},
331 {"no-show-raw-insn", no_argument, &show_raw_insn, -1},
332 {"prefix-addresses", no_argument, &prefix_addresses, 1},
333 {"reloc", no_argument, NULL, 'r'},
334 {"section", required_argument, NULL, 'j'},
335 {"section-headers", no_argument, NULL, 'h'},
336 {"show-raw-insn", no_argument, &show_raw_insn, 1},
337 {"source", no_argument, NULL, 'S'},
338 {"special-syms", no_argument, &dump_special_syms, 1},
339 {"include", required_argument, NULL, 'I'},
340 {"dwarf", optional_argument, NULL, OPTION_DWARF},
341 {"stabs", no_argument, NULL, 'G'},
342 {"start-address", required_argument, NULL, OPTION_START_ADDRESS},
343 {"stop-address", required_argument, NULL, OPTION_STOP_ADDRESS},
344 {"syms", no_argument, NULL, 't'},
345 {"target", required_argument, NULL, 'b'},
346 {"version", no_argument, NULL, 'V'},
347 {"wide", no_argument, NULL, 'w'},
348 {"prefix", required_argument, NULL, OPTION_PREFIX},
349 {"prefix-strip", required_argument, NULL, OPTION_PREFIX_STRIP},
350 {"insn-width", required_argument, NULL, OPTION_INSN_WIDTH},
351 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
352 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
353 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
354 {"inlines", no_argument, 0, OPTION_INLINES},
355 {0, no_argument, 0, 0}
356 };
357 \f
358 static void
359 nonfatal (const char *msg)
360 {
361 bfd_nonfatal (msg);
362 exit_status = 1;
363 }
364 \f
365 /* Returns TRUE if the specified section should be dumped. */
366
367 static bfd_boolean
368 process_section_p (asection * section)
369 {
370 struct only * only;
371
372 if (only_list == NULL)
373 return TRUE;
374
375 for (only = only_list; only; only = only->next)
376 if (strcmp (only->name, section->name) == 0)
377 {
378 only->seen = TRUE;
379 return TRUE;
380 }
381
382 return FALSE;
383 }
384
385 /* Add an entry to the 'only' list. */
386
387 static void
388 add_only (char * name)
389 {
390 struct only * only;
391
392 /* First check to make sure that we do not
393 already have an entry for this name. */
394 for (only = only_list; only; only = only->next)
395 if (strcmp (only->name, name) == 0)
396 return;
397
398 only = xmalloc (sizeof * only);
399 only->name = name;
400 only->seen = FALSE;
401 only->next = only_list;
402 only_list = only;
403 }
404
405 /* Release the memory used by the 'only' list.
406 PR 11225: Issue a warning message for unseen sections.
407 Only do this if none of the sections were seen. This is mainly to support
408 tools like the GAS testsuite where an object file is dumped with a list of
409 generic section names known to be present in a range of different file
410 formats. */
411
412 static void
413 free_only_list (void)
414 {
415 bfd_boolean at_least_one_seen = FALSE;
416 struct only * only;
417 struct only * next;
418
419 if (only_list == NULL)
420 return;
421
422 for (only = only_list; only; only = only->next)
423 if (only->seen)
424 {
425 at_least_one_seen = TRUE;
426 break;
427 }
428
429 for (only = only_list; only; only = next)
430 {
431 if (! at_least_one_seen)
432 {
433 non_fatal (_("section '%s' mentioned in a -j option, "
434 "but not found in any input file"),
435 only->name);
436 exit_status = 1;
437 }
438 next = only->next;
439 free (only);
440 }
441 }
442
443 \f
444 static void
445 dump_section_header (bfd *abfd, asection *section, void *data)
446 {
447 char *comma = "";
448 unsigned int opb = bfd_octets_per_byte (abfd);
449 int longest_section_name = *((int *) data);
450
451 /* Ignore linker created section. See elfNN_ia64_object_p in
452 bfd/elfxx-ia64.c. */
453 if (section->flags & SEC_LINKER_CREATED)
454 return;
455
456 /* PR 10413: Skip sections that we are ignoring. */
457 if (! process_section_p (section))
458 return;
459
460 printf ("%3d %-*s %08lx ", section->index, longest_section_name,
461 bfd_get_section_name (abfd, section),
462 (unsigned long) bfd_section_size (abfd, section) / opb);
463 bfd_printf_vma (abfd, bfd_get_section_vma (abfd, section));
464 printf (" ");
465 bfd_printf_vma (abfd, section->lma);
466 printf (" %08lx 2**%u", (unsigned long) section->filepos,
467 bfd_get_section_alignment (abfd, section));
468 if (! wide_output)
469 printf ("\n ");
470 printf (" ");
471
472 #define PF(x, y) \
473 if (section->flags & x) { printf ("%s%s", comma, y); comma = ", "; }
474
475 PF (SEC_HAS_CONTENTS, "CONTENTS");
476 PF (SEC_ALLOC, "ALLOC");
477 PF (SEC_CONSTRUCTOR, "CONSTRUCTOR");
478 PF (SEC_LOAD, "LOAD");
479 PF (SEC_RELOC, "RELOC");
480 PF (SEC_READONLY, "READONLY");
481 PF (SEC_CODE, "CODE");
482 PF (SEC_DATA, "DATA");
483 PF (SEC_ROM, "ROM");
484 PF (SEC_DEBUGGING, "DEBUGGING");
485 PF (SEC_NEVER_LOAD, "NEVER_LOAD");
486 PF (SEC_EXCLUDE, "EXCLUDE");
487 PF (SEC_SORT_ENTRIES, "SORT_ENTRIES");
488 if (bfd_get_arch (abfd) == bfd_arch_tic54x)
489 {
490 PF (SEC_TIC54X_BLOCK, "BLOCK");
491 PF (SEC_TIC54X_CLINK, "CLINK");
492 }
493 PF (SEC_SMALL_DATA, "SMALL_DATA");
494 if (bfd_get_flavour (abfd) == bfd_target_coff_flavour)
495 {
496 PF (SEC_COFF_SHARED, "SHARED");
497 PF (SEC_COFF_NOREAD, "NOREAD");
498 }
499 else if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
500 PF (SEC_ELF_PURECODE, "PURECODE");
501 PF (SEC_THREAD_LOCAL, "THREAD_LOCAL");
502 PF (SEC_GROUP, "GROUP");
503 if (bfd_get_arch (abfd) == bfd_arch_mep)
504 {
505 PF (SEC_MEP_VLIW, "VLIW");
506 }
507
508 if ((section->flags & SEC_LINK_ONCE) != 0)
509 {
510 const char *ls;
511 struct coff_comdat_info *comdat;
512
513 switch (section->flags & SEC_LINK_DUPLICATES)
514 {
515 default:
516 abort ();
517 case SEC_LINK_DUPLICATES_DISCARD:
518 ls = "LINK_ONCE_DISCARD";
519 break;
520 case SEC_LINK_DUPLICATES_ONE_ONLY:
521 ls = "LINK_ONCE_ONE_ONLY";
522 break;
523 case SEC_LINK_DUPLICATES_SAME_SIZE:
524 ls = "LINK_ONCE_SAME_SIZE";
525 break;
526 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
527 ls = "LINK_ONCE_SAME_CONTENTS";
528 break;
529 }
530 printf ("%s%s", comma, ls);
531
532 comdat = bfd_coff_get_comdat_section (abfd, section);
533 if (comdat != NULL)
534 printf (" (COMDAT %s %ld)", comdat->name, comdat->symbol);
535
536 comma = ", ";
537 }
538
539 printf ("\n");
540 #undef PF
541 }
542
543 /* Called on each SECTION in ABFD, update the int variable pointed to by
544 DATA which contains the string length of the longest section name. */
545
546 static void
547 find_longest_section_name (bfd *abfd, asection *section, void *data)
548 {
549 int *longest_so_far = (int *) data;
550 const char *name;
551 int len;
552
553 /* Ignore linker created section. */
554 if (section->flags & SEC_LINKER_CREATED)
555 return;
556
557 /* Skip sections that we are ignoring. */
558 if (! process_section_p (section))
559 return;
560
561 name = bfd_get_section_name (abfd, section);
562 len = (int) strlen (name);
563 if (len > *longest_so_far)
564 *longest_so_far = len;
565 }
566
567 static void
568 dump_headers (bfd *abfd)
569 {
570 /* The default width of 13 is just an arbitrary choice. */
571 int max_section_name_length = 13;
572 int bfd_vma_width;
573
574 #ifndef BFD64
575 bfd_vma_width = 10;
576 #else
577 /* With BFD64, non-ELF returns -1 and wants always 64 bit addresses. */
578 if (bfd_get_arch_size (abfd) == 32)
579 bfd_vma_width = 10;
580 else
581 bfd_vma_width = 18;
582 #endif
583
584 printf (_("Sections:\n"));
585
586 if (wide_output)
587 bfd_map_over_sections (abfd, find_longest_section_name,
588 &max_section_name_length);
589
590 printf (_("Idx %-*s Size %-*s%-*sFile off Algn"),
591 max_section_name_length, "Name",
592 bfd_vma_width, "VMA",
593 bfd_vma_width, "LMA");
594
595 if (wide_output)
596 printf (_(" Flags"));
597 printf ("\n");
598
599 bfd_map_over_sections (abfd, dump_section_header,
600 &max_section_name_length);
601 }
602 \f
603 static asymbol **
604 slurp_symtab (bfd *abfd)
605 {
606 asymbol **sy = NULL;
607 long storage;
608
609 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
610 {
611 symcount = 0;
612 return NULL;
613 }
614
615 storage = bfd_get_symtab_upper_bound (abfd);
616 if (storage < 0)
617 {
618 non_fatal (_("failed to read symbol table from: %s"), bfd_get_filename (abfd));
619 bfd_fatal (_("error message was"));
620 }
621 if (storage)
622 sy = (asymbol **) xmalloc (storage);
623
624 symcount = bfd_canonicalize_symtab (abfd, sy);
625 if (symcount < 0)
626 bfd_fatal (bfd_get_filename (abfd));
627 return sy;
628 }
629
630 /* Read in the dynamic symbols. */
631
632 static asymbol **
633 slurp_dynamic_symtab (bfd *abfd)
634 {
635 asymbol **sy = NULL;
636 long storage;
637
638 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
639 if (storage < 0)
640 {
641 if (!(bfd_get_file_flags (abfd) & DYNAMIC))
642 {
643 non_fatal (_("%s: not a dynamic object"), bfd_get_filename (abfd));
644 exit_status = 1;
645 dynsymcount = 0;
646 return NULL;
647 }
648
649 bfd_fatal (bfd_get_filename (abfd));
650 }
651 if (storage)
652 sy = (asymbol **) xmalloc (storage);
653
654 dynsymcount = bfd_canonicalize_dynamic_symtab (abfd, sy);
655 if (dynsymcount < 0)
656 bfd_fatal (bfd_get_filename (abfd));
657 return sy;
658 }
659
660 /* Some symbol names are significant and should be kept in the
661 table of sorted symbol names, even if they are marked as
662 debugging/section symbols. */
663
664 static bfd_boolean
665 is_significant_symbol_name (const char * name)
666 {
667 return strcmp (name, ".plt") == 0
668 || strcmp (name, ".got") == 0
669 || strcmp (name, ".plt.got") == 0;
670 }
671
672 /* Filter out (in place) symbols that are useless for disassembly.
673 COUNT is the number of elements in SYMBOLS.
674 Return the number of useful symbols. */
675
676 static long
677 remove_useless_symbols (asymbol **symbols, long count)
678 {
679 asymbol **in_ptr = symbols, **out_ptr = symbols;
680
681 while (--count >= 0)
682 {
683 asymbol *sym = *in_ptr++;
684
685 if (sym->name == NULL || sym->name[0] == '\0')
686 continue;
687 if ((sym->flags & (BSF_DEBUGGING | BSF_SECTION_SYM))
688 && ! is_significant_symbol_name (sym->name))
689 continue;
690 if (bfd_is_und_section (sym->section)
691 || bfd_is_com_section (sym->section))
692 continue;
693
694 *out_ptr++ = sym;
695 }
696 return out_ptr - symbols;
697 }
698
699 /* Sort symbols into value order. */
700
701 static int
702 compare_symbols (const void *ap, const void *bp)
703 {
704 const asymbol *a = * (const asymbol **) ap;
705 const asymbol *b = * (const asymbol **) bp;
706 const char *an;
707 const char *bn;
708 size_t anl;
709 size_t bnl;
710 bfd_boolean af;
711 bfd_boolean bf;
712 flagword aflags;
713 flagword bflags;
714
715 if (bfd_asymbol_value (a) > bfd_asymbol_value (b))
716 return 1;
717 else if (bfd_asymbol_value (a) < bfd_asymbol_value (b))
718 return -1;
719
720 if (a->section > b->section)
721 return 1;
722 else if (a->section < b->section)
723 return -1;
724
725 an = bfd_asymbol_name (a);
726 bn = bfd_asymbol_name (b);
727 anl = strlen (an);
728 bnl = strlen (bn);
729
730 /* The symbols gnu_compiled and gcc2_compiled convey no real
731 information, so put them after other symbols with the same value. */
732 af = (strstr (an, "gnu_compiled") != NULL
733 || strstr (an, "gcc2_compiled") != NULL);
734 bf = (strstr (bn, "gnu_compiled") != NULL
735 || strstr (bn, "gcc2_compiled") != NULL);
736
737 if (af && ! bf)
738 return 1;
739 if (! af && bf)
740 return -1;
741
742 /* We use a heuristic for the file name, to try to sort it after
743 more useful symbols. It may not work on non Unix systems, but it
744 doesn't really matter; the only difference is precisely which
745 symbol names get printed. */
746
747 #define file_symbol(s, sn, snl) \
748 (((s)->flags & BSF_FILE) != 0 \
749 || ((sn)[(snl) - 2] == '.' \
750 && ((sn)[(snl) - 1] == 'o' \
751 || (sn)[(snl) - 1] == 'a')))
752
753 af = file_symbol (a, an, anl);
754 bf = file_symbol (b, bn, bnl);
755
756 if (af && ! bf)
757 return 1;
758 if (! af && bf)
759 return -1;
760
761 /* Try to sort global symbols before local symbols before function
762 symbols before debugging symbols. */
763
764 aflags = a->flags;
765 bflags = b->flags;
766
767 if ((aflags & BSF_DEBUGGING) != (bflags & BSF_DEBUGGING))
768 {
769 if ((aflags & BSF_DEBUGGING) != 0)
770 return 1;
771 else
772 return -1;
773 }
774 if ((aflags & BSF_FUNCTION) != (bflags & BSF_FUNCTION))
775 {
776 if ((aflags & BSF_FUNCTION) != 0)
777 return -1;
778 else
779 return 1;
780 }
781 if ((aflags & BSF_LOCAL) != (bflags & BSF_LOCAL))
782 {
783 if ((aflags & BSF_LOCAL) != 0)
784 return 1;
785 else
786 return -1;
787 }
788 if ((aflags & BSF_GLOBAL) != (bflags & BSF_GLOBAL))
789 {
790 if ((aflags & BSF_GLOBAL) != 0)
791 return -1;
792 else
793 return 1;
794 }
795
796 if (bfd_get_flavour (bfd_asymbol_bfd (a)) == bfd_target_elf_flavour
797 && bfd_get_flavour (bfd_asymbol_bfd (b)) == bfd_target_elf_flavour)
798 {
799 bfd_vma asz, bsz;
800
801 asz = 0;
802 if ((a->flags & BSF_SYNTHETIC) == 0)
803 asz = ((elf_symbol_type *) a)->internal_elf_sym.st_size;
804 bsz = 0;
805 if ((b->flags & BSF_SYNTHETIC) == 0)
806 bsz = ((elf_symbol_type *) b)->internal_elf_sym.st_size;
807 if (asz != bsz)
808 return asz > bsz ? -1 : 1;
809 }
810
811 /* Symbols that start with '.' might be section names, so sort them
812 after symbols that don't start with '.'. */
813 if (an[0] == '.' && bn[0] != '.')
814 return 1;
815 if (an[0] != '.' && bn[0] == '.')
816 return -1;
817
818 /* Finally, if we can't distinguish them in any other way, try to
819 get consistent results by sorting the symbols by name. */
820 return strcmp (an, bn);
821 }
822
823 /* Sort relocs into address order. */
824
825 static int
826 compare_relocs (const void *ap, const void *bp)
827 {
828 const arelent *a = * (const arelent **) ap;
829 const arelent *b = * (const arelent **) bp;
830
831 if (a->address > b->address)
832 return 1;
833 else if (a->address < b->address)
834 return -1;
835
836 /* So that associated relocations tied to the same address show up
837 in the correct order, we don't do any further sorting. */
838 if (a > b)
839 return 1;
840 else if (a < b)
841 return -1;
842 else
843 return 0;
844 }
845
846 /* Print an address (VMA) to the output stream in INFO.
847 If SKIP_ZEROES is TRUE, omit leading zeroes. */
848
849 static void
850 objdump_print_value (bfd_vma vma, struct disassemble_info *inf,
851 bfd_boolean skip_zeroes)
852 {
853 char buf[30];
854 char *p;
855 struct objdump_disasm_info *aux;
856
857 aux = (struct objdump_disasm_info *) inf->application_data;
858 bfd_sprintf_vma (aux->abfd, buf, vma);
859 if (! skip_zeroes)
860 p = buf;
861 else
862 {
863 for (p = buf; *p == '0'; ++p)
864 ;
865 if (*p == '\0')
866 --p;
867 }
868 (*inf->fprintf_func) (inf->stream, "%s", p);
869 }
870
871 /* Print the name of a symbol. */
872
873 static void
874 objdump_print_symname (bfd *abfd, struct disassemble_info *inf,
875 asymbol *sym)
876 {
877 char *alloc;
878 const char *name, *version_string = NULL;
879 bfd_boolean hidden = FALSE;
880
881 alloc = NULL;
882 name = bfd_asymbol_name (sym);
883 if (do_demangle && name[0] != '\0')
884 {
885 /* Demangle the name. */
886 alloc = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
887 if (alloc != NULL)
888 name = alloc;
889 }
890
891 if ((sym->flags & BSF_SYNTHETIC) == 0)
892 version_string = bfd_get_symbol_version_string (abfd, sym, &hidden);
893
894 if (bfd_is_und_section (bfd_get_section (sym)))
895 hidden = TRUE;
896
897 if (inf != NULL)
898 {
899 (*inf->fprintf_func) (inf->stream, "%s", name);
900 if (version_string && *version_string != '\0')
901 (*inf->fprintf_func) (inf->stream, hidden ? "@%s" : "@@%s",
902 version_string);
903 }
904 else
905 {
906 printf ("%s", name);
907 if (version_string && *version_string != '\0')
908 printf (hidden ? "@%s" : "@@%s", version_string);
909 }
910
911 if (alloc != NULL)
912 free (alloc);
913 }
914
915 /* Locate a symbol given a bfd and a section (from INFO->application_data),
916 and a VMA. If INFO->application_data->require_sec is TRUE, then always
917 require the symbol to be in the section. Returns NULL if there is no
918 suitable symbol. If PLACE is not NULL, then *PLACE is set to the index
919 of the symbol in sorted_syms. */
920
921 static asymbol *
922 find_symbol_for_address (bfd_vma vma,
923 struct disassemble_info *inf,
924 long *place)
925 {
926 /* @@ Would it speed things up to cache the last two symbols returned,
927 and maybe their address ranges? For many processors, only one memory
928 operand can be present at a time, so the 2-entry cache wouldn't be
929 constantly churned by code doing heavy memory accesses. */
930
931 /* Indices in `sorted_syms'. */
932 long min = 0;
933 long max_count = sorted_symcount;
934 long thisplace;
935 struct objdump_disasm_info *aux;
936 bfd *abfd;
937 asection *sec;
938 unsigned int opb;
939 bfd_boolean want_section;
940
941 if (sorted_symcount < 1)
942 return NULL;
943
944 aux = (struct objdump_disasm_info *) inf->application_data;
945 abfd = aux->abfd;
946 sec = aux->sec;
947 opb = inf->octets_per_byte;
948
949 /* Perform a binary search looking for the closest symbol to the
950 required value. We are searching the range (min, max_count]. */
951 while (min + 1 < max_count)
952 {
953 asymbol *sym;
954
955 thisplace = (max_count + min) / 2;
956 sym = sorted_syms[thisplace];
957
958 if (bfd_asymbol_value (sym) > vma)
959 max_count = thisplace;
960 else if (bfd_asymbol_value (sym) < vma)
961 min = thisplace;
962 else
963 {
964 min = thisplace;
965 break;
966 }
967 }
968
969 /* The symbol we want is now in min, the low end of the range we
970 were searching. If there are several symbols with the same
971 value, we want the first (non-section/non-debugging) one. */
972 thisplace = min;
973 while (thisplace > 0
974 && (bfd_asymbol_value (sorted_syms[thisplace])
975 == bfd_asymbol_value (sorted_syms[thisplace - 1]))
976 && ((sorted_syms[thisplace - 1]->flags
977 & (BSF_SECTION_SYM | BSF_DEBUGGING)) == 0)
978 )
979 --thisplace;
980
981 /* Prefer a symbol in the current section if we have multple symbols
982 with the same value, as can occur with overlays or zero size
983 sections. */
984 min = thisplace;
985 while (min < max_count
986 && (bfd_asymbol_value (sorted_syms[min])
987 == bfd_asymbol_value (sorted_syms[thisplace])))
988 {
989 if (sorted_syms[min]->section == sec
990 && inf->symbol_is_valid (sorted_syms[min], inf))
991 {
992 thisplace = min;
993
994 if (place != NULL)
995 *place = thisplace;
996
997 return sorted_syms[thisplace];
998 }
999 ++min;
1000 }
1001
1002 /* If the file is relocatable, and the symbol could be from this
1003 section, prefer a symbol from this section over symbols from
1004 others, even if the other symbol's value might be closer.
1005
1006 Note that this may be wrong for some symbol references if the
1007 sections have overlapping memory ranges, but in that case there's
1008 no way to tell what's desired without looking at the relocation
1009 table.
1010
1011 Also give the target a chance to reject symbols. */
1012 want_section = (aux->require_sec
1013 || ((abfd->flags & HAS_RELOC) != 0
1014 && vma >= bfd_get_section_vma (abfd, sec)
1015 && vma < (bfd_get_section_vma (abfd, sec)
1016 + bfd_section_size (abfd, sec) / opb)));
1017 if ((sorted_syms[thisplace]->section != sec && want_section)
1018 || ! inf->symbol_is_valid (sorted_syms[thisplace], inf))
1019 {
1020 long i;
1021 long newplace = sorted_symcount;
1022
1023 for (i = min - 1; i >= 0; i--)
1024 {
1025 if ((sorted_syms[i]->section == sec || !want_section)
1026 && inf->symbol_is_valid (sorted_syms[i], inf))
1027 {
1028 if (newplace == sorted_symcount)
1029 newplace = i;
1030
1031 if (bfd_asymbol_value (sorted_syms[i])
1032 != bfd_asymbol_value (sorted_syms[newplace]))
1033 break;
1034
1035 /* Remember this symbol and keep searching until we reach
1036 an earlier address. */
1037 newplace = i;
1038 }
1039 }
1040
1041 if (newplace != sorted_symcount)
1042 thisplace = newplace;
1043 else
1044 {
1045 /* We didn't find a good symbol with a smaller value.
1046 Look for one with a larger value. */
1047 for (i = thisplace + 1; i < sorted_symcount; i++)
1048 {
1049 if ((sorted_syms[i]->section == sec || !want_section)
1050 && inf->symbol_is_valid (sorted_syms[i], inf))
1051 {
1052 thisplace = i;
1053 break;
1054 }
1055 }
1056 }
1057
1058 if ((sorted_syms[thisplace]->section != sec && want_section)
1059 || ! inf->symbol_is_valid (sorted_syms[thisplace], inf))
1060 /* There is no suitable symbol. */
1061 return NULL;
1062 }
1063
1064 /* If we have not found an exact match for the specified address
1065 and we have dynamic relocations available, then we can produce
1066 a better result by matching a relocation to the address and
1067 using the symbol associated with that relocation. */
1068 if (!want_section
1069 && aux->dynrelbuf != NULL
1070 && sorted_syms[thisplace]->value != vma
1071 /* If we have matched a synthetic symbol, then stick with that. */
1072 && (sorted_syms[thisplace]->flags & BSF_SYNTHETIC) == 0)
1073 {
1074 long rel_count;
1075 arelent ** rel_pp;
1076
1077 for (rel_count = aux->dynrelcount, rel_pp = aux->dynrelbuf;
1078 rel_count--;)
1079 {
1080 arelent * rel = rel_pp[rel_count];
1081
1082 if (rel->address == vma
1083 && rel->sym_ptr_ptr != NULL
1084 /* Absolute relocations do not provide a more helpful symbolic address. */
1085 && ! bfd_is_abs_section ((* rel->sym_ptr_ptr)->section))
1086 {
1087 if (place != NULL)
1088 * place = thisplace;
1089 return * rel->sym_ptr_ptr;
1090 }
1091
1092 /* We are scanning backwards, so if we go below the target address
1093 we have failed. */
1094 if (rel_pp[rel_count]->address < vma)
1095 break;
1096 }
1097 }
1098
1099 if (place != NULL)
1100 *place = thisplace;
1101
1102 return sorted_syms[thisplace];
1103 }
1104
1105 /* Print an address and the offset to the nearest symbol. */
1106
1107 static void
1108 objdump_print_addr_with_sym (bfd *abfd, asection *sec, asymbol *sym,
1109 bfd_vma vma, struct disassemble_info *inf,
1110 bfd_boolean skip_zeroes)
1111 {
1112 objdump_print_value (vma, inf, skip_zeroes);
1113
1114 if (sym == NULL)
1115 {
1116 bfd_vma secaddr;
1117
1118 (*inf->fprintf_func) (inf->stream, " <%s",
1119 bfd_get_section_name (abfd, sec));
1120 secaddr = bfd_get_section_vma (abfd, sec);
1121 if (vma < secaddr)
1122 {
1123 (*inf->fprintf_func) (inf->stream, "-0x");
1124 objdump_print_value (secaddr - vma, inf, TRUE);
1125 }
1126 else if (vma > secaddr)
1127 {
1128 (*inf->fprintf_func) (inf->stream, "+0x");
1129 objdump_print_value (vma - secaddr, inf, TRUE);
1130 }
1131 (*inf->fprintf_func) (inf->stream, ">");
1132 }
1133 else
1134 {
1135 (*inf->fprintf_func) (inf->stream, " <");
1136
1137 objdump_print_symname (abfd, inf, sym);
1138
1139 if (bfd_asymbol_value (sym) == vma)
1140 ;
1141 /* Undefined symbols in an executables and dynamic objects do not have
1142 a value associated with them, so it does not make sense to display
1143 an offset relative to them. Normally we would not be provided with
1144 this kind of symbol, but the target backend might choose to do so,
1145 and the code in find_symbol_for_address might return an as yet
1146 unresolved symbol associated with a dynamic reloc. */
1147 else if ((bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC))
1148 && bfd_is_und_section (sym->section))
1149 ;
1150 else if (bfd_asymbol_value (sym) > vma)
1151 {
1152 (*inf->fprintf_func) (inf->stream, "-0x");
1153 objdump_print_value (bfd_asymbol_value (sym) - vma, inf, TRUE);
1154 }
1155 else if (vma > bfd_asymbol_value (sym))
1156 {
1157 (*inf->fprintf_func) (inf->stream, "+0x");
1158 objdump_print_value (vma - bfd_asymbol_value (sym), inf, TRUE);
1159 }
1160
1161 (*inf->fprintf_func) (inf->stream, ">");
1162 }
1163
1164 if (display_file_offsets)
1165 inf->fprintf_func (inf->stream, _(" (File Offset: 0x%lx)"),
1166 (long int)(sec->filepos + (vma - sec->vma)));
1167 }
1168
1169 /* Print an address (VMA), symbolically if possible.
1170 If SKIP_ZEROES is TRUE, don't output leading zeroes. */
1171
1172 static void
1173 objdump_print_addr (bfd_vma vma,
1174 struct disassemble_info *inf,
1175 bfd_boolean skip_zeroes)
1176 {
1177 struct objdump_disasm_info *aux;
1178 asymbol *sym = NULL;
1179 bfd_boolean skip_find = FALSE;
1180
1181 aux = (struct objdump_disasm_info *) inf->application_data;
1182
1183 if (sorted_symcount < 1)
1184 {
1185 (*inf->fprintf_func) (inf->stream, "0x");
1186 objdump_print_value (vma, inf, skip_zeroes);
1187
1188 if (display_file_offsets)
1189 inf->fprintf_func (inf->stream, _(" (File Offset: 0x%lx)"),
1190 (long int)(aux->sec->filepos + (vma - aux->sec->vma)));
1191 return;
1192 }
1193
1194 if (aux->reloc != NULL
1195 && aux->reloc->sym_ptr_ptr != NULL
1196 && * aux->reloc->sym_ptr_ptr != NULL)
1197 {
1198 sym = * aux->reloc->sym_ptr_ptr;
1199
1200 /* Adjust the vma to the reloc. */
1201 vma += bfd_asymbol_value (sym);
1202
1203 if (bfd_is_und_section (bfd_get_section (sym)))
1204 skip_find = TRUE;
1205 }
1206
1207 if (!skip_find)
1208 sym = find_symbol_for_address (vma, inf, NULL);
1209
1210 objdump_print_addr_with_sym (aux->abfd, aux->sec, sym, vma, inf,
1211 skip_zeroes);
1212 }
1213
1214 /* Print VMA to INFO. This function is passed to the disassembler
1215 routine. */
1216
1217 static void
1218 objdump_print_address (bfd_vma vma, struct disassemble_info *inf)
1219 {
1220 objdump_print_addr (vma, inf, ! prefix_addresses);
1221 }
1222
1223 /* Determine if the given address has a symbol associated with it. */
1224
1225 static int
1226 objdump_symbol_at_address (bfd_vma vma, struct disassemble_info * inf)
1227 {
1228 asymbol * sym;
1229
1230 sym = find_symbol_for_address (vma, inf, NULL);
1231
1232 return (sym != NULL && (bfd_asymbol_value (sym) == vma));
1233 }
1234
1235 /* Hold the last function name and the last line number we displayed
1236 in a disassembly. */
1237
1238 static char *prev_functionname;
1239 static unsigned int prev_line;
1240 static unsigned int prev_discriminator;
1241
1242 /* We keep a list of all files that we have seen when doing a
1243 disassembly with source, so that we know how much of the file to
1244 display. This can be important for inlined functions. */
1245
1246 struct print_file_list
1247 {
1248 struct print_file_list *next;
1249 const char *filename;
1250 const char *modname;
1251 const char *map;
1252 size_t mapsize;
1253 const char **linemap;
1254 unsigned maxline;
1255 unsigned last_line;
1256 unsigned max_printed;
1257 int first;
1258 };
1259
1260 static struct print_file_list *print_files;
1261
1262 /* The number of preceding context lines to show when we start
1263 displaying a file for the first time. */
1264
1265 #define SHOW_PRECEDING_CONTEXT_LINES (5)
1266
1267 /* Read a complete file into memory. */
1268
1269 static const char *
1270 slurp_file (const char *fn, size_t *size, struct stat *fst)
1271 {
1272 #ifdef HAVE_MMAP
1273 int ps = getpagesize ();
1274 size_t msize;
1275 #endif
1276 const char *map;
1277 int fd = open (fn, O_RDONLY | O_BINARY);
1278
1279 if (fd < 0)
1280 return NULL;
1281 if (fstat (fd, fst) < 0)
1282 {
1283 close (fd);
1284 return NULL;
1285 }
1286 *size = fst->st_size;
1287 #ifdef HAVE_MMAP
1288 msize = (*size + ps - 1) & ~(ps - 1);
1289 map = mmap (NULL, msize, PROT_READ, MAP_SHARED, fd, 0);
1290 if (map != (char *) -1L)
1291 {
1292 close (fd);
1293 return map;
1294 }
1295 #endif
1296 map = (const char *) malloc (*size);
1297 if (!map || (size_t) read (fd, (char *) map, *size) != *size)
1298 {
1299 free ((void *) map);
1300 map = NULL;
1301 }
1302 close (fd);
1303 return map;
1304 }
1305
1306 #define line_map_decrease 5
1307
1308 /* Precompute array of lines for a mapped file. */
1309
1310 static const char **
1311 index_file (const char *map, size_t size, unsigned int *maxline)
1312 {
1313 const char *p, *lstart, *end;
1314 int chars_per_line = 45; /* First iteration will use 40. */
1315 unsigned int lineno;
1316 const char **linemap = NULL;
1317 unsigned long line_map_size = 0;
1318
1319 lineno = 0;
1320 lstart = map;
1321 end = map + size;
1322
1323 for (p = map; p < end; p++)
1324 {
1325 if (*p == '\n')
1326 {
1327 if (p + 1 < end && p[1] == '\r')
1328 p++;
1329 }
1330 else if (*p == '\r')
1331 {
1332 if (p + 1 < end && p[1] == '\n')
1333 p++;
1334 }
1335 else
1336 continue;
1337
1338 /* End of line found. */
1339
1340 if (linemap == NULL || line_map_size < lineno + 1)
1341 {
1342 unsigned long newsize;
1343
1344 chars_per_line -= line_map_decrease;
1345 if (chars_per_line <= 1)
1346 chars_per_line = 1;
1347 line_map_size = size / chars_per_line + 1;
1348 if (line_map_size < lineno + 1)
1349 line_map_size = lineno + 1;
1350 newsize = line_map_size * sizeof (char *);
1351 linemap = (const char **) xrealloc (linemap, newsize);
1352 }
1353
1354 linemap[lineno++] = lstart;
1355 lstart = p + 1;
1356 }
1357
1358 *maxline = lineno;
1359 return linemap;
1360 }
1361
1362 /* Tries to open MODNAME, and if successful adds a node to print_files
1363 linked list and returns that node. Returns NULL on failure. */
1364
1365 static struct print_file_list *
1366 try_print_file_open (const char *origname, const char *modname, struct stat *fst)
1367 {
1368 struct print_file_list *p;
1369
1370 p = (struct print_file_list *) xmalloc (sizeof (struct print_file_list));
1371
1372 p->map = slurp_file (modname, &p->mapsize, fst);
1373 if (p->map == NULL)
1374 {
1375 free (p);
1376 return NULL;
1377 }
1378
1379 p->linemap = index_file (p->map, p->mapsize, &p->maxline);
1380 p->last_line = 0;
1381 p->max_printed = 0;
1382 p->filename = origname;
1383 p->modname = modname;
1384 p->next = print_files;
1385 p->first = 1;
1386 print_files = p;
1387 return p;
1388 }
1389
1390 /* If the source file, as described in the symtab, is not found
1391 try to locate it in one of the paths specified with -I
1392 If found, add location to print_files linked list. */
1393
1394 static struct print_file_list *
1395 update_source_path (const char *filename, bfd *abfd)
1396 {
1397 struct print_file_list *p;
1398 const char *fname;
1399 struct stat fst;
1400 int i;
1401
1402 p = try_print_file_open (filename, filename, &fst);
1403 if (p == NULL)
1404 {
1405 if (include_path_count == 0)
1406 return NULL;
1407
1408 /* Get the name of the file. */
1409 fname = lbasename (filename);
1410
1411 /* If file exists under a new path, we need to add it to the list
1412 so that show_line knows about it. */
1413 for (i = 0; i < include_path_count; i++)
1414 {
1415 char *modname = concat (include_paths[i], "/", fname,
1416 (const char *) 0);
1417
1418 p = try_print_file_open (filename, modname, &fst);
1419 if (p)
1420 break;
1421
1422 free (modname);
1423 }
1424 }
1425
1426 if (p != NULL)
1427 {
1428 long mtime = bfd_get_mtime (abfd);
1429
1430 if (fst.st_mtime > mtime)
1431 warn (_("source file %s is more recent than object file\n"),
1432 filename);
1433 }
1434
1435 return p;
1436 }
1437
1438 /* Print a source file line. */
1439
1440 static void
1441 print_line (struct print_file_list *p, unsigned int linenum)
1442 {
1443 const char *l;
1444 size_t len;
1445
1446 --linenum;
1447 if (linenum >= p->maxline)
1448 return;
1449 l = p->linemap [linenum];
1450 /* Test fwrite return value to quiet glibc warning. */
1451 len = strcspn (l, "\n\r");
1452 if (len == 0 || fwrite (l, len, 1, stdout) == 1)
1453 putchar ('\n');
1454 }
1455
1456 /* Print a range of source code lines. */
1457
1458 static void
1459 dump_lines (struct print_file_list *p, unsigned int start, unsigned int end)
1460 {
1461 if (p->map == NULL)
1462 return;
1463 while (start <= end)
1464 {
1465 print_line (p, start);
1466 start++;
1467 }
1468 }
1469
1470 /* Show the line number, or the source line, in a disassembly
1471 listing. */
1472
1473 static void
1474 show_line (bfd *abfd, asection *section, bfd_vma addr_offset)
1475 {
1476 const char *filename;
1477 const char *functionname;
1478 unsigned int linenumber;
1479 unsigned int discriminator;
1480 bfd_boolean reloc;
1481 char *path = NULL;
1482
1483 if (! with_line_numbers && ! with_source_code)
1484 return;
1485
1486 if (! bfd_find_nearest_line_discriminator (abfd, section, syms, addr_offset,
1487 &filename, &functionname,
1488 &linenumber, &discriminator))
1489 return;
1490
1491 if (filename != NULL && *filename == '\0')
1492 filename = NULL;
1493 if (functionname != NULL && *functionname == '\0')
1494 functionname = NULL;
1495
1496 if (filename
1497 && IS_ABSOLUTE_PATH (filename)
1498 && prefix)
1499 {
1500 char *path_up;
1501 const char *fname = filename;
1502
1503 path = xmalloc (prefix_length + PATH_MAX + 1);
1504
1505 if (prefix_length)
1506 memcpy (path, prefix, prefix_length);
1507 path_up = path + prefix_length;
1508
1509 /* Build relocated filename, stripping off leading directories
1510 from the initial filename if requested. */
1511 if (prefix_strip > 0)
1512 {
1513 int level = 0;
1514 const char *s;
1515
1516 /* Skip selected directory levels. */
1517 for (s = fname + 1; *s != '\0' && level < prefix_strip; s++)
1518 if (IS_DIR_SEPARATOR(*s))
1519 {
1520 fname = s;
1521 level++;
1522 }
1523 }
1524
1525 /* Update complete filename. */
1526 strncpy (path_up, fname, PATH_MAX);
1527 path_up[PATH_MAX] = '\0';
1528
1529 filename = path;
1530 reloc = TRUE;
1531 }
1532 else
1533 reloc = FALSE;
1534
1535 if (with_line_numbers)
1536 {
1537 if (functionname != NULL
1538 && (prev_functionname == NULL
1539 || strcmp (functionname, prev_functionname) != 0))
1540 printf ("%s():\n", functionname);
1541 if (linenumber > 0 && (linenumber != prev_line ||
1542 (discriminator != prev_discriminator)))
1543 {
1544 if (discriminator > 0)
1545 printf ("%s:%u (discriminator %u)\n", filename == NULL ? "???" : filename,
1546 linenumber, discriminator);
1547 else
1548 printf ("%s:%u\n", filename == NULL ? "???" : filename, linenumber);
1549 }
1550 if (unwind_inlines)
1551 {
1552 const char *filename2;
1553 const char *functionname2;
1554 unsigned line2;
1555
1556 while (bfd_find_inliner_info (abfd, &filename2, &functionname2,
1557 &line2))
1558 printf ("inlined by %s:%u (%s)\n", filename2, line2,
1559 functionname2);
1560 }
1561 }
1562
1563 if (with_source_code
1564 && filename != NULL
1565 && linenumber > 0)
1566 {
1567 struct print_file_list **pp, *p;
1568 unsigned l;
1569
1570 for (pp = &print_files; *pp != NULL; pp = &(*pp)->next)
1571 if (filename_cmp ((*pp)->filename, filename) == 0)
1572 break;
1573 p = *pp;
1574
1575 if (p == NULL)
1576 {
1577 if (reloc)
1578 filename = xstrdup (filename);
1579 p = update_source_path (filename, abfd);
1580 }
1581
1582 if (p != NULL && linenumber != p->last_line)
1583 {
1584 if (file_start_context && p->first)
1585 l = 1;
1586 else
1587 {
1588 l = linenumber - SHOW_PRECEDING_CONTEXT_LINES;
1589 if (l >= linenumber)
1590 l = 1;
1591 if (p->max_printed >= l)
1592 {
1593 if (p->max_printed < linenumber)
1594 l = p->max_printed + 1;
1595 else
1596 l = linenumber;
1597 }
1598 }
1599 dump_lines (p, l, linenumber);
1600 if (p->max_printed < linenumber)
1601 p->max_printed = linenumber;
1602 p->last_line = linenumber;
1603 p->first = 0;
1604 }
1605 }
1606
1607 if (functionname != NULL
1608 && (prev_functionname == NULL
1609 || strcmp (functionname, prev_functionname) != 0))
1610 {
1611 if (prev_functionname != NULL)
1612 free (prev_functionname);
1613 prev_functionname = (char *) xmalloc (strlen (functionname) + 1);
1614 strcpy (prev_functionname, functionname);
1615 }
1616
1617 if (linenumber > 0 && linenumber != prev_line)
1618 prev_line = linenumber;
1619
1620 if (discriminator != prev_discriminator)
1621 prev_discriminator = discriminator;
1622
1623 if (path)
1624 free (path);
1625 }
1626
1627 /* Pseudo FILE object for strings. */
1628 typedef struct
1629 {
1630 char *buffer;
1631 size_t pos;
1632 size_t alloc;
1633 } SFILE;
1634
1635 /* sprintf to a "stream". */
1636
1637 static int ATTRIBUTE_PRINTF_2
1638 objdump_sprintf (SFILE *f, const char *format, ...)
1639 {
1640 size_t n;
1641 va_list args;
1642
1643 while (1)
1644 {
1645 size_t space = f->alloc - f->pos;
1646
1647 va_start (args, format);
1648 n = vsnprintf (f->buffer + f->pos, space, format, args);
1649 va_end (args);
1650
1651 if (space > n)
1652 break;
1653
1654 f->alloc = (f->alloc + n) * 2;
1655 f->buffer = (char *) xrealloc (f->buffer, f->alloc);
1656 }
1657 f->pos += n;
1658
1659 return n;
1660 }
1661
1662 /* The number of zeroes we want to see before we start skipping them.
1663 The number is arbitrarily chosen. */
1664
1665 #define DEFAULT_SKIP_ZEROES 8
1666
1667 /* The number of zeroes to skip at the end of a section. If the
1668 number of zeroes at the end is between SKIP_ZEROES_AT_END and
1669 SKIP_ZEROES, they will be disassembled. If there are fewer than
1670 SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
1671 attempt to avoid disassembling zeroes inserted by section
1672 alignment. */
1673
1674 #define DEFAULT_SKIP_ZEROES_AT_END 3
1675
1676 /* Disassemble some data in memory between given values. */
1677
1678 static void
1679 disassemble_bytes (struct disassemble_info * inf,
1680 disassembler_ftype disassemble_fn,
1681 bfd_boolean insns,
1682 bfd_byte * data,
1683 bfd_vma start_offset,
1684 bfd_vma stop_offset,
1685 bfd_vma rel_offset,
1686 arelent *** relppp,
1687 arelent ** relppend)
1688 {
1689 struct objdump_disasm_info *aux;
1690 asection *section;
1691 int octets_per_line;
1692 int skip_addr_chars;
1693 bfd_vma addr_offset;
1694 unsigned int opb = inf->octets_per_byte;
1695 unsigned int skip_zeroes = inf->skip_zeroes;
1696 unsigned int skip_zeroes_at_end = inf->skip_zeroes_at_end;
1697 int octets = opb;
1698 SFILE sfile;
1699
1700 aux = (struct objdump_disasm_info *) inf->application_data;
1701 section = aux->sec;
1702
1703 sfile.alloc = 120;
1704 sfile.buffer = (char *) xmalloc (sfile.alloc);
1705 sfile.pos = 0;
1706
1707 if (insn_width)
1708 octets_per_line = insn_width;
1709 else if (insns)
1710 octets_per_line = 4;
1711 else
1712 octets_per_line = 16;
1713
1714 /* Figure out how many characters to skip at the start of an
1715 address, to make the disassembly look nicer. We discard leading
1716 zeroes in chunks of 4, ensuring that there is always a leading
1717 zero remaining. */
1718 skip_addr_chars = 0;
1719 if (! prefix_addresses)
1720 {
1721 char buf[30];
1722
1723 bfd_sprintf_vma (aux->abfd, buf, section->vma + section->size / opb);
1724
1725 while (buf[skip_addr_chars] == '0')
1726 ++skip_addr_chars;
1727
1728 /* Don't discard zeros on overflow. */
1729 if (buf[skip_addr_chars] == '\0' && section->vma != 0)
1730 skip_addr_chars = 0;
1731
1732 if (skip_addr_chars != 0)
1733 skip_addr_chars = (skip_addr_chars - 1) & -4;
1734 }
1735
1736 inf->insn_info_valid = 0;
1737
1738 addr_offset = start_offset;
1739 while (addr_offset < stop_offset)
1740 {
1741 bfd_vma z;
1742 bfd_boolean need_nl = FALSE;
1743 int previous_octets;
1744
1745 /* Remember the length of the previous instruction. */
1746 previous_octets = octets;
1747 octets = 0;
1748
1749 /* Make sure we don't use relocs from previous instructions. */
1750 aux->reloc = NULL;
1751
1752 /* If we see more than SKIP_ZEROES octets of zeroes, we just
1753 print `...'. */
1754 for (z = addr_offset * opb; z < stop_offset * opb; z++)
1755 if (data[z] != 0)
1756 break;
1757 if (! disassemble_zeroes
1758 && (inf->insn_info_valid == 0
1759 || inf->branch_delay_insns == 0)
1760 && (z - addr_offset * opb >= skip_zeroes
1761 || (z == stop_offset * opb &&
1762 z - addr_offset * opb < skip_zeroes_at_end)))
1763 {
1764 /* If there are more nonzero octets to follow, we only skip
1765 zeroes in multiples of 4, to try to avoid running over
1766 the start of an instruction which happens to start with
1767 zero. */
1768 if (z != stop_offset * opb)
1769 z = addr_offset * opb + ((z - addr_offset * opb) &~ 3);
1770
1771 octets = z - addr_offset * opb;
1772
1773 /* If we are going to display more data, and we are displaying
1774 file offsets, then tell the user how many zeroes we skip
1775 and the file offset from where we resume dumping. */
1776 if (display_file_offsets && ((addr_offset + (octets / opb)) < stop_offset))
1777 printf ("\t... (skipping %d zeroes, resuming at file offset: 0x%lx)\n",
1778 octets / opb,
1779 (unsigned long) (section->filepos
1780 + (addr_offset + (octets / opb))));
1781 else
1782 printf ("\t...\n");
1783 }
1784 else
1785 {
1786 char buf[50];
1787 int bpc = 0;
1788 int pb = 0;
1789
1790 if (with_line_numbers || with_source_code)
1791 show_line (aux->abfd, section, addr_offset);
1792
1793 if (! prefix_addresses)
1794 {
1795 char *s;
1796
1797 bfd_sprintf_vma (aux->abfd, buf, section->vma + addr_offset);
1798 for (s = buf + skip_addr_chars; *s == '0'; s++)
1799 *s = ' ';
1800 if (*s == '\0')
1801 *--s = '0';
1802 printf ("%s:\t", buf + skip_addr_chars);
1803 }
1804 else
1805 {
1806 aux->require_sec = TRUE;
1807 objdump_print_address (section->vma + addr_offset, inf);
1808 aux->require_sec = FALSE;
1809 putchar (' ');
1810 }
1811
1812 if (insns)
1813 {
1814 sfile.pos = 0;
1815 inf->fprintf_func = (fprintf_ftype) objdump_sprintf;
1816 inf->stream = &sfile;
1817 inf->bytes_per_line = 0;
1818 inf->bytes_per_chunk = 0;
1819 inf->flags = disassemble_all ? DISASSEMBLE_DATA : 0;
1820 if (machine)
1821 inf->flags |= USER_SPECIFIED_MACHINE_TYPE;
1822
1823 if (inf->disassembler_needs_relocs
1824 && (bfd_get_file_flags (aux->abfd) & EXEC_P) == 0
1825 && (bfd_get_file_flags (aux->abfd) & DYNAMIC) == 0
1826 && *relppp < relppend)
1827 {
1828 bfd_signed_vma distance_to_rel;
1829
1830 distance_to_rel = (**relppp)->address
1831 - (rel_offset + addr_offset);
1832
1833 /* Check to see if the current reloc is associated with
1834 the instruction that we are about to disassemble. */
1835 if (distance_to_rel == 0
1836 /* FIXME: This is wrong. We are trying to catch
1837 relocs that are addressed part way through the
1838 current instruction, as might happen with a packed
1839 VLIW instruction. Unfortunately we do not know the
1840 length of the current instruction since we have not
1841 disassembled it yet. Instead we take a guess based
1842 upon the length of the previous instruction. The
1843 proper solution is to have a new target-specific
1844 disassembler function which just returns the length
1845 of an instruction at a given address without trying
1846 to display its disassembly. */
1847 || (distance_to_rel > 0
1848 && distance_to_rel < (bfd_signed_vma) (previous_octets/ opb)))
1849 {
1850 inf->flags |= INSN_HAS_RELOC;
1851 aux->reloc = **relppp;
1852 }
1853 }
1854
1855 if (! disassemble_all
1856 && (section->flags & (SEC_CODE | SEC_HAS_CONTENTS))
1857 == (SEC_CODE | SEC_HAS_CONTENTS))
1858 /* Set a stop_vma so that the disassembler will not read
1859 beyond the next symbol. We assume that symbols appear on
1860 the boundaries between instructions. We only do this when
1861 disassembling code of course, and when -D is in effect. */
1862 inf->stop_vma = section->vma + stop_offset;
1863
1864 octets = (*disassemble_fn) (section->vma + addr_offset, inf);
1865
1866 inf->stop_vma = 0;
1867 inf->fprintf_func = (fprintf_ftype) fprintf;
1868 inf->stream = stdout;
1869 if (insn_width == 0 && inf->bytes_per_line != 0)
1870 octets_per_line = inf->bytes_per_line;
1871 if (octets < (int) opb)
1872 {
1873 if (sfile.pos)
1874 printf ("%s\n", sfile.buffer);
1875 if (octets >= 0)
1876 {
1877 non_fatal (_("disassemble_fn returned length %d"),
1878 octets);
1879 exit_status = 1;
1880 }
1881 break;
1882 }
1883 }
1884 else
1885 {
1886 bfd_vma j;
1887
1888 octets = octets_per_line;
1889 if (addr_offset + octets / opb > stop_offset)
1890 octets = (stop_offset - addr_offset) * opb;
1891
1892 for (j = addr_offset * opb; j < addr_offset * opb + octets; ++j)
1893 {
1894 if (ISPRINT (data[j]))
1895 buf[j - addr_offset * opb] = data[j];
1896 else
1897 buf[j - addr_offset * opb] = '.';
1898 }
1899 buf[j - addr_offset * opb] = '\0';
1900 }
1901
1902 if (prefix_addresses
1903 ? show_raw_insn > 0
1904 : show_raw_insn >= 0)
1905 {
1906 bfd_vma j;
1907
1908 /* If ! prefix_addresses and ! wide_output, we print
1909 octets_per_line octets per line. */
1910 pb = octets;
1911 if (pb > octets_per_line && ! prefix_addresses && ! wide_output)
1912 pb = octets_per_line;
1913
1914 if (inf->bytes_per_chunk)
1915 bpc = inf->bytes_per_chunk;
1916 else
1917 bpc = 1;
1918
1919 for (j = addr_offset * opb; j < addr_offset * opb + pb; j += bpc)
1920 {
1921 /* PR 21580: Check for a buffer ending early. */
1922 if (j + bpc <= stop_offset * opb)
1923 {
1924 int k;
1925
1926 if (inf->display_endian == BFD_ENDIAN_LITTLE)
1927 {
1928 for (k = bpc - 1; k >= 0; k--)
1929 printf ("%02x", (unsigned) data[j + k]);
1930 }
1931 else
1932 {
1933 for (k = 0; k < bpc; k++)
1934 printf ("%02x", (unsigned) data[j + k]);
1935 }
1936 }
1937 putchar (' ');
1938 }
1939
1940 for (; pb < octets_per_line; pb += bpc)
1941 {
1942 int k;
1943
1944 for (k = 0; k < bpc; k++)
1945 printf (" ");
1946 putchar (' ');
1947 }
1948
1949 /* Separate raw data from instruction by extra space. */
1950 if (insns)
1951 putchar ('\t');
1952 else
1953 printf (" ");
1954 }
1955
1956 if (! insns)
1957 printf ("%s", buf);
1958 else if (sfile.pos)
1959 printf ("%s", sfile.buffer);
1960
1961 if (prefix_addresses
1962 ? show_raw_insn > 0
1963 : show_raw_insn >= 0)
1964 {
1965 while (pb < octets)
1966 {
1967 bfd_vma j;
1968 char *s;
1969
1970 putchar ('\n');
1971 j = addr_offset * opb + pb;
1972
1973 bfd_sprintf_vma (aux->abfd, buf, section->vma + j / opb);
1974 for (s = buf + skip_addr_chars; *s == '0'; s++)
1975 *s = ' ';
1976 if (*s == '\0')
1977 *--s = '0';
1978 printf ("%s:\t", buf + skip_addr_chars);
1979
1980 pb += octets_per_line;
1981 if (pb > octets)
1982 pb = octets;
1983 for (; j < addr_offset * opb + pb; j += bpc)
1984 {
1985 /* PR 21619: Check for a buffer ending early. */
1986 if (j + bpc <= stop_offset * opb)
1987 {
1988 int k;
1989
1990 if (inf->display_endian == BFD_ENDIAN_LITTLE)
1991 {
1992 for (k = bpc - 1; k >= 0; k--)
1993 printf ("%02x", (unsigned) data[j + k]);
1994 }
1995 else
1996 {
1997 for (k = 0; k < bpc; k++)
1998 printf ("%02x", (unsigned) data[j + k]);
1999 }
2000 }
2001 putchar (' ');
2002 }
2003 }
2004 }
2005
2006 if (!wide_output)
2007 putchar ('\n');
2008 else
2009 need_nl = TRUE;
2010 }
2011
2012 while ((*relppp) < relppend
2013 && (**relppp)->address < rel_offset + addr_offset + octets / opb)
2014 {
2015 if (dump_reloc_info || dump_dynamic_reloc_info)
2016 {
2017 arelent *q;
2018
2019 q = **relppp;
2020
2021 if (wide_output)
2022 putchar ('\t');
2023 else
2024 printf ("\t\t\t");
2025
2026 objdump_print_value (section->vma - rel_offset + q->address,
2027 inf, TRUE);
2028
2029 if (q->howto == NULL)
2030 printf (": *unknown*\t");
2031 else if (q->howto->name)
2032 printf (": %s\t", q->howto->name);
2033 else
2034 printf (": %d\t", q->howto->type);
2035
2036 if (q->sym_ptr_ptr == NULL || *q->sym_ptr_ptr == NULL)
2037 printf ("*unknown*");
2038 else
2039 {
2040 const char *sym_name;
2041
2042 sym_name = bfd_asymbol_name (*q->sym_ptr_ptr);
2043 if (sym_name != NULL && *sym_name != '\0')
2044 objdump_print_symname (aux->abfd, inf, *q->sym_ptr_ptr);
2045 else
2046 {
2047 asection *sym_sec;
2048
2049 sym_sec = bfd_get_section (*q->sym_ptr_ptr);
2050 sym_name = bfd_get_section_name (aux->abfd, sym_sec);
2051 if (sym_name == NULL || *sym_name == '\0')
2052 sym_name = "*unknown*";
2053 printf ("%s", sym_name);
2054 }
2055 }
2056
2057 if (q->addend)
2058 {
2059 bfd_signed_vma addend = q->addend;
2060 if (addend < 0)
2061 {
2062 printf ("-0x");
2063 addend = -addend;
2064 }
2065 else
2066 printf ("+0x");
2067 objdump_print_value (addend, inf, TRUE);
2068 }
2069
2070 printf ("\n");
2071 need_nl = FALSE;
2072 }
2073 ++(*relppp);
2074 }
2075
2076 if (need_nl)
2077 printf ("\n");
2078
2079 addr_offset += octets / opb;
2080 }
2081
2082 free (sfile.buffer);
2083 }
2084
2085 static void
2086 disassemble_section (bfd *abfd, asection *section, void *inf)
2087 {
2088 const struct elf_backend_data * bed;
2089 bfd_vma sign_adjust = 0;
2090 struct disassemble_info * pinfo = (struct disassemble_info *) inf;
2091 struct objdump_disasm_info * paux;
2092 unsigned int opb = pinfo->octets_per_byte;
2093 bfd_byte * data = NULL;
2094 bfd_size_type datasize = 0;
2095 arelent ** rel_pp = NULL;
2096 arelent ** rel_ppstart = NULL;
2097 arelent ** rel_ppend;
2098 bfd_vma stop_offset;
2099 asymbol * sym = NULL;
2100 long place = 0;
2101 long rel_count;
2102 bfd_vma rel_offset;
2103 unsigned long addr_offset;
2104
2105 /* Sections that do not contain machine
2106 code are not normally disassembled. */
2107 if (! disassemble_all
2108 && only_list == NULL
2109 && ((section->flags & (SEC_CODE | SEC_HAS_CONTENTS))
2110 != (SEC_CODE | SEC_HAS_CONTENTS)))
2111 return;
2112
2113 if (! process_section_p (section))
2114 return;
2115
2116 datasize = bfd_get_section_size (section);
2117 if (datasize == 0)
2118 return;
2119
2120 if (start_address == (bfd_vma) -1
2121 || start_address < section->vma)
2122 addr_offset = 0;
2123 else
2124 addr_offset = start_address - section->vma;
2125
2126 if (stop_address == (bfd_vma) -1)
2127 stop_offset = datasize / opb;
2128 else
2129 {
2130 if (stop_address < section->vma)
2131 stop_offset = 0;
2132 else
2133 stop_offset = stop_address - section->vma;
2134 if (stop_offset > datasize / opb)
2135 stop_offset = datasize / opb;
2136 }
2137
2138 if (addr_offset >= stop_offset)
2139 return;
2140
2141 /* Decide which set of relocs to use. Load them if necessary. */
2142 paux = (struct objdump_disasm_info *) pinfo->application_data;
2143 if (paux->dynrelbuf && dump_dynamic_reloc_info)
2144 {
2145 rel_pp = paux->dynrelbuf;
2146 rel_count = paux->dynrelcount;
2147 /* Dynamic reloc addresses are absolute, non-dynamic are section
2148 relative. REL_OFFSET specifies the reloc address corresponding
2149 to the start of this section. */
2150 rel_offset = section->vma;
2151 }
2152 else
2153 {
2154 rel_count = 0;
2155 rel_pp = NULL;
2156 rel_offset = 0;
2157
2158 if ((section->flags & SEC_RELOC) != 0
2159 && (dump_reloc_info || pinfo->disassembler_needs_relocs))
2160 {
2161 long relsize;
2162
2163 relsize = bfd_get_reloc_upper_bound (abfd, section);
2164 if (relsize < 0)
2165 bfd_fatal (bfd_get_filename (abfd));
2166
2167 if (relsize > 0)
2168 {
2169 rel_ppstart = rel_pp = (arelent **) xmalloc (relsize);
2170 rel_count = bfd_canonicalize_reloc (abfd, section, rel_pp, syms);
2171 if (rel_count < 0)
2172 bfd_fatal (bfd_get_filename (abfd));
2173
2174 /* Sort the relocs by address. */
2175 qsort (rel_pp, rel_count, sizeof (arelent *), compare_relocs);
2176 }
2177 }
2178 }
2179 rel_ppend = rel_pp + rel_count;
2180
2181 /* PR 21665: Check for overlarge datasizes.
2182 Note - we used to check for "datasize > bfd_get_file_size (abfd)" but
2183 this fails when using compressed sections or compressed file formats
2184 (eg MMO, tekhex).
2185
2186 The call to xmalloc below will fail if too much memory is requested,
2187 which will catch the problem in the normal use case. But if a memory
2188 checker is in use, eg valgrind or sanitize, then an exception will
2189 be still generated, so we try to catch the problem first.
2190
2191 Unfortunately there is no simple way to determine how much memory can
2192 be allocated by calling xmalloc. So instead we use a simple, arbitrary
2193 limit of 2Gb. Hopefully this should be enough for most users. If
2194 someone does start trying to disassemble sections larger then 2Gb in
2195 size they will doubtless complain and we can increase the limit. */
2196 #define MAX_XMALLOC (1024 * 1024 * 1024 * 2UL) /* 2Gb */
2197 if (datasize > MAX_XMALLOC)
2198 {
2199 non_fatal (_("Reading section %s failed because it is too big (%#lx)"),
2200 section->name, (unsigned long) datasize);
2201 return;
2202 }
2203
2204 data = (bfd_byte *) xmalloc (datasize);
2205
2206 if (!bfd_get_section_contents (abfd, section, data, 0, datasize))
2207 {
2208 non_fatal (_("Reading section %s failed because: %s"),
2209 section->name, bfd_errmsg (bfd_get_error ()));
2210 return;
2211 }
2212
2213 paux->sec = section;
2214 pinfo->buffer = data;
2215 pinfo->buffer_vma = section->vma;
2216 pinfo->buffer_length = datasize;
2217 pinfo->section = section;
2218
2219 /* Skip over the relocs belonging to addresses below the
2220 start address. */
2221 while (rel_pp < rel_ppend
2222 && (*rel_pp)->address < rel_offset + addr_offset)
2223 ++rel_pp;
2224
2225 printf (_("\nDisassembly of section %s:\n"), section->name);
2226
2227 /* Find the nearest symbol forwards from our current position. */
2228 paux->require_sec = TRUE;
2229 sym = (asymbol *) find_symbol_for_address (section->vma + addr_offset,
2230 (struct disassemble_info *) inf,
2231 &place);
2232 paux->require_sec = FALSE;
2233
2234 /* PR 9774: If the target used signed addresses then we must make
2235 sure that we sign extend the value that we calculate for 'addr'
2236 in the loop below. */
2237 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2238 && (bed = get_elf_backend_data (abfd)) != NULL
2239 && bed->sign_extend_vma)
2240 sign_adjust = (bfd_vma) 1 << (bed->s->arch_size - 1);
2241
2242 /* Disassemble a block of instructions up to the address associated with
2243 the symbol we have just found. Then print the symbol and find the
2244 next symbol on. Repeat until we have disassembled the entire section
2245 or we have reached the end of the address range we are interested in. */
2246 while (addr_offset < stop_offset)
2247 {
2248 bfd_vma addr;
2249 asymbol *nextsym;
2250 bfd_vma nextstop_offset;
2251 bfd_boolean insns;
2252
2253 addr = section->vma + addr_offset;
2254 addr = ((addr & ((sign_adjust << 1) - 1)) ^ sign_adjust) - sign_adjust;
2255
2256 if (sym != NULL && bfd_asymbol_value (sym) <= addr)
2257 {
2258 int x;
2259
2260 for (x = place;
2261 (x < sorted_symcount
2262 && (bfd_asymbol_value (sorted_syms[x]) <= addr));
2263 ++x)
2264 continue;
2265
2266 pinfo->symbols = sorted_syms + place;
2267 pinfo->num_symbols = x - place;
2268 pinfo->symtab_pos = place;
2269 }
2270 else
2271 {
2272 pinfo->symbols = NULL;
2273 pinfo->num_symbols = 0;
2274 pinfo->symtab_pos = -1;
2275 }
2276
2277 if (! prefix_addresses)
2278 {
2279 pinfo->fprintf_func (pinfo->stream, "\n");
2280 objdump_print_addr_with_sym (abfd, section, sym, addr,
2281 pinfo, FALSE);
2282 pinfo->fprintf_func (pinfo->stream, ":\n");
2283 }
2284
2285 if (sym != NULL && bfd_asymbol_value (sym) > addr)
2286 nextsym = sym;
2287 else if (sym == NULL)
2288 nextsym = NULL;
2289 else
2290 {
2291 #define is_valid_next_sym(SYM) \
2292 ((SYM)->section == section \
2293 && (bfd_asymbol_value (SYM) > bfd_asymbol_value (sym)) \
2294 && pinfo->symbol_is_valid (SYM, pinfo))
2295
2296 /* Search forward for the next appropriate symbol in
2297 SECTION. Note that all the symbols are sorted
2298 together into one big array, and that some sections
2299 may have overlapping addresses. */
2300 while (place < sorted_symcount
2301 && ! is_valid_next_sym (sorted_syms [place]))
2302 ++place;
2303
2304 if (place >= sorted_symcount)
2305 nextsym = NULL;
2306 else
2307 nextsym = sorted_syms[place];
2308 }
2309
2310 if (sym != NULL && bfd_asymbol_value (sym) > addr)
2311 nextstop_offset = bfd_asymbol_value (sym) - section->vma;
2312 else if (nextsym == NULL)
2313 nextstop_offset = stop_offset;
2314 else
2315 nextstop_offset = bfd_asymbol_value (nextsym) - section->vma;
2316
2317 if (nextstop_offset > stop_offset
2318 || nextstop_offset <= addr_offset)
2319 nextstop_offset = stop_offset;
2320
2321 /* If a symbol is explicitly marked as being an object
2322 rather than a function, just dump the bytes without
2323 disassembling them. */
2324 if (disassemble_all
2325 || sym == NULL
2326 || sym->section != section
2327 || bfd_asymbol_value (sym) > addr
2328 || ((sym->flags & BSF_OBJECT) == 0
2329 && (strstr (bfd_asymbol_name (sym), "gnu_compiled")
2330 == NULL)
2331 && (strstr (bfd_asymbol_name (sym), "gcc2_compiled")
2332 == NULL))
2333 || (sym->flags & BSF_FUNCTION) != 0)
2334 insns = TRUE;
2335 else
2336 insns = FALSE;
2337
2338 disassemble_bytes (pinfo, paux->disassemble_fn, insns, data,
2339 addr_offset, nextstop_offset,
2340 rel_offset, &rel_pp, rel_ppend);
2341
2342 addr_offset = nextstop_offset;
2343 sym = nextsym;
2344 }
2345
2346 free (data);
2347
2348 if (rel_ppstart != NULL)
2349 free (rel_ppstart);
2350 }
2351
2352 /* Disassemble the contents of an object file. */
2353
2354 static void
2355 disassemble_data (bfd *abfd)
2356 {
2357 struct disassemble_info disasm_info;
2358 struct objdump_disasm_info aux;
2359 long i;
2360
2361 print_files = NULL;
2362 prev_functionname = NULL;
2363 prev_line = -1;
2364 prev_discriminator = 0;
2365
2366 /* We make a copy of syms to sort. We don't want to sort syms
2367 because that will screw up the relocs. */
2368 sorted_symcount = symcount ? symcount : dynsymcount;
2369 sorted_syms = (asymbol **) xmalloc ((sorted_symcount + synthcount)
2370 * sizeof (asymbol *));
2371 memcpy (sorted_syms, symcount ? syms : dynsyms,
2372 sorted_symcount * sizeof (asymbol *));
2373
2374 sorted_symcount = remove_useless_symbols (sorted_syms, sorted_symcount);
2375
2376 for (i = 0; i < synthcount; ++i)
2377 {
2378 sorted_syms[sorted_symcount] = synthsyms + i;
2379 ++sorted_symcount;
2380 }
2381
2382 /* Sort the symbols into section and symbol order. */
2383 qsort (sorted_syms, sorted_symcount, sizeof (asymbol *), compare_symbols);
2384
2385 init_disassemble_info (&disasm_info, stdout, (fprintf_ftype) fprintf);
2386
2387 disasm_info.application_data = (void *) &aux;
2388 aux.abfd = abfd;
2389 aux.require_sec = FALSE;
2390 aux.dynrelbuf = NULL;
2391 aux.dynrelcount = 0;
2392 aux.reloc = NULL;
2393
2394 disasm_info.print_address_func = objdump_print_address;
2395 disasm_info.symbol_at_address_func = objdump_symbol_at_address;
2396
2397 if (machine != NULL)
2398 {
2399 const bfd_arch_info_type *inf = bfd_scan_arch (machine);
2400
2401 if (inf == NULL)
2402 fatal (_("can't use supplied machine %s"), machine);
2403
2404 abfd->arch_info = inf;
2405 }
2406
2407 if (endian != BFD_ENDIAN_UNKNOWN)
2408 {
2409 struct bfd_target *xvec;
2410
2411 xvec = (struct bfd_target *) xmalloc (sizeof (struct bfd_target));
2412 memcpy (xvec, abfd->xvec, sizeof (struct bfd_target));
2413 xvec->byteorder = endian;
2414 abfd->xvec = xvec;
2415 }
2416
2417 /* Use libopcodes to locate a suitable disassembler. */
2418 aux.disassemble_fn = disassembler (bfd_get_arch (abfd),
2419 bfd_big_endian (abfd),
2420 bfd_get_mach (abfd), abfd);
2421 if (!aux.disassemble_fn)
2422 {
2423 non_fatal (_("can't disassemble for architecture %s\n"),
2424 bfd_printable_arch_mach (bfd_get_arch (abfd), 0));
2425 exit_status = 1;
2426 return;
2427 }
2428
2429 disasm_info.flavour = bfd_get_flavour (abfd);
2430 disasm_info.arch = bfd_get_arch (abfd);
2431 disasm_info.mach = bfd_get_mach (abfd);
2432 disasm_info.disassembler_options = disassembler_options;
2433 disasm_info.octets_per_byte = bfd_octets_per_byte (abfd);
2434 disasm_info.skip_zeroes = DEFAULT_SKIP_ZEROES;
2435 disasm_info.skip_zeroes_at_end = DEFAULT_SKIP_ZEROES_AT_END;
2436 disasm_info.disassembler_needs_relocs = FALSE;
2437
2438 if (bfd_big_endian (abfd))
2439 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_BIG;
2440 else if (bfd_little_endian (abfd))
2441 disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_LITTLE;
2442 else
2443 /* ??? Aborting here seems too drastic. We could default to big or little
2444 instead. */
2445 disasm_info.endian = BFD_ENDIAN_UNKNOWN;
2446
2447 /* Allow the target to customize the info structure. */
2448 disassemble_init_for_target (& disasm_info);
2449
2450 /* Pre-load the dynamic relocs as we may need them during the disassembly. */
2451 {
2452 long relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
2453
2454 if (relsize < 0 && dump_dynamic_reloc_info)
2455 bfd_fatal (bfd_get_filename (abfd));
2456
2457 if (relsize > 0)
2458 {
2459 aux.dynrelbuf = (arelent **) xmalloc (relsize);
2460 aux.dynrelcount = bfd_canonicalize_dynamic_reloc (abfd,
2461 aux.dynrelbuf,
2462 dynsyms);
2463 if (aux.dynrelcount < 0)
2464 bfd_fatal (bfd_get_filename (abfd));
2465
2466 /* Sort the relocs by address. */
2467 qsort (aux.dynrelbuf, aux.dynrelcount, sizeof (arelent *),
2468 compare_relocs);
2469 }
2470 }
2471 disasm_info.symtab = sorted_syms;
2472 disasm_info.symtab_size = sorted_symcount;
2473
2474 bfd_map_over_sections (abfd, disassemble_section, & disasm_info);
2475
2476 if (aux.dynrelbuf != NULL)
2477 free (aux.dynrelbuf);
2478 free (sorted_syms);
2479 }
2480 \f
2481 static int
2482 load_specific_debug_section (enum dwarf_section_display_enum debug,
2483 asection *sec, void *file)
2484 {
2485 struct dwarf_section *section = &debug_displays [debug].section;
2486 bfd *abfd = (bfd *) file;
2487 bfd_boolean ret;
2488
2489 /* If it is already loaded, do nothing. */
2490 if (section->start != NULL)
2491 return 1;
2492
2493 section->reloc_info = NULL;
2494 section->num_relocs = 0;
2495 section->address = bfd_get_section_vma (abfd, sec);
2496 section->size = bfd_get_section_size (sec);
2497 section->start = NULL;
2498 section->user_data = sec;
2499 ret = bfd_get_full_section_contents (abfd, sec, &section->start);
2500
2501 if (! ret)
2502 {
2503 free_debug_section (debug);
2504 printf (_("\nCan't get contents for section '%s'.\n"),
2505 section->name);
2506 return 0;
2507 }
2508
2509 if (is_relocatable && debug_displays [debug].relocate)
2510 {
2511 bfd_cache_section_contents (sec, section->start);
2512
2513 ret = bfd_simple_get_relocated_section_contents (abfd,
2514 sec,
2515 section->start,
2516 syms) != NULL;
2517
2518 if (! ret)
2519 {
2520 free_debug_section (debug);
2521 printf (_("\nCan't get contents for section '%s'.\n"),
2522 section->name);
2523 return 0;
2524 }
2525
2526 long reloc_size;
2527
2528 reloc_size = bfd_get_reloc_upper_bound (abfd, sec);
2529 if (reloc_size > 0)
2530 {
2531 unsigned long reloc_count;
2532 arelent **relocs;
2533
2534 relocs = (arelent **) xmalloc (reloc_size);
2535
2536 reloc_count = bfd_canonicalize_reloc (abfd, sec, relocs, NULL);
2537 if (reloc_count == 0)
2538 free (relocs);
2539 else
2540 {
2541 section->reloc_info = relocs;
2542 section->num_relocs = reloc_count;
2543 }
2544 }
2545 }
2546
2547 return 1;
2548 }
2549
2550 bfd_boolean
2551 reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
2552 {
2553 arelent ** relocs;
2554 arelent * rp;
2555
2556 if (dsec == NULL || dsec->reloc_info == NULL)
2557 return FALSE;
2558
2559 relocs = (arelent **) dsec->reloc_info;
2560
2561 for (; (rp = * relocs) != NULL; ++ relocs)
2562 if (rp->address == offset)
2563 return TRUE;
2564
2565 return FALSE;
2566 }
2567
2568 int
2569 load_debug_section (enum dwarf_section_display_enum debug, void *file)
2570 {
2571 struct dwarf_section *section = &debug_displays [debug].section;
2572 bfd *abfd = (bfd *) file;
2573 asection *sec;
2574
2575 /* If it is already loaded, do nothing. */
2576 if (section->start != NULL)
2577 return 1;
2578
2579 /* Locate the debug section. */
2580 sec = bfd_get_section_by_name (abfd, section->uncompressed_name);
2581 if (sec != NULL)
2582 section->name = section->uncompressed_name;
2583 else
2584 {
2585 sec = bfd_get_section_by_name (abfd, section->compressed_name);
2586 if (sec != NULL)
2587 section->name = section->compressed_name;
2588 }
2589 if (sec == NULL)
2590 return 0;
2591
2592 return load_specific_debug_section (debug, sec, file);
2593 }
2594
2595 void
2596 free_debug_section (enum dwarf_section_display_enum debug)
2597 {
2598 struct dwarf_section *section = &debug_displays [debug].section;
2599
2600 if (section->start == NULL)
2601 return;
2602
2603 /* PR 17512: file: 0f67f69d. */
2604 if (section->user_data != NULL)
2605 {
2606 asection * sec = (asection *) section->user_data;
2607
2608 /* If we are freeing contents that are also pointed to by the BFD
2609 library's section structure then make sure to update those pointers
2610 too. Otherwise, the next time we try to load data for this section
2611 we can end up using a stale pointer. */
2612 if (section->start == sec->contents)
2613 {
2614 sec->contents = NULL;
2615 sec->flags &= ~ SEC_IN_MEMORY;
2616 sec->compress_status = COMPRESS_SECTION_NONE;
2617 }
2618 }
2619
2620 free ((char *) section->start);
2621 section->start = NULL;
2622 section->address = 0;
2623 section->size = 0;
2624 }
2625
2626 static void
2627 dump_dwarf_section (bfd *abfd, asection *section,
2628 void *arg ATTRIBUTE_UNUSED)
2629 {
2630 const char *name = bfd_get_section_name (abfd, section);
2631 const char *match;
2632 int i;
2633
2634 if (CONST_STRNEQ (name, ".gnu.linkonce.wi."))
2635 match = ".debug_info";
2636 else
2637 match = name;
2638
2639 for (i = 0; i < max; i++)
2640 if ((strcmp (debug_displays [i].section.uncompressed_name, match) == 0
2641 || strcmp (debug_displays [i].section.compressed_name, match) == 0)
2642 && debug_displays [i].enabled != NULL
2643 && *debug_displays [i].enabled)
2644 {
2645 struct dwarf_section *sec = &debug_displays [i].section;
2646
2647 if (strcmp (sec->uncompressed_name, match) == 0)
2648 sec->name = sec->uncompressed_name;
2649 else
2650 sec->name = sec->compressed_name;
2651 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
2652 section, abfd))
2653 {
2654 debug_displays [i].display (sec, abfd);
2655
2656 if (i != info && i != abbrev)
2657 free_debug_section ((enum dwarf_section_display_enum) i);
2658 }
2659 break;
2660 }
2661 }
2662
2663 /* Dump the dwarf debugging information. */
2664
2665 static void
2666 dump_dwarf (bfd *abfd)
2667 {
2668 is_relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0;
2669
2670 eh_addr_size = bfd_arch_bits_per_address (abfd) / 8;
2671
2672 if (bfd_big_endian (abfd))
2673 byte_get = byte_get_big_endian;
2674 else if (bfd_little_endian (abfd))
2675 byte_get = byte_get_little_endian;
2676 else
2677 /* PR 17512: file: objdump-s-endless-loop.tekhex. */
2678 {
2679 warn (_("File %s does not contain any dwarf debug information\n"),
2680 bfd_get_filename (abfd));
2681 return;
2682 }
2683
2684 switch (bfd_get_arch (abfd))
2685 {
2686 case bfd_arch_i386:
2687 switch (bfd_get_mach (abfd))
2688 {
2689 case bfd_mach_x86_64:
2690 case bfd_mach_x86_64_intel_syntax:
2691 case bfd_mach_x86_64_nacl:
2692 case bfd_mach_x64_32:
2693 case bfd_mach_x64_32_intel_syntax:
2694 case bfd_mach_x64_32_nacl:
2695 init_dwarf_regnames_x86_64 ();
2696 break;
2697
2698 default:
2699 init_dwarf_regnames_i386 ();
2700 break;
2701 }
2702 break;
2703
2704 case bfd_arch_iamcu:
2705 init_dwarf_regnames_iamcu ();
2706 break;
2707
2708 case bfd_arch_aarch64:
2709 init_dwarf_regnames_aarch64();
2710 break;
2711
2712 case bfd_arch_s390:
2713 init_dwarf_regnames_s390 ();
2714 break;
2715
2716 default:
2717 break;
2718 }
2719
2720 bfd_map_over_sections (abfd, dump_dwarf_section, NULL);
2721
2722 free_debug_memory ();
2723 }
2724 \f
2725 /* Read ABFD's stabs section STABSECT_NAME, and return a pointer to
2726 it. Return NULL on failure. */
2727
2728 static char *
2729 read_section_stabs (bfd *abfd, const char *sect_name, bfd_size_type *size_ptr)
2730 {
2731 asection *stabsect;
2732 bfd_size_type size;
2733 char *contents;
2734
2735 stabsect = bfd_get_section_by_name (abfd, sect_name);
2736 if (stabsect == NULL)
2737 {
2738 printf (_("No %s section present\n\n"), sect_name);
2739 return FALSE;
2740 }
2741
2742 size = bfd_section_size (abfd, stabsect);
2743 contents = (char *) xmalloc (size);
2744
2745 if (! bfd_get_section_contents (abfd, stabsect, contents, 0, size))
2746 {
2747 non_fatal (_("reading %s section of %s failed: %s"),
2748 sect_name, bfd_get_filename (abfd),
2749 bfd_errmsg (bfd_get_error ()));
2750 exit_status = 1;
2751 free (contents);
2752 return NULL;
2753 }
2754
2755 *size_ptr = size;
2756
2757 return contents;
2758 }
2759
2760 /* Stabs entries use a 12 byte format:
2761 4 byte string table index
2762 1 byte stab type
2763 1 byte stab other field
2764 2 byte stab desc field
2765 4 byte stab value
2766 FIXME: This will have to change for a 64 bit object format. */
2767
2768 #define STRDXOFF (0)
2769 #define TYPEOFF (4)
2770 #define OTHEROFF (5)
2771 #define DESCOFF (6)
2772 #define VALOFF (8)
2773 #define STABSIZE (12)
2774
2775 /* Print ABFD's stabs section STABSECT_NAME (in `stabs'),
2776 using string table section STRSECT_NAME (in `strtab'). */
2777
2778 static void
2779 print_section_stabs (bfd *abfd,
2780 const char *stabsect_name,
2781 unsigned *string_offset_ptr)
2782 {
2783 int i;
2784 unsigned file_string_table_offset = 0;
2785 unsigned next_file_string_table_offset = *string_offset_ptr;
2786 bfd_byte *stabp, *stabs_end;
2787
2788 stabp = stabs;
2789 stabs_end = stabp + stab_size;
2790
2791 printf (_("Contents of %s section:\n\n"), stabsect_name);
2792 printf ("Symnum n_type n_othr n_desc n_value n_strx String\n");
2793
2794 /* Loop through all symbols and print them.
2795
2796 We start the index at -1 because there is a dummy symbol on
2797 the front of stabs-in-{coff,elf} sections that supplies sizes. */
2798 for (i = -1; stabp <= stabs_end - STABSIZE; stabp += STABSIZE, i++)
2799 {
2800 const char *name;
2801 unsigned long strx;
2802 unsigned char type, other;
2803 unsigned short desc;
2804 bfd_vma value;
2805
2806 strx = bfd_h_get_32 (abfd, stabp + STRDXOFF);
2807 type = bfd_h_get_8 (abfd, stabp + TYPEOFF);
2808 other = bfd_h_get_8 (abfd, stabp + OTHEROFF);
2809 desc = bfd_h_get_16 (abfd, stabp + DESCOFF);
2810 value = bfd_h_get_32 (abfd, stabp + VALOFF);
2811
2812 printf ("\n%-6d ", i);
2813 /* Either print the stab name, or, if unnamed, print its number
2814 again (makes consistent formatting for tools like awk). */
2815 name = bfd_get_stab_name (type);
2816 if (name != NULL)
2817 printf ("%-6s", name);
2818 else if (type == N_UNDF)
2819 printf ("HdrSym");
2820 else
2821 printf ("%-6d", type);
2822 printf (" %-6d %-6d ", other, desc);
2823 bfd_printf_vma (abfd, value);
2824 printf (" %-6lu", strx);
2825
2826 /* Symbols with type == 0 (N_UNDF) specify the length of the
2827 string table associated with this file. We use that info
2828 to know how to relocate the *next* file's string table indices. */
2829 if (type == N_UNDF)
2830 {
2831 file_string_table_offset = next_file_string_table_offset;
2832 next_file_string_table_offset += value;
2833 }
2834 else
2835 {
2836 bfd_size_type amt = strx + file_string_table_offset;
2837
2838 /* Using the (possibly updated) string table offset, print the
2839 string (if any) associated with this symbol. */
2840 if (amt < stabstr_size)
2841 /* PR 17512: file: 079-79389-0.001:0.1. */
2842 printf (" %.*s", (int)(stabstr_size - amt), strtab + amt);
2843 else
2844 printf (" *");
2845 }
2846 }
2847 printf ("\n\n");
2848 *string_offset_ptr = next_file_string_table_offset;
2849 }
2850
2851 typedef struct
2852 {
2853 const char * section_name;
2854 const char * string_section_name;
2855 unsigned string_offset;
2856 }
2857 stab_section_names;
2858
2859 static void
2860 find_stabs_section (bfd *abfd, asection *section, void *names)
2861 {
2862 int len;
2863 stab_section_names * sought = (stab_section_names *) names;
2864
2865 /* Check for section names for which stabsect_name is a prefix, to
2866 handle .stab.N, etc. */
2867 len = strlen (sought->section_name);
2868
2869 /* If the prefix matches, and the files section name ends with a
2870 nul or a digit, then we match. I.e., we want either an exact
2871 match or a section followed by a number. */
2872 if (strncmp (sought->section_name, section->name, len) == 0
2873 && (section->name[len] == 0
2874 || (section->name[len] == '.' && ISDIGIT (section->name[len + 1]))))
2875 {
2876 if (strtab == NULL)
2877 strtab = read_section_stabs (abfd, sought->string_section_name,
2878 &stabstr_size);
2879
2880 if (strtab)
2881 {
2882 stabs = (bfd_byte *) read_section_stabs (abfd, section->name,
2883 &stab_size);
2884 if (stabs)
2885 print_section_stabs (abfd, section->name, &sought->string_offset);
2886 }
2887 }
2888 }
2889
2890 static void
2891 dump_stabs_section (bfd *abfd, char *stabsect_name, char *strsect_name)
2892 {
2893 stab_section_names s;
2894
2895 s.section_name = stabsect_name;
2896 s.string_section_name = strsect_name;
2897 s.string_offset = 0;
2898
2899 bfd_map_over_sections (abfd, find_stabs_section, & s);
2900
2901 free (strtab);
2902 strtab = NULL;
2903 }
2904
2905 /* Dump the any sections containing stabs debugging information. */
2906
2907 static void
2908 dump_stabs (bfd *abfd)
2909 {
2910 dump_stabs_section (abfd, ".stab", ".stabstr");
2911 dump_stabs_section (abfd, ".stab.excl", ".stab.exclstr");
2912 dump_stabs_section (abfd, ".stab.index", ".stab.indexstr");
2913
2914 /* For Darwin. */
2915 dump_stabs_section (abfd, "LC_SYMTAB.stabs", "LC_SYMTAB.stabstr");
2916
2917 dump_stabs_section (abfd, "$GDB_SYMBOLS$", "$GDB_STRINGS$");
2918 }
2919 \f
2920 static void
2921 dump_bfd_header (bfd *abfd)
2922 {
2923 char *comma = "";
2924
2925 printf (_("architecture: %s, "),
2926 bfd_printable_arch_mach (bfd_get_arch (abfd),
2927 bfd_get_mach (abfd)));
2928 printf (_("flags 0x%08x:\n"), abfd->flags & ~BFD_FLAGS_FOR_BFD_USE_MASK);
2929
2930 #define PF(x, y) if (abfd->flags & x) {printf("%s%s", comma, y); comma=", ";}
2931 PF (HAS_RELOC, "HAS_RELOC");
2932 PF (EXEC_P, "EXEC_P");
2933 PF (HAS_LINENO, "HAS_LINENO");
2934 PF (HAS_DEBUG, "HAS_DEBUG");
2935 PF (HAS_SYMS, "HAS_SYMS");
2936 PF (HAS_LOCALS, "HAS_LOCALS");
2937 PF (DYNAMIC, "DYNAMIC");
2938 PF (WP_TEXT, "WP_TEXT");
2939 PF (D_PAGED, "D_PAGED");
2940 PF (BFD_IS_RELAXABLE, "BFD_IS_RELAXABLE");
2941 printf (_("\nstart address 0x"));
2942 bfd_printf_vma (abfd, abfd->start_address);
2943 printf ("\n");
2944 }
2945
2946 \f
2947 static void
2948 dump_bfd_private_header (bfd *abfd)
2949 {
2950 bfd_print_private_bfd_data (abfd, stdout);
2951 }
2952
2953 static void
2954 dump_target_specific (bfd *abfd)
2955 {
2956 const struct objdump_private_desc * const *desc;
2957 struct objdump_private_option *opt;
2958 char *e, *b;
2959
2960 /* Find the desc. */
2961 for (desc = objdump_private_vectors; *desc != NULL; desc++)
2962 if ((*desc)->filter (abfd))
2963 break;
2964
2965 if (*desc == NULL)
2966 {
2967 non_fatal (_("option -P/--private not supported by this file"));
2968 return;
2969 }
2970
2971 /* Clear all options. */
2972 for (opt = (*desc)->options; opt->name; opt++)
2973 opt->selected = FALSE;
2974
2975 /* Decode options. */
2976 b = dump_private_options;
2977 do
2978 {
2979 e = strchr (b, ',');
2980
2981 if (e)
2982 *e = 0;
2983
2984 for (opt = (*desc)->options; opt->name; opt++)
2985 if (strcmp (opt->name, b) == 0)
2986 {
2987 opt->selected = TRUE;
2988 break;
2989 }
2990 if (opt->name == NULL)
2991 non_fatal (_("target specific dump '%s' not supported"), b);
2992
2993 if (e)
2994 {
2995 *e = ',';
2996 b = e + 1;
2997 }
2998 }
2999 while (e != NULL);
3000
3001 /* Dump. */
3002 (*desc)->dump (abfd);
3003 }
3004 \f
3005 /* Display a section in hexadecimal format with associated characters.
3006 Each line prefixed by the zero padded address. */
3007
3008 static void
3009 dump_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNUSED)
3010 {
3011 bfd_byte *data = NULL;
3012 bfd_size_type datasize;
3013 bfd_vma addr_offset;
3014 bfd_vma start_offset;
3015 bfd_vma stop_offset;
3016 unsigned int opb = bfd_octets_per_byte (abfd);
3017 /* Bytes per line. */
3018 const int onaline = 16;
3019 char buf[64];
3020 int count;
3021 int width;
3022
3023 if ((section->flags & SEC_HAS_CONTENTS) == 0)
3024 return;
3025
3026 if (! process_section_p (section))
3027 return;
3028
3029 if ((datasize = bfd_section_size (abfd, section)) == 0)
3030 return;
3031
3032 /* Compute the address range to display. */
3033 if (start_address == (bfd_vma) -1
3034 || start_address < section->vma)
3035 start_offset = 0;
3036 else
3037 start_offset = start_address - section->vma;
3038
3039 if (stop_address == (bfd_vma) -1)
3040 stop_offset = datasize / opb;
3041 else
3042 {
3043 if (stop_address < section->vma)
3044 stop_offset = 0;
3045 else
3046 stop_offset = stop_address - section->vma;
3047
3048 if (stop_offset > datasize / opb)
3049 stop_offset = datasize / opb;
3050 }
3051
3052 if (start_offset >= stop_offset)
3053 return;
3054
3055 printf (_("Contents of section %s:"), section->name);
3056 if (display_file_offsets)
3057 printf (_(" (Starting at file offset: 0x%lx)"),
3058 (unsigned long) (section->filepos + start_offset));
3059 printf ("\n");
3060
3061 if (!bfd_get_full_section_contents (abfd, section, &data))
3062 {
3063 non_fatal (_("Reading section %s failed because: %s"),
3064 section->name, bfd_errmsg (bfd_get_error ()));
3065 return;
3066 }
3067
3068 width = 4;
3069
3070 bfd_sprintf_vma (abfd, buf, start_offset + section->vma);
3071 if (strlen (buf) >= sizeof (buf))
3072 abort ();
3073
3074 count = 0;
3075 while (buf[count] == '0' && buf[count+1] != '\0')
3076 count++;
3077 count = strlen (buf) - count;
3078 if (count > width)
3079 width = count;
3080
3081 bfd_sprintf_vma (abfd, buf, stop_offset + section->vma - 1);
3082 if (strlen (buf) >= sizeof (buf))
3083 abort ();
3084
3085 count = 0;
3086 while (buf[count] == '0' && buf[count+1] != '\0')
3087 count++;
3088 count = strlen (buf) - count;
3089 if (count > width)
3090 width = count;
3091
3092 for (addr_offset = start_offset;
3093 addr_offset < stop_offset; addr_offset += onaline / opb)
3094 {
3095 bfd_size_type j;
3096
3097 bfd_sprintf_vma (abfd, buf, (addr_offset + section->vma));
3098 count = strlen (buf);
3099 if ((size_t) count >= sizeof (buf))
3100 abort ();
3101
3102 putchar (' ');
3103 while (count < width)
3104 {
3105 putchar ('0');
3106 count++;
3107 }
3108 fputs (buf + count - width, stdout);
3109 putchar (' ');
3110
3111 for (j = addr_offset * opb;
3112 j < addr_offset * opb + onaline; j++)
3113 {
3114 if (j < stop_offset * opb)
3115 printf ("%02x", (unsigned) (data[j]));
3116 else
3117 printf (" ");
3118 if ((j & 3) == 3)
3119 printf (" ");
3120 }
3121
3122 printf (" ");
3123 for (j = addr_offset * opb;
3124 j < addr_offset * opb + onaline; j++)
3125 {
3126 if (j >= stop_offset * opb)
3127 printf (" ");
3128 else
3129 printf ("%c", ISPRINT (data[j]) ? data[j] : '.');
3130 }
3131 putchar ('\n');
3132 }
3133 free (data);
3134 }
3135
3136 /* Actually display the various requested regions. */
3137
3138 static void
3139 dump_data (bfd *abfd)
3140 {
3141 bfd_map_over_sections (abfd, dump_section, NULL);
3142 }
3143
3144 /* Should perhaps share code and display with nm? */
3145
3146 static void
3147 dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic)
3148 {
3149 asymbol **current;
3150 long max_count;
3151 long count;
3152
3153 if (dynamic)
3154 {
3155 current = dynsyms;
3156 max_count = dynsymcount;
3157 printf ("DYNAMIC SYMBOL TABLE:\n");
3158 }
3159 else
3160 {
3161 current = syms;
3162 max_count = symcount;
3163 printf ("SYMBOL TABLE:\n");
3164 }
3165
3166 if (max_count == 0)
3167 printf (_("no symbols\n"));
3168
3169 for (count = 0; count < max_count; count++)
3170 {
3171 bfd *cur_bfd;
3172
3173 if (*current == NULL)
3174 printf (_("no information for symbol number %ld\n"), count);
3175
3176 else if ((cur_bfd = bfd_asymbol_bfd (*current)) == NULL)
3177 printf (_("could not determine the type of symbol number %ld\n"),
3178 count);
3179
3180 else if (process_section_p ((* current)->section)
3181 && (dump_special_syms
3182 || !bfd_is_target_special_symbol (cur_bfd, *current)))
3183 {
3184 const char *name = (*current)->name;
3185
3186 if (do_demangle && name != NULL && *name != '\0')
3187 {
3188 char *alloc;
3189
3190 /* If we want to demangle the name, we demangle it
3191 here, and temporarily clobber it while calling
3192 bfd_print_symbol. FIXME: This is a gross hack. */
3193 alloc = bfd_demangle (cur_bfd, name, DMGL_ANSI | DMGL_PARAMS);
3194 if (alloc != NULL)
3195 (*current)->name = alloc;
3196 bfd_print_symbol (cur_bfd, stdout, *current,
3197 bfd_print_symbol_all);
3198 if (alloc != NULL)
3199 {
3200 (*current)->name = name;
3201 free (alloc);
3202 }
3203 }
3204 else
3205 bfd_print_symbol (cur_bfd, stdout, *current,
3206 bfd_print_symbol_all);
3207 printf ("\n");
3208 }
3209
3210 current++;
3211 }
3212 printf ("\n\n");
3213 }
3214 \f
3215 static void
3216 dump_reloc_set (bfd *abfd, asection *sec, arelent **relpp, long relcount)
3217 {
3218 arelent **p;
3219 char *last_filename, *last_functionname;
3220 unsigned int last_line;
3221 unsigned int last_discriminator;
3222
3223 /* Get column headers lined up reasonably. */
3224 {
3225 static int width;
3226
3227 if (width == 0)
3228 {
3229 char buf[30];
3230
3231 bfd_sprintf_vma (abfd, buf, (bfd_vma) -1);
3232 width = strlen (buf) - 7;
3233 }
3234 printf ("OFFSET %*s TYPE %*s VALUE \n", width, "", 12, "");
3235 }
3236
3237 last_filename = NULL;
3238 last_functionname = NULL;
3239 last_line = 0;
3240 last_discriminator = 0;
3241
3242 for (p = relpp; relcount && *p != NULL; p++, relcount--)
3243 {
3244 arelent *q = *p;
3245 const char *filename, *functionname;
3246 unsigned int linenumber;
3247 unsigned int discriminator;
3248 const char *sym_name;
3249 const char *section_name;
3250 bfd_vma addend2 = 0;
3251
3252 if (start_address != (bfd_vma) -1
3253 && q->address < start_address)
3254 continue;
3255 if (stop_address != (bfd_vma) -1
3256 && q->address > stop_address)
3257 continue;
3258
3259 if (with_line_numbers
3260 && sec != NULL
3261 && bfd_find_nearest_line_discriminator (abfd, sec, syms, q->address,
3262 &filename, &functionname,
3263 &linenumber, &discriminator))
3264 {
3265 if (functionname != NULL
3266 && (last_functionname == NULL
3267 || strcmp (functionname, last_functionname) != 0))
3268 {
3269 printf ("%s():\n", functionname);
3270 if (last_functionname != NULL)
3271 free (last_functionname);
3272 last_functionname = xstrdup (functionname);
3273 }
3274
3275 if (linenumber > 0
3276 && (linenumber != last_line
3277 || (filename != NULL
3278 && last_filename != NULL
3279 && filename_cmp (filename, last_filename) != 0)
3280 || (discriminator != last_discriminator)))
3281 {
3282 if (discriminator > 0)
3283 printf ("%s:%u\n", filename == NULL ? "???" : filename, linenumber);
3284 else
3285 printf ("%s:%u (discriminator %u)\n", filename == NULL ? "???" : filename,
3286 linenumber, discriminator);
3287 last_line = linenumber;
3288 last_discriminator = discriminator;
3289 if (last_filename != NULL)
3290 free (last_filename);
3291 if (filename == NULL)
3292 last_filename = NULL;
3293 else
3294 last_filename = xstrdup (filename);
3295 }
3296 }
3297
3298 if (q->sym_ptr_ptr && *q->sym_ptr_ptr)
3299 {
3300 sym_name = (*(q->sym_ptr_ptr))->name;
3301 section_name = (*(q->sym_ptr_ptr))->section->name;
3302 }
3303 else
3304 {
3305 sym_name = NULL;
3306 section_name = NULL;
3307 }
3308
3309 bfd_printf_vma (abfd, q->address);
3310 if (q->howto == NULL)
3311 printf (" *unknown* ");
3312 else if (q->howto->name)
3313 {
3314 const char *name = q->howto->name;
3315
3316 /* R_SPARC_OLO10 relocations contain two addends.
3317 But because 'arelent' lacks enough storage to
3318 store them both, the 64-bit ELF Sparc backend
3319 records this as two relocations. One R_SPARC_LO10
3320 and one R_SPARC_13, both pointing to the same
3321 address. This is merely so that we have some
3322 place to store both addend fields.
3323
3324 Undo this transformation, otherwise the output
3325 will be confusing. */
3326 if (abfd->xvec->flavour == bfd_target_elf_flavour
3327 && elf_tdata(abfd)->elf_header->e_machine == EM_SPARCV9
3328 && relcount > 1
3329 && !strcmp (q->howto->name, "R_SPARC_LO10"))
3330 {
3331 arelent *q2 = *(p + 1);
3332 if (q2 != NULL
3333 && q2->howto
3334 && q->address == q2->address
3335 && !strcmp (q2->howto->name, "R_SPARC_13"))
3336 {
3337 name = "R_SPARC_OLO10";
3338 addend2 = q2->addend;
3339 p++;
3340 }
3341 }
3342 printf (" %-16s ", name);
3343 }
3344 else
3345 printf (" %-16d ", q->howto->type);
3346
3347 if (sym_name)
3348 {
3349 objdump_print_symname (abfd, NULL, *q->sym_ptr_ptr);
3350 }
3351 else
3352 {
3353 if (section_name == NULL)
3354 section_name = "*unknown*";
3355 printf ("[%s]", section_name);
3356 }
3357
3358 if (q->addend)
3359 {
3360 bfd_signed_vma addend = q->addend;
3361 if (addend < 0)
3362 {
3363 printf ("-0x");
3364 addend = -addend;
3365 }
3366 else
3367 printf ("+0x");
3368 bfd_printf_vma (abfd, addend);
3369 }
3370 if (addend2)
3371 {
3372 printf ("+0x");
3373 bfd_printf_vma (abfd, addend2);
3374 }
3375
3376 printf ("\n");
3377 }
3378
3379 if (last_filename != NULL)
3380 free (last_filename);
3381 if (last_functionname != NULL)
3382 free (last_functionname);
3383 }
3384
3385 static void
3386 dump_relocs_in_section (bfd *abfd,
3387 asection *section,
3388 void *dummy ATTRIBUTE_UNUSED)
3389 {
3390 arelent **relpp;
3391 long relcount;
3392 long relsize;
3393
3394 if ( bfd_is_abs_section (section)
3395 || bfd_is_und_section (section)
3396 || bfd_is_com_section (section)
3397 || (! process_section_p (section))
3398 || ((section->flags & SEC_RELOC) == 0))
3399 return;
3400
3401 relsize = bfd_get_reloc_upper_bound (abfd, section);
3402 if (relsize < 0)
3403 bfd_fatal (bfd_get_filename (abfd));
3404
3405 printf ("RELOCATION RECORDS FOR [%s]:", section->name);
3406
3407 if (relsize == 0)
3408 {
3409 printf (" (none)\n\n");
3410 return;
3411 }
3412
3413 if ((bfd_get_file_flags (abfd) & (BFD_IN_MEMORY | BFD_LINKER_CREATED)) == 0
3414 && (ufile_ptr) relsize > bfd_get_file_size (abfd))
3415 {
3416 printf (" (too many: 0x%x)\n", section->reloc_count);
3417 bfd_set_error (bfd_error_file_truncated);
3418 bfd_fatal (bfd_get_filename (abfd));
3419 }
3420
3421 relpp = (arelent **) xmalloc (relsize);
3422 relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms);
3423
3424 if (relcount < 0)
3425 {
3426 printf ("\n");
3427 non_fatal (_("failed to read relocs in: %s"), bfd_get_filename (abfd));
3428 bfd_fatal (_("error message was"));
3429 }
3430 else if (relcount == 0)
3431 printf (" (none)\n\n");
3432 else
3433 {
3434 printf ("\n");
3435 dump_reloc_set (abfd, section, relpp, relcount);
3436 printf ("\n\n");
3437 }
3438 free (relpp);
3439 }
3440
3441 static void
3442 dump_relocs (bfd *abfd)
3443 {
3444 bfd_map_over_sections (abfd, dump_relocs_in_section, NULL);
3445 }
3446
3447 static void
3448 dump_dynamic_relocs (bfd *abfd)
3449 {
3450 long relsize;
3451 arelent **relpp;
3452 long relcount;
3453
3454 relsize = bfd_get_dynamic_reloc_upper_bound (abfd);
3455 if (relsize < 0)
3456 bfd_fatal (bfd_get_filename (abfd));
3457
3458 printf ("DYNAMIC RELOCATION RECORDS");
3459
3460 if (relsize == 0)
3461 printf (" (none)\n\n");
3462 else
3463 {
3464 relpp = (arelent **) xmalloc (relsize);
3465 relcount = bfd_canonicalize_dynamic_reloc (abfd, relpp, dynsyms);
3466
3467 if (relcount < 0)
3468 bfd_fatal (bfd_get_filename (abfd));
3469 else if (relcount == 0)
3470 printf (" (none)\n\n");
3471 else
3472 {
3473 printf ("\n");
3474 dump_reloc_set (abfd, NULL, relpp, relcount);
3475 printf ("\n\n");
3476 }
3477 free (relpp);
3478 }
3479 }
3480
3481 /* Creates a table of paths, to search for source files. */
3482
3483 static void
3484 add_include_path (const char *path)
3485 {
3486 if (path[0] == 0)
3487 return;
3488 include_path_count++;
3489 include_paths = (const char **)
3490 xrealloc (include_paths, include_path_count * sizeof (*include_paths));
3491 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
3492 if (path[1] == ':' && path[2] == 0)
3493 path = concat (path, ".", (const char *) 0);
3494 #endif
3495 include_paths[include_path_count - 1] = path;
3496 }
3497
3498 static void
3499 adjust_addresses (bfd *abfd ATTRIBUTE_UNUSED,
3500 asection *section,
3501 void *arg)
3502 {
3503 if ((section->flags & SEC_DEBUGGING) == 0)
3504 {
3505 bfd_boolean *has_reloc_p = (bfd_boolean *) arg;
3506 section->vma += adjust_section_vma;
3507 if (*has_reloc_p)
3508 section->lma += adjust_section_vma;
3509 }
3510 }
3511
3512 /* Dump selected contents of ABFD. */
3513
3514 static void
3515 dump_bfd (bfd *abfd)
3516 {
3517 /* If we are adjusting section VMA's, change them all now. Changing
3518 the BFD information is a hack. However, we must do it, or
3519 bfd_find_nearest_line will not do the right thing. */
3520 if (adjust_section_vma != 0)
3521 {
3522 bfd_boolean has_reloc = (abfd->flags & HAS_RELOC);
3523 bfd_map_over_sections (abfd, adjust_addresses, &has_reloc);
3524 }
3525
3526 if (! dump_debugging_tags && ! suppress_bfd_header)
3527 printf (_("\n%s: file format %s\n"), bfd_get_filename (abfd),
3528 abfd->xvec->name);
3529 if (dump_ar_hdrs)
3530 print_arelt_descr (stdout, abfd, TRUE);
3531 if (dump_file_header)
3532 dump_bfd_header (abfd);
3533 if (dump_private_headers)
3534 dump_bfd_private_header (abfd);
3535 if (dump_private_options != NULL)
3536 dump_target_specific (abfd);
3537 if (! dump_debugging_tags && ! suppress_bfd_header)
3538 putchar ('\n');
3539
3540 if (dump_symtab
3541 || dump_reloc_info
3542 || disassemble
3543 || dump_debugging
3544 || dump_dwarf_section_info)
3545 syms = slurp_symtab (abfd);
3546
3547 if (dump_section_headers)
3548 dump_headers (abfd);
3549
3550 if (dump_dynamic_symtab || dump_dynamic_reloc_info
3551 || (disassemble && bfd_get_dynamic_symtab_upper_bound (abfd) > 0))
3552 dynsyms = slurp_dynamic_symtab (abfd);
3553 if (disassemble)
3554 {
3555 synthcount = bfd_get_synthetic_symtab (abfd, symcount, syms,
3556 dynsymcount, dynsyms, &synthsyms);
3557 if (synthcount < 0)
3558 synthcount = 0;
3559 }
3560
3561 if (dump_symtab)
3562 dump_symbols (abfd, FALSE);
3563 if (dump_dynamic_symtab)
3564 dump_symbols (abfd, TRUE);
3565 if (dump_dwarf_section_info)
3566 dump_dwarf (abfd);
3567 if (dump_stab_section_info)
3568 dump_stabs (abfd);
3569 if (dump_reloc_info && ! disassemble)
3570 dump_relocs (abfd);
3571 if (dump_dynamic_reloc_info && ! disassemble)
3572 dump_dynamic_relocs (abfd);
3573 if (dump_section_contents)
3574 dump_data (abfd);
3575 if (disassemble)
3576 disassemble_data (abfd);
3577
3578 if (dump_debugging)
3579 {
3580 void *dhandle;
3581
3582 dhandle = read_debugging_info (abfd, syms, symcount, TRUE);
3583 if (dhandle != NULL)
3584 {
3585 if (!print_debugging_info (stdout, dhandle, abfd, syms,
3586 bfd_demangle,
3587 dump_debugging_tags ? TRUE : FALSE))
3588 {
3589 non_fatal (_("%s: printing debugging information failed"),
3590 bfd_get_filename (abfd));
3591 exit_status = 1;
3592 }
3593 }
3594 /* PR 6483: If there was no STABS or IEEE debug
3595 info in the file, try DWARF instead. */
3596 else if (! dump_dwarf_section_info)
3597 {
3598 dwarf_select_sections_all ();
3599 dump_dwarf (abfd);
3600 }
3601 }
3602
3603 if (syms)
3604 {
3605 free (syms);
3606 syms = NULL;
3607 }
3608
3609 if (dynsyms)
3610 {
3611 free (dynsyms);
3612 dynsyms = NULL;
3613 }
3614
3615 if (synthsyms)
3616 {
3617 free (synthsyms);
3618 synthsyms = NULL;
3619 }
3620
3621 symcount = 0;
3622 dynsymcount = 0;
3623 synthcount = 0;
3624 }
3625
3626 static void
3627 display_object_bfd (bfd *abfd)
3628 {
3629 char **matching;
3630
3631 if (bfd_check_format_matches (abfd, bfd_object, &matching))
3632 {
3633 dump_bfd (abfd);
3634 return;
3635 }
3636
3637 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
3638 {
3639 nonfatal (bfd_get_filename (abfd));
3640 list_matching_formats (matching);
3641 free (matching);
3642 return;
3643 }
3644
3645 if (bfd_get_error () != bfd_error_file_not_recognized)
3646 {
3647 nonfatal (bfd_get_filename (abfd));
3648 return;
3649 }
3650
3651 if (bfd_check_format_matches (abfd, bfd_core, &matching))
3652 {
3653 dump_bfd (abfd);
3654 return;
3655 }
3656
3657 nonfatal (bfd_get_filename (abfd));
3658
3659 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
3660 {
3661 list_matching_formats (matching);
3662 free (matching);
3663 }
3664 }
3665
3666 static void
3667 display_any_bfd (bfd *file, int level)
3668 {
3669 /* Decompress sections unless dumping the section contents. */
3670 if (!dump_section_contents)
3671 file->flags |= BFD_DECOMPRESS;
3672
3673 /* If the file is an archive, process all of its elements. */
3674 if (bfd_check_format (file, bfd_archive))
3675 {
3676 bfd *arfile = NULL;
3677 bfd *last_arfile = NULL;
3678
3679 if (level == 0)
3680 printf (_("In archive %s:\n"), bfd_get_filename (file));
3681 else if (level > 100)
3682 {
3683 /* Prevent corrupted files from spinning us into an
3684 infinite loop. 100 is an arbitrary heuristic. */
3685 fatal (_("Archive nesting is too deep"));
3686 return;
3687 }
3688 else
3689 printf (_("In nested archive %s:\n"), bfd_get_filename (file));
3690
3691 for (;;)
3692 {
3693 bfd_set_error (bfd_error_no_error);
3694
3695 arfile = bfd_openr_next_archived_file (file, arfile);
3696 if (arfile == NULL)
3697 {
3698 if (bfd_get_error () != bfd_error_no_more_archived_files)
3699 nonfatal (bfd_get_filename (file));
3700 break;
3701 }
3702
3703 display_any_bfd (arfile, level + 1);
3704
3705 if (last_arfile != NULL)
3706 {
3707 bfd_close (last_arfile);
3708 /* PR 17512: file: ac585d01. */
3709 if (arfile == last_arfile)
3710 {
3711 last_arfile = NULL;
3712 break;
3713 }
3714 }
3715 last_arfile = arfile;
3716 }
3717
3718 if (last_arfile != NULL)
3719 bfd_close (last_arfile);
3720 }
3721 else
3722 display_object_bfd (file);
3723 }
3724
3725 static void
3726 display_file (char *filename, char *target, bfd_boolean last_file)
3727 {
3728 bfd *file;
3729
3730 if (get_file_size (filename) < 1)
3731 {
3732 exit_status = 1;
3733 return;
3734 }
3735
3736 file = bfd_openr (filename, target);
3737 if (file == NULL)
3738 {
3739 nonfatal (filename);
3740 return;
3741 }
3742
3743 display_any_bfd (file, 0);
3744
3745 /* This is an optimization to improve the speed of objdump, especially when
3746 dumping a file with lots of associated debug informatiom. Calling
3747 bfd_close on such a file can take a non-trivial amount of time as there
3748 are lots of lists to walk and buffers to free. This is only really
3749 necessary however if we are about to load another file and we need the
3750 memory back. Otherwise, if we are about to exit, then we can save (a lot
3751 of) time by only doing a quick close, and allowing the OS to reclaim the
3752 memory for us. */
3753 if (! last_file)
3754 bfd_close (file);
3755 else
3756 bfd_close_all_done (file);
3757 }
3758 \f
3759 int
3760 main (int argc, char **argv)
3761 {
3762 int c;
3763 char *target = default_target;
3764 bfd_boolean seenflag = FALSE;
3765
3766 #if defined (HAVE_SETLOCALE)
3767 #if defined (HAVE_LC_MESSAGES)
3768 setlocale (LC_MESSAGES, "");
3769 #endif
3770 setlocale (LC_CTYPE, "");
3771 #endif
3772
3773 bindtextdomain (PACKAGE, LOCALEDIR);
3774 textdomain (PACKAGE);
3775
3776 program_name = *argv;
3777 xmalloc_set_program_name (program_name);
3778 bfd_set_error_program_name (program_name);
3779
3780 START_PROGRESS (program_name, 0);
3781
3782 expandargv (&argc, &argv);
3783
3784 bfd_init ();
3785 set_default_bfd_target ();
3786
3787 while ((c = getopt_long (argc, argv,
3788 "pP:ib:m:M:VvCdDlfFaHhrRtTxsSI:j:wE:zgeGW::",
3789 long_options, (int *) 0))
3790 != EOF)
3791 {
3792 switch (c)
3793 {
3794 case 0:
3795 break; /* We've been given a long option. */
3796 case 'm':
3797 machine = optarg;
3798 break;
3799 case 'M':
3800 {
3801 char *options;
3802 if (disassembler_options)
3803 /* Ignore potential memory leak for now. */
3804 options = concat (disassembler_options, ",",
3805 optarg, (const char *) NULL);
3806 else
3807 options = optarg;
3808 disassembler_options = remove_whitespace_and_extra_commas (options);
3809 }
3810 break;
3811 case 'j':
3812 add_only (optarg);
3813 break;
3814 case 'F':
3815 display_file_offsets = TRUE;
3816 break;
3817 case 'l':
3818 with_line_numbers = TRUE;
3819 break;
3820 case 'b':
3821 target = optarg;
3822 break;
3823 case 'C':
3824 do_demangle = TRUE;
3825 if (optarg != NULL)
3826 {
3827 enum demangling_styles style;
3828
3829 style = cplus_demangle_name_to_style (optarg);
3830 if (style == unknown_demangling)
3831 fatal (_("unknown demangling style `%s'"),
3832 optarg);
3833
3834 cplus_demangle_set_style (style);
3835 }
3836 break;
3837 case 'w':
3838 do_wide = wide_output = TRUE;
3839 break;
3840 case OPTION_ADJUST_VMA:
3841 adjust_section_vma = parse_vma (optarg, "--adjust-vma");
3842 break;
3843 case OPTION_START_ADDRESS:
3844 start_address = parse_vma (optarg, "--start-address");
3845 if ((stop_address != (bfd_vma) -1) && stop_address <= start_address)
3846 fatal (_("error: the start address should be before the end address"));
3847 break;
3848 case OPTION_STOP_ADDRESS:
3849 stop_address = parse_vma (optarg, "--stop-address");
3850 if ((start_address != (bfd_vma) -1) && stop_address <= start_address)
3851 fatal (_("error: the stop address should be after the start address"));
3852 break;
3853 case OPTION_PREFIX:
3854 prefix = optarg;
3855 prefix_length = strlen (prefix);
3856 /* Remove an unnecessary trailing '/' */
3857 while (IS_DIR_SEPARATOR (prefix[prefix_length - 1]))
3858 prefix_length--;
3859 break;
3860 case OPTION_PREFIX_STRIP:
3861 prefix_strip = atoi (optarg);
3862 if (prefix_strip < 0)
3863 fatal (_("error: prefix strip must be non-negative"));
3864 break;
3865 case OPTION_INSN_WIDTH:
3866 insn_width = strtoul (optarg, NULL, 0);
3867 if (insn_width <= 0)
3868 fatal (_("error: instruction width must be positive"));
3869 break;
3870 case OPTION_INLINES:
3871 unwind_inlines = TRUE;
3872 break;
3873 case 'E':
3874 if (strcmp (optarg, "B") == 0)
3875 endian = BFD_ENDIAN_BIG;
3876 else if (strcmp (optarg, "L") == 0)
3877 endian = BFD_ENDIAN_LITTLE;
3878 else
3879 {
3880 nonfatal (_("unrecognized -E option"));
3881 usage (stderr, 1);
3882 }
3883 break;
3884 case OPTION_ENDIAN:
3885 if (strncmp (optarg, "big", strlen (optarg)) == 0)
3886 endian = BFD_ENDIAN_BIG;
3887 else if (strncmp (optarg, "little", strlen (optarg)) == 0)
3888 endian = BFD_ENDIAN_LITTLE;
3889 else
3890 {
3891 non_fatal (_("unrecognized --endian type `%s'"), optarg);
3892 exit_status = 1;
3893 usage (stderr, 1);
3894 }
3895 break;
3896
3897 case 'f':
3898 dump_file_header = TRUE;
3899 seenflag = TRUE;
3900 break;
3901 case 'i':
3902 formats_info = TRUE;
3903 seenflag = TRUE;
3904 break;
3905 case 'I':
3906 add_include_path (optarg);
3907 break;
3908 case 'p':
3909 dump_private_headers = TRUE;
3910 seenflag = TRUE;
3911 break;
3912 case 'P':
3913 dump_private_options = optarg;
3914 seenflag = TRUE;
3915 break;
3916 case 'x':
3917 dump_private_headers = TRUE;
3918 dump_symtab = TRUE;
3919 dump_reloc_info = TRUE;
3920 dump_file_header = TRUE;
3921 dump_ar_hdrs = TRUE;
3922 dump_section_headers = TRUE;
3923 seenflag = TRUE;
3924 break;
3925 case 't':
3926 dump_symtab = TRUE;
3927 seenflag = TRUE;
3928 break;
3929 case 'T':
3930 dump_dynamic_symtab = TRUE;
3931 seenflag = TRUE;
3932 break;
3933 case 'd':
3934 disassemble = TRUE;
3935 seenflag = TRUE;
3936 break;
3937 case 'z':
3938 disassemble_zeroes = TRUE;
3939 break;
3940 case 'D':
3941 disassemble = TRUE;
3942 disassemble_all = TRUE;
3943 seenflag = TRUE;
3944 break;
3945 case 'S':
3946 disassemble = TRUE;
3947 with_source_code = TRUE;
3948 seenflag = TRUE;
3949 break;
3950 case 'g':
3951 dump_debugging = 1;
3952 seenflag = TRUE;
3953 break;
3954 case 'e':
3955 dump_debugging = 1;
3956 dump_debugging_tags = 1;
3957 do_demangle = TRUE;
3958 seenflag = TRUE;
3959 break;
3960 case 'W':
3961 dump_dwarf_section_info = TRUE;
3962 seenflag = TRUE;
3963 if (optarg)
3964 dwarf_select_sections_by_letters (optarg);
3965 else
3966 dwarf_select_sections_all ();
3967 break;
3968 case OPTION_DWARF:
3969 dump_dwarf_section_info = TRUE;
3970 seenflag = TRUE;
3971 if (optarg)
3972 dwarf_select_sections_by_names (optarg);
3973 else
3974 dwarf_select_sections_all ();
3975 break;
3976 case OPTION_DWARF_DEPTH:
3977 {
3978 char *cp;
3979 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
3980 }
3981 break;
3982 case OPTION_DWARF_START:
3983 {
3984 char *cp;
3985 dwarf_start_die = strtoul (optarg, & cp, 0);
3986 suppress_bfd_header = 1;
3987 }
3988 break;
3989 case OPTION_DWARF_CHECK:
3990 dwarf_check = TRUE;
3991 break;
3992 case 'G':
3993 dump_stab_section_info = TRUE;
3994 seenflag = TRUE;
3995 break;
3996 case 's':
3997 dump_section_contents = TRUE;
3998 seenflag = TRUE;
3999 break;
4000 case 'r':
4001 dump_reloc_info = TRUE;
4002 seenflag = TRUE;
4003 break;
4004 case 'R':
4005 dump_dynamic_reloc_info = TRUE;
4006 seenflag = TRUE;
4007 break;
4008 case 'a':
4009 dump_ar_hdrs = TRUE;
4010 seenflag = TRUE;
4011 break;
4012 case 'h':
4013 dump_section_headers = TRUE;
4014 seenflag = TRUE;
4015 break;
4016 case 'v':
4017 case 'V':
4018 show_version = TRUE;
4019 seenflag = TRUE;
4020 break;
4021
4022 case 'H':
4023 usage (stdout, 0);
4024 /* No need to set seenflag or to break - usage() does not return. */
4025 default:
4026 usage (stderr, 1);
4027 }
4028 }
4029
4030 if (show_version)
4031 print_version ("objdump");
4032
4033 if (!seenflag)
4034 usage (stderr, 2);
4035
4036 if (formats_info)
4037 exit_status = display_info ();
4038 else
4039 {
4040 if (optind == argc)
4041 display_file ("a.out", target, TRUE);
4042 else
4043 for (; optind < argc;)
4044 {
4045 display_file (argv[optind], target, optind == argc - 1);
4046 optind++;
4047 }
4048 }
4049
4050 free_only_list ();
4051
4052 END_PROGRESS (program_name);
4053
4054 return exit_status;
4055 }
This page took 0.128296 seconds and 5 git commands to generate.