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;
159 virtual diagnostic_thread_id_t
get_thread_id () const = 0;
162 /* Abstract base class representing a thread of execution within
164 Each diagnostic_event is associated with one thread.
165 Typically there is just one thread per diagnostic_path. */
167 class diagnostic_thread
170 virtual ~diagnostic_thread () {}
171 virtual label_text
get_name (bool can_colorize
) const = 0;
174 /* Abstract base class for getting at a sequence of events. */
176 class diagnostic_path
179 virtual ~diagnostic_path () {}
180 virtual unsigned num_events () const = 0;
181 virtual const diagnostic_event
& get_event (int idx
) const = 0;
182 virtual unsigned num_threads () const = 0;
183 virtual const diagnostic_thread
&
184 get_thread (diagnostic_thread_id_t
) const = 0;
186 bool interprocedural_p () const;
187 bool multithreaded_p () const;
190 bool get_first_event_in_a_function (unsigned *out_idx
) const;
193 /* Concrete subclasses. */
195 /* A simple implementation of diagnostic_event. */
197 class simple_diagnostic_event
: public diagnostic_event
200 simple_diagnostic_event (location_t loc
, tree fndecl
, int depth
,
202 diagnostic_thread_id_t thread_id
= 0);
203 ~simple_diagnostic_event ();
205 location_t
get_location () const final override
{ return m_loc
; }
206 tree
get_fndecl () const final override
{ return m_fndecl
; }
207 int get_stack_depth () const final override
{ return m_depth
; }
208 label_text
get_desc (bool) const final override
210 return label_text::borrow (m_desc
);
212 const logical_location
*get_logical_location () const final override
216 meaning
get_meaning () const final override
220 diagnostic_thread_id_t
get_thread_id () const final override
229 char *m_desc
; // has been i18n-ed and formatted
230 diagnostic_thread_id_t m_thread_id
;
233 /* A simple implementation of diagnostic_thread. */
235 class simple_diagnostic_thread
: public diagnostic_thread
238 simple_diagnostic_thread (const char *name
) : m_name (name
) {}
239 label_text
get_name (bool) const final override
241 return label_text::borrow (m_name
);
245 const char *m_name
; // has been i18n-ed and formatted
248 /* A simple implementation of diagnostic_path, as a vector of
249 simple_diagnostic_event instances. */
251 class simple_diagnostic_path
: public diagnostic_path
254 simple_diagnostic_path (pretty_printer
*event_pp
);
256 unsigned num_events () const final override
;
257 const diagnostic_event
& get_event (int idx
) const final override
;
258 unsigned num_threads () const final override
;
259 const diagnostic_thread
&
260 get_thread (diagnostic_thread_id_t
) const final override
;
262 diagnostic_thread_id_t
add_thread (const char *name
);
264 diagnostic_event_id_t
add_event (location_t loc
, tree fndecl
, int depth
,
265 const char *fmt
, ...)
266 ATTRIBUTE_GCC_DIAG(5,6);
267 diagnostic_event_id_t
268 add_thread_event (diagnostic_thread_id_t thread_id
,
269 location_t loc
, tree fndecl
, int depth
,
270 const char *fmt
, ...)
271 ATTRIBUTE_GCC_DIAG(6,7);
274 auto_delete_vec
<simple_diagnostic_thread
> m_threads
;
275 auto_delete_vec
<simple_diagnostic_event
> m_events
;
277 /* (for use by add_event). */
278 pretty_printer
*m_event_pp
;
281 extern void debug (diagnostic_path
*path
);
283 #endif /* ! GCC_DIAGNOSTIC_PATH_H */