1 /* Paths through the code associated with a diagnostic.
2 Copyright (C) 2019-2023 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.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
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
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_PATH_H
22 #define GCC_DIAGNOSTIC_PATH_H
24 #include "diagnostic.h" /* for ATTRIBUTE_GCC_DIAG. */
25 #include "diagnostic-event-id.h"
27 /* A diagnostic_path is an optional additional piece of metadata associated
28 with a diagnostic (via its rich_location).
30 It describes a sequence of events predicted by the compiler that
31 lead to the problem occurring, with their locations in the user's source,
32 and text descriptions.
34 For example, the following error has a 3-event path:
36 test.c: In function 'demo':
37 test.c:29:5: error: passing NULL as argument 1 to 'PyList_Append' which
38 requires a non-NULL parameter
39 29 | PyList_Append(list, item);
40 | ^~~~~~~~~~~~~~~~~~~~~~~~~
43 | 25 | list = PyList_New(0);
46 | | (1) when 'PyList_New' fails, returning NULL
48 | 27 | for (i = 0; i < count; i++) {
51 | | (2) when 'i < count'
52 | 28 | item = PyLong_FromLong(random());
53 | 29 | PyList_Append(list, item);
54 | | ~~~~~~~~~~~~~~~~~~~~~~~~~
56 | | (3) when calling 'PyList_Append', passing NULL from (1) as argument 1
59 The diagnostic-printing code has consolidated the path into a single
60 run of events, since all the events are near each other and within the same
61 function; more complicated examples (such as interprocedural paths)
62 might be printed as multiple runs of events. */
64 /* Abstract base classes, describing events within a path, and the paths
67 /* One event within a diagnostic_path. */
69 class diagnostic_event
72 /* Enums for giving a sense of what this event means.
73 Roughly corresponds to SARIF v2.1.0 section 3.38.8. */
93 NOUN_sensitive
, // this one isn't in SARIF v2.1.0; filed as https://github.com/oasis-tcs/sarif-spec/issues/530
106 /* A bundle of such enums, allowing for descriptions of the meaning of
108 - "acquire memory": meaning (VERB_acquire, NOUN_memory)
109 - "take true branch"": meaning (VERB_branch, PROPERTY_true)
110 - "return from function": meaning (VERB_return, NOUN_function)
111 etc, as per SARIF's threadFlowLocation "kinds" property
112 (SARIF v2.1.0 section 3.38.8). */
116 : m_verb (VERB_unknown
),
117 m_noun (NOUN_unknown
),
118 m_property (PROPERTY_unknown
)
121 meaning (enum verb verb
, enum noun noun
)
122 : m_verb (verb
), m_noun (noun
), m_property (PROPERTY_unknown
)
125 meaning (enum verb verb
, enum property property
)
126 : m_verb (verb
), m_noun (NOUN_unknown
), m_property (property
)
130 void dump_to_pp (pretty_printer
*pp
) const;
132 static const char *maybe_get_verb_str (enum verb
);
133 static const char *maybe_get_noun_str (enum noun
);
134 static const char *maybe_get_property_str (enum property
);
138 enum property m_property
;
141 virtual ~diagnostic_event () {}
143 virtual location_t
get_location () const = 0;
145 virtual tree
get_fndecl () const = 0;
147 /* Stack depth, so that consumers can visualizes the interprocedural
148 calls, returns, and frame nesting. */
149 virtual int get_stack_depth () const = 0;
151 /* Get a localized (and possibly colorized) description of this event. */
152 virtual label_text
get_desc (bool can_colorize
) const = 0;
154 /* Get a logical_location for this event, or NULL. */
155 virtual const logical_location
*get_logical_location () const = 0;
157 virtual meaning
get_meaning () const = 0;
160 /* Abstract base class for getting at a sequence of events. */
162 class diagnostic_path
165 virtual ~diagnostic_path () {}
166 virtual unsigned num_events () const = 0;
167 virtual const diagnostic_event
& get_event (int idx
) const = 0;
169 bool interprocedural_p () const;
172 bool get_first_event_in_a_function (unsigned *out_idx
) const;
175 /* Concrete subclasses. */
177 /* A simple implementation of diagnostic_event. */
179 class simple_diagnostic_event
: public diagnostic_event
182 simple_diagnostic_event (location_t loc
, tree fndecl
, int depth
,
184 ~simple_diagnostic_event ();
186 location_t
get_location () const final override
{ return m_loc
; }
187 tree
get_fndecl () const final override
{ return m_fndecl
; }
188 int get_stack_depth () const final override
{ return m_depth
; }
189 label_text
get_desc (bool) const final override
191 return label_text::borrow (m_desc
);
193 const logical_location
*get_logical_location () const final override
197 meaning
get_meaning () const final override
206 char *m_desc
; // has been i18n-ed and formatted
209 /* A simple implementation of diagnostic_path, as a vector of
210 simple_diagnostic_event instances. */
212 class simple_diagnostic_path
: public diagnostic_path
215 simple_diagnostic_path (pretty_printer
*event_pp
)
216 : m_event_pp (event_pp
) {}
218 unsigned num_events () const final override
;
219 const diagnostic_event
& get_event (int idx
) const final override
;
221 diagnostic_event_id_t
add_event (location_t loc
, tree fndecl
, int depth
,
222 const char *fmt
, ...)
223 ATTRIBUTE_GCC_DIAG(5,6);
226 auto_delete_vec
<simple_diagnostic_event
> m_events
;
228 /* (for use by add_event). */
229 pretty_printer
*m_event_pp
;
232 extern void debug (diagnostic_path
*path
);
234 #endif /* ! GCC_DIAGNOSTIC_PATH_H */