Regenerated with 2.13 version of autoconf.
[deliverable/binutils-gdb.git] / binutils / addr2line.c
CommitLineData
252b5132 1/* addr2line.c -- convert addresses to line number and function name
135dfb4a 2 Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
2da42df6 3 Free Software Foundation, Inc.
c8c5888e 4 Contributed by Ulrich Lauther <Ulrich.Lauther@mchp.siemens.de>
252b5132
RH
5
6 This file is part of GNU Binutils.
7
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)
11 any later version.
12
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.
17
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
b43b5d5f 20 Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132 21
c8c5888e 22/* Derived from objdump.c and nm.c by Ulrich.Lauther@mchp.siemens.de
252b5132 23
f462a9ea 24 Usage:
252b5132
RH
25 addr2line [options] addr addr ...
26 or
f462a9ea 27 addr2line [options]
252b5132
RH
28
29 both forms write results to stdout, the second form reads addresses
30 to be converted from stdin. */
31
e46eba98 32#include "config.h"
252b5132
RH
33#include <string.h>
34
35#include "bfd.h"
36#include "getopt.h"
37#include "libiberty.h"
38#include "demangle.h"
39#include "bucomm.h"
a6637ec0 40#include "budemang.h"
252b5132 41
0c552dc1 42static bfd_boolean unwind_inlines; /* -i, unwind inlined functions. */
b34976b6
AM
43static bfd_boolean with_functions; /* -f, show function names. */
44static bfd_boolean do_demangle; /* -C, demangle names. */
45static bfd_boolean base_names; /* -s, strip directory names. */
252b5132
RH
46
47static int naddr; /* Number of addresses to process. */
48static char **addr; /* Hex addresses to process. */
49
50static asymbol **syms; /* Symbol table. */
51
52static struct option long_options[] =
53{
54 {"basenames", no_argument, NULL, 's'},
28c309a2 55 {"demangle", optional_argument, NULL, 'C'},
252b5132
RH
56 {"exe", required_argument, NULL, 'e'},
57 {"functions", no_argument, NULL, 'f'},
0c552dc1 58 {"inlines", no_argument, NULL, 'i'},
252b5132
RH
59 {"target", required_argument, NULL, 'b'},
60 {"help", no_argument, NULL, 'H'},
61 {"version", no_argument, NULL, 'V'},
62 {0, no_argument, 0, 0}
63};
64
2da42df6
AJ
65static void usage (FILE *, int);
66static void slurp_symtab (bfd *);
67static void find_address_in_section (bfd *, asection *, void *);
68static void translate_addresses (bfd *);
69static void process_file (const char *, const char *);
252b5132
RH
70\f
71/* Print a usage message to STREAM and exit with STATUS. */
72
73static void
2da42df6 74usage (FILE *stream, int status)
252b5132 75{
8b53311e
NC
76 fprintf (stream, _("Usage: %s [option(s)] [addr(s)]\n"), program_name);
77 fprintf (stream, _(" Convert addresses into line number/file name pairs.\n"));
78 fprintf (stream, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
79 fprintf (stream, _(" The options are:\n\
80 -b --target=<bfdname> Set the binary file format\n\
81 -e --exe=<executable> Set the input file name (default is a.out)\n\
0c552dc1 82 -i --inlines Unwind inlined functions\n\
8b53311e
NC
83 -s --basenames Strip directory names\n\
84 -f --functions Show function names\n\
85 -C --demangle[=style] Demangle function names\n\
86 -h --help Display this information\n\
87 -v --version Display the program's version\n\
88\n"));
89
252b5132
RH
90 list_supported_targets (program_name, stream);
91 if (status == 0)
8ad3436c 92 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132
RH
93 exit (status);
94}
95\f
96/* Read in the symbol table. */
97
98static void
2da42df6 99slurp_symtab (bfd *abfd)
252b5132 100{
252b5132 101 long symcount;
f309035a 102 unsigned int size;
252b5132
RH
103
104 if ((bfd_get_file_flags (abfd) & HAS_SYMS) == 0)
105 return;
106
2da42df6 107 symcount = bfd_read_minisymbols (abfd, FALSE, (void *) &syms, &size);
f309035a 108 if (symcount == 0)
2da42df6 109 symcount = bfd_read_minisymbols (abfd, TRUE /* dynamic */, (void *) &syms, &size);
252b5132 110
252b5132
RH
111 if (symcount < 0)
112 bfd_fatal (bfd_get_filename (abfd));
113}
114\f
115/* These global variables are used to pass information between
116 translate_addresses and find_address_in_section. */
117
118static bfd_vma pc;
119static const char *filename;
120static const char *functionname;
121static unsigned int line;
b34976b6 122static bfd_boolean found;
252b5132
RH
123
124/* Look for an address in a section. This is called via
125 bfd_map_over_sections. */
126
127static void
2da42df6
AJ
128find_address_in_section (bfd *abfd, asection *section,
129 void *data ATTRIBUTE_UNUSED)
252b5132
RH
130{
131 bfd_vma vma;
132 bfd_size_type size;
133
134 if (found)
135 return;
136
137 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
138 return;
139
140 vma = bfd_get_section_vma (abfd, section);
141 if (pc < vma)
142 return;
143
135dfb4a 144 size = bfd_get_section_size (section);
252b5132
RH
145 if (pc >= vma + size)
146 return;
147
148 found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
149 &filename, &functionname, &line);
150}
151
152/* Read hexadecimal addresses from stdin, translate into
153 file_name:line_number and optionally function name. */
154
155static void
2da42df6 156translate_addresses (bfd *abfd)
252b5132
RH
157{
158 int read_stdin = (naddr == 0);
159
160 for (;;)
161 {
162 if (read_stdin)
163 {
164 char addr_hex[100];
165
166 if (fgets (addr_hex, sizeof addr_hex, stdin) == NULL)
167 break;
168 pc = bfd_scan_vma (addr_hex, NULL, 16);
169 }
170 else
171 {
172 if (naddr <= 0)
173 break;
174 --naddr;
175 pc = bfd_scan_vma (*addr++, NULL, 16);
176 }
177
b34976b6 178 found = FALSE;
2da42df6 179 bfd_map_over_sections (abfd, find_address_in_section, NULL);
252b5132
RH
180
181 if (! found)
182 {
183 if (with_functions)
184 printf ("??\n");
185 printf ("??:0\n");
186 }
187 else
188 {
0c552dc1
FF
189 do {
190 if (with_functions)
191 {
192 const char *name;
193 char *alloc = NULL;
194
195 name = functionname;
196 if (name == NULL || *name == '\0')
197 name = "??";
198 else if (do_demangle)
199 {
200 alloc = demangle (abfd, name);
201 name = alloc;
202 }
203
204 printf ("%s\n", name);
205
206 if (alloc != NULL)
207 free (alloc);
208 }
209
210 if (base_names && filename != NULL)
211 {
212 char *h;
213
214 h = strrchr (filename, '/');
215 if (h != NULL)
216 filename = h + 1;
217 }
218
219 printf ("%s:%u\n", filename ? filename : "??", line);
220 if (!unwind_inlines)
221 found = FALSE;
222 else
223 found = bfd_find_inliner_info (abfd, &filename, &functionname, &line);
224 } while (found);
252b5132 225
252b5132
RH
226 }
227
228 /* fflush() is essential for using this command as a server
229 child process that reads addresses from a pipe and responds
230 with line number information, processing one address at a
231 time. */
232 fflush (stdout);
233 }
234}
235
236/* Process a file. */
237
238static void
2da42df6 239process_file (const char *file_name, const char *target)
252b5132
RH
240{
241 bfd *abfd;
242 char **matching;
243
f24ddbdd
NC
244 if (get_file_size (file_name) < 1)
245 return;
246
47badb7b 247 abfd = bfd_openr (file_name, target);
252b5132 248 if (abfd == NULL)
47badb7b 249 bfd_fatal (file_name);
252b5132
RH
250
251 if (bfd_check_format (abfd, bfd_archive))
47badb7b 252 fatal (_("%s: can not get addresses from archive"), file_name);
252b5132
RH
253
254 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
255 {
256 bfd_nonfatal (bfd_get_filename (abfd));
257 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
258 {
259 list_matching_formats (matching);
260 free (matching);
261 }
262 xexit (1);
263 }
264
265 slurp_symtab (abfd);
266
267 translate_addresses (abfd);
268
269 if (syms != NULL)
270 {
271 free (syms);
272 syms = NULL;
273 }
274
275 bfd_close (abfd);
276}
277\f
2da42df6 278int main (int, char **);
65de42c0 279
252b5132 280int
2da42df6 281main (int argc, char **argv)
252b5132 282{
47badb7b 283 const char *file_name;
252b5132
RH
284 char *target;
285 int c;
286
287#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
288 setlocale (LC_MESSAGES, "");
3882b010
L
289#endif
290#if defined (HAVE_SETLOCALE)
291 setlocale (LC_CTYPE, "");
252b5132
RH
292#endif
293 bindtextdomain (PACKAGE, LOCALEDIR);
294 textdomain (PACKAGE);
295
296 program_name = *argv;
297 xmalloc_set_program_name (program_name);
298
869b9d07
MM
299 expandargv (&argc, &argv);
300
252b5132
RH
301 bfd_init ();
302 set_default_bfd_target ();
303
47badb7b 304 file_name = NULL;
252b5132 305 target = NULL;
0c552dc1 306 while ((c = getopt_long (argc, argv, "b:Ce:sfHhiVv", long_options, (int *) 0))
252b5132
RH
307 != EOF)
308 {
309 switch (c)
310 {
311 case 0:
8b53311e 312 break; /* We've been given a long option. */
252b5132
RH
313 case 'b':
314 target = optarg;
315 break;
316 case 'C':
b34976b6 317 do_demangle = TRUE;
28c309a2
NC
318 if (optarg != NULL)
319 {
320 enum demangling_styles style;
f462a9ea 321
28c309a2 322 style = cplus_demangle_name_to_style (optarg);
f462a9ea 323 if (style == unknown_demangling)
28c309a2
NC
324 fatal (_("unknown demangling style `%s'"),
325 optarg);
f462a9ea 326
28c309a2 327 cplus_demangle_set_style (style);
f462a9ea 328 }
252b5132
RH
329 break;
330 case 'e':
47badb7b 331 file_name = optarg;
252b5132
RH
332 break;
333 case 's':
b34976b6 334 base_names = TRUE;
252b5132
RH
335 break;
336 case 'f':
b34976b6 337 with_functions = TRUE;
252b5132 338 break;
8b53311e 339 case 'v':
252b5132
RH
340 case 'V':
341 print_version ("addr2line");
342 break;
8b53311e 343 case 'h':
252b5132
RH
344 case 'H':
345 usage (stdout, 0);
346 break;
0c552dc1
FF
347 case 'i':
348 unwind_inlines = TRUE;
349 break;
252b5132
RH
350 default:
351 usage (stderr, 1);
352 break;
353 }
354 }
355
47badb7b
NC
356 if (file_name == NULL)
357 file_name = "a.out";
252b5132
RH
358
359 addr = argv + optind;
360 naddr = argc - optind;
361
47badb7b 362 process_file (file_name, target);
252b5132
RH
363
364 return 0;
365}
This page took 0.276615 seconds and 4 git commands to generate.