1 /* Language-independent diagnostic subroutines for the GNU Compiler Collection
2 Copyright (C) 1999-2018 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"
34 #include "edit-context.h"
36 #include "selftest-diagnostic.h"
42 #ifdef GWINSZ_IN_SYS_IOCTL
43 # include <sys/ioctl.h>
46 #define pedantic_warning_kind(DC) \
47 ((DC)->pedantic_errors ? DK_ERROR : DK_WARNING)
48 #define permissive_error_kind(DC) ((DC)->permissive ? DK_WARNING : DK_ERROR)
49 #define permissive_error_option(DC) ((DC)->opt_permissive)
52 static bool diagnostic_impl (rich_location
*, int, const char *,
53 va_list *, diagnostic_t
) ATTRIBUTE_GCC_DIAG(3,0);
54 static bool diagnostic_n_impl (rich_location
*, int, unsigned HOST_WIDE_INT
,
55 const char *, const char *, va_list *,
56 diagnostic_t
) ATTRIBUTE_GCC_DIAG(5,0);
58 static void error_recursion (diagnostic_context
*) ATTRIBUTE_NORETURN
;
59 static void real_abort (void) ATTRIBUTE_NORETURN
;
61 /* Name of program invoked, sans directories. */
65 /* A diagnostic_context surrogate for stderr. */
66 static diagnostic_context global_diagnostic_context
;
67 diagnostic_context
*global_dc
= &global_diagnostic_context
;
69 /* Return a malloc'd string containing MSG formatted a la printf. The
70 caller is responsible for freeing the memory. */
72 build_message_string (const char *msg
, ...)
78 str
= xvasprintf (msg
, ap
);
84 /* Same as diagnostic_build_prefix, but only the source FILE is given. */
86 file_name_as_prefix (diagnostic_context
*context
, const char *f
)
89 = colorize_start (pp_show_color (context
->printer
), "locus");
90 const char *locus_ce
= colorize_stop (pp_show_color (context
->printer
));
91 return build_message_string ("%s%s:%s ", locus_cs
, f
, locus_ce
);
96 /* Return the value of the getenv("COLUMNS") as an integer. If the
97 value is not set to a positive integer, use ioctl to get the
98 terminal width. If it fails, return INT_MAX. */
100 get_terminal_width (void)
102 const char * s
= getenv ("COLUMNS");
112 if (ioctl (0, TIOCGWINSZ
, &w
) == 0 && w
.ws_col
> 0)
119 /* Set caret_max_width to value. */
121 diagnostic_set_caret_max_width (diagnostic_context
*context
, int value
)
123 /* One minus to account for the leading empty space. */
124 value
= value
? value
- 1
125 : (isatty (fileno (pp_buffer (context
->printer
)->stream
))
126 ? get_terminal_width () - 1: INT_MAX
);
131 context
->caret_max_width
= value
;
134 /* Initialize the diagnostic message outputting machinery. */
136 diagnostic_initialize (diagnostic_context
*context
, int n_opts
)
140 /* Allocate a basic pretty-printer. Clients will replace this a
141 much more elaborated pretty-printer if they wish. */
142 context
->printer
= XNEW (pretty_printer
);
143 new (context
->printer
) pretty_printer ();
145 memset (context
->diagnostic_count
, 0, sizeof context
->diagnostic_count
);
146 context
->warning_as_error_requested
= false;
147 context
->n_opts
= n_opts
;
148 context
->classify_diagnostic
= XNEWVEC (diagnostic_t
, n_opts
);
149 for (i
= 0; i
< n_opts
; i
++)
150 context
->classify_diagnostic
[i
] = DK_UNSPECIFIED
;
151 context
->show_caret
= false;
152 diagnostic_set_caret_max_width (context
, pp_line_cutoff (context
->printer
));
153 for (i
= 0; i
< rich_location::STATICALLY_ALLOCATED_RANGES
; i
++)
154 context
->caret_chars
[i
] = '^';
155 context
->show_option_requested
= false;
156 context
->abort_on_error
= false;
157 context
->show_column
= false;
158 context
->pedantic_errors
= false;
159 context
->permissive
= false;
160 context
->opt_permissive
= 0;
161 context
->fatal_errors
= false;
162 context
->dc_inhibit_warnings
= false;
163 context
->dc_warn_system_headers
= false;
164 context
->max_errors
= 0;
165 context
->internal_error
= NULL
;
166 diagnostic_starter (context
) = default_diagnostic_starter
;
167 context
->start_span
= default_diagnostic_start_span_fn
;
168 diagnostic_finalizer (context
) = default_diagnostic_finalizer
;
169 context
->option_enabled
= NULL
;
170 context
->option_state
= NULL
;
171 context
->option_name
= NULL
;
172 context
->last_location
= UNKNOWN_LOCATION
;
173 context
->last_module
= 0;
174 context
->x_data
= NULL
;
176 context
->inhibit_notes_p
= false;
177 context
->colorize_source_p
= false;
178 context
->show_labels_p
= false;
179 context
->show_line_numbers_p
= false;
180 context
->show_ruler_p
= false;
181 context
->parseable_fixits_p
= false;
182 context
->edit_context_ptr
= NULL
;
183 context
->diagnostic_group_nesting_depth
= 0;
184 context
->diagnostic_group_emission_count
= 0;
185 context
->begin_group_cb
= NULL
;
186 context
->end_group_cb
= NULL
;
189 /* Maybe initialize the color support. We require clients to do this
190 explicitly, since most clients don't want color. When called
191 without a VALUE, it initializes with DIAGNOSTICS_COLOR_DEFAULT. */
194 diagnostic_color_init (diagnostic_context
*context
, int value
/*= -1 */)
196 /* value == -1 is the default value. */
199 /* If DIAGNOSTICS_COLOR_DEFAULT is -1, default to
200 -fdiagnostics-color=auto if GCC_COLORS is in the environment,
201 otherwise default to -fdiagnostics-color=never, for other
202 values default to that
203 -fdiagnostics-color={never,auto,always}. */
204 if (DIAGNOSTICS_COLOR_DEFAULT
== -1)
206 if (!getenv ("GCC_COLORS"))
208 value
= DIAGNOSTICS_COLOR_AUTO
;
211 value
= DIAGNOSTICS_COLOR_DEFAULT
;
213 pp_show_color (context
->printer
)
214 = colorize_init ((diagnostic_color_rule_t
) value
);
217 /* Do any cleaning up required after the last diagnostic is emitted. */
220 diagnostic_finish (diagnostic_context
*context
)
222 /* Some of the errors may actually have been warnings. */
223 if (diagnostic_kind_count (context
, DK_WERROR
))
225 /* -Werror was given. */
226 if (context
->warning_as_error_requested
)
227 pp_verbatim (context
->printer
,
228 _("%s: all warnings being treated as errors"),
230 /* At least one -Werror= was given. */
232 pp_verbatim (context
->printer
,
233 _("%s: some warnings being treated as errors"),
235 pp_newline_and_flush (context
->printer
);
238 diagnostic_file_cache_fini ();
240 XDELETEVEC (context
->classify_diagnostic
);
241 context
->classify_diagnostic
= NULL
;
243 /* diagnostic_initialize allocates context->printer using XNEW
244 and placement-new. */
245 context
->printer
->~pretty_printer ();
246 XDELETE (context
->printer
);
247 context
->printer
= NULL
;
249 if (context
->edit_context_ptr
)
251 delete context
->edit_context_ptr
;
252 context
->edit_context_ptr
= NULL
;
256 /* Initialize DIAGNOSTIC, where the message MSG has already been
259 diagnostic_set_info_translated (diagnostic_info
*diagnostic
, const char *msg
,
260 va_list *args
, rich_location
*richloc
,
263 gcc_assert (richloc
);
264 diagnostic
->message
.err_no
= errno
;
265 diagnostic
->message
.args_ptr
= args
;
266 diagnostic
->message
.format_spec
= msg
;
267 diagnostic
->message
.m_richloc
= richloc
;
268 diagnostic
->richloc
= richloc
;
269 diagnostic
->kind
= kind
;
270 diagnostic
->option_index
= 0;
273 /* Initialize DIAGNOSTIC, where the message GMSGID has not yet been
276 diagnostic_set_info (diagnostic_info
*diagnostic
, const char *gmsgid
,
277 va_list *args
, rich_location
*richloc
,
280 gcc_assert (richloc
);
281 diagnostic_set_info_translated (diagnostic
, _(gmsgid
), args
, richloc
, kind
);
284 static const char *const diagnostic_kind_color
[] = {
285 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (C),
286 #include "diagnostic.def"
287 #undef DEFINE_DIAGNOSTIC_KIND
291 /* Get a color name for diagnostics of type KIND
292 Result could be NULL. */
295 diagnostic_get_color_for_kind (diagnostic_t kind
)
297 return diagnostic_kind_color
[kind
];
300 /* Return a formatted line and column ':%line:%column'. Elided if
301 zero. The result is a statically allocated buffer. */
304 maybe_line_and_column (int line
, int col
)
306 static char result
[32];
310 size_t l
= snprintf (result
, sizeof (result
),
311 col
? ":%d:%d" : ":%d", line
, col
);
312 gcc_checking_assert (l
< sizeof (result
));
319 /* Return a malloc'd string describing a location e.g. "foo.c:42:10".
320 The caller is responsible for freeing the memory. */
323 diagnostic_get_location_text (diagnostic_context
*context
,
326 pretty_printer
*pp
= context
->printer
;
327 const char *locus_cs
= colorize_start (pp_show_color (pp
), "locus");
328 const char *locus_ce
= colorize_stop (pp_show_color (pp
));
329 const char *file
= s
.file
? s
.file
: progname
;
330 int line
= strcmp (file
, N_("<built-in>")) ? s
.line
: 0;
331 int col
= context
->show_column
? s
.column
: 0;
333 const char *line_col
= maybe_line_and_column (line
, col
);
334 return build_message_string ("%s%s%s:%s", locus_cs
, file
,
338 /* Return a malloc'd string describing a location and the severity of the
339 diagnostic, e.g. "foo.c:42:10: error: ". The caller is responsible for
340 freeing the memory. */
342 diagnostic_build_prefix (diagnostic_context
*context
,
343 const diagnostic_info
*diagnostic
)
345 static const char *const diagnostic_kind_text
[] = {
346 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (T),
347 #include "diagnostic.def"
348 #undef DEFINE_DIAGNOSTIC_KIND
351 gcc_assert (diagnostic
->kind
< DK_LAST_DIAGNOSTIC_KIND
);
353 const char *text
= _(diagnostic_kind_text
[diagnostic
->kind
]);
354 const char *text_cs
= "", *text_ce
= "";
355 pretty_printer
*pp
= context
->printer
;
357 if (diagnostic_kind_color
[diagnostic
->kind
])
359 text_cs
= colorize_start (pp_show_color (pp
),
360 diagnostic_kind_color
[diagnostic
->kind
]);
361 text_ce
= colorize_stop (pp_show_color (pp
));
364 expanded_location s
= diagnostic_expand_location (diagnostic
);
365 char *location_text
= diagnostic_get_location_text (context
, s
);
367 char *result
= build_message_string ("%s %s%s%s", location_text
,
368 text_cs
, text
, text_ce
);
369 free (location_text
);
373 /* Functions at which to stop the backtrace print. It's not
374 particularly helpful to print the callers of these functions. */
376 static const char * const bt_stop
[] =
384 /* A callback function passed to the backtrace_full function. */
387 bt_callback (void *data
, uintptr_t pc
, const char *filename
, int lineno
,
388 const char *function
)
390 int *pcount
= (int *) data
;
392 /* If we don't have any useful information, don't print
394 if (filename
== NULL
&& function
== NULL
)
397 /* Skip functions in diagnostic.c. */
400 && strcmp (lbasename (filename
), "diagnostic.c") == 0)
403 /* Print up to 20 functions. We could make this a --param, but
404 since this is only for debugging just use a constant for now. */
407 /* Returning a non-zero value stops the backtrace. */
413 if (function
!= NULL
)
415 char *str
= cplus_demangle_v3 (function
,
416 (DMGL_VERBOSE
| DMGL_ANSI
417 | DMGL_GNU_V3
| DMGL_PARAMS
));
424 for (size_t i
= 0; i
< ARRAY_SIZE (bt_stop
); ++i
)
426 size_t len
= strlen (bt_stop
[i
]);
427 if (strncmp (function
, bt_stop
[i
], len
) == 0
428 && (function
[len
] == '\0' || function
[len
] == '('))
432 /* Returning a non-zero value stops the backtrace. */
438 fprintf (stderr
, "0x%lx %s\n\t%s:%d\n",
440 function
== NULL
? "???" : function
,
441 filename
== NULL
? "???" : filename
,
450 /* A callback function passed to the backtrace_full function. This is
451 called if backtrace_full has an error. */
454 bt_err_callback (void *data ATTRIBUTE_UNUSED
, const char *msg
, int errnum
)
458 /* This means that no debug info was available. Just quietly
459 skip printing backtrace info. */
462 fprintf (stderr
, "%s%s%s\n", msg
, errnum
== 0 ? "" : ": ",
463 errnum
== 0 ? "" : xstrerror (errnum
));
466 /* Check if we've met the maximum error limit, and if so fatally exit
467 with a message. CONTEXT is the context to check, and FLUSH
468 indicates whether a diagnostic_finish call is needed. */
471 diagnostic_check_max_errors (diagnostic_context
*context
, bool flush
)
473 if (!context
->max_errors
)
476 int count
= (diagnostic_kind_count (context
, DK_ERROR
)
477 + diagnostic_kind_count (context
, DK_SORRY
)
478 + diagnostic_kind_count (context
, DK_WERROR
));
480 if (count
>= context
->max_errors
)
483 "compilation terminated due to -fmax-errors=%u.\n",
484 context
->max_errors
);
486 diagnostic_finish (context
);
487 exit (FATAL_EXIT_CODE
);
491 /* Take any action which is expected to happen after the diagnostic
492 is written out. This function does not always return. */
494 diagnostic_action_after_output (diagnostic_context
*context
,
495 diagnostic_t diag_kind
)
507 if (context
->abort_on_error
)
509 if (context
->fatal_errors
)
511 fnotice (stderr
, "compilation terminated due to -Wfatal-errors.\n");
512 diagnostic_finish (context
);
513 exit (FATAL_EXIT_CODE
);
520 struct backtrace_state
*state
= NULL
;
521 if (diag_kind
== DK_ICE
)
522 state
= backtrace_create_state (NULL
, 0, bt_err_callback
, NULL
);
525 backtrace_full (state
, 2, bt_callback
, bt_err_callback
,
528 if (context
->abort_on_error
)
531 fnotice (stderr
, "Please submit a full bug report,\n"
532 "with preprocessed source if appropriate.\n");
535 ("Please include the complete backtrace "
536 "with any bug report.\n"));
537 fnotice (stderr
, "See %s for instructions.\n", bug_report_url
);
539 exit (ICE_EXIT_CODE
);
543 if (context
->abort_on_error
)
545 diagnostic_finish (context
);
546 fnotice (stderr
, "compilation terminated.\n");
547 exit (FATAL_EXIT_CODE
);
554 /* True if the last module or file in which a diagnostic was reported is
555 different from the current one. */
558 last_module_changed_p (diagnostic_context
*context
,
559 const line_map_ordinary
*map
)
561 return context
->last_module
!= map
;
564 /* Remember the current module or file as being the last one in which we
565 report a diagnostic. */
568 set_last_module (diagnostic_context
*context
, const line_map_ordinary
*map
)
570 context
->last_module
= map
;
574 diagnostic_report_current_module (diagnostic_context
*context
, location_t where
)
576 const line_map_ordinary
*map
= NULL
;
578 if (pp_needs_newline (context
->printer
))
580 pp_newline (context
->printer
);
581 pp_needs_newline (context
->printer
) = false;
584 if (where
<= BUILTINS_LOCATION
)
587 linemap_resolve_location (line_table
, where
,
588 LRK_MACRO_DEFINITION_LOCATION
,
591 if (map
&& last_module_changed_p (context
, map
))
593 set_last_module (context
, map
);
594 if (! MAIN_FILE_P (map
))
599 where
= linemap_included_from (map
);
600 map
= linemap_included_from_linemap (line_table
, map
);
602 = maybe_line_and_column (SOURCE_LINE (map
, where
),
603 first
&& context
->show_column
604 ? SOURCE_COLUMN (map
, where
) : 0);
605 static const char *const msgs
[] =
607 N_("In file included from"),
610 unsigned index
= !first
;
611 pp_verbatim (context
->printer
, "%s%s %r%s%s%R",
612 first
? "" : ",\n", _(msgs
[index
]),
613 "locus", LINEMAP_FILE (map
), line_col
);
616 while (! MAIN_FILE_P (map
));
617 pp_verbatim (context
->printer
, ":");
618 pp_newline (context
->printer
);
624 default_diagnostic_starter (diagnostic_context
*context
,
625 diagnostic_info
*diagnostic
)
627 diagnostic_report_current_module (context
, diagnostic_location (diagnostic
));
628 pp_set_prefix (context
->printer
, diagnostic_build_prefix (context
,
633 default_diagnostic_start_span_fn (diagnostic_context
*context
,
634 expanded_location exploc
)
636 char *text
= diagnostic_get_location_text (context
, exploc
);
637 pp_string (context
->printer
, text
);
639 pp_newline (context
->printer
);
643 default_diagnostic_finalizer (diagnostic_context
*context
,
644 diagnostic_info
*diagnostic
)
646 diagnostic_show_locus (context
, diagnostic
->richloc
, diagnostic
->kind
);
647 pp_destroy_prefix (context
->printer
);
648 pp_flush (context
->printer
);
651 /* Interface to specify diagnostic kind overrides. Returns the
652 previous setting, or DK_UNSPECIFIED if the parameters are out of
653 range. If OPTION_INDEX is zero, the new setting is for all the
656 diagnostic_classify_diagnostic (diagnostic_context
*context
,
658 diagnostic_t new_kind
,
661 diagnostic_t old_kind
;
664 || option_index
>= context
->n_opts
665 || new_kind
>= DK_LAST_DIAGNOSTIC_KIND
)
666 return DK_UNSPECIFIED
;
668 old_kind
= context
->classify_diagnostic
[option_index
];
670 /* Handle pragmas separately, since we need to keep track of *where*
672 if (where
!= UNKNOWN_LOCATION
)
676 /* Record the command-line status, so we can reset it back on DK_POP. */
677 if (old_kind
== DK_UNSPECIFIED
)
679 old_kind
= !context
->option_enabled (option_index
,
680 context
->option_state
)
681 ? DK_IGNORED
: (context
->warning_as_error_requested
682 ? DK_ERROR
: DK_WARNING
);
683 context
->classify_diagnostic
[option_index
] = old_kind
;
686 for (i
= context
->n_classification_history
- 1; i
>= 0; i
--)
687 if (context
->classification_history
[i
].option
== option_index
)
689 old_kind
= context
->classification_history
[i
].kind
;
693 i
= context
->n_classification_history
;
694 context
->classification_history
=
695 (diagnostic_classification_change_t
*) xrealloc (context
->classification_history
, (i
+ 1)
696 * sizeof (diagnostic_classification_change_t
));
697 context
->classification_history
[i
].location
= where
;
698 context
->classification_history
[i
].option
= option_index
;
699 context
->classification_history
[i
].kind
= new_kind
;
700 context
->n_classification_history
++;
703 context
->classify_diagnostic
[option_index
] = new_kind
;
708 /* Save all diagnostic classifications in a stack. */
710 diagnostic_push_diagnostics (diagnostic_context
*context
, location_t where ATTRIBUTE_UNUSED
)
712 context
->push_list
= (int *) xrealloc (context
->push_list
, (context
->n_push
+ 1) * sizeof (int));
713 context
->push_list
[context
->n_push
++] = context
->n_classification_history
;
716 /* Restore the topmost classification set off the stack. If the stack
717 is empty, revert to the state based on command line parameters. */
719 diagnostic_pop_diagnostics (diagnostic_context
*context
, location_t where
)
725 jump_to
= context
->push_list
[-- context
->n_push
];
729 i
= context
->n_classification_history
;
730 context
->classification_history
=
731 (diagnostic_classification_change_t
*) xrealloc (context
->classification_history
, (i
+ 1)
732 * sizeof (diagnostic_classification_change_t
));
733 context
->classification_history
[i
].location
= where
;
734 context
->classification_history
[i
].option
= jump_to
;
735 context
->classification_history
[i
].kind
= DK_POP
;
736 context
->n_classification_history
++;
739 /* Helper function for print_parseable_fixits. Print TEXT to PP, obeying the
740 escaping rules for -fdiagnostics-parseable-fixits. */
743 print_escaped_string (pretty_printer
*pp
, const char *text
)
748 pp_character (pp
, '"');
749 for (const char *ch
= text
; *ch
; ch
++)
754 /* Escape backslash as two backslashes. */
755 pp_string (pp
, "\\\\");
758 /* Escape tab as "\t". */
759 pp_string (pp
, "\\t");
762 /* Escape newline as "\n". */
763 pp_string (pp
, "\\n");
766 /* Escape doublequotes as \". */
767 pp_string (pp
, "\\\"");
771 pp_character (pp
, *ch
);
773 /* Use octal for non-printable chars. */
775 unsigned char c
= (*ch
& 0xff);
776 pp_printf (pp
, "\\%o%o%o", (c
/ 64), (c
/ 8) & 007, c
& 007);
781 pp_character (pp
, '"');
784 /* Implementation of -fdiagnostics-parseable-fixits. Print a
785 machine-parseable version of all fixits in RICHLOC to PP. */
788 print_parseable_fixits (pretty_printer
*pp
, rich_location
*richloc
)
791 gcc_assert (richloc
);
793 for (unsigned i
= 0; i
< richloc
->get_num_fixit_hints (); i
++)
795 const fixit_hint
*hint
= richloc
->get_fixit_hint (i
);
796 source_location start_loc
= hint
->get_start_loc ();
797 expanded_location start_exploc
= expand_location (start_loc
);
798 pp_string (pp
, "fix-it:");
799 print_escaped_string (pp
, start_exploc
.file
);
800 /* For compatibility with clang, print as a half-open range. */
801 source_location next_loc
= hint
->get_next_loc ();
802 expanded_location next_exploc
= expand_location (next_loc
);
803 pp_printf (pp
, ":{%i:%i-%i:%i}:",
804 start_exploc
.line
, start_exploc
.column
,
805 next_exploc
.line
, next_exploc
.column
);
806 print_escaped_string (pp
, hint
->get_string ());
811 /* Update the diag_class of DIAGNOSTIC based on its location
813 #pragma GCC diagnostic
814 directives recorded within CONTEXT.
816 Return the new diag_class of DIAGNOSTIC if it was updated, or
817 DK_UNSPECIFIED otherwise. */
820 update_effective_level_from_pragmas (diagnostic_context
*context
,
821 diagnostic_info
*diagnostic
)
823 diagnostic_t diag_class
= DK_UNSPECIFIED
;
825 if (context
->n_classification_history
> 0)
827 location_t location
= diagnostic_location (diagnostic
);
829 /* FIXME: Stupid search. Optimize later. */
830 for (int i
= context
->n_classification_history
- 1; i
>= 0; i
--)
832 if (linemap_location_before_p
834 context
->classification_history
[i
].location
,
837 if (context
->classification_history
[i
].kind
== (int) DK_POP
)
839 i
= context
->classification_history
[i
].option
;
842 int option
= context
->classification_history
[i
].option
;
843 /* The option 0 is for all the diagnostics. */
844 if (option
== 0 || option
== diagnostic
->option_index
)
846 diag_class
= context
->classification_history
[i
].kind
;
847 if (diag_class
!= DK_UNSPECIFIED
)
848 diagnostic
->kind
= diag_class
;
858 /* Print any metadata about the option used to control DIAGNOSTIC to CONTEXT's
859 printer, e.g. " [-Werror=uninitialized]".
860 Subroutine of diagnostic_report_diagnostic. */
863 print_option_information (diagnostic_context
*context
,
864 const diagnostic_info
*diagnostic
,
865 diagnostic_t orig_diag_kind
)
869 option_text
= context
->option_name (context
, diagnostic
->option_index
,
870 orig_diag_kind
, diagnostic
->kind
);
874 pretty_printer
*pp
= context
->printer
;
875 pp_string (pp
, " [");
876 pp_string (pp
, colorize_start (pp_show_color (pp
),
877 diagnostic_kind_color
[diagnostic
->kind
]));
878 pp_string (pp
, option_text
);
879 pp_string (pp
, colorize_stop (pp_show_color (pp
)));
880 pp_character (pp
, ']');
885 /* Report a diagnostic message (an error or a warning) as specified by
886 DC. This function is *the* subroutine in terms of which front-ends
887 should implement their specific diagnostic handling modules. The
888 front-end independent format specifiers are exactly those described
889 in the documentation of output_format.
890 Return true if a diagnostic was printed, false otherwise. */
893 diagnostic_report_diagnostic (diagnostic_context
*context
,
894 diagnostic_info
*diagnostic
)
896 location_t location
= diagnostic_location (diagnostic
);
897 diagnostic_t orig_diag_kind
= diagnostic
->kind
;
899 /* Give preference to being able to inhibit warnings, before they
900 get reclassified to something else. */
901 if ((diagnostic
->kind
== DK_WARNING
|| diagnostic
->kind
== DK_PEDWARN
)
902 && !diagnostic_report_warnings_p (context
, location
))
905 if (diagnostic
->kind
== DK_PEDWARN
)
907 diagnostic
->kind
= pedantic_warning_kind (context
);
908 /* We do this to avoid giving the message for -pedantic-errors. */
909 orig_diag_kind
= diagnostic
->kind
;
912 if (diagnostic
->kind
== DK_NOTE
&& context
->inhibit_notes_p
)
915 if (context
->lock
> 0)
917 /* If we're reporting an ICE in the middle of some other error,
918 try to flush out the previous error, then let this one
919 through. Don't do this more than once. */
920 if ((diagnostic
->kind
== DK_ICE
|| diagnostic
->kind
== DK_ICE_NOBT
)
921 && context
->lock
== 1)
922 pp_newline_and_flush (context
->printer
);
924 error_recursion (context
);
927 /* If the user requested that warnings be treated as errors, so be
928 it. Note that we do this before the next block so that
929 individual warnings can be overridden back to warnings with
931 if (context
->warning_as_error_requested
932 && diagnostic
->kind
== DK_WARNING
)
933 diagnostic
->kind
= DK_ERROR
;
935 if (diagnostic
->option_index
936 && diagnostic
->option_index
!= permissive_error_option (context
))
938 /* This tests if the user provided the appropriate -Wfoo or
940 if (! context
->option_enabled (diagnostic
->option_index
,
941 context
->option_state
))
944 /* This tests for #pragma diagnostic changes. */
945 diagnostic_t diag_class
946 = update_effective_level_from_pragmas (context
, diagnostic
);
948 /* This tests if the user provided the appropriate -Werror=foo
950 if (diag_class
== DK_UNSPECIFIED
951 && (context
->classify_diagnostic
[diagnostic
->option_index
]
954 = context
->classify_diagnostic
[diagnostic
->option_index
];
956 /* This allows for future extensions, like temporarily disabling
957 warnings for ranges of source code. */
958 if (diagnostic
->kind
== DK_IGNORED
)
962 if (diagnostic
->kind
!= DK_NOTE
)
963 diagnostic_check_max_errors (context
);
967 if (diagnostic
->kind
== DK_ICE
|| diagnostic
->kind
== DK_ICE_NOBT
)
969 /* When not checking, ICEs are converted to fatal errors when an
970 error has already occurred. This is counteracted by
973 && (diagnostic_kind_count (context
, DK_ERROR
) > 0
974 || diagnostic_kind_count (context
, DK_SORRY
) > 0)
975 && !context
->abort_on_error
)
978 = expand_location (diagnostic_location (diagnostic
));
979 fnotice (stderr
, "%s:%d: confused by earlier errors, bailing out\n",
981 exit (ICE_EXIT_CODE
);
983 if (context
->internal_error
)
984 (*context
->internal_error
) (context
,
985 diagnostic
->message
.format_spec
,
986 diagnostic
->message
.args_ptr
);
988 if (diagnostic
->kind
== DK_ERROR
&& orig_diag_kind
== DK_WARNING
)
989 ++diagnostic_kind_count (context
, DK_WERROR
);
991 ++diagnostic_kind_count (context
, diagnostic
->kind
);
993 /* Is this the initial diagnostic within the stack of groups? */
994 if (context
->diagnostic_group_emission_count
== 0)
996 if (context
->begin_group_cb
)
997 context
->begin_group_cb (context
);
999 context
->diagnostic_group_emission_count
++;
1001 diagnostic
->message
.x_data
= &diagnostic
->x_data
;
1002 diagnostic
->x_data
= NULL
;
1003 pp_format (context
->printer
, &diagnostic
->message
);
1004 (*diagnostic_starter (context
)) (context
, diagnostic
);
1005 pp_output_formatted_text (context
->printer
);
1006 if (context
->show_option_requested
)
1007 print_option_information (context
, diagnostic
, orig_diag_kind
);
1008 (*diagnostic_finalizer (context
)) (context
, diagnostic
);
1009 if (context
->parseable_fixits_p
)
1011 print_parseable_fixits (context
->printer
, diagnostic
->richloc
);
1012 pp_flush (context
->printer
);
1014 diagnostic_action_after_output (context
, diagnostic
->kind
);
1015 diagnostic
->x_data
= NULL
;
1017 if (context
->edit_context_ptr
)
1018 if (diagnostic
->richloc
->fixits_can_be_auto_applied_p ())
1019 context
->edit_context_ptr
->add_fixits (diagnostic
->richloc
);
1026 /* Given a partial pathname as input, return another pathname that
1027 shares no directory elements with the pathname of __FILE__. This
1028 is used by fancy_abort() to print `Internal compiler error in expr.c'
1029 instead of `Internal compiler error in ../../GCC/gcc/expr.c'. */
1032 trim_filename (const char *name
)
1034 static const char this_file
[] = __FILE__
;
1035 const char *p
= name
, *q
= this_file
;
1037 /* First skip any "../" in each filename. This allows us to give a proper
1038 reference to a file in a subdirectory. */
1039 while (p
[0] == '.' && p
[1] == '.' && IS_DIR_SEPARATOR (p
[2]))
1042 while (q
[0] == '.' && q
[1] == '.' && IS_DIR_SEPARATOR (q
[2]))
1045 /* Now skip any parts the two filenames have in common. */
1046 while (*p
== *q
&& *p
!= 0 && *q
!= 0)
1049 /* Now go backwards until the previous directory separator. */
1050 while (p
> name
&& !IS_DIR_SEPARATOR (p
[-1]))
1056 /* Standard error reporting routines in increasing order of severity.
1057 All of these take arguments like printf. */
1059 /* Text to be emitted verbatim to the error message stream; this
1060 produces no prefix and disables line-wrapping. Use rarely. */
1062 verbatim (const char *gmsgid
, ...)
1067 va_start (ap
, gmsgid
);
1068 text
.err_no
= errno
;
1069 text
.args_ptr
= &ap
;
1070 text
.format_spec
= _(gmsgid
);
1072 pp_format_verbatim (global_dc
->printer
, &text
);
1073 pp_newline_and_flush (global_dc
->printer
);
1077 /* Add a note with text GMSGID and with LOCATION to the diagnostic CONTEXT. */
1079 diagnostic_append_note (diagnostic_context
*context
,
1080 location_t location
,
1081 const char * gmsgid
, ...)
1083 diagnostic_info diagnostic
;
1085 rich_location
richloc (line_table
, location
);
1087 va_start (ap
, gmsgid
);
1088 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
, DK_NOTE
);
1089 if (context
->inhibit_notes_p
)
1094 char *saved_prefix
= pp_take_prefix (context
->printer
);
1095 pp_set_prefix (context
->printer
,
1096 diagnostic_build_prefix (context
, &diagnostic
));
1097 pp_format (context
->printer
, &diagnostic
.message
);
1098 pp_output_formatted_text (context
->printer
);
1099 pp_destroy_prefix (context
->printer
);
1100 pp_set_prefix (context
->printer
, saved_prefix
);
1101 diagnostic_show_locus (context
, &richloc
, DK_NOTE
);
1105 /* Implement emit_diagnostic, inform, warning, warning_at, pedwarn,
1106 permerror, error, error_at, error_at, sorry, fatal_error, internal_error,
1107 and internal_error_no_backtrace, as documented and defined below. */
1109 diagnostic_impl (rich_location
*richloc
, int opt
,
1111 va_list *ap
, diagnostic_t kind
)
1113 diagnostic_info diagnostic
;
1114 if (kind
== DK_PERMERROR
)
1116 diagnostic_set_info (&diagnostic
, gmsgid
, ap
, richloc
,
1117 permissive_error_kind (global_dc
));
1118 diagnostic
.option_index
= permissive_error_option (global_dc
);
1122 diagnostic_set_info (&diagnostic
, gmsgid
, ap
, richloc
, kind
);
1123 if (kind
== DK_WARNING
|| kind
== DK_PEDWARN
)
1124 diagnostic
.option_index
= opt
;
1126 return diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1129 /* Implement inform_n, warning_n, and error_n, as documented and
1132 diagnostic_n_impl (rich_location
*richloc
, int opt
, unsigned HOST_WIDE_INT n
,
1133 const char *singular_gmsgid
,
1134 const char *plural_gmsgid
,
1135 va_list *ap
, diagnostic_t kind
)
1137 diagnostic_info diagnostic
;
1140 if (sizeof n
<= sizeof gtn
)
1143 /* Use the largest number ngettext can handle, otherwise
1144 preserve the six least significant decimal digits for
1145 languages where the plural form depends on them. */
1146 gtn
= n
<= ULONG_MAX
? n
: n
% 1000000LU + 1000000LU;
1148 const char *text
= ngettext (singular_gmsgid
, plural_gmsgid
, gtn
);
1149 diagnostic_set_info_translated (&diagnostic
, text
, ap
, richloc
, kind
);
1150 if (kind
== DK_WARNING
)
1151 diagnostic
.option_index
= opt
;
1152 return diagnostic_report_diagnostic (global_dc
, &diagnostic
);
1155 /* Wrapper around diagnostic_impl taking a variable argument list. */
1158 emit_diagnostic (diagnostic_t kind
, location_t location
, int opt
,
1159 const char *gmsgid
, ...)
1161 auto_diagnostic_group d
;
1163 va_start (ap
, gmsgid
);
1164 rich_location
richloc (line_table
, location
);
1165 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, kind
);
1170 /* Wrapper around diagnostic_impl taking a va_list parameter. */
1173 emit_diagnostic_valist (diagnostic_t kind
, location_t location
, int opt
,
1174 const char *gmsgid
, va_list *ap
)
1176 rich_location
richloc (line_table
, location
);
1177 return diagnostic_impl (&richloc
, opt
, gmsgid
, ap
, kind
);
1180 /* An informative note at LOCATION. Use this for additional details on an error
1183 inform (location_t location
, const char *gmsgid
, ...)
1185 auto_diagnostic_group d
;
1187 va_start (ap
, gmsgid
);
1188 rich_location
richloc (line_table
, location
);
1189 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_NOTE
);
1193 /* Same as "inform" above, but at RICHLOC. */
1195 inform (rich_location
*richloc
, const char *gmsgid
, ...)
1197 gcc_assert (richloc
);
1199 auto_diagnostic_group d
;
1201 va_start (ap
, gmsgid
);
1202 diagnostic_impl (richloc
, -1, gmsgid
, &ap
, DK_NOTE
);
1206 /* An informative note at LOCATION. Use this for additional details on an
1209 inform_n (location_t location
, unsigned HOST_WIDE_INT n
,
1210 const char *singular_gmsgid
, const char *plural_gmsgid
, ...)
1213 va_start (ap
, plural_gmsgid
);
1214 auto_diagnostic_group d
;
1215 rich_location
richloc (line_table
, location
);
1216 diagnostic_n_impl (&richloc
, -1, n
, singular_gmsgid
, plural_gmsgid
,
1221 /* A warning at INPUT_LOCATION. Use this for code which is correct according
1222 to the relevant language specification but is likely to be buggy anyway.
1223 Returns true if the warning was printed, false if it was inhibited. */
1225 warning (int opt
, const char *gmsgid
, ...)
1227 auto_diagnostic_group d
;
1229 va_start (ap
, gmsgid
);
1230 rich_location
richloc (line_table
, input_location
);
1231 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, DK_WARNING
);
1236 /* A warning at LOCATION. Use this for code which is correct according to the
1237 relevant language specification but is likely to be buggy anyway.
1238 Returns true if the warning was printed, false if it was inhibited. */
1241 warning_at (location_t location
, int opt
, const char *gmsgid
, ...)
1243 auto_diagnostic_group d
;
1245 va_start (ap
, gmsgid
);
1246 rich_location
richloc (line_table
, location
);
1247 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, DK_WARNING
);
1252 /* Same as "warning at" above, but using RICHLOC. */
1255 warning_at (rich_location
*richloc
, int opt
, const char *gmsgid
, ...)
1257 gcc_assert (richloc
);
1259 auto_diagnostic_group d
;
1261 va_start (ap
, gmsgid
);
1262 bool ret
= diagnostic_impl (richloc
, opt
, gmsgid
, &ap
, DK_WARNING
);
1267 /* Same as warning_n plural variant below, but using RICHLOC. */
1270 warning_n (rich_location
*richloc
, int opt
, unsigned HOST_WIDE_INT n
,
1271 const char *singular_gmsgid
, const char *plural_gmsgid
, ...)
1273 gcc_assert (richloc
);
1275 auto_diagnostic_group d
;
1277 va_start (ap
, plural_gmsgid
);
1278 bool ret
= diagnostic_n_impl (richloc
, opt
, n
,
1279 singular_gmsgid
, plural_gmsgid
,
1285 /* A warning at LOCATION. Use this for code which is correct according to the
1286 relevant language specification but is likely to be buggy anyway.
1287 Returns true if the warning was printed, false if it was inhibited. */
1290 warning_n (location_t location
, int opt
, unsigned HOST_WIDE_INT n
,
1291 const char *singular_gmsgid
, const char *plural_gmsgid
, ...)
1293 auto_diagnostic_group d
;
1295 va_start (ap
, plural_gmsgid
);
1296 rich_location
richloc (line_table
, location
);
1297 bool ret
= diagnostic_n_impl (&richloc
, opt
, n
,
1298 singular_gmsgid
, plural_gmsgid
,
1304 /* A "pedantic" warning at LOCATION: issues a warning unless
1305 -pedantic-errors was given on the command line, in which case it
1306 issues an error. Use this for diagnostics required by the relevant
1307 language standard, if you have chosen not to make them errors.
1309 Note that these diagnostics are issued independent of the setting
1310 of the -Wpedantic command-line switch. To get a warning enabled
1311 only with that switch, use either "if (pedantic) pedwarn
1312 (OPT_Wpedantic,...)" or just "pedwarn (OPT_Wpedantic,..)". To get a
1313 pedwarn independently of the -Wpedantic switch use "pedwarn (0,...)".
1315 Returns true if the warning was printed, false if it was inhibited. */
1318 pedwarn (location_t location
, int opt
, const char *gmsgid
, ...)
1320 auto_diagnostic_group d
;
1322 va_start (ap
, gmsgid
);
1323 rich_location
richloc (line_table
, location
);
1324 bool ret
= diagnostic_impl (&richloc
, opt
, gmsgid
, &ap
, DK_PEDWARN
);
1329 /* Same as pedwarn above, but using RICHLOC. */
1332 pedwarn (rich_location
*richloc
, int opt
, const char *gmsgid
, ...)
1334 gcc_assert (richloc
);
1336 auto_diagnostic_group d
;
1338 va_start (ap
, gmsgid
);
1339 bool ret
= diagnostic_impl (richloc
, opt
, gmsgid
, &ap
, DK_PEDWARN
);
1344 /* A "permissive" error at LOCATION: issues an error unless
1345 -fpermissive was given on the command line, in which case it issues
1346 a warning. Use this for things that really should be errors but we
1347 want to support legacy code.
1349 Returns true if the warning was printed, false if it was inhibited. */
1352 permerror (location_t location
, const char *gmsgid
, ...)
1354 auto_diagnostic_group d
;
1356 va_start (ap
, gmsgid
);
1357 rich_location
richloc (line_table
, location
);
1358 bool ret
= diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_PERMERROR
);
1363 /* Same as "permerror" above, but at RICHLOC. */
1366 permerror (rich_location
*richloc
, const char *gmsgid
, ...)
1368 gcc_assert (richloc
);
1370 auto_diagnostic_group d
;
1372 va_start (ap
, gmsgid
);
1373 bool ret
= diagnostic_impl (richloc
, -1, gmsgid
, &ap
, DK_PERMERROR
);
1378 /* A hard error: the code is definitely ill-formed, and an object file
1379 will not be produced. */
1381 error (const char *gmsgid
, ...)
1383 auto_diagnostic_group d
;
1385 va_start (ap
, gmsgid
);
1386 rich_location
richloc (line_table
, input_location
);
1387 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ERROR
);
1391 /* A hard error: the code is definitely ill-formed, and an object file
1392 will not be produced. */
1394 error_n (location_t location
, unsigned HOST_WIDE_INT n
,
1395 const char *singular_gmsgid
, const char *plural_gmsgid
, ...)
1397 auto_diagnostic_group d
;
1399 va_start (ap
, plural_gmsgid
);
1400 rich_location
richloc (line_table
, location
);
1401 diagnostic_n_impl (&richloc
, -1, n
, singular_gmsgid
, plural_gmsgid
,
1406 /* Same as above, but use location LOC instead of input_location. */
1408 error_at (location_t loc
, const char *gmsgid
, ...)
1410 auto_diagnostic_group d
;
1412 va_start (ap
, gmsgid
);
1413 rich_location
richloc (line_table
, loc
);
1414 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ERROR
);
1418 /* Same as above, but use RICH_LOC. */
1421 error_at (rich_location
*richloc
, const char *gmsgid
, ...)
1423 gcc_assert (richloc
);
1425 auto_diagnostic_group d
;
1427 va_start (ap
, gmsgid
);
1428 diagnostic_impl (richloc
, -1, gmsgid
, &ap
, DK_ERROR
);
1432 /* "Sorry, not implemented." Use for a language feature which is
1433 required by the relevant specification but not implemented by GCC.
1434 An object file will not be produced. */
1436 sorry (const char *gmsgid
, ...)
1438 auto_diagnostic_group d
;
1440 va_start (ap
, gmsgid
);
1441 rich_location
richloc (line_table
, input_location
);
1442 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_SORRY
);
1446 /* Same as above, but use location LOC instead of input_location. */
1448 sorry_at (location_t loc
, const char *gmsgid
, ...)
1450 auto_diagnostic_group d
;
1452 va_start (ap
, gmsgid
);
1453 rich_location
richloc (line_table
, loc
);
1454 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_SORRY
);
1458 /* Return true if an error or a "sorry" has been seen. Various
1459 processing is disabled after errors. */
1463 return errorcount
|| sorrycount
;
1466 /* An error which is severe enough that we make no attempt to
1467 continue. Do not use this for internal consistency checks; that's
1468 internal_error. Use of this function should be rare. */
1470 fatal_error (location_t loc
, const char *gmsgid
, ...)
1472 auto_diagnostic_group d
;
1474 va_start (ap
, gmsgid
);
1475 rich_location
richloc (line_table
, loc
);
1476 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_FATAL
);
1482 /* An internal consistency check has failed. We make no attempt to
1483 continue. Note that unless there is debugging value to be had from
1484 a more specific message, or some other good reason, you should use
1485 abort () instead of calling this function directly. */
1487 internal_error (const char *gmsgid
, ...)
1489 auto_diagnostic_group d
;
1491 va_start (ap
, gmsgid
);
1492 rich_location
richloc (line_table
, input_location
);
1493 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ICE
);
1499 /* Like internal_error, but no backtrace will be printed. Used when
1500 the internal error does not happen at the current location, but happened
1503 internal_error_no_backtrace (const char *gmsgid
, ...)
1505 auto_diagnostic_group d
;
1507 va_start (ap
, gmsgid
);
1508 rich_location
richloc (line_table
, input_location
);
1509 diagnostic_impl (&richloc
, -1, gmsgid
, &ap
, DK_ICE_NOBT
);
1515 /* Special case error functions. Most are implemented in terms of the
1516 above, or should be. */
1518 /* Print a diagnostic MSGID on FILE. This is just fprintf, except it
1519 runs its second argument through gettext. */
1521 fnotice (FILE *file
, const char *cmsgid
, ...)
1525 va_start (ap
, cmsgid
);
1526 vfprintf (file
, _(cmsgid
), ap
);
1530 /* Inform the user that an error occurred while trying to report some
1531 other error. This indicates catastrophic internal inconsistencies,
1532 so give up now. But do try to flush out the previous error.
1533 This mustn't use internal_error, that will cause infinite recursion. */
1536 error_recursion (diagnostic_context
*context
)
1538 if (context
->lock
< 3)
1539 pp_newline_and_flush (context
->printer
);
1542 "Internal compiler error: Error reporting routines re-entered.\n");
1544 /* Call diagnostic_action_after_output to get the "please submit a bug
1546 diagnostic_action_after_output (context
, DK_ICE
);
1548 /* Do not use gcc_unreachable here; that goes through internal_error
1549 and therefore would cause infinite recursion. */
1553 /* Report an internal compiler error in a friendly manner. This is
1554 the function that gets called upon use of abort() in the source
1555 code generally, thanks to a special macro. */
1558 fancy_abort (const char *file
, int line
, const char *function
)
1560 internal_error ("in %s, at %s:%d", function
, trim_filename (file
), line
);
1563 /* class auto_diagnostic_group. */
1565 /* Constructor: "push" this group into global_dc. */
1567 auto_diagnostic_group::auto_diagnostic_group ()
1569 global_dc
->diagnostic_group_nesting_depth
++;
1572 /* Destructor: "pop" this group from global_dc. */
1574 auto_diagnostic_group::~auto_diagnostic_group ()
1576 if (--global_dc
->diagnostic_group_nesting_depth
== 0)
1578 /* Handle the case where we've popped the final diagnostic group.
1579 If any diagnostics were emitted, give the context a chance
1581 if (global_dc
->diagnostic_group_emission_count
> 0)
1583 if (global_dc
->end_group_cb
)
1584 global_dc
->end_group_cb (global_dc
);
1586 global_dc
->diagnostic_group_emission_count
= 0;
1590 /* Really call the system 'abort'. This has to go right at the end of
1591 this file, so that there are no functions after it that call abort
1592 and get the system abort instead of our macro. */
1602 namespace selftest
{
1604 /* Helper function for test_print_escaped_string. */
1607 assert_print_escaped_string (const location
&loc
, const char *expected_output
,
1611 print_escaped_string (&pp
, input
);
1612 ASSERT_STREQ_AT (loc
, expected_output
, pp_formatted_text (&pp
));
1615 #define ASSERT_PRINT_ESCAPED_STRING_STREQ(EXPECTED_OUTPUT, INPUT) \
1616 assert_print_escaped_string (SELFTEST_LOCATION, EXPECTED_OUTPUT, INPUT)
1618 /* Tests of print_escaped_string. */
1621 test_print_escaped_string ()
1624 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"\"", "");
1626 /* Non-empty string. */
1627 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"hello world\"", "hello world");
1629 /* Various things that need to be escaped: */
1631 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\\\after\"",
1634 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\tafter\"",
1637 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\nafter\"",
1640 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\\"after\"",
1643 /* Non-printable characters: BEL: '\a': 0x07 */
1644 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\007after\"",
1646 /* Non-printable characters: vertical tab: '\v': 0x0b */
1647 ASSERT_PRINT_ESCAPED_STRING_STREQ ("\"before\\013after\"",
1651 /* Tests of print_parseable_fixits. */
1653 /* Verify that print_parseable_fixits emits the empty string if there
1657 test_print_parseable_fixits_none ()
1660 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1662 print_parseable_fixits (&pp
, &richloc
);
1663 ASSERT_STREQ ("", pp_formatted_text (&pp
));
1666 /* Verify that print_parseable_fixits does the right thing if there
1667 is an insertion fixit hint. */
1670 test_print_parseable_fixits_insert ()
1673 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1675 linemap_add (line_table
, LC_ENTER
, false, "test.c", 0);
1676 linemap_line_start (line_table
, 5, 100);
1677 linemap_add (line_table
, LC_LEAVE
, false, NULL
, 0);
1678 location_t where
= linemap_position_for_column (line_table
, 10);
1679 richloc
.add_fixit_insert_before (where
, "added content");
1681 print_parseable_fixits (&pp
, &richloc
);
1682 ASSERT_STREQ ("fix-it:\"test.c\":{5:10-5:10}:\"added content\"\n",
1683 pp_formatted_text (&pp
));
1686 /* Verify that print_parseable_fixits does the right thing if there
1687 is an removal fixit hint. */
1690 test_print_parseable_fixits_remove ()
1693 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1695 linemap_add (line_table
, LC_ENTER
, false, "test.c", 0);
1696 linemap_line_start (line_table
, 5, 100);
1697 linemap_add (line_table
, LC_LEAVE
, false, NULL
, 0);
1699 where
.m_start
= linemap_position_for_column (line_table
, 10);
1700 where
.m_finish
= linemap_position_for_column (line_table
, 20);
1701 richloc
.add_fixit_remove (where
);
1703 print_parseable_fixits (&pp
, &richloc
);
1704 ASSERT_STREQ ("fix-it:\"test.c\":{5:10-5:21}:\"\"\n",
1705 pp_formatted_text (&pp
));
1708 /* Verify that print_parseable_fixits does the right thing if there
1709 is an replacement fixit hint. */
1712 test_print_parseable_fixits_replace ()
1715 rich_location
richloc (line_table
, UNKNOWN_LOCATION
);
1717 linemap_add (line_table
, LC_ENTER
, false, "test.c", 0);
1718 linemap_line_start (line_table
, 5, 100);
1719 linemap_add (line_table
, LC_LEAVE
, false, NULL
, 0);
1721 where
.m_start
= linemap_position_for_column (line_table
, 10);
1722 where
.m_finish
= linemap_position_for_column (line_table
, 20);
1723 richloc
.add_fixit_replace (where
, "replacement");
1725 print_parseable_fixits (&pp
, &richloc
);
1726 ASSERT_STREQ ("fix-it:\"test.c\":{5:10-5:21}:\"replacement\"\n",
1727 pp_formatted_text (&pp
));
1731 diagnostic_get_location_text (..., SHOW_COLUMN)
1732 generates EXPECTED_LOC_TEXT, given FILENAME, LINE, COLUMN, with
1733 colorization disabled. */
1736 assert_location_text (const char *expected_loc_text
,
1737 const char *filename
, int line
, int column
,
1740 test_diagnostic_context dc
;
1741 dc
.show_column
= show_column
;
1743 expanded_location xloc
;
1744 xloc
.file
= filename
;
1746 xloc
.column
= column
;
1750 char *actual_loc_text
= diagnostic_get_location_text (&dc
, xloc
);
1751 ASSERT_STREQ (expected_loc_text
, actual_loc_text
);
1752 free (actual_loc_text
);
1755 /* Verify that diagnostic_get_location_text works as expected. */
1758 test_diagnostic_get_location_text ()
1760 const char *old_progname
= progname
;
1761 progname
= "PROGNAME";
1762 assert_location_text ("PROGNAME:", NULL
, 0, 0, true);
1763 assert_location_text ("<built-in>:", "<built-in>", 42, 10, true);
1764 assert_location_text ("foo.c:42:10:", "foo.c", 42, 10, true);
1765 assert_location_text ("foo.c:42:", "foo.c", 42, 0, true);
1766 assert_location_text ("foo.c:", "foo.c", 0, 10, true);
1767 assert_location_text ("foo.c:42:", "foo.c", 42, 10, false);
1768 assert_location_text ("foo.c:", "foo.c", 0, 10, false);
1770 maybe_line_and_column (INT_MAX
, INT_MAX
);
1771 maybe_line_and_column (INT_MIN
, INT_MIN
);
1773 progname
= old_progname
;
1776 /* Run all of the selftests within this file. */
1779 diagnostic_c_tests ()
1781 test_print_escaped_string ();
1782 test_print_parseable_fixits_none ();
1783 test_print_parseable_fixits_insert ();
1784 test_print_parseable_fixits_remove ();
1785 test_print_parseable_fixits_replace ();
1786 test_diagnostic_get_location_text ();
1789 } // namespace selftest
1791 #endif /* #if CHECKING_P */