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
177 expanded_location);
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 &,
212 diagnostic_t orig_diag_kind) = 0;
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;
241 diagnostic_t orig_diag_kind) override;
242 void on_diagram (const diagnostic_diagram &diagram) override;
243 bool machine_readable_stderr_p () const final 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,
280 diagnostic_t new_kind,
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
415 void report_current_module (location_t where);
416
417 void check_max_errors (bool flush);
418 void action_after_output (diagnostic_t diag_kind);
419
421 classify_diagnostic (int option_index,
422 diagnostic_t new_kind,
423 location_t where)
424 {
426 option_index,
427 new_kind,
428 where);
429 }
430
431 void push_diagnostics (location_t where ATTRIBUTE_UNUSED)
432 {
434 }
435 void pop_diagnostics (location_t where)
436 {
437 m_option_classifier.pop (where);
438 }
439
440 void maybe_show_locus (const rich_location &richloc,
441 diagnostic_t diagnostic_kind,
442 pretty_printer *pp,
443 diagnostic_source_effect_info *effect_info);
444
445 void emit_diagram (const diagnostic_diagram &diagram);
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 {
472 }
474 {
475 m_path_format = val;
476 }
477 void set_show_path_depths (bool val) { m_show_path_depths = val; }
479 void set_max_errors (int val) { m_max_errors = val; }
481 {
482 m_escape_format = val;
483 }
488
489 /* Various accessors. */
491 {
493 }
494 bool show_path_depths_p () const { return m_show_path_depths; }
497 {
498 return m_escape_format;
499 }
500
501 file_cache &
503 {
505 return *m_file_cache;
506 }
507
509 {
510 return m_edit_context_ptr;
511 }
516 text_art::theme *get_diagram_theme () const { return m_diagrams.m_theme; }
517
518 int converted_column (expanded_location s) const;
519
521 {
522 return m_diagnostic_count[kind];
523 }
524
525 /* Option-related member functions. */
526 inline bool option_enabled_p (int option_index) const
527 {
528 if (!m_option_callbacks.m_option_enabled_cb)
529 return true;
530 return m_option_callbacks.m_option_enabled_cb
531 (option_index,
532 m_option_callbacks.m_lang_mask,
533 m_option_callbacks.m_option_state);
534 }
535
536 inline char *make_option_name (int option_index,
537 diagnostic_t orig_diag_kind,
538 diagnostic_t diag_kind) const
539 {
540 if (!m_option_callbacks.m_make_option_name_cb)
541 return nullptr;
542 return m_option_callbacks.m_make_option_name_cb (this, option_index,
543 orig_diag_kind,
544 diag_kind);
545 }
546
547 inline char *make_option_url (int option_index) const
548 {
549 if (!m_option_callbacks.m_make_option_url_cb)
550 return nullptr;
551 return m_option_callbacks.m_make_option_url_cb (this, option_index,
552 get_lang_mask ());
553 }
554
555 void
557 void *option_state,
558 diagnostic_make_option_name_cb make_option_name_cb,
559 diagnostic_make_option_url_cb make_option_url_cb,
560 unsigned lang_mask);
561
562 unsigned get_lang_mask () const
563 {
564 return m_option_callbacks.m_lang_mask;
565 }
566
567 label_text get_location_text (const expanded_location &s) const;
568
569 bool diagnostic_impl (rich_location *, const diagnostic_metadata *,
570 int, const char *,
571 va_list *, diagnostic_t) ATTRIBUTE_GCC_DIAG(5,0);
572 bool diagnostic_n_impl (rich_location *, const diagnostic_metadata *,
573 int, unsigned HOST_WIDE_INT,
574 const char *, const char *, va_list *,
576
577private:
578 bool includes_seen_p (const line_map_ordinary *map);
579
580 void print_any_cwe (const diagnostic_info &diagnostic);
581 void print_any_rules (const diagnostic_info &diagnostic);
582 void print_option_information (const diagnostic_info &diagnostic,
583 diagnostic_t orig_diag_kind);
584
585 void show_any_path (const diagnostic_info &diagnostic);
586
588
589 bool diagnostic_enabled (diagnostic_info *diagnostic);
590
591 void get_any_inlining_info (diagnostic_info *diagnostic);
592
593 void show_locus (const rich_location &richloc,
594 diagnostic_t diagnostic_kind,
595 pretty_printer *pp,
596 diagnostic_source_effect_info *effect_info);
597
598 void print_path (const diagnostic_path &path);
599
600 /* Data members.
601 Ideally, all of these would be private and have "m_" prefixes. */
602
603public:
604 /* Where most of the diagnostic formatting work is done. */
606
607private:
608 /* Cache of source code. */
610
611 /* The number of times we have issued diagnostics. */
613
614 /* True if it has been requested that warnings be treated as errors. */
616
617 /* The number of option indexes that can be passed to warning() et
618 al. */
620
621 /* The stack of sets of overridden diagnostic option severities. */
623
624 /* True if we should print any CWE identifiers associated with
625 diagnostics. */
627
628 /* True if we should print any rules associated with diagnostics. */
630
631 /* How should diagnostic_path objects be printed. */
633
634 /* True if we should print stack depths when printing diagnostic paths. */
636
637 /* True if we should print the command line option which controls
638 each diagnostic, if known. */
640
641public:
642 /* True if we should raise a SIGABRT on errors. */
644
645 /* True if we should show the column number on diagnostics. */
647
648 /* True if pedwarns are errors. */
650
651 /* True if permerrors are warnings. */
653
654 /* The index of the option to associate with turning permerrors into
655 warnings. */
657
658 /* True if errors are fatal. */
660
661 /* True if all warnings should be disabled. */
663
664 /* True if warnings should be given in system headers. */
666
667private:
668 /* Maximum number of errors to report. */
670
671 /* Client-supplied callbacks for use in text output. */
672 struct {
673 /* This function is called before any message is printed out. It is
674 responsible for preparing message prefix and such. For example, it
675 might say:
676 In file included from "/usr/local/include/curses.h:5:
677 from "/home/gdr/src/nifty_printer.h:56:
678 ...
679 */
681
682 /* This function is called by diagnostic_show_locus in between
683 disjoint spans of source code, so that the context can print
684 something to indicate that a new span of source code has begun. */
686
687 /* This function is called after the diagnostic message is printed. */
690
691public:
692 /* Client hook to report an internal error. */
693 void (*m_internal_error) (diagnostic_context *, const char *, va_list *);
694
695private:
696 /* Client-supplied callbacks for working with options. */
697 struct {
698 /* Client hook to say whether the option controlling a diagnostic is
699 enabled. Returns nonzero if enabled, zero if disabled. */
701
702 /* Client information to pass as second argument to
703 m_option_enabled_cb. */
705
706 /* Client hook to return the name of an option that controls a
707 diagnostic. Returns malloced memory. The first diagnostic_t
708 argument is the kind of diagnostic before any reclassification
709 (of warnings as errors, etc.); the second is the kind after any
710 reclassification. May return NULL if no name is to be printed.
711 May be passed 0 as well as the index of a particular option. */
713
714 /* Client hook to return a URL describing the option that controls
715 a diagnostic. Returns malloced memory. May return NULL if no URL
716 is available. May be passed 0 as well as the index of a
717 particular option. */
719
720 /* A copy of lang_hooks.option_lang_mask (). */
721 unsigned m_lang_mask;
723
724 /* An optional hook for adding URLs to quoted text strings in
725 diagnostics. Only used for the main diagnostic message. */
727
728public:
729 /* Auxiliary data for client. */
731
732 /* Used to detect that the last caret was printed at the same location. */
733 location_t m_last_location;
734
735private:
736 /* Used to detect when the input file stack has changed since last
737 described. */
738 const line_map_ordinary *m_last_module;
739
741
742public:
744
746
747private:
748 /* True if -freport-bug option is used. */
750
751 /* Used to specify additional diagnostic output to be emitted after the
752 rest of the diagnostic. This is for implementing
753 -fdiagnostics-parseable-fixits and GCC_EXTRA_DIAGNOSTIC_OUTPUT. */
755
756public:
757 /* What units to use when outputting the column number. */
759
760 /* The origin for the column number (1-based or 0-based typically). */
762
763 /* The size of the tabstop for tab expansion. */
765
766private:
767 /* How should non-ASCII/non-printable bytes be escaped when
768 a diagnostic suggests escaping the source code on output. */
770
771 /* If non-NULL, an edit_context to which fix-it hints should be
772 applied, for generating patches. */
774
775 /* Fields relating to diagnostic groups. */
776 struct {
777 /* How many diagnostic_group instances are currently alive. */
779
780 /* How many diagnostics have been emitted since the bottommost
781 diagnostic_group was pushed. */
784
785 /* How to output diagnostics (text vs a structured format such as JSON).
786 Must be non-NULL; owned by context. */
788
789 /* Callback to set the locations of call sites along the inlining
790 stack corresponding to a diagnostic location. Needed to traverse
791 the BLOCK_SUPERCONTEXT() chain hanging off the LOCATION_BLOCK()
792 of a diagnostic's location. */
794
795 /* Optional callback for attempting to handle ICEs gracefully. */
797
798 /* Include files that diagnostic_report_current_module has already listed the
799 include path for. */
801
802 /* A bundle of hooks for providing data to the context about its client
803 e.g. version information, plugins, etc.
804 Used by SARIF output to give metadata about the client that's
805 producing diagnostics. */
807
808 /* Support for diagrams. */
809 struct
810 {
811 /* Theme to use when generating diagrams.
812 Can be NULL (if text art is disabled). */
813 text_art::theme *m_theme;
814
816};
817
818inline void
820{
821 context->m_inhibit_notes_p = true;
822}
823
824
825/* Client supplied function to announce a diagnostic
826 (for text-based diagnostic output). */
832
833/* Client supplied function called between disjoint spans of source code,
834 so that the context can print
835 something to indicate that a new span of source code has begun. */
841
842/* Client supplied function called after a diagnostic message is
843 displayed (for text-based diagnostic output). */
849
850/* Extension hooks for client. */
851#define diagnostic_context_auxiliary_data(DC) (DC)->m_client_aux_data
852#define diagnostic_info_auxiliary_data(DI) (DI)->x_data
853
854/* Same as pp_format_decoder. Works on 'diagnostic_context *'. */
855#define diagnostic_format_decoder(DC) pp_format_decoder ((DC)->printer)
856
857/* Same as pp_prefixing_rule. Works on 'diagnostic_context *'. */
858#define diagnostic_prefixing_rule(DC) pp_prefixing_rule ((DC)->printer)
859
860/* Raise SIGABRT on any diagnostic of severity DK_ERROR or higher. */
861inline void
863{
864 context->m_abort_on_error = true;
865}
866
867/* This diagnostic_context is used by front-ends that directly output
868 diagnostic messages without going through `error', `warning',
869 and similar functions. */
871
872/* Returns whether the diagnostic framework has been intialized already and is
873 ready for use. */
874inline bool
876{
877 return global_dc->printer != nullptr;
878}
879
880/* The number of errors that have been issued so far. Ideally, these
881 would take a diagnostic_context as an argument. */
882#define errorcount global_dc->diagnostic_count (DK_ERROR)
883/* Similarly, but for warnings. */
884#define warningcount global_dc->diagnostic_count (DK_WARNING)
885/* Similarly, but for warnings promoted to errors. */
886#define werrorcount global_dc->diagnostic_count (DK_WERROR)
887/* Similarly, but for sorrys. */
888#define sorrycount global_dc->diagnostic_count (DK_SORRY)
889
890/* Returns nonzero if warnings should be emitted. */
891#define diagnostic_report_warnings_p(DC, LOC) \
892 (!(DC)->m_inhibit_warnings \
893 && !(in_system_header_at (LOC) && !(DC)->m_warn_system_headers))
894
895/* Override the option index to be used for reporting a
896 diagnostic. */
897
898inline void
900{
901 info->option_index = optidx;
902}
903
904/* Diagnostic related functions. */
905
906inline void
908{
909 context->initialize (n_opts);
910}
911
912inline void
914{
915 context->color_init (value);
916}
917
918inline void
919diagnostic_urls_init (diagnostic_context *context, int value = -1)
920{
921 context->urls_init (value);
922}
923
924inline void
926{
927 context->finish ();
928}
929
930inline void
932 location_t where)
933{
934 context->report_current_module (where);
935}
936
937inline void
939 rich_location *richloc,
940 diagnostic_t diagnostic_kind,
941 pretty_printer *pp = nullptr,
942 diagnostic_source_effect_info *effect_info = nullptr)
943{
944 gcc_assert (richloc);
945 context->maybe_show_locus (*richloc, diagnostic_kind, pp, effect_info);
946}
947
948/* Because we read source files a second time after the frontend did it the
949 first time, we need to know how the frontend handled things like character
950 set conversion and UTF-8 BOM stripping, in order to make everything
951 consistent. This function needs to be called by each frontend that requires
952 non-default behavior, to inform the diagnostics infrastructure how input is
953 to be processed. The default behavior is to do no conversion and not to
954 strip a UTF-8 BOM.
955
956 The callback should return the input charset to be used to convert the given
957 file's contents to UTF-8, or it should return NULL if no conversion is needed
958 for this file. SHOULD_SKIP_BOM only applies in case no conversion was
959 performed, and if true, it will cause a UTF-8 BOM to be skipped at the
960 beginning of the file. (In case a conversion was performed, the BOM is
961 rather skipped as part of the conversion process.) */
962
963inline void
966 bool should_skip_bom)
967{
968 context->initialize_input_context (ccb, should_skip_bom);
969}
970
971/* Force diagnostics controlled by OPTIDX to be kind KIND. */
972inline diagnostic_t
974 int optidx,
975 diagnostic_t kind,
976 location_t where)
977{
978 return context->classify_diagnostic (optidx, kind, where);
979}
980
981inline void
983 location_t where)
984{
985 context->push_diagnostics (where);
986}
987inline void
989 location_t where)
990{
991 context->pop_diagnostics (where);
992}
993
994/* Report a diagnostic message (an error or a warning) as specified by
995 DC. This function is *the* subroutine in terms of which front-ends
996 should implement their specific diagnostic handling modules. The
997 front-end independent format specifiers are exactly those described
998 in the documentation of output_format.
999 Return true if a diagnostic was printed, false otherwise. */
1000
1001inline bool
1003 diagnostic_info *diagnostic)
1004{
1005 return context->report_diagnostic (diagnostic);
1006}
1007
1008#ifdef ATTRIBUTE_GCC_DIAG
1009extern void diagnostic_set_info (diagnostic_info *, const char *, va_list *,
1010 rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2,0);
1012 va_list *, rich_location *,
1014 ATTRIBUTE_GCC_DIAG(2,0);
1016 const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
1017#endif
1021 expanded_location);
1023 const diagnostic_info *,
1024 diagnostic_t);
1025void diagnostic_set_caret_max_width (diagnostic_context *context, int value);
1026
1027inline void
1029 diagnostic_t diag_kind)
1030{
1031 context->action_after_output (diag_kind);
1032}
1033
1034inline void
1036{
1037 context->check_max_errors (flush);
1038}
1039
1040int get_terminal_width (void);
1041
1042/* Return the location associated to this diagnostic. Parameter WHICH
1043 specifies which location. By default, expand the first one. */
1044
1045inline location_t
1046diagnostic_location (const diagnostic_info * diagnostic, int which = 0)
1047{
1048 return diagnostic->message.get_location (which);
1049}
1050
1051/* Return the number of locations to be printed in DIAGNOSTIC. */
1052
1053inline unsigned int
1055{
1056 return diagnostic->message.m_richloc->get_num_locations ();
1057}
1058
1059/* Expand the location of this diagnostic. Use this function for
1060 consistency. Parameter WHICH specifies which location. By default,
1061 expand the first one. */
1062
1063inline expanded_location
1064diagnostic_expand_location (const diagnostic_info * diagnostic, int which = 0)
1065{
1066 return diagnostic->richloc->get_expanded_location (which);
1067}
1068
1069/* This is somehow the right-side margin of a caret line, that is, we
1070 print at least these many characters after the position pointed at
1071 by the caret. */
1072const int CARET_LINE_MARGIN = 10;
1073
1074/* Return true if the two locations can be represented within the same
1075 caret line. This is used to build a prefix and also to determine
1076 whether to print one or two caret lines. */
1077
1078inline bool
1080 expanded_location s1, expanded_location s2)
1081{
1082 return (s2.column && s1.line == s2.line
1084 > abs (s1.column - s2.column)));
1085}
1086
1087extern const char *diagnostic_get_color_for_kind (diagnostic_t kind);
1088
1089/* Pure text formatting support functions. */
1090extern char *file_name_as_prefix (diagnostic_context *, const char *);
1091
1092extern char *build_message_string (const char *, ...) ATTRIBUTE_PRINTF_1;
1093
1095 const char *main_input_filename_,
1096 const char *base_file_name,
1098 bool json_formatting);
1100 bool formatted);
1102 bool formatted,
1103 const char *base_file_name);
1105 const char *main_input_filename_,
1106 bool formatted);
1108 const char *main_input_filename_,
1109 bool formatted,
1110 const char *base_file_name);
1112 const char *main_input_filename_,
1113 bool formatted,
1114 FILE *stream);
1115
1116/* Compute the number of digits in the decimal representation of an integer. */
1117extern int num_digits (int);
1118
1119extern json::value *json_from_expanded_location (diagnostic_context *context,
1120 location_t loc);
1121
1122inline bool
1123warning_enabled_at (location_t loc, int opt)
1124{
1125 return global_dc->warning_enabled_at (loc, opt);
1126}
1127
1128inline bool
1130{
1131 return global_dc->option_unspecified_p (opt);
1132}
1133
1134extern char *get_cwe_url (int cwe);
1135
1136extern const char *get_diagnostic_kind_text (diagnostic_t kind);
1137
1138#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:733
int m_tabstop
Definition diagnostic.h:764
void initialize(int n_opts)
Definition diagnostic.cc:191
file_cache * m_file_cache
Definition diagnostic.h:609
void set_show_rules(bool val)
Definition diagnostic.h:468
void get_any_inlining_info(diagnostic_info *diagnostic)
Definition diagnostic.cc:1115
enum diagnostic_path_format m_path_format
Definition diagnostic.h:632
void finish()
Definition diagnostic.cc:346
void show_any_path(const diagnostic_info &diagnostic)
Definition diagnostic.cc:903
void end_group()
Definition diagnostic.cc:1737
void error_recursion() ATTRIBUTE_NORETURN
Definition diagnostic.cc:1669
void report_current_module(location_t where)
Definition diagnostic.cc:833
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:408
void set_escape_format(enum diagnostics_escape_format val)
Definition diagnostic.h:480
bool diagnostic_enabled(diagnostic_info *diagnostic)
Definition diagnostic.cc:1311
void(* set_locations_callback_t)(diagnostic_context *, diagnostic_info *)
Definition diagnostic.h:385
bool m_show_option_requested
Definition diagnostic.h:639
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:3249
void set_set_locations_callback(set_locations_callback_t cb)
Definition diagnostic.h:394
bool m_report_bug
Definition diagnostic.h:749
bool bool diagnostic_n_impl(rich_location *, const diagnostic_metadata *, int, unsigned HOST_WIDE_INT, const char *, const char *, va_list *, diagnostic_t) ATTRIBUTE_GCC_DIAG(7
Definition diagnostic.cc:1624
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:3216
edit_context * get_edit_context() const
Definition diagnostic.h:508
void set_path_format(enum diagnostic_path_format val)
Definition diagnostic.h:473
void set_max_errors(int val)
Definition diagnostic.h:479
diagnostic_start_span_fn m_start_span
Definition diagnostic.h:685
struct diagnostic_context::@19 m_diagrams
enum diagnostics_extra_output_kind m_extra_output_kind
Definition diagnostic.h:754
hash_set< location_t, false, location_hash > * m_includes_seen
Definition diagnostic.h:800
bool m_inhibit_warnings
Definition diagnostic.h:662
int m_emission_count
Definition diagnostic.h:782
bool m_show_column
Definition diagnostic.h:646
void set_urlifier(urlifier *)
Definition diagnostic.cc:422
const line_map_ordinary * m_last_module
Definition diagnostic.h:738
int converted_column(expanded_location s) const
Definition diagnostic.cc:515
diagnostic_option_classifier m_option_classifier
Definition diagnostic.h:622
bool m_show_path_depths
Definition diagnostic.h:635
int & diagnostic_count(diagnostic_t kind)
Definition diagnostic.h:520
void push_diagnostics(location_t where)
Definition diagnostic.h:431
void begin_group()
Definition diagnostic.cc:1731
diagnostic_output_format * m_output_format
Definition diagnostic.h:787
enum diagnostics_escape_format m_escape_format
Definition diagnostic.h:769
set_locations_callback_t m_set_locations_cb
Definition diagnostic.h:793
friend diagnostic_starter_fn & diagnostic_starter(diagnostic_context *context)
Definition diagnostic.h:828
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:1203
void set_show_path_depths(bool val)
Definition diagnostic.h:477
const diagnostic_client_data_hooks * get_client_data_hooks()
Definition diagnostic.h:512
void print_option_information(const diagnostic_info &diagnostic, diagnostic_t orig_diag_kind)
Definition diagnostic.cc:1280
diagnostic_make_option_url_cb m_make_option_url_cb
Definition diagnostic.h:718
urlifier * m_urlifier
Definition diagnostic.h:726
bool m_warn_system_headers
Definition diagnostic.h:665
enum diagnostic_path_format get_path_format() const
Definition diagnostic.h:495
diagnostic_client_data_hooks * m_client_data_hooks
Definition diagnostic.h:806
bool diagnostic_impl(rich_location *, const diagnostic_metadata *, int, const char *, va_list *, diagnostic_t) ATTRIBUTE_GCC_DIAG(5
Definition diagnostic.cc:1599
diagnostic_starter_fn m_begin_diagnostic
Definition diagnostic.h:680
void(* m_internal_error)(diagnostic_context *, const char *, va_list *)
Definition diagnostic.h:693
bool m_show_cwe
Definition diagnostic.h:626
void(* ice_handler_callback_t)(diagnostic_context *)
Definition diagnostic.h:384
void set_client_data_hooks(diagnostic_client_data_hooks *hooks)
Definition diagnostic.cc:399
char * make_option_name(int option_index, diagnostic_t orig_diag_kind, diagnostic_t diag_kind) const
Definition diagnostic.h:536
void * m_client_aux_data
Definition diagnostic.h:730
void set_warning_as_error_requested(bool val)
Definition diagnostic.h:458
location_t m_last_location
Definition diagnostic.h:733
label_text get_location_text(const expanded_location &s) const
Definition diagnostic.cc:549
void check_max_errors(bool flush)
Definition diagnostic.cc:710
void print_path(const diagnostic_path &path)
Definition diagnostic-path.cc:1066
friend diagnostic_start_span_fn & diagnostic_start_span(diagnostic_context *context)
Definition diagnostic.h:837
diagnostic_finalizer_fn m_end_diagnostic
Definition diagnostic.h:688
ice_handler_callback_t m_ice_handler_cb
Definition diagnostic.h:796
bool includes_seen_p(const line_map_ordinary *map)
Definition diagnostic.cc:810
unsigned get_lang_mask() const
Definition diagnostic.h:562
enum diagnostics_escape_format get_escape_format() const
Definition diagnostic.h:496
void set_text_art_charset(enum diagnostic_text_art_charset charset)
Definition diagnostic.cc:1849
text_art::theme * m_theme
Definition diagnostic.h:813
bool m_inhibit_notes_p
Definition diagnostic.h:743
bool show_path_depths_p() const
Definition diagnostic.h:494
void * m_option_state
Definition diagnostic.h:704
void color_init(int value)
Definition diagnostic.cc:282
bool m_warning_as_error_requested
Definition diagnostic.h:615
pretty_printer * printer
Definition diagnostic.h:605
friend diagnostic_finalizer_fn & diagnostic_finalizer(diagnostic_context *context)
Definition diagnostic.h:845
bool option_unspecified_p(int opt) const
Definition diagnostic.h:408
bool option_enabled_p(int option_index) const
Definition diagnostic.h:526
void set_show_option_requested(bool val)
Definition diagnostic.h:478
void urls_init(int value)
Definition diagnostic.cc:309
bool report_diagnostic(diagnostic_info *)
Definition diagnostic.cc:1376
int m_n_opts
Definition diagnostic.h:619
int m_diagnostic_count[DK_LAST_DIAGNOSTIC_KIND]
Definition diagnostic.h:612
void print_any_rules(const diagnostic_info &diagnostic)
Definition diagnostic.cc:1238
file_cache & get_file_cache() const
Definition diagnostic.h:502
void pop_diagnostics(location_t where)
Definition diagnostic.h:435
diagnostic_make_option_name_cb m_make_option_name_cb
Definition diagnostic.h:712
struct diagnostic_context::@18 m_diagnostic_groups
bool m_pedantic_errors
Definition diagnostic.h:649
text_art::theme * get_diagram_theme() const
Definition diagnostic.h:516
int m_column_origin
Definition diagnostic.h:761
bool m_fatal_errors
Definition diagnostic.h:659
bool m_permissive
Definition diagnostic.h:652
const diagnostic_output_format * get_output_format() const
Definition diagnostic.h:447
struct diagnostic_context::@16 m_text_callbacks
unsigned m_lang_mask
Definition diagnostic.h:721
void create_edit_context()
Definition diagnostic.cc:430
enum diagnostics_column_unit m_column_unit
Definition diagnostic.h:758
int m_nesting_depth
Definition diagnostic.h:778
void emit_diagram(const diagnostic_diagram &diagram)
Definition diagnostic.cc:1654
int m_lock
Definition diagnostic.h:740
void set_ice_handler_callback(ice_handler_callback_t cb)
Definition diagnostic.h:484
diagnostic_option_enabled_cb m_option_enabled_cb
Definition diagnostic.h:700
void set_report_bug(bool val)
Definition diagnostic.h:462
struct diagnostic_context::@17 m_option_callbacks
bool m_show_rules
Definition diagnostic.h:629
void set_show_cwe(bool val)
Definition diagnostic.h:467
int m_max_errors
Definition diagnostic.h:669
bool m_abort_on_error
Definition diagnostic.h:643
bool warning_enabled_at(location_t loc, int opt)
Definition diagnostic.cc:1355
edit_context * m_edit_context_ptr
Definition diagnostic.h:773
diagnostic_source_printing_options m_source_printing
Definition diagnostic.h:745
int m_opt_permissive
Definition diagnostic.h:656
bool warning_as_error_requested_p() const
Definition diagnostic.h:490
void set_extra_output_kind(enum diagnostics_extra_output_kind kind)
Definition diagnostic.h:463
void set_show_highlight_colors(bool val)
Definition diagnostic.h:469
void set_output_format(diagnostic_output_format *output_format)
Definition diagnostic.cc:391
char * make_option_url(int option_index) const
Definition diagnostic.h:547
void initialize_input_context(diagnostic_input_charset_callback ccb, bool should_skip_bom)
Definition diagnostic.cc:337
Definition diagnostic-diagram.h:33
Definition diagnostic-metadata.h:33
Definition diagnostic.h:254
void push()
Definition diagnostic.cc:159
diagnostic_t update_effective_level_from_pragmas(diagnostic_info *diagnostic) const
Definition diagnostic.cc:1144
void fini()
Definition diagnostic.cc:148
int m_n_opts
Definition diagnostic.h:297
void pop(location_t where)
Definition diagnostic.cc:169
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:975
void init(int n_opts)
Definition diagnostic.cc:137
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:186
Definition diagnostic-label-effects.h:41
Definition diagnostic.h:231
void on_begin_diagnostic(const diagnostic_info &) override
Definition diagnostic.cc:1772
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:1778
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:1752
void on_diagram(const diagnostic_diagram &diagram) override
Definition diagnostic.cc:1786
Definition edit-context.h:44
Definition input.h:136
Definition hash-set.h:37
Definition json.h:79
Definition logical-location.h:55
Definition pretty-print.h:261
Definition pretty-print-urlifier.h:27
const char *(* diagnostic_input_charset_callback)(const char *)
Definition coretypes.h:164
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:123
void diagnostic_set_info(diagnostic_info *, const char *, va_list *, rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2
char * get_cwe_url(int cwe)
Definition diagnostic.cc:1191
location_t diagnostic_location(const diagnostic_info *diagnostic, int which=0)
Definition diagnostic.h:1046
const int CARET_LINE_MARGIN
Definition diagnostic.h:1072
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:422
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:88
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:588
void diagnostic_report_current_module(diagnostic_context *context, location_t where)
Definition diagnostic.h:931
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:964
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:948
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:919
void diagnostic_abort_on_error(diagnostic_context *context)
Definition diagnostic.h:862
void diagnostic_inhibit_notes(diagnostic_context *context)
Definition diagnostic.h:819
int get_terminal_width(void)
Definition diagnostic.cc:102
void default_diagnostic_finalizer(diagnostic_context *, const diagnostic_info *, diagnostic_t)
Definition diagnostic.cc:957
diagnostic_t diagnostic_classify_diagnostic(diagnostic_context *context, int optidx, diagnostic_t kind, location_t where)
Definition diagnostic.h:973
diagnostic_starter_fn & diagnostic_starter(diagnostic_context *context)
Definition diagnostic.h:828
const char * diagnostic_get_color_for_kind(diagnostic_t kind)
Definition diagnostic.cc:477
void(* diagnostic_start_span_fn)(diagnostic_context *, expanded_location)
Definition diagnostic.h:176
bool option_unspecified_p(int opt)
Definition diagnostic.h:1129
void(* diagnostic_finalizer_fn)(diagnostic_context *, const diagnostic_info *, diagnostic_t)
Definition diagnostic.h:179
void diagnostic_output_format_init_sarif_file(diagnostic_context *context, const char *main_input_filename_, bool formatted, const char *base_file_name)
Definition diagnostic-format-sarif.cc:2058
bool diagnostic_ready_p()
Definition diagnostic.h:875
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:1064
void diagnostic_action_after_output(diagnostic_context *context, diagnostic_t diag_kind)
Definition diagnostic.h:1028
diagnostic_start_span_fn & diagnostic_start_span(diagnostic_context *context)
Definition diagnostic.h:837
const char * get_diagnostic_kind_text(diagnostic_t kind)
Definition diagnostic.cc:579
int num_digits(int)
Definition diagnostic.cc:1518
json::value * json_from_expanded_location(diagnostic_context *context, location_t loc)
Definition diagnostic-format-json.cc:98
void diagnostic_output_format_init(diagnostic_context *, const char *main_input_filename_, const char *base_file_name, enum diagnostics_output_format, bool json_formatting)
Definition diagnostic.cc:1803
diagnostic_finalizer_fn & diagnostic_finalizer(diagnostic_context *context)
Definition diagnostic.h:845
char * build_message_string(const char *,...) ATTRIBUTE_PRINTF_1
Definition diagnostic.cc:74
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:925
diagnostic_context * global_dc
Definition diagnostic-global-context.cc:33
void(* diagnostic_starter_fn)(diagnostic_context *, const diagnostic_info *)
Definition diagnostic.h:173
void diagnostic_output_format_init_sarif_stderr(diagnostic_context *context, const char *main_input_filename_, bool formatted)
Definition diagnostic-format-sarif.cc:2042
void diagnostic_output_format_init_sarif_stream(diagnostic_context *context, const char *main_input_filename_, bool formatted, FILE *stream)
Definition diagnostic-format-sarif.cc:2074
void diagnostic_check_max_errors(diagnostic_context *context, bool flush=false)
Definition diagnostic.h:1035
unsigned int diagnostic_num_locations(const diagnostic_info *diagnostic)
Definition diagnostic.h:1054
void diagnostic_initialize(diagnostic_context *context, int n_opts)
Definition diagnostic.h:907
void default_diagnostic_starter(diagnostic_context *, const diagnostic_info *)
Definition diagnostic.cc:939
void diagnostic_color_init(diagnostic_context *context, int value=-1)
Definition diagnostic.h:913
bool warning_enabled_at(location_t loc, int opt)
Definition diagnostic.h:1123
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:988
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:938
void diagnostic_push_diagnostics(diagnostic_context *context, location_t where)
Definition diagnostic.h:982
bool diagnostic_same_line(const diagnostic_context *context, expanded_location s1, expanded_location s2)
Definition diagnostic.h:1079
bool diagnostic_report_diagnostic(diagnostic_context *context, diagnostic_info *diagnostic)
Definition diagnostic.h:1002
void diagnostic_override_option_index(diagnostic_info *info, int optidx)
Definition diagnostic.h:899
void diagnostic_output_format_init_json_stderr(diagnostic_context *context, bool formatted)
Definition diagnostic-format-json.cc:410
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
Definition diagnostic.h:193
Definition diagnostic-diagram.h:25
bool & pp_show_highlight_colors(pretty_printer *pp)
Definition pretty-print.h:456
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
location_t get_location(unsigned int index_of_location) const
Definition pretty-print.cc:724
rich_location * m_richloc
Definition pretty-print.h:57
#define gcc_assert(EXPR)
Definition system.h:821