1 /* addr2line.c -- convert addresses to line number and function name
2 Copyright 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3 Contributed by Ulrich Lauther <Ulrich.Lauther@mchp.siemens.de>
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* Derived from objdump.c and nm.c by Ulrich.Lauther@mchp.siemens.de
24 addr2line [options] addr addr ...
28 both forms write results to stdout, the second form reads addresses
29 to be converted from stdin. */
35 #include "libiberty.h"
39 static boolean with_functions
; /* -f, show function names. */
40 static boolean do_demangle
; /* -C, demangle names. */
41 static boolean base_names
; /* -s, strip directory names. */
43 static int naddr
; /* Number of addresses to process. */
44 static char **addr
; /* Hex addresses to process. */
46 static asymbol
**syms
; /* Symbol table. */
48 static struct option long_options
[] =
50 {"basenames", no_argument
, NULL
, 's'},
51 {"demangle", optional_argument
, NULL
, 'C'},
52 {"exe", required_argument
, NULL
, 'e'},
53 {"functions", no_argument
, NULL
, 'f'},
54 {"target", required_argument
, NULL
, 'b'},
55 {"help", no_argument
, NULL
, 'H'},
56 {"version", no_argument
, NULL
, 'V'},
57 {0, no_argument
, 0, 0}
60 static void usage
PARAMS ((FILE *, int));
61 static void slurp_symtab
PARAMS ((bfd
*));
62 static void find_address_in_section
PARAMS ((bfd
*, asection
*, PTR
));
63 static void translate_addresses
PARAMS ((bfd
*));
64 static void process_file
PARAMS ((const char *, const char *));
66 /* Print a usage message to STREAM and exit with STATUS. */
69 usage (stream
, status
)
74 Usage: %s [-CfsHV] [-b bfdname] [--target=bfdname]\n\
75 [-e executable] [--exe=executable] [--demangle[=style]]\n\
76 [--basenames] [--functions] [addr addr ...]\n"),
78 list_supported_targets (program_name
, stream
);
80 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
84 /* Read in the symbol table. */
93 if ((bfd_get_file_flags (abfd
) & HAS_SYMS
) == 0)
96 storage
= bfd_get_symtab_upper_bound (abfd
);
98 bfd_fatal (bfd_get_filename (abfd
));
100 syms
= (asymbol
**) xmalloc (storage
);
102 symcount
= bfd_canonicalize_symtab (abfd
, syms
);
104 bfd_fatal (bfd_get_filename (abfd
));
107 /* These global variables are used to pass information between
108 translate_addresses and find_address_in_section. */
111 static const char *filename
;
112 static const char *functionname
;
113 static unsigned int line
;
114 static boolean found
;
116 /* Look for an address in a section. This is called via
117 bfd_map_over_sections. */
120 find_address_in_section (abfd
, section
, data
)
123 PTR data ATTRIBUTE_UNUSED
;
131 if ((bfd_get_section_flags (abfd
, section
) & SEC_ALLOC
) == 0)
134 vma
= bfd_get_section_vma (abfd
, section
);
138 size
= bfd_get_section_size_before_reloc (section
);
139 if (pc
>= vma
+ size
)
142 found
= bfd_find_nearest_line (abfd
, section
, syms
, pc
- vma
,
143 &filename
, &functionname
, &line
);
146 /* Read hexadecimal addresses from stdin, translate into
147 file_name:line_number and optionally function name. */
150 translate_addresses (abfd
)
153 int read_stdin
= (naddr
== 0);
161 if (fgets (addr_hex
, sizeof addr_hex
, stdin
) == NULL
)
163 pc
= bfd_scan_vma (addr_hex
, NULL
, 16);
170 pc
= bfd_scan_vma (*addr
++, NULL
, 16);
174 bfd_map_over_sections (abfd
, find_address_in_section
, (PTR
) NULL
);
186 if (functionname
== NULL
|| *functionname
== '\0')
188 else if (! do_demangle
)
189 printf ("%s\n", functionname
);
194 res
= cplus_demangle (functionname
, DMGL_ANSI
| DMGL_PARAMS
);
196 printf ("%s\n", functionname
);
199 printf ("%s\n", res
);
205 if (base_names
&& filename
!= NULL
)
209 h
= strrchr (filename
, '/');
214 printf ("%s:%u\n", filename
? filename
: "??", line
);
217 /* fflush() is essential for using this command as a server
218 child process that reads addresses from a pipe and responds
219 with line number information, processing one address at a
225 /* Process a file. */
228 process_file (filename
, target
)
229 const char *filename
;
235 abfd
= bfd_openr (filename
, target
);
237 bfd_fatal (filename
);
239 if (bfd_check_format (abfd
, bfd_archive
))
240 fatal (_("%s: can not get addresses from archive"), filename
);
242 if (! bfd_check_format_matches (abfd
, bfd_object
, &matching
))
244 bfd_nonfatal (bfd_get_filename (abfd
));
245 if (bfd_get_error () == bfd_error_file_ambiguously_recognized
)
247 list_matching_formats (matching
);
255 translate_addresses (abfd
);
271 const char *filename
;
275 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
276 setlocale (LC_MESSAGES
, "");
278 #if defined (HAVE_SETLOCALE)
279 setlocale (LC_CTYPE
, "");
281 bindtextdomain (PACKAGE
, LOCALEDIR
);
282 textdomain (PACKAGE
);
284 program_name
= *argv
;
285 xmalloc_set_program_name (program_name
);
288 set_default_bfd_target ();
292 while ((c
= getopt_long (argc
, argv
, "b:Ce:sfHV", long_options
, (int *) 0))
298 break; /* we've been given a long option */
306 enum demangling_styles style
;
308 style
= cplus_demangle_name_to_style (optarg
);
309 if (style
== unknown_demangling
)
310 fatal (_("unknown demangling style `%s'"),
313 cplus_demangle_set_style (style
);
323 with_functions
= true;
326 print_version ("addr2line");
337 if (filename
== NULL
)
340 addr
= argv
+ optind
;
341 naddr
= argc
- optind
;
343 process_file (filename
, target
);