1 /* Gimple range edge functionality.
2 Copyright (C) 2020-2025 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
4 and Aldy Hernandez <aldyh@redhat.com>.
6 This file is part of GCC.
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)
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.
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/>. */
25 #include "coretypes.h"
30 #include "gimple-pretty-print.h"
31 #include "gimple-iterator.h"
33 #include "gimple-range.h"
34 #include "value-range-storage.h"
36 // If there is a range control statement at the end of block BB, return it.
37 // Otherwise return NULL.
40 gimple_outgoing_range_stmt_p (basic_block bb
)
42 gimple_stmt_iterator gsi
= gsi_last_nondebug_bb (bb
);
45 gimple
*s
= gsi_stmt (gsi
);
46 if (is_a
<gcond
*> (s
) && gimple_range_op_handler::supported_p (s
))
47 return gsi_stmt (gsi
);
48 if (is_a
<gswitch
*> (s
))
49 return gsi_stmt (gsi
);
54 // Return a TRUE or FALSE range representing the edge value of a GCOND.
57 gcond_edge_range (irange
&r
, edge e
)
59 gcc_checking_assert (e
->flags
& (EDGE_TRUE_VALUE
| EDGE_FALSE_VALUE
));
60 if (e
->flags
& EDGE_TRUE_VALUE
)
66 // Construct a gimple_outgoing_range object. No memory is allocated.
68 gimple_outgoing_range::gimple_outgoing_range (int max_sw_edges
)
71 m_range_allocator
= NULL
;
72 m_max_edges
= max_sw_edges
;
75 // Destruct an edge object, disposing of any memory allocated.
77 gimple_outgoing_range::~gimple_outgoing_range ()
81 if (m_range_allocator
)
82 delete m_range_allocator
;
85 // Set a new switch limit.
88 gimple_outgoing_range::set_switch_limit (int max_sw_edges
)
90 m_max_edges
= max_sw_edges
;
93 // Get a range for a switch edge E from statement S and return it in R.
94 // Use a cached value if it exists, or calculate it if not.
97 gimple_outgoing_range::switch_edge_range (irange
&r
, gswitch
*sw
, edge e
)
99 // ADA currently has cases where the index is 64 bits and the case
100 // arguments are 32 bit, causing a trap when we create a case_range.
101 // Until this is resolved (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87798)
102 // punt on switches where the labels don't match the argument.
103 if (gimple_switch_num_labels (sw
) > 1 &&
104 TYPE_PRECISION (TREE_TYPE (CASE_LOW (gimple_switch_label (sw
, 1)))) !=
105 TYPE_PRECISION (TREE_TYPE (gimple_switch_index (sw
))))
109 m_edge_table
= new hash_map
<edge
, vrange_storage
*> (n_edges_for_fn (cfun
));
110 if (!m_range_allocator
)
111 m_range_allocator
= new vrange_allocator
;
113 vrange_storage
**val
= m_edge_table
->get (e
);
116 calc_switch_ranges (sw
);
117 val
= m_edge_table
->get (e
);
118 gcc_checking_assert (val
);
120 (*val
)->get_vrange (r
, TREE_TYPE (gimple_switch_index (sw
)));
125 // Calculate all switch edges from SW and cache them in the hash table.
128 gimple_outgoing_range::calc_switch_ranges (gswitch
*sw
)
132 lim
= gimple_switch_num_labels (sw
);
133 tree type
= TREE_TYPE (gimple_switch_index (sw
));
134 edge default_edge
= gimple_switch_default_edge (cfun
, sw
);
136 // This should be the first call into this switch.
138 // Allocate an int_range_max for the default range case, start with
139 // varying and intersect each other case from it.
140 int_range_max
default_range (type
);
142 for (x
= 1; x
< lim
; x
++)
144 edge e
= gimple_switch_edge (cfun
, sw
, x
);
146 // If this edge is the same as the default edge, do nothing else.
147 if (e
== default_edge
)
150 wide_int low
= wi::to_wide (CASE_LOW (gimple_switch_label (sw
, x
)));
152 tree tree_high
= CASE_HIGH (gimple_switch_label (sw
, x
));
154 high
= wi::to_wide (tree_high
);
158 // Remove the case range from the default case.
159 int_range_max
def_range (type
, low
, high
);
160 range_cast (def_range
, type
);
161 // If all possible values are taken, set default_range to UNDEFINED.
162 if (def_range
.varying_p ())
163 default_range
.set_undefined ();
167 default_range
.intersect (def_range
);
170 // Create/union this case with anything on else on the edge.
171 int_range_max
case_range (type
, low
, high
);
172 range_cast (case_range
, type
);
173 vrange_storage
*&slot
= m_edge_table
->get_or_insert (e
, &existed
);
176 // If this doesn't change the value, move on.
178 slot
->get_vrange (tmp
, type
);
179 if (!case_range
.union_ (tmp
))
181 if (slot
->fits_p (case_range
))
183 slot
->set_vrange (case_range
);
187 // If there was an existing range and it doesn't fit, we lose the memory.
188 // It'll get reclaimed when the obstack is freed. This seems less
189 // intrusive than allocating max ranges for each case.
190 slot
= m_range_allocator
->clone (case_range
);
193 vrange_storage
*&slot
= m_edge_table
->get_or_insert (default_edge
, &existed
);
194 // This should be the first call into this switch.
195 gcc_checking_assert (!existed
);
196 slot
= m_range_allocator
->clone (default_range
);
200 // Calculate the range forced on on edge E by control flow, return it
201 // in R. Return the statement which defines the range, otherwise
205 gimple_outgoing_range::edge_range_p (irange
&r
, edge e
)
207 if (single_succ_p (e
->src
))
210 // Determine if there is an outgoing edge.
211 gimple
*s
= gimple_outgoing_range_stmt_p (e
->src
);
215 if (is_a
<gcond
*> (s
))
217 gcond_edge_range (r
, e
);
221 // Only process switches if it within the size limit.
222 if (m_max_edges
== 0 || (EDGE_COUNT (e
->src
->succs
) > (unsigned)m_max_edges
))
225 gcc_checking_assert (is_a
<gswitch
*> (s
));
226 gswitch
*sw
= as_a
<gswitch
*> (s
);
228 // Switches can only be integers.
229 if (switch_edge_range (as_a
<irange
> (r
), sw
, e
))