GCC Middle and Back End API Reference
region-model-manager.h
Go to the documentation of this file.
1/* Consolidation of svalues and regions.
2 Copyright (C) 2020-2026 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it
8under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3, or (at your option)
10any later version.
11
12GCC is distributed in the hope that it will be useful, but
13WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_ANALYZER_REGION_MODEL_MANAGER_H
22#define GCC_ANALYZER_REGION_MODEL_MANAGER_H
23
24namespace ana {
25
26/* A class responsible for owning and consolidating region and svalue
27 instances.
28 region and svalue instances are immutable as far as clients are
29 concerned, so they are provided as "const" ptrs. */
30
32{
33public:
36
37 unsigned get_num_symbols () const { return m_next_symbol_id; }
38 unsigned alloc_symbol_id () { return m_next_symbol_id++; }
39
40 /* call_string consolidation. */
42 {
44 }
45
46 /* svalue consolidation. */
50 const svalue *get_or_create_null_ptr (tree pointer_type);
53 tree type);
55 tree type);
57 bool check_poisoned = true);
58 const svalue *get_ptr_svalue (tree ptr_type, const region *pointee);
60 const svalue *arg);
63 enum tree_code op,
64 const svalue *arg0, const svalue *arg1);
66 const svalue *parent_svalue,
67 const region *subregion);
69 const svalue *outer_size,
70 const svalue *inner_svalue);
72 const bit_range &bits,
73 const svalue *inner_svalue);
76 const supernode *snode,
77 const svalue *base_svalue,
78 const svalue *iter_svalue);
80 const binding_map &map);
82 const region *id_reg,
83 const conjured_purge &p,
84 unsigned idx = 0);
85 const svalue *
87 const gasm *asm_stmt,
88 unsigned output_idx,
89 const vec<const svalue *> &inputs);
90 const svalue *
92 const char *asm_string,
93 unsigned output_idx,
94 unsigned num_outputs,
95 const vec<const svalue *> &inputs);
96 const svalue *
98 tree fndecl,
99 const vec<const svalue *> &inputs);
100
102 tree byte_offset_cst);
104 tree byte_offset_cst);
106 tree byte_offset_cst);
107
108 /* Dynamically-allocated svalue instances.
109 The number of these within the analysis can grow arbitrarily.
110 They are still owned by the manager. */
112
113 /* region consolidation. */
114 const root_region *get_root_region () const { return &m_root_region; }
115 const stack_region * get_stack_region () const { return &m_stack_region; }
116 const heap_region *get_heap_region () const { return &m_heap_region; }
117 const code_region *get_code_region () const { return &m_code_region; }
119 {
120 return &m_globals_region;
121 }
122 const errno_region *get_errno_region () const { return &m_errno_region; }
126 const region *get_field_region (const region *parent, tree field);
127 const region *get_element_region (const region *parent,
128 tree element_type,
129 const svalue *index);
130 const region *get_offset_region (const region *parent,
131 tree type,
132 const svalue *byte_offset);
133 const region *get_sized_region (const region *parent,
134 tree type,
135 const svalue *byte_size_sval);
136 const region *get_cast_region (const region *original_region,
137 tree type);
138 const frame_region *get_frame_region (const frame_region *calling_frame,
139 const function &fun);
140 const region *get_symbolic_region (const svalue *sval);
142 const region *get_bit_range (const region *parent, tree type,
143 const bit_range &bits);
145 unsigned idx);
146
148
149 const region *
151 tree t,
152 const dump_location_t &loc);
153
156
161
162 /* Dynamically-allocated region instances.
163 The number of these within the analysis can grow arbitrarily.
164 They are still owned by the manager. */
165 const region *
168
169 void log_stats (logger *logger, bool show_objs) const;
170
173
174 logger *get_logger () const { return m_logger; }
175
177
179 const svalue *arg0, const svalue *arg1);
180private:
181 bool too_complex_p (const complexity &c) const;
183
184 const svalue *
186 const binop_svalue *binop);
188 const svalue *arg);
190 const svalue *parent_svalue,
191 const region *subregion);
193 const svalue *outer_size,
194 const svalue *inner_svalue);
196 const bit_range &bits,
197 const svalue *inner_svalue);
199 const compound_svalue *compound_sval,
200 tree cst, const svalue *arg1);
202 const vec<const svalue *> &inputs);
203
205
207
209
213
214 /* svalue consolidation. */
217
221
225
229
232
235
239
242
245
249
253
254 typedef hash_map<const svalue *,
257
259 widening_svalue */*,
260 widening_svalue::key_t::hash_map_traits*/>
263
267
271
275
279
281
282 /* "Dynamically-allocated" svalue instances.
283 The number of these within the analysis can grow arbitrarily.
284 They are still owned by the manager. */
286
287 /* Maximum complexity of svalues that weren't rejected. */
289
290 /* region consolidation. */
291
294 typedef fndecls_map_t::iterator fndecls_iterator_t;
296
298 typedef labels_map_t::iterator labels_iterator_t;
300
303 typedef globals_map_t::iterator globals_iterator_t;
305
308
316
319
322
324
326
328
329 /* "Dynamically-allocated" region instances.
330 The number of these within the analysis can grow arbitrarily.
331 They are still owned by the manager. */
333};
334
335} // namespace ana
336
337#endif /* GCC_ANALYZER_REGION_MODEL_MANAGER_H */
Definition svalue.h:1656
Definition store.h:524
Definition svalue.h:814
Definition svalue.h:1100
Definition constraint-manager.h:178
Definition call-string.h:41
Definition region.h:453
Definition svalue.h:1419
Definition svalue.h:1523
Definition svalue.h:1554
Definition svalue.h:1802
Definition region.h:742
Definition region.h:1488
Definition region.h:319
Definition region.h:481
Definition region.h:425
Definition region.h:583
Definition known-function-manager.h:41
Definition region.h:520
Definition analyzer-logging.h:34
Definition svalue.h:466
Definition region-model.h:746
hash_map< compound_svalue::key_t, compound_svalue * > compound_values_map_t
Definition region-model-manager.h:265
hash_map< conjured_svalue::key_t, conjured_svalue * > conjured_values_map_t
Definition region-model-manager.h:269
hash_map< tree, function_region * > fndecls_map_t
Definition region-model-manager.h:293
hash_map< const_fn_result_svalue::key_t, const_fn_result_svalue * > const_fn_result_values_map_t
Definition region-model-manager.h:277
initial_values_map_t m_initial_values_map
Definition region-model-manager.h:231
known_function_manager m_known_fn_mgr
Definition region-model-manager.h:327
const function_region * get_region_for_fndecl(tree fndecl)
const svalue * get_or_create_cast(tree type, const svalue *arg)
asm_output_values_map_t m_asm_output_values_map
Definition region-model-manager.h:274
hash_map< const region *, initial_svalue * > initial_values_map_t
Definition region-model-manager.h:230
hash_map< poisoned_svalue::key_t, poisoned_svalue * > poisoned_values_map_t
Definition region-model-manager.h:223
bool reject_if_too_complex(svalue *sval)
globals_map_t::iterator globals_iterator_t
Definition region-model-manager.h:303
const region * get_field_region(const region *parent, tree field)
consolidation_map< offset_region > m_offset_regions
Definition region-model-manager.h:311
const svalue * maybe_fold_unaryop(tree type, enum tree_code op, const svalue *arg)
errno_region m_errno_region
Definition region-model-manager.h:307
const svalue * get_or_create_int_cst(tree type, const poly_wide_int_ref &cst)
const code_region * get_code_region() const
Definition region-model-manager.h:117
consolidation_map< var_arg_region > m_var_arg_regions
Definition region-model-manager.h:321
const svalue * get_or_create_bits_within(tree type, const bit_range &bits, const svalue *inner_svalue)
auto_delete_vec< svalue > m_managed_dynamic_svalues
Definition region-model-manager.h:285
const svalue * create_unique_svalue(tree type)
const svalue * maybe_fold_bits_within_svalue(tree type, const bit_range &bits, const svalue *inner_svalue)
hash_map< repeated_svalue::key_t, repeated_svalue * > repeated_values_map_t
Definition region-model-manager.h:247
pointer_values_map_t m_pointer_values_map
Definition region-model-manager.h:234
const region * create_region_for_alloca(const frame_region *frame)
const svalue * get_or_create_widening_svalue(tree type, const supernode *snode, const svalue *base_svalue, const svalue *iter_svalue)
bool m_checking_feasibility
Definition region-model-manager.h:280
hash_map< binop_svalue::key_t, binop_svalue * > binop_values_map_t
Definition region-model-manager.h:240
labels_map_t::iterator labels_iterator_t
Definition region-model-manager.h:298
const svalue * get_or_create_initial_value(const region *reg, bool check_poisoned=true)
const svalue * get_or_create_binop(tree type, enum tree_code op, const svalue *arg0, const svalue *arg1)
hash_map< sub_svalue::key_t, sub_svalue * > sub_values_map_t
Definition region-model-manager.h:243
const svalue * maybe_get_char_from_string_cst(tree string_cst, tree byte_offset_cst)
bounded_ranges_manager * m_range_mgr
Definition region-model-manager.h:325
code_region m_code_region
Definition region-model-manager.h:292
const region * get_element_region(const region *parent, tree element_type, const svalue *index)
hash_map< tree, string_region * > string_map_t
Definition region-model-manager.h:317
compound_values_map_t m_compound_values_map
Definition region-model-manager.h:266
setjmp_values_map_t m_setjmp_values_map
Definition region-model-manager.h:228
consolidation_map< frame_region > m_frame_regions
Definition region-model-manager.h:314
const errno_region * get_errno_region() const
Definition region-model-manager.h:122
const_fn_result_values_map_t m_const_fn_result_values_map
Definition region-model-manager.h:278
const region * get_bit_range(const region *parent, tree type, const bit_range &bits)
consolidation_map< symbolic_region > m_symbolic_regions
Definition region-model-manager.h:315
const region * get_symbolic_region(const svalue *sval)
hash_map< bits_within_svalue::key_t, bits_within_svalue * > bits_within_values_map_t
Definition region-model-manager.h:251
const svalue * maybe_fold_asm_output_svalue(tree type, const vec< const svalue * > &inputs)
hash_map< constant_svalue::key_t, constant_svalue * > constants_map_t
Definition region-model-manager.h:215
bool too_complex_p(const complexity &c) const
consolidation_map< cast_region > m_cast_regions
Definition region-model-manager.h:313
const svalue * get_ptr_svalue(tree ptr_type, const region *pointee)
fndecls_map_t m_fndecls_map
Definition region-model-manager.h:295
sub_values_map_t m_sub_values_map
Definition region-model-manager.h:244
const unknown_svalue * m_unknown_NULL
Definition region-model-manager.h:220
unaryop_values_map_t m_unaryop_values_map
Definition region-model-manager.h:238
unsigned m_next_symbol_id
Definition region-model-manager.h:206
conjured_values_map_t m_conjured_values_map
Definition region-model-manager.h:270
hash_map< widening_svalue::key_t, widening_svalue @endverbatim * > widening_values_map_t
Definition region-model-manager.h:261
const svalue * maybe_get_char_from_raw_data_cst(tree raw_data_cst, tree byte_offset_cst)
widening_values_map_t m_widening_values_map
Definition region-model-manager.h:262
const heap_region * get_heap_region() const
Definition region-model-manager.h:116
const region * get_region_for_unexpected_tree_code(region_model_context *ctxt, tree t, const dump_location_t &loc)
hash_map< region_svalue::key_t, region_svalue * > pointer_values_map_t
Definition region-model-manager.h:233
bounded_ranges_manager * get_range_manager() const
Definition region-model-manager.h:155
void log_stats(logger *logger, bool show_objs) const
binop_values_map_t m_binop_values_map
Definition region-model-manager.h:241
hash_map< const svalue *, unmergeable_svalue * > unmergeable_values_map_t
Definition region-model-manager.h:255
globals_map_t m_globals_map
Definition region-model-manager.h:304
constants_map_t m_constants_map
Definition region-model-manager.h:216
const globals_region * get_globals_region() const
Definition region-model-manager.h:118
const region * get_or_create_region_for_heap_alloc(const bitmap &base_regs_in_use)
string_map_t m_string_map
Definition region-model-manager.h:318
poisoned_values_map_t m_poisoned_values_map
Definition region-model-manager.h:224
const svalue * get_or_create_constant_svalue(tree cst_expr)
store_manager * get_store_manager()
Definition region-model-manager.h:154
consolidation_map< sized_region > m_sized_regions
Definition region-model-manager.h:312
const call_string m_empty_call_string
Definition region-model-manager.h:208
bits_within_values_map_t m_bits_within_values_map
Definition region-model-manager.h:252
logger * get_logger() const
Definition region-model-manager.h:174
const svalue * maybe_fold_repeated_svalue(tree type, const svalue *outer_size, const svalue *inner_svalue)
void end_checking_feasibility(void)
Definition region-model-manager.h:172
const stack_region * get_stack_region() const
Definition region-model-manager.h:115
region_model_manager(logger *logger=nullptr)
const string_region * get_region_for_string(tree string_cst)
hash_map< unaryop_svalue::key_t, unaryop_svalue * > unaryop_values_map_t
Definition region-model-manager.h:237
const root_region * get_root_region() const
Definition region-model-manager.h:114
const svalue * get_or_create_constant_svalue(tree type, tree cst_expr)
root_region m_root_region
Definition region-model-manager.h:210
const svalue * get_or_create_setjmp_svalue(const setjmp_record &r, tree type)
consolidation_map< field_region > m_field_regions
Definition region-model-manager.h:309
const svalue * maybe_fold_binop(tree type, enum tree_code op, const svalue *arg0, const svalue *arg1)
consolidation_map< bit_range_region > m_bit_range_regions
Definition region-model-manager.h:320
const label_region * get_region_for_label(tree label)
heap_region m_heap_region
Definition region-model-manager.h:212
const svalue * get_or_create_const_fn_result_svalue(tree type, tree fndecl, const vec< const svalue * > &inputs)
const region * get_offset_region(const region *parent, tree type, const svalue *byte_offset)
const frame_region * get_frame_region(const frame_region *calling_frame, const function &fun)
const svalue * get_or_create_compound_svalue(tree type, const binding_map &map)
fndecls_map_t::iterator fndecls_iterator_t
Definition region-model-manager.h:294
consolidation_map< element_region > m_element_regions
Definition region-model-manager.h:310
hash_map< setjmp_svalue::key_t, setjmp_svalue * > setjmp_values_map_t
Definition region-model-manager.h:227
hash_map< tree, label_region * > labels_map_t
Definition region-model-manager.h:297
repeated_values_map_t m_repeated_values_map
Definition region-model-manager.h:248
store_manager m_store_mgr
Definition region-model-manager.h:323
const svalue * get_or_create_poisoned_svalue(enum poison_kind kind, tree type)
void begin_checking_feasibility(void)
Definition region-model-manager.h:171
unknowns_map_t m_unknowns_map
Definition region-model-manager.h:219
const svalue * get_or_create_null_ptr(tree pointer_type)
const decl_region * get_region_for_global(tree expr)
const call_string & get_empty_call_string() const
Definition region-model-manager.h:41
globals_region m_globals_region
Definition region-model-manager.h:301
auto_delete_vec< region > m_managed_dynamic_regions
Definition region-model-manager.h:332
const svalue * get_or_create_asm_output_svalue(tree type, const gasm *asm_stmt, unsigned output_idx, const vec< const svalue * > &inputs)
hash_map< tree, decl_region * > globals_map_t
Definition region-model-manager.h:302
known_function_manager * get_known_function_manager()
Definition region-model-manager.h:157
const svalue * get_or_create_asm_output_svalue(tree type, const char *asm_string, unsigned output_idx, unsigned num_outputs, const vec< const svalue * > &inputs)
hash_map< tree, unknown_svalue * > unknowns_map_t
Definition region-model-manager.h:218
hash_map< asm_output_svalue::key_t, asm_output_svalue * > asm_output_values_map_t
Definition region-model-manager.h:273
const svalue * maybe_undo_optimize_bit_field_compare(tree type, const compound_svalue *compound_sval, tree cst, const svalue *arg1)
const svalue * get_or_create_unmergeable(const svalue *arg)
const svalue * maybe_fold_sub_svalue(tree type, const svalue *parent_svalue, const region *subregion)
const region * get_sized_region(const region *parent, tree type, const svalue *byte_size_sval)
stack_region m_stack_region
Definition region-model-manager.h:211
const svalue * get_or_create_conjured_svalue(tree type, const gimple *stmt, const region *id_reg, const conjured_purge &p, unsigned idx=0)
const var_arg_region * get_var_arg_region(const frame_region *parent, unsigned idx)
logger * m_logger
Definition region-model-manager.h:204
unmergeable_values_map_t m_unmergeable_values_map
Definition region-model-manager.h:256
const svalue * maybe_get_char_from_cst(tree data_cst, tree byte_offset_cst)
const region * get_unknown_symbolic_region(tree region_type)
thread_local_region m_thread_local_region
Definition region-model-manager.h:306
const svalue * get_or_create_unknown_svalue(tree type)
void dump_untracked_regions() const
const svalue * get_or_create_repeated_svalue(tree type, const svalue *outer_size, const svalue *inner_svalue)
unsigned alloc_symbol_id()
Definition region-model-manager.h:38
const svalue * maybe_invert_comparison_in_unaryop(tree type, const binop_svalue *binop)
unsigned get_num_symbols() const
Definition region-model-manager.h:37
const svalue * get_or_create_sub_svalue(tree type, const svalue *parent_svalue, const region *subregion)
const region * get_cast_region(const region *original_region, tree type)
complexity m_max_complexity
Definition region-model-manager.h:288
const svalue * get_or_create_unaryop(tree type, enum tree_code op, const svalue *arg)
labels_map_t m_labels_map
Definition region-model-manager.h:299
Definition region.h:126
Definition svalue.h:1004
Definition region.h:638
Definition svalue.h:585
Definition region.h:555
Definition store.h:949
Definition region.h:1276
Definition supergraph.h:224
Definition svalue.h:92
Definition region.h:610
Definition svalue.h:719
Definition svalue.h:414
Definition svalue.h:1202
Definition region.h:1406
Definition svalue.h:1297
Definition vec.h:1813
Definition common.h:561
Definition dumpfile.h:446
Definition genmatch.cc:1506
Definition hash-map.h:40
class bitmap_head * bitmap
Definition coretypes.h:51
union tree_node * tree
Definition coretypes.h:97
static struct string2counter_map map[debug_counter_number_of_counters]
Definition dbgcnt.cc:39
void verbatim(const char *,...) ATTRIBUTE_GCC_DIAG(1
tree_code
Definition genmatch.cc:1002
Definition access-diagram.h:30
@ stmt
Definition checker-event.h:38
poison_kind
Definition svalue.h:446
poly_int< NUM_POLY_INT_COEFFS, wide_int_ref > poly_wide_int_ref
Definition poly-int-types.h:28
poly_int< N, C > r
Definition poly-int.h:774
Definition svalue.h:1664
Definition store.h:233
Definition svalue.h:1104
Definition complexity.h:31
Definition svalue.h:1428
Definition svalue.h:1558
Definition svalue.h:1810
Definition svalue.h:470
Definition svalue.h:1008
Definition svalue.h:550
Definition svalue.h:589
Definition svalue.h:723
Definition svalue.h:1301
Definition function.h:249
Definition gimple.h:549
Definition gimple.h:221
Definition gengtype.h:252
Definition vec.h:450