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 272757227 : gimple_outgoing_range_stmt_p (basic_block bb)
42 : {
43 272757227 : if (bb->flags & BB_RTL)
44 : return NULL;
45 271276331 : gimple_stmt_iterator gsi = gsi_last_nondebug_bb (bb);
46 271276331 : if (!gsi_end_p (gsi))
47 : {
48 244732048 : gimple *s = gsi_stmt (gsi);
49 244732048 : if (is_a<gcond *> (s) && gimple_range_op_handler::supported_p (s))
50 : return gsi_stmt (gsi);
51 37873513 : 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 243151149 : gcond_edge_range (irange &r, edge e)
61 : {
62 243151149 : gcc_checking_assert (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE));
63 243151149 : if (e->flags & EDGE_TRUE_VALUE)
64 120436197 : r = range_true ();
65 : else
66 122714952 : r = range_false ();
67 243151149 : }
68 :
69 : // Construct a gimple_outgoing_range object. No memory is allocated.
70 :
71 28312817 : gimple_outgoing_range::gimple_outgoing_range (int max_sw_edges)
72 : {
73 28312817 : m_edge_table = NULL;
74 28312817 : m_range_allocator = NULL;
75 28312817 : m_max_edges = max_sw_edges;
76 28312817 : }
77 :
78 : // Destruct an edge object, disposing of any memory allocated.
79 :
80 28312816 : gimple_outgoing_range::~gimple_outgoing_range ()
81 : {
82 28312816 : if (m_edge_table)
83 52670 : delete m_edge_table;
84 28312816 : if (m_range_allocator)
85 52670 : delete m_range_allocator;
86 28312816 : }
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 413129 : 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 413129 : if (gimple_switch_num_labels (sw) > 1 &&
107 413129 : TYPE_PRECISION (TREE_TYPE (CASE_LOW (gimple_switch_label (sw, 1)))) !=
108 413129 : TYPE_PRECISION (TREE_TYPE (gimple_switch_index (sw))))
109 : return false;
110 :
111 413110 : if (!m_edge_table)
112 52670 : m_edge_table = new hash_map<edge, vrange_storage *> (n_edges_for_fn (cfun));
113 413110 : if (!m_range_allocator)
114 52670 : m_range_allocator = new vrange_allocator;
115 :
116 413110 : vrange_storage **val = m_edge_table->get (e);
117 413110 : if (!val)
118 : {
119 64758 : calc_switch_ranges (sw);
120 64758 : val = m_edge_table->get (e);
121 64758 : gcc_checking_assert (val);
122 : }
123 413110 : (*val)->get_vrange (r, TREE_TYPE (gimple_switch_index (sw)));
124 413110 : return true;
125 : }
126 :
127 :
128 : // Calculate all switch edges from SW and cache them in the hash table.
129 :
130 : void
131 64758 : gimple_outgoing_range::calc_switch_ranges (gswitch *sw)
132 : {
133 64758 : bool existed;
134 64758 : unsigned x, lim;
135 64758 : lim = gimple_switch_num_labels (sw);
136 64758 : tree type = TREE_TYPE (gimple_switch_index (sw));
137 64758 : 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 64758 : int_range_max default_range (type);
144 :
145 445848 : for (x = 1; x < lim; x++)
146 : {
147 381090 : edge e = gimple_switch_edge (cfun, sw, x);
148 :
149 : // If this edge is the same as the default edge, do nothing else.
150 381090 : if (e == default_edge)
151 143 : continue;
152 :
153 380965 : wide_int low = wi::to_wide (CASE_LOW (gimple_switch_label (sw, x)));
154 380965 : wide_int high;
155 380965 : tree tree_high = CASE_HIGH (gimple_switch_label (sw, x));
156 380965 : if (tree_high)
157 31477 : high = wi::to_wide (tree_high);
158 : else
159 349488 : high = low;
160 :
161 : // Remove the case range from the default case.
162 380965 : int_range_max def_range (type, low, high);
163 380965 : range_cast (def_range, type);
164 : // If all possible values are taken, set default_range to UNDEFINED.
165 380965 : if (def_range.varying_p ())
166 1 : default_range.set_undefined ();
167 : else
168 : {
169 380964 : def_range.invert ();
170 380964 : default_range.intersect (def_range);
171 : }
172 :
173 : // Create/union this case with anything on else on the edge.
174 380965 : int_range_max case_range (type, low, high);
175 380965 : range_cast (case_range, type);
176 380965 : vrange_storage *&slot = m_edge_table->get_or_insert (e, &existed);
177 380965 : if (existed)
178 : {
179 : // If this doesn't change the value, move on.
180 77261 : int_range_max tmp;
181 77261 : slot->get_vrange (tmp, type);
182 77261 : if (!case_range.union_ (tmp))
183 0 : continue;
184 77261 : if (slot->fits_p (case_range))
185 : {
186 18 : slot->set_vrange (case_range);
187 18 : continue;
188 : }
189 77261 : }
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 380947 : slot = m_range_allocator->clone (case_range);
194 380965 : }
195 :
196 64758 : 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 64012 : vrange_storage *&slot = m_edge_table->get_or_insert (default_edge, &existed);
205 : // This should be the first call into this switch.
206 64012 : gcc_checking_assert (!existed);
207 64012 : slot = m_range_allocator->clone (default_range);
208 64758 : }
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 160559669 : gimple_outgoing_range::edge_range_p (irange &r, edge e)
217 : {
218 160559669 : if (single_succ_p (e->src))
219 : return NULL;
220 :
221 : // Determine if there is an outgoing edge.
222 110123165 : gimple *s = gimple_outgoing_range_stmt_p (e->src);
223 110123165 : if (!s)
224 : return NULL;
225 :
226 109106982 : if (is_a<gcond *> (s))
227 : {
228 108693476 : gcond_edge_range (r, e);
229 108693476 : return s;
230 : }
231 :
232 : // Only process switches if it within the size limit.
233 413506 : if (m_max_edges == 0 || (EDGE_COUNT (e->src->succs) > (unsigned)m_max_edges))
234 : return NULL;
235 :
236 413129 : gcc_checking_assert (is_a<gswitch *> (s));
237 413129 : gswitch *sw = as_a<gswitch *> (s);
238 :
239 : // Switches can only be integers.
240 413129 : if (switch_edge_range (as_a <irange> (r), sw, e))
241 : return s;
242 :
243 : return NULL;
244 : }
|