]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gimple-ssa-evrp-analyze.h
coroutines: Make call argument handling more robust [PR95440]
[thirdparty/gcc.git] / gcc / gimple-ssa-evrp-analyze.h
CommitLineData
74ba745b 1/* Support routines for Value Range Propagation (VRP).
8d9254fc 2 Copyright (C) 2016-2020 Free Software Foundation, Inc.
74ba745b
JL
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3, or (at your option)
9any later version.
10
11GCC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_GIMPLE_SSA_EVRP_ANALYZE_H
21#define GCC_GIMPLE_SSA_EVRP_ANALYZE_H
22
23class evrp_range_analyzer
24{
25 public:
c844c402 26 evrp_range_analyzer (bool update_global_ranges);
a5de02e9
JL
27 ~evrp_range_analyzer (void)
28 {
29 delete vr_values;
30 stack.release ();
31 }
74ba745b
JL
32
33 void enter (basic_block);
df80fc53
JL
34 void push_marker (void);
35 void pop_to_marker (void);
74ba745b 36 void leave (basic_block);
df80fc53 37 void record_ranges_from_stmt (gimple *, bool);
74ba745b 38
a5de02e9 39 /* Main interface to retrieve range information. */
028d81b1 40 const value_range_equiv *get_value_range (const_tree op)
a5de02e9
JL
41 { return vr_values->get_value_range (op); }
42
df80fc53 43 /* Record a new unwindable range. */
028d81b1 44 void push_value_range (tree var, value_range_equiv *vr);
df80fc53 45
a5de02e9
JL
46 /* Dump all the current value ranges. This is primarily
47 a debugging interface. */
48 void dump_all_value_ranges (FILE *fp)
49 { vr_values->dump_all_value_ranges (fp); }
50
51 /* A bit of a wart. This should ideally go away. */
52 void vrp_visit_cond_stmt (gcond *cond, edge *e)
53 { return vr_values->vrp_visit_cond_stmt (cond, e); }
54
55 /* Get the underlying vr_values class instance. If TRANSFER is
56 true, then we are transferring ownership. Else we keep ownership.
57
58 This should be converted to a unique_ptr. */
d49e06ce 59 class vr_values *get_vr_values (void) { return vr_values; }
74ba745b
JL
60
61 private:
62 DISABLE_COPY_AND_ASSIGN (evrp_range_analyzer);
a5de02e9
JL
63 class vr_values *vr_values;
64
f86c2e71 65 void pop_value_range ();
028d81b1
AH
66 value_range_equiv *try_find_new_range (tree, tree op, tree_code code,
67 tree limit);
74ba745b
JL
68 void record_ranges_from_incoming_edge (basic_block);
69 void record_ranges_from_phis (basic_block);
028d81b1 70 void set_ssa_range_info (tree, value_range_equiv *);
74ba745b
JL
71
72 /* STACK holds the old VR. */
028d81b1 73 auto_vec<std::pair <tree, value_range_equiv *> > stack;
c844c402
JL
74
75 /* True if we are updating global ranges, false otherwise. */
76 bool m_update_global_ranges;
74ba745b
JL
77};
78
79#endif /* GCC_GIMPLE_SSA_EVRP_ANALYZE_H */