2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
4 Contributed by Andy Vaught & Niels Kristian Bech Jensen
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 /* Handle the inevitable errors. A major catch here is that things
24 flagged as errors in one match subroutine can conceivably be legal
25 elsewhere. This means that error messages are recorded and saved
26 for possible use later. If a line does not match a legal
27 construction, then the saved error message is reported. */
34 int gfc_suppress_error
= 0;
36 static int terminal_width
, buffer_flag
, errors
, warnings
;
38 static gfc_error_buf error_buffer
, warning_buffer
, *cur_error_buffer
;
41 /* Per-file error initialization. */
44 gfc_error_init_1 (void)
46 terminal_width
= gfc_terminal_width ();
53 /* Set the flag for buffering errors or not. */
56 gfc_buffer_error (int flag
)
62 /* Add a single character to the error buffer or output depending on
70 if (cur_error_buffer
->index
>= cur_error_buffer
->allocated
)
72 cur_error_buffer
->allocated
=
73 cur_error_buffer
->allocated
74 ? cur_error_buffer
->allocated
* 2 : 1000;
75 cur_error_buffer
->message
76 = xrealloc (cur_error_buffer
->message
,
77 cur_error_buffer
->allocated
);
79 cur_error_buffer
->message
[cur_error_buffer
->index
++] = c
;
85 /* We build up complete lines before handing things
86 over to the library in order to speed up error printing. */
88 static size_t allocated
= 0, index
= 0;
90 if (index
+ 1 >= allocated
)
92 allocated
= allocated
? allocated
* 2 : 1000;
93 line
= xrealloc (line
, allocated
);
107 /* Copy a string to wherever it needs to go. */
110 error_string (const char *p
)
117 /* Show the file, where it was included and the source line, give a
118 locus. Calls error_printf() recursively, but the recursion is at
119 most one level deep. */
121 static void error_printf (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
124 show_locus (int offset
, locus
* loc
)
131 /* TODO: Either limit the total length and number of included files
132 displayed or add buffering of arbitrary number of characters in
137 error_printf ("In file %s:%d\n", f
->filename
,
138 #ifdef USE_MAPPED_LOCATION
139 LOCATION_LINE (lb
->location
)
147 i
= f
->inclusion_line
;
150 if (f
== NULL
) break;
152 error_printf (" Included at %s:%d\n", f
->filename
, i
);
155 /* Show the line itself, taking care not to print more than what can
156 show up on the terminal. Tabs are converted to spaces. */
158 p
= lb
->line
+ offset
;
160 if (i
> terminal_width
)
161 i
= terminal_width
- 1;
176 m
= ((c
>> 4) & 0x0F) + '0';
181 m
= (c
& 0x0F) + '0';
192 /* As part of printing an error, we show the source lines that caused
193 the problem. We show at least one, possibly two loci. If we're
194 showing two loci and they both refer to the same file and line, we
195 only print the line once. */
198 show_loci (locus
* l1
, locus
* l2
)
200 int offset
, flag
, i
, m
, c1
, c2
, cmax
;
204 error_printf ("<During initialization>\n");
208 c1
= l1
->nextc
- l1
->lb
->line
;
213 c2
= l2
->nextc
- l2
->lb
->line
;
221 if (l1
->lb
!= l2
->lb
|| m
> terminal_width
- 10)
225 cmax
= (c1
< c2
) ? c2
: c1
;
226 if (cmax
> terminal_width
- 5)
227 offset
= cmax
- terminal_width
+ 5;
235 show_locus (offset
, l1
);
237 /* Arrange that '1' and '2' will show up even if the two columns are equal. */
238 for (i
= 1; i
<= cmax
; i
++)
262 if (c1
> terminal_width
- 5)
270 show_locus (offset
, l1
);
271 for (i
= 1; i
< c1
; i
++)
281 if (c2
> terminal_width
- 20)
289 show_locus (offset
, l2
);
291 for (i
= 1; i
< c2
; i
++)
300 /* Workhorse for the error printing subroutines. This subroutine is
301 inspired by g77's error handling and is similar to printf() with
302 the following %-codes:
304 %c Character, %d Integer, %s String, %% Percent
305 %L Takes locus argument
306 %C Current locus (no argument)
308 If a locus pointer is given, the actual source line is printed out
309 and the column is indicated. Since we want the error message at
310 the bottom of any source file information, we must scan the
311 argument list twice. A maximum of two locus arguments are
317 static void ATTRIBUTE_GCC_GFC(2,0)
318 error_print (const char *type
, const char *format0
, va_list argp
)
320 char c
, *p
, int_buf
[IBUF_LEN
], c_arg
[MAX_ARGS
], *cp_arg
[MAX_ARGS
];
321 int i
, n
, have_l1
, i_arg
[MAX_ARGS
];
322 locus
*l1
, *l2
, *loc
;
325 l1
= l2
= loc
= NULL
;
345 loc
= va_arg (argp
, locus
*);
350 loc
= &gfc_current_locus
;
365 i_arg
[n
++] = va_arg (argp
, int);
369 c_arg
[n
++] = va_arg (argp
, int);
373 cp_arg
[n
++] = va_arg (argp
, char *);
379 /* Show the current loci if we have to. */
389 for (; *format
; format
++)
393 error_char (*format
);
405 error_char (c_arg
[n
++]);
409 error_string (cp_arg
[n
++]);
422 p
= int_buf
+ IBUF_LEN
- 1;
434 error_string (p
+ 1);
437 case 'C': /* Current locus */
438 case 'L': /* Specified locus */
439 error_string (have_l1
? "(2)" : "(1)");
449 /* Wrapper for error_print(). */
452 error_printf (const char *nocmsgid
, ...)
456 va_start (argp
, nocmsgid
);
457 error_print ("", _(nocmsgid
), argp
);
462 /* Issue a warning. */
465 gfc_warning (const char *nocmsgid
, ...)
469 if (inhibit_warnings
)
472 warning_buffer
.flag
= 1;
473 warning_buffer
.index
= 0;
474 cur_error_buffer
= &warning_buffer
;
476 va_start (argp
, nocmsgid
);
477 if (buffer_flag
== 0)
479 error_print (_("Warning:"), _(nocmsgid
), argp
);
486 /* Possibly issue a warning/error about use of a nonstandard (or deleted)
487 feature. An error/warning will be issued if the currently selected
488 standard does not contain the requested bits. Return FAILURE if
489 an error is generated. */
492 gfc_notify_std (int std
, const char *nocmsgid
, ...)
497 warning
= ((gfc_option
.warn_std
& std
) != 0)
498 && !inhibit_warnings
;
499 if ((gfc_option
.allow_std
& std
) != 0
503 if (gfc_suppress_error
)
504 return warning
? SUCCESS
: FAILURE
;
506 cur_error_buffer
= warning
? &warning_buffer
: &error_buffer
;
507 cur_error_buffer
->flag
= 1;
508 cur_error_buffer
->index
= 0;
510 if (buffer_flag
== 0)
517 va_start (argp
, nocmsgid
);
519 error_print (_("Warning:"), _(nocmsgid
), argp
);
521 error_print (_("Error:"), _(nocmsgid
), argp
);
525 return warning
? SUCCESS
: FAILURE
;
529 /* Immediate warning (i.e. do not buffer the warning). */
532 gfc_warning_now (const char *nocmsgid
, ...)
537 if (inhibit_warnings
)
544 va_start (argp
, nocmsgid
);
545 error_print (_("Warning:"), _(nocmsgid
), argp
);
553 /* Clear the warning flag. */
556 gfc_clear_warning (void)
558 warning_buffer
.flag
= 0;
562 /* Check to see if any warnings have been saved.
563 If so, print the warning. */
566 gfc_warning_check (void)
568 if (warning_buffer
.flag
)
571 if (warning_buffer
.message
!= NULL
)
572 fputs (warning_buffer
.message
, stderr
);
573 warning_buffer
.flag
= 0;
578 /* Issue an error. */
581 gfc_error (const char *nocmsgid
, ...)
585 if (gfc_suppress_error
)
588 error_buffer
.flag
= 1;
589 error_buffer
.index
= 0;
590 cur_error_buffer
= &error_buffer
;
592 va_start (argp
, nocmsgid
);
593 if (buffer_flag
== 0)
595 error_print (_("Error:"), _(nocmsgid
), argp
);
602 /* Immediate error. */
605 gfc_error_now (const char *nocmsgid
, ...)
610 error_buffer
.flag
= 1;
611 error_buffer
.index
= 0;
612 cur_error_buffer
= &error_buffer
;
618 va_start (argp
, nocmsgid
);
619 error_print (_("Error:"), _(nocmsgid
), argp
);
627 /* Fatal error, never returns. */
630 gfc_fatal_error (const char *nocmsgid
, ...)
636 va_start (argp
, nocmsgid
);
637 error_print (_("Fatal Error:"), _(nocmsgid
), argp
);
644 /* This shouldn't happen... but sometimes does. */
647 gfc_internal_error (const char *format
, ...)
653 va_start (argp
, format
);
655 show_loci (&gfc_current_locus
, NULL
);
656 error_printf ("Internal Error at (1):");
658 error_print ("", format
, argp
);
665 /* Clear the error flag when we start to compile a source line. */
668 gfc_clear_error (void)
670 error_buffer
.flag
= 0;
674 /* Check to see if any errors have been saved.
675 If so, print the error. Returns the state of error_flag. */
678 gfc_error_check (void)
682 rc
= error_buffer
.flag
;
684 if (error_buffer
.flag
)
687 if (error_buffer
.message
!= NULL
)
688 fputs (error_buffer
.message
, stderr
);
689 error_buffer
.flag
= 0;
696 /* Save the existing error state. */
699 gfc_push_error (gfc_error_buf
* err
)
701 err
->flag
= error_buffer
.flag
;
702 if (error_buffer
.flag
)
703 err
->message
= xstrdup (error_buffer
.message
);
705 error_buffer
.flag
= 0;
709 /* Restore a previous pushed error state. */
712 gfc_pop_error (gfc_error_buf
* err
)
714 error_buffer
.flag
= err
->flag
;
715 if (error_buffer
.flag
)
717 size_t len
= strlen (err
->message
) + 1;
718 gcc_assert (len
<= error_buffer
.allocated
);
719 memcpy (error_buffer
.message
, err
->message
, len
);
720 gfc_free (err
->message
);
725 /* Free a pushed error state, but keep the current error state. */
728 gfc_free_error (gfc_error_buf
* err
)
731 gfc_free (err
->message
);
735 /* Debug wrapper for printf. */
738 gfc_status (const char *cmsgid
, ...)
742 va_start (argp
, cmsgid
);
744 vprintf (_(cmsgid
), argp
);
750 /* Subroutine for outputting a single char so that we don't have to go
751 around creating a lot of 1-character strings. */
754 gfc_status_char (char c
)
760 /* Report the number of warnings and errors that occurred to the caller. */
763 gfc_get_errors (int *w
, int *e
)