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-2025 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 function_point &point,
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
185 const svalue *arg);
187 const svalue *parent_svalue,
188 const region *subregion);
190 const svalue *outer_size,
191 const svalue *inner_svalue);
193 const bit_range &bits,
194 const svalue *inner_svalue);
196 const compound_svalue *compound_sval,
197 tree cst, const svalue *arg1);
199 const vec<const svalue *> &inputs);
200
202
204
206
210
211 /* svalue consolidation. */
214
218
222
226
229
232
236
239
242
246
250
251 typedef hash_map<const svalue *,
254
256 widening_svalue */*,
257 widening_svalue::key_t::hash_map_traits*/>
260
264
268
272
276
278
279 /* "Dynamically-allocated" svalue instances.
280 The number of these within the analysis can grow arbitrarily.
281 They are still owned by the manager. */
283
284 /* Maximum complexity of svalues that weren't rejected. */
286
287 /* region consolidation. */
288
291 typedef fndecls_map_t::iterator fndecls_iterator_t;
293
295 typedef labels_map_t::iterator labels_iterator_t;
297
300 typedef globals_map_t::iterator globals_iterator_t;
302
305
313
316
319
321
323
325
326 /* "Dynamically-allocated" region instances.
327 The number of these within the analysis can grow arbitrarily.
328 They are still owned by the manager. */
330};
331
332} // namespace ana
333
334#endif /* GCC_ANALYZER_REGION_MODEL_MANAGER_H */
Definition svalue.h:1623
Definition store.h:508
Definition svalue.h:1070
Definition constraint-manager.h:181
Definition call-string.h:48
Definition region.h:453
Definition svalue.h:1389
Definition svalue.h:1490
Definition svalue.h:1521
Definition svalue.h:1769
Definition region.h:742
Definition region.h:1488
Definition region.h:319
Definition program-point.h:73
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:445
Definition region-model.h:718
hash_map< compound_svalue::key_t, compound_svalue * > compound_values_map_t
Definition region-model-manager.h:262
hash_map< conjured_svalue::key_t, conjured_svalue * > conjured_values_map_t
Definition region-model-manager.h:266
hash_map< tree, function_region * > fndecls_map_t
Definition region-model-manager.h:290
hash_map< const_fn_result_svalue::key_t, const_fn_result_svalue * > const_fn_result_values_map_t
Definition region-model-manager.h:274
initial_values_map_t m_initial_values_map
Definition region-model-manager.h:228
known_function_manager m_known_fn_mgr
Definition region-model-manager.h:324
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:271
hash_map< const region *, initial_svalue * > initial_values_map_t
Definition region-model-manager.h:227
hash_map< poisoned_svalue::key_t, poisoned_svalue * > poisoned_values_map_t
Definition region-model-manager.h:220
bool reject_if_too_complex(svalue *sval)
globals_map_t::iterator globals_iterator_t
Definition region-model-manager.h:300
const region * get_field_region(const region *parent, tree field)
consolidation_map< offset_region > m_offset_regions
Definition region-model-manager.h:308
const svalue * maybe_fold_unaryop(tree type, enum tree_code op, const svalue *arg)
errno_region m_errno_region
Definition region-model-manager.h:304
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:318
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:282
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:244
pointer_values_map_t m_pointer_values_map
Definition region-model-manager.h:231
const region * create_region_for_alloca(const frame_region *frame)
bool m_checking_feasibility
Definition region-model-manager.h:277
hash_map< binop_svalue::key_t, binop_svalue * > binop_values_map_t
Definition region-model-manager.h:237
labels_map_t::iterator labels_iterator_t
Definition region-model-manager.h:295
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:240
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:322
code_region m_code_region
Definition region-model-manager.h:289
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:314
const svalue * get_or_create_widening_svalue(tree type, const function_point &point, const svalue *base_svalue, const svalue *iter_svalue)
compound_values_map_t m_compound_values_map
Definition region-model-manager.h:263
setjmp_values_map_t m_setjmp_values_map
Definition region-model-manager.h:225
consolidation_map< frame_region > m_frame_regions
Definition region-model-manager.h:311
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:275
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:312
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:248
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:212
bool too_complex_p(const complexity &c) const
consolidation_map< cast_region > m_cast_regions
Definition region-model-manager.h:310
const svalue * get_ptr_svalue(tree ptr_type, const region *pointee)
fndecls_map_t m_fndecls_map
Definition region-model-manager.h:292
sub_values_map_t m_sub_values_map
Definition region-model-manager.h:241
const unknown_svalue * m_unknown_NULL
Definition region-model-manager.h:217
unaryop_values_map_t m_unaryop_values_map
Definition region-model-manager.h:235
unsigned m_next_symbol_id
Definition region-model-manager.h:203
conjured_values_map_t m_conjured_values_map
Definition region-model-manager.h:267
hash_map< widening_svalue::key_t, widening_svalue @endverbatim * > widening_values_map_t
Definition region-model-manager.h:258
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:259
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:230
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:238
hash_map< const svalue *, unmergeable_svalue * > unmergeable_values_map_t
Definition region-model-manager.h:252
globals_map_t m_globals_map
Definition region-model-manager.h:301
constants_map_t m_constants_map
Definition region-model-manager.h:213
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:315
poisoned_values_map_t m_poisoned_values_map
Definition region-model-manager.h:221
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:309
const call_string m_empty_call_string
Definition region-model-manager.h:205
bits_within_values_map_t m_bits_within_values_map
Definition region-model-manager.h:249
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
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:234
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:207
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:306
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:317
const label_region * get_region_for_label(tree label)
heap_region m_heap_region
Definition region-model-manager.h:209
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:291
consolidation_map< element_region > m_element_regions
Definition region-model-manager.h:307
hash_map< setjmp_svalue::key_t, setjmp_svalue * > setjmp_values_map_t
Definition region-model-manager.h:224
hash_map< tree, label_region * > labels_map_t
Definition region-model-manager.h:294
repeated_values_map_t m_repeated_values_map
Definition region-model-manager.h:245
store_manager m_store_mgr
Definition region-model-manager.h:320
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:216
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:298
auto_delete_vec< region > m_managed_dynamic_regions
Definition region-model-manager.h:329
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:299
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:215
hash_map< asm_output_svalue::key_t, asm_output_svalue * > asm_output_values_map_t
Definition region-model-manager.h:270
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:208
region_model_manager(logger *logger=NULL)
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:201
unmergeable_values_map_t m_unmergeable_values_map
Definition region-model-manager.h:253
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:303
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
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:285
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:296
Definition region.h:126
Definition svalue.h:974
Definition region.h:638
Definition svalue.h:559
Definition region.h:555
Definition store.h:861
Definition region.h:1276
Definition svalue.h:92
Definition region.h:610
Definition svalue.h:693
Definition svalue.h:395
Definition svalue.h:1172
Definition region.h:1406
Definition svalue.h:1267
Definition vec.h:1802
Definition analyzer.h:529
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
poison_kind
Definition svalue.h:425
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:1631
Definition store.h:233
Definition svalue.h:1074
Definition complexity.h:31
Definition svalue.h:1397
Definition svalue.h:1525
Definition svalue.h:1777
Definition svalue.h:449
Definition svalue.h:978
Definition svalue.h:529
Definition svalue.h:563
Definition svalue.h:697
Definition svalue.h:1271
Definition function.h:249
Definition gimple.h:549
Definition gimple.h:221
Definition gengtype.h:252
Definition vec.h:450
#define NULL
Definition system.h:50