1 /* Finding reachable regions and values.
2 Copyright (C) 2020-2022 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
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)
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.
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/>. */
23 #include "coretypes.h"
26 #include "basic-block.h"
28 #include "gimple-iterator.h"
29 #include "diagnostic-core.h"
34 #include "stringpool.h"
37 #include "fold-const.h"
38 #include "tree-pretty-print.h"
43 #include "analyzer/analyzer.h"
44 #include "analyzer/analyzer-logging.h"
45 #include "ordered-hash-map.h"
51 #include "analyzer/call-string.h"
52 #include "analyzer/program-point.h"
53 #include "analyzer/store.h"
54 #include "analyzer/region-model.h"
55 #include "analyzer/region-model-reachability.h"
61 reachable_regions::reachable_regions (region_model
*model
)
62 : m_model (model
), m_store (model
->get_store ()),
63 m_reachable_base_regs (), m_mutable_base_regs ()
67 /* Callback called for each cluster when initializing this object. */
70 reachable_regions::init_cluster_cb (const region
*base_reg
,
71 reachable_regions
*this_ptr
)
73 this_ptr
->init_cluster (base_reg
);
76 /* Called for each cluster when initializing this object. */
78 reachable_regions::init_cluster (const region
*base_reg
)
80 /* Mark any globals as mutable (and traverse what they point to). */
81 const region
*parent
= base_reg
->get_parent_region ();
83 if (parent
->get_kind () == RK_GLOBALS
)
86 /* Mark any clusters that already escaped in previous unknown calls
87 as mutable (and traverse what they currently point to). */
88 if (m_store
->escaped_p (base_reg
))
91 if (const symbolic_region
*sym_reg
= base_reg
->dyn_cast_symbolic_region ())
93 const svalue
*ptr
= sym_reg
->get_pointer ();
94 if (ptr
->implicitly_live_p (NULL
, m_model
))
96 switch (ptr
->get_kind ())
102 /* If BASE_REG is *INIT_VAL(REG) for some other REG, see if REG is
103 unbound and untouched. If so, then add BASE_REG as a root. */
104 const initial_svalue
*init_sval
105 = as_a
<const initial_svalue
*> (ptr
);
106 const region
*init_sval_reg
= init_sval
->get_region ();
107 const region
*other_base_reg
= init_sval_reg
->get_base_region ();
108 const binding_cluster
*other_cluster
109 = m_store
->get_cluster (other_base_reg
);
110 if (other_cluster
== NULL
111 || !other_cluster
->touched_p ())
112 add (base_reg
, true);
119 /* If this cluster is due to dereferencing an unknown/conjured
120 pointer, any values written through the pointer could still
122 add (base_reg
, true);
129 /* Lazily mark the cluster containing REG as being reachable, recursively
130 adding clusters reachable from REG's cluster. */
132 reachable_regions::add (const region
*reg
, bool is_mutable
)
136 const region
*base_reg
= const_cast <region
*> (reg
->get_base_region ());
137 gcc_assert (base_reg
);
139 /* Bail out if this cluster is already in the sets at the IS_MUTABLE
140 level of mutability. */
141 if (!is_mutable
&& m_reachable_base_regs
.contains (base_reg
))
143 m_reachable_base_regs
.add (base_reg
);
147 if (m_mutable_base_regs
.contains (base_reg
))
150 m_mutable_base_regs
.add (base_reg
);
153 /* Add values within the cluster. If any are pointers, add the pointee. */
154 if (binding_cluster
*bind_cluster
= m_store
->get_cluster (base_reg
))
155 bind_cluster
->for_each_value (handle_sval_cb
, this);
157 handle_sval (m_model
->get_store_value (reg
, NULL
));
161 reachable_regions::handle_sval_cb (const svalue
*sval
,
162 reachable_regions
*this_ptr
)
164 this_ptr
->handle_sval (sval
);
167 /* Add SVAL. If it is a pointer, add the pointed-to region. */
170 reachable_regions::handle_sval (const svalue
*sval
)
172 m_reachable_svals
.add (sval
);
173 m_mutable_svals
.add (sval
);
174 if (const region_svalue
*ptr
= sval
->dyn_cast_region_svalue ())
176 const region
*pointee
= ptr
->get_pointee ();
177 /* Use const-ness of pointer type to affect mutability. */
178 bool ptr_is_mutable
= true;
180 && TREE_CODE (ptr
->get_type ()) == POINTER_TYPE
181 && TYPE_READONLY (TREE_TYPE (ptr
->get_type ())))
183 ptr_is_mutable
= false;
187 m_mutable_svals
.add (sval
);
189 add (pointee
, ptr_is_mutable
);
191 /* Treat all svalues within a compound_svalue as reachable. */
192 if (const compound_svalue
*compound_sval
193 = sval
->dyn_cast_compound_svalue ())
195 for (compound_svalue::iterator_t iter
= compound_sval
->begin ();
196 iter
!= compound_sval
->end (); ++iter
)
198 const svalue
*iter_sval
= (*iter
).second
;
199 handle_sval (iter_sval
);
202 if (const svalue
*cast
= sval
->maybe_undo_cast ())
205 /* If SVAL is the result of a reversible operation, then the operands
207 switch (sval
->get_kind ())
213 const unaryop_svalue
*unaryop_sval
= (const unaryop_svalue
*)sval
;
214 switch (unaryop_sval
->get_op ())
219 handle_sval (unaryop_sval
->get_arg ());
226 const binop_svalue
*binop_sval
= (const binop_svalue
*)sval
;
227 switch (binop_sval
->get_op ())
231 case POINTER_PLUS_EXPR
:
232 handle_sval (binop_sval
->get_arg0 ());
233 handle_sval (binop_sval
->get_arg1 ());
240 /* Add SVAL. If it is a pointer, add the pointed-to region.
241 Use PARAM_TYPE for determining mutability. */
244 reachable_regions::handle_parm (const svalue
*sval
, tree param_type
)
246 bool is_mutable
= true;
248 && TREE_CODE (param_type
) == POINTER_TYPE
249 && TYPE_READONLY (TREE_TYPE (param_type
)))
252 m_mutable_svals
.add (sval
);
254 m_reachable_svals
.add (sval
);
255 if (const region
*base_reg
= sval
->maybe_get_deref_base_region ())
256 add (base_reg
, is_mutable
);
257 /* Treat all svalues within a compound_svalue as reachable. */
258 if (const compound_svalue
*compound_sval
259 = sval
->dyn_cast_compound_svalue ())
261 for (compound_svalue::iterator_t iter
= compound_sval
->begin ();
262 iter
!= compound_sval
->end (); ++iter
)
264 const svalue
*iter_sval
= (*iter
).second
;
265 handle_sval (iter_sval
);
268 if (const svalue
*cast
= sval
->maybe_undo_cast ())
272 /* Update the store to mark the clusters that were found to be mutable
274 Notify CTXT about escaping function_decls. */
277 reachable_regions::mark_escaped_clusters (region_model_context
*ctxt
)
279 auto_vec
<const function_region
*> escaped_fn_regs
280 (m_mutable_base_regs
.elements ());
281 for (hash_set
<const region
*>::iterator iter
= m_mutable_base_regs
.begin ();
282 iter
!= m_mutable_base_regs
.end (); ++iter
)
284 const region
*base_reg
= *iter
;
285 m_store
->mark_as_escaped (base_reg
);
287 /* If we have a function that's escaped, potentially add
288 it to the worklist. */
289 if (const function_region
*fn_reg
= base_reg
->dyn_cast_function_region ())
290 escaped_fn_regs
.quick_push (fn_reg
);
294 /* Sort to ensure deterministic results. */
295 escaped_fn_regs
.qsort (region::cmp_ptr_ptr
);
297 const function_region
*fn_reg
;
298 FOR_EACH_VEC_ELT (escaped_fn_regs
, i
, fn_reg
)
299 ctxt
->on_escaped_function (fn_reg
->get_fndecl ());
303 /* Dump SET to PP, sorting it to avoid churn when comparing dumps. */
305 template <typename T
>
307 dump_set (const hash_set
<const T
*> &set
, pretty_printer
*pp
)
309 auto_vec
<const T
*> elements (set
.elements ());
310 for (typename hash_set
<const T
*>::iterator iter
= set
.begin ();
311 iter
!= set
.end (); ++iter
)
312 elements
.quick_push (*iter
);
314 elements
.qsort (T::cmp_ptr_ptr
);
318 FOR_EACH_VEC_ELT (elements
, i
, element
)
321 element
->dump_to_pp (pp
, true);
326 /* Dump a multiline representation of this object to PP. */
329 reachable_regions::dump_to_pp (pretty_printer
*pp
) const
331 pp_string (pp
, "reachable clusters: ");
333 dump_set (m_reachable_base_regs
, pp
);
335 pp_string (pp
, "mutable clusters: ");
337 dump_set (m_mutable_base_regs
, pp
);
339 pp_string (pp
, "reachable svals: ");
341 dump_set (m_reachable_svals
, pp
);
343 pp_string (pp
, "mutable svals: ");
345 dump_set (m_mutable_svals
, pp
);
348 /* Dump a multiline representation of this object to stderr. */
351 reachable_regions::dump () const
354 pp_format_decoder (&pp
) = default_tree_printer
;
355 pp_show_color (&pp
) = pp_show_color (global_dc
->printer
);
356 pp
.buffer
->stream
= stderr
;
363 #endif /* #if ENABLE_ANALYZER */