GCC Middle and Back End API Reference
diagnostic.h
Go to the documentation of this file.
1/* Various declarations for language-independent diagnostics subroutines.
2 Copyright (C) 2000-2024 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_DIAGNOSTIC_H
22#define GCC_DIAGNOSTIC_H
23
24#include "rich-location.h"
25#include "pretty-print.h"
26#include "diagnostic-core.h"
27
28namespace text_art
29{
30 class theme;
31} // namespace text_art
32
33/* An enum for controlling what units to use for the column number
34 when diagnostics are output, used by the -fdiagnostics-column-unit option.
35 Tabs will be expanded or not according to the value of -ftabstop. The origin
36 (default 1) is controlled by -fdiagnostics-column-origin. */
37
39{
40 /* The default from GCC 11 onwards: display columns. */
42
43 /* The behavior in GCC 10 and earlier: simple bytes. */
45};
46
47/* An enum for controlling how to print non-ASCII characters/bytes when
48 a diagnostic suggests escaping the source code on output. */
49
51{
52 /* Escape non-ASCII Unicode characters in the form <U+XXXX> and
53 non-UTF-8 bytes in the form <XX>. */
55
56 /* Escape non-ASCII bytes in the form <XX> (thus showing the underlying
57 encoding of non-ASCII Unicode characters). */
59};
60
61/* Enum for overriding the standard output format. */
62
64{
65 /* The default: textual output. */
67
68 /* JSON-based output, to stderr. */
70
71 /* JSON-based output, to a file. */
73
74 /* SARIF-based output, to stderr. */
76
77 /* SARIF-based output, to a file. */
79};
80
81/* An enum for controlling how diagnostic_paths should be printed. */
83{
84 /* Don't print diagnostic_paths. */
86
87 /* Print diagnostic_paths by emitting a separate "note" for every event
88 in the path. */
90
91 /* Print diagnostic_paths by consolidating events together where they
92 are close enough, and printing such runs of events with multiple
93 calls to diagnostic_show_locus, showing the individual events in
94 each run via labels in the source. */
96};
97
98/* An enum for capturing values of GCC_EXTRA_DIAGNOSTIC_OUTPUT,
99 and for -fdiagnostics-parseable-fixits. */
100
102{
103 /* No extra output, or an unrecognized value. */
105
106 /* Emit fix-it hints using the "fixits-v1" format, equivalent to
107 -fdiagnostics-parseable-fixits. */
109
110 /* Emit fix-it hints using the "fixits-v2" format. */
113
114/* Values for -fdiagnostics-text-art-charset=. */
115
117{
118 /* No text art diagrams shall be emitted. */
120
121 /* Use pure ASCII for text art diagrams. */
123
124 /* Use ASCII + conservative use of other unicode characters
125 in text art diagrams. */
127
128 /* Use Emoji. */
131
132/* A diagnostic is described by the MESSAGE to send, the FILE and LINE of
133 its context and its KIND (ice, error, warning, note, ...) See complete
134 list in diagnostic.def. */
136{
138 : message (), richloc (), metadata (), x_data (), kind (), option_index (),
139 m_iinfo ()
140 { }
141
142 /* Text to be formatted. */
144
145 /* The location at which the diagnostic is to be reported. */
146 rich_location *richloc;
147
148 /* An optional bundle of metadata associated with the diagnostic
149 (or NULL). */
151
152 /* Auxiliary data for client. */
153 void *x_data;
154 /* The kind of diagnostic it is about. */
156 /* Which OPT_* directly controls this diagnostic. */
158
159 /* Inlining context containing locations for each call site along
160 the inlining stack. */
162 {
163 /* Locations along the inlining stack. */
165 /* The abstract origin of the location. */
166 void *m_ao;
167 /* Set if every M_ILOCS element is in a system header. */
170};
171
172/* Forward declarations. */
174 const diagnostic_info *);
175
178
180 const diagnostic_info *,
182
183typedef int (*diagnostic_option_enabled_cb) (int, unsigned, void *);
184typedef char *(*diagnostic_make_option_name_cb) (const diagnostic_context *,
185 int,
188typedef char *(*diagnostic_make_option_url_cb) (const diagnostic_context *,
189 int,
190 unsigned);
191
192class edit_context;
193namespace json { class value; }
195class logical_location;
198
199/* Abstract base class for a particular output format for diagnostics;
200 each value of -fdiagnostics-output-format= will have its own
201 implementation. */
202
204{
205public:
207
208 virtual void on_begin_group () = 0;
209 virtual void on_end_group () = 0;
210 virtual void on_begin_diagnostic (const diagnostic_info &) = 0;
211 virtual void on_end_diagnostic (const diagnostic_info &,
213 virtual void on_diagram (const diagnostic_diagram &diagram) = 0;
214 virtual bool machine_readable_stderr_p () const = 0;
215
216protected:
218 : m_context (context)
219 {}
220
222};
223
224/* Subclass of diagnostic_output_format for classic text-based output
225 to stderr.
226
227 Uses diagnostic_context.m_text_callbacks to provide client-specific
228 textual output (e.g. include paths, macro expansions, etc). */
229
231{
232public:
237 void on_begin_group () override {}
238 void on_end_group () override {}
239 void on_begin_diagnostic (const diagnostic_info &) override;
242 void on_diagram (const diagnostic_diagram &diagram) override;
244 {
245 return false;
246 }
247};
248
249/* A stack of sets of classifications: each entry in the stack is
250 a mapping from option index to diagnostic severity that can be changed
251 via pragmas. The stack can be pushed and popped. */
252
254{
255public:
256 void init (int n_opts);
257 void fini ();
258
259 /* Save all diagnostic classifications in a stack. */
260 void push ();
261
262 /* Restore the topmost classification set off the stack. If the stack
263 is empty, revert to the state based on command line parameters. */
264 void pop (location_t where);
265
266 bool option_unspecified_p (int opt) const
267 {
268 return get_current_override (opt) == DK_UNSPECIFIED;
269 }
270
272 {
273 gcc_assert (opt < m_n_opts);
274 return m_classify_diagnostic[opt];
275 }
276
279 int option_index,
281 location_t where);
282
285
286private:
287 /* Each time a diagnostic's classification is changed with a pragma,
288 we record the change and the location of the change in an array of
289 these structs. */
296
298
299 /* For each option index that can be passed to warning() et al
300 (OPT_* from options.h when using this code with the core GCC
301 options), this array may contain a new kind that the diagnostic
302 should be changed to before reporting, or DK_UNSPECIFIED to leave
303 it as the reported kind, or DK_IGNORED to not report it at
304 all. */
306
307 /* History of all changes to the classifications above. This list
308 is stored in location-order, so we can search it, either
309 binary-wise or end-to-front, to find the most recent
310 classification for a given diagnostic, given the location of the
311 diagnostic. */
313
314 /* The size of the above array. */
316
317 /* For pragma push/pop. */
320};
321
322/* A bundle of options relating to printing the user's source code
323 (potentially with a margin, underlining, labels, etc). */
324
326{
327 /* True if we should print the source line with a caret indicating
328 the location.
329 Corresponds to -fdiagnostics-show-caret. */
331
332 /* Maximum width of the source line printed. */
334
335 /* Character used at the caret when printing source locations. */
336 char caret_chars[rich_location::STATICALLY_ALLOCATED_RANGES];
337
338 /* When printing source code, should the characters at carets and ranges
339 be colorized? (assuming colorization is on at all).
340 This should be true for frontends that generate range information
341 (so that the ranges of code are colorized),
342 and false for frontends that merely specify points within the
343 source code (to avoid e.g. colorizing just the first character in
344 a token, which would look strange). */
346
347 /* When printing source code, should labelled ranges be printed?
348 Corresponds to -fdiagnostics-show-labels. */
350
351 /* When printing source code, should there be a left-hand margin
352 showing line numbers?
353 Corresponds to -fdiagnostics-show-line-numbers. */
355
356 /* If printing source code, what should the minimum width of the margin
357 be? Line numbers will be right-aligned, and padded to this width.
358 Corresponds to -fdiagnostics-minimum-margin-width=VALUE. */
360
361 /* Usable by plugins; if true, print a debugging ruler above the
362 source output. */
364
365 /* When printing events in an inline path, should we print lines
366 visualizing links between related events (e.g. for CFG paths)?
367 Corresponds to -fdiagnostics-show-event-links. */
369};
370
371/* This data structure bundles altogether any information relevant to
372 the context of a diagnostic message. */
374{
375public:
376 /* Give access to m_text_callbacks. */
377 friend diagnostic_starter_fn &
383
387
388 void initialize (int n_opts);
389 void color_init (int value);
390 void urls_init (int value);
391
392 void finish ();
393
398
399 void
401 bool should_skip_bom);
402
403 void begin_group ();
404 void end_group ();
405
406 bool warning_enabled_at (location_t loc, int opt);
407
408 bool option_unspecified_p (int opt) const
409 {
411 }
412
414
416
417 void check_max_errors (bool flush);
419
421 classify_diagnostic (int option_index,
423 location_t where)
424 {
426 option_index,
427 new_kind,
428 where);
429 }
430
436 {
437 m_option_classifier.pop (where);
438 }
439
440 void maybe_show_locus (const rich_location &richloc,
442 pretty_printer *pp,
444
446
448 {
449 return m_output_format;
450 }
451
452 /* Various setters for use by option-handling logic. */
453 void set_output_format (diagnostic_output_format *output_format);
456 void set_urlifier (urlifier *);
457 void create_edit_context ();
459 {
461 }
462 void set_report_bug (bool val) { m_report_bug = val; }
467 void set_show_cwe (bool val) { m_show_cwe = val; }
468 void set_show_rules (bool val) { m_show_rules = val; }
470 {
471 m_path_format = val;
472 }
473 void set_show_path_depths (bool val) { m_show_path_depths = val; }
475 void set_max_errors (int val) { m_max_errors = val; }
477 {
478 m_escape_format = val;
479 }
484
485 /* Various accessors. */
487 {
489 }
490 bool show_path_depths_p () const { return m_show_path_depths; }
493 {
494 return m_escape_format;
495 }
496
497 file_cache &
499 {
501 return *m_file_cache;
502 }
503
505 {
506 return m_edit_context_ptr;
507 }
512 text_art::theme *get_diagram_theme () const { return m_diagrams.m_theme; }
513
515
517 {
518 return m_diagnostic_count[kind];
519 }
520
521 /* Option-related member functions. */
522 inline bool option_enabled_p (int option_index) const
523 {
524 if (!m_option_callbacks.m_option_enabled_cb)
525 return true;
526 return m_option_callbacks.m_option_enabled_cb
527 (option_index,
528 m_option_callbacks.m_lang_mask,
529 m_option_callbacks.m_option_state);
530 }
531
532 inline char *make_option_name (int option_index,
535 {
536 if (!m_option_callbacks.m_make_option_name_cb)
537 return nullptr;
538 return m_option_callbacks.m_make_option_name_cb (this, option_index,
540 diag_kind);
541 }
542
543 inline char *make_option_url (int option_index) const
544 {
545 if (!m_option_callbacks.m_make_option_url_cb)
546 return nullptr;
547 return m_option_callbacks.m_make_option_url_cb (this, option_index,
548 get_lang_mask ());
549 }
550
551 void
553 void *option_state,
556 unsigned lang_mask);
557
558 unsigned get_lang_mask () const
559 {
560 return m_option_callbacks.m_lang_mask;
561 }
562
564
565private:
567
572
574
576
578
580
581 void show_locus (const rich_location &richloc,
583 pretty_printer *pp,
585
586 /* Data members.
587 Ideally, all of these would be private and have "m_" prefixes. */
588
589public:
590 /* Where most of the diagnostic formatting work is done. */
592
593private:
594 /* Cache of source code. */
596
597 /* The number of times we have issued diagnostics. */
599
600 /* True if it has been requested that warnings be treated as errors. */
602
603 /* The number of option indexes that can be passed to warning() et
604 al. */
606
607 /* The stack of sets of overridden diagnostic option severities. */
609
610 /* True if we should print any CWE identifiers associated with
611 diagnostics. */
613
614 /* True if we should print any rules associated with diagnostics. */
616
617 /* How should diagnostic_path objects be printed. */
619
620 /* True if we should print stack depths when printing diagnostic paths. */
622
623 /* True if we should print the command line option which controls
624 each diagnostic, if known. */
626
627public:
628 /* True if we should raise a SIGABRT on errors. */
630
631 /* True if we should show the column number on diagnostics. */
633
634 /* True if pedwarns are errors. */
636
637 /* True if permerrors are warnings. */
639
640 /* The index of the option to associate with turning permerrors into
641 warnings. */
643
644 /* True if errors are fatal. */
646
647 /* True if all warnings should be disabled. */
649
650 /* True if warnings should be given in system headers. */
652
653private:
654 /* Maximum number of errors to report. */
656
657 /* Client-supplied callbacks for use in text output. */
658 struct {
659 /* This function is called before any message is printed out. It is
660 responsible for preparing message prefix and such. For example, it
661 might say:
662 In file included from "/usr/local/include/curses.h:5:
663 from "/home/gdr/src/nifty_printer.h:56:
664 ...
665 */
667
668 /* This function is called by diagnostic_show_locus in between
669 disjoint spans of source code, so that the context can print
670 something to indicate that a new span of source code has begun. */
672
673 /* This function is called after the diagnostic message is printed. */
676
677public:
678 /* Client hook to report an internal error. */
680
681private:
682 /* Client-supplied callbacks for working with options. */
683 struct {
684 /* Client hook to say whether the option controlling a diagnostic is
685 enabled. Returns nonzero if enabled, zero if disabled. */
687
688 /* Client information to pass as second argument to
689 m_option_enabled_cb. */
691
692 /* Client hook to return the name of an option that controls a
693 diagnostic. Returns malloced memory. The first diagnostic_t
694 argument is the kind of diagnostic before any reclassification
695 (of warnings as errors, etc.); the second is the kind after any
696 reclassification. May return NULL if no name is to be printed.
697 May be passed 0 as well as the index of a particular option. */
699
700 /* Client hook to return a URL describing the option that controls
701 a diagnostic. Returns malloced memory. May return NULL if no URL
702 is available. May be passed 0 as well as the index of a
703 particular option. */
705
706 /* A copy of lang_hooks.option_lang_mask (). */
707 unsigned m_lang_mask;
709
710 /* An optional hook for adding URLs to quoted text strings in
711 diagnostics. Only used for the main diagnostic message. */
713
714public:
716 json::value *(*m_make_json_for_path) (diagnostic_context *,
717 const diagnostic_path *);
718
719 /* Auxiliary data for client. */
721
722 /* Used to detect that the last caret was printed at the same location. */
724
725private:
726 /* Used to detect when the input file stack has changed since last
727 described. */
729
731
732public:
734
736
737private:
738 /* True if -freport-bug option is used. */
740
741 /* Used to specify additional diagnostic output to be emitted after the
742 rest of the diagnostic. This is for implementing
743 -fdiagnostics-parseable-fixits and GCC_EXTRA_DIAGNOSTIC_OUTPUT. */
745
746public:
747 /* What units to use when outputting the column number. */
749
750 /* The origin for the column number (1-based or 0-based typically). */
752
753 /* The size of the tabstop for tab expansion. */
755
756private:
757 /* How should non-ASCII/non-printable bytes be escaped when
758 a diagnostic suggests escaping the source code on output. */
760
761 /* If non-NULL, an edit_context to which fix-it hints should be
762 applied, for generating patches. */
764
765 /* Fields relating to diagnostic groups. */
766 struct {
767 /* How many diagnostic_group instances are currently alive. */
769
770 /* How many diagnostics have been emitted since the bottommost
771 diagnostic_group was pushed. */
774
775 /* How to output diagnostics (text vs a structured format such as JSON).
776 Must be non-NULL; owned by context. */
778
779 /* Callback to set the locations of call sites along the inlining
780 stack corresponding to a diagnostic location. Needed to traverse
781 the BLOCK_SUPERCONTEXT() chain hanging off the LOCATION_BLOCK()
782 of a diagnostic's location. */
784
785 /* Optional callback for attempting to handle ICEs gracefully. */
787
788 /* Include files that diagnostic_report_current_module has already listed the
789 include path for. */
791
792 /* A bundle of hooks for providing data to the context about its client
793 e.g. version information, plugins, etc.
794 Used by SARIF output to give metadata about the client that's
795 producing diagnostics. */
797
798 /* Support for diagrams. */
799 struct
800 {
801 /* Theme to use when generating diagrams.
802 Can be NULL (if text art is disabled). */
803 text_art::theme *m_theme;
804
806};
807
808inline void
810{
811 context->m_inhibit_notes_p = true;
812}
813
814
815/* Client supplied function to announce a diagnostic
816 (for text-based diagnostic output). */
822
823/* Client supplied function called between disjoint spans of source code,
824 so that the context can print
825 something to indicate that a new span of source code has begun. */
831
832/* Client supplied function called after a diagnostic message is
833 displayed (for text-based diagnostic output). */
839
840/* Extension hooks for client. */
841#define diagnostic_context_auxiliary_data(DC) (DC)->m_client_aux_data
842#define diagnostic_info_auxiliary_data(DI) (DI)->x_data
843
844/* Same as pp_format_decoder. Works on 'diagnostic_context *'. */
845#define diagnostic_format_decoder(DC) ((DC)->printer->format_decoder)
846
847/* Same as output_prefixing_rule. Works on 'diagnostic_context *'. */
848#define diagnostic_prefixing_rule(DC) ((DC)->printer->wrapping.rule)
849
850/* Raise SIGABRT on any diagnostic of severity DK_ERROR or higher. */
851inline void
853{
854 context->m_abort_on_error = true;
855}
856
857/* This diagnostic_context is used by front-ends that directly output
858 diagnostic messages without going through `error', `warning',
859 and similar functions. */
861
862/* Returns whether the diagnostic framework has been intialized already and is
863 ready for use. */
864inline bool
866{
867 return global_dc->printer != nullptr;
868}
869
870/* The number of errors that have been issued so far. Ideally, these
871 would take a diagnostic_context as an argument. */
872#define errorcount global_dc->diagnostic_count (DK_ERROR)
873/* Similarly, but for warnings. */
874#define warningcount global_dc->diagnostic_count (DK_WARNING)
875/* Similarly, but for warnings promoted to errors. */
876#define werrorcount global_dc->diagnostic_count (DK_WERROR)
877/* Similarly, but for sorrys. */
878#define sorrycount global_dc->diagnostic_count (DK_SORRY)
879
880/* Returns nonzero if warnings should be emitted. */
881#define diagnostic_report_warnings_p(DC, LOC) \
882 (!(DC)->m_inhibit_warnings \
883 && !(in_system_header_at (LOC) && !(DC)->m_warn_system_headers))
884
885/* Override the option index to be used for reporting a
886 diagnostic. */
887
888inline void
893
894/* Diagnostic related functions. */
895
896inline void
898{
899 context->initialize (n_opts);
900}
901
902inline void
904{
905 context->color_init (value);
906}
907
908inline void
909diagnostic_urls_init (diagnostic_context *context, int value = -1)
910{
911 context->urls_init (value);
912}
913
914inline void
916{
917 context->finish ();
918}
919
920inline void
922 location_t where)
923{
924 context->report_current_module (where);
925}
926
927inline void
929 rich_location *richloc,
931 pretty_printer *pp = nullptr,
933{
934 gcc_assert (richloc);
935 context->maybe_show_locus (*richloc, diagnostic_kind, pp, effect_info);
936}
937
938/* Because we read source files a second time after the frontend did it the
939 first time, we need to know how the frontend handled things like character
940 set conversion and UTF-8 BOM stripping, in order to make everything
941 consistent. This function needs to be called by each frontend that requires
942 non-default behavior, to inform the diagnostics infrastructure how input is
943 to be processed. The default behavior is to do no conversion and not to
944 strip a UTF-8 BOM.
945
946 The callback should return the input charset to be used to convert the given
947 file's contents to UTF-8, or it should return NULL if no conversion is needed
948 for this file. SHOULD_SKIP_BOM only applies in case no conversion was
949 performed, and if true, it will cause a UTF-8 BOM to be skipped at the
950 beginning of the file. (In case a conversion was performed, the BOM is
951 rather skipped as part of the conversion process.) */
952
953inline void
956 bool should_skip_bom)
957{
958 context->initialize_input_context (ccb, should_skip_bom);
959}
960
961/* Force diagnostics controlled by OPTIDX to be kind KIND. */
962inline diagnostic_t
964 int optidx,
965 diagnostic_t kind,
966 location_t where)
967{
968 return context->classify_diagnostic (optidx, kind, where);
969}
970
971inline void
973 location_t where)
974{
975 context->push_diagnostics (where);
976}
977inline void
979 location_t where)
980{
981 context->pop_diagnostics (where);
982}
983
984/* Report a diagnostic message (an error or a warning) as specified by
985 DC. This function is *the* subroutine in terms of which front-ends
986 should implement their specific diagnostic handling modules. The
987 front-end independent format specifiers are exactly those described
988 in the documentation of output_format.
989 Return true if a diagnostic was printed, false otherwise. */
990
991inline bool
997
998#ifdef ATTRIBUTE_GCC_DIAG
999extern void diagnostic_set_info (diagnostic_info *, const char *, va_list *,
1000 rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2,0);
1002 va_list *, rich_location *,
1004 ATTRIBUTE_GCC_DIAG(2,0);
1006 const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
1007#endif
1013 const diagnostic_info *,
1014 diagnostic_t);
1015void diagnostic_set_caret_max_width (diagnostic_context *context, int value);
1016
1017inline void
1023
1024inline void
1026{
1027 context->check_max_errors (flush);
1028}
1029
1030int get_terminal_width (void);
1031
1032/* Return the location associated to this diagnostic. Parameter WHICH
1033 specifies which location. By default, expand the first one. */
1034
1035inline location_t
1037{
1038 return diagnostic->message.get_location (which);
1039}
1040
1041/* Return the number of locations to be printed in DIAGNOSTIC. */
1042
1043inline unsigned int
1045{
1046 return diagnostic->message.m_richloc->get_num_locations ();
1047}
1048
1049/* Expand the location of this diagnostic. Use this function for
1050 consistency. Parameter WHICH specifies which location. By default,
1051 expand the first one. */
1052
1053inline expanded_location
1055{
1056 return diagnostic->richloc->get_expanded_location (which);
1057}
1058
1059/* This is somehow the right-side margin of a caret line, that is, we
1060 print at least these many characters after the position pointed at
1061 by the caret. */
1062const int CARET_LINE_MARGIN = 10;
1063
1064/* Return true if the two locations can be represented within the same
1065 caret line. This is used to build a prefix and also to determine
1066 whether to print one or two caret lines. */
1067
1068inline bool
1071{
1072 return (s2.column && s1.line == s2.line
1074 > abs (s1.column - s2.column)));
1075}
1076
1077extern const char *diagnostic_get_color_for_kind (diagnostic_t kind);
1078
1079/* Pure text formatting support functions. */
1080extern char *file_name_as_prefix (diagnostic_context *, const char *);
1081
1082extern char *build_message_string (const char *, ...) ATTRIBUTE_PRINTF_1;
1083
1085 const char *base_file_name,
1087 bool json_formatting);
1089 bool formatted);
1091 bool formatted,
1092 const char *base_file_name);
1094 bool formatted);
1096 bool formatted,
1097 const char *base_file_name);
1099 bool formatted,
1100 FILE *stream);
1101
1102/* Compute the number of digits in the decimal representation of an integer. */
1103extern int num_digits (int);
1104
1106 location_t loc);
1107
1108inline bool
1110{
1111 return global_dc->warning_enabled_at (loc, opt);
1112}
1113
1114inline bool
1116{
1117 return global_dc->option_unspecified_p (opt);
1118}
1119
1120extern char *get_cwe_url (int cwe);
1121
1122#endif /* ! GCC_DIAGNOSTIC_H */
Definition vec.h:1656
Definition diagnostic-client-data-hooks.h:31
Definition diagnostic.h:374
void action_after_output(diagnostic_t diag_kind)
Definition diagnostic.cc:741
int m_tabstop
Definition diagnostic.h:754
void initialize(int n_opts)
Definition diagnostic.cc:207
file_cache * m_file_cache
Definition diagnostic.h:595
void set_show_rules(bool val)
Definition diagnostic.h:468
void get_any_inlining_info(diagnostic_info *diagnostic)
Definition diagnostic.cc:1256
enum diagnostic_path_format m_path_format
Definition diagnostic.h:618
void finish()
Definition diagnostic.cc:362
void show_any_path(const diagnostic_info &diagnostic)
Definition diagnostic.cc:911
void end_group()
Definition diagnostic.cc:2366
struct diagnostic_context::@14 m_text_callbacks
void error_recursion() ATTRIBUTE_NORETURN
Definition diagnostic.cc:2298
void report_current_module(location_t where)
Definition diagnostic.cc:841
void set_option_hooks(diagnostic_option_enabled_cb option_enabled_cb, void *option_state, diagnostic_make_option_name_cb make_option_name_cb, diagnostic_make_option_url_cb make_option_url_cb, unsigned lang_mask)
Definition diagnostic.cc:424
void set_escape_format(enum diagnostics_escape_format val)
Definition diagnostic.h:476
bool diagnostic_enabled(diagnostic_info *diagnostic)
Definition diagnostic.cc:1452
void(* set_locations_callback_t)(diagnostic_context *, diagnostic_info *)
Definition diagnostic.h:385
bool m_show_option_requested
Definition diagnostic.h:625
void show_locus(const rich_location &richloc, diagnostic_t diagnostic_kind, pretty_printer *pp, diagnostic_source_effect_info *effect_info)
Definition diagnostic-show-locus.cc:3214
void set_set_locations_callback(set_locations_callback_t cb)
Definition diagnostic.h:394
bool m_report_bug
Definition diagnostic.h:739
void maybe_show_locus(const rich_location &richloc, diagnostic_t diagnostic_kind, pretty_printer *pp, diagnostic_source_effect_info *effect_info)
Definition diagnostic-show-locus.cc:3181
edit_context * get_edit_context() const
Definition diagnostic.h:504
void set_path_format(enum diagnostic_path_format val)
Definition diagnostic.h:469
void set_max_errors(int val)
Definition diagnostic.h:475
diagnostic_start_span_fn m_start_span
Definition diagnostic.h:671
enum diagnostics_extra_output_kind m_extra_output_kind
Definition diagnostic.h:744
hash_set< location_t, false, location_hash > * m_includes_seen
Definition diagnostic.h:790
bool m_inhibit_warnings
Definition diagnostic.h:648
int m_emission_count
Definition diagnostic.h:772
bool m_show_column
Definition diagnostic.h:632
void set_urlifier(urlifier *)
Definition diagnostic.cc:438
const line_map_ordinary * m_last_module
Definition diagnostic.h:728
int converted_column(expanded_location s) const
Definition diagnostic.cc:531
diagnostic_option_classifier m_option_classifier
Definition diagnostic.h:608
bool m_show_path_depths
Definition diagnostic.h:621
int & diagnostic_count(diagnostic_t kind)
Definition diagnostic.h:516
void push_diagnostics(location_t where)
Definition diagnostic.h:431
void begin_group()
Definition diagnostic.cc:2360
diagnostic_output_format * m_output_format
Definition diagnostic.h:777
enum diagnostics_escape_format m_escape_format
Definition diagnostic.h:759
set_locations_callback_t m_set_locations_cb
Definition diagnostic.h:783
struct diagnostic_context::@15 m_option_callbacks
friend diagnostic_starter_fn & diagnostic_starter(diagnostic_context *context)
Definition diagnostic.h:818
diagnostic_t classify_diagnostic(int option_index, diagnostic_t new_kind, location_t where)
Definition diagnostic.h:421
void print_any_cwe(const diagnostic_info &diagnostic)
Definition diagnostic.cc:1344
void set_show_path_depths(bool val)
Definition diagnostic.h:473
const diagnostic_client_data_hooks * get_client_data_hooks()
Definition diagnostic.h:508
void print_option_information(const diagnostic_info &diagnostic, diagnostic_t orig_diag_kind)
Definition diagnostic.cc:1421
diagnostic_make_option_url_cb m_make_option_url_cb
Definition diagnostic.h:704
urlifier * m_urlifier
Definition diagnostic.h:712
bool m_warn_system_headers
Definition diagnostic.h:651
enum diagnostic_path_format get_path_format() const
Definition diagnostic.h:491
diagnostic_client_data_hooks * m_client_data_hooks
Definition diagnostic.h:796
diagnostic_starter_fn m_begin_diagnostic
Definition diagnostic.h:666
void(* m_internal_error)(diagnostic_context *, const char *, va_list *)
Definition diagnostic.h:679
bool m_show_cwe
Definition diagnostic.h:612
void(* ice_handler_callback_t)(diagnostic_context *)
Definition diagnostic.h:384
void set_client_data_hooks(diagnostic_client_data_hooks *hooks)
Definition diagnostic.cc:415
char * make_option_name(int option_index, diagnostic_t orig_diag_kind, diagnostic_t diag_kind) const
Definition diagnostic.h:532
void * m_client_aux_data
Definition diagnostic.h:720
void set_warning_as_error_requested(bool val)
Definition diagnostic.h:458
location_t m_last_location
Definition diagnostic.h:723
label_text get_location_text(const expanded_location &s) const
Definition diagnostic.cc:565
void check_max_errors(bool flush)
Definition diagnostic.cc:718
friend diagnostic_start_span_fn & diagnostic_start_span(diagnostic_context *context)
Definition diagnostic.h:827
diagnostic_finalizer_fn m_end_diagnostic
Definition diagnostic.h:674
ice_handler_callback_t m_ice_handler_cb
Definition diagnostic.h:786
bool includes_seen_p(const line_map_ordinary *map)
Definition diagnostic.cc:818
unsigned get_lang_mask() const
Definition diagnostic.h:558
enum diagnostics_escape_format get_escape_format() const
Definition diagnostic.h:492
void set_text_art_charset(enum diagnostic_text_art_charset charset)
Definition diagnostic.cc:2491
text_art::theme * m_theme
Definition diagnostic.h:803
bool m_inhibit_notes_p
Definition diagnostic.h:733
bool show_path_depths_p() const
Definition diagnostic.h:490
void * m_option_state
Definition diagnostic.h:690
void color_init(int value)
Definition diagnostic.cc:298
bool m_warning_as_error_requested
Definition diagnostic.h:601
pretty_printer * printer
Definition diagnostic.h:591
friend diagnostic_finalizer_fn & diagnostic_finalizer(diagnostic_context *context)
Definition diagnostic.h:835
bool option_unspecified_p(int opt) const
Definition diagnostic.h:408
bool option_enabled_p(int option_index) const
Definition diagnostic.h:522
void set_show_option_requested(bool val)
Definition diagnostic.h:474
void urls_init(int value)
Definition diagnostic.cc:325
bool report_diagnostic(diagnostic_info *)
Definition diagnostic.cc:1517
int m_n_opts
Definition diagnostic.h:605
int m_diagnostic_count[DK_LAST_DIAGNOSTIC_KIND]
Definition diagnostic.h:598
void print_any_rules(const diagnostic_info &diagnostic)
Definition diagnostic.cc:1379
file_cache & get_file_cache() const
Definition diagnostic.h:498
void pop_diagnostics(location_t where)
Definition diagnostic.h:435
diagnostic_make_option_name_cb m_make_option_name_cb
Definition diagnostic.h:698
bool m_pedantic_errors
Definition diagnostic.h:635
text_art::theme * get_diagram_theme() const
Definition diagnostic.h:512
int m_column_origin
Definition diagnostic.h:751
bool m_fatal_errors
Definition diagnostic.h:645
bool m_permissive
Definition diagnostic.h:638
const diagnostic_output_format * get_output_format() const
Definition diagnostic.h:447
unsigned m_lang_mask
Definition diagnostic.h:707
void create_edit_context()
Definition diagnostic.cc:446
enum diagnostics_column_unit m_column_unit
Definition diagnostic.h:748
int m_nesting_depth
Definition diagnostic.h:768
void emit_diagram(const diagnostic_diagram &diagram)
Definition diagnostic.cc:2258
int m_lock
Definition diagnostic.h:730
void set_ice_handler_callback(ice_handler_callback_t cb)
Definition diagnostic.h:480
diagnostic_option_enabled_cb m_option_enabled_cb
Definition diagnostic.h:686
void set_report_bug(bool val)
Definition diagnostic.h:462
bool m_show_rules
Definition diagnostic.h:615
void set_show_cwe(bool val)
Definition diagnostic.h:467
struct diagnostic_context::@16 m_diagnostic_groups
void(* m_print_path)(diagnostic_context *, const diagnostic_path *)
Definition diagnostic.h:715
int m_max_errors
Definition diagnostic.h:655
bool m_abort_on_error
Definition diagnostic.h:629
bool warning_enabled_at(location_t loc, int opt)
Definition diagnostic.cc:1496
struct diagnostic_context::@17 m_diagrams
edit_context * m_edit_context_ptr
Definition diagnostic.h:763
diagnostic_source_printing_options m_source_printing
Definition diagnostic.h:735
int m_opt_permissive
Definition diagnostic.h:642
bool warning_as_error_requested_p() const
Definition diagnostic.h:486
void set_extra_output_kind(enum diagnostics_extra_output_kind kind)
Definition diagnostic.h:463
void set_output_format(diagnostic_output_format *output_format)
Definition diagnostic.cc:407
char * make_option_url(int option_index) const
Definition diagnostic.h:543
void initialize_input_context(diagnostic_input_charset_callback ccb, bool should_skip_bom)
Definition diagnostic.cc:353
Definition diagnostic-diagram.h:33
Definition diagnostic-metadata.h:33
Definition diagnostic.h:254
void push()
Definition diagnostic.cc:175
diagnostic_t update_effective_level_from_pragmas(diagnostic_info *diagnostic) const
Definition diagnostic.cc:1285
void fini()
Definition diagnostic.cc:164
int m_n_opts
Definition diagnostic.h:297
void pop(location_t where)
Definition diagnostic.cc:185
bool option_unspecified_p(int opt) const
Definition diagnostic.h:266
diagnostic_t * m_classify_diagnostic
Definition diagnostic.h:305
diagnostic_t get_current_override(int opt) const
Definition diagnostic.h:271
diagnostic_classification_change_t * m_classification_history
Definition diagnostic.h:312
int * m_push_list
Definition diagnostic.h:318
int m_n_classification_history
Definition diagnostic.h:315
diagnostic_t classify_diagnostic(const diagnostic_context *context, int option_index, diagnostic_t new_kind, location_t where)
Definition diagnostic.cc:1116
void init(int n_opts)
Definition diagnostic.cc:153
int m_n_push
Definition diagnostic.h:319
Definition diagnostic.h:204
virtual void on_end_group()=0
virtual bool machine_readable_stderr_p() const =0
diagnostic_output_format(diagnostic_context &context)
Definition diagnostic.h:217
virtual void on_diagram(const diagnostic_diagram &diagram)=0
virtual void on_begin_group()=0
virtual ~diagnostic_output_format()
Definition diagnostic.h:206
virtual void on_end_diagnostic(const diagnostic_info &, diagnostic_t orig_diag_kind)=0
virtual void on_begin_diagnostic(const diagnostic_info &)=0
diagnostic_context & m_context
Definition diagnostic.h:221
Definition diagnostic-path.h:188
Definition diagnostic-label-effects.h:41
Definition diagnostic.h:231
void on_begin_diagnostic(const diagnostic_info &) override
Definition diagnostic.cc:2417
void on_begin_group() override
Definition diagnostic.h:237
void on_end_diagnostic(const diagnostic_info &, diagnostic_t orig_diag_kind) override
Definition diagnostic.cc:2423
bool machine_readable_stderr_p() const final override
Definition diagnostic.h:243
void on_end_group() override
Definition diagnostic.h:238
diagnostic_text_output_format(diagnostic_context &context)
Definition diagnostic.h:233
~diagnostic_text_output_format()
Definition diagnostic.cc:2397
void on_diagram(const diagnostic_diagram &diagram) override
Definition diagnostic.cc:2431
Definition edit-context.h:44
Definition input.h:136
Definition hash-set.h:37
Definition json.h:79
Definition logical-location.h:52
Definition pretty-print.h:244
Definition pretty-print-urlifier.h:27
const char *(* diagnostic_input_charset_callback)(const char *)
Definition coretypes.h:163
static struct string2counter_map map[debug_counter_number_of_counters]
Definition dbgcnt.cc:39
void ATTRIBUTE_NORETURN
Definition diagnostic-core.h:72
diagnostic_t
Definition diagnostic-core.h:29
@ DK_LAST_DIAGNOSTIC_KIND
Definition diagnostic-core.h:33
#define ATTRIBUTE_GCC_DIAG(m, n)
Definition diagnostic-core.h:67
void diagnostic_set_caret_max_width(diagnostic_context *context, int value)
Definition diagnostic.cc:139
void diagnostic_set_info(diagnostic_info *, const char *, va_list *, rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2
void diagnostic_output_format_init_sarif_stream(diagnostic_context *context, bool formatted, FILE *stream)
Definition diagnostic-format-sarif.cc:1848
char * get_cwe_url(int cwe)
Definition diagnostic.cc:1332
location_t diagnostic_location(const diagnostic_info *diagnostic, int which=0)
Definition diagnostic.h:1036
const int CARET_LINE_MARGIN
Definition diagnostic.h:1062
diagnostics_escape_format
Definition diagnostic.h:51
@ DIAGNOSTICS_ESCAPE_FORMAT_BYTES
Definition diagnostic.h:58
@ DIAGNOSTICS_ESCAPE_FORMAT_UNICODE
Definition diagnostic.h:54
void diagnostic_output_format_init_json_file(diagnostic_context *context, bool formatted, const char *base_file_name)
Definition diagnostic-format-json.cc:396
char *(* diagnostic_make_option_url_cb)(const diagnostic_context *, int, unsigned)
Definition diagnostic.h:188
void void void diagnostic_append_note(diagnostic_context *, location_t, const char *,...) ATTRIBUTE_GCC_DIAG(3
char * file_name_as_prefix(diagnostic_context *, const char *)
Definition diagnostic.cc:104
int(* diagnostic_option_enabled_cb)(int, unsigned, void *)
Definition diagnostic.h:183
void void void char * diagnostic_build_prefix(diagnostic_context *, const diagnostic_info *)
Definition diagnostic.cc:596
void diagnostic_report_current_module(diagnostic_context *context, location_t where)
Definition diagnostic.h:921
diagnostic_text_art_charset
Definition diagnostic.h:117
@ DIAGNOSTICS_TEXT_ART_CHARSET_ASCII
Definition diagnostic.h:122
@ DIAGNOSTICS_TEXT_ART_CHARSET_NONE
Definition diagnostic.h:119
@ DIAGNOSTICS_TEXT_ART_CHARSET_UNICODE
Definition diagnostic.h:126
@ DIAGNOSTICS_TEXT_ART_CHARSET_EMOJI
Definition diagnostic.h:129
diagnostic_path_format
Definition diagnostic.h:83
@ DPF_NONE
Definition diagnostic.h:85
@ DPF_SEPARATE_EVENTS
Definition diagnostic.h:89
@ DPF_INLINE_EVENTS
Definition diagnostic.h:95
void diagnostic_initialize_input_context(diagnostic_context *context, diagnostic_input_charset_callback ccb, bool should_skip_bom)
Definition diagnostic.h:954
diagnostics_extra_output_kind
Definition diagnostic.h:102
@ EXTRA_DIAGNOSTIC_OUTPUT_none
Definition diagnostic.h:104
@ EXTRA_DIAGNOSTIC_OUTPUT_fixits_v2
Definition diagnostic.h:111
@ EXTRA_DIAGNOSTIC_OUTPUT_fixits_v1
Definition diagnostic.h:108
void default_diagnostic_start_span_fn(diagnostic_context *, expanded_location)
Definition diagnostic.cc:1089
diagnostics_output_format
Definition diagnostic.h:64
@ DIAGNOSTICS_OUTPUT_FORMAT_SARIF_FILE
Definition diagnostic.h:78
@ DIAGNOSTICS_OUTPUT_FORMAT_JSON_STDERR
Definition diagnostic.h:69
@ DIAGNOSTICS_OUTPUT_FORMAT_TEXT
Definition diagnostic.h:66
@ DIAGNOSTICS_OUTPUT_FORMAT_SARIF_STDERR
Definition diagnostic.h:75
@ DIAGNOSTICS_OUTPUT_FORMAT_JSON_FILE
Definition diagnostic.h:72
void diagnostic_urls_init(diagnostic_context *context, int value=-1)
Definition diagnostic.h:909
void diagnostic_output_format_init_sarif_stderr(diagnostic_context *context, bool formatted)
Definition diagnostic-format-sarif.cc:1822
void diagnostic_abort_on_error(diagnostic_context *context)
Definition diagnostic.h:852
void diagnostic_output_format_init_sarif_file(diagnostic_context *context, bool formatted, const char *base_file_name)
Definition diagnostic-format-sarif.cc:1835
void diagnostic_inhibit_notes(diagnostic_context *context)
Definition diagnostic.h:809
int get_terminal_width(void)
Definition diagnostic.cc:118
void default_diagnostic_finalizer(diagnostic_context *, const diagnostic_info *, diagnostic_t)
Definition diagnostic.cc:1098
diagnostic_t diagnostic_classify_diagnostic(diagnostic_context *context, int optidx, diagnostic_t kind, location_t where)
Definition diagnostic.h:963
diagnostic_starter_fn & diagnostic_starter(diagnostic_context *context)
Definition diagnostic.h:818
const char * diagnostic_get_color_for_kind(diagnostic_t kind)
Definition diagnostic.cc:493
void(* diagnostic_start_span_fn)(diagnostic_context *, expanded_location)
Definition diagnostic.h:176
bool option_unspecified_p(int opt)
Definition diagnostic.h:1115
void(* diagnostic_finalizer_fn)(diagnostic_context *, const diagnostic_info *, diagnostic_t)
Definition diagnostic.h:179
bool diagnostic_ready_p()
Definition diagnostic.h:865
diagnostics_column_unit
Definition diagnostic.h:39
@ DIAGNOSTICS_COLUMN_UNIT_BYTE
Definition diagnostic.h:44
@ DIAGNOSTICS_COLUMN_UNIT_DISPLAY
Definition diagnostic.h:41
expanded_location diagnostic_expand_location(const diagnostic_info *diagnostic, int which=0)
Definition diagnostic.h:1054
void diagnostic_action_after_output(diagnostic_context *context, diagnostic_t diag_kind)
Definition diagnostic.h:1018
diagnostic_start_span_fn & diagnostic_start_span(diagnostic_context *context)
Definition diagnostic.h:827
int num_digits(int)
Definition diagnostic.cc:1658
json::value * json_from_expanded_location(diagnostic_context *context, location_t loc)
Definition diagnostic-format-json.cc:96
diagnostic_finalizer_fn & diagnostic_finalizer(diagnostic_context *context)
Definition diagnostic.h:835
void diagnostic_output_format_init(diagnostic_context *, const char *base_file_name, enum diagnostics_output_format, bool json_formatting)
Definition diagnostic.cc:2448
char * build_message_string(const char *,...) ATTRIBUTE_PRINTF_1
Definition diagnostic.cc:90
char *(* diagnostic_make_option_name_cb)(const diagnostic_context *, int, diagnostic_t, diagnostic_t)
Definition diagnostic.h:184
void diagnostic_finish(diagnostic_context *context)
Definition diagnostic.h:915
diagnostic_context * global_dc
Definition diagnostic.cc:85
void(* diagnostic_starter_fn)(diagnostic_context *, const diagnostic_info *)
Definition diagnostic.h:173
void diagnostic_check_max_errors(diagnostic_context *context, bool flush=false)
Definition diagnostic.h:1025
unsigned int diagnostic_num_locations(const diagnostic_info *diagnostic)
Definition diagnostic.h:1044
void diagnostic_initialize(diagnostic_context *context, int n_opts)
Definition diagnostic.h:897
void default_diagnostic_starter(diagnostic_context *, const diagnostic_info *)
Definition diagnostic.cc:1080
void diagnostic_color_init(diagnostic_context *context, int value=-1)
Definition diagnostic.h:903
bool warning_enabled_at(location_t loc, int opt)
Definition diagnostic.h:1109
void void diagnostic_set_info_translated(diagnostic_info *, const char *, va_list *, rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2
void diagnostic_pop_diagnostics(diagnostic_context *context, location_t where)
Definition diagnostic.h:978
void diagnostic_show_locus(diagnostic_context *context, rich_location *richloc, diagnostic_t diagnostic_kind, pretty_printer *pp=nullptr, diagnostic_source_effect_info *effect_info=nullptr)
Definition diagnostic.h:928
void diagnostic_push_diagnostics(diagnostic_context *context, location_t where)
Definition diagnostic.h:972
bool diagnostic_same_line(const diagnostic_context *context, expanded_location s1, expanded_location s2)
Definition diagnostic.h:1069
bool diagnostic_report_diagnostic(diagnostic_context *context, diagnostic_info *diagnostic)
Definition diagnostic.h:992
void diagnostic_override_option_index(diagnostic_info *info, int optidx)
Definition diagnostic.h:889
void diagnostic_output_format_init_json_stderr(diagnostic_context *context, bool formatted)
Definition diagnostic-format-json.cc:384
void final(rtx_insn *first, FILE *file, int optimize_p)
Definition final.cc:2002
static const char * base_file_name(const char *file_name)
Definition genautomata.cc:9224
T * ggc_alloc(ALONE_CXX_MEM_STAT_INFO)
Definition ggc.h:184
Definition diagnostic.h:193
Definition diagnostic-diagram.h:25
Definition diagnostic.h:162
void * m_ao
Definition diagnostic.h:166
auto_vec< location_t, 8 > m_ilocs
Definition diagnostic.h:164
bool m_allsyslocs
Definition diagnostic.h:168
Definition diagnostic.h:136
const diagnostic_metadata * metadata
Definition diagnostic.h:150
diagnostic_info()
Definition diagnostic.h:137
void * x_data
Definition diagnostic.h:153
diagnostic_t kind
Definition diagnostic.h:155
int option_index
Definition diagnostic.h:157
struct diagnostic_info::inlining_info m_iinfo
text_info message
Definition diagnostic.h:143
rich_location * richloc
Definition diagnostic.h:146
Definition diagnostic.h:326
bool enabled
Definition diagnostic.h:330
bool show_line_numbers_p
Definition diagnostic.h:354
bool show_event_links_p
Definition diagnostic.h:368
int max_width
Definition diagnostic.h:333
char caret_chars[rich_location::STATICALLY_ALLOCATED_RANGES]
Definition diagnostic.h:336
bool show_ruler_p
Definition diagnostic.h:363
bool show_labels_p
Definition diagnostic.h:349
bool colorize_source_p
Definition diagnostic.h:345
int min_margin_width
Definition diagnostic.h:359
Definition pretty-print.h:34
#define gcc_assert(EXPR)
Definition system.h:821