Branch data Line data Source code
1 : : /* Classes for saving, deduplicating, and emitting analyzer diagnostics.
2 : : Copyright (C) 2019-2024 Free Software Foundation, Inc.
3 : : Contributed by David Malcolm <dmalcolm@redhat.com>.
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify it
8 : : under the terms of the GNU General Public License as published by
9 : : the Free Software Foundation; either version 3, or (at your option)
10 : : any later version.
11 : :
12 : : GCC is distributed in the hope that it will be useful, but
13 : : WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 : : General Public License for more details.
16 : :
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/>. */
20 : :
21 : : #include "config.h"
22 : : #define INCLUDE_VECTOR
23 : : #include "system.h"
24 : : #include "coretypes.h"
25 : : #include "tree.h"
26 : : #include "input.h"
27 : : #include "diagnostic-core.h"
28 : : #include "pretty-print.h"
29 : : #include "gcc-rich-location.h"
30 : : #include "gimple-pretty-print.h"
31 : : #include "function.h"
32 : : #include "diagnostic-event-id.h"
33 : : #include "diagnostic-path.h"
34 : : #include "bitmap.h"
35 : : #include "ordered-hash-map.h"
36 : : #include "analyzer/analyzer.h"
37 : : #include "analyzer/analyzer-logging.h"
38 : : #include "analyzer/sm.h"
39 : : #include "analyzer/pending-diagnostic.h"
40 : : #include "analyzer/diagnostic-manager.h"
41 : : #include "analyzer/call-string.h"
42 : : #include "analyzer/program-point.h"
43 : : #include "analyzer/store.h"
44 : : #include "analyzer/region-model.h"
45 : : #include "analyzer/constraint-manager.h"
46 : : #include "cfg.h"
47 : : #include "basic-block.h"
48 : : #include "gimple.h"
49 : : #include "gimple-iterator.h"
50 : : #include "inlining-iterator.h"
51 : : #include "cgraph.h"
52 : : #include "digraph.h"
53 : : #include "analyzer/supergraph.h"
54 : : #include "analyzer/program-state.h"
55 : : #include "analyzer/exploded-graph.h"
56 : : #include "analyzer/trimmed-graph.h"
57 : : #include "analyzer/feasible-graph.h"
58 : : #include "analyzer/checker-path.h"
59 : : #include "analyzer/reachability.h"
60 : : #include "make-unique.h"
61 : : #include "diagnostic-format-sarif.h"
62 : :
63 : : #if ENABLE_ANALYZER
64 : :
65 : : namespace ana {
66 : :
67 : : class feasible_worklist;
68 : :
69 : : /* State for finding the shortest feasible exploded_path for a
70 : : saved_diagnostic.
71 : : This is shared between all diagnostics, so that we avoid repeating work. */
72 : :
73 : : class epath_finder
74 : : {
75 : : public:
76 : 1472 : epath_finder (const exploded_graph &eg)
77 : 1472 : : m_eg (eg),
78 : 1472 : m_sep (NULL)
79 : : {
80 : : /* This is shared by all diagnostics, but only needed if
81 : : !flag_analyzer_feasibility. */
82 : 1472 : if (!flag_analyzer_feasibility)
83 : 4 : m_sep = new shortest_exploded_paths (eg, eg.get_origin (),
84 : 4 : SPS_FROM_GIVEN_ORIGIN);
85 : 1472 : }
86 : :
87 : 1476 : ~epath_finder () { delete m_sep; }
88 : :
89 : 173926 : logger *get_logger () const { return m_eg.get_logger (); }
90 : :
91 : : std::unique_ptr<exploded_path>
92 : : get_best_epath (const exploded_node *target_enode,
93 : : const gimple *target_stmt,
94 : : const pending_diagnostic &pd,
95 : : const char *desc, unsigned diag_idx,
96 : : std::unique_ptr<feasibility_problem> *out_problem);
97 : :
98 : : private:
99 : : DISABLE_COPY_AND_ASSIGN(epath_finder);
100 : :
101 : : std::unique_ptr<exploded_path>
102 : : explore_feasible_paths (const exploded_node *target_enode,
103 : : const gimple *target_stmt,
104 : : const pending_diagnostic &pd,
105 : : const char *desc, unsigned diag_idx);
106 : : bool
107 : : process_worklist_item (feasible_worklist *worklist,
108 : : const trimmed_graph &tg,
109 : : feasible_graph *fg,
110 : : const exploded_node *target_enode,
111 : : const gimple *target_stmt,
112 : : const pending_diagnostic &pd,
113 : : unsigned diag_idx,
114 : : std::unique_ptr<exploded_path> *out_best_path) const;
115 : : void dump_trimmed_graph (const exploded_node *target_enode,
116 : : const char *desc, unsigned diag_idx,
117 : : const trimmed_graph &tg,
118 : : const shortest_paths<eg_traits, exploded_path> &sep);
119 : : void dump_feasible_graph (const exploded_node *target_enode,
120 : : const char *desc, unsigned diag_idx,
121 : : const feasible_graph &fg);
122 : : void dump_feasible_path (const exploded_node *target_enode,
123 : : unsigned diag_idx,
124 : : const feasible_graph &fg,
125 : : const feasible_node &fnode) const;
126 : :
127 : : const exploded_graph &m_eg;
128 : : shortest_exploded_paths *m_sep;
129 : : };
130 : :
131 : : /* class epath_finder. */
132 : :
133 : : /* Get the "best" exploded_path for reaching ENODE from the origin,
134 : : returning ownership of it to the caller.
135 : :
136 : : If TARGET_STMT is non-NULL, then check for reaching that stmt
137 : : within ENODE.
138 : :
139 : : Ideally we want to report the shortest feasible path.
140 : : Return NULL if we could not find a feasible path
141 : : (when flag_analyzer_feasibility is true).
142 : :
143 : : If flag_analyzer_feasibility is false, then simply return the
144 : : shortest path.
145 : :
146 : : Use DESC and DIAG_IDX when logging.
147 : :
148 : : Write any feasibility_problem to *OUT_PROBLEM. */
149 : :
150 : : std::unique_ptr<exploded_path>
151 : 6628 : epath_finder::get_best_epath (const exploded_node *enode,
152 : : const gimple *target_stmt,
153 : : const pending_diagnostic &pd,
154 : : const char *desc, unsigned diag_idx,
155 : : std::unique_ptr<feasibility_problem> *out_problem)
156 : : {
157 : 6628 : logger *logger = get_logger ();
158 : 6628 : LOG_SCOPE (logger);
159 : :
160 : 6628 : unsigned snode_idx = enode->get_supernode ()->m_index;
161 : 6628 : if (logger)
162 : 0 : logger->log ("considering %qs at EN: %i, SN: %i (sd: %i)",
163 : 0 : desc, enode->m_index, snode_idx, diag_idx);
164 : :
165 : : /* State-merging means that not every path in the egraph corresponds
166 : : to a feasible one w.r.t. states.
167 : :
168 : : We want to find the shortest feasible path from the origin to ENODE
169 : : in the egraph. */
170 : :
171 : 6628 : if (flag_analyzer_feasibility)
172 : : {
173 : : /* Attempt to find the shortest feasible path using feasible_graph. */
174 : 6624 : if (logger)
175 : 0 : logger->log ("trying to find shortest feasible path");
176 : 6624 : if (std::unique_ptr<exploded_path> epath
177 : 6624 : = explore_feasible_paths (enode, target_stmt, pd, desc, diag_idx))
178 : : {
179 : 6351 : if (logger)
180 : 0 : logger->log ("accepting %qs at EN: %i, SN: %i (sd: %i)"
181 : : " with feasible path (length: %i)",
182 : 0 : desc, enode->m_index, snode_idx, diag_idx,
183 : : epath->length ());
184 : 6351 : return epath;
185 : : }
186 : : else
187 : : {
188 : 273 : if (logger)
189 : 0 : logger->log ("rejecting %qs at EN: %i, SN: %i (sd: %i)"
190 : : " due to not finding feasible path",
191 : 0 : desc, enode->m_index, snode_idx, diag_idx);
192 : 273 : return NULL;
193 : 6624 : }
194 : : }
195 : : else
196 : : {
197 : : /* As a crude approximation to shortest feasible path, simply find
198 : : the shortest path, and note whether it is feasible.
199 : : There could be longer feasible paths within the egraph, so this
200 : : approach would lead to diagnostics being falsely rejected
201 : : (PR analyzer/96374). */
202 : 4 : if (logger)
203 : 0 : logger->log ("trying to find shortest path ignoring feasibility");
204 : 4 : gcc_assert (m_sep);
205 : 4 : std::unique_ptr<exploded_path> epath
206 : 4 : = make_unique<exploded_path> (m_sep->get_shortest_path (enode));
207 : 4 : if (epath->feasible_p (logger, out_problem, m_eg.get_engine (), &m_eg))
208 : : {
209 : 0 : if (logger)
210 : 0 : logger->log ("accepting %qs at EN: %i, SN: %i (sn: %i)"
211 : : " with feasible path (length: %i)",
212 : 0 : desc, enode->m_index, snode_idx, diag_idx,
213 : : epath->length ());
214 : : }
215 : : else
216 : : {
217 : 4 : if (logger)
218 : 0 : logger->log ("accepting %qs at EN: %i, SN: %i (sn: %i) (length: %i)"
219 : : " despite infeasible path (due to %qs)",
220 : 0 : desc, enode->m_index, snode_idx, diag_idx,
221 : : epath->length (),
222 : : "-fno-analyzer-feasibility");
223 : : }
224 : 4 : return epath;
225 : 4 : }
226 : 6628 : }
227 : :
228 : : /* A class for managing the worklist of feasible_nodes in
229 : : epath_finder::explore_feasible_paths, prioritizing them
230 : : so that shorter paths appear earlier in the queue. */
231 : :
232 : 13248 : class feasible_worklist
233 : : {
234 : : public:
235 : 6624 : feasible_worklist (const shortest_paths<eg_traits, exploded_path> &sep)
236 : 13248 : : m_queue (key_t (*this, NULL)),
237 : 6624 : m_sep (sep)
238 : : {
239 : 6624 : }
240 : :
241 : 154046 : feasible_node *take_next () { return m_queue.extract_min (); }
242 : :
243 : 157524 : void add_node (feasible_node *fnode)
244 : : {
245 : 315048 : m_queue.insert (key_t (*this, fnode), fnode);
246 : 150900 : }
247 : :
248 : : private:
249 : : struct key_t
250 : : {
251 : 164148 : key_t (const feasible_worklist &w, feasible_node *fnode)
252 : 6624 : : m_worklist (w), m_fnode (fnode)
253 : : {}
254 : :
255 : 151559 : bool operator< (const key_t &other) const
256 : : {
257 : 151559 : return cmp (*this, other) < 0;
258 : : }
259 : :
260 : 55052 : bool operator== (const key_t &other) const
261 : : {
262 : 55052 : return cmp (*this, other) == 0;
263 : : }
264 : :
265 : 55052 : bool operator> (const key_t &other) const
266 : : {
267 : 55052 : return !(*this == other || *this < other);
268 : : }
269 : :
270 : : private:
271 : 206611 : static int cmp (const key_t &ka, const key_t &kb)
272 : : {
273 : : /* Choose the node for which if the remaining path were feasible,
274 : : it would be the shortest path (summing the length of the
275 : : known-feasible path so far with that of the remaining
276 : : possibly-feasible path). */
277 : 206611 : int ca = ka.m_worklist.get_estimated_cost (ka.m_fnode);
278 : 206611 : int cb = kb.m_worklist.get_estimated_cost (kb.m_fnode);
279 : 206611 : return ca - cb;
280 : : }
281 : :
282 : : const feasible_worklist &m_worklist;
283 : : feasible_node *m_fnode;
284 : : };
285 : :
286 : : /* Get the estimated length of a path involving FNODE from
287 : : the origin to the target enode.
288 : : Sum the length of the known-feasible path so far with
289 : : that of the remaining possibly-feasible path. */
290 : :
291 : 413222 : int get_estimated_cost (const feasible_node *fnode) const
292 : : {
293 : 413222 : unsigned length_so_far = fnode->get_path_length ();
294 : 413222 : int shortest_remaining_path
295 : 413222 : = m_sep.get_shortest_distance (fnode->get_inner_node ());
296 : :
297 : 413222 : gcc_assert (shortest_remaining_path >= 0);
298 : : /* This should be true since we're only exploring nodes within
299 : : the trimmed graph (and we anticipate it being much smaller
300 : : than this, and thus not overflowing the sum). */
301 : 413222 : gcc_assert (shortest_remaining_path < INT_MAX);
302 : :
303 : 413222 : return length_so_far + shortest_remaining_path;
304 : : }
305 : :
306 : : /* Priority queue, backed by a fibonacci_heap. */
307 : : typedef fibonacci_heap<key_t, feasible_node> queue_t;
308 : : queue_t m_queue;
309 : : const shortest_paths<eg_traits, exploded_path> &m_sep;
310 : : };
311 : :
312 : : /* When we're building the exploded graph we want to simplify
313 : : overly-complicated symbolic values down to "UNKNOWN" to try to avoid
314 : : state explosions and unbounded chains of exploration.
315 : :
316 : : However, when we're building the feasibility graph for a diagnostic
317 : : (actually a tree), we don't want UNKNOWN values, as conditions on them
318 : : are also unknown: we don't want to have a contradiction such as a path
319 : : where (VAL != 0) and then (VAL == 0) along the same path.
320 : :
321 : : Hence this is an RAII class for temporarily disabling complexity-checking
322 : : in the region_model_manager, for use within
323 : : epath_finder::explore_feasible_paths.
324 : :
325 : : We also disable the creation of unknown_svalue instances during feasibility
326 : : checking, instead creating unique svalues, to avoid paradoxes in paths. */
327 : :
328 : : class auto_checking_feasibility
329 : : {
330 : : public:
331 : 6624 : auto_checking_feasibility (region_model_manager *mgr) : m_mgr (mgr)
332 : : {
333 : 6624 : m_mgr->begin_checking_feasibility ();
334 : 6624 : }
335 : 6624 : ~auto_checking_feasibility ()
336 : : {
337 : 6624 : m_mgr->end_checking_feasibility ();
338 : : }
339 : : private:
340 : : region_model_manager *m_mgr;
341 : : };
342 : :
343 : : /* Attempt to find the shortest feasible path from the origin to
344 : : TARGET_ENODE by iteratively building a feasible_graph, in which
345 : : every path to a feasible_node is feasible by construction.
346 : :
347 : : If TARGET_STMT is non-NULL, then check for reaching that stmt
348 : : within TARGET_ENODE.
349 : :
350 : : We effectively explore the tree of feasible paths in order of shortest
351 : : path until we either find a feasible path to TARGET_ENODE, or hit
352 : : a limit and give up.
353 : :
354 : : Preliminaries:
355 : : - Find the shortest path from each node to the TARGET_ENODE (without
356 : : checking feasibility), so that we can prioritize our worklist.
357 : : - Construct a trimmed_graph: the subset of nodes/edges that
358 : : are on a path that eventually reaches TARGET_ENODE. We will only need
359 : : to consider these when considering the shortest feasible path.
360 : :
361 : : Build a feasible_graph, in which every path to a feasible_node
362 : : is feasible by construction.
363 : : We use a worklist to flatten the exploration into an iteration.
364 : : Starting at the origin, find feasible out-edges within the trimmed graph.
365 : : At each stage, choose the node for which if the remaining path were feasible,
366 : : it would be the shortest path (summing the length of the known-feasible path
367 : : so far with that of the remaining possibly-feasible path).
368 : : This way, the first feasible path we find to TARGET_ENODE is the shortest.
369 : : We start by trying the shortest possible path, but if that fails,
370 : : we explore progressively longer paths, eventually trying iterations through
371 : : loops. The exploration is captured in the feasible_graph, which can be
372 : : dumped as a .dot file to visualize the exploration. The indices of the
373 : : feasible_nodes show the order in which they were created.
374 : :
375 : : This is something of a brute-force approach, but the trimmed_graph
376 : : hopefully keeps the complexity manageable.
377 : :
378 : : Terminate with failure when the number of infeasible edges exceeds
379 : : a threshold (--param=analyzer-max-infeasible-edges=).
380 : : This is guaranteed to eventually lead to terminatation, as
381 : : we can't keep creating feasible nodes without eventually
382 : : either reaching an infeasible edge, or reaching the
383 : : TARGET_ENODE. Specifically, there can't be a cycle of
384 : : feasible edges that doesn't reach the target_enode without
385 : : an out-edge that either fails feasibility or gets closer
386 : : to the TARGET_ENODE: on each iteration we are either:
387 : : - effectively getting closer to the TARGET_ENODE (which can't
388 : : continue forever without reaching the target), or
389 : : - getting monotonically closer to the termination threshold. */
390 : :
391 : : std::unique_ptr<exploded_path>
392 : 6624 : epath_finder::explore_feasible_paths (const exploded_node *target_enode,
393 : : const gimple *target_stmt,
394 : : const pending_diagnostic &pd,
395 : : const char *desc, unsigned diag_idx)
396 : : {
397 : 6624 : logger *logger = get_logger ();
398 : 6624 : LOG_SCOPE (logger);
399 : :
400 : 6624 : region_model_manager *mgr = m_eg.get_engine ()->get_model_manager ();
401 : :
402 : : /* Determine the shortest path to TARGET_ENODE from each node in
403 : : the exploded graph. */
404 : 6624 : shortest_paths<eg_traits, exploded_path> sep
405 : 6624 : (m_eg, target_enode, SPS_TO_GIVEN_TARGET);
406 : :
407 : : /* Construct a trimmed_graph: the subset of nodes/edges that
408 : : are on a path that eventually reaches TARGET_ENODE.
409 : : We only need to consider these when considering the shortest
410 : : feasible path. */
411 : 6624 : trimmed_graph tg (m_eg, target_enode);
412 : :
413 : 6624 : if (flag_dump_analyzer_feasibility)
414 : 8 : dump_trimmed_graph (target_enode, desc, diag_idx, tg, sep);
415 : :
416 : 6624 : feasible_graph fg;
417 : 6624 : feasible_worklist worklist (sep);
418 : :
419 : : /* Populate the worklist with the origin node. */
420 : 6624 : {
421 : 6624 : feasibility_state init_state (mgr, m_eg.get_supergraph ());
422 : 6624 : feasible_node *origin = fg.add_node (m_eg.get_origin (), init_state, 0);
423 : 6624 : worklist.add_node (origin);
424 : 6624 : }
425 : :
426 : : /* Iteratively explore the tree of feasible paths in order of shortest
427 : : path until we either find a feasible path to TARGET_ENODE, or hit
428 : : a limit. */
429 : :
430 : : /* Set this if we find a feasible path to TARGET_ENODE. */
431 : 6624 : std::unique_ptr<exploded_path> best_path = NULL;
432 : :
433 : 6624 : {
434 : 6624 : auto_checking_feasibility sentinel (mgr);
435 : :
436 : 154046 : while (process_worklist_item (&worklist, tg, &fg, target_enode, target_stmt,
437 : : pd, diag_idx, &best_path))
438 : : {
439 : : /* Empty; the work is done within process_worklist_item. */
440 : : }
441 : 6624 : }
442 : :
443 : 6624 : if (logger)
444 : : {
445 : 0 : logger->log ("tg for sd: %i:", diag_idx);
446 : 0 : logger->inc_indent ();
447 : 0 : tg.log_stats (logger);
448 : 0 : logger->dec_indent ();
449 : :
450 : 0 : logger->log ("fg for sd: %i:", diag_idx);
451 : 0 : logger->inc_indent ();
452 : 0 : fg.log_stats (logger);
453 : 0 : logger->dec_indent ();
454 : : }
455 : :
456 : : /* Dump the feasible_graph. */
457 : 6624 : if (flag_dump_analyzer_feasibility)
458 : 8 : dump_feasible_graph (target_enode, desc, diag_idx, fg);
459 : :
460 : 6624 : return best_path;
461 : 13248 : }
462 : :
463 : : /* Process the next item in WORKLIST, potentially adding new items
464 : : based on feasible out-edges, and extending FG accordingly.
465 : : Use TG to ignore out-edges that don't lead to TARGET_ENODE.
466 : : Return true if the worklist processing should continue.
467 : : Return false if the processing of the worklist should stop
468 : : (either due to reaching TARGET_ENODE, or hitting a limit).
469 : : Write to *OUT_BEST_PATH if stopping due to finding a feasible path
470 : : to TARGET_ENODE.
471 : : Use PD to provide additional restrictions on feasibility of
472 : : the final path in the feasible_graph before converting to
473 : : an exploded_path. */
474 : :
475 : : bool
476 : 154046 : epath_finder::
477 : : process_worklist_item (feasible_worklist *worklist,
478 : : const trimmed_graph &tg,
479 : : feasible_graph *fg,
480 : : const exploded_node *target_enode,
481 : : const gimple *target_stmt,
482 : : const pending_diagnostic &pd,
483 : : unsigned diag_idx,
484 : : std::unique_ptr<exploded_path> *out_best_path) const
485 : : {
486 : 154046 : logger *logger = get_logger ();
487 : :
488 : 154046 : feasible_node *fnode = worklist->take_next ();
489 : 154046 : if (!fnode)
490 : : {
491 : 50 : if (logger)
492 : 0 : logger->log ("drained worklist for sd: %i"
493 : : " without finding feasible path",
494 : : diag_idx);
495 : 50 : return false;
496 : : }
497 : :
498 : 153996 : log_scope s (logger, "fg worklist item",
499 : : "considering FN: %i (EN: %i) for sd: %i",
500 : 153996 : fnode->get_index (), fnode->get_inner_node ()->m_index,
501 : 153996 : diag_idx);
502 : :
503 : : /* Iterate through all out-edges from this item. */
504 : 153996 : unsigned i;
505 : 153996 : exploded_edge *succ_eedge;
506 : 363835 : FOR_EACH_VEC_ELT (fnode->get_inner_node ()->m_succs, i, succ_eedge)
507 : : {
508 : 216413 : log_scope s (logger, "edge", "considering edge: EN:%i -> EN:%i",
509 : 216413 : succ_eedge->m_src->m_index,
510 : 216413 : succ_eedge->m_dest->m_index);
511 : : /* Reject edges that aren't in the trimmed graph. */
512 : 216413 : if (!tg.contains_p (succ_eedge))
513 : : {
514 : 57048 : if (logger)
515 : 0 : logger->log ("rejecting: not in trimmed graph");
516 : 57048 : continue;
517 : : }
518 : :
519 : 159365 : feasibility_state succ_state (fnode->get_state ());
520 : 159365 : std::unique_ptr<rejected_constraint> rc;
521 : 159365 : if (succ_state.maybe_update_for_edge (logger, succ_eedge, nullptr, &rc))
522 : : {
523 : 157355 : gcc_assert (rc == NULL);
524 : 157355 : feasible_node *succ_fnode
525 : 157355 : = fg->add_node (succ_eedge->m_dest,
526 : : succ_state,
527 : 157355 : fnode->get_path_length () + 1);
528 : 157355 : if (logger)
529 : 0 : logger->log ("accepting as FN: %i", succ_fnode->get_index ());
530 : 157355 : fg->add_edge (new feasible_edge (fnode, succ_fnode, succ_eedge));
531 : :
532 : : /* Have we reached TARGET_ENODE? */
533 : 157355 : if (succ_fnode->get_inner_node () == target_enode)
534 : : {
535 : 6455 : if (logger)
536 : 0 : logger->log ("success: got feasible path to EN: %i (sd: %i)"
537 : : " (length: %i)",
538 : 0 : target_enode->m_index, diag_idx,
539 : : succ_fnode->get_path_length ());
540 : 6455 : if (!pd.check_valid_fpath_p (*succ_fnode, target_stmt))
541 : : {
542 : 104 : if (logger)
543 : 0 : logger->log ("rejecting feasible path due to"
544 : : " pending_diagnostic");
545 : 104 : return false;
546 : : }
547 : 6351 : *out_best_path = fg->make_epath (succ_fnode);
548 : 6351 : if (flag_dump_analyzer_feasibility)
549 : 8 : dump_feasible_path (target_enode, diag_idx, *fg, *succ_fnode);
550 : :
551 : : /* Success: stop the worklist iteration. */
552 : 6351 : return false;
553 : : }
554 : : else
555 : 150900 : worklist->add_node (succ_fnode);
556 : : }
557 : : else
558 : : {
559 : 2010 : if (logger)
560 : 0 : logger->log ("infeasible");
561 : 2010 : gcc_assert (rc);
562 : 2010 : fg->add_feasibility_problem (fnode,
563 : : succ_eedge,
564 : : std::move (rc));
565 : :
566 : : /* Give up if there have been too many infeasible edges. */
567 : 2010 : if (fg->get_num_infeasible ()
568 : 2010 : > (unsigned)param_analyzer_max_infeasible_edges)
569 : : {
570 : 119 : if (logger)
571 : 0 : logger->log ("too many infeasible edges (%i); giving up",
572 : : fg->get_num_infeasible ());
573 : 119 : return false;
574 : : }
575 : : }
576 : 216413 : }
577 : :
578 : : /* Continue the worklist iteration. */
579 : : return true;
580 : 153996 : }
581 : :
582 : : /* Helper class for epath_finder::dump_trimmed_graph
583 : : to dump extra per-node information.
584 : : Use SEP to add the length of the shortest path from each
585 : : node to the target node to each node's dump. */
586 : :
587 : : class dump_eg_with_shortest_path : public eg_traits::dump_args_t
588 : : {
589 : : public:
590 : 8 : dump_eg_with_shortest_path
591 : : (const exploded_graph &eg,
592 : : const shortest_paths<eg_traits, exploded_path> &sep)
593 : 8 : : dump_args_t (eg),
594 : 8 : m_sep (sep)
595 : : {
596 : : }
597 : :
598 : 124 : void dump_extra_info (const exploded_node *enode,
599 : : pretty_printer *pp) const final override
600 : : {
601 : 240 : pp_printf (pp, "sp: %i", m_sep.get_shortest_path (enode).length ());
602 : 124 : pp_newline (pp);
603 : 124 : }
604 : :
605 : : private:
606 : : const shortest_paths<eg_traits, exploded_path> &m_sep;
607 : : };
608 : :
609 : : /* Dump TG to "BASE_NAME.DESC.DIAG_IDX.to-enN.tg.dot",
610 : : annotating each node with the length of the shortest path
611 : : from that node to TARGET_ENODE (using SEP). */
612 : :
613 : : void
614 : 8 : epath_finder::
615 : : dump_trimmed_graph (const exploded_node *target_enode,
616 : : const char *desc, unsigned diag_idx,
617 : : const trimmed_graph &tg,
618 : : const shortest_paths<eg_traits, exploded_path> &sep)
619 : : {
620 : 8 : auto_timevar tv (TV_ANALYZER_DUMP);
621 : 8 : dump_eg_with_shortest_path inner_args (m_eg, sep);
622 : 8 : trimmed_graph::dump_args_t args (inner_args);
623 : 8 : pretty_printer pp;
624 : 8 : pp_printf (&pp, "%s.%s.%i.to-en%i.tg.dot",
625 : 8 : dump_base_name, desc, diag_idx, target_enode->m_index);
626 : 8 : char *filename = xstrdup (pp_formatted_text (&pp));
627 : 8 : tg.dump_dot (filename, NULL, args);
628 : 8 : free (filename);
629 : 8 : }
630 : :
631 : : /* Dump FG to "BASE_NAME.DESC.DIAG_IDX.to-enN.fg.dot". */
632 : :
633 : : void
634 : 8 : epath_finder::dump_feasible_graph (const exploded_node *target_enode,
635 : : const char *desc, unsigned diag_idx,
636 : : const feasible_graph &fg)
637 : : {
638 : 8 : auto_timevar tv (TV_ANALYZER_DUMP);
639 : 8 : exploded_graph::dump_args_t inner_args (m_eg);
640 : 8 : feasible_graph::dump_args_t args (inner_args);
641 : 8 : pretty_printer pp;
642 : 8 : pp_printf (&pp, "%s.%s.%i.to-en%i.fg.dot",
643 : 8 : dump_base_name, desc, diag_idx, target_enode->m_index);
644 : 8 : char *filename = xstrdup (pp_formatted_text (&pp));
645 : 8 : fg.dump_dot (filename, NULL, args);
646 : 8 : free (filename);
647 : 8 : }
648 : :
649 : : /* Dump the path to FNODE to "BASE_NAME.DIAG_IDX.to-enN.fpath.txt". */
650 : :
651 : : void
652 : 8 : epath_finder::dump_feasible_path (const exploded_node *target_enode,
653 : : unsigned diag_idx,
654 : : const feasible_graph &fg,
655 : : const feasible_node &fnode) const
656 : : {
657 : 8 : auto_timevar tv (TV_ANALYZER_DUMP);
658 : 8 : pretty_printer pp;
659 : 8 : pp_printf (&pp, "%s.%i.to-en%i.fpath.txt",
660 : 8 : dump_base_name, diag_idx, target_enode->m_index);
661 : 8 : char *filename = xstrdup (pp_formatted_text (&pp));
662 : 8 : fg.dump_feasible_path (fnode, filename);
663 : 8 : free (filename);
664 : 8 : }
665 : :
666 : : /* class saved_diagnostic. */
667 : :
668 : : /* saved_diagnostic's ctor. */
669 : :
670 : 6628 : saved_diagnostic::saved_diagnostic (const state_machine *sm,
671 : : const pending_location &ploc,
672 : : tree var,
673 : : const svalue *sval,
674 : : state_machine::state_t state,
675 : : std::unique_ptr<pending_diagnostic> d,
676 : 6628 : unsigned idx)
677 : 6628 : : m_sm (sm), m_enode (ploc.m_enode), m_snode (ploc.m_snode),
678 : 6628 : m_stmt (ploc.m_stmt),
679 : : /* stmt_finder could be on-stack; we want our own copy that can
680 : : outlive that. */
681 : 6628 : m_stmt_finder (ploc.m_finder ? ploc.m_finder->clone () : nullptr),
682 : 6628 : m_loc (ploc.m_loc),
683 : 6628 : m_var (var), m_sval (sval), m_state (state),
684 : 6628 : m_d (std::move (d)), m_trailing_eedge (nullptr),
685 : 6628 : m_idx (idx),
686 : 6628 : m_best_epath (nullptr), m_problem (nullptr),
687 : 6628 : m_notes ()
688 : : {
689 : : /* We must have an enode in order to be able to look for paths
690 : : through the exploded_graph to this diagnostic. */
691 : 6628 : gcc_assert (m_enode);
692 : 6628 : }
693 : :
694 : : bool
695 : 39290 : saved_diagnostic::operator== (const saved_diagnostic &other) const
696 : : {
697 : 41809 : if (m_notes.length () != other.m_notes.length ())
698 : : return false;
699 : 38733 : for (unsigned i = 0; i < m_notes.length (); i++)
700 : 863 : if (!m_notes[i]->equal_p (*other.m_notes[i]))
701 : : return false;
702 : 37870 : return (m_sm == other.m_sm
703 : : /* We don't compare m_enode. */
704 : 33904 : && m_snode == other.m_snode
705 : 9575 : && m_stmt == other.m_stmt
706 : : /* We don't compare m_stmt_finder. */
707 : 7487 : && m_loc == other.m_loc
708 : 7487 : && pending_diagnostic::same_tree_p (m_var, other.m_var)
709 : 6579 : && m_state == other.m_state
710 : 6516 : && m_d->equal_p (*other.m_d)
711 : 44225 : && m_trailing_eedge == other.m_trailing_eedge);
712 : : }
713 : :
714 : : /* Add PN to this diagnostic, taking ownership of it. */
715 : :
716 : : void
717 : 206 : saved_diagnostic::add_note (std::unique_ptr<pending_note> pn)
718 : : {
719 : 206 : gcc_assert (pn);
720 : 206 : m_notes.safe_push (pn.release ());
721 : 206 : }
722 : :
723 : : /* Add EVENT to this diagnostic. */
724 : :
725 : : void
726 : 170 : saved_diagnostic::add_event (std::unique_ptr<checker_event> event)
727 : : {
728 : 170 : gcc_assert (event);
729 : 170 : m_saved_events.safe_push (event.release ());
730 : 170 : }
731 : :
732 : : /* Return a new json::object of the form
733 : : {"sm": optional str,
734 : : "enode": int,
735 : : "snode": int,
736 : : "sval": optional str,
737 : : "state": optional str,
738 : : "path_length": optional int,
739 : : "pending_diagnostic": str,
740 : : "idx": int}. */
741 : :
742 : : std::unique_ptr<json::object>
743 : 0 : saved_diagnostic::to_json () const
744 : : {
745 : 0 : auto sd_obj = ::make_unique<json::object> ();
746 : :
747 : 0 : if (m_sm)
748 : 0 : sd_obj->set_string ("sm", m_sm->get_name ());
749 : 0 : sd_obj->set_integer ("enode", m_enode->m_index);
750 : 0 : sd_obj->set_integer ("snode", m_snode->m_index);
751 : 0 : if (m_sval)
752 : 0 : sd_obj->set ("sval", m_sval->to_json ());
753 : 0 : if (m_state)
754 : 0 : sd_obj->set ("state", m_state->to_json ());
755 : 0 : if (m_best_epath)
756 : 0 : sd_obj->set_integer ("path_length", get_epath_length ());
757 : 0 : sd_obj->set_string ("pending_diagnostic", m_d->get_kind ());
758 : 0 : sd_obj->set_integer ("idx", m_idx);
759 : :
760 : : /* We're not yet JSONifying the following fields:
761 : : const gimple *m_stmt;
762 : : stmt_finder *m_stmt_finder;
763 : : tree m_var;
764 : : exploded_edge *m_trailing_eedge;
765 : : enum status m_status;
766 : : feasibility_problem *m_problem;
767 : : auto_delete_vec <pending_note> m_notes;
768 : : */
769 : :
770 : 0 : return sd_obj;
771 : : }
772 : :
773 : : /* Dump this to PP in a form suitable for use as an id in .dot output. */
774 : :
775 : : void
776 : 40 : saved_diagnostic::dump_dot_id (pretty_printer *pp) const
777 : : {
778 : 40 : pp_printf (pp, "sd_%i", m_idx);
779 : 40 : }
780 : :
781 : : /* Dump this to PP in a form suitable for use as a node in .dot output. */
782 : :
783 : : void
784 : 20 : saved_diagnostic::dump_as_dot_node (pretty_printer *pp) const
785 : : {
786 : 20 : dump_dot_id (pp);
787 : 20 : pp_printf (pp,
788 : : " [shape=none,margin=0,style=filled,fillcolor=\"red\",label=\"");
789 : 20 : pp_write_text_to_stream (pp);
790 : :
791 : : /* Node label. */
792 : 20 : pp_printf (pp, "DIAGNOSTIC: %s (sd: %i)\n",
793 : 20 : m_d->get_kind (), m_idx);
794 : 20 : if (m_sm)
795 : : {
796 : 20 : pp_printf (pp, "sm: %s", m_sm->get_name ());
797 : 20 : if (m_state)
798 : : {
799 : 20 : pp_printf (pp, "; state: ");
800 : 20 : m_state->dump_to_pp (pp);
801 : : }
802 : 20 : pp_newline (pp);
803 : : }
804 : 20 : if (m_stmt)
805 : : {
806 : 20 : pp_string (pp, "stmt: ");
807 : 20 : pp_gimple_stmt_1 (pp, m_stmt, 0, (dump_flags_t)0);
808 : 20 : pp_newline (pp);
809 : : }
810 : 20 : if (m_var)
811 : 20 : pp_printf (pp, "var: %qE\n", m_var);
812 : 20 : if (m_sval)
813 : : {
814 : 20 : pp_string (pp, "sval: ");
815 : 20 : m_sval->dump_to_pp (pp, true);
816 : 20 : pp_newline (pp);
817 : : }
818 : 20 : if (m_best_epath)
819 : 4 : pp_printf (pp, "path length: %i\n", get_epath_length ());
820 : :
821 : 20 : pp_write_text_as_dot_label_to_stream (pp, /*for_record=*/true);
822 : 20 : pp_string (pp, "\"];\n\n");
823 : :
824 : : /* Show links to duplicates. */
825 : 20 : for (auto iter : m_duplicates)
826 : : {
827 : 0 : dump_dot_id (pp);
828 : 0 : pp_string (pp, " -> ");
829 : 0 : iter->dump_dot_id (pp);
830 : 0 : pp_string (pp, " [style=\"dotted\" arrowhead=\"none\"];");
831 : 0 : pp_newline (pp);
832 : : }
833 : 20 : }
834 : :
835 : : /* Use PF to find the best exploded_path for this saved_diagnostic,
836 : : and store it in m_best_epath.
837 : : If we don't have a specific location in m_loc and m_stmt is still NULL,
838 : : use m_stmt_finder on the epath to populate m_stmt.
839 : : Return true if a best path was found. */
840 : :
841 : : bool
842 : 6628 : saved_diagnostic::calc_best_epath (epath_finder *pf)
843 : : {
844 : 6628 : logger *logger = pf->get_logger ();
845 : 6628 : LOG_SCOPE (logger);
846 : 6628 : m_problem = NULL;
847 : :
848 : 6628 : m_best_epath = pf->get_best_epath (m_enode, m_stmt,
849 : 6628 : *m_d, m_d->get_kind (), m_idx,
850 : 6628 : &m_problem);
851 : :
852 : : /* Handle failure to find a feasible path. */
853 : 6628 : if (m_best_epath == NULL)
854 : : return false;
855 : :
856 : 6355 : gcc_assert (m_best_epath);
857 : 6355 : if (m_loc == UNKNOWN_LOCATION)
858 : : {
859 : 6268 : if (m_stmt == NULL)
860 : : {
861 : 848 : gcc_assert (m_stmt_finder);
862 : 848 : m_stmt = m_stmt_finder->find_stmt (*m_best_epath);
863 : : }
864 : 6268 : gcc_assert (m_stmt);
865 : : }
866 : :
867 : : return true;
868 : 6628 : }
869 : :
870 : : unsigned
871 : 7526 : saved_diagnostic::get_epath_length () const
872 : : {
873 : 7526 : gcc_assert (m_best_epath);
874 : 7526 : return m_best_epath->length ();
875 : : }
876 : :
877 : : /* Record that OTHER (and its duplicates) are duplicates
878 : : of this saved_diagnostic. */
879 : :
880 : : void
881 : 2468 : saved_diagnostic::add_duplicate (saved_diagnostic *other)
882 : : {
883 : 2468 : gcc_assert (other);
884 : 2468 : m_duplicates.reserve (m_duplicates.length ()
885 : 2486 : + other->m_duplicates.length ()
886 : : + 1);
887 : 2468 : m_duplicates.splice (other->m_duplicates);
888 : 2468 : other->m_duplicates.truncate (0);
889 : 2468 : m_duplicates.safe_push (other);
890 : 2468 : }
891 : :
892 : : /* Walk up the sedges of each of the two paths.
893 : : If the two sequences of sedges do not perfectly correspond,
894 : : then paths are incompatible.
895 : : If there is at least one sedge that either cannot be paired up
896 : : or its counterpart is not equal, then the paths are incompatible
897 : : and this function returns FALSE.
898 : : Otherwise return TRUE.
899 : :
900 : : Incompatible paths:
901 : :
902 : : <cond Y>
903 : : / \
904 : : / \
905 : : true false
906 : : | |
907 : : ... ...
908 : : | |
909 : : ... stmt x
910 : : |
911 : : stmt x
912 : :
913 : : Both LHS_PATH and RHS_PATH final enodes should be
914 : : over the same gimple statement. */
915 : :
916 : : static bool
917 : 58 : compatible_epath_p (const exploded_path *lhs_path,
918 : : const exploded_path *rhs_path)
919 : : {
920 : 58 : gcc_assert (lhs_path);
921 : 58 : gcc_assert (rhs_path);
922 : 58 : gcc_assert (rhs_path->length () > 0);
923 : 58 : gcc_assert (rhs_path->length () > 0);
924 : 58 : int lhs_eedge_idx = lhs_path->length () - 1;
925 : 58 : int rhs_eedge_idx = rhs_path->length () - 1;
926 : 58 : const exploded_edge *lhs_eedge;
927 : 58 : const exploded_edge *rhs_eedge;
928 : :
929 : 290 : while (lhs_eedge_idx >= 0 && rhs_eedge_idx >= 0)
930 : : {
931 : 890 : while (lhs_eedge_idx >= 0)
932 : : {
933 : : /* Find LHS_PATH's next superedge. */
934 : 852 : lhs_eedge = lhs_path->m_edges[lhs_eedge_idx];
935 : 852 : if (lhs_eedge->m_sedge)
936 : : break;
937 : : else
938 : 600 : lhs_eedge_idx--;
939 : : }
940 : 890 : while (rhs_eedge_idx >= 0)
941 : : {
942 : : /* Find RHS_PATH's next superedge. */
943 : 852 : rhs_eedge = rhs_path->m_edges[rhs_eedge_idx];
944 : 852 : if (rhs_eedge->m_sedge)
945 : : break;
946 : : else
947 : 600 : rhs_eedge_idx--;
948 : : }
949 : :
950 : 290 : if (lhs_eedge->m_sedge && rhs_eedge->m_sedge)
951 : : {
952 : 252 : if (lhs_eedge->m_sedge != rhs_eedge->m_sedge)
953 : : /* Both superedges do not match.
954 : : Superedges are not dependent on the exploded path, so even
955 : : different epaths will have similar sedges if they follow
956 : : the same outcome of a conditional node. */
957 : : return false;
958 : :
959 : 232 : lhs_eedge_idx--;
960 : 232 : rhs_eedge_idx--;
961 : 232 : continue;
962 : : }
963 : 38 : else if (lhs_eedge->m_sedge == nullptr && rhs_eedge->m_sedge == nullptr)
964 : : /* Both paths were drained up entirely.
965 : : No discriminant was found. */
966 : : return true;
967 : :
968 : : /* A superedge was found for only one of the two paths. */
969 : : return false;
970 : : }
971 : :
972 : : /* A superedge was found for only one of the two paths. */
973 : 0 : if (lhs_eedge_idx >= 0 || rhs_eedge_idx >= 0)
974 : : return false;
975 : :
976 : : /* Both paths were drained up entirely.
977 : : No discriminant was found. */
978 : : return true;
979 : : }
980 : :
981 : :
982 : : /* Return true if this diagnostic supercedes OTHER, and that OTHER should
983 : : therefore not be emitted. */
984 : :
985 : : bool
986 : 28717 : saved_diagnostic::supercedes_p (const saved_diagnostic &other) const
987 : : {
988 : : /* They should be at the same stmt. */
989 : 28717 : if (m_stmt != other.m_stmt)
990 : : return false;
991 : : /* return early if OTHER won't be superseded anyway. */
992 : 5073 : if (!m_d->supercedes_p (*other.m_d))
993 : : return false;
994 : :
995 : : /* If the two saved_diagnostics' path are not compatible
996 : : then they cannot supersede one another. */
997 : 58 : return compatible_epath_p (m_best_epath.get (), other.m_best_epath.get ());
998 : : }
999 : :
1000 : : /* Move any saved checker_events from this saved_diagnostic to
1001 : : the end of DST_PATH. */
1002 : :
1003 : : void
1004 : 3849 : saved_diagnostic::add_any_saved_events (checker_path &dst_path)
1005 : : {
1006 : 4287 : for (auto &event : m_saved_events)
1007 : : {
1008 : 146 : dst_path.add_event (std::unique_ptr<checker_event> (event));
1009 : 146 : event = nullptr;
1010 : : }
1011 : 3849 : }
1012 : :
1013 : : /* Emit any pending notes owned by this diagnostic. */
1014 : :
1015 : : void
1016 : 3781 : saved_diagnostic::emit_any_notes () const
1017 : : {
1018 : 4296 : for (auto pn : m_notes)
1019 : 177 : pn->emit ();
1020 : 3781 : }
1021 : :
1022 : : /* For SARIF output, add additional properties to the "result" object
1023 : : for this diagnostic.
1024 : : This extra data is intended for use when debugging the analyzer. */
1025 : :
1026 : : void
1027 : 17 : saved_diagnostic::maybe_add_sarif_properties (sarif_object &result_obj) const
1028 : : {
1029 : 17 : sarif_property_bag &props = result_obj.get_or_create_properties ();
1030 : : #define PROPERTY_PREFIX "gcc/analyzer/saved_diagnostic/"
1031 : 17 : if (m_sm)
1032 : 9 : props.set_string (PROPERTY_PREFIX "sm", m_sm->get_name ());
1033 : 17 : props.set_integer (PROPERTY_PREFIX "enode", m_enode->m_index);
1034 : 17 : props.set_integer (PROPERTY_PREFIX "snode", m_snode->m_index);
1035 : 17 : if (m_sval)
1036 : 9 : props.set (PROPERTY_PREFIX "sval", m_sval->to_json ());
1037 : 17 : if (m_state)
1038 : 9 : props.set (PROPERTY_PREFIX "state", m_state->to_json ());
1039 : 17 : if (m_best_epath)
1040 : 17 : props.set_integer (PROPERTY_PREFIX "idx", m_idx);
1041 : : #undef PROPERTY_PREFIX
1042 : :
1043 : : /* Potentially add pending_diagnostic-specific properties. */
1044 : 17 : m_d->maybe_add_sarif_properties (result_obj);
1045 : 17 : }
1046 : :
1047 : : /* State for building a checker_path from a particular exploded_path.
1048 : : In particular, this precomputes reachability information: the set of
1049 : : source enodes for which a path be found to the diagnostic enode. */
1050 : :
1051 : 3849 : class path_builder
1052 : : {
1053 : : public:
1054 : 3849 : path_builder (const exploded_graph &eg,
1055 : : const exploded_path &epath,
1056 : : const feasibility_problem *problem,
1057 : : const saved_diagnostic &sd)
1058 : 3849 : : m_eg (eg),
1059 : 3849 : m_diag_enode (epath.get_final_enode ()),
1060 : 3849 : m_sd (sd),
1061 : 3849 : m_reachability (eg, m_diag_enode),
1062 : 3849 : m_feasibility_problem (problem)
1063 : 3849 : {}
1064 : :
1065 : 0 : const exploded_node *get_diag_node () const { return m_diag_enode; }
1066 : :
1067 : 23674 : pending_diagnostic *get_pending_diagnostic () const
1068 : : {
1069 : 211 : return m_sd.m_d.get ();
1070 : : }
1071 : :
1072 : 3103 : bool reachable_from_p (const exploded_node *src_enode) const
1073 : : {
1074 : 6206 : return m_reachability.reachable_from_p (src_enode);
1075 : : }
1076 : :
1077 : 287426 : const extrinsic_state &get_ext_state () const { return m_eg.get_ext_state (); }
1078 : :
1079 : 49193 : const feasibility_problem *get_feasibility_problem () const
1080 : : {
1081 : 49193 : return m_feasibility_problem;
1082 : : }
1083 : :
1084 : 5087 : const state_machine *get_sm () const { return m_sd.m_sm; }
1085 : :
1086 : : private:
1087 : : typedef reachability<eg_traits> enode_reachability;
1088 : :
1089 : : const exploded_graph &m_eg;
1090 : :
1091 : : /* The enode where the diagnostic occurs. */
1092 : : const exploded_node *m_diag_enode;
1093 : :
1094 : : const saved_diagnostic &m_sd;
1095 : :
1096 : : /* Precompute all enodes from which the diagnostic is reachable. */
1097 : : enode_reachability m_reachability;
1098 : :
1099 : : const feasibility_problem *m_feasibility_problem;
1100 : : };
1101 : :
1102 : : /* Determine the emission location for PD at STMT in FUN. */
1103 : :
1104 : : static location_t
1105 : 13595 : get_emission_location (const gimple *stmt, function *fun,
1106 : : const pending_diagnostic &pd)
1107 : : {
1108 : 13595 : location_t loc = get_stmt_location (stmt, fun);
1109 : :
1110 : : /* Allow the pending_diagnostic to fix up the location. */
1111 : 13595 : loc = pd.fixup_location (loc, true);
1112 : :
1113 : 13595 : return loc;
1114 : : }
1115 : :
1116 : : /* class diagnostic_manager. */
1117 : :
1118 : : /* diagnostic_manager's ctor. */
1119 : :
1120 : 3197 : diagnostic_manager::diagnostic_manager (logger *logger, engine *eng,
1121 : 3197 : int verbosity)
1122 : 3197 : : log_user (logger), m_eng (eng), m_verbosity (verbosity),
1123 : 3197 : m_num_disabled_diagnostics (0)
1124 : : {
1125 : 3197 : }
1126 : :
1127 : : /* Queue pending_diagnostic D at ENODE for later emission.
1128 : : Return true/false signifying if the diagnostic was actually added. */
1129 : :
1130 : : bool
1131 : 10793 : diagnostic_manager::add_diagnostic (const state_machine *sm,
1132 : : const pending_location &ploc,
1133 : : tree var,
1134 : : const svalue *sval,
1135 : : state_machine::state_t state,
1136 : : std::unique_ptr<pending_diagnostic> d)
1137 : : {
1138 : 10793 : LOG_FUNC (get_logger ());
1139 : :
1140 : : /* We must have an enode in order to be able to look for paths
1141 : : through the exploded_graph to the diagnostic. */
1142 : 10793 : gcc_assert (ploc.m_enode);
1143 : :
1144 : : /* If this warning is ultimately going to be rejected by a -Wno-analyzer-*
1145 : : flag, reject it now.
1146 : : We can only do this for diagnostics where we already know the stmt,
1147 : : and thus can determine the emission location. */
1148 : 10793 : if (ploc.m_stmt)
1149 : : {
1150 : 9825 : location_t loc
1151 : 9825 : = get_emission_location (ploc.m_stmt, ploc.m_snode->m_fun, *d);
1152 : 9825 : int option = d->get_controlling_option ();
1153 : 9825 : if (!warning_enabled_at (loc, option))
1154 : : {
1155 : 4165 : if (get_logger ())
1156 : 0 : get_logger ()->log ("rejecting disabled warning %qs",
1157 : 0 : d->get_kind ());
1158 : 4165 : m_num_disabled_diagnostics++;
1159 : 4165 : return false;
1160 : : }
1161 : : }
1162 : :
1163 : 6628 : saved_diagnostic *sd
1164 : : = new saved_diagnostic (sm, ploc, var, sval, state, std::move (d),
1165 : 11784 : m_saved_diagnostics.length ());
1166 : 6628 : m_saved_diagnostics.safe_push (sd);
1167 : 6628 : ploc.m_enode->add_diagnostic (sd);
1168 : 6628 : if (get_logger ())
1169 : 0 : log ("adding saved diagnostic %i at SN %i to EN %i: %qs",
1170 : : sd->get_index (),
1171 : 0 : ploc.m_snode->m_index, ploc.m_enode->m_index, sd->m_d->get_kind ());
1172 : : return true;
1173 : 10793 : }
1174 : :
1175 : : /* Queue pending_diagnostic D at ENODE for later emission.
1176 : : Return true/false signifying if the diagnostic was actually added.
1177 : : Take ownership of D (or delete it). */
1178 : :
1179 : : bool
1180 : 3566 : diagnostic_manager::add_diagnostic (const pending_location &ploc,
1181 : : std::unique_ptr<pending_diagnostic> d)
1182 : : {
1183 : 3566 : gcc_assert (ploc.m_enode);
1184 : 3566 : return add_diagnostic (NULL, ploc, NULL_TREE, NULL, 0, std::move (d));
1185 : : }
1186 : :
1187 : : /* Add PN to the most recent saved_diagnostic. */
1188 : :
1189 : : void
1190 : 206 : diagnostic_manager::add_note (std::unique_ptr<pending_note> pn)
1191 : : {
1192 : 206 : LOG_FUNC (get_logger ());
1193 : 206 : gcc_assert (pn);
1194 : :
1195 : : /* Get most recent saved_diagnostic. */
1196 : 206 : gcc_assert (m_saved_diagnostics.length () > 0);
1197 : 206 : saved_diagnostic *sd = m_saved_diagnostics[m_saved_diagnostics.length () - 1];
1198 : 206 : sd->add_note (std::move (pn));
1199 : 206 : }
1200 : :
1201 : : /* Add EVENT to the most recent saved_diagnostic. */
1202 : :
1203 : : void
1204 : 170 : diagnostic_manager::add_event (std::unique_ptr<checker_event> event)
1205 : : {
1206 : 170 : LOG_FUNC (get_logger ());
1207 : 170 : gcc_assert (event);
1208 : :
1209 : : /* Get most recent saved_diagnostic. */
1210 : 170 : gcc_assert (m_saved_diagnostics.length () > 0);
1211 : 170 : saved_diagnostic *sd = m_saved_diagnostics[m_saved_diagnostics.length () - 1];
1212 : 170 : sd->add_event (std::move (event));
1213 : 170 : }
1214 : :
1215 : : /* Return a new json::object of the form
1216 : : {"diagnostics" : [obj for saved_diagnostic]}. */
1217 : :
1218 : : std::unique_ptr<json::object>
1219 : 0 : diagnostic_manager::to_json () const
1220 : : {
1221 : 0 : auto dm_obj = ::make_unique<json::object> ();
1222 : :
1223 : 0 : {
1224 : 0 : auto sd_arr = ::make_unique<json::array> ();
1225 : 0 : int i;
1226 : 0 : saved_diagnostic *sd;
1227 : 0 : FOR_EACH_VEC_ELT (m_saved_diagnostics, i, sd)
1228 : 0 : sd_arr->append (sd->to_json ());
1229 : 0 : dm_obj->set ("diagnostics", std::move (sd_arr));
1230 : 0 : }
1231 : :
1232 : 0 : return dm_obj;
1233 : : }
1234 : :
1235 : : /* A class for identifying sets of duplicated pending_diagnostic.
1236 : :
1237 : : We want to find the simplest saved_diagnostic amongst those that share a
1238 : : dedupe_key. */
1239 : :
1240 : : class dedupe_key
1241 : : {
1242 : : public:
1243 : 6355 : dedupe_key (const saved_diagnostic &sd)
1244 : 6355 : : m_sd (sd), m_stmt (sd.m_stmt), m_loc (sd.m_loc)
1245 : : {
1246 : 6355 : gcc_assert (m_stmt || m_loc != UNKNOWN_LOCATION);
1247 : 6355 : }
1248 : :
1249 : 47039 : hashval_t hash () const
1250 : : {
1251 : 47039 : inchash::hash hstate;
1252 : 47039 : hstate.add_ptr (m_stmt);
1253 : : // TODO: m_sd
1254 : 47039 : return hstate.end ();
1255 : : }
1256 : 39290 : bool operator== (const dedupe_key &other) const
1257 : : {
1258 : 39290 : return (m_sd == other.m_sd
1259 : 6355 : && m_stmt == other.m_stmt
1260 : 45645 : && m_loc == other.m_loc);
1261 : : }
1262 : :
1263 : 59092 : location_t get_location () const
1264 : : {
1265 : 59092 : if (m_loc != UNKNOWN_LOCATION)
1266 : : return m_loc;
1267 : 57603 : gcc_assert (m_stmt);
1268 : 57603 : return m_stmt->location;
1269 : : }
1270 : :
1271 : : /* A qsort comparator for use by dedupe_winners::emit_best
1272 : : to sort them into location_t order. */
1273 : :
1274 : : static int
1275 : 29546 : comparator (const void *p1, const void *p2)
1276 : : {
1277 : 29546 : const dedupe_key *pk1 = *(const dedupe_key * const *)p1;
1278 : 29546 : const dedupe_key *pk2 = *(const dedupe_key * const *)p2;
1279 : :
1280 : 29546 : location_t loc1 = pk1->get_location ();
1281 : 29546 : location_t loc2 = pk2->get_location ();
1282 : :
1283 : 29546 : if (int cmp = linemap_compare_locations (line_table, loc2, loc1))
1284 : : return cmp;
1285 : 1289 : if (int cmp = ((int)pk1->m_sd.get_epath_length ()
1286 : 1289 : - (int)pk2->m_sd.get_epath_length ()))
1287 : : return cmp;
1288 : 975 : if (int cmp = strcmp (pk1->m_sd.m_d->get_kind (),
1289 : 975 : pk2->m_sd.m_d->get_kind ()))
1290 : : return cmp;
1291 : : return 0;
1292 : : }
1293 : :
1294 : : const saved_diagnostic &m_sd;
1295 : : const gimple *m_stmt;
1296 : : location_t m_loc;
1297 : : };
1298 : :
1299 : : /* Traits for use by dedupe_winners. */
1300 : :
1301 : : class dedupe_hash_map_traits
1302 : : {
1303 : : public:
1304 : : typedef const dedupe_key *key_type;
1305 : : typedef saved_diagnostic *value_type;
1306 : : typedef saved_diagnostic *compare_type;
1307 : :
1308 : 47039 : static inline hashval_t hash (const key_type &v)
1309 : : {
1310 : 47039 : return v->hash ();
1311 : : }
1312 : 39290 : static inline bool equal_keys (const key_type &k1, const key_type &k2)
1313 : : {
1314 : 39290 : return *k1 == *k2;
1315 : : }
1316 : : template <typename T>
1317 : : static inline void remove (T &)
1318 : : {
1319 : : // TODO
1320 : : }
1321 : : template <typename T>
1322 : 38 : static inline void mark_deleted (T &entry)
1323 : : {
1324 : 38 : entry.m_key = reinterpret_cast<key_type> (1);
1325 : : }
1326 : : template <typename T>
1327 : 0 : static inline void mark_empty (T &entry)
1328 : : {
1329 : 0 : entry.m_key = NULL;
1330 : : }
1331 : : template <typename T>
1332 : 90349 : static inline bool is_deleted (const T &entry)
1333 : : {
1334 : 90349 : return entry.m_key == reinterpret_cast<key_type> (1);
1335 : : }
1336 : : template <typename T>
1337 : 426248 : static inline bool is_empty (const T &entry)
1338 : : {
1339 : 426248 : return entry.m_key == NULL;
1340 : : }
1341 : : static const bool empty_zero_p = true;
1342 : : };
1343 : :
1344 : : /* A class for deduplicating diagnostics and finding (and emitting) the
1345 : : best saved_diagnostic within each partition. */
1346 : :
1347 : : class dedupe_winners
1348 : : {
1349 : : public:
1350 : 1472 : ~dedupe_winners ()
1351 : : {
1352 : : /* Delete all keys, but not the saved_diagnostics. */
1353 : 5321 : for (map_t::iterator iter = m_map.begin ();
1354 : 5321 : iter != m_map.end ();
1355 : 3849 : ++iter)
1356 : 3849 : delete (*iter).first;
1357 : 1472 : }
1358 : :
1359 : : /* Determine an exploded_path for SD using PF and, if it's feasible,
1360 : : determine if SD is the best seen so far for its dedupe_key.
1361 : : Record the winning SD for each dedupe_key. */
1362 : :
1363 : 6628 : void add (logger *logger,
1364 : : epath_finder *pf,
1365 : : saved_diagnostic *sd)
1366 : : {
1367 : : /* Determine best epath for SD. */
1368 : 6628 : if (!sd->calc_best_epath (pf))
1369 : 273 : return;
1370 : :
1371 : 6355 : dedupe_key *key = new dedupe_key (*sd);
1372 : 6355 : if (saved_diagnostic **slot = m_map.get (key))
1373 : : {
1374 : 2468 : if (logger)
1375 : 0 : logger->log ("already have this dedupe_key");
1376 : :
1377 : 2468 : saved_diagnostic *cur_best_sd = *slot;
1378 : :
1379 : 2468 : if (sd->get_epath_length () < cur_best_sd->get_epath_length ())
1380 : : {
1381 : : /* We've got a shorter path for the key; replace
1382 : : the current candidate, marking it as a duplicate of SD. */
1383 : 35 : if (logger)
1384 : 0 : logger->log ("length %i is better than existing length %i;"
1385 : : " taking over this dedupe_key",
1386 : : sd->get_epath_length (),
1387 : : cur_best_sd->get_epath_length ());
1388 : 35 : sd->add_duplicate (cur_best_sd);
1389 : 35 : *slot = sd;
1390 : : }
1391 : : else
1392 : : /* We haven't beaten the current best candidate; add SD
1393 : : as a duplicate of it. */
1394 : : {
1395 : 2433 : if (logger)
1396 : 0 : logger->log ("length %i isn't better than existing length %i;"
1397 : : " dropping this candidate",
1398 : : sd->get_epath_length (),
1399 : : cur_best_sd->get_epath_length ());
1400 : 2433 : cur_best_sd->add_duplicate (sd);
1401 : : }
1402 : 2468 : delete key;
1403 : : }
1404 : : else
1405 : : {
1406 : : /* This is the first candidate for this key. */
1407 : 3887 : m_map.put (key, sd);
1408 : 3887 : if (logger)
1409 : 0 : logger->log ("first candidate for this dedupe_key");
1410 : : }
1411 : : }
1412 : :
1413 : : /* Handle interactions between the dedupe winners, so that some
1414 : : diagnostics can supercede others (of different kinds).
1415 : :
1416 : : We want use-after-free to supercede use-of-unitialized-value,
1417 : : so that if we have these at the same stmt, we don't emit
1418 : : a use-of-uninitialized, just the use-after-free. */
1419 : :
1420 : 1472 : void handle_interactions (diagnostic_manager *dm)
1421 : : {
1422 : 1472 : LOG_SCOPE (dm->get_logger ());
1423 : 1472 : auto_vec<const dedupe_key *> superceded;
1424 : 5359 : for (auto outer : m_map)
1425 : : {
1426 : 3887 : const saved_diagnostic *outer_sd = outer.second;
1427 : 65132 : for (auto inner : m_map)
1428 : : {
1429 : 28717 : const saved_diagnostic *inner_sd = inner.second;
1430 : 28717 : if (inner_sd->supercedes_p (*outer_sd))
1431 : : {
1432 : 38 : superceded.safe_push (outer.first);
1433 : 38 : if (dm->get_logger ())
1434 : 0 : dm->log ("sd[%i] \"%s\" superceded by sd[%i] \"%s\"",
1435 : 0 : outer_sd->get_index (), outer_sd->m_d->get_kind (),
1436 : 0 : inner_sd->get_index (), inner_sd->m_d->get_kind ());
1437 : : break;
1438 : : }
1439 : : }
1440 : : }
1441 : 1586 : for (auto iter : superceded)
1442 : 38 : m_map.remove (iter);
1443 : 1472 : }
1444 : :
1445 : : /* Emit the simplest diagnostic within each set. */
1446 : :
1447 : 1472 : void emit_best (diagnostic_manager *dm,
1448 : : const exploded_graph &eg)
1449 : : {
1450 : 1472 : LOG_SCOPE (dm->get_logger ());
1451 : :
1452 : : /* Get keys into a vec for sorting. */
1453 : 1472 : auto_vec<const dedupe_key *> keys (m_map.elements ());
1454 : 1472 : for (map_t::iterator iter = m_map.begin ();
1455 : 5321 : iter != m_map.end ();
1456 : 3849 : ++iter)
1457 : 3849 : keys.quick_push ((*iter).first);
1458 : :
1459 : 2890 : dm->log ("# keys after de-duplication: %i", keys.length ());
1460 : :
1461 : : /* Sort into a good emission order. */
1462 : 1472 : keys.qsort (dedupe_key::comparator);
1463 : :
1464 : : /* Emit the best saved_diagnostics for each key. */
1465 : : int i;
1466 : : const dedupe_key *key;
1467 : 6739 : FOR_EACH_VEC_ELT (keys, i, key)
1468 : : {
1469 : 3849 : saved_diagnostic **slot = m_map.get (key);
1470 : 3849 : gcc_assert (*slot);
1471 : 3849 : saved_diagnostic *sd = *slot;
1472 : 3849 : dm->emit_saved_diagnostic (eg, *sd);
1473 : : }
1474 : 1472 : }
1475 : :
1476 : : private:
1477 : : /* This maps from each dedupe_key to a current best saved_diagnostic. */
1478 : :
1479 : : typedef hash_map<const dedupe_key *, saved_diagnostic *,
1480 : : dedupe_hash_map_traits> map_t;
1481 : : map_t m_map;
1482 : : };
1483 : :
1484 : : /* Emit all saved diagnostics. */
1485 : :
1486 : : void
1487 : 3197 : diagnostic_manager::emit_saved_diagnostics (const exploded_graph &eg)
1488 : : {
1489 : 3197 : LOG_SCOPE (get_logger ());
1490 : 3197 : auto_timevar tv (TV_ANALYZER_DIAGNOSTICS);
1491 : 4669 : log ("# saved diagnostics: %i", m_saved_diagnostics.length ());
1492 : 3197 : log ("# disabled diagnostics: %i", m_num_disabled_diagnostics);
1493 : 3197 : if (get_logger ())
1494 : : {
1495 : : unsigned i;
1496 : : saved_diagnostic *sd;
1497 : 2 : FOR_EACH_VEC_ELT (m_saved_diagnostics, i, sd)
1498 : 0 : log ("[%i] sd: %qs at EN: %i, SN: %i",
1499 : 0 : i, sd->m_d->get_kind (), sd->m_enode->m_index,
1500 : 0 : sd->m_snode->m_index);
1501 : : }
1502 : :
1503 : 3197 : if (m_saved_diagnostics.length () == 0)
1504 : 1725 : return;
1505 : :
1506 : : /* Compute the shortest_paths once, sharing it between all diagnostics. */
1507 : 1472 : epath_finder pf (eg);
1508 : :
1509 : : /* Iterate through all saved diagnostics, adding them to a dedupe_winners
1510 : : instance. This partitions the saved diagnostics by dedupe_key,
1511 : : generating exploded_paths for them, and retaining the best one in each
1512 : : partition. */
1513 : 1472 : dedupe_winners best_candidates;
1514 : :
1515 : 1472 : int i;
1516 : 1472 : saved_diagnostic *sd;
1517 : 9572 : FOR_EACH_VEC_ELT (m_saved_diagnostics, i, sd)
1518 : 6628 : best_candidates.add (get_logger (), &pf, sd);
1519 : :
1520 : 1472 : best_candidates.handle_interactions (this);
1521 : :
1522 : : /* For each dedupe-key, call emit_saved_diagnostic on the "best"
1523 : : saved_diagnostic. */
1524 : 1472 : best_candidates.emit_best (this, eg);
1525 : 3197 : }
1526 : :
1527 : : /* Custom subclass of diagnostic_metadata which, for SARIF output,
1528 : : populates the property bag of the diagnostic's "result" object
1529 : : with information from the saved_diagnostic and the
1530 : : pending_diagnostic. */
1531 : :
1532 : 3849 : class pending_diagnostic_metadata : public diagnostic_metadata
1533 : : {
1534 : : public:
1535 : 3849 : pending_diagnostic_metadata (const saved_diagnostic &sd)
1536 : 3849 : : m_sd (sd)
1537 : : {
1538 : : }
1539 : :
1540 : : void
1541 : 17 : maybe_add_sarif_properties (sarif_object &result_obj) const override
1542 : : {
1543 : 17 : m_sd.maybe_add_sarif_properties (result_obj);
1544 : 17 : }
1545 : :
1546 : : private:
1547 : : const saved_diagnostic &m_sd;
1548 : : };
1549 : :
1550 : : /* Given a saved_diagnostic SD with m_best_epath through EG,
1551 : : create an checker_path of suitable events and use it to call
1552 : : SD's underlying pending_diagnostic "emit" vfunc to emit a diagnostic. */
1553 : :
1554 : : void
1555 : 3849 : diagnostic_manager::emit_saved_diagnostic (const exploded_graph &eg,
1556 : : saved_diagnostic &sd)
1557 : : {
1558 : 3849 : LOG_SCOPE (get_logger ());
1559 : 3849 : log ("sd[%i]: %qs at SN: %i",
1560 : 3849 : sd.get_index (), sd.m_d->get_kind (), sd.m_snode->m_index);
1561 : 5564 : log ("num dupes: %i", sd.get_num_dupes ());
1562 : :
1563 : 3849 : const exploded_path *epath = sd.get_best_epath ();
1564 : 3849 : gcc_assert (epath);
1565 : :
1566 : : /* Precompute all enodes from which the diagnostic is reachable. */
1567 : 3849 : path_builder pb (eg, *epath, sd.get_feasibility_problem (), sd);
1568 : :
1569 : : /* This is the diagnostic_path subclass that will be built for
1570 : : the diagnostic. */
1571 : 3849 : checker_path emission_path (get_logger ());
1572 : :
1573 : : /* Populate emission_path with a full description of EPATH. */
1574 : 3849 : build_emission_path (pb, *epath, &emission_path);
1575 : :
1576 : : /* Now prune it to just cover the most pertinent events. */
1577 : 3849 : prune_path (&emission_path, sd.m_sm, sd.m_sval, sd.m_state);
1578 : :
1579 : : /* Add any saved events to the path, giving contextual information
1580 : : about what the analyzer was simulating as the diagnostic was
1581 : : generated. These don't get pruned, as they are probably pertinent. */
1582 : 3849 : sd.add_any_saved_events (emission_path);
1583 : :
1584 : : /* Add a final event to the path, covering the diagnostic itself.
1585 : : We use the final enode from the epath, which might be different from
1586 : : the sd.m_enode, as the dedupe code doesn't care about enodes, just
1587 : : snodes. */
1588 : 3849 : {
1589 : 3849 : const exploded_node *const enode = epath->get_final_enode ();
1590 : 3849 : const gimple *stmt = sd.m_stmt;
1591 : 3849 : event_loc_info loc_info (get_stmt_location (stmt, enode->get_function ()),
1592 : 3849 : enode->get_function ()->decl,
1593 : 3849 : enode->get_stack_depth ());
1594 : 3849 : if (sd.m_stmt_finder)
1595 : 566 : sd.m_stmt_finder->update_event_loc_info (loc_info);
1596 : 3849 : sd.m_d->add_final_event (sd.m_sm, enode, loc_info,
1597 : : sd.m_var, sd.m_state, &emission_path);
1598 : : }
1599 : :
1600 : : /* The "final" event might not be final; if the saved_diagnostic has a
1601 : : trailing eedge stashed, add any events for it. This is for use
1602 : : in handling longjmp, to show where a longjmp is rewinding to. */
1603 : 3849 : if (sd.m_trailing_eedge)
1604 : 4 : add_events_for_eedge (pb, *sd.m_trailing_eedge, &emission_path, NULL);
1605 : :
1606 : 3849 : emission_path.inject_any_inlined_call_events (get_logger ());
1607 : :
1608 : 3849 : emission_path.prepare_for_emission (sd.m_d.get ());
1609 : :
1610 : 3849 : location_t loc = sd.m_loc;
1611 : 3849 : if (loc == UNKNOWN_LOCATION)
1612 : 3770 : loc = get_emission_location (sd.m_stmt, sd.m_snode->m_fun, *sd.m_d);
1613 : :
1614 : : /* Allow the pending_diagnostic to fix up the locations of events. */
1615 : 3849 : emission_path.fixup_locations (sd.m_d.get ());
1616 : :
1617 : 3849 : gcc_rich_location rich_loc (loc);
1618 : 3849 : rich_loc.set_path (&emission_path);
1619 : :
1620 : 3849 : auto_diagnostic_group d;
1621 : 3849 : auto_cfun sentinel (sd.m_snode->m_fun);
1622 : 3849 : pending_diagnostic_metadata m (sd);
1623 : 3849 : diagnostic_emission_context diag_ctxt (sd, rich_loc, m, get_logger ());
1624 : 3849 : if (sd.m_d->emit (diag_ctxt))
1625 : : {
1626 : 3781 : sd.emit_any_notes ();
1627 : :
1628 : 3781 : unsigned num_dupes = sd.get_num_dupes ();
1629 : 3781 : if (flag_analyzer_show_duplicate_count && num_dupes > 0)
1630 : 10 : inform_n (loc, num_dupes,
1631 : : "%i duplicate", "%i duplicates",
1632 : : num_dupes);
1633 : 3781 : if (flag_dump_analyzer_exploded_paths)
1634 : : {
1635 : 0 : auto_timevar tv (TV_ANALYZER_DUMP);
1636 : 0 : pretty_printer pp;
1637 : 0 : pp_printf (&pp, "%s.%i.%s.epath.txt",
1638 : 0 : dump_base_name, sd.get_index (), sd.m_d->get_kind ());
1639 : 0 : char *filename = xstrdup (pp_formatted_text (&pp));
1640 : 0 : epath->dump_to_file (filename, eg.get_ext_state ());
1641 : 0 : inform (loc, "exploded path written to %qs", filename);
1642 : 0 : free (filename);
1643 : 0 : }
1644 : : }
1645 : 3849 : }
1646 : :
1647 : : /* Emit a "path" of events to EMISSION_PATH describing the exploded path
1648 : : EPATH within EG. */
1649 : :
1650 : : void
1651 : 3849 : diagnostic_manager::build_emission_path (const path_builder &pb,
1652 : : const exploded_path &epath,
1653 : : checker_path *emission_path) const
1654 : : {
1655 : 3849 : LOG_SCOPE (get_logger ());
1656 : :
1657 : 3849 : interesting_t interest;
1658 : 3849 : pb.get_pending_diagnostic ()->mark_interesting_stuff (&interest);
1659 : :
1660 : : /* Add region creation events for any globals of interest, at the
1661 : : beginning of the path. */
1662 : 3849 : {
1663 : 7753 : for (auto reg : interest.m_region_creation)
1664 : 1320 : switch (reg->get_memory_space ())
1665 : : {
1666 : 1100 : default:
1667 : 1100 : continue;
1668 : 220 : case MEMSPACE_CODE:
1669 : 220 : case MEMSPACE_GLOBALS:
1670 : 220 : case MEMSPACE_READONLY_DATA:
1671 : 220 : {
1672 : 220 : const region *base_reg = reg->get_base_region ();
1673 : 220 : if (tree decl = base_reg->maybe_get_decl ())
1674 : 211 : if (DECL_P (decl)
1675 : 211 : && DECL_SOURCE_LOCATION (decl) != UNKNOWN_LOCATION)
1676 : : {
1677 : 211 : emission_path->add_region_creation_events
1678 : 211 : (pb.get_pending_diagnostic (),
1679 : : reg, NULL,
1680 : 211 : event_loc_info (DECL_SOURCE_LOCATION (decl),
1681 : : NULL_TREE,
1682 : 211 : 0),
1683 : 211 : m_verbosity > 3);
1684 : : }
1685 : : }
1686 : 1100 : }
1687 : : }
1688 : :
1689 : : /* Walk EPATH, adding events as appropriate. */
1690 : 53034 : for (unsigned i = 0; i < epath.m_edges.length (); i++)
1691 : : {
1692 : 49185 : const exploded_edge *eedge = epath.m_edges[i];
1693 : 49185 : add_events_for_eedge (pb, *eedge, emission_path, &interest);
1694 : : }
1695 : 3849 : add_event_on_final_node (pb, epath.get_final_enode (),
1696 : : emission_path, &interest);
1697 : 3849 : }
1698 : :
1699 : : /* Emit a region_creation_event when requested on the last statement in
1700 : : the path.
1701 : :
1702 : : If a region_creation_event should be emitted on the last statement of the
1703 : : path, we need to peek to the successors to get whether the final enode
1704 : : created a region.
1705 : : */
1706 : :
1707 : : void
1708 : 3849 : diagnostic_manager::add_event_on_final_node (const path_builder &pb,
1709 : : const exploded_node *final_enode,
1710 : : checker_path *emission_path,
1711 : : interesting_t *interest) const
1712 : : {
1713 : 3849 : const program_point &src_point = final_enode->get_point ();
1714 : 3849 : const int src_stack_depth = src_point.get_stack_depth ();
1715 : 3849 : const program_state &src_state = final_enode->get_state ();
1716 : 3849 : const region_model *src_model = src_state.m_region_model;
1717 : :
1718 : 3849 : unsigned j;
1719 : 3849 : exploded_edge *e;
1720 : 6657 : FOR_EACH_VEC_ELT (final_enode->m_succs, j, e)
1721 : : {
1722 : 2869 : exploded_node *dst = e->m_dest;
1723 : 2869 : const program_state &dst_state = dst->get_state ();
1724 : 2869 : const region_model *dst_model = dst_state.m_region_model;
1725 : 2869 : if (src_model->get_dynamic_extents ()
1726 : 2869 : != dst_model->get_dynamic_extents ())
1727 : : {
1728 : : unsigned i;
1729 : : const region *reg;
1730 : : bool emitted = false;
1731 : 256 : FOR_EACH_VEC_ELT (interest->m_region_creation, i, reg)
1732 : : {
1733 : 68 : const region *base_reg = reg->get_base_region ();
1734 : 68 : const svalue *old_extents
1735 : 68 : = src_model->get_dynamic_extents (base_reg);
1736 : 68 : const svalue *new_extents
1737 : 68 : = dst_model->get_dynamic_extents (base_reg);
1738 : 68 : if (old_extents == NULL && new_extents != NULL)
1739 : 61 : switch (base_reg->get_kind ())
1740 : : {
1741 : : default:
1742 : : break;
1743 : 61 : case RK_HEAP_ALLOCATED:
1744 : 61 : case RK_ALLOCA:
1745 : 61 : emission_path->add_region_creation_events
1746 : 61 : (pb.get_pending_diagnostic (),
1747 : : reg,
1748 : : dst_model,
1749 : 61 : event_loc_info (src_point.get_location (),
1750 : : src_point.get_fndecl (),
1751 : 61 : src_stack_depth),
1752 : : false);
1753 : 61 : emitted = true;
1754 : 61 : break;
1755 : : }
1756 : : }
1757 : 188 : if (emitted)
1758 : : break;
1759 : : }
1760 : : }
1761 : 3849 : }
1762 : :
1763 : : /* Subclass of state_change_visitor that creates state_change_event
1764 : : instances. */
1765 : :
1766 : 49189 : class state_change_event_creator : public state_change_visitor
1767 : : {
1768 : : public:
1769 : 49189 : state_change_event_creator (const path_builder &pb,
1770 : : const exploded_edge &eedge,
1771 : : checker_path *emission_path)
1772 : 49189 : : m_pb (pb),
1773 : 49189 : m_eedge (eedge),
1774 : 49189 : m_emission_path (emission_path)
1775 : : {}
1776 : :
1777 : 97 : bool on_global_state_change (const state_machine &sm,
1778 : : state_machine::state_t src_sm_val,
1779 : : state_machine::state_t dst_sm_val)
1780 : : final override
1781 : : {
1782 : 97 : if (&sm != m_pb.get_sm ())
1783 : : return false;
1784 : 55 : const exploded_node *src_node = m_eedge.m_src;
1785 : 55 : const program_point &src_point = src_node->get_point ();
1786 : 55 : const int src_stack_depth = src_point.get_stack_depth ();
1787 : 55 : const exploded_node *dst_node = m_eedge.m_dest;
1788 : 55 : const gimple *stmt = src_point.get_stmt ();
1789 : 55 : const supernode *supernode = src_point.get_supernode ();
1790 : 55 : const program_state &dst_state = dst_node->get_state ();
1791 : :
1792 : 55 : int stack_depth = src_stack_depth;
1793 : :
1794 : 55 : m_emission_path->add_event
1795 : 55 : (make_unique<state_change_event> (supernode,
1796 : : stmt,
1797 : : stack_depth,
1798 : : sm,
1799 : 110 : nullptr,
1800 : : src_sm_val,
1801 : : dst_sm_val,
1802 : 55 : nullptr,
1803 : : dst_state,
1804 : : src_node));
1805 : 55 : return false;
1806 : : }
1807 : :
1808 : 4990 : bool on_state_change (const state_machine &sm,
1809 : : state_machine::state_t src_sm_val,
1810 : : state_machine::state_t dst_sm_val,
1811 : : const svalue *sval,
1812 : : const svalue *dst_origin_sval) final override
1813 : : {
1814 : 4990 : if (&sm != m_pb.get_sm ())
1815 : : return false;
1816 : 4099 : const exploded_node *src_node = m_eedge.m_src;
1817 : 4099 : const program_point &src_point = src_node->get_point ();
1818 : 4099 : const int src_stack_depth = src_point.get_stack_depth ();
1819 : 4099 : const exploded_node *dst_node = m_eedge.m_dest;
1820 : 4099 : const gimple *stmt = src_point.get_stmt ();
1821 : 4099 : const supernode *supernode = src_point.get_supernode ();
1822 : 4099 : const program_state &dst_state = dst_node->get_state ();
1823 : :
1824 : 4099 : int stack_depth = src_stack_depth;
1825 : :
1826 : 4099 : if (m_eedge.m_sedge
1827 : 312 : && m_eedge.m_sedge->m_kind == SUPEREDGE_CFG_EDGE)
1828 : : {
1829 : 312 : supernode = src_point.get_supernode ();
1830 : 312 : stmt = supernode->get_last_stmt ();
1831 : 312 : stack_depth = src_stack_depth;
1832 : : }
1833 : :
1834 : : /* Bulletproofing for state changes at calls/returns;
1835 : : TODO: is there a better way? */
1836 : 4099 : if (!stmt)
1837 : : return false;
1838 : :
1839 : 4041 : m_emission_path->add_event
1840 : 4041 : (make_unique<state_change_event> (supernode,
1841 : : stmt,
1842 : : stack_depth,
1843 : : sm,
1844 : : sval,
1845 : : src_sm_val,
1846 : : dst_sm_val,
1847 : : dst_origin_sval,
1848 : : dst_state,
1849 : : src_node));
1850 : 4041 : return false;
1851 : : }
1852 : :
1853 : : const path_builder &m_pb;
1854 : : const exploded_edge &m_eedge;
1855 : : checker_path *m_emission_path;
1856 : : };
1857 : :
1858 : : /* Compare SRC_STATE and DST_STATE (which use EXT_STATE), and call
1859 : : VISITOR's on_state_change for every sm-state change that occurs
1860 : : to a tree, and on_global_state_change for every global state change
1861 : : that occurs.
1862 : :
1863 : : This determines the state changes that ought to be reported to
1864 : : the user: a combination of the effects of changes to sm_state_map
1865 : : (which maps svalues to sm-states), and of region_model changes
1866 : : (which map trees to svalues).
1867 : :
1868 : : Bail out early and return true if any call to on_global_state_change
1869 : : or on_state_change returns true, otherwise return false.
1870 : :
1871 : : This is split out to make it easier to experiment with changes to
1872 : : exploded_node granularity (so that we can observe what state changes
1873 : : lead to state_change_events being emitted). */
1874 : :
1875 : : bool
1876 : 49189 : for_each_state_change (const program_state &src_state,
1877 : : const program_state &dst_state,
1878 : : const extrinsic_state &ext_state,
1879 : : state_change_visitor *visitor)
1880 : : {
1881 : 147567 : gcc_assert (src_state.m_checker_states.length ()
1882 : : == ext_state.get_num_checkers ());
1883 : 98378 : gcc_assert (dst_state.m_checker_states.length ()
1884 : : == ext_state.get_num_checkers ());
1885 : 390984 : for (unsigned i = 0; i < ext_state.get_num_checkers (); i++)
1886 : : {
1887 : 341795 : const state_machine &sm = ext_state.get_sm (i);
1888 : 341795 : const sm_state_map &src_smap = *src_state.m_checker_states[i];
1889 : 341795 : const sm_state_map &dst_smap = *dst_state.m_checker_states[i];
1890 : :
1891 : : /* Add events for any global state changes. */
1892 : 341795 : if (src_smap.get_global_state () != dst_smap.get_global_state ())
1893 : 97 : if (visitor->on_global_state_change (sm,
1894 : : src_smap.get_global_state (),
1895 : : dst_smap.get_global_state ()))
1896 : : return true;
1897 : :
1898 : : /* Add events for per-svalue state changes. */
1899 : 400094 : for (sm_state_map::iterator_t iter = dst_smap.begin ();
1900 : 741889 : iter != dst_smap.end ();
1901 : 58299 : ++iter)
1902 : : {
1903 : 58299 : const svalue *sval = (*iter).first;
1904 : 58299 : state_machine::state_t dst_sm_val = (*iter).second.m_state;
1905 : 58299 : state_machine::state_t src_sm_val
1906 : 58299 : = src_smap.get_state (sval, ext_state);
1907 : 58299 : if (dst_sm_val != src_sm_val)
1908 : : {
1909 : 4990 : const svalue *origin_sval = (*iter).second.m_origin;
1910 : 4990 : if (visitor->on_state_change (sm, src_sm_val, dst_sm_val,
1911 : : sval, origin_sval))
1912 : 0 : return true;
1913 : : }
1914 : : }
1915 : : }
1916 : : return false;
1917 : : }
1918 : :
1919 : : /* An sm_context for adding state_change_event on assignments to NULL,
1920 : : where the default state isn't m_start. Storing such state in the
1921 : : sm_state_map would lead to bloat of the exploded_graph, so we want
1922 : : to leave it as a default state, and inject state change events here
1923 : : when we have a diagnostic.
1924 : : Find transitions of constants, for handling on_zero_assignment. */
1925 : :
1926 : 208403 : struct null_assignment_sm_context : public sm_context
1927 : : {
1928 : 208403 : null_assignment_sm_context (int sm_idx,
1929 : : const state_machine &sm,
1930 : : const program_state *old_state,
1931 : : const program_state *new_state,
1932 : : const gimple *stmt,
1933 : : const program_point *point,
1934 : : checker_path *emission_path,
1935 : : const extrinsic_state &ext_state)
1936 : 208403 : : sm_context (sm_idx, sm), m_old_state (old_state), m_new_state (new_state),
1937 : 208403 : m_stmt (stmt), m_point (point), m_emission_path (emission_path),
1938 : 208403 : m_ext_state (ext_state)
1939 : : {
1940 : : }
1941 : :
1942 : 0 : tree get_fndecl_for_call (const gcall */*call*/) final override
1943 : : {
1944 : 0 : return NULL_TREE;
1945 : : }
1946 : :
1947 : 10357 : state_machine::state_t get_state (const gimple *stmt ATTRIBUTE_UNUSED,
1948 : : tree var) final override
1949 : : {
1950 : 10357 : const svalue *var_old_sval
1951 : 10357 : = m_old_state->m_region_model->get_rvalue (var, NULL);
1952 : 10357 : const sm_state_map *old_smap = m_old_state->m_checker_states[m_sm_idx];
1953 : :
1954 : 10357 : state_machine::state_t current
1955 : 10357 : = old_smap->get_state (var_old_sval, m_ext_state);
1956 : :
1957 : 10357 : return current;
1958 : : }
1959 : :
1960 : 50 : state_machine::state_t get_state (const gimple *stmt ATTRIBUTE_UNUSED,
1961 : : const svalue *sval) final override
1962 : : {
1963 : 50 : const sm_state_map *old_smap = m_old_state->m_checker_states[m_sm_idx];
1964 : 50 : state_machine::state_t current = old_smap->get_state (sval, m_ext_state);
1965 : 50 : return current;
1966 : : }
1967 : :
1968 : 3771 : void set_next_state (const gimple *stmt,
1969 : : tree var,
1970 : : state_machine::state_t to,
1971 : : tree origin ATTRIBUTE_UNUSED) final override
1972 : : {
1973 : 3771 : state_machine::state_t from = get_state (stmt, var);
1974 : 3771 : if (from != m_sm.get_start_state ())
1975 : 3266 : return;
1976 : 2804 : if (!is_transition_to_null (to))
1977 : : return;
1978 : :
1979 : 505 : const svalue *var_new_sval
1980 : 505 : = m_new_state->m_region_model->get_rvalue (var, NULL);
1981 : :
1982 : 505 : const supernode *supernode = m_point->get_supernode ();
1983 : 505 : int stack_depth = m_point->get_stack_depth ();
1984 : :
1985 : 505 : m_emission_path->add_event
1986 : 505 : (make_unique<state_change_event> (supernode,
1987 : 505 : m_stmt,
1988 : : stack_depth,
1989 : : m_sm,
1990 : : var_new_sval,
1991 : : from, to,
1992 : 1010 : nullptr,
1993 : 505 : *m_new_state,
1994 : 1010 : nullptr));
1995 : : }
1996 : :
1997 : 9 : void set_next_state (const gimple *stmt,
1998 : : const svalue *sval,
1999 : : state_machine::state_t to,
2000 : : tree origin ATTRIBUTE_UNUSED) final override
2001 : : {
2002 : 9 : state_machine::state_t from = get_state (stmt, sval);
2003 : 9 : if (from != m_sm.get_start_state ())
2004 : 9 : return;
2005 : 0 : if (!is_transition_to_null (to))
2006 : : return;
2007 : :
2008 : 0 : const supernode *supernode = m_point->get_supernode ();
2009 : 0 : int stack_depth = m_point->get_stack_depth ();
2010 : :
2011 : 0 : m_emission_path->add_event
2012 : 0 : (make_unique<state_change_event> (supernode,
2013 : 0 : m_stmt,
2014 : : stack_depth,
2015 : : m_sm,
2016 : : sval,
2017 : : from, to,
2018 : 0 : nullptr,
2019 : 0 : *m_new_state,
2020 : 0 : nullptr));
2021 : : }
2022 : :
2023 : 961 : void warn (const supernode *, const gimple *,
2024 : : tree, std::unique_ptr<pending_diagnostic>) final override
2025 : : {
2026 : 961 : }
2027 : 0 : void warn (const supernode *, const gimple *,
2028 : : const svalue *, std::unique_ptr<pending_diagnostic>) final override
2029 : : {
2030 : 0 : }
2031 : :
2032 : 961 : tree get_diagnostic_tree (tree expr) final override
2033 : : {
2034 : 961 : return expr;
2035 : : }
2036 : :
2037 : 0 : tree get_diagnostic_tree (const svalue *sval) final override
2038 : : {
2039 : 0 : return m_new_state->m_region_model->get_representative_tree (sval);
2040 : : }
2041 : :
2042 : 29779 : state_machine::state_t get_global_state () const final override
2043 : : {
2044 : 29779 : return 0;
2045 : : }
2046 : :
2047 : 0 : void set_global_state (state_machine::state_t) final override
2048 : : {
2049 : : /* No-op. */
2050 : 0 : }
2051 : :
2052 : 0 : void clear_all_per_svalue_state () final override
2053 : : {
2054 : : /* No-op. */
2055 : 0 : }
2056 : :
2057 : 0 : void on_custom_transition (custom_transition *) final override
2058 : : {
2059 : 0 : }
2060 : :
2061 : 29816 : tree is_zero_assignment (const gimple *stmt) final override
2062 : : {
2063 : 56965 : const gassign *assign_stmt = dyn_cast <const gassign *> (stmt);
2064 : 29816 : if (!assign_stmt)
2065 : : return NULL_TREE;
2066 : 59632 : if (const svalue *sval
2067 : 29816 : = m_new_state->m_region_model->get_gassign_result (assign_stmt, NULL))
2068 : 28906 : if (tree cst = sval->maybe_get_constant ())
2069 : 5666 : if (::zerop(cst))
2070 : 2667 : return gimple_assign_lhs (assign_stmt);
2071 : : return NULL_TREE;
2072 : : }
2073 : :
2074 : 3409 : const program_state *get_old_program_state () const final override
2075 : : {
2076 : 3409 : return m_old_state;
2077 : : }
2078 : 0 : const program_state *get_new_program_state () const final override
2079 : : {
2080 : 0 : return m_new_state;
2081 : : }
2082 : :
2083 : : /* We only care about transitions to the "null" state
2084 : : within sm-malloc. Special-case this. */
2085 : 2804 : static bool is_transition_to_null (state_machine::state_t s)
2086 : : {
2087 : 2804 : return !strcmp (s->get_name (), "null");
2088 : : }
2089 : :
2090 : : const program_state *m_old_state;
2091 : : const program_state *m_new_state;
2092 : : const gimple *m_stmt;
2093 : : const program_point *m_point;
2094 : : checker_path *m_emission_path;
2095 : : const extrinsic_state &m_ext_state;
2096 : : };
2097 : :
2098 : : /* Subroutine of diagnostic_manager::build_emission_path.
2099 : : Add any events for EEDGE to EMISSION_PATH. */
2100 : :
2101 : : void
2102 : 49189 : diagnostic_manager::add_events_for_eedge (const path_builder &pb,
2103 : : const exploded_edge &eedge,
2104 : : checker_path *emission_path,
2105 : : interesting_t *interest) const
2106 : : {
2107 : 49189 : const exploded_node *src_node = eedge.m_src;
2108 : 49189 : const program_point &src_point = src_node->get_point ();
2109 : 49189 : const int src_stack_depth = src_point.get_stack_depth ();
2110 : 49189 : const exploded_node *dst_node = eedge.m_dest;
2111 : 49189 : const program_point &dst_point = dst_node->get_point ();
2112 : 49189 : const int dst_stack_depth = dst_point.get_stack_depth ();
2113 : 49189 : if (get_logger ())
2114 : : {
2115 : 0 : get_logger ()->start_log_line ();
2116 : 0 : pretty_printer *pp = get_logger ()->get_printer ();
2117 : 0 : pp_printf (pp, "EN %i -> EN %i: ",
2118 : 0 : eedge.m_src->m_index,
2119 : 0 : eedge.m_dest->m_index);
2120 : 0 : src_point.print (pp, format (false));
2121 : 0 : pp_string (pp, "-> ");
2122 : 0 : dst_point.print (pp, format (false));
2123 : 0 : get_logger ()->end_log_line ();
2124 : : }
2125 : 49189 : const program_state &src_state = src_node->get_state ();
2126 : 49189 : const program_state &dst_state = dst_node->get_state ();
2127 : :
2128 : : /* Add state change events for the states that have changed.
2129 : : We add these before events for superedges, so that if we have a
2130 : : state_change_event due to following an edge, we'll get this sequence
2131 : : of events:
2132 : :
2133 : : | if (!ptr)
2134 : : | ~
2135 : : | |
2136 : : | (1) assuming 'ptr' is non-NULL (state_change_event)
2137 : : | (2) following 'false' branch... (start_cfg_edge_event)
2138 : : ...
2139 : : | do_something (ptr);
2140 : : | ~~~~~~~~~~~~~^~~~~
2141 : : | |
2142 : : | (3) ...to here (end_cfg_edge_event). */
2143 : 49189 : state_change_event_creator visitor (pb, eedge, emission_path);
2144 : 49189 : for_each_state_change (src_state, dst_state, pb.get_ext_state (),
2145 : : &visitor);
2146 : :
2147 : : /* Allow non-standard edges to add events, e.g. when rewinding from
2148 : : longjmp to a setjmp. */
2149 : 49189 : if (eedge.m_custom_info)
2150 : 480 : eedge.m_custom_info->add_events_to_path (emission_path, eedge);
2151 : :
2152 : : /* Add events for superedges, function entries, and for statements. */
2153 : 49189 : switch (dst_point.get_kind ())
2154 : : {
2155 : : default:
2156 : : break;
2157 : 17469 : case PK_BEFORE_SUPERNODE:
2158 : 17469 : if (src_point.get_kind () == PK_AFTER_SUPERNODE)
2159 : : {
2160 : 13609 : if (eedge.m_sedge)
2161 : 13558 : add_events_for_superedge (pb, eedge, emission_path);
2162 : : }
2163 : : /* Add function entry events. */
2164 : 17469 : if (dst_point.get_supernode ()->entry_p ())
2165 : : {
2166 : 5016 : pb.get_pending_diagnostic ()->add_function_entry_event
2167 : 5016 : (eedge, emission_path);
2168 : : /* Create region_creation_events for on-stack regions within
2169 : : this frame. */
2170 : 5016 : if (interest)
2171 : : {
2172 : : unsigned i;
2173 : : const region *reg;
2174 : 6508 : FOR_EACH_VEC_ELT (interest->m_region_creation, i, reg)
2175 : 1492 : if (const frame_region *frame = reg->maybe_get_frame_region ())
2176 : 994 : if (frame->get_fndecl () == dst_point.get_fndecl ())
2177 : : {
2178 : 843 : const region *base_reg = reg->get_base_region ();
2179 : 843 : if (tree decl = base_reg->maybe_get_decl ())
2180 : 742 : if (DECL_P (decl)
2181 : 742 : && DECL_SOURCE_LOCATION (decl) != UNKNOWN_LOCATION)
2182 : : {
2183 : 738 : emission_path->add_region_creation_events
2184 : 1476 : (pb.get_pending_diagnostic (),
2185 : 738 : reg, dst_state.m_region_model,
2186 : 1476 : event_loc_info (DECL_SOURCE_LOCATION (decl),
2187 : : dst_point.get_fndecl (),
2188 : 738 : dst_stack_depth),
2189 : 738 : m_verbosity > 3);
2190 : : }
2191 : : }
2192 : : }
2193 : : }
2194 : : break;
2195 : 17608 : case PK_BEFORE_STMT:
2196 : 17608 : {
2197 : 17608 : const gimple *stmt = dst_point.get_stmt ();
2198 : 17608 : const gcall *call = dyn_cast <const gcall *> (stmt);
2199 : 17608 : if (call && is_setjmp_call_p (call))
2200 : 20 : emission_path->add_event
2201 : 20 : (make_unique<setjmp_event> (event_loc_info (stmt->location,
2202 : : dst_point.get_fndecl (),
2203 : 20 : dst_stack_depth),
2204 : : dst_node,
2205 : : call));
2206 : : else
2207 : 17588 : emission_path->add_event
2208 : 17588 : (make_unique<statement_event> (stmt,
2209 : 35176 : dst_point.get_fndecl (),
2210 : : dst_stack_depth, dst_state));
2211 : :
2212 : : /* Create state change events for assignment to NULL.
2213 : : Iterate through the stmts in dst_enode, adding state change
2214 : : events for them. */
2215 : 17608 : if (dst_state.m_region_model)
2216 : : {
2217 : 17608 : log_scope s (get_logger (), "processing run of stmts");
2218 : 17608 : program_state iter_state (dst_state);
2219 : 17608 : program_point iter_point (dst_point);
2220 : 73963 : while (1)
2221 : : {
2222 : 73963 : const gimple *stmt = iter_point.get_stmt ();
2223 : 73963 : if (const gassign *assign = dyn_cast<const gassign *> (stmt))
2224 : : {
2225 : 29834 : const extrinsic_state &ext_state = pb.get_ext_state ();
2226 : 29834 : program_state old_state (iter_state);
2227 : 29834 : iter_state.m_region_model->on_assignment (assign, NULL);
2228 : 238237 : for (unsigned i = 0; i < ext_state.get_num_checkers (); i++)
2229 : : {
2230 : 208403 : const state_machine &sm = ext_state.get_sm (i);
2231 : 208403 : null_assignment_sm_context sm_ctxt (i, sm,
2232 : : &old_state,
2233 : : &iter_state,
2234 : : stmt,
2235 : : &iter_point,
2236 : : emission_path,
2237 : 208403 : pb.get_ext_state ());
2238 : 208403 : sm.on_stmt (sm_ctxt, dst_point.get_supernode (), stmt);
2239 : : // TODO: what about phi nodes?
2240 : 208403 : }
2241 : 29834 : }
2242 : 73963 : iter_point.next_stmt ();
2243 : 73963 : if (iter_point.get_kind () == PK_AFTER_SUPERNODE
2244 : 74262 : || (dst_node->m_succs.length () > 1
2245 : : && (iter_point
2246 : 299 : == dst_node->m_succs[0]->m_dest->get_point ())))
2247 : : break;
2248 : : }
2249 : :
2250 : 17608 : }
2251 : : }
2252 : 17608 : break;
2253 : : }
2254 : :
2255 : : /* Look for changes in dynamic extents, which will identify
2256 : : the creation of heap-based regions and alloca regions. */
2257 : 49189 : if (interest)
2258 : : {
2259 : 49185 : const region_model *src_model = src_state.m_region_model;
2260 : 49185 : const region_model *dst_model = dst_state.m_region_model;
2261 : 49185 : if (src_model->get_dynamic_extents ()
2262 : 49185 : != dst_model->get_dynamic_extents ())
2263 : : {
2264 : : unsigned i;
2265 : : const region *reg;
2266 : 2612 : FOR_EACH_VEC_ELT (interest->m_region_creation, i, reg)
2267 : : {
2268 : 384 : const region *base_reg = reg->get_base_region ();
2269 : 384 : const svalue *old_extents
2270 : 384 : = src_model->get_dynamic_extents (base_reg);
2271 : 384 : const svalue *new_extents
2272 : 384 : = dst_model->get_dynamic_extents (base_reg);
2273 : 384 : if (old_extents == NULL && new_extents != NULL)
2274 : 277 : switch (base_reg->get_kind ())
2275 : : {
2276 : : default:
2277 : : break;
2278 : 241 : case RK_HEAP_ALLOCATED:
2279 : 241 : case RK_ALLOCA:
2280 : 241 : emission_path->add_region_creation_events
2281 : 241 : (pb.get_pending_diagnostic (),
2282 : : reg, dst_model,
2283 : 241 : event_loc_info (src_point.get_location (),
2284 : : src_point.get_fndecl (),
2285 : 241 : src_stack_depth),
2286 : 241 : m_verbosity > 3);
2287 : 241 : break;
2288 : : }
2289 : : }
2290 : : }
2291 : : }
2292 : :
2293 : 49189 : if (pb.get_feasibility_problem ()
2294 : 49189 : && &pb.get_feasibility_problem ()->m_eedge == &eedge)
2295 : : {
2296 : 4 : pretty_printer pp;
2297 : 4 : pp_format_decoder (&pp) = default_tree_printer;
2298 : 4 : pp_string (&pp,
2299 : : "this path would have been rejected as infeasible"
2300 : : " at this edge: ");
2301 : 4 : pb.get_feasibility_problem ()->dump_to_pp (&pp);
2302 : 4 : emission_path->add_event
2303 : 4 : (make_unique<precanned_custom_event>
2304 : 8 : (event_loc_info (dst_point.get_location (),
2305 : : dst_point.get_fndecl (),
2306 : 4 : dst_stack_depth),
2307 : 4 : pp_formatted_text (&pp)));
2308 : 4 : }
2309 : 49189 : }
2310 : :
2311 : : /* Return true if EEDGE is a significant edge in the path to the diagnostic
2312 : : for PB.
2313 : :
2314 : : Consider all of the sibling out-eedges from the same source enode
2315 : : as EEDGE.
2316 : : If there's no path from the destinations of those eedges to the
2317 : : diagnostic enode, then we have to take this eedge and thus it's
2318 : : significant.
2319 : :
2320 : : Conversely if there is a path from the destination of any other sibling
2321 : : eedge to the diagnostic enode, then this edge is insignificant.
2322 : :
2323 : : Example 1: redundant if-else:
2324 : :
2325 : : (A) if (...) A
2326 : : (B) ... / \
2327 : : else B C
2328 : : (C) ... \ /
2329 : : (D) [DIAGNOSTIC] D
2330 : :
2331 : : D is reachable by either B or C, so neither of these edges
2332 : : are significant.
2333 : :
2334 : : Example 2: pertinent if-else:
2335 : :
2336 : : (A) if (...) A
2337 : : (B) ... / \
2338 : : else B C
2339 : : (C) [NECESSARY CONDITION] | |
2340 : : (D) [POSSIBLE DIAGNOSTIC] D1 D2
2341 : :
2342 : : D becomes D1 and D2 in the exploded graph, where the diagnostic occurs
2343 : : at D2. D2 is only reachable via C, so the A -> C edge is significant.
2344 : :
2345 : : Example 3: redundant loop:
2346 : :
2347 : : (A) while (...) +-->A
2348 : : (B) ... | / \
2349 : : (C) ... +-B C
2350 : : (D) [DIAGNOSTIC] |
2351 : : D
2352 : :
2353 : : D is reachable from both B and C, so the A->C edge is not significant. */
2354 : :
2355 : : bool
2356 : 13045 : diagnostic_manager::significant_edge_p (const path_builder &pb,
2357 : : const exploded_edge &eedge) const
2358 : : {
2359 : 13045 : int i;
2360 : 13045 : exploded_edge *sibling;
2361 : 27898 : FOR_EACH_VEC_ELT (eedge.m_src->m_succs, i, sibling)
2362 : : {
2363 : 15610 : if (sibling == &eedge)
2364 : 12507 : continue;
2365 : 3103 : if (pb.reachable_from_p (sibling->m_dest))
2366 : : {
2367 : 757 : if (get_logger ())
2368 : 0 : get_logger ()->log (" edge EN: %i -> EN: %i is insignificant as"
2369 : : " EN: %i is also reachable via"
2370 : : " EN: %i -> EN: %i",
2371 : 0 : eedge.m_src->m_index, eedge.m_dest->m_index,
2372 : 0 : pb.get_diag_node ()->m_index,
2373 : 0 : sibling->m_src->m_index,
2374 : : sibling->m_dest->m_index);
2375 : 757 : return false;
2376 : : }
2377 : : }
2378 : :
2379 : : return true;
2380 : : }
2381 : :
2382 : : /* Subroutine of diagnostic_manager::add_events_for_eedge
2383 : : where EEDGE has an underlying superedge i.e. a CFG edge,
2384 : : or an interprocedural call/return.
2385 : : Add any events for the superedge to EMISSION_PATH. */
2386 : :
2387 : : void
2388 : 13558 : diagnostic_manager::add_events_for_superedge (const path_builder &pb,
2389 : : const exploded_edge &eedge,
2390 : : checker_path *emission_path)
2391 : : const
2392 : : {
2393 : 13558 : gcc_assert (eedge.m_sedge);
2394 : :
2395 : : /* Give diagnostics an opportunity to override this function. */
2396 : 13558 : pending_diagnostic *pd = pb.get_pending_diagnostic ();
2397 : 13558 : if (pd->maybe_add_custom_events_for_superedge (eedge, emission_path))
2398 : : return;
2399 : :
2400 : : /* Don't add events for insignificant edges at verbosity levels below 3. */
2401 : 13172 : if (m_verbosity < 3)
2402 : 13045 : if (!significant_edge_p (pb, eedge))
2403 : : return;
2404 : :
2405 : 12415 : const exploded_node *src_node = eedge.m_src;
2406 : 12415 : const program_point &src_point = src_node->get_point ();
2407 : 12415 : const exploded_node *dst_node = eedge.m_dest;
2408 : 12415 : const program_point &dst_point = dst_node->get_point ();
2409 : 12415 : const int src_stack_depth = src_point.get_stack_depth ();
2410 : 12415 : const int dst_stack_depth = dst_point.get_stack_depth ();
2411 : 12415 : const gimple *last_stmt = src_point.get_supernode ()->get_last_stmt ();
2412 : :
2413 : 12415 : switch (eedge.m_sedge->m_kind)
2414 : : {
2415 : 10519 : case SUPEREDGE_CFG_EDGE:
2416 : 10519 : {
2417 : 10519 : emission_path->add_event
2418 : 10519 : (make_unique<start_cfg_edge_event>
2419 : 21038 : (eedge,
2420 : 10519 : event_loc_info (last_stmt ? last_stmt->location : UNKNOWN_LOCATION,
2421 : : src_point.get_fndecl (),
2422 : 10519 : src_stack_depth)));
2423 : 10519 : emission_path->add_event
2424 : 10519 : (make_unique<end_cfg_edge_event>
2425 : 21038 : (eedge,
2426 : 10519 : event_loc_info (dst_point.get_supernode ()->get_start_location (),
2427 : : dst_point.get_fndecl (),
2428 : 10519 : dst_stack_depth)));
2429 : : }
2430 : 10519 : break;
2431 : :
2432 : 1120 : case SUPEREDGE_CALL:
2433 : 1120 : pd->add_call_event (eedge, emission_path);
2434 : 1120 : break;
2435 : :
2436 : 156 : case SUPEREDGE_INTRAPROCEDURAL_CALL:
2437 : 156 : {
2438 : : /* TODO: add a subclass for this, or generate events for the
2439 : : summary. */
2440 : 156 : emission_path->add_event
2441 : 156 : (make_unique<debug_event> (event_loc_info (last_stmt
2442 : : ? last_stmt->location
2443 : : : UNKNOWN_LOCATION,
2444 : : src_point.get_fndecl (),
2445 : 156 : src_stack_depth),
2446 : : "call summary"));
2447 : : }
2448 : 156 : break;
2449 : :
2450 : 620 : case SUPEREDGE_RETURN:
2451 : 620 : {
2452 : 620 : const return_superedge *return_edge
2453 : 620 : = as_a <const return_superedge *> (eedge.m_sedge);
2454 : :
2455 : 620 : const gcall *call_stmt = return_edge->get_call_stmt ();
2456 : 620 : emission_path->add_event
2457 : 620 : (make_unique<return_event> (eedge,
2458 : 620 : event_loc_info (call_stmt
2459 : : ? call_stmt->location
2460 : : : UNKNOWN_LOCATION,
2461 : : dst_point.get_fndecl (),
2462 : 620 : dst_stack_depth)));
2463 : : }
2464 : 620 : break;
2465 : : }
2466 : : }
2467 : :
2468 : : /* Prune PATH, based on the verbosity level, to the most pertinent
2469 : : events for a diagnostic that involves VAR ending in state STATE
2470 : : (for state machine SM).
2471 : :
2472 : : PATH is updated in place, and the redundant checker_events are deleted.
2473 : :
2474 : : As well as deleting events, call record_critical_state on events in
2475 : : which state critical to the pending_diagnostic is being handled; see
2476 : : the comment for diagnostic_manager::prune_for_sm_diagnostic. */
2477 : :
2478 : : void
2479 : 3849 : diagnostic_manager::prune_path (checker_path *path,
2480 : : const state_machine *sm,
2481 : : const svalue *sval,
2482 : : state_machine::state_t state) const
2483 : : {
2484 : 3849 : LOG_FUNC (get_logger ());
2485 : 3849 : path->maybe_log (get_logger (), "path");
2486 : 3849 : prune_for_sm_diagnostic (path, sm, sval, state);
2487 : 3849 : prune_interproc_events (path);
2488 : 3849 : if (! flag_analyzer_show_events_in_system_headers)
2489 : 3847 : prune_system_headers (path);
2490 : 3849 : consolidate_conditions (path);
2491 : 3849 : finish_pruning (path);
2492 : 3849 : path->maybe_log (get_logger (), "pruned");
2493 : 3849 : }
2494 : :
2495 : : /* A cheap test to determine if EXPR can be the expression of interest in
2496 : : an sm-diagnostic, so that we can reject cases where we have a non-lvalue.
2497 : : We don't have always have a model when calling this, so we can't use
2498 : : tentative_region_model_context, so there can be false positives. */
2499 : :
2500 : : static bool
2501 : 0 : can_be_expr_of_interest_p (tree expr)
2502 : : {
2503 : 0 : if (!expr)
2504 : : return false;
2505 : :
2506 : : /* Reject constants. */
2507 : 0 : if (CONSTANT_CLASS_P (expr))
2508 : 0 : return false;
2509 : :
2510 : : /* Otherwise assume that it can be an lvalue. */
2511 : : return true;
2512 : : }
2513 : :
2514 : : /* First pass of diagnostic_manager::prune_path: apply verbosity level,
2515 : : pruning unrelated state change events.
2516 : :
2517 : : Iterate backwards through PATH, skipping state change events that aren't
2518 : : VAR but update the pertinent VAR when state-copying occurs.
2519 : :
2520 : : As well as deleting events, call record_critical_state on events in
2521 : : which state critical to the pending_diagnostic is being handled, so
2522 : : that the event's get_desc vfunc can potentially supply a more precise
2523 : : description of the event to the user.
2524 : : e.g. improving
2525 : : "calling 'foo' from 'bar'"
2526 : : to
2527 : : "passing possibly-NULL pointer 'ptr' to 'foo' from 'bar' as param 1"
2528 : : when the diagnostic relates to later dereferencing 'ptr'. */
2529 : :
2530 : : void
2531 : 3849 : diagnostic_manager::prune_for_sm_diagnostic (checker_path *path,
2532 : : const state_machine *sm,
2533 : : const svalue *sval,
2534 : : state_machine::state_t state) const
2535 : : {
2536 : 3849 : int idx = path->num_events () - 1;
2537 : 108239 : while (idx >= 0 && idx < (signed)path->num_events ())
2538 : : {
2539 : 52195 : checker_event *base_event = path->get_checker_event (idx);
2540 : 52195 : if (get_logger ())
2541 : : {
2542 : 0 : if (sm)
2543 : : {
2544 : 0 : if (sval)
2545 : : {
2546 : 0 : label_text sval_desc = sval->get_desc ();
2547 : 0 : log ("considering event %i (%s), with sval: %qs, state: %qs",
2548 : 0 : idx, event_kind_to_string (base_event->m_kind),
2549 : : sval_desc.get (), state->get_name ());
2550 : 0 : }
2551 : : else
2552 : 0 : log ("considering event %i (%s), with global state: %qs",
2553 : 0 : idx, event_kind_to_string (base_event->m_kind),
2554 : : state->get_name ());
2555 : : }
2556 : : else
2557 : 0 : log ("considering event %i", idx);
2558 : : }
2559 : :
2560 : 52195 : switch (base_event->m_kind)
2561 : : {
2562 : 0 : default:
2563 : 0 : gcc_unreachable ();
2564 : :
2565 : 156 : case EK_DEBUG:
2566 : 156 : if (m_verbosity < 4)
2567 : : {
2568 : 156 : log ("filtering event %i: debug event", idx);
2569 : 156 : path->delete_event (idx);
2570 : : }
2571 : : break;
2572 : :
2573 : : case EK_CUSTOM:
2574 : : /* Don't filter custom events. */
2575 : : break;
2576 : :
2577 : 17588 : case EK_STMT:
2578 : 17588 : {
2579 : 17588 : if (m_verbosity < 4)
2580 : : {
2581 : 17588 : log ("filtering event %i: statement event", idx);
2582 : 17588 : path->delete_event (idx);
2583 : : }
2584 : : }
2585 : : break;
2586 : :
2587 : : case EK_REGION_CREATION:
2588 : : /* Don't filter these. */
2589 : : break;
2590 : :
2591 : 5016 : case EK_FUNCTION_ENTRY:
2592 : 5016 : if (m_verbosity < 1)
2593 : : {
2594 : 33 : log ("filtering event %i: function entry", idx);
2595 : 33 : path->delete_event (idx);
2596 : : }
2597 : : break;
2598 : :
2599 : 4601 : case EK_STATE_CHANGE:
2600 : 4601 : {
2601 : 4601 : state_change_event *state_change = (state_change_event *)base_event;
2602 : 4601 : gcc_assert (state_change->m_dst_state.m_region_model);
2603 : :
2604 : 4601 : if (state_change->m_sval == sval)
2605 : : {
2606 : 2277 : if (state_change->m_origin)
2607 : : {
2608 : 0 : if (get_logger ())
2609 : : {
2610 : 0 : label_text sval_desc = sval->get_desc ();
2611 : 0 : label_text origin_sval_desc
2612 : 0 : = state_change->m_origin->get_desc ();
2613 : 0 : log ("event %i:"
2614 : : " switching var of interest from %qs to %qs",
2615 : : idx, sval_desc.get (),
2616 : : origin_sval_desc.get ());
2617 : 0 : }
2618 : 0 : sval = state_change->m_origin;
2619 : : }
2620 : 2277 : log ("event %i: switching state of interest from %qs to %qs",
2621 : 2277 : idx, state_change->m_to->get_name (),
2622 : 2277 : state_change->m_from->get_name ());
2623 : 2277 : state = state_change->m_from;
2624 : : }
2625 : 2324 : else if (m_verbosity < 4)
2626 : : {
2627 : 2324 : if (get_logger ())
2628 : : {
2629 : 0 : if (state_change->m_sval)
2630 : : {
2631 : 0 : label_text change_sval_desc
2632 : 0 : = state_change->m_sval->get_desc ();
2633 : 0 : if (sval)
2634 : : {
2635 : 0 : label_text sval_desc = sval->get_desc ();
2636 : 0 : log ("filtering event %i:"
2637 : : " state change to %qs unrelated to %qs",
2638 : : idx, change_sval_desc.get (),
2639 : : sval_desc.get ());
2640 : 0 : }
2641 : : else
2642 : 0 : log ("filtering event %i: state change to %qs",
2643 : : idx, change_sval_desc.get ());
2644 : 0 : }
2645 : : else
2646 : 0 : log ("filtering event %i: global state change", idx);
2647 : : }
2648 : 2324 : path->delete_event (idx);
2649 : : }
2650 : : }
2651 : : break;
2652 : :
2653 : 10519 : case EK_START_CFG_EDGE:
2654 : 10519 : {
2655 : 10519 : cfg_edge_event *event = (cfg_edge_event *)base_event;
2656 : :
2657 : : /* TODO: is this edge significant to var?
2658 : : See if var can be in other states in the dest, but not
2659 : : in other states in the src?
2660 : : Must have multiple sibling edges. */
2661 : :
2662 : 10519 : if (event->should_filter_p (m_verbosity))
2663 : : {
2664 : 7960 : log ("filtering events %i and %i: CFG edge", idx, idx + 1);
2665 : 7960 : path->delete_event (idx);
2666 : : /* Also delete the corresponding EK_END_CFG_EDGE. */
2667 : 7960 : gcc_assert (path->get_checker_event (idx)->m_kind
2668 : : == EK_END_CFG_EDGE);
2669 : 7960 : path->delete_event (idx);
2670 : : }
2671 : : }
2672 : : break;
2673 : :
2674 : : case EK_END_CFG_EDGE:
2675 : : /* These come in pairs with EK_START_CFG_EDGE events and are
2676 : : filtered when their start event is filtered. */
2677 : : break;
2678 : :
2679 : 1153 : case EK_CALL_EDGE:
2680 : 1153 : {
2681 : 1153 : call_event *event = (call_event *)base_event;
2682 : 1153 : const region_model *callee_model
2683 : 1153 : = event->m_eedge.m_dest->get_state ().m_region_model;
2684 : 1153 : const region_model *caller_model
2685 : 1153 : = event->m_eedge.m_src->get_state ().m_region_model;
2686 : 1153 : tree callee_var = callee_model->get_representative_tree (sval);
2687 : 1153 : callsite_expr expr;
2688 : :
2689 : 1153 : tree caller_var;
2690 : 1153 : if(event->m_sedge)
2691 : : {
2692 : 1120 : const callgraph_superedge& cg_superedge
2693 : 1120 : = event->get_callgraph_superedge ();
2694 : 1120 : if (cg_superedge.m_cedge)
2695 : 1120 : caller_var
2696 : 1120 : = cg_superedge.map_expr_from_callee_to_caller (callee_var,
2697 : : &expr);
2698 : : else
2699 : 0 : caller_var = caller_model->get_representative_tree (sval);
2700 : : }
2701 : : else
2702 : 33 : caller_var = caller_model->get_representative_tree (sval);
2703 : :
2704 : 1153 : if (caller_var)
2705 : : {
2706 : 231 : if (get_logger ())
2707 : : {
2708 : 0 : label_text sval_desc = sval->get_desc ();
2709 : 0 : log ("event %i:"
2710 : : " recording critical state for %qs at call"
2711 : : " from %qE in callee to %qE in caller",
2712 : : idx, sval_desc.get (), callee_var, caller_var);
2713 : 0 : }
2714 : 231 : if (expr.param_p ())
2715 : 198 : event->record_critical_state (caller_var, state);
2716 : : }
2717 : : }
2718 : 1153 : break;
2719 : :
2720 : 638 : case EK_RETURN_EDGE:
2721 : 638 : {
2722 : 638 : if (sval)
2723 : : {
2724 : 470 : return_event *event = (return_event *)base_event;
2725 : 470 : const region_model *caller_model
2726 : 470 : = event->m_eedge.m_dest->get_state ().m_region_model;
2727 : 470 : tree caller_var = caller_model->get_representative_tree (sval);
2728 : 470 : const region_model *callee_model
2729 : 470 : = event->m_eedge.m_src->get_state ().m_region_model;
2730 : 470 : callsite_expr expr;
2731 : :
2732 : 470 : tree callee_var;
2733 : 470 : if (event->m_sedge)
2734 : : {
2735 : 452 : const callgraph_superedge& cg_superedge
2736 : 452 : = event->get_callgraph_superedge ();
2737 : 452 : if (cg_superedge.m_cedge)
2738 : 452 : callee_var
2739 : 452 : = cg_superedge.map_expr_from_caller_to_callee (caller_var,
2740 : : &expr);
2741 : : else
2742 : 0 : callee_var = callee_model->get_representative_tree (sval);
2743 : : }
2744 : : else
2745 : 18 : callee_var = callee_model->get_representative_tree (sval);
2746 : :
2747 : 470 : if (callee_var)
2748 : : {
2749 : 160 : if (get_logger ())
2750 : : {
2751 : 0 : label_text sval_desc = sval->get_desc ();
2752 : 0 : log ("event %i:"
2753 : : " recording critical state for %qs at return"
2754 : : " from %qE in caller to %qE in callee",
2755 : : idx, sval_desc.get (), callee_var, callee_var);
2756 : 0 : }
2757 : 160 : if (expr.return_value_p ())
2758 : 63 : event->record_critical_state (callee_var, state);
2759 : : }
2760 : : }
2761 : : }
2762 : : break;
2763 : :
2764 : : case EK_INLINED_CALL:
2765 : : /* We don't expect to see these yet, as they're added later.
2766 : : We'd want to keep them around. */
2767 : : break;
2768 : :
2769 : : case EK_SETJMP:
2770 : : /* TODO: only show setjmp_events that matter i.e. those for which
2771 : : there is a later rewind event using them. */
2772 : : case EK_REWIND_FROM_LONGJMP:
2773 : : case EK_REWIND_TO_SETJMP:
2774 : : break;
2775 : :
2776 : : case EK_WARNING:
2777 : : /* Always show the final "warning" event in the path. */
2778 : : break;
2779 : : }
2780 : 52195 : idx--;
2781 : : }
2782 : 3849 : }
2783 : :
2784 : : /* Subroutine of diagnostic_manager::prune_for_sm_diagnostic.
2785 : : If *EXPR is not suitable to be the expression of interest in
2786 : : an sm-diagnostic, set *EXPR to NULL and log. */
2787 : :
2788 : : void
2789 : 0 : diagnostic_manager::update_for_unsuitable_sm_exprs (tree *expr) const
2790 : : {
2791 : 0 : gcc_assert (expr);
2792 : 0 : if (*expr && !can_be_expr_of_interest_p (*expr))
2793 : : {
2794 : 0 : log ("new var %qE is unsuitable; setting var to NULL", *expr);
2795 : 0 : *expr = NULL_TREE;
2796 : : }
2797 : 0 : }
2798 : :
2799 : : /* Second pass of diagnostic_manager::prune_path: remove redundant
2800 : : interprocedural information.
2801 : :
2802 : : For example, given:
2803 : : (1)- calling "f2" from "f1"
2804 : : (2)--- entry to "f2"
2805 : : (3)--- calling "f3" from "f2"
2806 : : (4)----- entry to "f3"
2807 : : (5)--- returning to "f2" to "f3"
2808 : : (6)- returning to "f1" to "f2"
2809 : : with no other intervening events, then none of these events are
2810 : : likely to be interesting to the user.
2811 : :
2812 : : Prune [..., call, function-entry, return, ...] triples repeatedly
2813 : : until nothing has changed. For the example above, this would
2814 : : remove events (3, 4, 5), and then remove events (1, 2, 6). */
2815 : :
2816 : : void
2817 : 3849 : diagnostic_manager::prune_interproc_events (checker_path *path) const
2818 : : {
2819 : 3849 : bool changed = false;
2820 : 4074 : do
2821 : : {
2822 : 4074 : changed = false;
2823 : 4074 : int idx = (signed)path->num_events () - 1;
2824 : 22053 : while (idx >= 0)
2825 : : {
2826 : : /* Prune [..., call, function-entry, return, ...] triples. */
2827 : 17979 : if (idx + 2 < (signed)path->num_events ()
2828 : 10071 : && path->get_checker_event (idx)->is_call_p ()
2829 : 948 : && path->get_checker_event (idx + 1)->is_function_entry_p ()
2830 : 18919 : && path->get_checker_event (idx + 2)->is_return_p ())
2831 : : {
2832 : 278 : if (get_logger ())
2833 : : {
2834 : 0 : label_text desc
2835 : 0 : (path->get_checker_event (idx)->get_desc
2836 : 0 : (*global_dc->get_reference_printer ()));
2837 : 0 : log ("filtering events %i-%i:"
2838 : : " irrelevant call/entry/return: %s",
2839 : : idx, idx + 2, desc.get ());
2840 : 0 : }
2841 : 278 : path->delete_event (idx + 2);
2842 : 278 : path->delete_event (idx + 1);
2843 : 278 : path->delete_event (idx);
2844 : 278 : changed = true;
2845 : 278 : idx--;
2846 : 278 : continue;
2847 : 278 : }
2848 : :
2849 : : /* Prune [..., call, return, ...] pairs
2850 : : (for -fanalyzer-verbosity=0). */
2851 : 17701 : if (idx + 1 < (signed)path->num_events ()
2852 : 13488 : && path->get_checker_event (idx)->is_call_p ()
2853 : 18705 : && path->get_checker_event (idx + 1)->is_return_p ())
2854 : : {
2855 : 4 : if (get_logger ())
2856 : : {
2857 : 0 : label_text desc
2858 : 0 : (path->get_checker_event (idx)->get_desc
2859 : 0 : (*global_dc->get_reference_printer ()));
2860 : 0 : log ("filtering events %i-%i:"
2861 : : " irrelevant call/return: %s",
2862 : : idx, idx + 1, desc.get ());
2863 : 0 : }
2864 : 4 : path->delete_event (idx + 1);
2865 : 4 : path->delete_event (idx);
2866 : 4 : changed = true;
2867 : 4 : idx--;
2868 : 4 : continue;
2869 : 4 : }
2870 : :
2871 : 17697 : idx--;
2872 : : }
2873 : :
2874 : : }
2875 : : while (changed);
2876 : 3849 : }
2877 : :
2878 : : /* Remove everything within [call point, IDX]. For consistency,
2879 : : IDX should represent the return event of the frame to delete,
2880 : : or if there is none it should be the last event of the frame.
2881 : : After this function, IDX designates the event prior to calling
2882 : : this frame. */
2883 : :
2884 : : static void
2885 : 4 : prune_frame (checker_path *path, int &idx)
2886 : : {
2887 : 4 : gcc_assert (idx >= 0);
2888 : 4 : int nesting = 1;
2889 : 4 : if (path->get_checker_event (idx)->is_return_p ())
2890 : 4 : nesting = 0;
2891 : 28 : do
2892 : : {
2893 : 28 : if (path->get_checker_event (idx)->is_call_p ())
2894 : 8 : nesting--;
2895 : 20 : else if (path->get_checker_event (idx)->is_return_p ())
2896 : 8 : nesting++;
2897 : :
2898 : 28 : path->delete_event (idx--);
2899 : 28 : } while (idx >= 0 && nesting != 0);
2900 : 4 : }
2901 : :
2902 : : /* This function is called when fanalyzer-show-events-in-system-headers
2903 : : is disabled and will prune the diagnostic of all events within a
2904 : : system header, only keeping the entry and exit events to the header.
2905 : : This should be called after diagnostic_manager::prune_interproc_events
2906 : : so that sucessive events [system header call, system header return]
2907 : : are preserved thereafter.
2908 : :
2909 : : Given a diagnostics path diving into a system header in the form
2910 : : [
2911 : : prefix events...,
2912 : : system header call,
2913 : : system header entry,
2914 : : events within system headers...,
2915 : : system header return,
2916 : : suffix events...
2917 : : ]
2918 : :
2919 : : then transforms it into
2920 : : [
2921 : : prefix events...,
2922 : : system header call,
2923 : : system header return,
2924 : : suffix events...
2925 : : ]. */
2926 : :
2927 : : void
2928 : 3847 : diagnostic_manager::prune_system_headers (checker_path *path) const
2929 : : {
2930 : 3847 : int idx = (signed)path->num_events () - 1;
2931 : 19129 : while (idx >= 0)
2932 : : {
2933 : 15282 : const checker_event *event = path->get_checker_event (idx);
2934 : : /* Prune everything between
2935 : : [..., system entry, (...), system return, ...]. */
2936 : 15282 : if (event->is_return_p ()
2937 : 15282 : && in_system_header_at (event->get_location ()))
2938 : : {
2939 : 4 : int ret_idx = idx;
2940 : 4 : prune_frame (path, idx);
2941 : :
2942 : 4 : if (get_logger ())
2943 : : {
2944 : 0 : log ("filtering system headers events %i-%i:",
2945 : : idx, ret_idx);
2946 : : }
2947 : : // Delete function entry within system headers.
2948 : 4 : if (idx >= 0)
2949 : : {
2950 : 4 : event = path->get_checker_event (idx);
2951 : 4 : if (event->is_function_entry_p ()
2952 : 4 : && in_system_header_at (event->get_location ()))
2953 : : {
2954 : 4 : if (get_logger ())
2955 : : {
2956 : 0 : label_text desc
2957 : 0 : (event->get_desc (*global_dc->get_reference_printer ()));
2958 : 0 : log ("filtering event %i:"
2959 : : "system header entry event: %s",
2960 : : idx, desc.get ());
2961 : 0 : }
2962 : :
2963 : 4 : path->delete_event (idx);
2964 : : }
2965 : : }
2966 : : }
2967 : :
2968 : 15282 : idx--;
2969 : : }
2970 : 3847 : }
2971 : :
2972 : : /* Return true iff event IDX within PATH is on the same line as REF_EXP_LOC. */
2973 : :
2974 : : static bool
2975 : 2614 : same_line_as_p (const expanded_location &ref_exp_loc,
2976 : : checker_path *path, unsigned idx)
2977 : : {
2978 : 2614 : const checker_event *ev = path->get_checker_event (idx);
2979 : 2614 : expanded_location idx_exp_loc = expand_location (ev->get_location ());
2980 : 2614 : gcc_assert (ref_exp_loc.file);
2981 : 2614 : if (idx_exp_loc.file == NULL)
2982 : : return false;
2983 : 2594 : if (strcmp (ref_exp_loc.file, idx_exp_loc.file))
2984 : : return false;
2985 : 2594 : return ref_exp_loc.line == idx_exp_loc.line;
2986 : : }
2987 : :
2988 : : /* This path-readability optimization reduces the verbosity of compound
2989 : : conditional statements (without needing to reconstruct the AST, which
2990 : : has already been lost).
2991 : :
2992 : : For example, it converts:
2993 : :
2994 : : | 61 | if (cp[0] != '\0' && cp[0] != '#')
2995 : : | | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2996 : : | | | | |
2997 : : | | | | (6) ...to here
2998 : : | | | (7) following ‘true’ branch...
2999 : : | | (5) following ‘true’ branch...
3000 : : | 62 | {
3001 : : | 63 | alias = cp++;
3002 : : | | ~~~~
3003 : : | | |
3004 : : | | (8) ...to here
3005 : :
3006 : : into:
3007 : :
3008 : : | 61 | if (cp[0] != '\0' && cp[0] != '#')
3009 : : | | ~
3010 : : | | |
3011 : : | | (5) following ‘true’ branch...
3012 : : | 62 | {
3013 : : | 63 | alias = cp++;
3014 : : | | ~~~~
3015 : : | | |
3016 : : | | (6) ...to here
3017 : :
3018 : : by combining events 5-8 into new events 5-6.
3019 : :
3020 : : Find runs of consecutive (start_cfg_edge_event, end_cfg_edge_event) pairs
3021 : : in which all events apart from the final end_cfg_edge_event are on the same
3022 : : line, and for which either all the CFG edges are TRUE edges, or all are
3023 : : FALSE edges.
3024 : :
3025 : : Consolidate each such run into a
3026 : : (start_consolidated_cfg_edges_event, end_consolidated_cfg_edges_event)
3027 : : pair. */
3028 : :
3029 : : void
3030 : 3849 : diagnostic_manager::consolidate_conditions (checker_path *path) const
3031 : : {
3032 : : /* Don't simplify edges if we're debugging them. */
3033 : 3849 : if (flag_analyzer_verbose_edges)
3034 : : return;
3035 : :
3036 : 11312 : for (int start_idx = 0;
3037 : 30322 : start_idx < (signed)path->num_events () - 1;
3038 : : start_idx++)
3039 : : {
3040 : 11312 : if (path->cfg_edge_pair_at_p (start_idx))
3041 : : {
3042 : 2489 : const checker_event *old_start_ev
3043 : 2489 : = path->get_checker_event (start_idx);
3044 : 2489 : expanded_location start_exp_loc
3045 : 2489 : = expand_location (old_start_ev->get_location ());
3046 : 2489 : if (start_exp_loc.file == NULL)
3047 : 2232 : continue;
3048 : 2488 : if (!same_line_as_p (start_exp_loc, path, start_idx + 1))
3049 : 2231 : continue;
3050 : :
3051 : : /* Are we looking for a run of all TRUE edges, or all FALSE edges? */
3052 : 257 : gcc_assert (old_start_ev->m_kind == EK_START_CFG_EDGE);
3053 : 257 : const start_cfg_edge_event *old_start_cfg_ev
3054 : : = (const start_cfg_edge_event *)old_start_ev;
3055 : 257 : const cfg_superedge& first_cfg_sedge
3056 : 257 : = old_start_cfg_ev->get_cfg_superedge ();
3057 : 257 : bool edge_sense;
3058 : 257 : if (first_cfg_sedge.true_value_p ())
3059 : : edge_sense = true;
3060 : 65 : else if (first_cfg_sedge.false_value_p ())
3061 : : edge_sense = false;
3062 : : else
3063 : 0 : continue;
3064 : :
3065 : : /* Find a run of CFG start/end event pairs from
3066 : : [start_idx, next_idx)
3067 : : where all apart from the final event are on the same line,
3068 : : and all are either TRUE or FALSE edges, matching the initial. */
3069 : 257 : int next_idx = start_idx + 2;
3070 : 257 : while (path->cfg_edge_pair_at_p (next_idx)
3071 : 327 : && same_line_as_p (start_exp_loc, path, next_idx))
3072 : : {
3073 : 81 : const checker_event *iter_ev
3074 : 81 : = path->get_checker_event (next_idx);
3075 : 81 : gcc_assert (iter_ev->m_kind == EK_START_CFG_EDGE);
3076 : 81 : const start_cfg_edge_event *iter_cfg_ev
3077 : : = (const start_cfg_edge_event *)iter_ev;
3078 : 81 : const cfg_superedge& iter_cfg_sedge
3079 : 81 : = iter_cfg_ev->get_cfg_superedge ();
3080 : 81 : if (edge_sense)
3081 : : {
3082 : 46 : if (!iter_cfg_sedge.true_value_p ())
3083 : : break;
3084 : : }
3085 : : else
3086 : : {
3087 : 35 : if (!iter_cfg_sedge.false_value_p ())
3088 : : break;
3089 : : }
3090 : 70 : next_idx += 2;
3091 : : }
3092 : :
3093 : : /* If we have more than one pair in the run, consolidate. */
3094 : 257 : if (next_idx > start_idx + 2)
3095 : : {
3096 : 67 : const checker_event *old_end_ev
3097 : 67 : = path->get_checker_event (next_idx - 1);
3098 : 67 : log ("consolidating CFG edge events %i-%i into %i-%i",
3099 : : start_idx, next_idx - 1, start_idx, start_idx +1);
3100 : 67 : start_consolidated_cfg_edges_event *new_start_ev
3101 : : = new start_consolidated_cfg_edges_event
3102 : 67 : (event_loc_info (old_start_ev->get_location (),
3103 : : old_start_ev->get_fndecl (),
3104 : 67 : old_start_ev->get_stack_depth ()),
3105 : 67 : edge_sense);
3106 : 67 : checker_event *new_end_ev
3107 : : = new end_consolidated_cfg_edges_event
3108 : 67 : (event_loc_info (old_end_ev->get_location (),
3109 : : old_end_ev->get_fndecl (),
3110 : 67 : old_end_ev->get_stack_depth ()));
3111 : 67 : path->replace_event (start_idx, new_start_ev);
3112 : 67 : path->replace_event (start_idx + 1, new_end_ev);
3113 : 67 : path->delete_events (start_idx + 2, next_idx - (start_idx + 2));
3114 : : }
3115 : : }
3116 : : }
3117 : : }
3118 : :
3119 : : /* Final pass of diagnostic_manager::prune_path.
3120 : :
3121 : : If all we're left with is in one function, then filter function entry
3122 : : events. */
3123 : :
3124 : : void
3125 : 3849 : diagnostic_manager::finish_pruning (checker_path *path) const
3126 : : {
3127 : 3849 : if (!path->interprocedural_p ())
3128 : : {
3129 : 3099 : int idx = path->num_events () - 1;
3130 : 23565 : while (idx >= 0 && idx < (signed)path->num_events ())
3131 : : {
3132 : 10233 : checker_event *base_event = path->get_checker_event (idx);
3133 : 10233 : if (base_event->m_kind == EK_FUNCTION_ENTRY)
3134 : : {
3135 : 3094 : log ("filtering event %i:"
3136 : : " function entry for purely intraprocedural path", idx);
3137 : 3094 : path->delete_event (idx);
3138 : : }
3139 : 10233 : idx--;
3140 : : }
3141 : : }
3142 : 3849 : }
3143 : :
3144 : : } // namespace ana
3145 : :
3146 : : #endif /* #if ENABLE_ANALYZER */
|