]> gcc.gnu.org Git - gcc.git/blame - gcc/diagnostic.h
OpenACC: Fix reduction tree-sharing issue [PR106982]
[gcc.git] / gcc / diagnostic.h
CommitLineData
345ed1fe 1/* Various declarations for language-independent diagnostics subroutines.
7adcbafe 2 Copyright (C) 2000-2022 Free Software Foundation, Inc.
345ed1fe
GDR
3 Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
4
1322177d 5This file is part of GCC.
345ed1fe 6
1322177d
LB
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
9dcd6f09 9Software Foundation; either version 3, or (at your option) any later
1322177d 10version.
345ed1fe 11
1322177d
LB
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.
345ed1fe
GDR
16
17You should have received a copy of the GNU General Public License
9dcd6f09
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
345ed1fe 20
88657302
RH
21#ifndef GCC_DIAGNOSTIC_H
22#define GCC_DIAGNOSTIC_H
345ed1fe 23
b6fe0bb8 24#include "pretty-print.h"
1da2ed5f 25#include "diagnostic-core.h"
d0e66dbb 26
004bb936
LH
27/* An enum for controlling what units to use for the column number
28 when diagnostics are output, used by the -fdiagnostics-column-unit option.
29 Tabs will be expanded or not according to the value of -ftabstop. The origin
30 (default 1) is controlled by -fdiagnostics-column-origin. */
31
32enum diagnostics_column_unit
33{
34 /* The default from GCC 11 onwards: display columns. */
35 DIAGNOSTICS_COLUMN_UNIT_DISPLAY,
36
37 /* The behavior in GCC 10 and earlier: simple bytes. */
38 DIAGNOSTICS_COLUMN_UNIT_BYTE
39};
40
bd5e882c
DM
41/* An enum for controlling how to print non-ASCII characters/bytes when
42 a diagnostic suggests escaping the source code on output. */
43
44enum diagnostics_escape_format
45{
46 /* Escape non-ASCII Unicode characters in the form <U+XXXX> and
47 non-UTF-8 bytes in the form <XX>. */
48 DIAGNOSTICS_ESCAPE_FORMAT_UNICODE,
49
50 /* Escape non-ASCII bytes in the form <XX> (thus showing the underlying
51 encoding of non-ASCII Unicode characters). */
52 DIAGNOSTICS_ESCAPE_FORMAT_BYTES
53};
54
478dd60d
DM
55/* Enum for overriding the standard output format. */
56
57enum diagnostics_output_format
58{
59 /* The default: textual output. */
60 DIAGNOSTICS_OUTPUT_FORMAT_TEXT,
61
62 /* JSON-based output. */
63 DIAGNOSTICS_OUTPUT_FORMAT_JSON
64};
65
4bc1899b
DM
66/* An enum for controlling how diagnostic_paths should be printed. */
67enum diagnostic_path_format
68{
69 /* Don't print diagnostic_paths. */
70 DPF_NONE,
71
72 /* Print diagnostic_paths by emitting a separate "note" for every event
73 in the path. */
74 DPF_SEPARATE_EVENTS,
75
76 /* Print diagnostic_paths by consolidating events together where they
77 are close enough, and printing such runs of events with multiple
78 calls to diagnostic_show_locus, showing the individual events in
79 each run via labels in the source. */
80 DPF_INLINE_EVENTS
81};
82
f1096055
DM
83/* An enum for capturing values of GCC_EXTRA_DIAGNOSTIC_OUTPUT,
84 and for -fdiagnostics-parseable-fixits. */
85
86enum diagnostics_extra_output_kind
87{
88 /* No extra output, or an unrecognized value. */
89 EXTRA_DIAGNOSTIC_OUTPUT_none,
90
91 /* Emit fix-it hints using the "fixits-v1" format, equivalent to
92 -fdiagnostics-parseable-fixits. */
93 EXTRA_DIAGNOSTIC_OUTPUT_fixits_v1,
94
95 /* Emit fix-it hints using the "fixits-v2" format. */
96 EXTRA_DIAGNOSTIC_OUTPUT_fixits_v2
97};
98
47b69537
GDR
99/* A diagnostic is described by the MESSAGE to send, the FILE and LINE of
100 its context and its KIND (ice, error, warning, note, ...) See complete
101 list in diagnostic.def. */
84562394 102struct diagnostic_info
47b69537 103{
6feb628a
MS
104 diagnostic_info ()
105 : message (), richloc (), metadata (), x_data (), kind (), option_index (),
106 m_iinfo ()
107 { }
108
8a645150 109 /* Text to be formatted. */
47b69537 110 text_info message;
8a645150
DM
111
112 /* The location at which the diagnostic is to be reported. */
113 rich_location *richloc;
114
6d4a35ca
DM
115 /* An optional bundle of metadata associated with the diagnostic
116 (or NULL). */
117 const diagnostic_metadata *metadata;
118
cf835838
JM
119 /* Auxiliary data for client. */
120 void *x_data;
47b69537
GDR
121 /* The kind of diagnostic it is about. */
122 diagnostic_t kind;
ccf08a6e
DD
123 /* Which OPT_* directly controls this diagnostic. */
124 int option_index;
6feb628a
MS
125
126 /* Inlining context containing locations for each call site along
127 the inlining stack. */
128 struct inlining_info
129 {
130 /* Locations along the inlining stack. */
131 auto_vec<location_t, 8> m_ilocs;
132 /* The abstract origin of the location. */
133 void *m_ao;
134 /* Set if every M_ILOCS element is in a system header. */
135 bool m_allsyslocs;
136 } m_iinfo;
84562394 137};
47b69537 138
cd7fe53b
DD
139/* Each time a diagnostic's classification is changed with a pragma,
140 we record the change and the location of the change in an array of
141 these structs. */
84562394 142struct diagnostic_classification_change_t
cd7fe53b
DD
143{
144 location_t location;
145 int option;
146 diagnostic_t kind;
84562394 147};
cd7fe53b 148
47b69537 149/* Forward declarations. */
79a490a9
AJ
150typedef void (*diagnostic_starter_fn) (diagnostic_context *,
151 diagnostic_info *);
876217ae
DM
152
153typedef void (*diagnostic_start_span_fn) (diagnostic_context *,
154 expanded_location);
155
478dd60d
DM
156typedef void (*diagnostic_finalizer_fn) (diagnostic_context *,
157 diagnostic_info *,
158 diagnostic_t);
47b69537 159
717ebe91 160class edit_context;
4bc1899b 161namespace json { class value; }
717ebe91 162
c4765d18 163/* This data structure bundles altogether any information relevant to
e2840263
GDR
164 the context of a diagnostic message. */
165struct diagnostic_context
166{
2b72593e 167 /* Where most of the diagnostic formatting work is done. */
b6fe0bb8 168 pretty_printer *printer;
f68fc4db 169
b544c348
DM
170 /* Cache of source code. */
171 file_cache *m_file_cache;
172
4fcc2065
GDR
173 /* The number of times we have issued diagnostics. */
174 int diagnostic_count[DK_LAST_DIAGNOSTIC_KIND];
175
7783b402
GDR
176 /* True if it has been requested that warnings be treated as errors. */
177 bool warning_as_error_requested;
13f0d49c 178
5f0f4a3b
JM
179 /* The number of option indexes that can be passed to warning() et
180 al. */
181 int n_opts;
182
183 /* For each option index that can be passed to warning() et al
184 (OPT_* from options.h when using this code with the core GCC
185 options), this array may contain a new kind that the diagnostic
186 should be changed to before reporting, or DK_UNSPECIFIED to leave
187 it as the reported kind, or DK_IGNORED to not report it at
188 all. */
189 diagnostic_t *classify_diagnostic;
79cf5994 190
cd7fe53b
DD
191 /* History of all changes to the classifications above. This list
192 is stored in location-order, so we can search it, either
193 binary-wise or end-to-front, to find the most recent
194 classification for a given diagnostic, given the location of the
195 diagnostic. */
196 diagnostic_classification_change_t *classification_history;
197
198 /* The size of the above array. */
199 int n_classification_history;
200
201 /* For pragma push/pop. */
202 int *push_list;
203 int n_push;
204
9fec0042
MLI
205 /* True if we should print the source line with a caret indicating
206 the location. */
207 bool show_caret;
208
209 /* Maximum width of the source line printed. */
210 int caret_max_width;
211
8a645150 212 /* Character used for caret diagnostics. */
b816477a 213 char caret_chars[rich_location::STATICALLY_ALLOCATED_RANGES];
fbecdc83 214
6d4a35ca
DM
215 /* True if we should print any CWE identifiers associated with
216 diagnostics. */
217 bool show_cwe;
218
4bc1899b
DM
219 /* How should diagnostic_path objects be printed. */
220 enum diagnostic_path_format path_format;
221
222 /* True if we should print stack depths when printing diagnostic paths. */
223 bool show_path_depths;
224
2098fe9e
DD
225 /* True if we should print the command line option which controls
226 each diagnostic, if known. */
227 bool show_option_requested;
228
886e0865
GK
229 /* True if we should raise a SIGABRT on errors. */
230 bool abort_on_error;
231
243fbddd
JM
232 /* True if we should show the column number on diagnostics. */
233 bool show_column;
234
235 /* True if pedwarns are errors. */
236 bool pedantic_errors;
237
238 /* True if permerrors are warnings. */
239 bool permissive;
240
5f0f4a3b
JM
241 /* The index of the option to associate with turning permerrors into
242 warnings. */
243 int opt_permissive;
244
243fbddd
JM
245 /* True if errors are fatal. */
246 bool fatal_errors;
247
5f0f4a3b 248 /* True if all warnings should be disabled. */
e3339d0f 249 bool dc_inhibit_warnings;
5f0f4a3b
JM
250
251 /* True if warnings should be given in system headers. */
e3339d0f 252 bool dc_warn_system_headers;
5f0f4a3b 253
3a789837 254 /* Maximum number of errors to report. */
d0ea9f0a 255 int max_errors;
3a789837 256
e2840263 257 /* This function is called before any message is printed out. It is
c4765d18 258 responsible for preparing message prefix and such. For example, it
e2840263
GDR
259 might say:
260 In file included from "/usr/local/include/curses.h:5:
261 from "/home/gdr/src/nifty_printer.h:56:
262 ...
263 */
47b69537 264 diagnostic_starter_fn begin_diagnostic;
e2840263 265
876217ae
DM
266 /* This function is called by diagnostic_show_locus in between
267 disjoint spans of source code, so that the context can print
268 something to indicate that a new span of source code has begun. */
269 diagnostic_start_span_fn start_span;
270
eebedaa5 271 /* This function is called after the diagnostic message is printed. */
47b69537 272 diagnostic_finalizer_fn end_diagnostic;
e2840263 273
27e511e0 274 /* Client hook to report an internal error. */
a13812e2 275 void (*internal_error) (diagnostic_context *, const char *, va_list *);
27e511e0 276
5f0f4a3b
JM
277 /* Client hook to say whether the option controlling a diagnostic is
278 enabled. Returns nonzero if enabled, zero if disabled. */
fa5baeed 279 int (*option_enabled) (int, unsigned, void *);
46625112
JM
280
281 /* Client information to pass as second argument to
282 option_enabled. */
283 void *option_state;
5f0f4a3b
JM
284
285 /* Client hook to return the name of an option that controls a
286 diagnostic. Returns malloced memory. The first diagnostic_t
287 argument is the kind of diagnostic before any reclassification
288 (of warnings as errors, etc.); the second is the kind after any
289 reclassification. May return NULL if no name is to be printed.
290 May be passed 0 as well as the index of a particular option. */
291 char *(*option_name) (diagnostic_context *, int, diagnostic_t, diagnostic_t);
292
b4c7ca2e
DM
293 /* Client hook to return a URL describing the option that controls
294 a diagnostic. Returns malloced memory. May return NULL if no URL
295 is available. May be passed 0 as well as the index of a
296 particular option. */
297 char *(*get_option_url) (diagnostic_context *, int);
298
4bc1899b
DM
299 void (*print_path) (diagnostic_context *, const diagnostic_path *);
300 json::value *(*make_json_for_path) (diagnostic_context *, const diagnostic_path *);
301
cf835838
JM
302 /* Auxiliary data for client. */
303 void *x_data;
47b69537 304
1b8b126f
MLI
305 /* Used to detect that the last caret was printed at the same location. */
306 location_t last_location;
307
966e8f4d
TT
308 /* Used to detect when the input file stack has changed since last
309 described. */
26d5ed6c 310 const line_map_ordinary *last_module;
47b69537
GDR
311
312 int lock;
0e94b750 313
fa5baeed
MS
314 /* A copy of lang_hooks.option_lang_mask (). */
315 unsigned lang_mask;
316
0e94b750 317 bool inhibit_notes_p;
8a645150
DM
318
319 /* When printing source code, should the characters at carets and ranges
320 be colorized? (assuming colorization is on at all).
321 This should be true for frontends that generate range information
322 (so that the ranges of code are colorized),
323 and false for frontends that merely specify points within the
324 source code (to avoid e.g. colorizing just the first character in
325 a token, which would look strange). */
326 bool colorize_source_p;
f3352cab 327
96e6ae57
DM
328 /* When printing source code, should labelled ranges be printed? */
329 bool show_labels_p;
330
56b61d7f
DM
331 /* When printing source code, should there be a left-hand margin
332 showing line numbers? */
333 bool show_line_numbers_p;
334
0141ab44
DM
335 /* If printing source code, what should the minimum width of the margin
336 be? Line numbers will be right-aligned, and padded to this width. */
337 int min_margin_width;
338
f3352cab
DM
339 /* Usable by plugins; if true, print a debugging ruler above the
340 source output. */
341 bool show_ruler_p;
a93eac6a 342
76ef38e3
ML
343 /* True if -freport-bug option is used. */
344 bool report_bug;
345
f1096055
DM
346 /* Used to specify additional diagnostic output to be emitted after the
347 rest of the diagnostic. This is for implementing
348 -fdiagnostics-parseable-fixits and GCC_EXTRA_DIAGNOSTIC_OUTPUT. */
349 enum diagnostics_extra_output_kind extra_output_kind;
717ebe91 350
004bb936
LH
351 /* What units to use when outputting the column number. */
352 enum diagnostics_column_unit column_unit;
353
354 /* The origin for the column number (1-based or 0-based typically). */
355 int column_origin;
356
357 /* The size of the tabstop for tab expansion. */
358 int tabstop;
359
bd5e882c
DM
360 /* How should non-ASCII/non-printable bytes be escaped when
361 a diagnostic suggests escaping the source code on output. */
362 enum diagnostics_escape_format escape_format;
363
717ebe91
DM
364 /* If non-NULL, an edit_context to which fix-it hints should be
365 applied, for generating patches. */
366 edit_context *edit_context_ptr;
097f82ec
DM
367
368 /* How many diagnostic_group instances are currently alive. */
369 int diagnostic_group_nesting_depth;
370
371 /* How many diagnostics have been emitted since the bottommost
372 diagnostic_group was pushed. */
373 int diagnostic_group_emission_count;
374
375 /* Optional callbacks for handling diagnostic groups. */
376
377 /* If non-NULL, this will be called immediately before the first
378 time a diagnostic is emitted within a stack of groups. */
379 void (*begin_group_cb) (diagnostic_context * context);
380
381 /* If non-NULL, this will be called when a stack of groups is
382 popped if any diagnostics were emitted within that group. */
383 void (*end_group_cb) (diagnostic_context * context);
478dd60d
DM
384
385 /* Callback for final cleanup. */
386 void (*final_cb) (diagnostic_context *context);
6feb628a
MS
387
388 /* Callback to set the locations of call sites along the inlining
389 stack corresponding to a diagnostic location. Needed to traverse
390 the BLOCK_SUPERCONTEXT() chain hanging off the LOCATION_BLOCK()
391 of a diagnostic's location. */
392 void (*set_locations_cb)(diagnostic_context *, diagnostic_info *);
d3a57993
JM
393
394 /* Include files that diagnostic_report_current_module has already listed the
395 include path for. */
396 hash_set<location_t, false, location_hash> *includes_seen;
e2840263
GDR
397};
398
0e94b750
MLI
399static inline void
400diagnostic_inhibit_notes (diagnostic_context * context)
401{
402 context->inhibit_notes_p = true;
403}
404
405
6b67c26e 406/* Client supplied function to announce a diagnostic. */
e2840263 407#define diagnostic_starter(DC) (DC)->begin_diagnostic
6b67c26e
GDR
408
409/* Client supplied function called after a diagnostic message is
410 displayed. */
e2840263 411#define diagnostic_finalizer(DC) (DC)->end_diagnostic
6b67c26e 412
cf835838
JM
413/* Extension hooks for client. */
414#define diagnostic_context_auxiliary_data(DC) (DC)->x_data
415#define diagnostic_info_auxiliary_data(DI) (DI)->x_data
6b67c26e 416
b6fe0bb8 417/* Same as pp_format_decoder. Works on 'diagnostic_context *'. */
e1a4dd13 418#define diagnostic_format_decoder(DC) ((DC)->printer->format_decoder)
6b67c26e 419
bd6bec6b 420/* Same as output_prefixing_rule. Works on 'diagnostic_context *'. */
39ce81c9 421#define diagnostic_prefixing_rule(DC) ((DC)->printer->wrapping.rule)
e2840263 422
886e0865
GK
423/* Raise SIGABRT on any diagnostic of severity DK_ERROR or higher. */
424#define diagnostic_abort_on_error(DC) \
425 (DC)->abort_on_error = true
426
4fcc2065 427/* This diagnostic_context is used by front-ends that directly output
764dbbf2 428 diagnostic messages without going through `error', `warning',
6b67c26e 429 and similar functions. */
f68fc4db 430extern diagnostic_context *global_dc;
764dbbf2 431
f622a56b
TC
432/* Returns whether the diagnostic framework has been intialized already and is
433 ready for use. */
434#define diagnostic_ready_p() (global_dc->printer != NULL)
435
886e0865 436/* The total count of a KIND of diagnostics emitted so far. */
4fcc2065 437#define diagnostic_kind_count(DC, DK) (DC)->diagnostic_count[(int) (DK)]
2a2b2d43
GDR
438
439/* The number of errors that have been issued so far. Ideally, these
4fcc2065 440 would take a diagnostic_context as an argument. */
6b67c26e 441#define errorcount diagnostic_kind_count (global_dc, DK_ERROR)
2a2b2d43 442/* Similarly, but for warnings. */
6b67c26e 443#define warningcount diagnostic_kind_count (global_dc, DK_WARNING)
37e99116
JJ
444/* Similarly, but for warnings promoted to errors. */
445#define werrorcount diagnostic_kind_count (global_dc, DK_WERROR)
2a2b2d43 446/* Similarly, but for sorrys. */
6b67c26e 447#define sorrycount diagnostic_kind_count (global_dc, DK_SORRY)
2a2b2d43 448
cc2902df 449/* Returns nonzero if warnings should be emitted. */
5f0f4a3b 450#define diagnostic_report_warnings_p(DC, LOC) \
e3339d0f
JM
451 (!(DC)->dc_inhibit_warnings \
452 && !(in_system_header_at (LOC) && !(DC)->dc_warn_system_headers))
2a2b2d43 453
87cf0651
SB
454/* Override the option index to be used for reporting a
455 diagnostic. */
62a77bdf
DM
456
457static inline void
458diagnostic_override_option_index (diagnostic_info *info, int optidx)
459{
460 info->option_index = optidx;
461}
87cf0651 462
95bd1dd7 463/* Diagnostic related functions. */
5f0f4a3b 464extern void diagnostic_initialize (diagnostic_context *, int);
97aa8bb6 465extern void diagnostic_color_init (diagnostic_context *, int value = -1);
d2608235 466extern void diagnostic_urls_init (diagnostic_context *, int value = -1);
d0b8780d 467extern void diagnostic_finish (diagnostic_context *);
07a0b324 468extern void diagnostic_report_current_module (diagnostic_context *, location_t);
cc015f3a
DM
469extern void diagnostic_show_locus (diagnostic_context *,
470 rich_location *richloc,
471 diagnostic_t diagnostic_kind);
4bc1899b 472extern void diagnostic_show_any_path (diagnostic_context *, diagnostic_info *);
79cf5994 473
3ac6b5cf
LH
474/* Because we read source files a second time after the frontend did it the
475 first time, we need to know how the frontend handled things like character
476 set conversion and UTF-8 BOM stripping, in order to make everything
477 consistent. This function needs to be called by each frontend that requires
478 non-default behavior, to inform the diagnostics infrastructure how input is
479 to be processed. The default behavior is to do no conversion and not to
480 strip a UTF-8 BOM.
481
482 The callback should return the input charset to be used to convert the given
483 file's contents to UTF-8, or it should return NULL if no conversion is needed
484 for this file. SHOULD_SKIP_BOM only applies in case no conversion was
485 performed, and if true, it will cause a UTF-8 BOM to be skipped at the
486 beginning of the file. (In case a conversion was performed, the BOM is
487 rather skipped as part of the conversion process.) */
488
489void diagnostic_initialize_input_context (diagnostic_context *context,
490 diagnostic_input_charset_callback ccb,
491 bool should_skip_bom);
492
79cf5994
DD
493/* Force diagnostics controlled by OPTIDX to be kind KIND. */
494extern diagnostic_t diagnostic_classify_diagnostic (diagnostic_context *,
495 int /* optidx */,
cd7fe53b
DD
496 diagnostic_t /* kind */,
497 location_t);
498extern void diagnostic_push_diagnostics (diagnostic_context *, location_t);
499extern void diagnostic_pop_diagnostics (diagnostic_context *, location_t);
71205d17 500extern bool diagnostic_report_diagnostic (diagnostic_context *,
79a490a9 501 diagnostic_info *);
db857e7d 502#ifdef ATTRIBUTE_GCC_DIAG
79a490a9 503extern void diagnostic_set_info (diagnostic_info *, const char *, va_list *,
8a645150 504 rich_location *, diagnostic_t) ATTRIBUTE_GCC_DIAG(2,0);
178b58b5 505extern void diagnostic_set_info_translated (diagnostic_info *, const char *,
8a645150 506 va_list *, rich_location *,
178b58b5
JM
507 diagnostic_t)
508 ATTRIBUTE_GCC_DIAG(2,0);
dfa32261
MLI
509extern void diagnostic_append_note (diagnostic_context *, location_t,
510 const char *, ...) ATTRIBUTE_GCC_DIAG(3,4);
db857e7d 511#endif
dfa32261 512extern char *diagnostic_build_prefix (diagnostic_context *, const diagnostic_info *);
4537ec0c 513void default_diagnostic_starter (diagnostic_context *, diagnostic_info *);
876217ae
DM
514void default_diagnostic_start_span_fn (diagnostic_context *,
515 expanded_location);
478dd60d
DM
516void default_diagnostic_finalizer (diagnostic_context *, diagnostic_info *,
517 diagnostic_t);
9fec0042 518void diagnostic_set_caret_max_width (diagnostic_context *context, int value);
c4100eae 519void diagnostic_action_after_output (diagnostic_context *, diagnostic_t);
d0ea9f0a 520void diagnostic_check_max_errors (diagnostic_context *, bool flush = false);
9fec0042 521
7ecc3eb9 522void diagnostic_file_cache_fini (void);
47b69537 523
c9db45aa
TB
524int get_terminal_width (void);
525
2a2703a2
MLI
526/* Return the location associated to this diagnostic. Parameter WHICH
527 specifies which location. By default, expand the first one. */
528
529static inline location_t
530diagnostic_location (const diagnostic_info * diagnostic, int which = 0)
531{
532 return diagnostic->message.get_location (which);
533}
534
8a645150
DM
535/* Return the number of locations to be printed in DIAGNOSTIC. */
536
537static inline unsigned int
538diagnostic_num_locations (const diagnostic_info * diagnostic)
539{
540 return diagnostic->message.m_richloc->get_num_locations ();
541}
542
2a2703a2
MLI
543/* Expand the location of this diagnostic. Use this function for
544 consistency. Parameter WHICH specifies which location. By default,
545 expand the first one. */
99abe958
MLI
546
547static inline expanded_location
2a2703a2 548diagnostic_expand_location (const diagnostic_info * diagnostic, int which = 0)
99abe958 549{
40499f81 550 return diagnostic->richloc->get_expanded_location (which);
99abe958
MLI
551}
552
2a2703a2
MLI
553/* This is somehow the right-side margin of a caret line, that is, we
554 print at least these many characters after the position pointed at
555 by the caret. */
ba82e6b5 556const int CARET_LINE_MARGIN = 10;
2a2703a2
MLI
557
558/* Return true if the two locations can be represented within the same
559 caret line. This is used to build a prefix and also to determine
560 whether to print one or two caret lines. */
561
562static inline bool
563diagnostic_same_line (const diagnostic_context *context,
564 expanded_location s1, expanded_location s2)
565{
566 return s2.column && s1.line == s2.line
567 && context->caret_max_width - CARET_LINE_MARGIN > abs (s1.column - s2.column);
568}
569
8a645150 570extern const char *diagnostic_get_color_for_kind (diagnostic_t kind);
004bb936
LH
571extern int diagnostic_converted_column (diagnostic_context *context,
572 expanded_location s);
2a2703a2 573
47b69537 574/* Pure text formatting support functions. */
e78e8a0b 575extern char *file_name_as_prefix (diagnostic_context *, const char *);
345ed1fe 576
8e54f6d3
MLI
577extern char *build_message_string (const char *, ...) ATTRIBUTE_PRINTF_1;
578
478dd60d
DM
579extern void diagnostic_output_format_init (diagnostic_context *,
580 enum diagnostics_output_format);
8e54f6d3 581
bc65bad2
MG
582/* Compute the number of digits in the decimal representation of an integer. */
583extern int num_digits (int);
584
004bb936
LH
585extern json::value *json_from_expanded_location (diagnostic_context *context,
586 location_t loc);
4bc1899b 587
620cd786
JM
588extern bool warning_enabled_at (location_t, int);
589
88657302 590#endif /* ! GCC_DIAGNOSTIC_H */
This page took 6.516882 seconds and 5 git commands to generate.