Remove special case handling for rtems targets that are sufficiently handled by
[binutils.git] / binutils / addr2line.c
blob6464e37de0ddb20c61c71071f5770ab8bb2e9389
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)
11 any later version.
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, MA 02110-1301, USA. */
22 /* Derived from objdump.c and nm.c by Ulrich.Lauther@mchp.siemens.de
24 Usage:
25 addr2line [options] addr addr ...
27 addr2line [options]
29 both forms write results to stdout, the second form reads addresses
30 to be converted from stdin. */
32 #include "config.h"
33 #include <string.h>
35 #include "bfd.h"
36 #include "getopt.h"
37 #include "libiberty.h"
38 #include "demangle.h"
39 #include "bucomm.h"
40 #include "budemang.h"
42 static bfd_boolean unwind_inlines; /* -i, unwind inlined functions. */
43 static bfd_boolean with_functions; /* -f, show function names. */
44 static bfd_boolean do_demangle; /* -C, demangle names. */
45 static bfd_boolean base_names; /* -s, strip directory names. */
47 static int naddr; /* Number of addresses to process. */
48 static char **addr; /* Hex addresses to process. */
50 static asymbol **syms; /* Symbol table. */
52 static struct option long_options[] =
54 {"basenames", no_argument, NULL, 's'},
55 {"demangle", optional_argument, NULL, 'C'},
56 {"exe", required_argument, NULL, 'e'},
57 {"functions", no_argument, NULL, 'f'},
58 {"inlines", no_argument, NULL, 'i'},
59 {"target", required_argument, NULL, 'b'},
60 {"help", no_argument, NULL, 'H'},
61 {"version", no_argument, NULL, 'V'},
62 {0, no_argument, 0, 0}
65 static void usage (FILE *, int);
66 static void slurp_symtab (bfd *);
67 static void find_address_in_section (bfd *, asection *, void *);
68 static void translate_addresses (bfd *);
69 static void process_file (const char *, const char *);
71 /* Print a usage message to STREAM and exit with STATUS. */
73 static void
74 usage (FILE *stream, int status)
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\
82 -i --inlines Unwind inlined functions\n\
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"));
90 list_supported_targets (program_name, stream);
91 if (status == 0)
92 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
93 exit (status);
96 /* Read in the symbol table. */
98 static void
99 slurp_symtab (bfd *abfd)
101 long symcount;
102 unsigned int size;
104 if ((bfd_get_file_flags (abfd) & HAS_SYMS) == 0)
105 return;
107 symcount = bfd_read_minisymbols (abfd, FALSE, (void *) &syms, &size);
108 if (symcount == 0)
109 symcount = bfd_read_minisymbols (abfd, TRUE /* dynamic */, (void *) &syms, &size);
111 if (symcount < 0)
112 bfd_fatal (bfd_get_filename (abfd));
115 /* These global variables are used to pass information between
116 translate_addresses and find_address_in_section. */
118 static bfd_vma pc;
119 static const char *filename;
120 static const char *functionname;
121 static unsigned int line;
122 static bfd_boolean found;
124 /* Look for an address in a section. This is called via
125 bfd_map_over_sections. */
127 static void
128 find_address_in_section (bfd *abfd, asection *section,
129 void *data ATTRIBUTE_UNUSED)
131 bfd_vma vma;
132 bfd_size_type size;
134 if (found)
135 return;
137 if ((bfd_get_section_flags (abfd, section) & SEC_ALLOC) == 0)
138 return;
140 vma = bfd_get_section_vma (abfd, section);
141 if (pc < vma)
142 return;
144 size = bfd_get_section_size (section);
145 if (pc >= vma + size)
146 return;
148 found = bfd_find_nearest_line (abfd, section, syms, pc - vma,
149 &filename, &functionname, &line);
152 /* Read hexadecimal addresses from stdin, translate into
153 file_name:line_number and optionally function name. */
155 static void
156 translate_addresses (bfd *abfd)
158 int read_stdin = (naddr == 0);
160 for (;;)
162 if (read_stdin)
164 char addr_hex[100];
166 if (fgets (addr_hex, sizeof addr_hex, stdin) == NULL)
167 break;
168 pc = bfd_scan_vma (addr_hex, NULL, 16);
170 else
172 if (naddr <= 0)
173 break;
174 --naddr;
175 pc = bfd_scan_vma (*addr++, NULL, 16);
178 found = FALSE;
179 bfd_map_over_sections (abfd, find_address_in_section, NULL);
181 if (! found)
183 if (with_functions)
184 printf ("??\n");
185 printf ("??:0\n");
187 else
189 do {
190 if (with_functions)
192 const char *name;
193 char *alloc = NULL;
195 name = functionname;
196 if (name == NULL || *name == '\0')
197 name = "??";
198 else if (do_demangle)
200 alloc = demangle (abfd, name);
201 name = alloc;
204 printf ("%s\n", name);
206 if (alloc != NULL)
207 free (alloc);
210 if (base_names && filename != NULL)
212 char *h;
214 h = strrchr (filename, '/');
215 if (h != NULL)
216 filename = h + 1;
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);
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);
236 /* Process a file. */
238 static void
239 process_file (const char *file_name, const char *target)
241 bfd *abfd;
242 char **matching;
244 if (get_file_size (file_name) < 1)
245 return;
247 abfd = bfd_openr (file_name, target);
248 if (abfd == NULL)
249 bfd_fatal (file_name);
251 if (bfd_check_format (abfd, bfd_archive))
252 fatal (_("%s: can not get addresses from archive"), file_name);
254 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
256 bfd_nonfatal (bfd_get_filename (abfd));
257 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
259 list_matching_formats (matching);
260 free (matching);
262 xexit (1);
265 slurp_symtab (abfd);
267 translate_addresses (abfd);
269 if (syms != NULL)
271 free (syms);
272 syms = NULL;
275 bfd_close (abfd);
278 int main (int, char **);
281 main (int argc, char **argv)
283 const char *file_name;
284 char *target;
285 int c;
287 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
288 setlocale (LC_MESSAGES, "");
289 #endif
290 #if defined (HAVE_SETLOCALE)
291 setlocale (LC_CTYPE, "");
292 #endif
293 bindtextdomain (PACKAGE, LOCALEDIR);
294 textdomain (PACKAGE);
296 program_name = *argv;
297 xmalloc_set_program_name (program_name);
299 bfd_init ();
300 set_default_bfd_target ();
302 file_name = NULL;
303 target = NULL;
304 while ((c = getopt_long (argc, argv, "b:Ce:sfHhiVv", long_options, (int *) 0))
305 != EOF)
307 switch (c)
309 case 0:
310 break; /* We've been given a long option. */
311 case 'b':
312 target = optarg;
313 break;
314 case 'C':
315 do_demangle = TRUE;
316 if (optarg != NULL)
318 enum demangling_styles style;
320 style = cplus_demangle_name_to_style (optarg);
321 if (style == unknown_demangling)
322 fatal (_("unknown demangling style `%s'"),
323 optarg);
325 cplus_demangle_set_style (style);
327 break;
328 case 'e':
329 file_name = optarg;
330 break;
331 case 's':
332 base_names = TRUE;
333 break;
334 case 'f':
335 with_functions = TRUE;
336 break;
337 case 'v':
338 case 'V':
339 print_version ("addr2line");
340 break;
341 case 'h':
342 case 'H':
343 usage (stdout, 0);
344 break;
345 case 'i':
346 unwind_inlines = TRUE;
347 break;
348 default:
349 usage (stderr, 1);
350 break;
354 if (file_name == NULL)
355 file_name = "a.out";
357 addr = argv + optind;
358 naddr = argc - optind;
360 process_file (file_name, target);
362 return 0;