* emulparams/hppa64linux.sh: Define PLT_BEFORE_GOT.
[binutils.git] / gas / messages.c
blob99e20a1a8140281790a2f270d49c3babd3948f12
1 /* messages.c - error reporter -
2 Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001, 2003
3 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 #include "as.h"
23 #include <stdio.h>
24 #ifdef HAVE_ERRNO_H
25 #include <errno.h>
26 #endif
28 #ifdef USE_STDARG
29 #include <stdarg.h>
30 #endif
32 #ifdef USE_VARARGS
33 #include <varargs.h>
34 #endif
36 #if !defined (USE_STDARG) && !defined (USE_VARARGS)
37 /* Roll our own. */
38 #define va_alist REST
39 #define va_dcl
40 typedef int * va_list;
41 #define va_start(ARGS) ARGS = &REST
42 #define va_end(ARGS)
43 #endif
45 static void identify (char *);
46 static void as_show_where (void);
47 static void as_warn_internal (char *, unsigned int, char *);
48 static void as_bad_internal (char *, unsigned int, char *);
50 /* Despite the rest of the comments in this file, (FIXME-SOON),
51 here is the current scheme for error messages etc:
53 as_fatal() is used when gas is quite confused and
54 continuing the assembly is pointless. In this case we
55 exit immediately with error status.
57 as_bad() is used to mark errors that result in what we
58 presume to be a useless object file. Say, we ignored
59 something that might have been vital. If we see any of
60 these, assembly will continue to the end of the source,
61 no object file will be produced, and we will terminate
62 with error status. The new option, -Z, tells us to
63 produce an object file anyway but we still exit with
64 error status. The assumption here is that you don't want
65 this object file but we could be wrong.
67 as_warn() is used when we have an error from which we
68 have a plausible error recovery. eg, masking the top
69 bits of a constant that is longer than will fit in the
70 destination. In this case we will continue to assemble
71 the source, although we may have made a bad assumption,
72 and we will produce an object file and return normal exit
73 status (ie, no error). The new option -X tells us to
74 treat all as_warn() errors as as_bad() errors. That is,
75 no object file will be produced and we will exit with
76 error status. The idea here is that we don't kill an
77 entire make because of an error that we knew how to
78 correct. On the other hand, sometimes you might want to
79 stop the make at these points.
81 as_tsktsk() is used when we see a minor error for which
82 our error recovery action is almost certainly correct.
83 In this case, we print a message and then assembly
84 continues as though no error occurred. */
86 static void
87 identify (char *file)
89 static int identified;
91 if (identified)
92 return;
93 identified++;
95 if (!file)
97 unsigned int x;
98 as_where (&file, &x);
101 if (file)
102 fprintf (stderr, "%s: ", file);
103 fprintf (stderr, _("Assembler messages:\n"));
106 /* The number of warnings issued. */
107 static int warning_count;
110 had_warnings (void)
112 return warning_count;
115 /* Nonzero if we've hit a 'bad error', and should not write an obj file,
116 and exit with a nonzero error code. */
118 static int error_count;
121 had_errors (void)
123 return error_count;
126 /* Print the current location to stderr. */
128 static void
129 as_show_where (void)
131 char *file;
132 unsigned int line;
134 as_where (&file, &line);
135 identify (file);
136 if (file)
137 fprintf (stderr, "%s:%u: ", file, line);
140 /* Like perror(3), but with more info. */
142 void
143 as_perror (const char *gripe, /* Unpunctuated error theme. */
144 const char *filename)
146 const char *errtxt;
147 int saved_errno = errno;
149 as_show_where ();
150 fprintf (stderr, gripe, filename);
151 errno = saved_errno;
152 #ifdef BFD_ASSEMBLER
153 errtxt = bfd_errmsg (bfd_get_error ());
154 #else
155 errtxt = xstrerror (errno);
156 #endif
157 fprintf (stderr, ": %s\n", errtxt);
158 errno = 0;
159 #ifdef BFD_ASSEMBLER
160 bfd_set_error (bfd_error_no_error);
161 #endif
164 /* Send to stderr a string as a warning, and locate warning
165 in input file(s).
166 Please only use this for when we have some recovery action.
167 Please explain in string (which may have '\n's) what recovery was
168 done. */
170 #ifdef USE_STDARG
171 void
172 as_tsktsk (const char *format, ...)
174 va_list args;
176 as_show_where ();
177 va_start (args, format);
178 vfprintf (stderr, format, args);
179 va_end (args);
180 (void) putc ('\n', stderr);
182 #else
183 void
184 as_tsktsk (format, va_alist)
185 const char *format;
186 va_dcl
188 va_list args;
190 as_show_where ();
191 va_start (args);
192 vfprintf (stderr, format, args);
193 va_end (args);
194 (void) putc ('\n', stderr);
196 #endif /* not NO_STDARG */
198 /* The common portion of as_warn and as_warn_where. */
200 static void
201 as_warn_internal (char *file, unsigned int line, char *buffer)
203 ++warning_count;
205 if (file == NULL)
206 as_where (&file, &line);
208 identify (file);
209 if (file)
210 fprintf (stderr, "%s:%u: ", file, line);
211 fprintf (stderr, _("Warning: "));
212 fputs (buffer, stderr);
213 (void) putc ('\n', stderr);
214 #ifndef NO_LISTING
215 listing_warning (buffer);
216 #endif
219 /* Send to stderr a string as a warning, and locate warning
220 in input file(s).
221 Please only use this for when we have some recovery action.
222 Please explain in string (which may have '\n's) what recovery was
223 done. */
225 #ifdef USE_STDARG
226 void
227 as_warn (const char *format, ...)
229 va_list args;
230 char buffer[2000];
232 if (!flag_no_warnings)
234 va_start (args, format);
235 vsprintf (buffer, format, args);
236 va_end (args);
237 as_warn_internal ((char *) NULL, 0, buffer);
240 #else
241 void
242 as_warn (format, va_alist)
243 const char *format;
244 va_dcl
246 va_list args;
247 char buffer[2000];
249 if (!flag_no_warnings)
251 va_start (args);
252 vsprintf (buffer, format, args);
253 va_end (args);
254 as_warn_internal ((char *) NULL, 0, buffer);
257 #endif /* not NO_STDARG */
259 /* Like as_bad but the file name and line number are passed in.
260 Unfortunately, we have to repeat the function in order to handle
261 the varargs correctly and portably. */
263 #ifdef USE_STDARG
264 void
265 as_warn_where (char *file, unsigned int line, const char *format, ...)
267 va_list args;
268 char buffer[2000];
270 if (!flag_no_warnings)
272 va_start (args, format);
273 vsprintf (buffer, format, args);
274 va_end (args);
275 as_warn_internal (file, line, buffer);
278 #else
279 void
280 as_warn_where (file, line, format, va_alist)
281 char *file;
282 unsigned int line;
283 const char *format;
284 va_dcl
286 va_list args;
287 char buffer[2000];
289 if (!flag_no_warnings)
291 va_start (args);
292 vsprintf (buffer, format, args);
293 va_end (args);
294 as_warn_internal (file, line, buffer);
297 #endif /* not NO_STDARG */
299 /* The common portion of as_bad and as_bad_where. */
301 static void
302 as_bad_internal (char *file, unsigned int line, char *buffer)
304 ++error_count;
306 if (file == NULL)
307 as_where (&file, &line);
309 identify (file);
310 if (file)
311 fprintf (stderr, "%s:%u: ", file, line);
312 fprintf (stderr, _("Error: "));
313 fputs (buffer, stderr);
314 (void) putc ('\n', stderr);
315 #ifndef NO_LISTING
316 listing_error (buffer);
317 #endif
320 /* Send to stderr a string as a warning, and locate warning in input
321 file(s). Please us when there is no recovery, but we want to
322 continue processing but not produce an object file.
323 Please explain in string (which may have '\n's) what recovery was
324 done. */
326 #ifdef USE_STDARG
327 void
328 as_bad (const char *format, ...)
330 va_list args;
331 char buffer[2000];
333 va_start (args, format);
334 vsprintf (buffer, format, args);
335 va_end (args);
337 as_bad_internal ((char *) NULL, 0, buffer);
340 #else
341 void
342 as_bad (format, va_alist)
343 const char *format;
344 va_dcl
346 va_list args;
347 char buffer[2000];
349 va_start (args);
350 vsprintf (buffer, format, args);
351 va_end (args);
353 as_bad_internal ((char *) NULL, 0, buffer);
355 #endif /* not NO_STDARG */
357 /* Like as_bad but the file name and line number are passed in.
358 Unfortunately, we have to repeat the function in order to handle
359 the varargs correctly and portably. */
361 #ifdef USE_STDARG
362 void
363 as_bad_where (char *file, unsigned int line, const char *format, ...)
365 va_list args;
366 char buffer[2000];
368 va_start (args, format);
369 vsprintf (buffer, format, args);
370 va_end (args);
372 as_bad_internal (file, line, buffer);
375 #else
376 void
377 as_bad_where (file, line, format, va_alist)
378 char *file;
379 unsigned int line;
380 const char *format;
381 va_dcl
383 va_list args;
384 char buffer[2000];
386 va_start (args);
387 vsprintf (buffer, format, args);
388 va_end (args);
390 as_bad_internal (file, line, buffer);
392 #endif /* not NO_STDARG */
394 /* Send to stderr a string as a fatal message, and print location of
395 error in input file(s).
396 Please only use this for when we DON'T have some recovery action.
397 It xexit()s with a warning status. */
399 #ifdef USE_STDARG
400 void
401 as_fatal (const char *format, ...)
403 va_list args;
405 as_show_where ();
406 va_start (args, format);
407 fprintf (stderr, _("Fatal error: "));
408 vfprintf (stderr, format, args);
409 (void) putc ('\n', stderr);
410 va_end (args);
411 /* Delete the output file, if it exists. This will prevent make from
412 thinking that a file was created and hence does not need rebuilding. */
413 if (out_file_name != NULL)
414 unlink (out_file_name);
415 xexit (EXIT_FAILURE);
417 #else
418 void
419 as_fatal (format, va_alist)
420 char *format;
421 va_dcl
423 va_list args;
425 as_show_where ();
426 va_start (args);
427 fprintf (stderr, _("Fatal error: "));
428 vfprintf (stderr, format, args);
429 (void) putc ('\n', stderr);
430 va_end (args);
431 xexit (EXIT_FAILURE);
433 #endif /* not NO_STDARG */
435 /* Indicate assertion failure.
436 Arguments: Filename, line number, optional function name. */
438 void
439 as_assert (const char *file, int line, const char *fn)
441 as_show_where ();
442 fprintf (stderr, _("Internal error!\n"));
443 if (fn)
444 fprintf (stderr, _("Assertion failure in %s at %s line %d.\n"),
445 fn, file, line);
446 else
447 fprintf (stderr, _("Assertion failure at %s line %d.\n"), file, line);
448 fprintf (stderr, _("Please report this bug.\n"));
449 xexit (EXIT_FAILURE);
452 /* as_abort: Print a friendly message saying how totally hosed we are,
453 and exit without producing a core file. */
455 void
456 as_abort (const char *file, int line, const char *fn)
458 as_show_where ();
459 if (fn)
460 fprintf (stderr, _("Internal error, aborting at %s line %d in %s\n"),
461 file, line, fn);
462 else
463 fprintf (stderr, _("Internal error, aborting at %s line %d\n"),
464 file, line);
465 fprintf (stderr, _("Please report this bug.\n"));
466 xexit (EXIT_FAILURE);
469 /* Support routines. */
471 void
472 fprint_value (FILE *file, valueT val)
474 if (sizeof (val) <= sizeof (long))
476 fprintf (file, "%ld", (long) val);
477 return;
479 #ifdef BFD_ASSEMBLER
480 if (sizeof (val) <= sizeof (bfd_vma))
482 fprintf_vma (file, val);
483 return;
485 #endif
486 abort ();
489 void
490 sprint_value (char *buf, valueT val)
492 if (sizeof (val) <= sizeof (long))
494 sprintf (buf, "%ld", (long) val);
495 return;
497 #ifdef BFD_ASSEMBLER
498 if (sizeof (val) <= sizeof (bfd_vma))
500 sprintf_vma (buf, val);
501 return;
503 #endif
504 abort ();
507 #define HEX_MAX_THRESHOLD 1024
508 #define HEX_MIN_THRESHOLD -(HEX_MAX_THRESHOLD)
510 static void
511 as_internal_value_out_of_range (char * prefix,
512 offsetT val,
513 offsetT min,
514 offsetT max,
515 char * file,
516 unsigned line,
517 int bad)
519 const char * err;
521 if (prefix == NULL)
522 prefix = "";
524 #ifdef BFD_ASSEMBLER
525 if ( val < HEX_MAX_THRESHOLD
526 && min < HEX_MAX_THRESHOLD
527 && max < HEX_MAX_THRESHOLD
528 && val > HEX_MIN_THRESHOLD
529 && min > HEX_MIN_THRESHOLD
530 && max > HEX_MIN_THRESHOLD)
531 #endif
533 /* xgettext:c-format */
534 err = _("%s out of range (%d is not between %d and %d)");
536 if (bad)
537 as_bad_where (file, line, err, prefix, val, min, max);
538 else
539 as_warn_where (file, line, err, prefix, val, min, max);
541 #ifdef BFD_ASSEMBLER
542 else
544 char val_buf [sizeof (val) * 3 + 2];
545 char min_buf [sizeof (val) * 3 + 2];
546 char max_buf [sizeof (val) * 3 + 2];
548 if (sizeof (val) > sizeof (bfd_vma))
549 abort ();
551 sprintf_vma (val_buf, val);
552 sprintf_vma (min_buf, min);
553 sprintf_vma (max_buf, max);
555 /* xgettext:c-format. */
556 err = _("%s out of range (0x%s is not between 0x%s and 0x%s)");
558 if (bad)
559 as_bad_where (file, line, err, prefix, val_buf, min_buf, max_buf);
560 else
561 as_warn_where (file, line, err, prefix, val_buf, min_buf, max_buf);
563 #endif
566 void
567 as_warn_value_out_of_range (char * prefix,
568 offsetT value,
569 offsetT min,
570 offsetT max,
571 char * file,
572 unsigned line)
574 as_internal_value_out_of_range (prefix, value, min, max, file, line, 0);
577 void
578 as_bad_value_out_of_range (char * prefix,
579 offsetT value,
580 offsetT min,
581 offsetT max,
582 char * file,
583 unsigned line)
585 as_internal_value_out_of_range (prefix, value, min, max, file, line, 1);