1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
|
/* Classic text-based output of diagnostics.
Copyright (C) 1999-2024 Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#include "config.h"
#define INCLUDE_VECTOR
#include "system.h"
#include "coretypes.h"
#include "version.h"
#include "intl.h"
#include "diagnostic.h"
#include "diagnostic-color.h"
#include "diagnostic-url.h"
#include "diagnostic-metadata.h"
#include "diagnostic-path.h"
#include "diagnostic-client-data-hooks.h"
#include "diagnostic-diagram.h"
#include "diagnostic-format-text.h"
#include "text-art/theme.h"
/* Disable warnings about quoting issues in the pp_xxx calls below
that (intentionally) don't follow GCC diagnostic conventions. */
#if __GNUC__ >= 10
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wformat-diag"
#endif
/* class diagnostic_text_output_format : public diagnostic_output_format. */
diagnostic_text_output_format::~diagnostic_text_output_format ()
{
/* Some of the errors may actually have been warnings. */
if (m_context.diagnostic_count (DK_WERROR))
{
pretty_printer *pp = get_printer ();
/* -Werror was given. */
if (m_context.warning_as_error_requested_p ())
pp_verbatim (pp,
_("%s: all warnings being treated as errors"),
progname);
/* At least one -Werror= was given. */
else
pp_verbatim (pp,
_("%s: some warnings being treated as errors"),
progname);
pp_newline_and_flush (pp);
}
if (m_includes_seen)
{
delete m_includes_seen;
m_includes_seen = nullptr;
}
}
/* Implementation of diagnostic_output_format::on_report_diagnostic vfunc
for GCC's standard textual output. */
void
diagnostic_text_output_format::
on_report_diagnostic (const diagnostic_info &diagnostic,
diagnostic_t orig_diag_kind)
{
pretty_printer *pp = get_printer ();
(*diagnostic_text_starter (&m_context)) (*this, &diagnostic);
pp_output_formatted_text (pp, m_context.get_urlifier ());
if (m_context.m_show_cwe)
print_any_cwe (diagnostic);
if (m_context.m_show_rules)
print_any_rules (diagnostic);
if (m_context.m_show_option_requested)
print_option_information (diagnostic, orig_diag_kind);
(*diagnostic_text_finalizer (&m_context)) (*this,
&diagnostic,
orig_diag_kind);
}
void
diagnostic_text_output_format::on_diagram (const diagnostic_diagram &diagram)
{
pretty_printer *const pp = get_printer ();
char *saved_prefix = pp_take_prefix (pp);
pp_set_prefix (pp, NULL);
/* Use a newline before and after and a two-space indent
to make the diagram stand out a little from the wall of text. */
pp_newline (pp);
diagram.get_canvas ().print_to_pp (pp, " ");
pp_newline (pp);
pp_set_prefix (pp, saved_prefix);
pp_flush (pp);
}
void
diagnostic_text_output_format::
after_diagnostic (const diagnostic_info &diagnostic)
{
show_any_path (diagnostic);
}
/* If DIAGNOSTIC has a CWE identifier, print it.
For example, if the diagnostic metadata associates it with CWE-119,
" [CWE-119]" will be printed, suitably colorized, and with a URL of a
description of the security issue. */
void
diagnostic_text_output_format::print_any_cwe (const diagnostic_info &diagnostic)
{
if (diagnostic.metadata == NULL)
return;
int cwe = diagnostic.metadata->get_cwe ();
if (cwe)
{
pretty_printer * const pp = get_printer ();
char *saved_prefix = pp_take_prefix (pp);
pp_string (pp, " [");
const char *kind_color = diagnostic_get_color_for_kind (diagnostic.kind);
pp_string (pp, colorize_start (pp_show_color (pp), kind_color));
if (pp->supports_urls_p ())
{
char *cwe_url = get_cwe_url (cwe);
pp_begin_url (pp, cwe_url);
free (cwe_url);
}
pp_printf (pp, "CWE-%i", cwe);
pp_set_prefix (pp, saved_prefix);
if (pp->supports_urls_p ())
pp_end_url (pp);
pp_string (pp, colorize_stop (pp_show_color (pp)));
pp_character (pp, ']');
}
}
/* If DIAGNOSTIC has any rules associated with it, print them.
For example, if the diagnostic metadata associates it with a rule
named "STR34-C", then " [STR34-C]" will be printed, suitably colorized,
with any URL provided by the rule. */
void
diagnostic_text_output_format::
print_any_rules (const diagnostic_info &diagnostic)
{
if (diagnostic.metadata == NULL)
return;
for (unsigned idx = 0; idx < diagnostic.metadata->get_num_rules (); idx++)
{
const diagnostic_metadata::rule &rule
= diagnostic.metadata->get_rule (idx);
if (char *desc = rule.make_description ())
{
pretty_printer * const pp = get_printer ();
char *saved_prefix = pp_take_prefix (pp);
pp_string (pp, " [");
const char *kind_color
= diagnostic_get_color_for_kind (diagnostic.kind);
pp_string (pp, colorize_start (pp_show_color (pp), kind_color));
char *url = NULL;
if (pp->supports_urls_p ())
{
url = rule.make_url ();
if (url)
pp_begin_url (pp, url);
}
pp_string (pp, desc);
pp_set_prefix (pp, saved_prefix);
if (pp->supports_urls_p ())
if (url)
pp_end_url (pp);
free (url);
pp_string (pp, colorize_stop (pp_show_color (pp)));
pp_character (pp, ']');
free (desc);
}
}
}
/* Print any metadata about the option used to control DIAGNOSTIC to CONTEXT's
printer, e.g. " [-Werror=uninitialized]".
Subroutine of diagnostic_context::report_diagnostic. */
void
diagnostic_text_output_format::
print_option_information (const diagnostic_info &diagnostic,
diagnostic_t orig_diag_kind)
{
if (char *option_text
= m_context.make_option_name (diagnostic.option_id,
orig_diag_kind, diagnostic.kind))
{
char *option_url = nullptr;
pretty_printer * const pp = get_printer ();
if (pp->supports_urls_p ())
option_url = m_context.make_option_url (diagnostic.option_id);
pp_string (pp, " [");
const char *kind_color = diagnostic_get_color_for_kind (diagnostic.kind);
pp_string (pp, colorize_start (pp_show_color (pp), kind_color));
if (option_url)
pp_begin_url (pp, option_url);
pp_string (pp, option_text);
if (option_url)
{
pp_end_url (pp);
free (option_url);
}
pp_string (pp, colorize_stop (pp_show_color (pp)));
pp_character (pp, ']');
free (option_text);
}
}
/* Only dump the "In file included from..." stack once for each file. */
bool
diagnostic_text_output_format::includes_seen_p (const line_map_ordinary *map)
{
/* No include path for main. */
if (MAIN_FILE_P (map))
return true;
/* Always identify C++ modules, at least for now. */
auto probe = map;
if (linemap_check_ordinary (map)->reason == LC_RENAME)
/* The module source file shows up as LC_RENAME inside LC_MODULE. */
probe = linemap_included_from_linemap (line_table, map);
if (MAP_MODULE_P (probe))
return false;
if (!m_includes_seen)
m_includes_seen = new hash_set<location_t, false, location_hash>;
/* Hash the location of the #include directive to better handle files
that are included multiple times with different macros defined. */
return m_includes_seen->add (linemap_included_from (map));
}
label_text
diagnostic_text_output_format::
get_location_text (const expanded_location &s) const
{
diagnostic_column_policy column_policy (get_context ());
return column_policy.get_location_text (s,
show_column_p (),
pp_show_color (get_printer ()));
}
/* Helpers for writing lang-specific starters/finalizers for text output. */
/* Return a formatted line and column ':%line:%column'. Elided if
line == 0 or col < 0. (A column of 0 may be valid due to the
-fdiagnostics-column-origin option.)
The result is a statically allocated buffer. */
const char *
maybe_line_and_column (int line, int col)
{
static char result[32];
if (line)
{
size_t l
= snprintf (result, sizeof (result),
col >= 0 ? ":%d:%d" : ":%d", line, col);
gcc_checking_assert (l < sizeof (result));
}
else
result[0] = 0;
return result;
}
void
diagnostic_text_output_format::report_current_module (location_t where)
{
pretty_printer *pp = get_printer ();
const line_map_ordinary *map = NULL;
if (pp_needs_newline (pp))
{
pp_newline (pp);
pp_needs_newline (pp) = false;
}
if (where <= BUILTINS_LOCATION)
return;
linemap_resolve_location (line_table, where,
LRK_MACRO_DEFINITION_LOCATION,
&map);
if (map && m_last_module != map)
{
m_last_module = map;
if (!includes_seen_p (map))
{
bool first = true, need_inc = true, was_module = MAP_MODULE_P (map);
expanded_location s = {};
do
{
where = linemap_included_from (map);
map = linemap_included_from_linemap (line_table, map);
bool is_module = MAP_MODULE_P (map);
s.file = LINEMAP_FILE (map);
s.line = SOURCE_LINE (map, where);
int col = -1;
if (first && show_column_p ())
{
s.column = SOURCE_COLUMN (map, where);
col = get_column_policy ().converted_column (s);
}
const char *line_col = maybe_line_and_column (s.line, col);
static const char *const msgs[] =
{
NULL,
N_(" from"),
N_("In file included from"), /* 2 */
N_(" included from"),
N_("In module"), /* 4 */
N_("of module"),
N_("In module imported at"), /* 6 */
N_("imported at"),
};
unsigned index = (was_module ? 6 : is_module ? 4
: need_inc ? 2 : 0) + !first;
pp_verbatim (pp, "%s%s %r%s%s%R",
first ? "" : was_module ? ", " : ",\n",
_(msgs[index]),
"locus", s.file, line_col);
first = false, need_inc = was_module, was_module = is_module;
}
while (!includes_seen_p (map));
pp_verbatim (pp, ":");
pp_newline (pp);
}
}
}
void
default_diagnostic_text_starter (diagnostic_text_output_format &text_output,
const diagnostic_info *diagnostic)
{
text_output.report_current_module (diagnostic_location (diagnostic));
pretty_printer *const pp = text_output.get_printer ();
pp_set_prefix (pp, text_output.build_prefix (*diagnostic));
}
void
default_diagnostic_text_finalizer (diagnostic_text_output_format &text_output,
const diagnostic_info *diagnostic,
diagnostic_t)
{
pretty_printer *const pp = text_output.get_printer ();
char *saved_prefix = pp_take_prefix (pp);
pp_set_prefix (pp, NULL);
pp_newline (pp);
diagnostic_show_locus (&text_output.get_context (),
diagnostic->richloc, diagnostic->kind, pp);
pp_set_prefix (pp, saved_prefix);
pp_flush (pp);
}
#if __GNUC__ >= 10
# pragma GCC diagnostic pop
#endif
|