Line data Source code
1 : /* Gimple range edge functionality.
2 : Copyright (C) 2020-2026 Free Software Foundation, Inc.
3 : Contributed by Andrew MacLeod <amacleod@redhat.com>
4 : and Aldy Hernandez <aldyh@redhat.com>.
5 :
6 : This file is part of GCC.
7 :
8 : GCC is free software; you can redistribute it and/or modify
9 : it under the terms of the GNU General Public License as published by
10 : the Free Software Foundation; either version 3, or (at your option)
11 : any later version.
12 :
13 : GCC is distributed in the hope that it will be useful,
14 : but WITHOUT ANY WARRANTY; without even the implied warranty of
15 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 : GNU General Public License for more details.
17 :
18 : You should have received a copy of the GNU General Public License
19 : along with GCC; see the file COPYING3. If not see
20 : <http://www.gnu.org/licenses/>. */
21 :
22 :
23 : #include "config.h"
24 : #include "system.h"
25 : #include "coretypes.h"
26 : #include "backend.h"
27 : #include "tree.h"
28 : #include "gimple.h"
29 : #include "ssa.h"
30 : #include "gimple-pretty-print.h"
31 : #include "gimple-iterator.h"
32 : #include "tree-cfg.h"
33 : #include "gimple-range.h"
34 : #include "value-range-storage.h"
35 : #include "rtl.h"
36 :
37 : // If there is a range control statement at the end of block BB, return it.
38 : // Otherwise return NULL.
39 :
40 : gimple *
41 266599110 : gimple_outgoing_range_stmt_p (basic_block bb)
42 : {
43 266599110 : if (bb->flags & BB_RTL)
44 : return NULL;
45 265123917 : gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
46 265123917 : if (!gsi_end_p (gsi))
47 : {
48 238740122 : gimple *s = gsi_stmt (gsi);
49 238740122 : if (is_a<gcond *> (s) && gimple_range_op_handler::supported_p (s))
50 : return gsi_stmt (gsi);
51 37533427 : if (is_a <gswitch *> (s))
52 : return gsi_stmt (gsi);
53 : }
54 : return NULL;
55 : }
56 :
57 : // Return a TRUE or FALSE range representing the edge value of a GCOND.
58 :
59 : void
60 233138992 : gcond_edge_range (irange &r, edge e)
61 : {
62 233138992 : gcc_checking_assert (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE));
63 233138992 : if (e->flags & EDGE_TRUE_VALUE)
64 114385184 : r = range_true ();
65 : else
66 118753808 : r = range_false ();
67 233138992 : }
68 :
69 : // Construct a gimple_outgoing_range object. No memory is allocated.
70 :
71 28145898 : gimple_outgoing_range::gimple_outgoing_range (int max_sw_edges)
72 : {
73 28145898 : m_edge_table = NULL;
74 28145898 : m_range_allocator = NULL;
75 28145898 : m_max_edges = max_sw_edges;
76 28145898 : }
77 :
78 : // Destruct an edge object, disposing of any memory allocated.
79 :
80 28145897 : gimple_outgoing_range::~gimple_outgoing_range ()
81 : {
82 28145897 : if (m_edge_table)
83 52507 : delete m_edge_table;
84 28145897 : if (m_range_allocator)
85 52507 : delete m_range_allocator;
86 28145897 : }
87 :
88 : // Set a new switch limit.
89 :
90 : void
91 0 : gimple_outgoing_range::set_switch_limit (int max_sw_edges)
92 : {
93 0 : m_max_edges = max_sw_edges;
94 0 : }
95 :
96 : // Get a range for a switch edge E from statement S and return it in R.
97 : // Use a cached value if it exists, or calculate it if not.
98 :
99 : bool
100 405088 : gimple_outgoing_range::switch_edge_range (irange &r, gswitch *sw, edge e)
101 : {
102 : // ADA currently has cases where the index is 64 bits and the case
103 : // arguments are 32 bit, causing a trap when we create a case_range.
104 : // Until this is resolved (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87798)
105 : // punt on switches where the labels don't match the argument.
106 405088 : if (gimple_switch_num_labels (sw) > 1 &&
107 405088 : TYPE_PRECISION (TREE_TYPE (CASE_LOW (gimple_switch_label (sw, 1)))) !=
108 405088 : TYPE_PRECISION (TREE_TYPE (gimple_switch_index (sw))))
109 : return false;
110 :
111 405069 : if (!m_edge_table)
112 52507 : m_edge_table = new hash_map<edge, vrange_storage *> (n_edges_for_fn (cfun));
113 405069 : if (!m_range_allocator)
114 52507 : m_range_allocator = new vrange_allocator;
115 :
116 405069 : vrange_storage **val = m_edge_table->get (e);
117 405069 : if (!val)
118 : {
119 64512 : calc_switch_ranges (sw);
120 64512 : val = m_edge_table->get (e);
121 64512 : gcc_checking_assert (val);
122 : }
123 405069 : (*val)->get_vrange (r, TREE_TYPE (gimple_switch_index (sw)));
124 405069 : return true;
125 : }
126 :
127 :
128 : // Calculate all switch edges from SW and cache them in the hash table.
129 :
130 : void
131 64512 : gimple_outgoing_range::calc_switch_ranges (gswitch *sw)
132 : {
133 64512 : bool existed;
134 64512 : unsigned x, lim;
135 64512 : lim = gimple_switch_num_labels (sw);
136 64512 : tree type = TREE_TYPE (gimple_switch_index (sw));
137 64512 : edge default_edge = gimple_switch_default_edge (cfun, sw);
138 :
139 : // This should be the first call into this switch.
140 : //
141 : // Allocate an int_range_max for the default range case, start with
142 : // varying and intersect each other case from it.
143 64512 : int_range_max default_range (type);
144 :
145 444130 : for (x = 1; x < lim; x++)
146 : {
147 379618 : edge e = gimple_switch_edge (cfun, sw, x);
148 :
149 : // If this edge is the same as the default edge, do nothing else.
150 379618 : if (e == default_edge)
151 143 : continue;
152 :
153 379493 : wide_int low = wi::to_wide (CASE_LOW (gimple_switch_label (sw, x)));
154 379493 : wide_int high;
155 379493 : tree tree_high = CASE_HIGH (gimple_switch_label (sw, x));
156 379493 : if (tree_high)
157 31334 : high = wi::to_wide (tree_high);
158 : else
159 348159 : high = low;
160 :
161 : // Remove the case range from the default case.
162 379493 : int_range_max def_range (type, low, high);
163 379493 : range_cast (def_range, type);
164 : // If all possible values are taken, set default_range to UNDEFINED.
165 379493 : if (def_range.varying_p ())
166 1 : default_range.set_undefined ();
167 : else
168 : {
169 379492 : def_range.invert ();
170 379492 : default_range.intersect (def_range);
171 : }
172 :
173 : // Create/union this case with anything on else on the edge.
174 379493 : int_range_max case_range (type, low, high);
175 379493 : range_cast (case_range, type);
176 379493 : vrange_storage *&slot = m_edge_table->get_or_insert (e, &existed);
177 379493 : if (existed)
178 : {
179 : // If this doesn't change the value, move on.
180 77047 : int_range_max tmp;
181 77047 : slot->get_vrange (tmp, type);
182 77047 : if (!case_range.union_ (tmp))
183 0 : continue;
184 77047 : if (slot->fits_p (case_range))
185 : {
186 18 : slot->set_vrange (case_range);
187 18 : continue;
188 : }
189 77047 : }
190 : // If there was an existing range and it doesn't fit, we lose the memory.
191 : // It'll get reclaimed when the obstack is freed. This seems less
192 : // intrusive than allocating max ranges for each case.
193 379475 : slot = m_range_allocator->clone (case_range);
194 379493 : }
195 :
196 64512 : if (default_edge == NULL)
197 : {
198 : /* During expansion the default edge could have been removed
199 : if the default is unreachable. */
200 746 : gcc_assert (currently_expanding_to_rtl);
201 746 : return;
202 : }
203 :
204 63766 : vrange_storage *&slot = m_edge_table->get_or_insert (default_edge, &existed);
205 : // This should be the first call into this switch.
206 63766 : gcc_checking_assert (!existed);
207 63766 : slot = m_range_allocator->clone (default_range);
208 64512 : }
209 :
210 :
211 : // Calculate the range forced on on edge E by control flow, return it
212 : // in R. Return the statement which defines the range, otherwise
213 : // return NULL
214 :
215 : gimple *
216 154482556 : gimple_outgoing_range::edge_range_p (irange &r, edge e)
217 : {
218 154482556 : if (single_succ_p (e->src))
219 : return NULL;
220 :
221 : // Determine if there is an outgoing edge.
222 105057355 : gimple *s = gimple_outgoing_range_stmt_p (e->src);
223 105057355 : if (!s)
224 : return NULL;
225 :
226 104066694 : if (is_a<gcond *> (s))
227 : {
228 103661231 : gcond_edge_range (r, e);
229 103661231 : return s;
230 : }
231 :
232 : // Only process switches if it within the size limit.
233 405463 : if (m_max_edges == 0 || (EDGE_COUNT (e->src->succs) > (unsigned)m_max_edges))
234 : return NULL;
235 :
236 405088 : gcc_checking_assert (is_a<gswitch *> (s));
237 405088 : gswitch *sw = as_a<gswitch *> (s);
238 :
239 : // Switches can only be integers.
240 405088 : if (switch_edge_range (as_a <irange> (r), sw, e))
241 : return s;
242 :
243 : return NULL;
244 : }
|