hppa: Always enable PIE on 64-bit target
[official-gcc.git] / gcc / diagnostic.h
blob0a7c7e02b37c1eec096b2d97ca7793c0193b4cf6
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>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_DIAGNOSTIC_H
22 #define GCC_DIAGNOSTIC_H
24 #include "rich-location.h"
25 #include "pretty-print.h"
26 #include "diagnostic-core.h"
28 namespace text_art
30 class theme;
31 } // namespace text_art
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. */
38 enum diagnostics_column_unit
40 /* The default from GCC 11 onwards: display columns. */
41 DIAGNOSTICS_COLUMN_UNIT_DISPLAY,
43 /* The behavior in GCC 10 and earlier: simple bytes. */
44 DIAGNOSTICS_COLUMN_UNIT_BYTE
47 /* An enum for controlling how to print non-ASCII characters/bytes when
48 a diagnostic suggests escaping the source code on output. */
50 enum diagnostics_escape_format
52 /* Escape non-ASCII Unicode characters in the form <U+XXXX> and
53 non-UTF-8 bytes in the form <XX>. */
54 DIAGNOSTICS_ESCAPE_FORMAT_UNICODE,
56 /* Escape non-ASCII bytes in the form <XX> (thus showing the underlying
57 encoding of non-ASCII Unicode characters). */
58 DIAGNOSTICS_ESCAPE_FORMAT_BYTES
61 /* Enum for overriding the standard output format. */
63 enum diagnostics_output_format
65 /* The default: textual output. */
66 DIAGNOSTICS_OUTPUT_FORMAT_TEXT,
68 /* JSON-based output, to stderr. */
69 DIAGNOSTICS_OUTPUT_FORMAT_JSON_STDERR,
71 /* JSON-based output, to a file. */
72 DIAGNOSTICS_OUTPUT_FORMAT_JSON_FILE,
74 /* SARIF-based output, to stderr. */
75 DIAGNOSTICS_OUTPUT_FORMAT_SARIF_STDERR,
77 /* SARIF-based output, to a file. */
78 DIAGNOSTICS_OUTPUT_FORMAT_SARIF_FILE
81 /* An enum for controlling how diagnostic_paths should be printed. */
82 enum diagnostic_path_format
84 /* Don't print diagnostic_paths. */
85 DPF_NONE,
87 /* Print diagnostic_paths by emitting a separate "note" for every event
88 in the path. */
89 DPF_SEPARATE_EVENTS,
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. */
95 DPF_INLINE_EVENTS
98 /* An enum for capturing values of GCC_EXTRA_DIAGNOSTIC_OUTPUT,
99 and for -fdiagnostics-parseable-fixits. */
101 enum diagnostics_extra_output_kind
103 /* No extra output, or an unrecognized value. */
104 EXTRA_DIAGNOSTIC_OUTPUT_none,
106 /* Emit fix-it hints using the "fixits-v1" format, equivalent to
107 -fdiagnostics-parseable-fixits. */
108 EXTRA_DIAGNOSTIC_OUTPUT_fixits_v1,
110 /* Emit fix-it hints using the "fixits-v2" format. */
111 EXTRA_DIAGNOSTIC_OUTPUT_fixits_v2
114 /* Values for -fdiagnostics-text-art-charset=. */
116 enum diagnostic_text_art_charset
118 /* No text art diagrams shall be emitted. */
119 DIAGNOSTICS_TEXT_ART_CHARSET_NONE,
121 /* Use pure ASCII for text art diagrams. */
122 DIAGNOSTICS_TEXT_ART_CHARSET_ASCII,
124 /* Use ASCII + conservative use of other unicode characters
125 in text art diagrams. */
126 DIAGNOSTICS_TEXT_ART_CHARSET_UNICODE,
128 /* Use Emoji. */
129 DIAGNOSTICS_TEXT_ART_CHARSET_EMOJI
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. */
135 struct diagnostic_info
137 diagnostic_info ()
138 : message (), richloc (), metadata (), x_data (), kind (), option_index (),
139 m_iinfo ()
142 /* Text to be formatted. */
143 text_info message;
145 /* The location at which the diagnostic is to be reported. */
146 rich_location *richloc;
148 /* An optional bundle of metadata associated with the diagnostic
149 (or NULL). */
150 const diagnostic_metadata *metadata;
152 /* Auxiliary data for client. */
153 void *x_data;
154 /* The kind of diagnostic it is about. */
155 diagnostic_t kind;
156 /* Which OPT_* directly controls this diagnostic. */
157 int option_index;
159 /* Inlining context containing locations for each call site along
160 the inlining stack. */
161 struct inlining_info
163 /* Locations along the inlining stack. */
164 auto_vec<location_t, 8> m_ilocs;
165 /* The abstract origin of the location. */
166 void *m_ao;
167 /* Set if every M_ILOCS element is in a system header. */
168 bool m_allsyslocs;
169 } m_iinfo;
172 /* Forward declarations. */
173 typedef void (*diagnostic_starter_fn) (diagnostic_context *,
174 const diagnostic_info *);
176 typedef void (*diagnostic_start_span_fn) (diagnostic_context *,
177 expanded_location);
179 typedef void (*diagnostic_finalizer_fn) (diagnostic_context *,
180 const diagnostic_info *,
181 diagnostic_t);
183 typedef int (*diagnostic_option_enabled_cb) (int, unsigned, void *);
184 typedef char *(*diagnostic_make_option_name_cb) (const diagnostic_context *,
185 int,
186 diagnostic_t,
187 diagnostic_t);
188 typedef char *(*diagnostic_make_option_url_cb) (const diagnostic_context *,
189 int,
190 unsigned);
192 class edit_context;
193 namespace json { class value; }
194 class diagnostic_client_data_hooks;
195 class logical_location;
196 class diagnostic_diagram;
198 /* Abstract base class for a particular output format for diagnostics;
199 each value of -fdiagnostics-output-format= will have its own
200 implementation. */
202 class diagnostic_output_format
204 public:
205 virtual ~diagnostic_output_format () {}
207 virtual void on_begin_group () = 0;
208 virtual void on_end_group () = 0;
209 virtual void on_begin_diagnostic (const diagnostic_info &) = 0;
210 virtual void on_end_diagnostic (const diagnostic_info &,
211 diagnostic_t orig_diag_kind) = 0;
212 virtual void on_diagram (const diagnostic_diagram &diagram) = 0;
214 protected:
215 diagnostic_output_format (diagnostic_context &context)
216 : m_context (context)
219 diagnostic_context &m_context;
222 /* Subclass of diagnostic_output_format for classic text-based output
223 to stderr.
225 Uses diagnostic_context.m_text_callbacks to provide client-specific
226 textual output (e.g. include paths, macro expansions, etc). */
228 class diagnostic_text_output_format : public diagnostic_output_format
230 public:
231 diagnostic_text_output_format (diagnostic_context &context)
232 : diagnostic_output_format (context)
234 ~diagnostic_text_output_format ();
235 void on_begin_group () override {}
236 void on_end_group () override {}
237 void on_begin_diagnostic (const diagnostic_info &) override;
238 void on_end_diagnostic (const diagnostic_info &,
239 diagnostic_t orig_diag_kind) override;
240 void on_diagram (const diagnostic_diagram &diagram) override;
243 /* A stack of sets of classifications: each entry in the stack is
244 a mapping from option index to diagnostic severity that can be changed
245 via pragmas. The stack can be pushed and popped. */
247 class diagnostic_option_classifier
249 public:
250 void init (int n_opts);
251 void fini ();
253 /* Save all diagnostic classifications in a stack. */
254 void push ();
256 /* Restore the topmost classification set off the stack. If the stack
257 is empty, revert to the state based on command line parameters. */
258 void pop (location_t where);
260 bool option_unspecified_p (int opt) const
262 return get_current_override (opt) == DK_UNSPECIFIED;
265 diagnostic_t get_current_override (int opt) const
267 gcc_assert (opt < m_n_opts);
268 return m_classify_diagnostic[opt];
271 diagnostic_t
272 classify_diagnostic (const diagnostic_context *context,
273 int option_index,
274 diagnostic_t new_kind,
275 location_t where);
277 diagnostic_t
278 update_effective_level_from_pragmas (diagnostic_info *diagnostic) const;
280 private:
281 /* Each time a diagnostic's classification is changed with a pragma,
282 we record the change and the location of the change in an array of
283 these structs. */
284 struct diagnostic_classification_change_t
286 location_t location;
287 int option;
288 diagnostic_t kind;
291 int m_n_opts;
293 /* For each option index that can be passed to warning() et al
294 (OPT_* from options.h when using this code with the core GCC
295 options), this array may contain a new kind that the diagnostic
296 should be changed to before reporting, or DK_UNSPECIFIED to leave
297 it as the reported kind, or DK_IGNORED to not report it at
298 all. */
299 diagnostic_t *m_classify_diagnostic;
301 /* History of all changes to the classifications above. This list
302 is stored in location-order, so we can search it, either
303 binary-wise or end-to-front, to find the most recent
304 classification for a given diagnostic, given the location of the
305 diagnostic. */
306 diagnostic_classification_change_t *m_classification_history;
308 /* The size of the above array. */
309 int m_n_classification_history;
311 /* For pragma push/pop. */
312 int *m_push_list;
313 int m_n_push;
316 /* A bundle of options relating to printing the user's source code
317 (potentially with a margin, underlining, labels, etc). */
319 struct diagnostic_source_printing_options
321 /* True if we should print the source line with a caret indicating
322 the location.
323 Corresponds to -fdiagnostics-show-caret. */
324 bool enabled;
326 /* Maximum width of the source line printed. */
327 int max_width;
329 /* Character used at the caret when printing source locations. */
330 char caret_chars[rich_location::STATICALLY_ALLOCATED_RANGES];
332 /* When printing source code, should the characters at carets and ranges
333 be colorized? (assuming colorization is on at all).
334 This should be true for frontends that generate range information
335 (so that the ranges of code are colorized),
336 and false for frontends that merely specify points within the
337 source code (to avoid e.g. colorizing just the first character in
338 a token, which would look strange). */
339 bool colorize_source_p;
341 /* When printing source code, should labelled ranges be printed?
342 Corresponds to -fdiagnostics-show-labels. */
343 bool show_labels_p;
345 /* When printing source code, should there be a left-hand margin
346 showing line numbers?
347 Corresponds to -fdiagnostics-show-line-numbers. */
348 bool show_line_numbers_p;
350 /* If printing source code, what should the minimum width of the margin
351 be? Line numbers will be right-aligned, and padded to this width.
352 Corresponds to -fdiagnostics-minimum-margin-width=VALUE. */
353 int min_margin_width;
355 /* Usable by plugins; if true, print a debugging ruler above the
356 source output. */
357 bool show_ruler_p;
360 /* This data structure bundles altogether any information relevant to
361 the context of a diagnostic message. */
362 class diagnostic_context
364 public:
365 /* Give access to m_text_callbacks. */
366 friend diagnostic_starter_fn &
367 diagnostic_starter (diagnostic_context *context);
368 friend diagnostic_start_span_fn &
369 diagnostic_start_span (diagnostic_context *context);
370 friend diagnostic_finalizer_fn &
371 diagnostic_finalizer (diagnostic_context *context);
373 typedef void (*ice_handler_callback_t) (diagnostic_context *);
374 typedef void (*set_locations_callback_t) (diagnostic_context *,
375 diagnostic_info *);
377 void initialize (int n_opts);
378 void color_init (int value);
379 void urls_init (int value);
381 void finish ();
383 void set_set_locations_callback (set_locations_callback_t cb)
385 m_set_locations_cb = cb;
388 void
389 initialize_input_context (diagnostic_input_charset_callback ccb,
390 bool should_skip_bom);
392 void begin_group ();
393 void end_group ();
395 bool warning_enabled_at (location_t loc, int opt);
397 bool option_unspecified_p (int opt) const
399 return m_option_classifier.option_unspecified_p (opt);
402 bool report_diagnostic (diagnostic_info *);
404 void report_current_module (location_t where);
406 void check_max_errors (bool flush);
407 void action_after_output (diagnostic_t diag_kind);
409 diagnostic_t
410 classify_diagnostic (int option_index,
411 diagnostic_t new_kind,
412 location_t where)
414 return m_option_classifier.classify_diagnostic (this,
415 option_index,
416 new_kind,
417 where);
420 void push_diagnostics (location_t where ATTRIBUTE_UNUSED)
422 m_option_classifier.push ();
424 void pop_diagnostics (location_t where)
426 m_option_classifier.pop (where);
429 void maybe_show_locus (const rich_location &richloc,
430 diagnostic_t diagnostic_kind,
431 pretty_printer *pp);
433 void emit_diagram (const diagnostic_diagram &diagram);
435 /* Various setters for use by option-handling logic. */
436 void set_output_format (diagnostic_output_format *output_format);
437 void set_text_art_charset (enum diagnostic_text_art_charset charset);
438 void set_client_data_hooks (diagnostic_client_data_hooks *hooks);
439 void set_urlifier (urlifier *);
440 void create_edit_context ();
441 void set_warning_as_error_requested (bool val)
443 m_warning_as_error_requested = val;
445 void set_report_bug (bool val) { m_report_bug = val; }
446 void set_extra_output_kind (enum diagnostics_extra_output_kind kind)
448 m_extra_output_kind = kind;
450 void set_show_cwe (bool val) { m_show_cwe = val; }
451 void set_show_rules (bool val) { m_show_rules = val; }
452 void set_path_format (enum diagnostic_path_format val)
454 m_path_format = val;
456 void set_show_path_depths (bool val) { m_show_path_depths = val; }
457 void set_show_option_requested (bool val) { m_show_option_requested = val; }
458 void set_max_errors (int val) { m_max_errors = val; }
459 void set_escape_format (enum diagnostics_escape_format val)
461 m_escape_format = val;
463 void set_ice_handler_callback (ice_handler_callback_t cb)
465 m_ice_handler_cb = cb;
468 /* Various accessors. */
469 bool warning_as_error_requested_p () const
471 return m_warning_as_error_requested;
473 bool show_path_depths_p () const { return m_show_path_depths; }
474 enum diagnostic_path_format get_path_format () const { return m_path_format; }
475 enum diagnostics_escape_format get_escape_format () const
477 return m_escape_format;
480 file_cache &
481 get_file_cache () const
483 gcc_assert (m_file_cache);
484 return *m_file_cache;
487 edit_context *get_edit_context () const
489 return m_edit_context_ptr;
491 const diagnostic_client_data_hooks *get_client_data_hooks ()
493 return m_client_data_hooks;
495 text_art::theme *get_diagram_theme () const { return m_diagrams.m_theme; }
497 int converted_column (expanded_location s) const;
499 int &diagnostic_count (diagnostic_t kind)
501 return m_diagnostic_count[kind];
504 /* Option-related member functions. */
505 inline bool option_enabled_p (int option_index) const
507 if (!m_option_callbacks.m_option_enabled_cb)
508 return true;
509 return m_option_callbacks.m_option_enabled_cb
510 (option_index,
511 m_option_callbacks.m_lang_mask,
512 m_option_callbacks.m_option_state);
515 inline char *make_option_name (int option_index,
516 diagnostic_t orig_diag_kind,
517 diagnostic_t diag_kind) const
519 if (!m_option_callbacks.m_make_option_name_cb)
520 return nullptr;
521 return m_option_callbacks.m_make_option_name_cb (this, option_index,
522 orig_diag_kind,
523 diag_kind);
526 inline char *make_option_url (int option_index) const
528 if (!m_option_callbacks.m_make_option_url_cb)
529 return nullptr;
530 return m_option_callbacks.m_make_option_url_cb (this, option_index,
531 get_lang_mask ());
534 void
535 set_option_hooks (diagnostic_option_enabled_cb option_enabled_cb,
536 void *option_state,
537 diagnostic_make_option_name_cb make_option_name_cb,
538 diagnostic_make_option_url_cb make_option_url_cb,
539 unsigned lang_mask);
541 unsigned get_lang_mask () const
543 return m_option_callbacks.m_lang_mask;
546 label_text get_location_text (const expanded_location &s) const;
548 private:
549 bool includes_seen_p (const line_map_ordinary *map);
551 void print_any_cwe (const diagnostic_info &diagnostic);
552 void print_any_rules (const diagnostic_info &diagnostic);
553 void print_option_information (const diagnostic_info &diagnostic,
554 diagnostic_t orig_diag_kind);
556 void show_any_path (const diagnostic_info &diagnostic);
558 void error_recursion () ATTRIBUTE_NORETURN;
560 bool diagnostic_enabled (diagnostic_info *diagnostic);
562 void get_any_inlining_info (diagnostic_info *diagnostic);
564 void show_locus (const rich_location &richloc,
565 diagnostic_t diagnostic_kind,
566 pretty_printer *pp);
568 /* Data members.
569 Ideally, all of these would be private and have "m_" prefixes. */
571 public:
572 /* Where most of the diagnostic formatting work is done. */
573 pretty_printer *printer;
575 private:
576 /* Cache of source code. */
577 file_cache *m_file_cache;
579 /* The number of times we have issued diagnostics. */
580 int m_diagnostic_count[DK_LAST_DIAGNOSTIC_KIND];
582 /* True if it has been requested that warnings be treated as errors. */
583 bool m_warning_as_error_requested;
585 /* The number of option indexes that can be passed to warning() et
586 al. */
587 int m_n_opts;
589 /* The stack of sets of overridden diagnostic option severities. */
590 diagnostic_option_classifier m_option_classifier;
592 /* True if we should print any CWE identifiers associated with
593 diagnostics. */
594 bool m_show_cwe;
596 /* True if we should print any rules associated with diagnostics. */
597 bool m_show_rules;
599 /* How should diagnostic_path objects be printed. */
600 enum diagnostic_path_format m_path_format;
602 /* True if we should print stack depths when printing diagnostic paths. */
603 bool m_show_path_depths;
605 /* True if we should print the command line option which controls
606 each diagnostic, if known. */
607 bool m_show_option_requested;
609 public:
610 /* True if we should raise a SIGABRT on errors. */
611 bool m_abort_on_error;
613 /* True if we should show the column number on diagnostics. */
614 bool m_show_column;
616 /* True if pedwarns are errors. */
617 bool m_pedantic_errors;
619 /* True if permerrors are warnings. */
620 bool m_permissive;
622 /* The index of the option to associate with turning permerrors into
623 warnings. */
624 int m_opt_permissive;
626 /* True if errors are fatal. */
627 bool m_fatal_errors;
629 /* True if all warnings should be disabled. */
630 bool m_inhibit_warnings;
632 /* True if warnings should be given in system headers. */
633 bool m_warn_system_headers;
635 private:
636 /* Maximum number of errors to report. */
637 int m_max_errors;
639 /* Client-supplied callbacks for use in text output. */
640 struct {
641 /* This function is called before any message is printed out. It is
642 responsible for preparing message prefix and such. For example, it
643 might say:
644 In file included from "/usr/local/include/curses.h:5:
645 from "/home/gdr/src/nifty_printer.h:56:
648 diagnostic_starter_fn m_begin_diagnostic;
650 /* This function is called by diagnostic_show_locus in between
651 disjoint spans of source code, so that the context can print
652 something to indicate that a new span of source code has begun. */
653 diagnostic_start_span_fn m_start_span;
655 /* This function is called after the diagnostic message is printed. */
656 diagnostic_finalizer_fn m_end_diagnostic;
657 } m_text_callbacks;
659 public:
660 /* Client hook to report an internal error. */
661 void (*m_internal_error) (diagnostic_context *, const char *, va_list *);
663 private:
664 /* Client-supplied callbacks for working with options. */
665 struct {
666 /* Client hook to say whether the option controlling a diagnostic is
667 enabled. Returns nonzero if enabled, zero if disabled. */
668 diagnostic_option_enabled_cb m_option_enabled_cb;
670 /* Client information to pass as second argument to
671 m_option_enabled_cb. */
672 void *m_option_state;
674 /* Client hook to return the name of an option that controls a
675 diagnostic. Returns malloced memory. The first diagnostic_t
676 argument is the kind of diagnostic before any reclassification
677 (of warnings as errors, etc.); the second is the kind after any
678 reclassification. May return NULL if no name is to be printed.
679 May be passed 0 as well as the index of a particular option. */
680 diagnostic_make_option_name_cb m_make_option_name_cb;
682 /* Client hook to return a URL describing the option that controls
683 a diagnostic. Returns malloced memory. May return NULL if no URL
684 is available. May be passed 0 as well as the index of a
685 particular option. */
686 diagnostic_make_option_url_cb m_make_option_url_cb;
688 /* A copy of lang_hooks.option_lang_mask (). */
689 unsigned m_lang_mask;
690 } m_option_callbacks;
692 /* An optional hook for adding URLs to quoted text strings in
693 diagnostics. Only used for the main diagnostic message. */
694 urlifier *m_urlifier;
696 public:
697 void (*m_print_path) (diagnostic_context *, const diagnostic_path *);
698 json::value *(*m_make_json_for_path) (diagnostic_context *,
699 const diagnostic_path *);
701 /* Auxiliary data for client. */
702 void *m_client_aux_data;
704 /* Used to detect that the last caret was printed at the same location. */
705 location_t m_last_location;
707 private:
708 /* Used to detect when the input file stack has changed since last
709 described. */
710 const line_map_ordinary *m_last_module;
712 int m_lock;
714 public:
715 bool m_inhibit_notes_p;
717 diagnostic_source_printing_options m_source_printing;
719 private:
720 /* True if -freport-bug option is used. */
721 bool m_report_bug;
723 /* Used to specify additional diagnostic output to be emitted after the
724 rest of the diagnostic. This is for implementing
725 -fdiagnostics-parseable-fixits and GCC_EXTRA_DIAGNOSTIC_OUTPUT. */
726 enum diagnostics_extra_output_kind m_extra_output_kind;
728 public:
729 /* What units to use when outputting the column number. */
730 enum diagnostics_column_unit m_column_unit;
732 /* The origin for the column number (1-based or 0-based typically). */
733 int m_column_origin;
735 /* The size of the tabstop for tab expansion. */
736 int m_tabstop;
738 private:
739 /* How should non-ASCII/non-printable bytes be escaped when
740 a diagnostic suggests escaping the source code on output. */
741 enum diagnostics_escape_format m_escape_format;
743 /* If non-NULL, an edit_context to which fix-it hints should be
744 applied, for generating patches. */
745 edit_context *m_edit_context_ptr;
747 /* Fields relating to diagnostic groups. */
748 struct {
749 /* How many diagnostic_group instances are currently alive. */
750 int m_nesting_depth;
752 /* How many diagnostics have been emitted since the bottommost
753 diagnostic_group was pushed. */
754 int m_emission_count;
755 } m_diagnostic_groups;
757 /* How to output diagnostics (text vs a structured format such as JSON).
758 Must be non-NULL; owned by context. */
759 diagnostic_output_format *m_output_format;
761 /* Callback to set the locations of call sites along the inlining
762 stack corresponding to a diagnostic location. Needed to traverse
763 the BLOCK_SUPERCONTEXT() chain hanging off the LOCATION_BLOCK()
764 of a diagnostic's location. */
765 set_locations_callback_t m_set_locations_cb;
767 /* Optional callback for attempting to handle ICEs gracefully. */
768 ice_handler_callback_t m_ice_handler_cb;
770 /* Include files that diagnostic_report_current_module has already listed the
771 include path for. */
772 hash_set<location_t, false, location_hash> *m_includes_seen;
774 /* A bundle of hooks for providing data to the context about its client
775 e.g. version information, plugins, etc.
776 Used by SARIF output to give metadata about the client that's
777 producing diagnostics. */
778 diagnostic_client_data_hooks *m_client_data_hooks;
780 /* Support for diagrams. */
781 struct
783 /* Theme to use when generating diagrams.
784 Can be NULL (if text art is disabled). */
785 text_art::theme *m_theme;
787 } m_diagrams;
790 inline void
791 diagnostic_inhibit_notes (diagnostic_context * context)
793 context->m_inhibit_notes_p = true;
797 /* Client supplied function to announce a diagnostic
798 (for text-based diagnostic output). */
799 inline diagnostic_starter_fn &
800 diagnostic_starter (diagnostic_context *context)
802 return context->m_text_callbacks.m_begin_diagnostic;
805 /* Client supplied function called between disjoint spans of source code,
806 so that the context can print
807 something to indicate that a new span of source code has begun. */
808 inline diagnostic_start_span_fn &
809 diagnostic_start_span (diagnostic_context *context)
811 return context->m_text_callbacks.m_start_span;
814 /* Client supplied function called after a diagnostic message is
815 displayed (for text-based diagnostic output). */
816 inline diagnostic_finalizer_fn &
817 diagnostic_finalizer (diagnostic_context *context)
819 return context->m_text_callbacks.m_end_diagnostic;
822 /* Extension hooks for client. */
823 #define diagnostic_context_auxiliary_data(DC) (DC)->m_client_aux_data
824 #define diagnostic_info_auxiliary_data(DI) (DI)->x_data
826 /* Same as pp_format_decoder. Works on 'diagnostic_context *'. */
827 #define diagnostic_format_decoder(DC) ((DC)->printer->format_decoder)
829 /* Same as output_prefixing_rule. Works on 'diagnostic_context *'. */
830 #define diagnostic_prefixing_rule(DC) ((DC)->printer->wrapping.rule)
832 /* Raise SIGABRT on any diagnostic of severity DK_ERROR or higher. */
833 inline void
834 diagnostic_abort_on_error (diagnostic_context *context)
836 context->m_abort_on_error = true;
839 /* This diagnostic_context is used by front-ends that directly output
840 diagnostic messages without going through `error', `warning',
841 and similar functions. */
842 extern diagnostic_context *global_dc;
844 /* Returns whether the diagnostic framework has been intialized already and is
845 ready for use. */
846 inline bool
847 diagnostic_ready_p ()
849 return global_dc->printer != nullptr;
852 /* The number of errors that have been issued so far. Ideally, these
853 would take a diagnostic_context as an argument. */
854 #define errorcount global_dc->diagnostic_count (DK_ERROR)
855 /* Similarly, but for warnings. */
856 #define warningcount global_dc->diagnostic_count (DK_WARNING)
857 /* Similarly, but for warnings promoted to errors. */
858 #define werrorcount global_dc->diagnostic_count (DK_WERROR)
859 /* Similarly, but for sorrys. */
860 #define sorrycount global_dc->diagnostic_count (DK_SORRY)
862 /* Returns nonzero if warnings should be emitted. */
863 #define diagnostic_report_warnings_p(DC, LOC) \
864 (!(DC)->m_inhibit_warnings \
865 && !(in_system_header_at (LOC) && !(DC)->m_warn_system_headers))
867 /* Override the option index to be used for reporting a
868 diagnostic. */
870 inline void
871 diagnostic_override_option_index (diagnostic_info *info, int optidx)
873 info->option_index = optidx;
876 /* Diagnostic related functions. */
878 inline void
879 diagnostic_initialize (diagnostic_context *context, int n_opts)
881 context->initialize (n_opts);
884 inline void
885 diagnostic_color_init (diagnostic_context *context, int value = -1)
887 context->color_init (value);
890 inline void
891 diagnostic_urls_init (diagnostic_context *context, int value = -1)
893 context->urls_init (value);
896 inline void
897 diagnostic_finish (diagnostic_context *context)
899 context->finish ();
902 inline void
903 diagnostic_report_current_module (diagnostic_context *context,
904 location_t where)
906 context->report_current_module (where);
909 inline void
910 diagnostic_show_locus (diagnostic_context *context,
911 rich_location *richloc,
912 diagnostic_t diagnostic_kind,
913 pretty_printer *pp = nullptr)
915 gcc_assert (richloc);
916 context->maybe_show_locus (*richloc, diagnostic_kind, pp);
919 /* Because we read source files a second time after the frontend did it the
920 first time, we need to know how the frontend handled things like character
921 set conversion and UTF-8 BOM stripping, in order to make everything
922 consistent. This function needs to be called by each frontend that requires
923 non-default behavior, to inform the diagnostics infrastructure how input is
924 to be processed. The default behavior is to do no conversion and not to
925 strip a UTF-8 BOM.
927 The callback should return the input charset to be used to convert the given
928 file's contents to UTF-8, or it should return NULL if no conversion is needed
929 for this file. SHOULD_SKIP_BOM only applies in case no conversion was
930 performed, and if true, it will cause a UTF-8 BOM to be skipped at the
931 beginning of the file. (In case a conversion was performed, the BOM is
932 rather skipped as part of the conversion process.) */
934 inline void
935 diagnostic_initialize_input_context (diagnostic_context *context,
936 diagnostic_input_charset_callback ccb,
937 bool should_skip_bom)
939 context->initialize_input_context (ccb, should_skip_bom);
942 /* Force diagnostics controlled by OPTIDX to be kind KIND. */
943 inline diagnostic_t
944 diagnostic_classify_diagnostic (diagnostic_context *context,
945 int optidx,
946 diagnostic_t kind,
947 location_t where)
949 return context->classify_diagnostic (optidx, kind, where);
952 inline void
953 diagnostic_push_diagnostics (diagnostic_context *context,
954 location_t where)
956 context->push_diagnostics (where);
958 inline void
959 diagnostic_pop_diagnostics (diagnostic_context *context,
960 location_t where)
962 context->pop_diagnostics (where);
965 /* Report a diagnostic message (an error or a warning) as specified by
966 DC. This function is *the* subroutine in terms of which front-ends
967 should implement their specific diagnostic handling modules. The
968 front-end independent format specifiers are exactly those described
969 in the documentation of output_format.
970 Return true if a diagnostic was printed, false otherwise. */
972 inline bool
973 diagnostic_report_diagnostic (diagnostic_context *context,
974 diagnostic_info *diagnostic)
976 return context->report_diagnostic (diagnostic);
979 #ifdef ATTRIBUTE_GCC_DIAG
980 extern void diagnostic_set_info (diagnostic_info *, const char *, va_list *,
981 rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2,0);
982 extern void diagnostic_set_info_translated (diagnostic_info *, const char *,
983 va_list *, rich_location *,
984 diagnostic_t)
985 ATTRIBUTE_GCC_DIAG(2,0);
986 extern void diagnostic_append_note (diagnostic_context *, location_t,
987 const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
988 #endif
989 extern char *diagnostic_build_prefix (diagnostic_context *, const diagnostic_info *);
990 void default_diagnostic_starter (diagnostic_context *, const diagnostic_info *);
991 void default_diagnostic_start_span_fn (diagnostic_context *,
992 expanded_location);
993 void default_diagnostic_finalizer (diagnostic_context *,
994 const diagnostic_info *,
995 diagnostic_t);
996 void diagnostic_set_caret_max_width (diagnostic_context *context, int value);
998 inline void
999 diagnostic_action_after_output (diagnostic_context *context,
1000 diagnostic_t diag_kind)
1002 context->action_after_output (diag_kind);
1005 inline void
1006 diagnostic_check_max_errors (diagnostic_context *context, bool flush = false)
1008 context->check_max_errors (flush);
1011 int get_terminal_width (void);
1013 /* Return the location associated to this diagnostic. Parameter WHICH
1014 specifies which location. By default, expand the first one. */
1016 inline location_t
1017 diagnostic_location (const diagnostic_info * diagnostic, int which = 0)
1019 return diagnostic->message.get_location (which);
1022 /* Return the number of locations to be printed in DIAGNOSTIC. */
1024 inline unsigned int
1025 diagnostic_num_locations (const diagnostic_info * diagnostic)
1027 return diagnostic->message.m_richloc->get_num_locations ();
1030 /* Expand the location of this diagnostic. Use this function for
1031 consistency. Parameter WHICH specifies which location. By default,
1032 expand the first one. */
1034 inline expanded_location
1035 diagnostic_expand_location (const diagnostic_info * diagnostic, int which = 0)
1037 return diagnostic->richloc->get_expanded_location (which);
1040 /* This is somehow the right-side margin of a caret line, that is, we
1041 print at least these many characters after the position pointed at
1042 by the caret. */
1043 const int CARET_LINE_MARGIN = 10;
1045 /* Return true if the two locations can be represented within the same
1046 caret line. This is used to build a prefix and also to determine
1047 whether to print one or two caret lines. */
1049 inline bool
1050 diagnostic_same_line (const diagnostic_context *context,
1051 expanded_location s1, expanded_location s2)
1053 return (s2.column && s1.line == s2.line
1054 && (context->m_source_printing.max_width - CARET_LINE_MARGIN
1055 > abs (s1.column - s2.column)));
1058 extern const char *diagnostic_get_color_for_kind (diagnostic_t kind);
1060 /* Pure text formatting support functions. */
1061 extern char *file_name_as_prefix (diagnostic_context *, const char *);
1063 extern char *build_message_string (const char *, ...) ATTRIBUTE_PRINTF_1;
1065 extern void diagnostic_output_format_init (diagnostic_context *,
1066 const char *base_file_name,
1067 enum diagnostics_output_format,
1068 bool json_formatting);
1069 extern void diagnostic_output_format_init_json_stderr (diagnostic_context *context,
1070 bool formatted);
1071 extern void diagnostic_output_format_init_json_file (diagnostic_context *context,
1072 bool formatted,
1073 const char *base_file_name);
1074 extern void diagnostic_output_format_init_sarif_stderr (diagnostic_context *context,
1075 bool formatted);
1076 extern void diagnostic_output_format_init_sarif_file (diagnostic_context *context,
1077 bool formatted,
1078 const char *base_file_name);
1079 extern void diagnostic_output_format_init_sarif_stream (diagnostic_context *context,
1080 bool formatted,
1081 FILE *stream);
1083 /* Compute the number of digits in the decimal representation of an integer. */
1084 extern int num_digits (int);
1086 extern json::value *json_from_expanded_location (diagnostic_context *context,
1087 location_t loc);
1089 inline bool
1090 warning_enabled_at (location_t loc, int opt)
1092 return global_dc->warning_enabled_at (loc, opt);
1095 inline bool
1096 option_unspecified_p (int opt)
1098 return global_dc->option_unspecified_p (opt);
1101 extern char *get_cwe_url (int cwe);
1103 #endif /* ! GCC_DIAGNOSTIC_H */