1 /* Language-independent diagnostic subroutines for the GNU Compiler Collection
2 Copyright (C) 1999-2016 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
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/>. */
22 /* This file implements the language independent aspect of diagnostic
27 #include "coretypes.h"
31 #include "backtrace.h"
32 #include "diagnostic.h"
33 #include "diagnostic-color.h"
40 #ifdef GWINSZ_IN_SYS_IOCTL
41 # include <sys/ioctl.h>
44 #define pedantic_warning_kind(DC) \
45 ((DC)->pedantic_errors ? DK_ERROR : DK_WARNING)
46 #define permissive_error_kind(DC) ((DC)->permissive ? DK_WARNING : DK_ERROR)
47 #define permissive_error_option(DC) ((DC)->opt_permissive)
50 static bool diagnostic_impl (rich_location
*, int, const char *,
51 va_list *, diagnostic_t
) ATTRIBUTE_GCC_DIAG(3,0);
52 static bool diagnostic_n_impl (location_t
, int, int, const char *,
53 const char *, va_list *,
54 diagnostic_t
) ATTRIBUTE_GCC_DIAG(5,0);
55 static void error_recursion (diagnostic_context
*) ATTRIBUTE_NORETURN
;
56 static void real_abort (void) ATTRIBUTE_NORETURN
;
58 /* Name of program invoked, sans directories. */
62 /* A diagnostic_context surrogate for stderr. */
63 static diagnostic_context global_diagnostic_context
;
64 diagnostic_context
*global_dc
= &global_diagnostic_context
;
66 /* Return a malloc'd string containing MSG formatted a la printf. The
67 caller is responsible for freeing the memory. */
69 build_message_string (const char *msg
, ...)
75 str
= xvasprintf (msg
, ap
);
81 /* Same as diagnostic_build_prefix, but only the source FILE is given. */
83 file_name_as_prefix (diagnostic_context
*context
, const char *f
)
86 = colorize_start (pp_show_color (context
->printer
), "locus");
87 const char *locus_ce
= colorize_stop (pp_show_color (context
->printer
));
88 return build_message_string ("%s%s:%s ", locus_cs
, f
, locus_ce
);
93 /* Return the value of the getenv("COLUMNS") as an integer. If the
94 value is not set to a positive integer, use ioctl to get the
95 terminal width. If it fails, return INT_MAX. */
97 get_terminal_width (void)
99 const char * s
= getenv ("COLUMNS");
109 if (ioctl (0, TIOCGWINSZ
, &w
) == 0 && w
.ws_col
> 0)
116 /* Set caret_max_width to value. */
118 diagnostic_set_caret_max_width (diagnostic_context
*context
, int value
)
120 /* One minus to account for the leading empty space. */
121 value
= value
? value
- 1
122 : (isatty (fileno (pp_buffer (context
->printer
)->stream
))
123 ? get_terminal_width () - 1: INT_MAX
);
128 context
->caret_max_width
= value
;
131 /* Initialize the diagnostic message outputting machinery. */
133 diagnostic_initialize (diagnostic_context
*context
, int n_opts
)
137 /* Allocate a basic pretty-printer. Clients will replace this a
138 much more elaborated pretty-printer if they wish. */
139 context
->printer
= XNEW (pretty_printer
);
140 new (context
->printer
) pretty_printer ();
142 memset (context
->diagnostic_count
, 0, sizeof context
->diagnostic_count
);
143 context
->warning_as_error_requested
= false;
144 context
->n_opts
= n_opts
;
145 context
->classify_diagnostic
= XNEWVEC (diagnostic_t
, n_opts
);
146 for (i
= 0; i
< n_opts
; i
++)
147 context
->classify_diagnostic
[i
] = DK_UNSPECIFIED
;
148 context
->show_caret
= false;
149 diagnostic_set_caret_max_width (context
, pp_line_cutoff (context
->printer
));
150 for (i
= 0; i
< rich_location::MAX_RANGES
; i
++)
151 context
->caret_chars
[i
] = '^';
152 context
->show_option_requested
= false;
153 context
->abort_on_error
= false;
154 context
->show_column
= false;
155 context
->pedantic_errors
= false;
156 context
->permissive
= false;
157 context
->opt_permissive
= 0;
158 context
->fatal_errors
= false;
159 context
->dc_inhibit_warnings
= false;
160 context
->dc_warn_system_headers
= false;
161 context
->max_errors
= 0;
162 context
->internal_error
= NULL
;
163 diagnostic_starter (context
) = default_diagnostic_starter
;
164 context
->start_span
= default_diagnostic_start_span_fn
;
165 diagnostic_finalizer (context
) = default_diagnostic_finalizer
;
166 context
->option_enabled
= NULL
;
167 context
->option_state
= NULL
;
168 context
->option_name
= NULL
;
169 context
->last_location
= UNKNOWN_LOCATION
;
170 context
->last_module
= 0;
171 context
->x_data
= NULL
;
173 context
->inhibit_notes_p
= false;
174 context
->colorize_source_p
= false;
175 context
->show_ruler_p
= false;
176 context
->parseable_fixits_p
= false;
179 /* Maybe initialize the color support. We require clients to do this
180 explicitly, since most clients don't want color. When called
181 without a VALUE, it initializes with DIAGNOSTICS_COLOR_DEFAULT. */
184 diagnostic_color_init (diagnostic_context
*context
, int value
/*= -1 */)
186 /* value == -1 is the default value. */
189 /* If DIAGNOSTICS_COLOR_DEFAULT is -1, default to
190 -fdiagnostics-color=auto if GCC_COLORS is in the environment,
191 otherwise default to -fdiagnostics-color=never, for other
192 values default to that
193 -fdiagnostics-color={never,auto,always}. */
194 if (DIAGNOSTICS_COLOR_DEFAULT
== -1)
196 if (!getenv ("GCC_COLORS"))
198 value
= DIAGNOSTICS_COLOR_AUTO
;
201 value
= DIAGNOSTICS_COLOR_DEFAULT
;
203 pp_show_color (context
->printer
)
204 = colorize_init ((diagnostic_color_rule_t
) value
);
207 /* Do any cleaning up required after the last diagnostic is emitted. */
210 diagnostic_finish (diagnostic_context
*context
)
212 /* Some of the errors may actually have been warnings. */
213 if (diagnostic_kind_count (context
, DK_WERROR
))
215 /* -Werror was given. */
216 if (context
->warning_as_error_requested
)
217 pp_verbatim (context
->printer
,
218 _("%s: all warnings being treated as errors"),
220 /* At least one -Werror= was given. */
222 pp_verbatim (context
->printer
,
223 _("%s: some warnings being treated as errors"),
225 pp_newline_and_flush (context
->printer
);
228 diagnostic_file_cache_fini ();
230 XDELETEVEC (context
->classify_diagnostic
);
231 context
->classify_diagnostic
= NULL
;
233 /* diagnostic_initialize allocates context->printer using XNEW
234 and placement-new. */
235 context
->printer
->~pretty_printer ();
236 XDELETE (context
->printer
);
237 context
->printer
= NULL
;
240 /* Initialize DIAGNOSTIC, where the message MSG has already been
243 diagnostic_set_info_translated (diagnostic_info
*diagnostic
, const char *msg
,
244 va_list *args
, rich_location
*richloc
,
247 gcc_assert (richloc
);
248 diagnostic
->message
.err_no
= errno
;
249 diagnostic
->message
.args_ptr
= args
;
250 diagnostic
->message
.format_spec
= msg
;
251 diagnostic
->message
.m_richloc
= richloc
;
252 diagnostic
->richloc
= richloc
;
253 diagnostic
->kind
= kind
;
254 diagnostic
->option_index
= 0;
257 /* Initialize DIAGNOSTIC, where the message GMSGID has not yet been
260 diagnostic_set_info (diagnostic_info
*diagnostic
, const char *gmsgid
,
261 va_list *args
, rich_location
*richloc
,
264 gcc_assert (richloc
);
265 diagnostic_set_info_translated (diagnostic
, _(gmsgid
), args
, richloc
, kind
);
268 static const char *const diagnostic_kind_color
[] = {
269 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (C),
270 #include "diagnostic.def"
271 #undef DEFINE_DIAGNOSTIC_KIND
275 /* Get a color name for diagnostics of type KIND
276 Result could be NULL. */
279 diagnostic_get_color_for_kind (diagnostic_t kind
)
281 return diagnostic_kind_color
[kind
];
284 /* Return a malloc'd string describing a location e.g. "foo.c:42:10".
285 The caller is responsible for freeing the memory. */
288 diagnostic_get_location_text (diagnostic_context
*context
,
291 pretty_printer
*pp
= context
->printer
;
292 const char *locus_cs
= colorize_start (pp_show_color (pp
), "locus");
293 const char *locus_ce
= colorize_stop (pp_show_color (pp
));
296 return build_message_string ("%s%s:%s", locus_cs
, progname
, locus_ce
);
298 if (!strcmp (s
.file
, N_("<built-in>")))
299 return build_message_string ("%s%s:%s", locus_cs
, s
.file
, locus_ce
);
301 if (context
->show_column
)
302 return build_message_string ("%s%s:%d:%d:%s", locus_cs
, s
.file
, s
.line
,
305 return build_message_string ("%s%s:%d:%s", locus_cs
, s
.file
, s
.line
,
309 /* Return a malloc'd string describing a location and the severity of the
310 diagnostic, e.g. "foo.c:42:10: error: ". The caller is responsible for
311 freeing the memory. */
313 diagnostic_build_prefix (diagnostic_context
*context
,
314 const diagnostic_info
*diagnostic
)
316 static const char *const diagnostic_kind_text
[] = {
317 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (T),
318 #include "diagnostic.def"
319 #undef DEFINE_DIAGNOSTIC_KIND
322 gcc_assert (diagnostic
->kind
< DK_LAST_DIAGNOSTIC_KIND
);
324 const char *text
= _(diagnostic_kind_text
[diagnostic
->kind
]);
325 const char *text_cs
= "", *text_ce
= "";
326 pretty_printer
*pp
= context
->printer
;
328 if (diagnostic_kind_color
[diagnostic
->kind
])
330 text_cs
= colorize_start (pp_show_color (pp
),
331 diagnostic_kind_color
[diagnostic
->kind
]);
332 text_ce
= colorize_stop (pp_show_color (pp
));
335 expanded_location s
= diagnostic_expand_location (diagnostic
);
336 char *location_text
= diagnostic_get_location_text (context
, s
);
338 char *result
= build_message_string ("%s %s%s%s", location_text
,
339 text_cs
, text
, text_ce
);
340 free (location_text
);
344 /* Functions at which to stop the backtrace print. It's not
345 particularly helpful to print the callers of these functions. */
347 static const char * const bt_stop
[] =
355 /* A callback function passed to the backtrace_full function. */
358 bt_callback (void *data
, uintptr_t pc
, const char *filename
, int lineno
,
359 const char *function
)
361 int *pcount
= (int *) data
;
363 /* If we don't have any useful information, don't print
365 if (filename
== NULL
&& function
== NULL
)
368 /* Skip functions in diagnostic.c. */
371 && strcmp (lbasename (filename
), "diagnostic.c") == 0)
374 /* Print up to 20 functions. We could make this a --param, but
375 since this is only for debugging just use a constant for now. */
378 /* Returning a non-zero value stops the backtrace. */
384 if (function
!= NULL
)
386 char *str
= cplus_demangle_v3 (function
,
387 (DMGL_VERBOSE
| DMGL_ANSI
388 | DMGL_GNU_V3
| DMGL_PARAMS
));
395 for (size_t i
= 0; i
< ARRAY_SIZE (bt_stop
); ++i
)
397 size_t len
= strlen (bt_stop
[i
]);
398 if (strncmp (function
, bt_stop
[i
], len
) == 0
399 && (function
[len
] == '\0' || function
[len
] == '('))
403 /* Returning a non-zero value stops the backtrace. */
409 fprintf (stderr
, "0x%lx %s\n\t%s:%d\n",
411 function
== NULL
? "???" : function
,
412 filename
== NULL
? "???" : filename
,
421 /* A callback function passed to the backtrace_full function. This is
422 called if backtrace_full has an error. */
425 bt_err_callback (void *data ATTRIBUTE_UNUSED
, const char *msg
, int errnum
)
429 /* This means that no debug info was available. Just quietly
430 skip printing backtrace info. */
433 fprintf (stderr
, "%s%s%s\n", msg
, errnum
== 0 ? "" : ": ",
434 errnum
== 0 ? "" : xstrerror (errnum
));
437 /* Take any action which is expected to happen after the diagnostic
438 is written out. This function does not always return. */
440 diagnostic_action_after_output (diagnostic_context
*context
,
441 diagnostic_t diag_kind
)
453 if (context
->abort_on_error
)
455 if (context
->fatal_errors
)
457 fnotice (stderr
, "compilation terminated due to -Wfatal-errors.\n");
458 diagnostic_finish (context
);
459 exit (FATAL_EXIT_CODE
);
461 if (context
->max_errors
!= 0
462 && ((unsigned) (diagnostic_kind_count (context
, DK_ERROR
)
463 + diagnostic_kind_count (context
, DK_SORRY
)
464 + diagnostic_kind_count (context
, DK_WERROR
))
465 >= context
->max_errors
))
468 "compilation terminated due to -fmax-errors=%u.\n",
469 context
->max_errors
);
470 diagnostic_finish (context
);
471 exit (FATAL_EXIT_CODE
);
478 struct backtrace_state
*state
= NULL
;
479 if (diag_kind
== DK_ICE
)
480 state
= backtrace_create_state (NULL
, 0, bt_err_callback
, NULL
);
483 backtrace_full (state
, 2, bt_callback
, bt_err_callback
,
486 if (context
->abort_on_error
)
489 fnotice (stderr
, "Please submit a full bug report,\n"
490 "with preprocessed source if appropriate.\n");
493 ("Please include the complete backtrace "
494 "with any bug report.\n"));
495 fnotice (stderr
, "See %s for instructions.\n", bug_report_url
);
497 exit (ICE_EXIT_CODE
);
501 if (context
->abort_on_error
)
503 diagnostic_finish (context
);
504 fnotice (stderr
, "compilation terminated.\n");
505 exit (FATAL_EXIT_CODE
);
513 diagnostic_report_current_module (diagnostic_context
*context
, location_t where
)
515 const line_map_ordinary
*map
= NULL
;
517 if (pp_needs_newline (context
->printer
))
519 pp_newline (context
->printer
);
520 pp_needs_newline (context
->printer
) = false;
523 if (where
<= BUILTINS_LOCATION
)
526 linemap_resolve_location (line_table
, where
,
527 LRK_MACRO_DEFINITION_LOCATION
,
530 if (map
&& diagnostic_last_module_changed (context
, map
))
532 diagnostic_set_last_module (context
, map
);
533 if (! MAIN_FILE_P (map
))
535 map
= INCLUDED_FROM (line_table
, map
);
536 if (context
->show_column
)
537 pp_verbatim (context
->printer
,
538 "In file included from %r%s:%d:%d%R", "locus",
540 LAST_SOURCE_LINE (map
), LAST_SOURCE_COLUMN (map
));
542 pp_verbatim (context
->printer
,
543 "In file included from %r%s:%d%R", "locus",
544 LINEMAP_FILE (map
), LAST_SOURCE_LINE (map
));
545 while (! MAIN_FILE_P (map
))
547 map
= INCLUDED_FROM (line_table
, map
);
548 pp_verbatim (context
->printer
,
549 ",\n from %r%s:%d%R", "locus",
550 LINEMAP_FILE (map
), LAST_SOURCE_LINE (map
));
552 pp_verbatim (context
->printer
, ":");
553 pp_newline (context
->printer
);
559 default_diagnostic_starter (diagnostic_context
*context
,
560 diagnostic_info
*diagnostic
)
562 diagnostic_report_current_module (context
, diagnostic_location (diagnostic
));
563 pp_set_prefix (context
->printer
, diagnostic_build_prefix (context
,
568 default_diagnostic_start_span_fn (diagnostic_context
*context
,
569 expanded_location exploc
)
571 pp_set_prefix (context
->printer
,
572 diagnostic_get_location_text (context
, exploc
));
573 pp_string (context
->printer
, "");
574 pp_newline (context
->printer
);
578 default_diagnostic_finalizer (diagnostic_context
*context
,
579 diagnostic_info
*diagnostic
)
581 diagnostic_show_locus (context
, diagnostic
->richloc
, diagnostic
->kind
);
582 pp_destroy_prefix (context
->printer
);
583 pp_flush (context
->printer
);
586 /* Interface to specify diagnostic kind overrides. Returns the
587 previous setting, or DK_UNSPECIFIED if the parameters are out of
588 range. If OPTION_INDEX is zero, the new setting is for all the
591 diagnostic_classify_diagnostic (diagnostic_context
*context
,
593 diagnostic_t new_kind
,
596 diagnostic_t old_kind
;
599 || option_index
>= context
->n_opts
600 || new_kind
>= DK_LAST_DIAGNOSTIC_KIND
)
601 return DK_UNSPECIFIED
;
603 old_kind
= context
->classify_diagnostic
[option_index
];
605 /* Handle pragmas separately, since we need to keep track of *where*
607 if (where
!= UNKNOWN_LOCATION
)
611 /* Record the command-line status, so we can reset it back on DK_POP. */
612 if (old_kind
== DK_UNSPECIFIED
)
614 old_kind
= !context
->option_enabled (option_index
,
615 context
->option_state
)
616 ? DK_IGNORED
: (context
->warning_as_error_requested
617 ? DK_ERROR
: DK_WARNING
);
618 context
->classify_diagnostic
[option_index
] = old_kind
;
621 for (i
= context
->n_classification_history
- 1; i
>= 0; i
--)
622 if (context
->classification_history
[i
].option
== option_index
)
624 old_kind
= context
->classification_history
[i
].kind
;
628 i
= context
->n_classification_history
;
629 context
->classification_history
=
630 (diagnostic_classification_change_t
*) xrealloc (context
->classification_history
, (i
+ 1)
631 * sizeof (diagnostic_classification_change_t
));
632 context
->classification_history
[i
].location
= where
;
633 context
->classification_history
[i
].option
= option_index
;
634 context
->classification_history
[i
].kind
= new_kind
;
635 context
->n_classification_history
++;
638 context
->classify_diagnostic
[option_index
] = new_kind
;
643 /* Save all diagnostic classifications in a stack. */
645 diagnostic_push_diagnostics (diagnostic_context
*context
, location_t where ATTRIBUTE_UNUSED
)
647 context
->push_list
= (int *) xrealloc (context
->push_list
, (context
->n_push
+ 1) * sizeof (int));
648 context
->push_list
[context
->n_push
++] = context
->n_classification_history
;
651 /* Restore the topmost classification set off the stack. If the stack
652 is empty, revert to the state based on command line parameters. */
654 diagnostic_pop_diagnostics (diagnostic_context
*context
, location_t where
)
660 jump_to
= context
->push_list
[-- context
->n_push
];
664 i
= context
->n_classification_history
;
665 context
->classification_history
=
666 (diagnostic_classification_change_t
*) xrealloc (context
->classification_history
, (i
+ 1)
667 * sizeof (diagnostic_classification_change_t
));
668 context
->classification_history
[i
].location
= where
;
669 context
->classification_history
[i
].option
= jump_to
;
670 context
->classification_history
[i
].kind
= DK_POP
;
671 context
->n_classification_history
++;
674 /* Helper function for print_parseable_fixits. Print TEXT to PP, obeying the
675 escaping rules for -fdiagnostics-parseable-fixits. */
678 print_escaped_string (pretty_printer
*pp
, const char *text
)
683 pp_character (pp
, '"');
684 for (const char *ch
= text
; *ch
; ch
++)
689 /* Escape backslash as two backslashes. */
690 pp_string (pp
, "\\\\");
693 /* Escape tab as "\t". */
694 pp_string (pp
, "\\t");
697 /* Escape newline as "\n". */
698 pp_string (pp
, "\\n");
701 /* Escape doublequotes as \". */
702 pp_string (pp
, "\\\"");
706 pp_character (pp
, *ch
);
708 /* Use octal for non-printable chars. */
710 unsigned char c
= (*ch
& 0xff);
711 pp_printf (pp
, "\\%o%o%o", (c
/ 64), (c
/ 8) & 007, c
& 007);
716 pp_character (pp
, '"');
719 /* Implementation of -fdiagnostics-parseable-fixits. Print a
720 machine-parseable version of all fixits in RICHLOC to PP. */
723 print_parseable_fixits (pretty_printer
*pp
, rich_location
*richloc
)
726 gcc_assert (richloc
);
728 for (unsigned i
= 0; i
< richloc
->get_num_fixit_hints (); i
++)
730 const fixit_hint
*hint
= richloc
->get_fixit_hint (i
);
731 source_location start_loc
= hint
->get_start_loc ();
732 expanded_location start_exploc
= expand_location (start_loc
);
733 pp_string (pp
, "fix-it:");
734 print_escaped_string (pp
, start_exploc
.file
);
735 source_location end_loc
;
737 /* For compatibility with clang, print as a half-open range. */
738 if (hint
->maybe_get_end_loc (&end_loc
))
740 expanded_location end_exploc
= expand_location (end_loc
);
741 pp_printf (pp
, ":{%i:%i-%i:%i}:",
742 start_exploc
.line
, start_exploc
.column
,
743 end_exploc
.line
, end_exploc
.column
+ 1);
747 pp_printf (pp
, ":{%i:%i-%i:%i}:",
748 start_exploc
.line
, start_exploc
.column
,
749 start_exploc
.line
, start_exploc
.column
);
751 switch (hint
->get_kind ())
753 case fixit_hint::INSERT
:
755 const fixit_insert
*insert
756 = static_cast <const fixit_insert
*> (hint
);
757 print_escaped_string (pp
, insert
->get_string ());
761 case fixit_hint::REPLACE
:
763 const fixit_replace
*replace
764 = static_cast <const fixit_replace
*> (hint
);
765 print_escaped_string (pp
, replace
->get_string ());
776 /* Report a diagnostic message (an error or a warning) as specified by
777 DC. This function is *the* subroutine in terms of which front-ends
778 should implement their specific diagnostic handling modules. The
779 front-end independent format specifiers are exactly those described
780 in the documentation of output_format.
781 Return true if a diagnostic was printed, false otherwise. */
784 diagnostic_report_diagnostic (diagnostic_context
*context
,
785 diagnostic_info
*diagnostic
)
787 location_t location
= diagnostic_location (diagnostic
);
788 diagnostic_t orig_diag_kind
= diagnostic
->kind
;
789 const char *saved_format_spec
;
791 /* Give preference to being able to inhibit warnings, before they
792 get reclassified to something else. */
793 if ((diagnostic
->kind
== DK_WARNING
|| diagnostic
->kind
== DK_PEDWARN
)
794 && !diagnostic_report_warnings_p (context
, location
))
797 if (diagnostic
->kind
== DK_PEDWARN
)
799 diagnostic
->kind
= pedantic_warning_kind (context
);
800 /* We do this to avoid giving the message for -pedantic-errors. */
801 orig_diag_kind
= diagnostic
->kind
;
804 if (diagnostic
->kind
== DK_NOTE
&& context
->inhibit_notes_p
)
807 if (context
->lock
> 0)
809 /* If we're reporting an ICE in the middle of some other error,
810 try to flush out the previous error, then let this one
811 through. Don't do this more than once. */
812 if ((diagnostic
->kind
== DK_ICE
|| diagnostic
->kind
== DK_ICE_NOBT
)
813 && context
->lock
== 1)
814 pp_newline_and_flush (context
->printer
);
816 error_recursion (context
);
819 /* If the user requested that warnings be treated as errors, so be
820 it. Note that we do this before the next block so that
821 individual warnings can be overridden back to warnings with
823 if (context
->warning_as_error_requested
824 && diagnostic
->kind
== DK_WARNING
)
826 diagnostic
->kind
= DK_ERROR
;
829 if (diagnostic
->option_index
830 && diagnostic
->option_index
!= permissive_error_option (context
))
832 diagnostic_t diag_class
= DK_UNSPECIFIED
;
834 /* This tests if the user provided the appropriate -Wfoo or
836 if (! context
->option_enabled (diagnostic
->option_index
,
837 context
->option_state
))
840 /* This tests for #pragma diagnostic changes. */
841 if (context
->n_classification_history
> 0)
843 /* FIXME: Stupid search. Optimize later. */
844 for (int i
= context
->n_classification_history
- 1; i
>= 0; i
--)
846 if (linemap_location_before_p
848 context
->classification_history
[i
].location
,
851 if (context
->classification_history
[i
].kind
== (int) DK_POP
)
853 i
= context
->classification_history
[i
].option
;
856 int option
= context
->classification_history
[i
].option
;
857 /* The option 0 is for all the diagnostics. */
858 if (option
== 0 || option
== diagnostic
->option_index
)
860 diag_class
= context
->classification_history
[i
].kind
;
861 if (diag_class
!= DK_UNSPECIFIED
)
862 diagnostic
->kind
= diag_class
;
868 /* This tests if the user provided the appropriate -Werror=foo
870 if (diag_class
== DK_UNSPECIFIED
871 && context
->classify_diagnostic
[diagnostic
->option_index
] != DK_UNSPECIFIED
)
873 diagnostic
->kind
= context
->classify_diagnostic
[diagnostic
->option_index
];
875 /* This allows for future extensions, like temporarily disabling
876 warnings for ranges of source code. */
877 if (diagnostic
->kind
== DK_IGNORED
)
883 if (diagnostic
->kind
== DK_ICE
|| diagnostic
->kind
== DK_ICE_NOBT
)
885 /* When not checking, ICEs are converted to fatal errors when an
886 error has already occurred. This is counteracted by
889 && (diagnostic_kind_count (context
, DK_ERROR
) > 0
890 || diagnostic_kind_count (context
, DK_SORRY
) > 0)
891 && !context
->abort_on_error
)
894 = expand_location (diagnostic_location (diagnostic
));
895 fnotice (stderr
, "%s:%d: confused by earlier errors, bailing out\n",
897 exit (ICE_EXIT_CODE
);
899 if (context
->internal_error
)
900 (*context
->internal_error
) (context
,
901 diagnostic
->message
.format_spec
,
902 diagnostic
->message
.args_ptr
);
904 if (diagnostic
->kind
== DK_ERROR
&& orig_diag_kind
== DK_WARNING
)
905 ++diagnostic_kind_count (context
, DK_WERROR
);
907 ++diagnostic_kind_count (context
, diagnostic
->kind
);
909 saved_format_spec
= diagnostic
->message
.format_spec
;
910 if (context
->show_option_requested
)
914 option_text
= context
->option_name (context
, diagnostic
->option_index
,
915 orig_diag_kind
, diagnostic
->kind
);
920 = colorize_start (pp_show_color (context
->printer
),
921 diagnostic_kind_color
[diagnostic
->kind
]);
922 const char *ce
= colorize_stop (pp_show_color (context
->printer
));
923 diagnostic
->message
.format_spec
924 = ACONCAT ((diagnostic
->message
.format_spec
,
926 "[", cs
, option_text
, ce
, "]",
931 diagnostic
->message
.x_data
= &diagnostic
->x_data
;
932 diagnostic
->x_data
= NULL
;
933 pp_format (context
->printer
, &diagnostic
->message
);
934 (*diagnostic_starter (context
)) (context
, diagnostic
);
935 pp_output_formatted_text (context
->printer
);
936 (*diagnostic_finalizer (context
)) (context
, diagnostic
);
937 if (context
->parseable_fixits_p
)
939 print_parseable_fixits (context
->printer
, diagnostic
->richloc
);
940 pp_flush (context
->printer
);
942 diagnostic_action_after_output (context
, diagnostic
->kind
);
943 diagnostic
->message
.format_spec
= saved_format_spec
;
944 diagnostic
->x_data
= NULL
;
951 /* Given a partial pathname as input, return another pathname that
952 shares no directory elements with the pathname of __FILE__. This
953 is used by fancy_abort() to print `Internal compiler error in expr.c'
954 instead of `Internal compiler error in ../../GCC/gcc/expr.c'. */
957 trim_filename (const char *name
)
959 static const char this_file
[] = __FILE__
;
960 const char *p
= name
, *q
= this_file
;
962 /* First skip any "../" in each filename. This allows us to give a proper
963 reference to a file in a subdirectory. */
964 while (p
[0] == '.' && p
[1] == '.' && IS_DIR_SEPARATOR (p
[2]))
967 while (q
[0] == '.' && q
[1] == '.' && IS_DIR_SEPARATOR (q
[2]))
970 /* Now skip any parts the two filenames have in common. */
971 while (*p
== *q
&& *p
!= 0 && *q
!= 0)
974 /* Now go backwards until the previous directory separator. */
975 while (p
> name
&& !IS_DIR_SEPARATOR (p
[-1]))
981 /* Standard error reporting routines in increasing order of severity.
982 All of these take arguments like printf. */
984 /* Text to be emitted verbatim to the error message stream; this
985 produces no prefix and disables line-wrapping. Use rarely. */
987 verbatim (const char *gmsgid
, ...)
992 va_start (ap
, gmsgid
);
995 text
.format_spec
= _(gmsgid
);
997 pp_format_verbatim (global_dc
->printer
, &text
);
998 pp_newline_and_flush (global_dc
->printer
);
1002 /* Add a note with text GMSGID and with LOCATION to the diagnostic CONTEXT. */
1004 diagnostic_append_note (diagnostic_context
*context
,
1005 location_t location
,
1006 const char * gmsgid
, ...)
1008 diagnostic_info diagnostic
;
1010 const char *saved_prefix
;
1011 rich_location
richloc (line_table
, location
);
1013 va_start (ap
, gmsgid
);
1014 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
, DK_NOTE
);
1015 if (context
->inhibit_notes_p
)
1020 saved_prefix
= pp_get_prefix (context
->printer
);
1021 pp_set_prefix (context
->printer
,
1022 diagnostic_build_prefix (context
, &diagnostic
));
1023 pp_format (context
->printer
, &diagnostic
.message
);
1024 pp_output_formatted_text (context
->printer
);
1025 pp_destroy_prefix (context
->printer
);
1026 pp_set_prefix (context
->printer
, saved_prefix
);
1027 diagnostic_show_locus (context
, &richloc
, DK_NOTE
);
1031 /* Implement emit_diagnostic, inform, inform_at_rich_loc, warning, warning_at,
1032 warning_at_rich_loc, pedwarn, permerror, permerror_at_rich_loc, error,
1033 error_at, error_at_rich_loc, sorry, fatal_error, internal_error, and
1034 internal_error_no_backtrace, as documented and defined below. */
1036 diagnostic_impl (rich_location
*richloc
, int opt
,
1038 va_list *ap
, diagnostic_t kind
)
1040 diagnostic_info diagnostic
;
1041 if (kind
== DK_PERMERROR
)
1043 diagnostic_set_info (&diagnostic
, gmsgid
, ap
, richloc
,
1044 permissive_error_kind (global_dc
));
1045 diagnostic
.option_index
= permissive_error_option (global_dc
);
1049 diagnostic_set_info (&diagnostic
, gmsgid
, ap
, richloc
, kind
);
1050 if (kind
== DK_WARNING
|| kind
== DK_PEDWARN
)
1051 diagnostic
.option_index
= opt
;
1053 return report_diagnostic (&diagnostic
);
1056 /* Implement inform_n, warning_n, and error_n, as documented and
1059 diagnostic_n_impl (location_t location
, int opt
, int n
,
1060 const char *singular_gmsgid
,
1061 const char *plural_gmsgid
,
1062 va_list *ap
, diagnostic_t kind
)
1064 diagnostic_info diagnostic
;
1065 rich_location
richloc (line_table
, location
);
1066 diagnostic_set_info_translated (&diagnostic
,
1067 ngettext (singular_gmsgid
, plural_gmsgid
, n
),
1068 ap
, &richloc
, kind
);
1069 if (kind
== DK_WARNING
)
1070 diagnostic
.option_index
= opt
;
1071 return report_diagnostic (&diagnostic
);
1075 emit_diagnostic (diagnostic_t kind
, location_t location
, int opt
,
1076 const char *gmsgid
, ...)
1079 va_start (ap
, gmsgid
);
1080 rich_location
richloc (line_table
, location
);
1081 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, kind
);
1086 /* An informative note at LOCATION. Use this for additional details on an error
1089 inform (location_t location
, const char *gmsgid
, ...)
1092 va_start (ap
, gmsgid
);
1093 rich_location
richloc (line_table
, location
);
1094 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_NOTE
);
1098 /* Same as "inform", but at RICHLOC. */
1100 inform_at_rich_loc (rich_location
*richloc
, const char *gmsgid
, ...)
1103 va_start (ap
, gmsgid
);
1104 diagnostic_impl (richloc
, -1, gmsgid
, &ap
, DK_NOTE
);
1108 /* An informative note at LOCATION. Use this for additional details on an
1111 inform_n (location_t location
, int n
, const char *singular_gmsgid
,
1112 const char *plural_gmsgid
, ...)
1115 va_start (ap
, plural_gmsgid
);
1116 diagnostic_n_impl (location
, -1, n
, singular_gmsgid
, plural_gmsgid
,
1121 /* A warning at INPUT_LOCATION. Use this for code which is correct according
1122 to the relevant language specification but is likely to be buggy anyway.
1123 Returns true if the warning was printed, false if it was inhibited. */
1125 warning (int opt
, const char *gmsgid
, ...)
1128 va_start (ap
, gmsgid
);
1129 rich_location
richloc (line_table
, input_location
);
1130 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, DK_WARNING
);
1135 /* A warning at LOCATION. Use this for code which is correct according to the
1136 relevant language specification but is likely to be buggy anyway.
1137 Returns true if the warning was printed, false if it was inhibited. */
1140 warning_at (location_t location
, int opt
, const char *gmsgid
, ...)
1143 va_start (ap
, gmsgid
);
1144 rich_location
richloc (line_table
, location
);
1145 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, DK_WARNING
);
1150 /* Same as warning at, but using RICHLOC. */
1153 warning_at_rich_loc (rich_location
*richloc
, int opt
, const char *gmsgid
, ...)
1156 va_start (ap
, gmsgid
);
1157 bool ret
= diagnostic_impl (richloc
, opt
, gmsgid
, &ap
, DK_WARNING
);
1162 /* A warning at LOCATION. Use this for code which is correct according to the
1163 relevant language specification but is likely to be buggy anyway.
1164 Returns true if the warning was printed, false if it was inhibited. */
1167 warning_n (location_t location
, int opt
, int n
, const char *singular_gmsgid
,
1168 const char *plural_gmsgid
, ...)
1171 va_start (ap
, plural_gmsgid
);
1172 bool ret
= diagnostic_n_impl (location
, opt
, n
,
1173 singular_gmsgid
, plural_gmsgid
,
1179 /* A "pedantic" warning at LOCATION: issues a warning unless
1180 -pedantic-errors was given on the command line, in which case it
1181 issues an error. Use this for diagnostics required by the relevant
1182 language standard, if you have chosen not to make them errors.
1184 Note that these diagnostics are issued independent of the setting
1185 of the -Wpedantic command-line switch. To get a warning enabled
1186 only with that switch, use either "if (pedantic) pedwarn
1187 (OPT_Wpedantic,...)" or just "pedwarn (OPT_Wpedantic,..)". To get a
1188 pedwarn independently of the -Wpedantic switch use "pedwarn (0,...)".
1190 Returns true if the warning was printed, false if it was inhibited. */
1193 pedwarn (location_t location
, int opt
, const char *gmsgid
, ...)
1196 va_start (ap
, gmsgid
);
1197 rich_location
richloc (line_table
, location
);
1198 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, DK_PEDWARN
);
1203 /* Same as pedwarn, but using RICHLOC. */
1206 pedwarn_at_rich_loc (rich_location
*richloc
, int opt
, const char *gmsgid
, ...)
1209 va_start (ap
, gmsgid
);
1210 bool ret
= diagnostic_impl (richloc
, opt
, gmsgid
, &ap
, DK_PEDWARN
);
1215 /* A "permissive" error at LOCATION: issues an error unless
1216 -fpermissive was given on the command line, in which case it issues
1217 a warning. Use this for things that really should be errors but we
1218 want to support legacy code.
1220 Returns true if the warning was printed, false if it was inhibited. */
1223 permerror (location_t location
, const char *gmsgid
, ...)
1226 va_start (ap
, gmsgid
);
1227 rich_location
richloc (line_table
, location
);
1228 bool ret
= diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_PERMERROR
);
1233 /* Same as "permerror", but at RICHLOC. */
1236 permerror_at_rich_loc (rich_location
*richloc
, const char *gmsgid
, ...)
1239 va_start (ap
, gmsgid
);
1240 bool ret
= diagnostic_impl (richloc
, -1, gmsgid
, &ap
, DK_PERMERROR
);
1245 /* A hard error: the code is definitely ill-formed, and an object file
1246 will not be produced. */
1248 error (const char *gmsgid
, ...)
1251 va_start (ap
, gmsgid
);
1252 rich_location
richloc (line_table
, input_location
);
1253 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ERROR
);
1257 /* A hard error: the code is definitely ill-formed, and an object file
1258 will not be produced. */
1260 error_n (location_t location
, int n
, const char *singular_gmsgid
,
1261 const char *plural_gmsgid
, ...)
1264 va_start (ap
, plural_gmsgid
);
1265 diagnostic_n_impl (location
, -1, n
, singular_gmsgid
, plural_gmsgid
,
1270 /* Same as above, but use location LOC instead of input_location. */
1272 error_at (location_t loc
, const char *gmsgid
, ...)
1275 va_start (ap
, gmsgid
);
1276 rich_location
richloc (line_table
, loc
);
1277 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ERROR
);
1281 /* Same as above, but use RICH_LOC. */
1284 error_at_rich_loc (rich_location
*richloc
, const char *gmsgid
, ...)
1287 va_start (ap
, gmsgid
);
1288 diagnostic_impl (richloc
, -1, gmsgid
, &ap
, DK_ERROR
);
1292 /* "Sorry, not implemented." Use for a language feature which is
1293 required by the relevant specification but not implemented by GCC.
1294 An object file will not be produced. */
1296 sorry (const char *gmsgid
, ...)
1299 va_start (ap
, gmsgid
);
1300 rich_location
richloc (line_table
, input_location
);
1301 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_SORRY
);
1305 /* Return true if an error or a "sorry" has been seen. Various
1306 processing is disabled after errors. */
1310 return errorcount
|| sorrycount
;
1313 /* An error which is severe enough that we make no attempt to
1314 continue. Do not use this for internal consistency checks; that's
1315 internal_error. Use of this function should be rare. */
1317 fatal_error (location_t loc
, const char *gmsgid
, ...)
1320 va_start (ap
, gmsgid
);
1321 rich_location
richloc (line_table
, loc
);
1322 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_FATAL
);
1328 /* An internal consistency check has failed. We make no attempt to
1329 continue. Note that unless there is debugging value to be had from
1330 a more specific message, or some other good reason, you should use
1331 abort () instead of calling this function directly. */
1333 internal_error (const char *gmsgid
, ...)
1336 va_start (ap
, gmsgid
);
1337 rich_location
richloc (line_table
, input_location
);
1338 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ICE
);
1344 /* Like internal_error, but no backtrace will be printed. Used when
1345 the internal error does not happen at the current location, but happened
1348 internal_error_no_backtrace (const char *gmsgid
, ...)
1351 va_start (ap
, gmsgid
);
1352 rich_location
richloc (line_table
, input_location
);
1353 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ICE_NOBT
);
1359 /* Special case error functions. Most are implemented in terms of the
1360 above, or should be. */
1362 /* Print a diagnostic MSGID on FILE. This is just fprintf, except it
1363 runs its second argument through gettext. */
1365 fnotice (FILE *file
, const char *cmsgid
, ...)
1369 va_start (ap
, cmsgid
);
1370 vfprintf (file
, _(cmsgid
), ap
);
1374 /* Inform the user that an error occurred while trying to report some
1375 other error. This indicates catastrophic internal inconsistencies,
1376 so give up now. But do try to flush out the previous error.
1377 This mustn't use internal_error, that will cause infinite recursion. */
1380 error_recursion (diagnostic_context
*context
)
1382 if (context
->lock
< 3)
1383 pp_newline_and_flush (context
->printer
);
1386 "Internal compiler error: Error reporting routines re-entered.\n");
1388 /* Call diagnostic_action_after_output to get the "please submit a bug
1390 diagnostic_action_after_output (context
, DK_ICE
);
1392 /* Do not use gcc_unreachable here; that goes through internal_error
1393 and therefore would cause infinite recursion. */
1397 /* Report an internal compiler error in a friendly manner. This is
1398 the function that gets called upon use of abort() in the source
1399 code generally, thanks to a special macro. */
1402 fancy_abort (const char *file
, int line
, const char *function
)
1404 internal_error ("in %s, at %s:%d", function
, trim_filename (file
), line
);
1407 /* Really call the system 'abort'. This has to go right at the end of
1408 this file, so that there are no functions after it that call abort
1409 and get the system abort instead of our macro. */
1419 namespace selftest
{
1421 /* Helper function for test_print_escaped_string. */
1424 assert_print_escaped_string (const location
&loc
, const char *expected_output
,
1428 print_escaped_string (&pp
, input
);
1429 ASSERT_STREQ_AT (loc
, expected_output
, pp_formatted_text (&pp
));
1432 #define ASSERT_PRINT_ESCAPED_STRING_STREQ(EXPECTED_OUTPUT, INPUT) \
1433 assert_print_escaped_string (SELFTEST_LOCATION, EXPECTED_OUTPUT, INPUT)
1435 /* Tests of print_escaped_string. */
1438 test_print_escaped_string ()
1441 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"\"", "");
1443 /* Non-empty string. */
1444 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"hello world\"", "hello world");
1446 /* Various things that need to be escaped: */
1448 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\\\after\"",
1451 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\tafter\"",
1454 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\nafter\"",
1457 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\\"after\"",
1460 /* Non-printable characters: BEL: '\a': 0x07 */
1461 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\007after\"",
1463 /* Non-printable characters: vertical tab: '\v': 0x0b */
1464 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\013after\"",
1468 /* Tests of print_parseable_fixits. */
1470 /* Verify that print_parseable_fixits emits the empty string if there
1474 test_print_parseable_fixits_none ()
1477 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1479 print_parseable_fixits (&pp
, &richloc
);
1480 ASSERT_STREQ ("", pp_formatted_text (&pp
));
1483 /* Verify that print_parseable_fixits does the right thing if there
1484 is an insertion fixit hint. */
1487 test_print_parseable_fixits_insert ()
1490 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1492 linemap_add (line_table
, LC_ENTER
, false, "test.c", 0);
1493 linemap_line_start (line_table
, 5, 100);
1494 linemap_add (line_table
, LC_LEAVE
, false, NULL
, 0);
1495 location_t where
= linemap_position_for_column (line_table
, 10);
1496 richloc
.add_fixit_insert (where
, "added content");
1498 print_parseable_fixits (&pp
, &richloc
);
1499 ASSERT_STREQ ("fix-it:\"test.c\":{5:10-5:10}:\"added content\"\n",
1500 pp_formatted_text (&pp
));
1503 /* Verify that print_parseable_fixits does the right thing if there
1504 is an removal fixit hint. */
1507 test_print_parseable_fixits_remove ()
1510 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1512 linemap_add (line_table
, LC_ENTER
, false, "test.c", 0);
1513 linemap_line_start (line_table
, 5, 100);
1514 linemap_add (line_table
, LC_LEAVE
, false, NULL
, 0);
1516 where
.m_start
= linemap_position_for_column (line_table
, 10);
1517 where
.m_finish
= linemap_position_for_column (line_table
, 20);
1518 richloc
.add_fixit_remove (where
);
1520 print_parseable_fixits (&pp
, &richloc
);
1521 ASSERT_STREQ ("fix-it:\"test.c\":{5:10-5:21}:\"\"\n",
1522 pp_formatted_text (&pp
));
1525 /* Verify that print_parseable_fixits does the right thing if there
1526 is an replacement fixit hint. */
1529 test_print_parseable_fixits_replace ()
1532 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1534 linemap_add (line_table
, LC_ENTER
, false, "test.c", 0);
1535 linemap_line_start (line_table
, 5, 100);
1536 linemap_add (line_table
, LC_LEAVE
, false, NULL
, 0);
1538 where
.m_start
= linemap_position_for_column (line_table
, 10);
1539 where
.m_finish
= linemap_position_for_column (line_table
, 20);
1540 richloc
.add_fixit_replace (where
, "replacement");
1542 print_parseable_fixits (&pp
, &richloc
);
1543 ASSERT_STREQ ("fix-it:\"test.c\":{5:10-5:21}:\"replacement\"\n",
1544 pp_formatted_text (&pp
));
1547 /* Run all of the selftests within this file. */
1550 diagnostic_c_tests ()
1552 test_print_escaped_string ();
1553 test_print_parseable_fixits_none ();
1554 test_print_parseable_fixits_insert ();
1555 test_print_parseable_fixits_remove ();
1556 test_print_parseable_fixits_replace ();
1559 } // namespace selftest
1561 #endif /* #if CHECKING_P */