1 /* addr2line.c -- convert addresses to line number and function name
2 Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 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 2, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 /* Derived from objdump.c and nm.c by Ulrich.Lauther@mchp.siemens.de
25 addr2line [options] addr addr ...
29 both forms write results to stdout, the second form reads addresses
30 to be converted from stdin. */
37 #include "libiberty.h"
42 static bfd_boolean with_functions
; /* -f, show function names. */
43 static bfd_boolean do_demangle
; /* -C, demangle names. */
44 static bfd_boolean base_names
; /* -s, strip directory names. */
46 static int naddr
; /* Number of addresses to process. */
47 static char **addr
; /* Hex addresses to process. */
49 static asymbol
**syms
; /* Symbol table. */
51 static struct option long_options
[] =
53 {"basenames", no_argument
, NULL
, 's'},
54 {"demangle", optional_argument
, NULL
, 'C'},
55 {"exe", required_argument
, NULL
, 'e'},
56 {"functions", no_argument
, NULL
, 'f'},
57 {"target", required_argument
, NULL
, 'b'},
58 {"help", no_argument
, NULL
, 'H'},
59 {"version", no_argument
, NULL
, 'V'},
60 {0, no_argument
, 0, 0}
63 static void usage (FILE *, int);
64 static void slurp_symtab (bfd
*);
65 static void find_address_in_section (bfd
*, asection
*, void *);
66 static void translate_addresses (bfd
*);
67 static void process_file (const char *, const char *);
69 /* Print a usage message to STREAM and exit with STATUS. */
72 usage (FILE *stream
, int status
)
74 fprintf (stream
, _("Usage: %s [option(s)] [addr(s)]\n"), program_name
);
75 fprintf (stream
, _(" Convert addresses into line number/file name pairs.\n"));
76 fprintf (stream
, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
77 fprintf (stream
, _(" The options are:\n\
78 -b --target=<bfdname> Set the binary file format\n\
79 -e --exe=<executable> Set the input file name (default is a.out)\n\
80 -s --basenames Strip directory names\n\
81 -f --functions Show function names\n\
82 -C --demangle[=style] Demangle function names\n\
83 -h --help Display this information\n\
84 -v --version Display the program's version\n\
87 list_supported_targets (program_name
, stream
);
89 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
93 /* Read in the symbol table. */
96 slurp_symtab (bfd
*abfd
)
101 if ((bfd_get_file_flags (abfd
) & HAS_SYMS
) == 0)
104 symcount
= bfd_read_minisymbols (abfd
, FALSE
, (void *) &syms
, &size
);
106 symcount
= bfd_read_minisymbols (abfd
, TRUE
/* dynamic */, (void *) &syms
, &size
);
109 bfd_fatal (bfd_get_filename (abfd
));
112 /* These global variables are used to pass information between
113 translate_addresses and find_address_in_section. */
116 static const char *filename
;
117 static const char *functionname
;
118 static unsigned int line
;
119 static bfd_boolean found
;
121 /* Look for an address in a section. This is called via
122 bfd_map_over_sections. */
125 find_address_in_section (bfd
*abfd
, asection
*section
,
126 void *data ATTRIBUTE_UNUSED
)
134 if ((bfd_get_section_flags (abfd
, section
) & SEC_ALLOC
) == 0)
137 vma
= bfd_get_section_vma (abfd
, section
);
141 size
= bfd_get_section_size (section
);
142 if (pc
>= vma
+ size
)
145 found
= bfd_find_nearest_line (abfd
, section
, syms
, pc
- vma
,
146 &filename
, &functionname
, &line
);
149 /* Read hexadecimal addresses from stdin, translate into
150 file_name:line_number and optionally function name. */
153 translate_addresses (bfd
*abfd
)
155 int read_stdin
= (naddr
== 0);
163 if (fgets (addr_hex
, sizeof addr_hex
, stdin
) == NULL
)
165 pc
= bfd_scan_vma (addr_hex
, NULL
, 16);
172 pc
= bfd_scan_vma (*addr
++, NULL
, 16);
176 bfd_map_over_sections (abfd
, find_address_in_section
, NULL
);
192 if (name
== NULL
|| *name
== '\0')
194 else if (do_demangle
)
196 alloc
= demangle (abfd
, name
);
200 printf ("%s\n", name
);
206 if (base_names
&& filename
!= NULL
)
210 h
= strrchr (filename
, '/');
215 printf ("%s:%u\n", filename
? filename
: "??", line
);
218 /* fflush() is essential for using this command as a server
219 child process that reads addresses from a pipe and responds
220 with line number information, processing one address at a
226 /* Process a file. */
229 process_file (const char *file_name
, const char *target
)
234 if (get_file_size (file_name
) < 1)
237 abfd
= bfd_openr (file_name
, target
);
239 bfd_fatal (file_name
);
241 if (bfd_check_format (abfd
, bfd_archive
))
242 fatal (_("%s: can not get addresses from archive"), file_name
);
244 if (! bfd_check_format_matches (abfd
, bfd_object
, &matching
))
246 bfd_nonfatal (bfd_get_filename (abfd
));
247 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
249 list_matching_formats (matching
);
257 translate_addresses (abfd
);
268 int main (int, char **);
271 main (int argc
, char **argv
)
273 const char *file_name
;
277 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
278 setlocale (LC_MESSAGES
, "");
280 #if defined (HAVE_SETLOCALE)
281 setlocale (LC_CTYPE
, "");
283 bindtextdomain (PACKAGE
, LOCALEDIR
);
284 textdomain (PACKAGE
);
286 program_name
= *argv
;
287 xmalloc_set_program_name (program_name
);
290 set_default_bfd_target ();
294 while ((c
= getopt_long (argc
, argv
, "b:Ce:sfHhVv", long_options
, (int *) 0))
300 break; /* We've been given a long option. */
308 enum demangling_styles style
;
310 style
= cplus_demangle_name_to_style (optarg
);
311 if (style
== unknown_demangling
)
312 fatal (_("unknown demangling style `%s'"),
315 cplus_demangle_set_style (style
);
325 with_functions
= TRUE
;
329 print_version ("addr2line");
341 if (file_name
== NULL
)
344 addr
= argv
+ optind
;
345 naddr
= argc
- optind
;
347 process_file (file_name
, target
);