2 Copyright (C) 2000-2018 Free Software Foundation, Inc.
3 Contributed by Andy Vaught & Niels Kristian Bech Jensen
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Handle the inevitable errors. A major catch here is that things
22 flagged as errors in one match subroutine can conceivably be legal
23 elsewhere. This means that error messages are recorded and saved
24 for possible use later. If a line does not match a legal
25 construction, then the saved error message is reported. */
29 #include "coretypes.h"
33 #include "diagnostic.h"
34 #include "diagnostic-color.h"
35 #include "tree-diagnostic.h" /* tree_diagnostics_defaults */
37 static int suppress_errors
= 0;
39 static bool warnings_not_errors
= false;
41 static int terminal_width
;
43 /* True if the error/warnings should be buffered. */
44 static bool buffered_p
;
46 static gfc_error_buffer error_buffer
;
47 /* These are always buffered buffers (.flush_p == false) to be used by
48 the pretty-printer. */
49 static output_buffer
*pp_error_buffer
, *pp_warning_buffer
;
50 static int warningcount_buffered
, werrorcount_buffered
;
52 /* Return true if there output_buffer is empty. */
55 gfc_output_buffer_empty_p (const output_buffer
* buf
)
57 return output_buffer_last_position_in_text (buf
) == NULL
;
60 /* Go one level deeper suppressing errors. */
63 gfc_push_suppress_errors (void)
65 gcc_assert (suppress_errors
>= 0);
70 gfc_error_opt (int opt
, const char *gmsgid
, va_list ap
) ATTRIBUTE_GCC_GFC(2,0);
73 gfc_warning (int opt
, const char *gmsgid
, va_list ap
) ATTRIBUTE_GCC_GFC(2,0);
76 /* Leave one level of error suppressing. */
79 gfc_pop_suppress_errors (void)
81 gcc_assert (suppress_errors
> 0);
86 /* Determine terminal width (for trimming source lines in output). */
89 gfc_get_terminal_width (void)
91 return isatty (STDERR_FILENO
) ? get_terminal_width () : INT_MAX
;
95 /* Per-file error initialization. */
98 gfc_error_init_1 (void)
100 terminal_width
= gfc_get_terminal_width ();
101 gfc_buffer_error (false);
105 /* Set the flag for buffering errors or not. */
108 gfc_buffer_error (bool flag
)
114 /* Add a single character to the error buffer or output depending on
120 /* FIXME: Unused function to be removed in a subsequent patch. */
124 /* Copy a string to wherever it needs to go. */
127 error_string (const char *p
)
134 /* Print a formatted integer to the error buffer or output. */
139 error_uinteger (unsigned long int i
)
141 char *p
, int_buf
[IBUF_LEN
];
143 p
= int_buf
+ IBUF_LEN
- 1;
155 error_string (p
+ 1);
159 error_integer (long int i
)
165 u
= (unsigned long int) -i
;
176 gfc_widechar_display_length (gfc_char_t c
)
178 if (gfc_wide_is_printable (c
) || c
== '\t')
179 /* Printable ASCII character, or tabulation (output as a space). */
181 else if (c
< ((gfc_char_t
) 1 << 8))
182 /* Displayed as \x?? */
184 else if (c
< ((gfc_char_t
) 1 << 16))
185 /* Displayed as \u???? */
188 /* Displayed as \U???????? */
193 /* Length of the ASCII representation of the wide string, escaping wide
194 characters as print_wide_char_into_buffer() does. */
197 gfc_wide_display_length (const gfc_char_t
*str
)
201 for (i
= 0, len
= 0; str
[i
]; i
++)
202 len
+= gfc_widechar_display_length (str
[i
]);
208 print_wide_char_into_buffer (gfc_char_t c
, char *buf
)
210 static const char xdigit
[16] = { '0', '1', '2', '3', '4', '5', '6',
211 '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
213 if (gfc_wide_is_printable (c
) || c
== '\t')
216 /* Tabulation is output as a space. */
217 buf
[0] = (unsigned char) (c
== '\t' ? ' ' : c
);
220 else if (c
< ((gfc_char_t
) 1 << 8))
223 buf
[3] = xdigit
[c
& 0x0F];
225 buf
[2] = xdigit
[c
& 0x0F];
231 else if (c
< ((gfc_char_t
) 1 << 16))
234 buf
[5] = xdigit
[c
& 0x0F];
236 buf
[4] = xdigit
[c
& 0x0F];
238 buf
[3] = xdigit
[c
& 0x0F];
240 buf
[2] = xdigit
[c
& 0x0F];
249 buf
[9] = xdigit
[c
& 0x0F];
251 buf
[8] = xdigit
[c
& 0x0F];
253 buf
[7] = xdigit
[c
& 0x0F];
255 buf
[6] = xdigit
[c
& 0x0F];
257 buf
[5] = xdigit
[c
& 0x0F];
259 buf
[4] = xdigit
[c
& 0x0F];
261 buf
[3] = xdigit
[c
& 0x0F];
263 buf
[2] = xdigit
[c
& 0x0F];
271 static char wide_char_print_buffer
[11];
274 gfc_print_wide_char (gfc_char_t c
)
276 print_wide_char_into_buffer (c
, wide_char_print_buffer
);
277 return wide_char_print_buffer
;
281 /* Show the file, where it was included, and the source line, give a
282 locus. Calls error_printf() recursively, but the recursion is at
283 most one level deep. */
285 static void error_printf (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
288 show_locus (locus
*loc
, int c1
, int c2
)
295 /* TODO: Either limit the total length and number of included files
296 displayed or add buffering of arbitrary number of characters in
299 /* Write out the error header line, giving the source file and error
300 location (in GNU standard "[file]:[line].[column]:" format),
301 followed by an "included by" stack and a blank line. This header
302 format is matched by a testsuite parser defined in
303 lib/gfortran-dg.exp. */
308 error_string (f
->filename
);
311 error_integer (LOCATION_LINE (lb
->location
));
313 if ((c1
> 0) || (c2
> 0))
319 if ((c1
> 0) && (c2
> 0))
330 i
= f
->inclusion_line
;
333 if (f
== NULL
) break;
335 error_printf (" Included at %s:%d:", f
->filename
, i
);
340 /* Calculate an appropriate horizontal offset of the source line in
341 order to get the error locus within the visible portion of the
342 line. Note that if the margin of 5 here is changed, the
343 corresponding margin of 10 in show_loci should be changed. */
347 /* If the two loci would appear in the same column, we shift
348 '2' one column to the right, so as to print '12' rather than
349 just '1'. We do this here so it will be accounted for in the
350 margin calculations. */
355 cmax
= (c1
< c2
) ? c2
: c1
;
356 if (cmax
> terminal_width
- 5)
357 offset
= cmax
- terminal_width
+ 5;
359 /* Show the line itself, taking care not to print more than what can
360 show up on the terminal. Tabs are converted to spaces, and
361 nonprintable characters are converted to a "\xNN" sequence. */
363 p
= &(lb
->line
[offset
]);
364 i
= gfc_wide_display_length (p
);
365 if (i
> terminal_width
)
366 i
= terminal_width
- 1;
370 static char buffer
[11];
371 i
-= print_wide_char_into_buffer (*p
++, buffer
);
372 error_string (buffer
);
377 /* Show the '1' and/or '2' corresponding to the column of the error
378 locus. Note that a value of -1 for c1 or c2 will simply cause
379 the relevant number not to be printed. */
385 p
= &(lb
->line
[offset
]);
386 for (i
= 0; i
< cmax
; i
++)
389 spaces
= gfc_widechar_display_length (*p
++);
392 error_char ('1'), spaces
--;
394 error_char ('2'), spaces
--;
396 for (j
= 0; j
< spaces
; j
++)
410 /* As part of printing an error, we show the source lines that caused
411 the problem. We show at least one, and possibly two loci; the two
412 loci may or may not be on the same source line. */
415 show_loci (locus
*l1
, locus
*l2
)
419 if (l1
== NULL
|| l1
->lb
== NULL
)
421 error_printf ("<During initialization>\n");
425 /* While calculating parameters for printing the loci, we consider possible
426 reasons for printing one per line. If appropriate, print the loci
427 individually; otherwise we print them both on the same line. */
429 c1
= l1
->nextc
- l1
->lb
->line
;
432 show_locus (l1
, c1
, -1);
436 c2
= l2
->nextc
- l2
->lb
->line
;
443 /* Note that the margin value of 10 here needs to be less than the
444 margin of 5 used in the calculation of offset in show_locus. */
446 if (l1
->lb
!= l2
->lb
|| m
> terminal_width
- 10)
448 show_locus (l1
, c1
, -1);
449 show_locus (l2
, -1, c2
);
453 show_locus (l1
, c1
, c2
);
459 /* Workhorse for the error printing subroutines. This subroutine is
460 inspired by g77's error handling and is similar to printf() with
461 the following %-codes:
463 %c Character, %d or %i Integer, %s String, %% Percent
464 %L Takes locus argument
465 %C Current locus (no argument)
467 If a locus pointer is given, the actual source line is printed out
468 and the column is indicated. Since we want the error message at
469 the bottom of any source file information, we must scan the
470 argument list twice -- once to determine whether the loci are
471 present and record this for printing, and once to print the error
472 message after and loci have been printed. A maximum of two locus
473 arguments are permitted.
475 This function is also called (recursively) by show_locus in the
476 case of included files; however, as show_locus does not resupply
477 any loci, the recursion is at most one level deep. */
481 static void ATTRIBUTE_GCC_GFC(2,0)
482 error_print (const char *type
, const char *format0
, va_list argp
)
484 enum { TYPE_CURRENTLOC
, TYPE_LOCUS
, TYPE_INTEGER
, TYPE_UINTEGER
,
485 TYPE_LONGINT
, TYPE_ULONGINT
, TYPE_CHAR
, TYPE_STRING
,
494 unsigned int uintval
;
496 unsigned long int ulongintval
;
498 const char * stringval
;
500 } arg
[MAX_ARGS
], spec
[MAX_ARGS
];
501 /* spec is the array of specifiers, in the same order as they
502 appear in the format string. arg is the array of arguments,
503 in the same order as they appear in the va_list. */
506 int i
, n
, have_l1
, pos
, maxpos
;
507 locus
*l1
, *l2
, *loc
;
510 loc
= l1
= l2
= NULL
;
519 for (i
= 0; i
< MAX_ARGS
; i
++)
521 arg
[i
].type
= NOTYPE
;
525 /* First parse the format string for position specifiers. */
538 if (ISDIGIT (*format
))
540 /* This is a position specifier. For example, the number
541 12 in the format string "%12$d", which specifies the third
542 argument of the va_list, formatted in %d format.
543 For details, see "man 3 printf". */
544 pos
= atoi(format
) - 1;
545 gcc_assert (pos
>= 0);
546 while (ISDIGIT(*format
))
548 gcc_assert (*format
== '$');
562 arg
[pos
].type
= TYPE_CURRENTLOC
;
566 arg
[pos
].type
= TYPE_LOCUS
;
571 arg
[pos
].type
= TYPE_INTEGER
;
575 arg
[pos
].type
= TYPE_UINTEGER
;
581 arg
[pos
].type
= TYPE_ULONGINT
;
582 else if (c
== 'i' || c
== 'd')
583 arg
[pos
].type
= TYPE_LONGINT
;
589 arg
[pos
].type
= TYPE_CHAR
;
593 arg
[pos
].type
= TYPE_STRING
;
603 /* Then convert the values for each %-style argument. */
604 for (pos
= 0; pos
<= maxpos
; pos
++)
606 gcc_assert (arg
[pos
].type
!= NOTYPE
);
607 switch (arg
[pos
].type
)
609 case TYPE_CURRENTLOC
:
610 loc
= &gfc_current_locus
;
614 if (arg
[pos
].type
== TYPE_LOCUS
)
615 loc
= va_arg (argp
, locus
*);
620 arg
[pos
].u
.stringval
= "(2)";
626 arg
[pos
].u
.stringval
= "(1)";
631 arg
[pos
].u
.intval
= va_arg (argp
, int);
635 arg
[pos
].u
.uintval
= va_arg (argp
, unsigned int);
639 arg
[pos
].u
.longintval
= va_arg (argp
, long int);
643 arg
[pos
].u
.ulongintval
= va_arg (argp
, unsigned long int);
647 arg
[pos
].u
.charval
= (char) va_arg (argp
, int);
651 arg
[pos
].u
.stringval
= (const char *) va_arg (argp
, char *);
659 for (n
= 0; spec
[n
].pos
>= 0; n
++)
660 spec
[n
].u
= arg
[spec
[n
].pos
].u
;
662 /* Show the current loci if we have to. */
676 for (; *format
; format
++)
680 error_char (*format
);
685 if (ISDIGIT (*format
))
687 /* This is a position specifier. See comment above. */
688 while (ISDIGIT (*format
))
691 /* Skip over the dollar sign. */
702 error_char (spec
[n
++].u
.charval
);
706 case 'C': /* Current locus */
707 case 'L': /* Specified locus */
708 error_string (spec
[n
++].u
.stringval
);
713 error_integer (spec
[n
++].u
.intval
);
717 error_uinteger (spec
[n
++].u
.uintval
);
723 error_uinteger (spec
[n
++].u
.ulongintval
);
725 error_integer (spec
[n
++].u
.longintval
);
735 /* Wrapper for error_print(). */
738 error_printf (const char *gmsgid
, ...)
742 va_start (argp
, gmsgid
);
743 error_print ("", _(gmsgid
), argp
);
748 /* Clear any output buffered in a pretty-print output_buffer. */
751 gfc_clear_pp_buffer (output_buffer
*this_buffer
)
753 pretty_printer
*pp
= global_dc
->printer
;
754 output_buffer
*tmp_buffer
= pp
->buffer
;
755 pp
->buffer
= this_buffer
;
756 pp_clear_output_area (pp
);
757 pp
->buffer
= tmp_buffer
;
758 /* We need to reset last_location, otherwise we may skip caret lines
759 when we actually give a diagnostic. */
760 global_dc
->last_location
= UNKNOWN_LOCATION
;
764 /* This is just a helper function to avoid duplicating the logic of
768 gfc_warning (int opt
, const char *gmsgid
, va_list ap
)
773 diagnostic_info diagnostic
;
774 rich_location
rich_loc (line_table
, UNKNOWN_LOCATION
);
775 bool fatal_errors
= global_dc
->fatal_errors
;
776 pretty_printer
*pp
= global_dc
->printer
;
777 output_buffer
*tmp_buffer
= pp
->buffer
;
779 gfc_clear_pp_buffer (pp_warning_buffer
);
783 pp
->buffer
= pp_warning_buffer
;
784 global_dc
->fatal_errors
= false;
785 /* To prevent -fmax-errors= triggering. */
789 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
,
791 diagnostic
.option_index
= opt
;
792 bool ret
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
796 pp
->buffer
= tmp_buffer
;
797 global_dc
->fatal_errors
= fatal_errors
;
799 warningcount_buffered
= 0;
800 werrorcount_buffered
= 0;
801 /* Undo the above --werrorcount if not Werror, otherwise
802 werrorcount is correct already. */
805 else if (diagnostic
.kind
== DK_ERROR
)
806 ++werrorcount_buffered
;
808 ++werrorcount
, --warningcount
, ++warningcount_buffered
;
815 /* Issue a warning. */
818 gfc_warning (int opt
, const char *gmsgid
, ...)
822 va_start (argp
, gmsgid
);
823 bool ret
= gfc_warning (opt
, gmsgid
, argp
);
829 /* Whether, for a feature included in a given standard set (GFC_STD_*),
830 we should issue an error or a warning, or be quiet. */
833 gfc_notification_std (int std
)
837 warning
= ((gfc_option
.warn_std
& std
) != 0) && !inhibit_warnings
;
838 if ((gfc_option
.allow_std
& std
) != 0 && !warning
)
841 return warning
? WARNING
: ERROR
;
845 /* Possibly issue a warning/error about use of a nonstandard (or deleted)
846 feature. An error/warning will be issued if the currently selected
847 standard does not contain the requested bits. Return false if
848 an error is generated. */
851 gfc_notify_std (int std
, const char *gmsgid
, ...)
855 const char *msg
, *msg2
;
858 warning
= ((gfc_option
.warn_std
& std
) != 0) && !inhibit_warnings
;
859 if ((gfc_option
.allow_std
& std
) != 0 && !warning
)
863 return warning
? true : false;
867 case GFC_STD_F2018_DEL
:
868 msg
= _("Fortran 2018 deleted feature:");
870 case GFC_STD_F2018_OBS
:
871 msg
= _("Fortran 2018 obsolescent feature:");
874 msg
= _("Fortran 2018:");
876 case GFC_STD_F2008_TS
:
877 msg
= "TS 29113/TS 18508:";
879 case GFC_STD_F2008_OBS
:
880 msg
= _("Fortran 2008 obsolescent feature:");
883 msg
= "Fortran 2008:";
886 msg
= "Fortran 2003:";
889 msg
= _("GNU Extension:");
892 msg
= _("Legacy Extension:");
894 case GFC_STD_F95_OBS
:
895 msg
= _("Obsolescent feature:");
897 case GFC_STD_F95_DEL
:
898 msg
= _("Deleted feature:");
905 buffer
= (char *) alloca (strlen (msg
) + strlen (msg2
) + 2);
906 strcpy (buffer
, msg
);
907 strcat (buffer
, " ");
908 strcat (buffer
, msg2
);
910 va_start (argp
, gmsgid
);
912 gfc_warning (0, buffer
, argp
);
914 gfc_error_opt (0, buffer
, argp
);
917 return (warning
&& !warnings_are_errors
) ? true : false;
921 /* Called from output_format -- during diagnostic message processing
922 to handle Fortran specific format specifiers with the following meanings:
924 %C Current locus (no argument)
925 %L Takes locus argument
928 gfc_format_decoder (pretty_printer
*pp
, text_info
*text
, const char *spec
,
929 int precision
, bool wide
, bool set_locus
, bool hash
,
930 bool *quoted
, const char **buffer_ptr
)
937 static const char *result
[2] = { "(1)", "(2)" };
940 loc
= &gfc_current_locus
;
942 loc
= va_arg (*text
->args_ptr
, locus
*);
943 gcc_assert (loc
->nextc
- loc
->lb
->line
>= 0);
944 unsigned int offset
= loc
->nextc
- loc
->lb
->line
;
945 /* If location[0] != UNKNOWN_LOCATION means that we already
946 processed one of %C/%L. */
947 int loc_num
= text
->get_location (0) == UNKNOWN_LOCATION
? 0 : 1;
949 = linemap_position_for_loc_and_offset (line_table
,
952 text
->set_location (loc_num
, src_loc
, true);
953 pp_string (pp
, result
[loc_num
]);
957 /* Fall through info the middle-end decoder, as e.g. stor-layout.c
958 etc. diagnostics can use the FE printer while the FE is still
960 return default_tree_printer (pp
, text
, spec
, precision
, wide
,
961 set_locus
, hash
, quoted
, buffer_ptr
);
965 /* Return a malloc'd string describing the kind of diagnostic. The
966 caller is responsible for freeing the memory. */
968 gfc_diagnostic_build_kind_prefix (diagnostic_context
*context
,
969 const diagnostic_info
*diagnostic
)
971 static const char *const diagnostic_kind_text
[] = {
972 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (T),
973 #include "gfc-diagnostic.def"
974 #undef DEFINE_DIAGNOSTIC_KIND
977 static const char *const diagnostic_kind_color
[] = {
978 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (C),
979 #include "gfc-diagnostic.def"
980 #undef DEFINE_DIAGNOSTIC_KIND
983 gcc_assert (diagnostic
->kind
< DK_LAST_DIAGNOSTIC_KIND
);
984 const char *text
= _(diagnostic_kind_text
[diagnostic
->kind
]);
985 const char *text_cs
= "", *text_ce
= "";
986 pretty_printer
*pp
= context
->printer
;
988 if (diagnostic_kind_color
[diagnostic
->kind
])
990 text_cs
= colorize_start (pp_show_color (pp
),
991 diagnostic_kind_color
[diagnostic
->kind
]);
992 text_ce
= colorize_stop (pp_show_color (pp
));
994 return build_message_string ("%s%s:%s ", text_cs
, text
, text_ce
);
997 /* Return a malloc'd string describing a location. The caller is
998 responsible for freeing the memory. */
1000 gfc_diagnostic_build_locus_prefix (diagnostic_context
*context
,
1001 expanded_location s
)
1003 pretty_printer
*pp
= context
->printer
;
1004 const char *locus_cs
= colorize_start (pp_show_color (pp
), "locus");
1005 const char *locus_ce
= colorize_stop (pp_show_color (pp
));
1006 return (s
.file
== NULL
1007 ? build_message_string ("%s%s:%s", locus_cs
, progname
, locus_ce
)
1008 : !strcmp (s
.file
, N_("<built-in>"))
1009 ? build_message_string ("%s%s:%s", locus_cs
, s
.file
, locus_ce
)
1010 : context
->show_column
1011 ? build_message_string ("%s%s:%d:%d:%s", locus_cs
, s
.file
, s
.line
,
1013 : build_message_string ("%s%s:%d:%s", locus_cs
, s
.file
, s
.line
, locus_ce
));
1016 /* Return a malloc'd string describing two locations. The caller is
1017 responsible for freeing the memory. */
1019 gfc_diagnostic_build_locus_prefix (diagnostic_context
*context
,
1020 expanded_location s
, expanded_location s2
)
1022 pretty_printer
*pp
= context
->printer
;
1023 const char *locus_cs
= colorize_start (pp_show_color (pp
), "locus");
1024 const char *locus_ce
= colorize_stop (pp_show_color (pp
));
1026 return (s
.file
== NULL
1027 ? build_message_string ("%s%s:%s", locus_cs
, progname
, locus_ce
)
1028 : !strcmp (s
.file
, N_("<built-in>"))
1029 ? build_message_string ("%s%s:%s", locus_cs
, s
.file
, locus_ce
)
1030 : context
->show_column
1031 ? build_message_string ("%s%s:%d:%d-%d:%s", locus_cs
, s
.file
, s
.line
,
1032 MIN (s
.column
, s2
.column
),
1033 MAX (s
.column
, s2
.column
), locus_ce
)
1034 : build_message_string ("%s%s:%d:%s", locus_cs
, s
.file
, s
.line
,
1038 /* This function prints the locus (file:line:column), the diagnostic kind
1039 (Error, Warning) and (optionally) the relevant lines of code with
1040 annotation lines with '1' and/or '2' below them.
1042 With -fdiagnostic-show-caret (the default) it prints:
1044 [locus of primary range]:
1048 Error: Some error at (1)
1050 With -fno-diagnostic-show-caret or if the primary range is not
1053 [locus of primary range]: Error: Some error at (1) and (2)
1056 gfc_diagnostic_starter (diagnostic_context
*context
,
1057 diagnostic_info
*diagnostic
)
1059 char * kind_prefix
= gfc_diagnostic_build_kind_prefix (context
, diagnostic
);
1061 expanded_location s1
= diagnostic_expand_location (diagnostic
);
1062 expanded_location s2
;
1063 bool one_locus
= diagnostic
->richloc
->get_num_locations () < 2;
1064 bool same_locus
= false;
1068 s2
= diagnostic_expand_location (diagnostic
, 1);
1069 same_locus
= diagnostic_same_line (context
, s1
, s2
);
1072 char * locus_prefix
= (one_locus
|| !same_locus
)
1073 ? gfc_diagnostic_build_locus_prefix (context
, s1
)
1074 : gfc_diagnostic_build_locus_prefix (context
, s1
, s2
);
1076 if (!context
->show_caret
1077 || diagnostic_location (diagnostic
, 0) <= BUILTINS_LOCATION
1078 || diagnostic_location (diagnostic
, 0) == context
->last_location
)
1080 pp_set_prefix (context
->printer
,
1081 concat (locus_prefix
, " ", kind_prefix
, NULL
));
1082 free (locus_prefix
);
1084 if (one_locus
|| same_locus
)
1089 /* In this case, we print the previous locus and prefix as:
1091 [locus]:[prefix]: (1)
1093 and we flush with a new line before setting the new prefix. */
1094 pp_string (context
->printer
, "(1)");
1095 pp_newline (context
->printer
);
1096 locus_prefix
= gfc_diagnostic_build_locus_prefix (context
, s2
);
1097 pp_set_prefix (context
->printer
,
1098 concat (locus_prefix
, " ", kind_prefix
, NULL
));
1100 free (locus_prefix
);
1104 pp_verbatim (context
->printer
, "%s", locus_prefix
);
1105 free (locus_prefix
);
1106 /* Fortran uses an empty line between locus and caret line. */
1107 pp_newline (context
->printer
);
1108 diagnostic_show_locus (context
, diagnostic
->richloc
, diagnostic
->kind
);
1109 /* If the caret line was shown, the prefix does not contain the
1111 pp_set_prefix (context
->printer
, kind_prefix
);
1116 gfc_diagnostic_start_span (diagnostic_context
*context
,
1117 expanded_location exploc
)
1120 locus_prefix
= gfc_diagnostic_build_locus_prefix (context
, exploc
);
1121 pp_verbatim (context
->printer
, "%s", locus_prefix
);
1122 free (locus_prefix
);
1123 pp_newline (context
->printer
);
1124 /* Fortran uses an empty line between locus and caret line. */
1125 pp_newline (context
->printer
);
1130 gfc_diagnostic_finalizer (diagnostic_context
*context
,
1131 diagnostic_info
*diagnostic ATTRIBUTE_UNUSED
)
1133 pp_destroy_prefix (context
->printer
);
1134 pp_newline_and_flush (context
->printer
);
1137 /* Immediate warning (i.e. do not buffer the warning) with an explicit
1141 gfc_warning_now_at (location_t loc
, int opt
, const char *gmsgid
, ...)
1144 diagnostic_info diagnostic
;
1145 rich_location
rich_loc (line_table
, loc
);
1148 va_start (argp
, gmsgid
);
1149 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
, DK_WARNING
);
1150 diagnostic
.option_index
= opt
;
1151 ret
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1156 /* Immediate warning (i.e. do not buffer the warning). */
1159 gfc_warning_now (int opt
, const char *gmsgid
, ...)
1162 diagnostic_info diagnostic
;
1163 rich_location
rich_loc (line_table
, UNKNOWN_LOCATION
);
1166 va_start (argp
, gmsgid
);
1167 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
,
1169 diagnostic
.option_index
= opt
;
1170 ret
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1175 /* Internal warning, do not buffer. */
1178 gfc_warning_internal (int opt
, const char *gmsgid
, ...)
1181 diagnostic_info diagnostic
;
1182 rich_location
rich_loc (line_table
, UNKNOWN_LOCATION
);
1185 va_start (argp
, gmsgid
);
1186 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
,
1188 diagnostic
.option_index
= opt
;
1189 ret
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1194 /* Immediate error (i.e. do not buffer). */
1197 gfc_error_now (const char *gmsgid
, ...)
1200 diagnostic_info diagnostic
;
1201 rich_location
rich_loc (line_table
, UNKNOWN_LOCATION
);
1203 error_buffer
.flag
= true;
1205 va_start (argp
, gmsgid
);
1206 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
, DK_ERROR
);
1207 diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1212 /* Fatal error, never returns. */
1215 gfc_fatal_error (const char *gmsgid
, ...)
1218 diagnostic_info diagnostic
;
1219 rich_location
rich_loc (line_table
, UNKNOWN_LOCATION
);
1221 va_start (argp
, gmsgid
);
1222 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
, DK_FATAL
);
1223 diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1229 /* Clear the warning flag. */
1232 gfc_clear_warning (void)
1234 gfc_clear_pp_buffer (pp_warning_buffer
);
1235 warningcount_buffered
= 0;
1236 werrorcount_buffered
= 0;
1240 /* Check to see if any warnings have been saved.
1241 If so, print the warning. */
1244 gfc_warning_check (void)
1246 if (! gfc_output_buffer_empty_p (pp_warning_buffer
))
1248 pretty_printer
*pp
= global_dc
->printer
;
1249 output_buffer
*tmp_buffer
= pp
->buffer
;
1250 pp
->buffer
= pp_warning_buffer
;
1251 pp_really_flush (pp
);
1252 warningcount
+= warningcount_buffered
;
1253 werrorcount
+= werrorcount_buffered
;
1254 gcc_assert (warningcount_buffered
+ werrorcount_buffered
== 1);
1255 pp
->buffer
= tmp_buffer
;
1256 diagnostic_action_after_output (global_dc
,
1257 warningcount_buffered
1258 ? DK_WARNING
: DK_ERROR
);
1259 diagnostic_check_max_errors (global_dc
, true);
1264 /* Issue an error. */
1267 gfc_error_opt (int opt
, const char *gmsgid
, va_list ap
)
1271 bool saved_abort_on_error
= false;
1273 if (warnings_not_errors
)
1275 gfc_warning (opt
, gmsgid
, argp
);
1280 if (suppress_errors
)
1286 diagnostic_info diagnostic
;
1287 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1288 bool fatal_errors
= global_dc
->fatal_errors
;
1289 pretty_printer
*pp
= global_dc
->printer
;
1290 output_buffer
*tmp_buffer
= pp
->buffer
;
1292 gfc_clear_pp_buffer (pp_error_buffer
);
1296 /* To prevent -dH from triggering an abort on a buffered error,
1297 save abort_on_error and restore it below. */
1298 saved_abort_on_error
= global_dc
->abort_on_error
;
1299 global_dc
->abort_on_error
= false;
1300 pp
->buffer
= pp_error_buffer
;
1301 global_dc
->fatal_errors
= false;
1302 /* To prevent -fmax-errors= triggering, we decrease it before
1303 report_diagnostic increases it. */
1307 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &richloc
, DK_ERROR
);
1308 diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1312 pp
->buffer
= tmp_buffer
;
1313 global_dc
->fatal_errors
= fatal_errors
;
1314 global_dc
->abort_on_error
= saved_abort_on_error
;
1323 gfc_error_opt (int opt
, const char *gmsgid
, ...)
1326 va_start (argp
, gmsgid
);
1327 gfc_error_opt (opt
, gmsgid
, argp
);
1333 gfc_error (const char *gmsgid
, ...)
1336 va_start (argp
, gmsgid
);
1337 gfc_error_opt (0, gmsgid
, argp
);
1342 /* This shouldn't happen... but sometimes does. */
1345 gfc_internal_error (const char *gmsgid
, ...)
1349 diagnostic_info diagnostic
;
1350 rich_location
rich_loc (line_table
, UNKNOWN_LOCATION
);
1352 gfc_get_errors (&w
, &e
);
1356 va_start (argp
, gmsgid
);
1357 diagnostic_set_info (&diagnostic
, gmsgid
, &argp
, &rich_loc
, DK_ICE
);
1358 diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1365 /* Clear the error flag when we start to compile a source line. */
1368 gfc_clear_error (void)
1370 error_buffer
.flag
= 0;
1371 warnings_not_errors
= false;
1372 gfc_clear_pp_buffer (pp_error_buffer
);
1376 /* Tests the state of error_flag. */
1379 gfc_error_flag_test (void)
1381 return error_buffer
.flag
1382 || !gfc_output_buffer_empty_p (pp_error_buffer
);
1386 /* Check to see if any errors have been saved.
1387 If so, print the error. Returns the state of error_flag. */
1390 gfc_error_check (void)
1392 if (error_buffer
.flag
1393 || ! gfc_output_buffer_empty_p (pp_error_buffer
))
1395 error_buffer
.flag
= false;
1396 pretty_printer
*pp
= global_dc
->printer
;
1397 output_buffer
*tmp_buffer
= pp
->buffer
;
1398 pp
->buffer
= pp_error_buffer
;
1399 pp_really_flush (pp
);
1401 gcc_assert (gfc_output_buffer_empty_p (pp_error_buffer
));
1402 pp
->buffer
= tmp_buffer
;
1403 diagnostic_action_after_output (global_dc
, DK_ERROR
);
1404 diagnostic_check_max_errors (global_dc
, true);
1411 /* Move the text buffered from FROM to TO, then clear
1412 FROM. Independently if there was text in FROM, TO is also
1416 gfc_move_error_buffer_from_to (gfc_error_buffer
* buffer_from
,
1417 gfc_error_buffer
* buffer_to
)
1419 output_buffer
* from
= &(buffer_from
->buffer
);
1420 output_buffer
* to
= &(buffer_to
->buffer
);
1422 buffer_to
->flag
= buffer_from
->flag
;
1423 buffer_from
->flag
= false;
1425 gfc_clear_pp_buffer (to
);
1426 /* We make sure this is always buffered. */
1427 to
->flush_p
= false;
1429 if (! gfc_output_buffer_empty_p (from
))
1431 const char *str
= output_buffer_formatted_text (from
);
1432 output_buffer_append_r (to
, str
, strlen (str
));
1433 gfc_clear_pp_buffer (from
);
1437 /* Save the existing error state. */
1440 gfc_push_error (gfc_error_buffer
*err
)
1442 gfc_move_error_buffer_from_to (&error_buffer
, err
);
1446 /* Restore a previous pushed error state. */
1449 gfc_pop_error (gfc_error_buffer
*err
)
1451 gfc_move_error_buffer_from_to (err
, &error_buffer
);
1455 /* Free a pushed error state, but keep the current error state. */
1458 gfc_free_error (gfc_error_buffer
*err
)
1460 gfc_clear_pp_buffer (&(err
->buffer
));
1464 /* Report the number of warnings and errors that occurred to the caller. */
1467 gfc_get_errors (int *w
, int *e
)
1470 *w
= warningcount
+ werrorcount
;
1472 *e
= errorcount
+ sorrycount
+ werrorcount
;
1476 /* Switch errors into warnings. */
1479 gfc_errors_to_warnings (bool f
)
1481 warnings_not_errors
= f
;
1485 gfc_diagnostics_init (void)
1487 diagnostic_starter (global_dc
) = gfc_diagnostic_starter
;
1488 global_dc
->start_span
= gfc_diagnostic_start_span
;
1489 diagnostic_finalizer (global_dc
) = gfc_diagnostic_finalizer
;
1490 diagnostic_format_decoder (global_dc
) = gfc_format_decoder
;
1491 global_dc
->caret_chars
[0] = '1';
1492 global_dc
->caret_chars
[1] = '2';
1493 pp_warning_buffer
= new (XNEW (output_buffer
)) output_buffer ();
1494 pp_warning_buffer
->flush_p
= false;
1495 /* pp_error_buffer is statically allocated. This simplifies memory
1496 management when using gfc_push/pop_error. */
1497 pp_error_buffer
= &(error_buffer
.buffer
);
1498 pp_error_buffer
->flush_p
= false;
1502 gfc_diagnostics_finish (void)
1504 tree_diagnostics_defaults (global_dc
);
1505 /* We still want to use the gfc starter and finalizer, not the tree
1507 diagnostic_starter (global_dc
) = gfc_diagnostic_starter
;
1508 diagnostic_finalizer (global_dc
) = gfc_diagnostic_finalizer
;
1509 global_dc
->caret_chars
[0] = '^';
1510 global_dc
->caret_chars
[1] = '^';