2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain of Cygnus Support.
7 This file is part of the GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
27 #include "libiberty.h"
28 #include "filenames.h"
43 %A section name from a section
44 %B filename from a bfd
45 %C clever filename:linenumber with function
46 %D like %C, but no function name
47 %E current bfd error or errno
49 %G like %D, but only function name
50 %H like %C but in addition emit section+offset
51 %I filename from a lang_input_statement_type
53 %R info about a relent
54 %S print script file and linenumber
57 %W hex bfd_vma with 0x with no leading zeros taking up 8 spaces
58 %X no object output, fail return
59 %d integer, like printf
61 %lu unsigned long, like printf
62 %p native (host) void* pointer, like printf
63 %s arbitrary string, like printf
64 %u integer, like printf
65 %v hex bfd_vma, no leading zeros
69 vfinfo (FILE *fp
, const char *fmt
, va_list arg
, bfd_boolean is_warning
)
71 bfd_boolean fatal
= FALSE
;
75 while (*fmt
!= '%' && *fmt
!= '\0')
92 /* no object output, fail return */
93 config
.make_executable
= FALSE
;
99 bfd_vma value
= va_arg (arg
, bfd_vma
);
100 fprintf_vma (fp
, value
);
105 /* hex bfd_vma, no leading zeros */
109 bfd_vma value
= va_arg (arg
, bfd_vma
);
110 sprintf_vma (p
, value
);
120 /* hex bfd_vma with 0x with no leading zeroes taking up
128 value
= va_arg (arg
, bfd_vma
);
129 sprintf_vma (buf
, value
);
130 for (p
= buf
; *p
== '0'; ++p
)
140 fprintf (fp
, "0x%s", p
);
147 const char *name
= va_arg (arg
, const char *);
149 if (name
== NULL
|| *name
== 0)
151 fprintf (fp
, _("no symbol"));
158 demangled
= bfd_demangle (link_info
.output_bfd
, name
,
159 DMGL_ANSI
| DMGL_PARAMS
);
160 if (demangled
!= NULL
)
162 fprintf (fp
, "%s", demangled
);
167 fprintf (fp
, "%s", name
);
172 /* section name from a section */
174 asection
*sec
= va_arg (arg
, asection
*);
175 bfd
*abfd
= sec
->owner
;
176 const char *group
= NULL
;
177 struct coff_comdat_info
*ci
;
179 fprintf (fp
, "%s", sec
->name
);
181 && bfd_get_flavour (abfd
) == bfd_target_elf_flavour
182 && elf_next_in_group (sec
) != NULL
183 && (sec
->flags
& SEC_GROUP
) == 0)
184 group
= elf_group_name (sec
);
185 else if (abfd
!= NULL
186 && bfd_get_flavour (abfd
) == bfd_target_coff_flavour
187 && (ci
= bfd_coff_get_comdat_section (sec
->owner
,
191 fprintf (fp
, "[%s]", group
);
196 /* filename from a bfd */
198 bfd
*abfd
= va_arg (arg
, bfd
*);
201 fprintf (fp
, "%s generated", program_name
);
202 else if (abfd
->my_archive
)
203 fprintf (fp
, "%s(%s)", abfd
->my_archive
->filename
,
206 fprintf (fp
, "%s", abfd
->filename
);
211 /* Error is fatal. */
216 /* Print program name. */
217 fprintf (fp
, "%s", program_name
);
221 /* current bfd error or errno */
222 fprintf (fp
, "%s", bfd_errmsg (bfd_get_error ()));
226 /* filename from a lang_input_statement_type */
228 lang_input_statement_type
*i
;
230 i
= va_arg (arg
, lang_input_statement_type
*);
231 if (bfd_my_archive (i
->the_bfd
) != NULL
)
233 bfd_get_filename (bfd_my_archive (i
->the_bfd
)));
234 fprintf (fp
, "%s", i
->local_sym_name
);
235 if (bfd_my_archive (i
->the_bfd
) == NULL
236 && filename_cmp (i
->local_sym_name
, i
->filename
) != 0)
237 fprintf (fp
, " (%s)", i
->filename
);
242 /* Print script file and linenumber. */
244 fprintf (fp
, "--defsym %s", lex_string
);
245 else if (ldfile_input_filename
!= NULL
)
246 fprintf (fp
, "%s:%u", ldfile_input_filename
, lineno
);
248 fprintf (fp
, _("built in linker script:%u"), lineno
);
252 /* Print all that's interesting about a relent. */
254 arelent
*relent
= va_arg (arg
, arelent
*);
256 lfinfo (fp
, "%s+0x%v (type %s)",
257 (*(relent
->sym_ptr_ptr
))->name
,
259 relent
->howto
->name
);
267 /* Clever filename:linenumber with function name if possible.
268 The arguments are a BFD, a section, and an offset. */
270 static bfd
*last_bfd
;
271 static char *last_file
= NULL
;
272 static char *last_function
= NULL
;
276 asymbol
**asymbols
= NULL
;
277 const char *filename
;
278 const char *functionname
;
279 unsigned int linenumber
;
280 bfd_boolean discard_last
;
283 abfd
= va_arg (arg
, bfd
*);
284 section
= va_arg (arg
, asection
*);
285 offset
= va_arg (arg
, bfd_vma
);
289 if (!bfd_generic_link_read_symbols (abfd
))
290 einfo (_("%B%F: could not read symbols: %E\n"), abfd
);
292 asymbols
= bfd_get_outsymbols (abfd
);
295 /* The GNU Coding Standard requires that error messages
298 source-file-name:lineno: message
300 We do not always have a line number available so if
301 we cannot find them we print out the section name and
305 && bfd_find_nearest_line (abfd
, section
, asymbols
, offset
,
306 &filename
, &functionname
,
309 if (functionname
!= NULL
310 && (fmt
[-1] == 'C' || fmt
[-1] == 'H'))
312 /* Detect the case where we are printing out a
313 message for the same function as the last
314 call to vinfo ("%C"). In this situation do
315 not print out the ABFD filename or the
316 function name again. Note - we do still
317 print out the source filename, as this will
318 allow programs that parse the linker's output
319 (eg emacs) to correctly locate multiple
320 errors in the same source file. */
323 || last_function
== NULL
326 && filename_cmp (last_file
, filename
) != 0)
327 || strcmp (last_function
, functionname
) != 0)
329 lfinfo (fp
, _("%B: In function `%T':\n"),
333 if (last_file
!= NULL
)
337 last_file
= xstrdup (filename
);
338 if (last_function
!= NULL
)
339 free (last_function
);
340 last_function
= xstrdup (functionname
);
342 discard_last
= FALSE
;
345 lfinfo (fp
, "%B:", abfd
);
347 if (filename
!= NULL
)
348 fprintf (fp
, "%s:", filename
);
350 done
= fmt
[-1] != 'H';
351 if (functionname
!= NULL
&& fmt
[-1] == 'G')
352 lfinfo (fp
, "%T", functionname
);
353 else if (filename
!= NULL
&& linenumber
!= 0)
354 fprintf (fp
, "%u%s", linenumber
, ":" + done
);
360 lfinfo (fp
, "%B:", abfd
);
364 lfinfo (fp
, "(%A+0x%v)", section
, offset
);
369 if (last_file
!= NULL
)
374 if (last_function
!= NULL
)
376 free (last_function
);
377 last_function
= NULL
;
384 /* native (host) void* pointer, like printf */
385 fprintf (fp
, "%p", va_arg (arg
, void *));
389 /* arbitrary string, like printf */
390 fprintf (fp
, "%s", va_arg (arg
, char *));
394 /* integer, like printf */
395 fprintf (fp
, "%d", va_arg (arg
, int));
399 /* unsigned integer, like printf */
400 fprintf (fp
, "%u", va_arg (arg
, unsigned int));
406 fprintf (fp
, "%ld", va_arg (arg
, long));
410 else if (*fmt
== 'u')
412 fprintf (fp
, "%lu", va_arg (arg
, unsigned long));
419 fprintf (fp
, "%%%c", fmt
[-1]);
425 if (is_warning
&& config
.fatal_warnings
)
426 config
.make_executable
= FALSE
;
432 /* Format info message and print on stdout. */
434 /* (You would think this should be called just "info", but then you
435 would be hosed by LynxOS, which defines that name in its libc.) */
438 info_msg (const char *fmt
, ...)
443 vfinfo (stdout
, fmt
, arg
, FALSE
);
447 /* ('e' for error.) Format info message and print on stderr. */
450 einfo (const char *fmt
, ...)
456 vfinfo (stderr
, fmt
, arg
, TRUE
);
462 info_assert (const char *file
, unsigned int line
)
464 einfo (_("%F%P: internal error %s %d\n"), file
, line
);
467 /* ('m' for map) Format info message and print on map. */
470 minfo (const char *fmt
, ...)
472 if (config
.map_file
!= NULL
)
477 vfinfo (config
.map_file
, fmt
, arg
, FALSE
);
483 lfinfo (FILE *file
, const char *fmt
, ...)
488 vfinfo (file
, fmt
, arg
, FALSE
);
492 /* Functions to print the link map. */
497 fprintf (config
.map_file
, " ");
503 fprintf (config
.map_file
, "\n");
506 /* A more or less friendly abort message. In ld.h abort is defined to
507 call this function. */
510 ld_abort (const char *file
, int line
, const char *fn
)
513 einfo (_("%P: internal error: aborting at %s line %d in %s\n"),
516 einfo (_("%P: internal error: aborting at %s line %d\n"),
518 einfo (_("%P%F: please report this bug\n"));