1 /* addr2line.c -- convert addresses to line number and function name
2 Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 2007, 2009 Free Software Foundation, Inc.
4 Contributed by Ulrich Lauther <Ulrich.Lauther@mchp.siemens.de>
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
24 /* Derived from objdump.c and nm.c by Ulrich.Lauther@mchp.siemens.de
27 addr2line [options] addr addr ...
31 both forms write results to stdout, the second form reads addresses
32 to be converted from stdin. */
37 #include "libiberty.h"
42 static bfd_boolean unwind_inlines; /* -i, unwind inlined functions. */
43 static bfd_boolean with_addresses; /* -a, show addresses. */
44 static bfd_boolean with_functions; /* -f, show function names. */
45 static bfd_boolean do_demangle; /* -C, demangle names. */
46 static bfd_boolean pretty_print; /* -p, print on one line. */
47 static bfd_boolean base_names; /* -s, strip directory names. */
49 static int naddr; /* Number of addresses to process. */
50 static char **addr; /* Hex addresses to process. */
52 static asymbol **syms; /* Symbol table. */
54 static struct option long_options[] =
56 {"addresses", no_argument, NULL, 'a'},
57 {"basenames", no_argument, NULL, 's'},
58 {"demangle", optional_argument, NULL, 'C'},
59 {"exe", required_argument, NULL, 'e'},
60 {"functions", no_argument, NULL, 'f'},
61 {"inlines", no_argument, NULL, 'i'},
62 {"pretty-print", no_argument, NULL, 'p'},
63 {"section", required_argument, NULL, 'j'},
64 {"target", required_argument, NULL, 'b'},
65 {"help", no_argument, NULL, 'H'},
66 {"version", no_argument, NULL, 'V'},
67 {0, no_argument, 0, 0}
70 static void usage (FILE *, int);
71 static void slurp_symtab (bfd *);
72 static void find_address_in_section (bfd *, asection *, void *);
73 static void find_offset_in_section (bfd *, asection *);
74 static void translate_addresses (bfd *, asection *);
76 /* Print a usage message to STREAM and exit with STATUS. */
79 usage (FILE *stream, int status)
81 fprintf (stream, _("Usage: %s [option(s)] [addr(s)]\n"), program_name);
82 fprintf (stream, _(" Convert addresses into line number/file name pairs.\n"));
83 fprintf (stream, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
84 fprintf (stream, _(" The options are:\n\
85 @<file> Read options from <file>\n\
86 -a --addresses Show addresses\n\
87 -b --target=<bfdname> Set the binary file format\n\
88 -e --exe=<executable> Set the input file name (default is a.out)\n\
89 -i --inlines Unwind inlined functions\n\
90 -j --section=<name> Read section-relative offsets instead of addresses\n\
91 -p --pretty-print Make the output easier to read for humans\n\
92 -s --basenames Strip directory names\n\
93 -f --functions Show function names\n\
94 -C --demangle[=style] Demangle function names\n\
95 -h --help Display this information\n\
96 -v --version Display the program's version\n\
99 list_supported_targets (program_name, stream);
100 if (REPORT_BUGS_TO[0] && status == 0)
101 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
105 /* Read in the symbol table. */
108 slurp_symtab (bfd *abfd)
112 bfd_boolean dynamic = FALSE;
114 if ((bfd_get_file_flags (abfd) & HAS_SYMS) == 0)
117 storage = bfd_get_symtab_upper_bound (abfd);
120 storage = bfd_get_dynamic_symtab_upper_bound (abfd);
124 bfd_fatal (bfd_get_filename (abfd));
126 syms = (asymbol **) xmalloc (storage);
128 symcount = bfd_canonicalize_dynamic_symtab (abfd, syms);
130 symcount = bfd_canonicalize_symtab (abfd, syms);
132 bfd_fatal (bfd_get_filename (abfd));
135 /* These global variables are used to pass information between
136 translate_addresses and find_address_in_section. */
139 static const char *filename;
140 static const char *functionname;
141 static unsigned int line;
142 static bfd_boolean found;
144 /* Look for an address in a section. This is called via
145 bfd_map_over_sections. */
148 find_address_in_section (bfd *abfd, asection *section,
149 void *data ATTRIBUTE_UNUSED)
157 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
160 vma = bfd_get_section_vma (abfd, section);
164 size = bfd_get_section_size (section);
165 if (pc >= vma + size)
168 found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
169 &filename, &functionname, &line);
172 /* Look for an offset in a section. This is directly called. */
175 find_offset_in_section (bfd *abfd, asection *section)
182 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
185 size = bfd_get_section_size (section);
189 found = bfd_find_nearest_line (abfd, section, syms, pc,
190 &filename, &functionname, &line);
193 /* Read hexadecimal addresses from stdin, translate into
194 file_name:line_number and optionally function name. */
197 translate_addresses (bfd *abfd, asection *section)
199 int read_stdin = (naddr == 0);
207 if (fgets (addr_hex, sizeof addr_hex, stdin) == NULL)
209 pc = bfd_scan_vma (addr_hex, NULL, 16);
216 pc = bfd_scan_vma (*addr++, NULL, 16);
219 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
221 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
222 bfd_vma sign = (bfd_vma) 1 << (bed->s->arch_size - 1);
224 pc &= (sign << 1) - 1;
225 if (bed->sign_extend_vma)
226 pc = (pc ^ sign) - sign;
232 bfd_printf_vma (abfd, pc);
242 find_offset_in_section (abfd, section);
244 bfd_map_over_sections (abfd, find_address_in_section, NULL);
262 if (name == NULL || *name == '\0')
264 else if (do_demangle)
266 alloc = bfd_demangle (abfd, name, DMGL_ANSI | DMGL_PARAMS);
273 /* Note for translators: This printf is used to join the
274 function name just printed above to the line number/
275 file name pair that is about to be printed below. Eg:
286 if (base_names && filename != NULL)
290 h = strrchr (filename, '/');
295 printf ("%s:", filename ? filename : "??");
297 printf ("%u\n", line);
303 found = bfd_find_inliner_info (abfd, &filename, &functionname,
308 /* Note for translators: This printf is used to join the
309 line number/file name pair that has just been printed with
310 the line number/file name pair that is going to be printed
311 by the next iteration of the while loop. Eg:
313 123:bar.c (inlined by) 456:main.c */
314 printf (_(" (inlined by) "));
318 /* fflush() is essential for using this command as a server
319 child process that reads addresses from a pipe and responds
320 with line number information, processing one address at a
326 /* Process a file. Returns an exit value for main(). */
329 process_file (const char *file_name, const char *section_name,
336 if (get_file_size (file_name) < 1)
339 abfd = bfd_openr (file_name, target);
341 bfd_fatal (file_name);
343 /* Decompress sections. */
344 abfd->flags |= BFD_DECOMPRESS;
346 if (bfd_check_format (abfd, bfd_archive))
347 fatal (_("%s: cannot get addresses from archive"), file_name);
349 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
351 bfd_nonfatal (bfd_get_filename (abfd));
352 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
354 list_matching_formats (matching);
360 if (section_name != NULL)
362 section = bfd_get_section_by_name (abfd, section_name);
364 fatal (_("%s: cannot find section %s"), file_name, section_name);
371 translate_addresses (abfd, section);
385 main (int argc, char **argv)
387 const char *file_name;
388 const char *section_name;
392 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
393 setlocale (LC_MESSAGES, "");
395 #if defined (HAVE_SETLOCALE)
396 setlocale (LC_CTYPE, "");
398 bindtextdomain (PACKAGE, LOCALEDIR);
399 textdomain (PACKAGE);
401 program_name = *argv;
402 xmalloc_set_program_name (program_name);
404 expandargv (&argc, &argv);
407 set_default_bfd_target ();
412 while ((c = getopt_long (argc, argv, "ab:Ce:sfHhij:pVv", long_options, (int *) 0))
418 break; /* We've been given a long option. */
420 with_addresses = TRUE;
429 enum demangling_styles style;
431 style = cplus_demangle_name_to_style (optarg);
432 if (style == unknown_demangling)
433 fatal (_("unknown demangling style `%s'"),
436 cplus_demangle_set_style (style);
446 with_functions = TRUE;
453 print_version ("addr2line");
460 unwind_inlines = TRUE;
463 section_name = optarg;
471 if (file_name == NULL)
474 addr = argv + optind;
475 naddr = argc - optind;
477 return process_file (file_name, section_name, target);