selftest: split out named_temp_file from temp_source_file
[official-gcc.git] / gcc / diagnostic.c
blobb47da383fc3649dd2b02152841a93d8ffab32838
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
10 version.
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
15 for more details.
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
23 message module. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "version.h"
29 #include "demangle.h"
30 #include "intl.h"
31 #include "backtrace.h"
32 #include "diagnostic.h"
33 #include "diagnostic-color.h"
34 #include "selftest.h"
36 #ifdef HAVE_TERMIOS_H
37 # include <termios.h>
38 #endif
40 #ifdef GWINSZ_IN_SYS_IOCTL
41 # include <sys/ioctl.h>
42 #endif
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)
49 /* Prototypes. */
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. */
60 const char *progname;
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. */
68 char *
69 build_message_string (const char *msg, ...)
71 char *str;
72 va_list ap;
74 va_start (ap, msg);
75 str = xvasprintf (msg, ap);
76 va_end (ap);
78 return str;
81 /* Same as diagnostic_build_prefix, but only the source FILE is given. */
82 char *
83 file_name_as_prefix (diagnostic_context *context, const char *f)
85 const char *locus_cs
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. */
96 int
97 get_terminal_width (void)
99 const char * s = getenv ("COLUMNS");
100 if (s != NULL) {
101 int n = atoi (s);
102 if (n > 0)
103 return n;
106 #ifdef TIOCGWINSZ
107 struct winsize w;
108 w.ws_col = 0;
109 if (ioctl (0, TIOCGWINSZ, &w) == 0 && w.ws_col > 0)
110 return w.ws_col;
111 #endif
113 return INT_MAX;
116 /* Set caret_max_width to value. */
117 void
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);
125 if (value <= 0)
126 value = INT_MAX;
128 context->caret_max_width = value;
131 /* Initialize the diagnostic message outputting machinery. */
132 void
133 diagnostic_initialize (diagnostic_context *context, int n_opts)
135 int i;
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;
172 context->lock = 0;
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. */
183 void
184 diagnostic_color_init (diagnostic_context *context, int value /*= -1 */)
186 /* value == -1 is the default value. */
187 if (value < 0)
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"))
197 return;
198 value = DIAGNOSTICS_COLOR_AUTO;
200 else
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. */
209 void
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"),
219 progname);
220 /* At least one -Werror= was given. */
221 else
222 pp_verbatim (context->printer,
223 _("%s: some warnings being treated as errors"),
224 progname);
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
241 translated. */
242 void
243 diagnostic_set_info_translated (diagnostic_info *diagnostic, const char *msg,
244 va_list *args, rich_location *richloc,
245 diagnostic_t kind)
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
258 translated. */
259 void
260 diagnostic_set_info (diagnostic_info *diagnostic, const char *gmsgid,
261 va_list *args, rich_location *richloc,
262 diagnostic_t kind)
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
272 NULL
275 /* Get a color name for diagnostics of type KIND
276 Result could be NULL. */
278 const char *
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. */
287 static char *
288 diagnostic_get_location_text (diagnostic_context *context,
289 expanded_location s)
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));
295 if (s.file == NULL)
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,
303 s.column, locus_ce);
304 else
305 return build_message_string ("%s%s:%d:%s", locus_cs, s.file, s.line,
306 locus_ce);
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. */
312 char *
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
320 "must-not-happen"
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);
341 return result;
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[] =
349 "main",
350 "toplev::main",
351 "execute_one_pass",
352 "compile_file",
355 /* A callback function passed to the backtrace_full function. */
357 static int
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
364 anything. */
365 if (filename == NULL && function == NULL)
366 return 0;
368 /* Skip functions in diagnostic.c. */
369 if (*pcount == 0
370 && filename != NULL
371 && strcmp (lbasename (filename), "diagnostic.c") == 0)
372 return 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. */
376 if (*pcount >= 20)
378 /* Returning a non-zero value stops the backtrace. */
379 return 1;
381 ++*pcount;
383 char *alc = NULL;
384 if (function != NULL)
386 char *str = cplus_demangle_v3 (function,
387 (DMGL_VERBOSE | DMGL_ANSI
388 | DMGL_GNU_V3 | DMGL_PARAMS));
389 if (str != NULL)
391 alc = str;
392 function = str;
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] == '('))
401 if (alc != NULL)
402 free (alc);
403 /* Returning a non-zero value stops the backtrace. */
404 return 1;
409 fprintf (stderr, "0x%lx %s\n\t%s:%d\n",
410 (unsigned long) pc,
411 function == NULL ? "???" : function,
412 filename == NULL ? "???" : filename,
413 lineno);
415 if (alc != NULL)
416 free (alc);
418 return 0;
421 /* A callback function passed to the backtrace_full function. This is
422 called if backtrace_full has an error. */
424 static void
425 bt_err_callback (void *data ATTRIBUTE_UNUSED, const char *msg, int errnum)
427 if (errnum < 0)
429 /* This means that no debug info was available. Just quietly
430 skip printing backtrace info. */
431 return;
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. */
439 void
440 diagnostic_action_after_output (diagnostic_context *context,
441 diagnostic_t diag_kind)
443 switch (diag_kind)
445 case DK_DEBUG:
446 case DK_NOTE:
447 case DK_ANACHRONISM:
448 case DK_WARNING:
449 break;
451 case DK_ERROR:
452 case DK_SORRY:
453 if (context->abort_on_error)
454 real_abort ();
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))
467 fnotice (stderr,
468 "compilation terminated due to -fmax-errors=%u.\n",
469 context->max_errors);
470 diagnostic_finish (context);
471 exit (FATAL_EXIT_CODE);
473 break;
475 case DK_ICE:
476 case DK_ICE_NOBT:
478 struct backtrace_state *state = NULL;
479 if (diag_kind == DK_ICE)
480 state = backtrace_create_state (NULL, 0, bt_err_callback, NULL);
481 int count = 0;
482 if (state != NULL)
483 backtrace_full (state, 2, bt_callback, bt_err_callback,
484 (void *) &count);
486 if (context->abort_on_error)
487 real_abort ();
489 fnotice (stderr, "Please submit a full bug report,\n"
490 "with preprocessed source if appropriate.\n");
491 if (count > 0)
492 fnotice (stderr,
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);
500 case DK_FATAL:
501 if (context->abort_on_error)
502 real_abort ();
503 diagnostic_finish (context);
504 fnotice (stderr, "compilation terminated.\n");
505 exit (FATAL_EXIT_CODE);
507 default:
508 gcc_unreachable ();
512 void
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)
524 return;
526 linemap_resolve_location (line_table, where,
527 LRK_MACRO_DEFINITION_LOCATION,
528 &map);
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",
539 LINEMAP_FILE (map),
540 LAST_SOURCE_LINE (map), LAST_SOURCE_COLUMN (map));
541 else
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);
558 void
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,
564 diagnostic));
567 void
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);
577 void
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
589 diagnostics. */
590 diagnostic_t
591 diagnostic_classify_diagnostic (diagnostic_context *context,
592 int option_index,
593 diagnostic_t new_kind,
594 location_t where)
596 diagnostic_t old_kind;
598 if (option_index < 0
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*
606 the pragmas were. */
607 if (where != UNKNOWN_LOCATION)
609 int i;
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;
625 break;
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 ++;
637 else
638 context->classify_diagnostic[option_index] = new_kind;
640 return old_kind;
643 /* Save all diagnostic classifications in a stack. */
644 void
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. */
653 void
654 diagnostic_pop_diagnostics (diagnostic_context *context, location_t where)
656 int jump_to;
657 int i;
659 if (context->n_push)
660 jump_to = context->push_list [-- context->n_push];
661 else
662 jump_to = 0;
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. */
677 static void
678 print_escaped_string (pretty_printer *pp, const char *text)
680 gcc_assert (pp);
681 gcc_assert (text);
683 pp_character (pp, '"');
684 for (const char *ch = text; *ch; ch++)
686 switch (*ch)
688 case '\\':
689 /* Escape backslash as two backslashes. */
690 pp_string (pp, "\\\\");
691 break;
692 case '\t':
693 /* Escape tab as "\t". */
694 pp_string (pp, "\\t");
695 break;
696 case '\n':
697 /* Escape newline as "\n". */
698 pp_string (pp, "\\n");
699 break;
700 case '"':
701 /* Escape doublequotes as \". */
702 pp_string (pp, "\\\"");
703 break;
704 default:
705 if (ISPRINT (*ch))
706 pp_character (pp, *ch);
707 else
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);
713 break;
716 pp_character (pp, '"');
719 /* Implementation of -fdiagnostics-parseable-fixits. Print a
720 machine-parseable version of all fixits in RICHLOC to PP. */
722 static void
723 print_parseable_fixits (pretty_printer *pp, rich_location *richloc)
725 gcc_assert (pp);
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);
745 else
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 ());
759 break;
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 ());
767 break;
769 default:
770 gcc_unreachable ();
772 pp_newline (pp);
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. */
783 bool
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))
795 return false;
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)
805 return false;
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);
815 else
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
822 -Wno-error=*. */
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
835 -Wno-foo option. */
836 if (! context->option_enabled (diagnostic->option_index,
837 context->option_state))
838 return false;
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
847 (line_table,
848 context->classification_history[i].location,
849 location))
851 if (context->classification_history[i].kind == (int) DK_POP)
853 i = context->classification_history[i].option;
854 continue;
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;
863 break;
868 /* This tests if the user provided the appropriate -Werror=foo
869 option. */
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)
878 return false;
881 context->lock++;
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
887 abort_on_error. */
888 if (!CHECKING_P
889 && (diagnostic_kind_count (context, DK_ERROR) > 0
890 || diagnostic_kind_count (context, DK_SORRY) > 0)
891 && !context->abort_on_error)
893 expanded_location s
894 = expand_location (diagnostic_location (diagnostic));
895 fnotice (stderr, "%s:%d: confused by earlier errors, bailing out\n",
896 s.file, s.line);
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);
906 else
907 ++diagnostic_kind_count (context, diagnostic->kind);
909 saved_format_spec = diagnostic->message.format_spec;
910 if (context->show_option_requested)
912 char *option_text;
914 option_text = context->option_name (context, diagnostic->option_index,
915 orig_diag_kind, diagnostic->kind);
917 if (option_text)
919 const char *cs
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,
925 " ",
926 "[", cs, option_text, ce, "]",
927 NULL));
928 free (option_text);
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;
946 context->lock--;
948 return true;
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'. */
956 const char *
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]))
965 p += 3;
967 while (q[0] == '.' && q[1] == '.' && IS_DIR_SEPARATOR (q[2]))
968 q += 3;
970 /* Now skip any parts the two filenames have in common. */
971 while (*p == *q && *p != 0 && *q != 0)
972 p++, q++;
974 /* Now go backwards until the previous directory separator. */
975 while (p > name && !IS_DIR_SEPARATOR (p[-1]))
976 p--;
978 return p;
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. */
986 void
987 verbatim (const char *gmsgid, ...)
989 text_info text;
990 va_list ap;
992 va_start (ap, gmsgid);
993 text.err_no = errno;
994 text.args_ptr = &ap;
995 text.format_spec = _(gmsgid);
996 text.x_data = NULL;
997 pp_format_verbatim (global_dc->printer, &text);
998 pp_newline_and_flush (global_dc->printer);
999 va_end (ap);
1002 /* Add a note with text GMSGID and with LOCATION to the diagnostic CONTEXT. */
1003 void
1004 diagnostic_append_note (diagnostic_context *context,
1005 location_t location,
1006 const char * gmsgid, ...)
1008 diagnostic_info diagnostic;
1009 va_list ap;
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)
1017 va_end (ap);
1018 return;
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);
1028 va_end (ap);
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. */
1035 static bool
1036 diagnostic_impl (rich_location *richloc, int opt,
1037 const char *gmsgid,
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);
1047 else
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
1057 defined below. */
1058 static bool
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);
1074 bool
1075 emit_diagnostic (diagnostic_t kind, location_t location, int opt,
1076 const char *gmsgid, ...)
1078 va_list ap;
1079 va_start (ap, gmsgid);
1080 rich_location richloc (line_table, location);
1081 bool ret = diagnostic_impl (&richloc, opt, gmsgid, &ap, kind);
1082 va_end (ap);
1083 return ret;
1086 /* An informative note at LOCATION. Use this for additional details on an error
1087 message. */
1088 void
1089 inform (location_t location, const char *gmsgid, ...)
1091 va_list ap;
1092 va_start (ap, gmsgid);
1093 rich_location richloc (line_table, location);
1094 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_NOTE);
1095 va_end (ap);
1098 /* Same as "inform", but at RICHLOC. */
1099 void
1100 inform_at_rich_loc (rich_location *richloc, const char *gmsgid, ...)
1102 va_list ap;
1103 va_start (ap, gmsgid);
1104 diagnostic_impl (richloc, -1, gmsgid, &ap, DK_NOTE);
1105 va_end (ap);
1108 /* An informative note at LOCATION. Use this for additional details on an
1109 error message. */
1110 void
1111 inform_n (location_t location, int n, const char *singular_gmsgid,
1112 const char *plural_gmsgid, ...)
1114 va_list ap;
1115 va_start (ap, plural_gmsgid);
1116 diagnostic_n_impl (location, -1, n, singular_gmsgid, plural_gmsgid,
1117 &ap, DK_NOTE);
1118 va_end (ap);
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. */
1124 bool
1125 warning (int opt, const char *gmsgid, ...)
1127 va_list ap;
1128 va_start (ap, gmsgid);
1129 rich_location richloc (line_table, input_location);
1130 bool ret = diagnostic_impl (&richloc, opt, gmsgid, &ap, DK_WARNING);
1131 va_end (ap);
1132 return ret;
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. */
1139 bool
1140 warning_at (location_t location, int opt, const char *gmsgid, ...)
1142 va_list ap;
1143 va_start (ap, gmsgid);
1144 rich_location richloc (line_table, location);
1145 bool ret = diagnostic_impl (&richloc, opt, gmsgid, &ap, DK_WARNING);
1146 va_end (ap);
1147 return ret;
1150 /* Same as warning at, but using RICHLOC. */
1152 bool
1153 warning_at_rich_loc (rich_location *richloc, int opt, const char *gmsgid, ...)
1155 va_list ap;
1156 va_start (ap, gmsgid);
1157 bool ret = diagnostic_impl (richloc, opt, gmsgid, &ap, DK_WARNING);
1158 va_end (ap);
1159 return ret;
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. */
1166 bool
1167 warning_n (location_t location, int opt, int n, const char *singular_gmsgid,
1168 const char *plural_gmsgid, ...)
1170 va_list ap;
1171 va_start (ap, plural_gmsgid);
1172 bool ret = diagnostic_n_impl (location, opt, n,
1173 singular_gmsgid, plural_gmsgid,
1174 &ap, DK_WARNING);
1175 va_end (ap);
1176 return ret;
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. */
1192 bool
1193 pedwarn (location_t location, int opt, const char *gmsgid, ...)
1195 va_list ap;
1196 va_start (ap, gmsgid);
1197 rich_location richloc (line_table, location);
1198 bool ret = diagnostic_impl (&richloc, opt, gmsgid, &ap, DK_PEDWARN);
1199 va_end (ap);
1200 return ret;
1203 /* Same as pedwarn, but using RICHLOC. */
1205 bool
1206 pedwarn_at_rich_loc (rich_location *richloc, int opt, const char *gmsgid, ...)
1208 va_list ap;
1209 va_start (ap, gmsgid);
1210 bool ret = diagnostic_impl (richloc, opt, gmsgid, &ap, DK_PEDWARN);
1211 va_end (ap);
1212 return ret;
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. */
1222 bool
1223 permerror (location_t location, const char *gmsgid, ...)
1225 va_list ap;
1226 va_start (ap, gmsgid);
1227 rich_location richloc (line_table, location);
1228 bool ret = diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_PERMERROR);
1229 va_end (ap);
1230 return ret;
1233 /* Same as "permerror", but at RICHLOC. */
1235 bool
1236 permerror_at_rich_loc (rich_location *richloc, const char *gmsgid, ...)
1238 va_list ap;
1239 va_start (ap, gmsgid);
1240 bool ret = diagnostic_impl (richloc, -1, gmsgid, &ap, DK_PERMERROR);
1241 va_end (ap);
1242 return ret;
1245 /* A hard error: the code is definitely ill-formed, and an object file
1246 will not be produced. */
1247 void
1248 error (const char *gmsgid, ...)
1250 va_list ap;
1251 va_start (ap, gmsgid);
1252 rich_location richloc (line_table, input_location);
1253 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_ERROR);
1254 va_end (ap);
1257 /* A hard error: the code is definitely ill-formed, and an object file
1258 will not be produced. */
1259 void
1260 error_n (location_t location, int n, const char *singular_gmsgid,
1261 const char *plural_gmsgid, ...)
1263 va_list ap;
1264 va_start (ap, plural_gmsgid);
1265 diagnostic_n_impl (location, -1, n, singular_gmsgid, plural_gmsgid,
1266 &ap, DK_ERROR);
1267 va_end (ap);
1270 /* Same as above, but use location LOC instead of input_location. */
1271 void
1272 error_at (location_t loc, const char *gmsgid, ...)
1274 va_list ap;
1275 va_start (ap, gmsgid);
1276 rich_location richloc (line_table, loc);
1277 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_ERROR);
1278 va_end (ap);
1281 /* Same as above, but use RICH_LOC. */
1283 void
1284 error_at_rich_loc (rich_location *richloc, const char *gmsgid, ...)
1286 va_list ap;
1287 va_start (ap, gmsgid);
1288 diagnostic_impl (richloc, -1, gmsgid, &ap, DK_ERROR);
1289 va_end (ap);
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. */
1295 void
1296 sorry (const char *gmsgid, ...)
1298 va_list ap;
1299 va_start (ap, gmsgid);
1300 rich_location richloc (line_table, input_location);
1301 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_SORRY);
1302 va_end (ap);
1305 /* Return true if an error or a "sorry" has been seen. Various
1306 processing is disabled after errors. */
1307 bool
1308 seen_error (void)
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. */
1316 void
1317 fatal_error (location_t loc, const char *gmsgid, ...)
1319 va_list ap;
1320 va_start (ap, gmsgid);
1321 rich_location richloc (line_table, loc);
1322 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_FATAL);
1323 va_end (ap);
1325 gcc_unreachable ();
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. */
1332 void
1333 internal_error (const char *gmsgid, ...)
1335 va_list ap;
1336 va_start (ap, gmsgid);
1337 rich_location richloc (line_table, input_location);
1338 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_ICE);
1339 va_end (ap);
1341 gcc_unreachable ();
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
1346 somewhere else. */
1347 void
1348 internal_error_no_backtrace (const char *gmsgid, ...)
1350 va_list ap;
1351 va_start (ap, gmsgid);
1352 rich_location richloc (line_table, input_location);
1353 diagnostic_impl (&richloc, -1, gmsgid, &ap, DK_ICE_NOBT);
1354 va_end (ap);
1356 gcc_unreachable ();
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. */
1364 void
1365 fnotice (FILE *file, const char *cmsgid, ...)
1367 va_list ap;
1369 va_start (ap, cmsgid);
1370 vfprintf (file, _(cmsgid), ap);
1371 va_end (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. */
1379 static void
1380 error_recursion (diagnostic_context *context)
1382 if (context->lock < 3)
1383 pp_newline_and_flush (context->printer);
1385 fnotice (stderr,
1386 "Internal compiler error: Error reporting routines re-entered.\n");
1388 /* Call diagnostic_action_after_output to get the "please submit a bug
1389 report" message. */
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. */
1394 real_abort ();
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. */
1401 void
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. */
1410 #undef abort
1411 static void
1412 real_abort (void)
1414 abort ();
1417 #if CHECKING_P
1419 namespace selftest {
1421 /* Helper function for test_print_escaped_string. */
1423 static void
1424 assert_print_escaped_string (const location &loc, const char *expected_output,
1425 const char *input)
1427 pretty_printer pp;
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. */
1437 static void
1438 test_print_escaped_string ()
1440 /* Empty 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: */
1447 /* Backslash. */
1448 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\\\after\"",
1449 "before\\after");
1450 /* Tab. */
1451 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\tafter\"",
1452 "before\tafter");
1453 /* Newline. */
1454 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\nafter\"",
1455 "before\nafter");
1456 /* Double quote. */
1457 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\\"after\"",
1458 "before\"after");
1460 /* Non-printable characters: BEL: '\a': 0x07 */
1461 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\007after\"",
1462 "before\aafter");
1463 /* Non-printable characters: vertical tab: '\v': 0x0b */
1464 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\013after\"",
1465 "before\vafter");
1468 /* Tests of print_parseable_fixits. */
1470 /* Verify that print_parseable_fixits emits the empty string if there
1471 are no fixits. */
1473 static void
1474 test_print_parseable_fixits_none ()
1476 pretty_printer pp;
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. */
1486 static void
1487 test_print_parseable_fixits_insert ()
1489 pretty_printer pp;
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. */
1506 static void
1507 test_print_parseable_fixits_remove ()
1509 pretty_printer pp;
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);
1515 source_range where;
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. */
1528 static void
1529 test_print_parseable_fixits_replace ()
1531 pretty_printer pp;
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);
1537 source_range where;
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. */
1549 void
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 */