Branch data Line data Source code
1 : : /* Lower GIMPLE_SWITCH expressions to something more efficient than
2 : : a jump table.
3 : : Copyright (C) 2006-2025 Free Software Foundation, Inc.
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify it
8 : : under the terms of the GNU General Public License as published by the
9 : : Free Software Foundation; either version 3, or (at your option) any
10 : : later version.
11 : :
12 : : GCC is distributed in the hope that it will be useful, but WITHOUT
13 : : ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 : : for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not, write to the Free
19 : : Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 : : 02110-1301, USA. */
21 : :
22 : : /* This file handles the lowering of GIMPLE_SWITCH to an indexed
23 : : load, or a series of bit-test-and-branch expressions. */
24 : :
25 : : #include "config.h"
26 : : #include "system.h"
27 : : #include "coretypes.h"
28 : : #include "backend.h"
29 : : #include "insn-codes.h"
30 : : #include "rtl.h"
31 : : #include "tree.h"
32 : : #include "gimple.h"
33 : : #include "cfghooks.h"
34 : : #include "tree-pass.h"
35 : : #include "ssa.h"
36 : : #include "optabs-tree.h"
37 : : #include "cgraph.h"
38 : : #include "gimple-pretty-print.h"
39 : : #include "fold-const.h"
40 : : #include "varasm.h"
41 : : #include "stor-layout.h"
42 : : #include "cfganal.h"
43 : : #include "gimplify.h"
44 : : #include "gimple-iterator.h"
45 : : #include "gimplify-me.h"
46 : : #include "gimple-fold.h"
47 : : #include "tree-cfg.h"
48 : : #include "cfgloop.h"
49 : : #include "alloc-pool.h"
50 : : #include "target.h"
51 : : #include "tree-into-ssa.h"
52 : : #include "omp-general.h"
53 : : #include "gimple-range.h"
54 : : #include "tree-cfgcleanup.h"
55 : : #include "hwint.h"
56 : : #include "internal-fn.h"
57 : : #include "diagnostic-core.h"
58 : :
59 : : /* ??? For lang_hooks.types.type_for_mode, but is there a word_mode
60 : : type in the GIMPLE type system that is language-independent? */
61 : : #include "langhooks.h"
62 : :
63 : : #include "tree-switch-conversion.h"
64 : :
65 : : using namespace tree_switch_conversion;
66 : :
67 : : /* Does the target have optabs needed to efficiently compute exact base two
68 : : logarithm of a variable with type TYPE?
69 : :
70 : : If yes, returns TYPE. If no, returns NULL_TREE. May also return another
71 : : type. This indicates that logarithm of the variable can be computed but
72 : : only after it is converted to this type.
73 : :
74 : : Also see gen_log2. */
75 : :
76 : : static tree
77 : 7393 : can_log2 (tree type, optimization_type opt_type)
78 : : {
79 : : /* Check if target supports FFS for given type. */
80 : 7393 : if (direct_internal_fn_supported_p (IFN_FFS, type, opt_type))
81 : : return type;
82 : :
83 : : /* Check if target supports FFS for some type we could convert to. */
84 : 1506 : int prec = TYPE_PRECISION (type);
85 : 1506 : int i_prec = TYPE_PRECISION (integer_type_node);
86 : 1506 : int li_prec = TYPE_PRECISION (long_integer_type_node);
87 : 1506 : int lli_prec = TYPE_PRECISION (long_long_integer_type_node);
88 : 1506 : tree new_type;
89 : 1506 : if (prec <= i_prec
90 : 1506 : && direct_internal_fn_supported_p (IFN_FFS, integer_type_node, opt_type))
91 : 1496 : new_type = integer_type_node;
92 : 10 : else if (prec <= li_prec
93 : 10 : && direct_internal_fn_supported_p (IFN_FFS, long_integer_type_node,
94 : : opt_type))
95 : 0 : new_type = long_integer_type_node;
96 : 10 : else if (prec <= lli_prec
97 : 10 : && direct_internal_fn_supported_p (IFN_FFS,
98 : : long_long_integer_type_node,
99 : : opt_type))
100 : 0 : new_type = long_long_integer_type_node;
101 : : else
102 : 10 : return NULL_TREE;
103 : : return new_type;
104 : : }
105 : :
106 : : /* Assume that OP is a power of two. Build a sequence of gimple statements
107 : : efficiently computing the base two logarithm of OP using special optabs.
108 : : Return the ssa name represeting the result of the logarithm through RESULT.
109 : :
110 : : Before computing the logarithm, OP may have to be converted to another type.
111 : : This should be specified in TYPE. Use can_log2 to decide what this type
112 : : should be.
113 : :
114 : : Should only be used if can_log2 doesn't reject the type of OP. */
115 : :
116 : : static gimple_seq
117 : 21 : gen_log2 (tree op, location_t loc, tree *result, tree type)
118 : : {
119 : 21 : gimple_seq stmts = NULL;
120 : 21 : gimple_stmt_iterator gsi = gsi_last (stmts);
121 : :
122 : 21 : tree orig_type = TREE_TYPE (op);
123 : 21 : tree tmp1;
124 : 21 : if (type != orig_type)
125 : 4 : tmp1 = gimple_convert (&gsi, false, GSI_NEW_STMT, loc, type, op);
126 : : else
127 : : tmp1 = op;
128 : : /* Build FFS (op) - 1. */
129 : 21 : tree tmp2 = gimple_build (&gsi, false, GSI_NEW_STMT, loc, IFN_FFS, orig_type,
130 : : tmp1);
131 : 21 : tree tmp3 = gimple_build (&gsi, false, GSI_NEW_STMT, loc, MINUS_EXPR,
132 : : orig_type, tmp2, build_one_cst (orig_type));
133 : 21 : *result = tmp3;
134 : 21 : return stmts;
135 : : }
136 : :
137 : : /* Build a sequence of gimple statements checking that OP is a power of 2.
138 : : Return the result as a boolean_type_node ssa name through RESULT. Assumes
139 : : that OP's value will be non-negative. The generated check may give
140 : : arbitrary answer for negative values. */
141 : :
142 : : static gimple_seq
143 : 21 : gen_pow2p (tree op, location_t loc, tree *result)
144 : : {
145 : 21 : gimple_seq stmts = NULL;
146 : 21 : gimple_stmt_iterator gsi = gsi_last (stmts);
147 : :
148 : 21 : tree type = TREE_TYPE (op);
149 : 21 : tree utype = unsigned_type_for (type);
150 : :
151 : : /* Build (op ^ (op - 1)) > (op - 1). */
152 : 21 : tree tmp1;
153 : 21 : if (types_compatible_p (type, utype))
154 : : tmp1 = op;
155 : : else
156 : 13 : tmp1 = gimple_convert (&gsi, false, GSI_NEW_STMT, loc, utype, op);
157 : 21 : tree tmp2 = gimple_build (&gsi, false, GSI_NEW_STMT, loc, MINUS_EXPR, utype,
158 : : tmp1, build_one_cst (utype));
159 : 21 : tree tmp3 = gimple_build (&gsi, false, GSI_NEW_STMT, loc, BIT_XOR_EXPR,
160 : : utype, tmp1, tmp2);
161 : 21 : *result = gimple_build (&gsi, false, GSI_NEW_STMT, loc, GT_EXPR,
162 : : boolean_type_node, tmp3, tmp2);
163 : :
164 : 21 : return stmts;
165 : : }
166 : :
167 : :
168 : : /* Constructor. */
169 : :
170 : 29263 : switch_conversion::switch_conversion (): m_final_bb (NULL),
171 : 29263 : m_constructors (NULL), m_default_values (NULL),
172 : 29263 : m_arr_ref_first (NULL), m_arr_ref_last (NULL),
173 : 29263 : m_reason (NULL), m_default_case_nonstandard (false), m_cfg_altered (false),
174 : 29263 : m_exp_index_transform_applied (false)
175 : : {
176 : 29263 : }
177 : :
178 : : /* Collection information about SWTCH statement. */
179 : :
180 : : void
181 : 29263 : switch_conversion::collect (gswitch *swtch)
182 : : {
183 : 29263 : unsigned int branch_num = gimple_switch_num_labels (swtch);
184 : 29263 : tree min_case, max_case;
185 : 29263 : unsigned int i;
186 : 29263 : edge e, e_default, e_first;
187 : 29263 : edge_iterator ei;
188 : :
189 : 29263 : m_switch = swtch;
190 : :
191 : : /* The gimplifier has already sorted the cases by CASE_LOW and ensured there
192 : : is a default label which is the first in the vector.
193 : : Collect the bits we can deduce from the CFG. */
194 : 29263 : m_index_expr = gimple_switch_index (swtch);
195 : 29263 : m_switch_bb = gimple_bb (swtch);
196 : 29263 : e_default = gimple_switch_default_edge (cfun, swtch);
197 : 29263 : m_default_bb = e_default->dest;
198 : 29263 : m_default_prob = e_default->probability;
199 : :
200 : : /* Get upper and lower bounds of case values, and the covered range. */
201 : 29263 : min_case = gimple_switch_label (swtch, 1);
202 : 29263 : max_case = gimple_switch_label (swtch, branch_num - 1);
203 : :
204 : 29263 : m_range_min = CASE_LOW (min_case);
205 : 29263 : if (CASE_HIGH (max_case) != NULL_TREE)
206 : 2713 : m_range_max = CASE_HIGH (max_case);
207 : : else
208 : 26550 : m_range_max = CASE_LOW (max_case);
209 : :
210 : 29263 : m_contiguous_range = true;
211 : 29263 : tree last = CASE_HIGH (min_case) ? CASE_HIGH (min_case) : m_range_min;
212 : 94927 : for (i = 2; i < branch_num; i++)
213 : : {
214 : 81537 : tree elt = gimple_switch_label (swtch, i);
215 : 81538 : if (wi::to_wide (last) + 1 != wi::to_wide (CASE_LOW (elt)))
216 : : {
217 : 15873 : m_contiguous_range = false;
218 : 15873 : break;
219 : : }
220 : 65664 : last = CASE_HIGH (elt) ? CASE_HIGH (elt) : CASE_LOW (elt);
221 : : }
222 : :
223 : 29263 : if (m_contiguous_range)
224 : 13390 : e_first = gimple_switch_edge (cfun, swtch, 1);
225 : : else
226 : : e_first = e_default;
227 : :
228 : : /* See if there is one common successor block for all branch
229 : : targets. If it exists, record it in FINAL_BB.
230 : : Start with the destination of the first non-default case
231 : : if the range is contiguous and default case otherwise as
232 : : guess or its destination in case it is a forwarder block. */
233 : 29263 : if (! single_pred_p (e_first->dest))
234 : 8269 : m_final_bb = e_first->dest;
235 : 20994 : else if (single_succ_p (e_first->dest)
236 : 17763 : && ! single_pred_p (single_succ (e_first->dest)))
237 : 12649 : m_final_bb = single_succ (e_first->dest);
238 : : /* Require that all switch destinations are either that common
239 : : FINAL_BB or a forwarder to it, except for the default
240 : : case if contiguous range. */
241 : 29263 : auto_vec<edge, 10> fw_edges;
242 : 29263 : m_uniq = 0;
243 : 29263 : if (m_final_bb)
244 : 105084 : FOR_EACH_EDGE (e, ei, m_switch_bb->succs)
245 : : {
246 : 92626 : edge phi_e = nullptr;
247 : 92626 : if (e->dest == m_final_bb)
248 : 13543 : phi_e = e;
249 : 79083 : else if (single_pred_p (e->dest)
250 : 163983 : && single_succ_p (e->dest)
251 : 150440 : && single_succ (e->dest) == m_final_bb)
252 : 68284 : phi_e = single_succ_edge (e->dest);
253 : 92626 : if (phi_e)
254 : : {
255 : 81827 : if (e == e_default)
256 : : ;
257 : 63655 : else if (phi_e == e || empty_block_p (e->dest))
258 : : {
259 : : /* For empty blocks consider forwarders with equal
260 : : PHI arguments in m_final_bb as unique. */
261 : : unsigned i;
262 : 111555 : for (i = 0; i < fw_edges.length (); ++i)
263 : 95735 : if (phi_alternatives_equal (m_final_bb, fw_edges[i], phi_e))
264 : : break;
265 : 33536 : if (i == fw_edges.length ())
266 : : {
267 : : /* But limit the above possibly quadratic search. */
268 : 15820 : if (fw_edges.length () < 10)
269 : 7336 : fw_edges.quick_push (phi_e);
270 : 15820 : m_uniq++;
271 : : }
272 : : }
273 : : else
274 : 46887 : m_uniq++;
275 : 84166 : continue;
276 : 81827 : }
277 : :
278 : 10799 : if (e == e_default && m_contiguous_range)
279 : : {
280 : 2339 : m_default_case_nonstandard = true;
281 : 2339 : continue;
282 : : }
283 : :
284 : 8460 : m_final_bb = NULL;
285 : 8460 : break;
286 : : }
287 : :
288 : : /* When there's not a single common successor block conservatively
289 : : approximate the number of unique non-default targets. */
290 : 29263 : if (!m_final_bb)
291 : 33610 : m_uniq = EDGE_COUNT (gimple_bb (swtch)->succs) - 1;
292 : :
293 : 29263 : m_range_size
294 : 29263 : = int_const_binop (MINUS_EXPR, m_range_max, m_range_min);
295 : :
296 : : /* Get a count of the number of case labels. Single-valued case labels
297 : : simply count as one, but a case range counts double, since it may
298 : : require two compares if it gets lowered as a branching tree. */
299 : 29263 : m_count = 0;
300 : 194064 : for (i = 1; i < branch_num; i++)
301 : : {
302 : 164801 : tree elt = gimple_switch_label (swtch, i);
303 : 164801 : m_count++;
304 : 164801 : if (CASE_HIGH (elt)
305 : 164801 : && ! tree_int_cst_equal (CASE_LOW (elt), CASE_HIGH (elt)))
306 : 11625 : m_count++;
307 : : }
308 : 29263 : }
309 : :
310 : : /* Check that the "exponential index transform" can be applied to this switch.
311 : :
312 : : See comment of the exp_index_transform function for details about this
313 : : transformation.
314 : :
315 : : We want:
316 : : - This form of the switch is more efficient
317 : : - Cases are powers of 2
318 : :
319 : : Expects that SWTCH has at least one case. */
320 : :
321 : : bool
322 : 7393 : switch_conversion::is_exp_index_transform_viable (gswitch *swtch)
323 : : {
324 : 7393 : tree index = gimple_switch_index (swtch);
325 : 7393 : tree index_type = TREE_TYPE (index);
326 : 7393 : basic_block swtch_bb = gimple_bb (swtch);
327 : 7393 : unsigned num_labels = gimple_switch_num_labels (swtch);
328 : :
329 : 7393 : optimization_type opt_type = bb_optimization_type (swtch_bb);
330 : 7393 : m_exp_index_transform_log2_type = can_log2 (index_type, opt_type);
331 : 7393 : if (!m_exp_index_transform_log2_type)
332 : : return false;
333 : :
334 : : /* Check that each case label corresponds only to one value
335 : : (no case 1..3). */
336 : : unsigned i;
337 : 55927 : for (i = 1; i < num_labels; i++)
338 : : {
339 : 49021 : tree label = gimple_switch_label (swtch, i);
340 : 49021 : if (CASE_HIGH (label))
341 : : return false;
342 : : }
343 : :
344 : : /* Check that each label is nonnegative and a power of 2. */
345 : 10274 : for (i = 1; i < num_labels; i++)
346 : : {
347 : 10200 : tree label = gimple_switch_label (swtch, i);
348 : 10200 : wide_int label_wi = wi::to_wide (CASE_LOW (label));
349 : 10200 : if (!wi::ge_p (label_wi, 0, TYPE_SIGN (index_type)))
350 : : return false;
351 : 10041 : if (wi::exact_log2 (label_wi) == -1)
352 : : return false;
353 : 10200 : }
354 : :
355 : 74 : if (dump_file)
356 : 12 : fprintf (dump_file, "Exponential index transform viable\n");
357 : :
358 : : return true;
359 : : }
360 : :
361 : : /* Perform the "exponential index transform".
362 : :
363 : : Assume that cases of SWTCH are powers of 2. The transformation replaces the
364 : : cases by their exponents (2^k -> k). It also inserts a statement that
365 : : computes the exponent of the original index variable (basically taking the
366 : : logarithm) and then sets the result as the new index variable.
367 : :
368 : : The transformation also inserts a conditional statement checking that the
369 : : incoming original index variable is a power of 2 with the false edge leading
370 : : to the default case.
371 : :
372 : : The exponential index transform shrinks the range of case numbers which
373 : : helps switch conversion convert switches it otherwise could not.
374 : :
375 : : Consider for example:
376 : :
377 : : switch (i)
378 : : {
379 : : case (1 << 0): return 0;
380 : : case (1 << 1): return 1;
381 : : case (1 << 2): return 2;
382 : : ...
383 : : case (1 << 30): return 30;
384 : : default: return 31;
385 : : }
386 : :
387 : : First, exponential index transform gets applied. Since each case becomes
388 : : case x: return x;, the rest of switch conversion is then able to get rid of
389 : : the switch statement.
390 : :
391 : : if (i is power of 2)
392 : : return log2 (i);
393 : : else
394 : : return 31;
395 : :
396 : : */
397 : :
398 : : void
399 : 21 : switch_conversion::exp_index_transform (gswitch *swtch)
400 : : {
401 : 21 : if (dump_file)
402 : 11 : fprintf (dump_file, "Applying exponential index transform\n");
403 : :
404 : 21 : tree index = gimple_switch_index (swtch);
405 : 21 : tree index_type = TREE_TYPE (index);
406 : 21 : basic_block swtch_bb = gimple_bb (swtch);
407 : 21 : unsigned num_labels = gimple_switch_num_labels (swtch);
408 : :
409 : : /* Insert a cond stmt that checks if the index variable is a power of 2. */
410 : 21 : gimple_stmt_iterator gsi = gsi_for_stmt (swtch);
411 : 21 : gsi_prev (&gsi);
412 : 21 : gimple *foo = gsi_stmt (gsi);
413 : 21 : edge new_edge1 = split_block (swtch_bb, foo);
414 : :
415 : 21 : swtch_bb = new_edge1->dest;
416 : 21 : basic_block cond_bb = new_edge1->src;
417 : 21 : new_edge1->flags |= EDGE_TRUE_VALUE;
418 : 21 : new_edge1->flags &= ~EDGE_FALLTHRU;
419 : 21 : new_edge1->probability = profile_probability::even ();
420 : :
421 : 21 : basic_block default_bb = gimple_switch_default_bb (cfun, swtch);
422 : 21 : edge new_edge2 = make_edge (cond_bb, default_bb, EDGE_FALSE_VALUE);
423 : 21 : new_edge2->probability = profile_probability::even ();
424 : :
425 : 21 : tree tmp;
426 : 21 : gimple_seq stmts = gen_pow2p (index, UNKNOWN_LOCATION, &tmp);
427 : 21 : gsi = gsi_last_bb (cond_bb);
428 : 21 : gsi_insert_seq_after (&gsi, stmts, GSI_LAST_NEW_STMT);
429 : 21 : gcond *stmt_cond = gimple_build_cond (NE_EXPR, tmp, boolean_false_node,
430 : : NULL, NULL);
431 : 21 : gsi_insert_after (&gsi, stmt_cond, GSI_NEW_STMT);
432 : :
433 : : /* We just added an edge going to default bb so fix PHI nodes in that bb:
434 : : For each PHI add new PHI arg. It will be the same arg as when comming to
435 : : the default bb from the switch bb. */
436 : 21 : edge default_edge = find_edge (swtch_bb, default_bb);
437 : 21 : for (gphi_iterator gsi = gsi_start_phis (default_bb);
438 : 33 : !gsi_end_p (gsi); gsi_next (&gsi))
439 : : {
440 : 12 : gphi *phi = gsi.phi ();
441 : 12 : tree arg = PHI_ARG_DEF_FROM_EDGE (phi, default_edge);
442 : 12 : location_t loc = gimple_phi_arg_location_from_edge (phi, default_edge);
443 : 12 : add_phi_arg (phi, arg, new_edge2, loc);
444 : : }
445 : :
446 : : /* Insert a sequence of stmts that takes the log of the index variable. */
447 : 21 : stmts = gen_log2 (index, UNKNOWN_LOCATION, &tmp,
448 : : m_exp_index_transform_log2_type);
449 : 21 : gsi = gsi_after_labels (swtch_bb);
450 : 21 : gsi_insert_seq_before (&gsi, stmts, GSI_SAME_STMT);
451 : :
452 : : /* Use the result of the logarithm as the new index variable. */
453 : 21 : gimple_switch_set_index (swtch, tmp);
454 : 21 : update_stmt (swtch);
455 : :
456 : : /* Replace each case number with its logarithm. */
457 : 21 : unsigned i;
458 : 134 : for (i = 1; i < num_labels; i++)
459 : : {
460 : 113 : tree label = gimple_switch_label (swtch, i);
461 : 226 : CASE_LOW (label) = build_int_cst (index_type,
462 : 113 : tree_log2 (CASE_LOW (label)));
463 : : }
464 : :
465 : : /* Fix the dominator tree, if it is available. */
466 : 21 : if (dom_info_available_p (CDI_DOMINATORS))
467 : : {
468 : : /* Analysis of how dominators should look after we add the edge E going
469 : : from the cond block to the default block.
470 : :
471 : : 1 For the blocks between the switch block and the final block
472 : : (excluding the final block itself): They had the switch block as
473 : : their immediate dominator. That shouldn't change.
474 : :
475 : : 2 The final block may now have the switch block or the cond block as
476 : : its immediate dominator. There's no easy way of knowing (consider
477 : : two cases where in both m_default_case_nonstandard = true, in one a
478 : : path through default intersects the final block and in one all paths
479 : : through default avoid the final block but intersect a successor of the
480 : : final block).
481 : :
482 : : 3 Other blocks that had the switch block as their immediate dominator
483 : : should now have the cond block as their immediate dominator.
484 : :
485 : : 4 Immediate dominators of the rest of the blocks shouldn't change.
486 : :
487 : : Reasoning for 3 and 4:
488 : :
489 : : We'll only consider blocks that do not fall into 1 or 2.
490 : :
491 : : Consider a block X whose original imm dom was the switch block. All
492 : : paths to X must also intersect the cond block since it's the only
493 : : pred of the switch block. The final block doesn't dominate X so at
494 : : least one path P must lead through the default block. Let P' be P but
495 : : instead of going through the switch block, take E. The switch block
496 : : doesn't dominate X so its imm dom must now be the cond block.
497 : :
498 : : Consider a block X whose original imm dom was Y != the switch block.
499 : : We only added an edge so all original paths to X are still present.
500 : : So X gained no new dominators. Observe that Y still dominates X.
501 : : There would have to be a path that avoids Y otherwise. But any block
502 : : we can avoid now except for the switch block we were able to avoid
503 : : before adding E. */
504 : :
505 : 21 : redirect_immediate_dominators (CDI_DOMINATORS, swtch_bb, cond_bb);
506 : :
507 : 21 : edge e;
508 : 21 : edge_iterator ei;
509 : 155 : FOR_EACH_EDGE (e, ei, swtch_bb->succs)
510 : : {
511 : 134 : basic_block bb = e->dest;
512 : 134 : if (bb == m_final_bb || bb == default_bb)
513 : 30 : continue;
514 : 104 : set_immediate_dominator (CDI_DOMINATORS, bb, swtch_bb);
515 : : }
516 : :
517 : 21 : vec<basic_block> v;
518 : 21 : v.create (1);
519 : 21 : v.quick_push (m_final_bb);
520 : 21 : iterate_fix_dominators (CDI_DOMINATORS, v, true);
521 : : }
522 : :
523 : : /* Update information about the switch statement. */
524 : 21 : tree first_label = gimple_switch_label (swtch, 1);
525 : 21 : tree last_label = gimple_switch_label (swtch, num_labels - 1);
526 : :
527 : 21 : m_range_min = CASE_LOW (first_label);
528 : 21 : m_range_max = CASE_LOW (last_label);
529 : 21 : m_index_expr = gimple_switch_index (swtch);
530 : 21 : m_switch_bb = swtch_bb;
531 : :
532 : 21 : m_range_size = int_const_binop (MINUS_EXPR, m_range_max, m_range_min);
533 : :
534 : 21 : m_cfg_altered = true;
535 : :
536 : 21 : m_contiguous_range = true;
537 : 21 : wide_int last_wi = wi::to_wide (CASE_LOW (first_label));
538 : 113 : for (i = 2; i < num_labels; i++)
539 : : {
540 : 92 : tree label = gimple_switch_label (swtch, i);
541 : 92 : wide_int label_wi = wi::to_wide (CASE_LOW (label));
542 : 92 : m_contiguous_range &= wi::eq_p (wi::add (last_wi, 1), label_wi);
543 : 92 : last_wi = label_wi;
544 : 92 : }
545 : :
546 : 21 : m_exp_index_transform_applied = true;
547 : 21 : }
548 : :
549 : : /* Checks whether the range given by individual case statements of the switch
550 : : switch statement isn't too big and whether the number of branches actually
551 : : satisfies the size of the new array. */
552 : :
553 : : bool
554 : 7319 : switch_conversion::check_range ()
555 : : {
556 : 7319 : gcc_assert (m_range_size);
557 : 7319 : if (!tree_fits_uhwi_p (m_range_size))
558 : : {
559 : 18 : m_reason = "index range way too large or otherwise unusable";
560 : 18 : return false;
561 : : }
562 : :
563 : 7301 : if (tree_to_uhwi (m_range_size)
564 : 7301 : > ((unsigned) m_count * param_switch_conversion_branch_ratio))
565 : : {
566 : 724 : m_reason = "the maximum range-branch ratio exceeded";
567 : 724 : return false;
568 : : }
569 : :
570 : : return true;
571 : : }
572 : :
573 : : /* Checks whether all but the final BB basic blocks are empty. */
574 : :
575 : : bool
576 : 6651 : switch_conversion::check_all_empty_except_final ()
577 : : {
578 : 6651 : edge e, e_default = find_edge (m_switch_bb, m_default_bb);
579 : 6651 : edge_iterator ei;
580 : :
581 : 21373 : FOR_EACH_EDGE (e, ei, m_switch_bb->succs)
582 : : {
583 : 20584 : if (e->dest == m_final_bb)
584 : 4449 : continue;
585 : :
586 : 16135 : if (!empty_block_p (e->dest))
587 : : {
588 : 7228 : if (m_contiguous_range && e == e_default)
589 : : {
590 : 1366 : m_default_case_nonstandard = true;
591 : 1366 : continue;
592 : : }
593 : :
594 : 5862 : m_reason = "bad case - a non-final BB not empty";
595 : 5862 : return false;
596 : : }
597 : : }
598 : :
599 : : return true;
600 : : }
601 : :
602 : : /* This function checks whether all required values in phi nodes in final_bb
603 : : are constants. Required values are those that correspond to a basic block
604 : : which is a part of the examined switch statement. It returns true if the
605 : : phi nodes are OK, otherwise false. */
606 : :
607 : : bool
608 : 789 : switch_conversion::check_final_bb ()
609 : : {
610 : 789 : gphi_iterator gsi;
611 : :
612 : 789 : m_phi_count = 0;
613 : 1565 : for (gsi = gsi_start_phis (m_final_bb); !gsi_end_p (gsi); gsi_next (&gsi))
614 : : {
615 : 863 : gphi *phi = gsi.phi ();
616 : 863 : unsigned int i;
617 : :
618 : 1726 : if (virtual_operand_p (gimple_phi_result (phi)))
619 : 17 : continue;
620 : :
621 : 846 : m_phi_count++;
622 : :
623 : 10083 : for (i = 0; i < gimple_phi_num_args (phi); i++)
624 : : {
625 : 9324 : basic_block bb = gimple_phi_arg_edge (phi, i)->src;
626 : :
627 : 9324 : if (bb == m_switch_bb
628 : 27024 : || (single_pred_p (bb)
629 : 8463 : && single_pred (bb) == m_switch_bb
630 : 8239 : && (!m_default_case_nonstandard
631 : 487 : || empty_block_p (bb))))
632 : : {
633 : 9059 : tree reloc, val;
634 : 9059 : const char *reason = NULL;
635 : :
636 : 9059 : val = gimple_phi_arg_def (phi, i);
637 : 9059 : if (!is_gimple_ip_invariant (val))
638 : : reason = "non-invariant value from a case";
639 : : else
640 : : {
641 : 9022 : reloc = initializer_constant_valid_p (val, TREE_TYPE (val));
642 : 9022 : if ((flag_pic && reloc != null_pointer_node)
643 : 8955 : || (!flag_pic && reloc == NULL_TREE))
644 : : {
645 : 67 : if (reloc)
646 : : reason
647 : : = "value from a case would need runtime relocations";
648 : : else
649 : : reason
650 : : = "value from a case is not a valid initializer";
651 : : }
652 : : }
653 : : if (reason)
654 : : {
655 : : /* For contiguous range, we can allow non-constant
656 : : or one that needs relocation, as long as it is
657 : : only reachable from the default case. */
658 : 104 : if (bb == m_switch_bb)
659 : 88 : bb = m_final_bb;
660 : 104 : if (!m_contiguous_range || bb != m_default_bb)
661 : : {
662 : 87 : m_reason = reason;
663 : 87 : return false;
664 : : }
665 : :
666 : 17 : unsigned int branch_num = gimple_switch_num_labels (m_switch);
667 : 116 : for (unsigned int i = 1; i < branch_num; i++)
668 : : {
669 : 99 : if (gimple_switch_label_bb (cfun, m_switch, i) == bb)
670 : : {
671 : 0 : m_reason = reason;
672 : 0 : return false;
673 : : }
674 : : }
675 : 17 : m_default_case_nonstandard = true;
676 : : }
677 : : }
678 : : }
679 : : }
680 : :
681 : : return true;
682 : : }
683 : :
684 : : /* The following function allocates default_values, target_{in,out}_names and
685 : : constructors arrays. The last one is also populated with pointers to
686 : : vectors that will become constructors of new arrays. */
687 : :
688 : : void
689 : 702 : switch_conversion::create_temp_arrays ()
690 : : {
691 : 702 : int i;
692 : :
693 : 702 : m_default_values = XCNEWVEC (tree, m_phi_count * 3);
694 : : /* ??? Macros do not support multi argument templates in their
695 : : argument list. We create a typedef to work around that problem. */
696 : 702 : typedef vec<constructor_elt, va_gc> *vec_constructor_elt_gc;
697 : 702 : m_constructors = XCNEWVEC (vec_constructor_elt_gc, m_phi_count);
698 : 702 : m_target_inbound_names = m_default_values + m_phi_count;
699 : 702 : m_target_outbound_names = m_target_inbound_names + m_phi_count;
700 : 1459 : for (i = 0; i < m_phi_count; i++)
701 : 757 : vec_alloc (m_constructors[i], tree_to_uhwi (m_range_size) + 1);
702 : 702 : }
703 : :
704 : : /* Populate the array of default values in the order of phi nodes.
705 : : DEFAULT_CASE is the CASE_LABEL_EXPR for the default switch branch
706 : : if the range is non-contiguous or the default case has standard
707 : : structure, otherwise it is the first non-default case instead. */
708 : :
709 : : void
710 : 702 : switch_conversion::gather_default_values (tree default_case)
711 : : {
712 : 702 : gphi_iterator gsi;
713 : 702 : basic_block bb = label_to_block (cfun, CASE_LABEL (default_case));
714 : 702 : edge e;
715 : 702 : int i = 0;
716 : :
717 : 702 : gcc_assert (CASE_LOW (default_case) == NULL_TREE
718 : : || m_default_case_nonstandard);
719 : :
720 : 702 : if (bb == m_final_bb)
721 : 211 : e = find_edge (m_switch_bb, bb);
722 : : else
723 : 491 : e = single_succ_edge (bb);
724 : :
725 : 1476 : for (gsi = gsi_start_phis (m_final_bb); !gsi_end_p (gsi); gsi_next (&gsi))
726 : : {
727 : 774 : gphi *phi = gsi.phi ();
728 : 1548 : if (virtual_operand_p (gimple_phi_result (phi)))
729 : 17 : continue;
730 : 757 : tree val = PHI_ARG_DEF_FROM_EDGE (phi, e);
731 : 757 : gcc_assert (val);
732 : 757 : m_default_values[i++] = val;
733 : : }
734 : 702 : }
735 : :
736 : : /* The following function populates the vectors in the constructors array with
737 : : future contents of the static arrays. The vectors are populated in the
738 : : order of phi nodes. */
739 : :
740 : : void
741 : 702 : switch_conversion::build_constructors ()
742 : : {
743 : 702 : unsigned i, branch_num = gimple_switch_num_labels (m_switch);
744 : 702 : tree pos = m_range_min;
745 : 702 : tree pos_one = build_int_cst (TREE_TYPE (pos), 1);
746 : :
747 : 8923 : for (i = 1; i < branch_num; i++)
748 : : {
749 : 8221 : tree cs = gimple_switch_label (m_switch, i);
750 : 8221 : basic_block bb = label_to_block (cfun, CASE_LABEL (cs));
751 : 8221 : edge e;
752 : 8221 : tree high;
753 : 8221 : gphi_iterator gsi;
754 : 8221 : int j;
755 : :
756 : 8221 : if (bb == m_final_bb)
757 : 565 : e = find_edge (m_switch_bb, bb);
758 : : else
759 : 7656 : e = single_succ_edge (bb);
760 : 8221 : gcc_assert (e);
761 : :
762 : 12001 : while (tree_int_cst_lt (pos, CASE_LOW (cs)))
763 : : {
764 : : int k;
765 : 8992 : for (k = 0; k < m_phi_count; k++)
766 : : {
767 : 5212 : constructor_elt elt;
768 : :
769 : 5212 : elt.index = int_const_binop (MINUS_EXPR, pos, m_range_min);
770 : 5212 : if (TYPE_PRECISION (TREE_TYPE (elt.index))
771 : 5212 : > TYPE_PRECISION (sizetype))
772 : 18 : elt.index = fold_convert (sizetype, elt.index);
773 : 5212 : elt.value
774 : 5212 : = unshare_expr_without_location (m_default_values[k]);
775 : 5212 : m_constructors[k]->quick_push (elt);
776 : : }
777 : :
778 : 3780 : pos = int_const_binop (PLUS_EXPR, pos, pos_one);
779 : : }
780 : 8221 : gcc_assert (tree_int_cst_equal (pos, CASE_LOW (cs)));
781 : :
782 : 8221 : j = 0;
783 : 8221 : if (CASE_HIGH (cs))
784 : 108 : high = CASE_HIGH (cs);
785 : : else
786 : 8113 : high = CASE_LOW (cs);
787 : 8221 : for (gsi = gsi_start_phis (m_final_bb);
788 : 16971 : !gsi_end_p (gsi); gsi_next (&gsi))
789 : : {
790 : 8750 : gphi *phi = gsi.phi ();
791 : 17500 : if (virtual_operand_p (gimple_phi_result (phi)))
792 : 72 : continue;
793 : 8678 : tree val = PHI_ARG_DEF_FROM_EDGE (phi, e);
794 : 8678 : tree low = CASE_LOW (cs);
795 : 8678 : pos = CASE_LOW (cs);
796 : :
797 : 9005 : do
798 : : {
799 : 9005 : constructor_elt elt;
800 : :
801 : 9005 : elt.index = int_const_binop (MINUS_EXPR, pos, m_range_min);
802 : 9005 : if (TYPE_PRECISION (TREE_TYPE (elt.index))
803 : 9005 : > TYPE_PRECISION (sizetype))
804 : 3 : elt.index = fold_convert (sizetype, elt.index);
805 : 9005 : elt.value = unshare_expr_without_location (val);
806 : 9005 : m_constructors[j]->quick_push (elt);
807 : :
808 : 9005 : pos = int_const_binop (PLUS_EXPR, pos, pos_one);
809 : 9005 : } while (!tree_int_cst_lt (high, pos)
810 : 17683 : && tree_int_cst_lt (low, pos));
811 : 8678 : j++;
812 : : }
813 : : }
814 : 702 : }
815 : :
816 : : /* If all values in the constructor vector are products of a linear function
817 : : a * x + b, then return true. When true, COEFF_A and COEFF_B and
818 : : coefficients of the linear function. Note that equal values are special
819 : : case of a linear function with a and b equal to zero. */
820 : :
821 : : bool
822 : 757 : switch_conversion::contains_linear_function_p (vec<constructor_elt, va_gc> *vec,
823 : : wide_int *coeff_a,
824 : : wide_int *coeff_b)
825 : : {
826 : 757 : unsigned int i;
827 : 757 : constructor_elt *elt;
828 : :
829 : 757 : gcc_assert (vec->length () >= 2);
830 : :
831 : : /* Let's try to find any linear function a * x + y that can apply to
832 : : given values. 'a' can be calculated as follows:
833 : :
834 : : a = (y2 - y1) / (x2 - x1) where x2 - x1 = 1 (consecutive case indices)
835 : : a = y2 - y1
836 : :
837 : : and
838 : :
839 : : b = y2 - a * x2
840 : :
841 : : */
842 : :
843 : 757 : tree elt0 = (*vec)[0].value;
844 : 757 : tree elt1 = (*vec)[1].value;
845 : :
846 : 757 : if (TREE_CODE (elt0) != INTEGER_CST || TREE_CODE (elt1) != INTEGER_CST)
847 : : return false;
848 : :
849 : 551 : wide_int range_min
850 : 551 : = wide_int::from (wi::to_wide (m_range_min),
851 : 551 : TYPE_PRECISION (TREE_TYPE (elt0)),
852 : 1653 : TYPE_SIGN (TREE_TYPE (m_range_min)));
853 : 551 : wide_int y1 = wi::to_wide (elt0);
854 : 551 : wide_int y2 = wi::to_wide (elt1);
855 : 551 : wide_int a = y2 - y1;
856 : 551 : wide_int b = y2 - a * (range_min + 1);
857 : :
858 : : /* Verify that all values fulfill the linear function. */
859 : 2150 : FOR_EACH_VEC_SAFE_ELT (vec, i, elt)
860 : : {
861 : 2059 : if (TREE_CODE (elt->value) != INTEGER_CST)
862 : 460 : return false;
863 : :
864 : 2059 : wide_int value = wi::to_wide (elt->value);
865 : 2059 : if (a * range_min + b != value)
866 : 460 : return false;
867 : :
868 : 1599 : ++range_min;
869 : 2059 : }
870 : :
871 : 91 : *coeff_a = a;
872 : 91 : *coeff_b = b;
873 : :
874 : 91 : return true;
875 : 551 : }
876 : :
877 : : /* Return type which should be used for array elements, either TYPE's
878 : : main variant or, for integral types, some smaller integral type
879 : : that can still hold all the constants. */
880 : :
881 : : tree
882 : 666 : switch_conversion::array_value_type (tree type, int num)
883 : : {
884 : 666 : unsigned int i, len = vec_safe_length (m_constructors[num]);
885 : 666 : constructor_elt *elt;
886 : 666 : int sign = 0;
887 : 666 : tree smaller_type;
888 : :
889 : : /* Types with alignments greater than their size can reach here, e.g. out of
890 : : SRA. We couldn't use these as an array component type so get back to the
891 : : main variant first, which, for our purposes, is fine for other types as
892 : : well. */
893 : :
894 : 666 : type = TYPE_MAIN_VARIANT (type);
895 : :
896 : 666 : if (!INTEGRAL_TYPE_P (type)
897 : 666 : || (TREE_CODE (type) == BITINT_TYPE
898 : 0 : && (TYPE_PRECISION (type) > MAX_FIXED_MODE_SIZE
899 : 0 : || TYPE_MODE (type) == BLKmode)))
900 : 206 : return type;
901 : :
902 : 460 : scalar_int_mode type_mode = SCALAR_INT_TYPE_MODE (type);
903 : 460 : scalar_int_mode mode = get_narrowest_mode (type_mode);
904 : 1380 : if (GET_MODE_SIZE (type_mode) <= GET_MODE_SIZE (mode))
905 : : return type;
906 : :
907 : 468 : if (len < (optimize_bb_for_size_p (gimple_bb (m_switch)) ? 2 : 32))
908 : : return type;
909 : :
910 : 2642 : FOR_EACH_VEC_SAFE_ELT (m_constructors[num], i, elt)
911 : : {
912 : 2589 : wide_int cst;
913 : :
914 : 2589 : if (TREE_CODE (elt->value) != INTEGER_CST)
915 : : return type;
916 : :
917 : 2589 : cst = wi::to_wide (elt->value);
918 : 2610 : while (1)
919 : : {
920 : 2612 : unsigned int prec = GET_MODE_BITSIZE (mode);
921 : 2610 : if (prec > HOST_BITS_PER_WIDE_INT)
922 : : return type;
923 : :
924 : 2610 : if (sign >= 0 && cst == wi::zext (cst, prec))
925 : : {
926 : 1411 : if (sign == 0 && cst == wi::sext (cst, prec))
927 : : break;
928 : 457 : sign = 1;
929 : 457 : break;
930 : : }
931 : 1199 : if (sign <= 0 && cst == wi::sext (cst, prec))
932 : : {
933 : : sign = -1;
934 : : break;
935 : : }
936 : :
937 : 23 : if (sign == 1)
938 : : sign = 0;
939 : :
940 : 46 : if (!GET_MODE_WIDER_MODE (mode).exists (&mode)
941 : 48 : || GET_MODE_SIZE (mode) >= GET_MODE_SIZE (type_mode))
942 : : return type;
943 : : }
944 : 2589 : }
945 : :
946 : 53 : if (sign == 0)
947 : 28 : sign = TYPE_UNSIGNED (type) ? 1 : -1;
948 : 53 : smaller_type = lang_hooks.types.type_for_mode (mode, sign >= 0);
949 : 53 : if (GET_MODE_SIZE (type_mode)
950 : 106 : <= GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (smaller_type)))
951 : : return type;
952 : :
953 : : return smaller_type;
954 : : }
955 : :
956 : : /* Create an appropriate array type and declaration and assemble a static
957 : : array variable. Also create a load statement that initializes
958 : : the variable in question with a value from the static array. SWTCH is
959 : : the switch statement being converted, NUM is the index to
960 : : arrays of constructors, default values and target SSA names
961 : : for this particular array. ARR_INDEX_TYPE is the type of the index
962 : : of the new array, PHI is the phi node of the final BB that corresponds
963 : : to the value that will be loaded from the created array. TIDX
964 : : is an ssa name of a temporary variable holding the index for loads from the
965 : : new array. */
966 : :
967 : : void
968 : 757 : switch_conversion::build_one_array (int num, tree arr_index_type,
969 : : gphi *phi, tree tidx)
970 : : {
971 : 757 : tree name;
972 : 757 : gimple *load;
973 : 757 : gimple_stmt_iterator gsi = gsi_for_stmt (m_switch);
974 : 757 : location_t loc = gimple_location (m_switch);
975 : :
976 : 757 : gcc_assert (m_default_values[num]);
977 : :
978 : 757 : name = copy_ssa_name (PHI_RESULT (phi));
979 : 757 : m_target_inbound_names[num] = name;
980 : :
981 : 757 : vec<constructor_elt, va_gc> *constructor = m_constructors[num];
982 : 757 : wide_int coeff_a, coeff_b;
983 : 757 : bool linear_p = contains_linear_function_p (constructor, &coeff_a, &coeff_b);
984 : 757 : tree type;
985 : 757 : if (linear_p
986 : 757 : && (type = range_check_type (TREE_TYPE ((*constructor)[0].value))))
987 : : {
988 : 108 : if (dump_file && coeff_a.to_uhwi () > 0)
989 : 16 : fprintf (dump_file, "Linear transformation with A = %" PRId64
990 : : " and B = %" PRId64 "\n", coeff_a.to_shwi (),
991 : : coeff_b.to_shwi ());
992 : :
993 : : /* We must use type of constructor values. */
994 : 91 : gimple_seq seq = NULL;
995 : 91 : tree tmp = gimple_convert (&seq, type, m_index_expr);
996 : 182 : tree tmp2 = gimple_build (&seq, MULT_EXPR, type,
997 : 91 : wide_int_to_tree (type, coeff_a), tmp);
998 : 182 : tree tmp3 = gimple_build (&seq, PLUS_EXPR, type, tmp2,
999 : 91 : wide_int_to_tree (type, coeff_b));
1000 : 91 : tree tmp4 = gimple_convert (&seq, TREE_TYPE (name), tmp3);
1001 : 91 : gsi_insert_seq_before (&gsi, seq, GSI_SAME_STMT);
1002 : 91 : load = gimple_build_assign (name, tmp4);
1003 : : }
1004 : : else
1005 : : {
1006 : 666 : tree array_type, ctor, decl, value_type, fetch, default_type;
1007 : :
1008 : 666 : default_type = TREE_TYPE (m_default_values[num]);
1009 : 666 : value_type = array_value_type (default_type, num);
1010 : 666 : array_type = build_array_type (value_type, arr_index_type);
1011 : 666 : if (default_type != value_type)
1012 : : {
1013 : : unsigned int i;
1014 : : constructor_elt *elt;
1015 : :
1016 : 3386 : FOR_EACH_VEC_SAFE_ELT (constructor, i, elt)
1017 : 3272 : elt->value = fold_convert (value_type, elt->value);
1018 : : }
1019 : 666 : ctor = build_constructor (array_type, constructor);
1020 : 666 : TREE_CONSTANT (ctor) = true;
1021 : 666 : TREE_STATIC (ctor) = true;
1022 : :
1023 : 666 : decl = build_decl (loc, VAR_DECL, NULL_TREE, array_type);
1024 : 666 : TREE_STATIC (decl) = 1;
1025 : 666 : DECL_INITIAL (decl) = ctor;
1026 : :
1027 : 666 : DECL_NAME (decl) = create_tmp_var_name ("CSWTCH");
1028 : 666 : DECL_ARTIFICIAL (decl) = 1;
1029 : 666 : DECL_IGNORED_P (decl) = 1;
1030 : 666 : TREE_CONSTANT (decl) = 1;
1031 : 666 : TREE_READONLY (decl) = 1;
1032 : 666 : DECL_IGNORED_P (decl) = 1;
1033 : : /* The decl is mergeable since we don't take the address ever and
1034 : : just reading from it. */
1035 : 666 : DECL_MERGEABLE (decl) = 1;
1036 : :
1037 : 666 : if (offloading_function_p (cfun->decl))
1038 : 0 : DECL_ATTRIBUTES (decl)
1039 : 0 : = tree_cons (get_identifier ("omp declare target"), NULL_TREE,
1040 : : NULL_TREE);
1041 : 666 : varpool_node::finalize_decl (decl);
1042 : :
1043 : 666 : fetch = build4 (ARRAY_REF, value_type, decl, tidx, NULL_TREE,
1044 : : NULL_TREE);
1045 : 666 : if (default_type != value_type)
1046 : : {
1047 : 114 : fetch = fold_convert (default_type, fetch);
1048 : 114 : fetch = force_gimple_operand_gsi (&gsi, fetch, true, NULL_TREE,
1049 : : true, GSI_SAME_STMT);
1050 : : }
1051 : 666 : load = gimple_build_assign (name, fetch);
1052 : : }
1053 : :
1054 : 757 : gsi_insert_before (&gsi, load, GSI_SAME_STMT);
1055 : 757 : update_stmt (load);
1056 : 757 : m_arr_ref_last = load;
1057 : 757 : }
1058 : :
1059 : : /* Builds and initializes static arrays initialized with values gathered from
1060 : : the switch statement. Also creates statements that load values from
1061 : : them. */
1062 : :
1063 : : void
1064 : 702 : switch_conversion::build_arrays ()
1065 : : {
1066 : 702 : tree arr_index_type;
1067 : 702 : tree tidx, sub, utype, tidxtype;
1068 : 702 : gimple *stmt;
1069 : 702 : gimple_stmt_iterator gsi;
1070 : 702 : gphi_iterator gpi;
1071 : 702 : int i;
1072 : 702 : location_t loc = gimple_location (m_switch);
1073 : :
1074 : 702 : gsi = gsi_for_stmt (m_switch);
1075 : :
1076 : : /* Make sure we do not generate arithmetics in a subrange. */
1077 : 702 : utype = TREE_TYPE (m_index_expr);
1078 : 702 : if (TREE_TYPE (utype))
1079 : 46 : utype = lang_hooks.types.type_for_mode (TYPE_MODE (TREE_TYPE (utype)), 1);
1080 : 656 : else if (TREE_CODE (utype) == BITINT_TYPE
1081 : 657 : && (TYPE_PRECISION (utype) > MAX_FIXED_MODE_SIZE
1082 : 0 : || TYPE_MODE (utype) == BLKmode))
1083 : 1 : utype = unsigned_type_for (utype);
1084 : : else
1085 : 655 : utype = lang_hooks.types.type_for_mode (TYPE_MODE (utype), 1);
1086 : 702 : if (TYPE_PRECISION (utype) > TYPE_PRECISION (sizetype))
1087 : 1 : tidxtype = sizetype;
1088 : : else
1089 : : tidxtype = utype;
1090 : :
1091 : 702 : arr_index_type = build_index_type (m_range_size);
1092 : 702 : tidx = make_ssa_name (tidxtype);
1093 : 702 : sub = fold_build2_loc (loc, MINUS_EXPR, utype,
1094 : : fold_convert_loc (loc, utype, m_index_expr),
1095 : : fold_convert_loc (loc, utype, m_range_min));
1096 : 702 : sub = fold_convert (tidxtype, sub);
1097 : 702 : sub = force_gimple_operand_gsi (&gsi, sub,
1098 : : false, NULL, true, GSI_SAME_STMT);
1099 : 702 : stmt = gimple_build_assign (tidx, sub);
1100 : :
1101 : 702 : gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
1102 : 702 : update_stmt (stmt);
1103 : 702 : m_arr_ref_first = stmt;
1104 : :
1105 : 702 : for (gpi = gsi_start_phis (m_final_bb), i = 0;
1106 : 1476 : !gsi_end_p (gpi); gsi_next (&gpi))
1107 : : {
1108 : 774 : gphi *phi = gpi.phi ();
1109 : 1548 : if (!virtual_operand_p (gimple_phi_result (phi)))
1110 : 757 : build_one_array (i++, arr_index_type, phi, tidx);
1111 : : else
1112 : : {
1113 : 17 : edge e;
1114 : 17 : edge_iterator ei;
1115 : 21 : FOR_EACH_EDGE (e, ei, m_switch_bb->succs)
1116 : : {
1117 : 21 : if (e->dest == m_final_bb)
1118 : : break;
1119 : 11 : if (!m_default_case_nonstandard
1120 : 4 : || e->dest != m_default_bb)
1121 : : {
1122 : 7 : e = single_succ_edge (e->dest);
1123 : 7 : break;
1124 : : }
1125 : : }
1126 : 17 : gcc_assert (e && e->dest == m_final_bb);
1127 : 17 : m_target_vop = PHI_ARG_DEF_FROM_EDGE (phi, e);
1128 : : }
1129 : : }
1130 : 702 : }
1131 : :
1132 : : /* Generates and appropriately inserts loads of default values at the position
1133 : : given by GSI. Returns the last inserted statement. */
1134 : :
1135 : : gassign *
1136 : 598 : switch_conversion::gen_def_assigns (gimple_stmt_iterator *gsi)
1137 : : {
1138 : 598 : int i;
1139 : 598 : gassign *assign = NULL;
1140 : :
1141 : 1239 : for (i = 0; i < m_phi_count; i++)
1142 : : {
1143 : 641 : tree name = copy_ssa_name (m_target_inbound_names[i]);
1144 : 641 : m_target_outbound_names[i] = name;
1145 : 641 : assign = gimple_build_assign (name, m_default_values[i]);
1146 : 641 : gsi_insert_before (gsi, assign, GSI_SAME_STMT);
1147 : 641 : update_stmt (assign);
1148 : : }
1149 : 598 : return assign;
1150 : : }
1151 : :
1152 : : /* Deletes the unused bbs and edges that now contain the switch statement and
1153 : : its empty branch bbs. BBD is the now dead BB containing
1154 : : the original switch statement, FINAL is the last BB of the converted
1155 : : switch statement (in terms of succession). */
1156 : :
1157 : : void
1158 : 702 : switch_conversion::prune_bbs (basic_block bbd, basic_block final,
1159 : : basic_block default_bb)
1160 : : {
1161 : 702 : edge_iterator ei;
1162 : 702 : edge e;
1163 : :
1164 : 10186 : for (ei = ei_start (bbd->succs); (e = ei_safe_edge (ei)); )
1165 : : {
1166 : 8782 : basic_block bb;
1167 : 8782 : bb = e->dest;
1168 : 8782 : remove_edge (e);
1169 : 8782 : if (bb != final && bb != default_bb)
1170 : 7987 : delete_basic_block (bb);
1171 : : }
1172 : 702 : delete_basic_block (bbd);
1173 : 702 : }
1174 : :
1175 : : /* Add values to phi nodes in final_bb for the two new edges. E1F is the edge
1176 : : from the basic block loading values from an array and E2F from the basic
1177 : : block loading default values. BBF is the last switch basic block (see the
1178 : : bbf description in the comment below). */
1179 : :
1180 : : void
1181 : 702 : switch_conversion::fix_phi_nodes (edge e1f, edge e2f, basic_block bbf)
1182 : : {
1183 : 702 : gphi_iterator gsi;
1184 : 702 : int i;
1185 : :
1186 : 702 : for (gsi = gsi_start_phis (bbf), i = 0;
1187 : 1476 : !gsi_end_p (gsi); gsi_next (&gsi))
1188 : : {
1189 : 774 : gphi *phi = gsi.phi ();
1190 : 774 : tree inbound, outbound;
1191 : 1548 : if (virtual_operand_p (gimple_phi_result (phi)))
1192 : 17 : inbound = outbound = m_target_vop;
1193 : : else
1194 : : {
1195 : 757 : inbound = m_target_inbound_names[i];
1196 : 757 : outbound = m_target_outbound_names[i++];
1197 : : }
1198 : 774 : add_phi_arg (phi, inbound, e1f, UNKNOWN_LOCATION);
1199 : 774 : if (!m_default_case_nonstandard)
1200 : 654 : add_phi_arg (phi, outbound, e2f, UNKNOWN_LOCATION);
1201 : : }
1202 : 702 : }
1203 : :
1204 : : /* Creates a check whether the switch expression value actually falls into the
1205 : : range given by all the cases. If it does not, the temporaries are loaded
1206 : : with default values instead. */
1207 : :
1208 : : void
1209 : 702 : switch_conversion::gen_inbound_check ()
1210 : : {
1211 : 702 : tree label_decl1 = create_artificial_label (UNKNOWN_LOCATION);
1212 : 702 : tree label_decl2 = create_artificial_label (UNKNOWN_LOCATION);
1213 : 702 : tree label_decl3 = create_artificial_label (UNKNOWN_LOCATION);
1214 : 702 : glabel *label1, *label2, *label3;
1215 : 702 : tree utype, tidx;
1216 : 702 : tree bound;
1217 : :
1218 : 702 : gcond *cond_stmt;
1219 : :
1220 : 702 : gassign *last_assign = NULL;
1221 : 702 : gimple_stmt_iterator gsi;
1222 : 702 : basic_block bb0, bb1, bb2, bbf, bbd;
1223 : 702 : edge e01 = NULL, e02, e21, e1d, e1f, e2f;
1224 : 702 : location_t loc = gimple_location (m_switch);
1225 : :
1226 : 702 : gcc_assert (m_default_values);
1227 : :
1228 : 702 : bb0 = gimple_bb (m_switch);
1229 : :
1230 : 702 : tidx = gimple_assign_lhs (m_arr_ref_first);
1231 : 702 : utype = TREE_TYPE (tidx);
1232 : :
1233 : : /* (end of) block 0 */
1234 : 702 : gsi = gsi_for_stmt (m_arr_ref_first);
1235 : 702 : gsi_next (&gsi);
1236 : :
1237 : 702 : bound = fold_convert_loc (loc, utype, m_range_size);
1238 : 702 : cond_stmt = gimple_build_cond (LE_EXPR, tidx, bound, NULL_TREE, NULL_TREE);
1239 : 702 : gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
1240 : 702 : update_stmt (cond_stmt);
1241 : :
1242 : : /* block 2 */
1243 : 702 : if (!m_default_case_nonstandard)
1244 : : {
1245 : 598 : label2 = gimple_build_label (label_decl2);
1246 : 598 : gsi_insert_before (&gsi, label2, GSI_SAME_STMT);
1247 : 598 : last_assign = gen_def_assigns (&gsi);
1248 : : }
1249 : :
1250 : : /* block 1 */
1251 : 702 : label1 = gimple_build_label (label_decl1);
1252 : 702 : gsi_insert_before (&gsi, label1, GSI_SAME_STMT);
1253 : :
1254 : : /* block F */
1255 : 702 : gsi = gsi_start_bb (m_final_bb);
1256 : 702 : label3 = gimple_build_label (label_decl3);
1257 : 702 : gsi_insert_before (&gsi, label3, GSI_SAME_STMT);
1258 : :
1259 : : /* cfg fix */
1260 : 702 : e02 = split_block (bb0, cond_stmt);
1261 : 702 : bb2 = e02->dest;
1262 : :
1263 : 702 : if (m_default_case_nonstandard)
1264 : : {
1265 : 104 : bb1 = bb2;
1266 : 104 : bb2 = m_default_bb;
1267 : 104 : e01 = e02;
1268 : 104 : e01->flags = EDGE_TRUE_VALUE;
1269 : 104 : e02 = make_edge (bb0, bb2, EDGE_FALSE_VALUE);
1270 : 104 : edge e_default = find_edge (bb1, bb2);
1271 : 104 : for (gphi_iterator gsi = gsi_start_phis (bb2);
1272 : 131 : !gsi_end_p (gsi); gsi_next (&gsi))
1273 : : {
1274 : 27 : gphi *phi = gsi.phi ();
1275 : 27 : tree arg = PHI_ARG_DEF_FROM_EDGE (phi, e_default);
1276 : 27 : add_phi_arg (phi, arg, e02,
1277 : : gimple_phi_arg_location_from_edge (phi, e_default));
1278 : : }
1279 : : /* Partially fix the dominator tree, if it is available. */
1280 : 104 : if (dom_info_available_p (CDI_DOMINATORS))
1281 : 104 : redirect_immediate_dominators (CDI_DOMINATORS, bb1, bb0);
1282 : : }
1283 : : else
1284 : : {
1285 : 598 : e21 = split_block (bb2, last_assign);
1286 : 598 : bb1 = e21->dest;
1287 : 598 : remove_edge (e21);
1288 : : }
1289 : :
1290 : 702 : e1d = split_block (bb1, m_arr_ref_last);
1291 : 702 : bbd = e1d->dest;
1292 : 702 : remove_edge (e1d);
1293 : :
1294 : : /* Flags and profiles of the edge for in-range values. */
1295 : 702 : if (!m_default_case_nonstandard)
1296 : 598 : e01 = make_edge (bb0, bb1, EDGE_TRUE_VALUE);
1297 : 702 : e01->probability = m_default_prob.invert ();
1298 : :
1299 : : /* Flags and profiles of the edge taking care of out-of-range values. */
1300 : 702 : e02->flags &= ~EDGE_FALLTHRU;
1301 : 702 : e02->flags |= EDGE_FALSE_VALUE;
1302 : 702 : e02->probability = m_default_prob;
1303 : :
1304 : 702 : bbf = m_final_bb;
1305 : :
1306 : 702 : e1f = make_edge (bb1, bbf, EDGE_FALLTHRU);
1307 : 702 : e1f->probability = profile_probability::always ();
1308 : :
1309 : 702 : if (m_default_case_nonstandard)
1310 : : e2f = NULL;
1311 : : else
1312 : : {
1313 : 598 : e2f = make_edge (bb2, bbf, EDGE_FALLTHRU);
1314 : 598 : e2f->probability = profile_probability::always ();
1315 : : }
1316 : :
1317 : : /* frequencies of the new BBs */
1318 : 702 : bb1->count = e01->count ();
1319 : 702 : bb2->count = e02->count ();
1320 : 702 : if (!m_default_case_nonstandard)
1321 : 598 : bbf->count = e1f->count () + e2f->count ();
1322 : :
1323 : : /* Tidy blocks that have become unreachable. */
1324 : 1529 : bool prune_default_bb = !m_default_case_nonstandard
1325 : 702 : && !m_exp_index_transform_applied;
1326 : 702 : prune_bbs (bbd, m_final_bb, prune_default_bb ? NULL : m_default_bb);
1327 : :
1328 : : /* Fixup the PHI nodes in bbF. */
1329 : 702 : fix_phi_nodes (e1f, e2f, bbf);
1330 : :
1331 : : /* Fix the dominator tree, if it is available. */
1332 : 702 : if (dom_info_available_p (CDI_DOMINATORS))
1333 : : {
1334 : 702 : vec<basic_block> bbs_to_fix_dom;
1335 : :
1336 : 702 : set_immediate_dominator (CDI_DOMINATORS, bb1, bb0);
1337 : 702 : if (!m_default_case_nonstandard)
1338 : 598 : set_immediate_dominator (CDI_DOMINATORS, bb2, bb0);
1339 : 702 : if (! get_immediate_dominator (CDI_DOMINATORS, bbf))
1340 : : /* If bbD was the immediate dominator ... */
1341 : 429 : set_immediate_dominator (CDI_DOMINATORS, bbf, bb0);
1342 : :
1343 : 717 : bbs_to_fix_dom.create (3 + (bb2 != bbf));
1344 : 702 : bbs_to_fix_dom.quick_push (bb0);
1345 : 702 : bbs_to_fix_dom.quick_push (bb1);
1346 : 702 : if (bb2 != bbf)
1347 : 687 : bbs_to_fix_dom.quick_push (bb2);
1348 : 702 : bbs_to_fix_dom.quick_push (bbf);
1349 : :
1350 : 702 : iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
1351 : 702 : bbs_to_fix_dom.release ();
1352 : : }
1353 : 702 : }
1354 : :
1355 : : /* The following function is invoked on every switch statement (the current
1356 : : one is given in SWTCH) and runs the individual phases of switch
1357 : : conversion on it one after another until one fails or the conversion
1358 : : is completed. On success, NULL is in m_reason, otherwise points
1359 : : to a string with the reason why the conversion failed. */
1360 : :
1361 : : void
1362 : 29263 : switch_conversion::expand (gswitch *swtch)
1363 : : {
1364 : : /* Group case labels so that we get the right results from the heuristics
1365 : : that decide on the code generation approach for this switch. */
1366 : 29263 : m_cfg_altered |= group_case_labels_stmt (swtch);
1367 : :
1368 : : /* If this switch is now a degenerate case with only a default label,
1369 : : there is nothing left for us to do. */
1370 : 29263 : if (gimple_switch_num_labels (swtch) < 2)
1371 : : {
1372 : 0 : m_reason = "switch is a degenerate case";
1373 : 0 : return;
1374 : : }
1375 : :
1376 : 29263 : collect (swtch);
1377 : :
1378 : : /* No error markers should reach here (they should be filtered out
1379 : : during gimplification). */
1380 : 29263 : gcc_checking_assert (TREE_TYPE (m_index_expr) != error_mark_node);
1381 : :
1382 : : /* Prefer bit test if possible. */
1383 : 29263 : if (tree_fits_uhwi_p (m_range_size)
1384 : 29193 : && bit_test_cluster::can_be_handled (tree_to_uhwi (m_range_size), m_uniq)
1385 : 44363 : && bit_test_cluster::is_beneficial (m_count, m_uniq))
1386 : : {
1387 : 3075 : m_reason = "expanding as bit test is preferable";
1388 : 3075 : return;
1389 : : }
1390 : :
1391 : 26188 : if (m_uniq <= 2)
1392 : : {
1393 : : /* This will be expanded as a decision tree . */
1394 : 7967 : m_reason = "expanding as jumps is preferable";
1395 : 7967 : return;
1396 : : }
1397 : :
1398 : : /* If there is no common successor, we cannot do the transformation. */
1399 : 18221 : if (!m_final_bb)
1400 : : {
1401 : 10828 : m_reason = "no common successor to all case label target blocks found";
1402 : 10828 : return;
1403 : : }
1404 : :
1405 : : /* Sometimes it is possible to use the "exponential index transform" to help
1406 : : switch conversion convert switches which it otherwise could not convert.
1407 : : However, we want to do this transform only when we know that switch
1408 : : conversion will then really be able to convert the switch. So we first
1409 : : check if the transformation is applicable and then maybe later do the
1410 : : transformation. */
1411 : 7393 : bool exp_transform_viable = is_exp_index_transform_viable (swtch);
1412 : :
1413 : : /* Check the case label values are within reasonable range.
1414 : :
1415 : : If we will be doing exponential index transform, the range will be always
1416 : : reasonable. */
1417 : 7393 : if (!exp_transform_viable && !check_range ())
1418 : : {
1419 : 742 : gcc_assert (m_reason);
1420 : : return;
1421 : : }
1422 : :
1423 : : /* For all the cases, see whether they are empty, the assignments they
1424 : : represent constant and so on... */
1425 : 6651 : if (!check_all_empty_except_final ())
1426 : : {
1427 : 5862 : gcc_assert (m_reason);
1428 : : return;
1429 : : }
1430 : 789 : if (!check_final_bb ())
1431 : : {
1432 : 87 : gcc_assert (m_reason);
1433 : : return;
1434 : : }
1435 : :
1436 : : /* At this point all checks have passed and we can proceed with the
1437 : : transformation. */
1438 : :
1439 : 702 : if (exp_transform_viable)
1440 : 21 : exp_index_transform (swtch);
1441 : :
1442 : 702 : create_temp_arrays ();
1443 : 1404 : gather_default_values (m_default_case_nonstandard
1444 : 104 : ? gimple_switch_label (swtch, 1)
1445 : 598 : : gimple_switch_default_label (swtch));
1446 : 702 : build_constructors ();
1447 : :
1448 : 702 : build_arrays (); /* Build the static arrays and assignments. */
1449 : 702 : gen_inbound_check (); /* Build the bounds check. */
1450 : :
1451 : 702 : m_cfg_altered = true;
1452 : : }
1453 : :
1454 : : /* Destructor. */
1455 : :
1456 : 29263 : switch_conversion::~switch_conversion ()
1457 : : {
1458 : 29263 : XDELETEVEC (m_constructors);
1459 : 29263 : XDELETEVEC (m_default_values);
1460 : 29263 : }
1461 : :
1462 : : /* Constructor. */
1463 : :
1464 : 14392 : group_cluster::group_cluster (vec<cluster *> &clusters,
1465 : 14392 : unsigned start, unsigned end)
1466 : : {
1467 : 14392 : gcc_checking_assert (end - start + 1 >= 1);
1468 : 14392 : m_prob = profile_probability::never ();
1469 : 14392 : m_cases.create (end - start + 1);
1470 : 122845 : for (unsigned i = start; i <= end; i++)
1471 : : {
1472 : 108453 : m_cases.quick_push (static_cast<simple_cluster *> (clusters[i]));
1473 : 108453 : m_prob += clusters[i]->m_prob;
1474 : : }
1475 : 14392 : m_subtree_prob = m_prob;
1476 : 14392 : }
1477 : :
1478 : : /* Destructor. */
1479 : :
1480 : 14392 : group_cluster::~group_cluster ()
1481 : : {
1482 : 122845 : for (unsigned i = 0; i < m_cases.length (); i++)
1483 : 108453 : delete m_cases[i];
1484 : :
1485 : 14392 : m_cases.release ();
1486 : 14392 : }
1487 : :
1488 : : /* Dump content of a cluster. */
1489 : :
1490 : : void
1491 : 28 : group_cluster::dump (FILE *f, bool details)
1492 : : {
1493 : 28 : unsigned total_values = 0;
1494 : 390 : for (unsigned i = 0; i < m_cases.length (); i++)
1495 : 334 : total_values += m_cases[i]->get_range (m_cases[i]->get_low (),
1496 : 167 : m_cases[i]->get_high ());
1497 : :
1498 : : unsigned comparison_count = 0;
1499 : 195 : for (unsigned i = 0; i < m_cases.length (); i++)
1500 : : {
1501 : 167 : simple_cluster *sc = static_cast<simple_cluster *> (m_cases[i]);
1502 : 279 : comparison_count += sc->get_comparison_count ();
1503 : : }
1504 : :
1505 : 28 : unsigned HOST_WIDE_INT range = get_range (get_low (), get_high ());
1506 : 46 : fprintf (f, "%s", get_type () == JUMP_TABLE ? "JT" : "BT");
1507 : :
1508 : 28 : if (details)
1509 : 0 : fprintf (f, "(values:%d comparisons:%d range:" HOST_WIDE_INT_PRINT_DEC
1510 : : " density: %.2f%%)", total_values, comparison_count, range,
1511 : 0 : 100.0f * comparison_count / range);
1512 : :
1513 : 28 : fprintf (f, ":");
1514 : 28 : PRINT_CASE (f, get_low ());
1515 : 28 : fprintf (f, "-");
1516 : 28 : PRINT_CASE (f, get_high ());
1517 : 28 : fprintf (f, " ");
1518 : 28 : }
1519 : :
1520 : : /* Emit GIMPLE code to handle the cluster. */
1521 : :
1522 : : void
1523 : 8301 : jump_table_cluster::emit (tree index_expr, tree,
1524 : : tree default_label_expr, basic_block default_bb,
1525 : : location_t loc)
1526 : : {
1527 : 8301 : tree low = get_low ();
1528 : 8301 : unsigned HOST_WIDE_INT range = get_range (low, get_high ());
1529 : 8301 : unsigned HOST_WIDE_INT nondefault_range = 0;
1530 : 8301 : bool bitint = false;
1531 : 8301 : gimple_stmt_iterator gsi = gsi_start_bb (m_case_bb);
1532 : :
1533 : : /* For large/huge _BitInt, subtract low from index_expr, cast to unsigned
1534 : : DImode type (get_range doesn't support ranges larger than 64-bits)
1535 : : and subtract low from all case values as well. */
1536 : 8301 : if (TREE_CODE (TREE_TYPE (index_expr)) == BITINT_TYPE
1537 : 8301 : && TYPE_PRECISION (TREE_TYPE (index_expr)) > GET_MODE_PRECISION (DImode))
1538 : : {
1539 : 2 : bitint = true;
1540 : 2 : tree this_low = low, type;
1541 : 2 : gimple *g;
1542 : 2 : gimple_seq seq = NULL;
1543 : 2 : if (!TYPE_OVERFLOW_WRAPS (TREE_TYPE (index_expr)))
1544 : : {
1545 : 1 : type = unsigned_type_for (TREE_TYPE (index_expr));
1546 : 1 : index_expr = gimple_convert (&seq, type, index_expr);
1547 : 1 : this_low = fold_convert (type, this_low);
1548 : : }
1549 : 2 : this_low = const_unop (NEGATE_EXPR, TREE_TYPE (this_low), this_low);
1550 : 2 : index_expr = gimple_build (&seq, PLUS_EXPR, TREE_TYPE (index_expr),
1551 : : index_expr, this_low);
1552 : 2 : type = build_nonstandard_integer_type (GET_MODE_PRECISION (DImode), 1);
1553 : 2 : g = gimple_build_cond (GT_EXPR, index_expr,
1554 : 2 : fold_convert (TREE_TYPE (index_expr),
1555 : : TYPE_MAX_VALUE (type)),
1556 : : NULL_TREE, NULL_TREE);
1557 : 2 : gimple_seq_add_stmt (&seq, g);
1558 : 2 : gimple_seq_set_location (seq, loc);
1559 : 2 : gsi_insert_seq_after (&gsi, seq, GSI_NEW_STMT);
1560 : 2 : edge e1 = split_block (m_case_bb, g);
1561 : 2 : e1->flags = EDGE_FALSE_VALUE;
1562 : 2 : e1->probability = profile_probability::likely ();
1563 : 2 : edge e2 = make_edge (e1->src, default_bb, EDGE_TRUE_VALUE);
1564 : 2 : e2->probability = e1->probability.invert ();
1565 : 2 : gsi = gsi_start_bb (e1->dest);
1566 : 2 : seq = NULL;
1567 : 2 : index_expr = gimple_convert (&seq, type, index_expr);
1568 : 2 : gimple_seq_set_location (seq, loc);
1569 : 2 : gsi_insert_seq_after (&gsi, seq, GSI_NEW_STMT);
1570 : : }
1571 : :
1572 : : /* For jump table we just emit a new gswitch statement that will
1573 : : be latter lowered to jump table. */
1574 : 8301 : auto_vec <tree> labels;
1575 : 16602 : labels.create (m_cases.length ());
1576 : :
1577 : 8301 : basic_block case_bb = gsi_bb (gsi);
1578 : 8301 : make_edge (case_bb, default_bb, 0);
1579 : 90308 : for (unsigned i = 0; i < m_cases.length (); i++)
1580 : : {
1581 : 82007 : tree lab = unshare_expr (m_cases[i]->m_case_label_expr);
1582 : 82007 : if (bitint)
1583 : : {
1584 : 13 : CASE_LOW (lab)
1585 : 13 : = fold_convert (TREE_TYPE (index_expr),
1586 : : const_binop (MINUS_EXPR,
1587 : : TREE_TYPE (CASE_LOW (lab)),
1588 : : CASE_LOW (lab), low));
1589 : 13 : if (CASE_HIGH (lab))
1590 : 0 : CASE_HIGH (lab)
1591 : 0 : = fold_convert (TREE_TYPE (index_expr),
1592 : : const_binop (MINUS_EXPR,
1593 : : TREE_TYPE (CASE_HIGH (lab)),
1594 : : CASE_HIGH (lab), low));
1595 : : }
1596 : 82007 : labels.quick_push (lab);
1597 : 82007 : make_edge (case_bb, m_cases[i]->m_case_bb, 0);
1598 : : }
1599 : :
1600 : 8301 : gswitch *s = gimple_build_switch (index_expr,
1601 : : unshare_expr (default_label_expr), labels);
1602 : 8301 : gimple_set_location (s, loc);
1603 : 8301 : gsi_insert_after (&gsi, s, GSI_NEW_STMT);
1604 : :
1605 : : /* Set up even probabilities for all cases. */
1606 : 90308 : for (unsigned i = 0; i < m_cases.length (); i++)
1607 : : {
1608 : 82007 : simple_cluster *sc = static_cast<simple_cluster *> (m_cases[i]);
1609 : 82007 : edge case_edge = find_edge (case_bb, sc->m_case_bb);
1610 : 82007 : unsigned HOST_WIDE_INT case_range
1611 : 82007 : = sc->get_range (sc->get_low (), sc->get_high ());
1612 : 82007 : nondefault_range += case_range;
1613 : :
1614 : : /* case_edge->aux is number of values in a jump-table that are covered
1615 : : by the case_edge. */
1616 : 82007 : case_edge->aux = (void *) ((intptr_t) (case_edge->aux) + case_range);
1617 : : }
1618 : :
1619 : 8301 : edge default_edge = gimple_switch_default_edge (cfun, s);
1620 : 8301 : default_edge->probability = profile_probability::never ();
1621 : :
1622 : 90308 : for (unsigned i = 0; i < m_cases.length (); i++)
1623 : : {
1624 : 82007 : simple_cluster *sc = static_cast<simple_cluster *> (m_cases[i]);
1625 : 82007 : edge case_edge = find_edge (case_bb, sc->m_case_bb);
1626 : 82007 : case_edge->probability
1627 : 82007 : = profile_probability::always ().apply_scale ((intptr_t)case_edge->aux,
1628 : : range);
1629 : : }
1630 : :
1631 : : /* Number of non-default values is probability of default edge. */
1632 : 8301 : default_edge->probability
1633 : 8301 : += profile_probability::always ().apply_scale (nondefault_range,
1634 : 8301 : range).invert ();
1635 : :
1636 : 8301 : switch_decision_tree::reset_out_edges_aux (s);
1637 : 8301 : }
1638 : :
1639 : : /* Find jump tables of given CLUSTERS, where all members of the vector
1640 : : are of type simple_cluster. New clusters are returned. */
1641 : :
1642 : : vec<cluster *>
1643 : 74513 : jump_table_cluster::find_jump_tables (vec<cluster *> &clusters)
1644 : : {
1645 : 74513 : if (!is_enabled ())
1646 : 15264 : return clusters.copy ();
1647 : :
1648 : 59249 : unsigned l = clusters.length ();
1649 : :
1650 : 59249 : auto_vec<min_cluster_item> min;
1651 : 59249 : min.reserve (l + 1);
1652 : :
1653 : 59249 : min.quick_push (min_cluster_item (0, 0, 0));
1654 : :
1655 : 59249 : unsigned HOST_WIDE_INT max_ratio
1656 : 59249 : = (optimize_insn_for_size_p ()
1657 : 59249 : ? param_jump_table_max_growth_ratio_for_size
1658 : 59249 : : param_jump_table_max_growth_ratio_for_speed);
1659 : :
1660 : 269896 : for (unsigned i = 1; i <= l; i++)
1661 : : {
1662 : : /* Set minimal # of clusters with i-th item to infinite. */
1663 : 210647 : min.quick_push (min_cluster_item (INT_MAX, INT_MAX, INT_MAX));
1664 : :
1665 : : /* Pre-calculate number of comparisons for the clusters. */
1666 : 210647 : HOST_WIDE_INT comparison_count = 0;
1667 : 6980271 : for (unsigned k = 0; k <= i - 1; k++)
1668 : : {
1669 : 6769624 : simple_cluster *sc = static_cast<simple_cluster *> (clusters[k]);
1670 : 13349373 : comparison_count += sc->get_comparison_count ();
1671 : : }
1672 : :
1673 : 6980271 : for (unsigned j = 0; j < i; j++)
1674 : : {
1675 : 6769624 : unsigned HOST_WIDE_INT s = min[j].m_non_jt_cases;
1676 : 13538884 : if (i - j < case_values_threshold ())
1677 : 526379 : s += i - j;
1678 : :
1679 : : /* Prefer clusters with smaller number of numbers covered. */
1680 : 6769624 : if ((min[j].m_count + 1 < min[i].m_count
1681 : 1820449 : || (min[j].m_count + 1 == min[i].m_count
1682 : 977 : && s < min[i].m_non_jt_cases))
1683 : 6769661 : && can_be_handled (clusters, j, i - 1, max_ratio,
1684 : : comparison_count))
1685 : 210673 : min[i] = min_cluster_item (min[j].m_count + 1, j, s);
1686 : :
1687 : 6769624 : simple_cluster *sc = static_cast<simple_cluster *> (clusters[j]);
1688 : 13349373 : comparison_count -= sc->get_comparison_count ();
1689 : : }
1690 : :
1691 : 210647 : gcc_checking_assert (comparison_count == 0);
1692 : 210647 : gcc_checking_assert (min[i].m_count != INT_MAX);
1693 : : }
1694 : :
1695 : : /* No result. */
1696 : 59249 : if (min[l].m_count == l)
1697 : 8405 : return clusters.copy ();
1698 : :
1699 : 50844 : vec<cluster *> output;
1700 : 50844 : output.create (4);
1701 : :
1702 : : /* Find and build the clusters. */
1703 : 50844 : for (unsigned int end = l;;)
1704 : : {
1705 : 57736 : int start = min[end].m_start;
1706 : :
1707 : : /* Do not allow clusters with small number of cases. */
1708 : 57736 : if (is_beneficial (clusters, start, end - 1))
1709 : 9031 : output.safe_push (new jump_table_cluster (clusters, start, end - 1));
1710 : : else
1711 : 151619 : for (int i = end - 1; i >= start; i--)
1712 : 102914 : output.safe_push (clusters[i]);
1713 : :
1714 : 57736 : end = start;
1715 : :
1716 : 57736 : if (start <= 0)
1717 : : break;
1718 : : }
1719 : :
1720 : 50844 : output.reverse ();
1721 : 50844 : return output;
1722 : 59249 : }
1723 : :
1724 : : /* Return true when cluster starting at START and ending at END (inclusive)
1725 : : can build a jump-table. */
1726 : :
1727 : : bool
1728 : 4949212 : jump_table_cluster::can_be_handled (const vec<cluster *> &clusters,
1729 : : unsigned start, unsigned end,
1730 : : unsigned HOST_WIDE_INT max_ratio,
1731 : : unsigned HOST_WIDE_INT comparison_count)
1732 : : {
1733 : : /* If the switch is relatively small such that the cost of one
1734 : : indirect jump on the target are higher than the cost of a
1735 : : decision tree, go with the decision tree.
1736 : :
1737 : : If range of values is much bigger than number of values,
1738 : : or if it is too large to represent in a HOST_WIDE_INT,
1739 : : make a sequence of conditional branches instead of a dispatch.
1740 : :
1741 : : The definition of "much bigger" depends on whether we are
1742 : : optimizing for size or for speed.
1743 : :
1744 : : For algorithm correctness, jump table for a single case must return
1745 : : true. We bail out in is_beneficial if it's called just for
1746 : : a single case. */
1747 : 4949212 : if (start == end)
1748 : : return true;
1749 : :
1750 : 9739960 : unsigned HOST_WIDE_INT range = get_range (clusters[start]->get_low (),
1751 : 4869980 : clusters[end]->get_high ());
1752 : : /* Check overflow. */
1753 : 4869980 : if (range == 0)
1754 : : return false;
1755 : :
1756 : 4866696 : if (range > HOST_WIDE_INT_M1U / 100)
1757 : : return false;
1758 : :
1759 : 656538 : unsigned HOST_WIDE_INT lhs = 100 * range;
1760 : 656538 : if (lhs < range)
1761 : : return false;
1762 : :
1763 : 656538 : return lhs <= max_ratio * comparison_count;
1764 : : }
1765 : :
1766 : : /* Return true if cluster starting at START and ending at END (inclusive)
1767 : : is profitable transformation. */
1768 : :
1769 : : bool
1770 : 57736 : jump_table_cluster::is_beneficial (const vec<cluster *> &,
1771 : : unsigned start, unsigned end)
1772 : : {
1773 : : /* Single case bail out. */
1774 : 57736 : if (start == end)
1775 : : return false;
1776 : :
1777 : 103104 : return end - start + 1 >= case_values_threshold ();
1778 : : }
1779 : :
1780 : : /* Find bit tests of given CLUSTERS, where all members of the vector
1781 : : are of type simple_cluster. MAX_C is the approx max number of cases per
1782 : : label. New clusters are returned. */
1783 : :
1784 : : vec<cluster *>
1785 : 76030 : bit_test_cluster::find_bit_tests (vec<cluster *> &clusters, int max_c)
1786 : : {
1787 : 76030 : if (!is_enabled () || max_c == 1)
1788 : 37412 : return clusters.copy ();
1789 : :
1790 : : /* Dynamic programming algorithm.
1791 : :
1792 : : In: List of simple clusters
1793 : : Out: List of simple clusters and bit test clusters such that each bit test
1794 : : cluster can_be_handled() and is_beneficial()
1795 : :
1796 : : Tries to merge consecutive clusters into bigger (bit test) ones. Tries to
1797 : : end up with as few clusters as possible. */
1798 : :
1799 : 38618 : unsigned l = clusters.length ();
1800 : :
1801 : 38617 : if (l == 0)
1802 : 1 : return clusters.copy ();
1803 : 38617 : gcc_checking_assert (l <= INT_MAX);
1804 : :
1805 : 38617 : auto_vec<min_cluster_item> min;
1806 : 38617 : min.reserve (l + 1);
1807 : :
1808 : 38617 : int bits_in_word = GET_MODE_BITSIZE (word_mode);
1809 : :
1810 : : /* First phase: Compute the minimum number of clusters for each prefix of the
1811 : : input list incrementally
1812 : :
1813 : : min[i] = (count, j, _) means that the prefix ending with the (i-1)-th
1814 : : element can be made to contain as few as count clusters and that in such
1815 : : clustering the last cluster is made up of input clusters [j, i-1]
1816 : : (inclusive). */
1817 : 38617 : min.quick_push (min_cluster_item (0, 0, INT_MAX));
1818 : 38617 : min.quick_push (min_cluster_item (1, 0, INT_MAX));
1819 : 129835 : for (int i = 2; i <= (int) l; i++)
1820 : : {
1821 : 91218 : auto_vec<unsigned, m_max_case_bit_tests> unique_labels;
1822 : :
1823 : : /* Since each cluster contains at least one case number and one bit test
1824 : : cluster can cover at most bits_in_word case numbers, we don't need to
1825 : : look farther than bits_in_word clusters back. */
1826 : 374746 : for (int j = i - 1; j >= 0 && j >= i - bits_in_word; j--)
1827 : : {
1828 : : /* Consider creating a bit test cluster from input clusters [j, i-1]
1829 : : (inclusive) */
1830 : :
1831 : 312657 : simple_cluster *sc = static_cast<simple_cluster *> (clusters[j]);
1832 : 312657 : unsigned label = sc->m_case_bb->index;
1833 : 312657 : if (!unique_labels.contains (label))
1834 : : {
1835 : 231966 : if (unique_labels.length () >= m_max_case_bit_tests)
1836 : : /* is_beneficial() will be false for this and the following
1837 : : iterations. */
1838 : : break;
1839 : 202837 : unique_labels.quick_push (label);
1840 : : }
1841 : :
1842 : 283528 : unsigned new_count = min[j].m_count + 1;
1843 : :
1844 : 283528 : if (j == i - 1)
1845 : : {
1846 : 91218 : min.quick_push (min_cluster_item (new_count, j, INT_MAX));
1847 : 91218 : continue;
1848 : : }
1849 : :
1850 : 192310 : unsigned HOST_WIDE_INT range
1851 : 192310 : = get_range (clusters[j]->get_low (), clusters[i-1]->get_high ());
1852 : 192310 : if (new_count < min[i].m_count
1853 : 170716 : && can_be_handled (range, unique_labels.length ())
1854 : 331991 : && is_beneficial (i - j, unique_labels.length ()))
1855 : 9289 : min[i] = min_cluster_item (new_count, j, INT_MAX);
1856 : : }
1857 : 91218 : }
1858 : :
1859 : 38617 : if (min[l].m_count == l)
1860 : : /* No bit test clustering opportunities. */
1861 : 33787 : return clusters.copy ();
1862 : :
1863 : 4830 : vec<cluster *> output;
1864 : 4830 : output.create (4);
1865 : :
1866 : : /* Second phase: Find and build the bit test clusters by traversing min
1867 : : array backwards. */
1868 : 4830 : for (unsigned end = l;;)
1869 : : {
1870 : 9574 : unsigned start = min[end].m_start;
1871 : 9574 : gcc_checking_assert (start < end);
1872 : :
1873 : : /* This cluster will be made out of input clusters [start, end - 1]. */
1874 : :
1875 : 9574 : if (start == end - 1)
1876 : : /* Let the cluster be a simple cluster. */
1877 : 4213 : output.safe_push (clusters[start]);
1878 : : else
1879 : : {
1880 : 5361 : bool entire = start == 0 && end == l;
1881 : 5361 : output.safe_push (new bit_test_cluster (clusters, start, end - 1,
1882 : 5361 : entire));
1883 : : }
1884 : :
1885 : 9574 : end = start;
1886 : :
1887 : 9574 : if (start <= 0)
1888 : : break;
1889 : : }
1890 : :
1891 : 4830 : output.reverse ();
1892 : 4830 : return output;
1893 : 38617 : }
1894 : :
1895 : : /* Return true when RANGE of case values with UNIQ labels
1896 : : can build a bit test. */
1897 : :
1898 : : bool
1899 : 199909 : bit_test_cluster::can_be_handled (unsigned HOST_WIDE_INT range,
1900 : : unsigned int uniq)
1901 : : {
1902 : : /* Check overflow. */
1903 : 199909 : if (range == 0)
1904 : : return false;
1905 : :
1906 : 395810 : if (range > GET_MODE_BITSIZE (word_mode))
1907 : : return false;
1908 : :
1909 : 165764 : return uniq <= m_max_case_bit_tests;
1910 : : }
1911 : :
1912 : : /* Return true when COUNT of cases of UNIQ labels is beneficial for bit test
1913 : : transformation. */
1914 : :
1915 : : bool
1916 : 154781 : bit_test_cluster::is_beneficial (unsigned count, unsigned uniq)
1917 : : {
1918 : : /* NOTE: When modifying this, keep in mind the value of
1919 : : m_max_case_bit_tests. */
1920 : 154781 : return (((uniq == 1 && count >= 3)
1921 : 145673 : || (uniq == 2 && count >= 5)
1922 : 298863 : || (uniq == 3 && count >= 6)));
1923 : : }
1924 : :
1925 : : /* Comparison function for qsort to order bit tests by decreasing
1926 : : probability of execution. */
1927 : :
1928 : : int
1929 : 8605 : case_bit_test::cmp (const void *p1, const void *p2)
1930 : : {
1931 : 8605 : const case_bit_test *const d1 = (const case_bit_test *) p1;
1932 : 8605 : const case_bit_test *const d2 = (const case_bit_test *) p2;
1933 : :
1934 : 8605 : if (d2->bits != d1->bits)
1935 : 7575 : return d2->bits - d1->bits;
1936 : :
1937 : : /* Stabilize the sort. */
1938 : 1030 : return (LABEL_DECL_UID (CASE_LABEL (d2->label))
1939 : 1030 : - LABEL_DECL_UID (CASE_LABEL (d1->label)));
1940 : : }
1941 : :
1942 : : /* Expand a switch statement by a short sequence of bit-wise
1943 : : comparisons. "switch(x)" is effectively converted into
1944 : : "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
1945 : : integer constants.
1946 : :
1947 : : INDEX_EXPR is the value being switched on.
1948 : :
1949 : : MINVAL is the lowest case value of in the case nodes,
1950 : : and RANGE is highest value minus MINVAL. MINVAL and RANGE
1951 : : are not guaranteed to be of the same type as INDEX_EXPR
1952 : : (the gimplifier doesn't change the type of case label values,
1953 : : and MINVAL and RANGE are derived from those values).
1954 : : MAXVAL is MINVAL + RANGE.
1955 : :
1956 : : There *MUST* be max_case_bit_tests or less unique case
1957 : : node targets. */
1958 : :
1959 : : void
1960 : 4322 : bit_test_cluster::emit (tree index_expr, tree index_type,
1961 : : tree, basic_block default_bb, location_t loc)
1962 : : {
1963 : 25932 : case_bit_test test[m_max_case_bit_tests] = { {} };
1964 : 4322 : unsigned int i, j, k;
1965 : 4322 : unsigned int count;
1966 : :
1967 : 4322 : tree unsigned_index_type = range_check_type (index_type);
1968 : :
1969 : 4322 : gimple_stmt_iterator gsi;
1970 : 4322 : gassign *shift_stmt;
1971 : :
1972 : 4322 : tree idx, tmp, csui;
1973 : 4322 : tree word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
1974 : 4322 : tree word_mode_zero = fold_convert (word_type_node, integer_zero_node);
1975 : 4322 : tree word_mode_one = fold_convert (word_type_node, integer_one_node);
1976 : 4322 : int prec = TYPE_PRECISION (word_type_node);
1977 : 4322 : wide_int wone = wi::one (prec);
1978 : :
1979 : 4322 : tree minval = get_low ();
1980 : 4322 : tree maxval = get_high ();
1981 : :
1982 : : /* Go through all case labels, and collect the case labels, profile
1983 : : counts, and other information we need to build the branch tests. */
1984 : 4322 : count = 0;
1985 : 22496 : for (i = 0; i < m_cases.length (); i++)
1986 : : {
1987 : 18174 : unsigned int lo, hi;
1988 : 18174 : simple_cluster *n = static_cast<simple_cluster *> (m_cases[i]);
1989 : 22933 : for (k = 0; k < count; k++)
1990 : 16921 : if (n->m_case_bb == test[k].target_bb)
1991 : : break;
1992 : :
1993 : 18174 : if (k == count)
1994 : : {
1995 : 6012 : gcc_checking_assert (count < m_max_case_bit_tests);
1996 : 6012 : test[k].mask = wi::zero (prec);
1997 : 6012 : test[k].target_bb = n->m_case_bb;
1998 : 6012 : test[k].label = n->m_case_label_expr;
1999 : 6012 : test[k].bits = 0;
2000 : 6012 : test[k].prob = profile_probability::never ();
2001 : 6012 : count++;
2002 : : }
2003 : :
2004 : 18174 : test[k].bits += n->get_range (n->get_low (), n->get_high ());
2005 : 18174 : test[k].prob += n->m_prob;
2006 : :
2007 : 18174 : lo = tree_to_uhwi (int_const_binop (MINUS_EXPR, n->get_low (), minval));
2008 : 18174 : if (n->get_high () == NULL_TREE)
2009 : : hi = lo;
2010 : : else
2011 : 18174 : hi = tree_to_uhwi (int_const_binop (MINUS_EXPR, n->get_high (),
2012 : : minval));
2013 : :
2014 : 42691 : for (j = lo; j <= hi; j++)
2015 : 24517 : test[k].mask |= wi::lshift (wone, j);
2016 : : }
2017 : :
2018 : 4322 : qsort (test, count, sizeof (*test), case_bit_test::cmp);
2019 : :
2020 : : /* If every possible relative value of the index expression is a valid shift
2021 : : amount, then we can merge the entry test in the bit test. */
2022 : 4322 : bool entry_test_needed;
2023 : 4322 : int_range_max r;
2024 : 8644 : if (TREE_CODE (index_expr) == SSA_NAME
2025 : 8644 : && get_range_query (cfun)->range_of_expr (r, index_expr)
2026 : 4322 : && !r.undefined_p ()
2027 : 4321 : && !r.varying_p ()
2028 : 10027 : && wi::leu_p (r.upper_bound () - r.lower_bound (), prec - 1))
2029 : : {
2030 : 61 : wide_int min = r.lower_bound ();
2031 : 61 : wide_int max = r.upper_bound ();
2032 : 61 : tree index_type = TREE_TYPE (index_expr);
2033 : 61 : minval = fold_convert (index_type, minval);
2034 : 61 : wide_int iminval = wi::to_wide (minval);
2035 : 61 : if (wi::lt_p (min, iminval, TYPE_SIGN (index_type)))
2036 : : {
2037 : 56 : minval = wide_int_to_tree (index_type, min);
2038 : 179 : for (i = 0; i < count; i++)
2039 : 123 : test[i].mask = wi::lshift (test[i].mask, iminval - min);
2040 : : }
2041 : 5 : else if (wi::gt_p (min, iminval, TYPE_SIGN (index_type)))
2042 : : {
2043 : 0 : minval = wide_int_to_tree (index_type, min);
2044 : 0 : for (i = 0; i < count; i++)
2045 : 0 : test[i].mask = wi::lrshift (test[i].mask, min - iminval);
2046 : : }
2047 : 61 : maxval = wide_int_to_tree (index_type, max);
2048 : 61 : entry_test_needed = false;
2049 : 61 : }
2050 : : else
2051 : : entry_test_needed = true;
2052 : :
2053 : : /* If all values are in the 0 .. BITS_PER_WORD-1 range, we can get rid of
2054 : : the minval subtractions, but it might make the mask constants more
2055 : : expensive. So, compare the costs. */
2056 : 4322 : if (compare_tree_int (minval, 0) > 0 && compare_tree_int (maxval, prec) < 0)
2057 : : {
2058 : 2259 : int cost_diff;
2059 : 2259 : HOST_WIDE_INT m = tree_to_uhwi (minval);
2060 : 2259 : rtx reg = gen_raw_REG (word_mode, 10000);
2061 : 2259 : bool speed_p = optimize_insn_for_speed_p ();
2062 : 2259 : cost_diff = set_src_cost (gen_rtx_PLUS (word_mode, reg,
2063 : : GEN_INT (-m)),
2064 : : word_mode, speed_p);
2065 : 4868 : for (i = 0; i < count; i++)
2066 : : {
2067 : 2609 : rtx r = immed_wide_int_const (test[i].mask, word_mode);
2068 : 2609 : cost_diff += set_src_cost (gen_rtx_AND (word_mode, reg, r),
2069 : : word_mode, speed_p);
2070 : 2609 : r = immed_wide_int_const (wi::lshift (test[i].mask, m), word_mode);
2071 : 2609 : cost_diff -= set_src_cost (gen_rtx_AND (word_mode, reg, r),
2072 : : word_mode, speed_p);
2073 : : }
2074 : 2259 : if (cost_diff > 0)
2075 : : {
2076 : 4136 : for (i = 0; i < count; i++)
2077 : 2212 : test[i].mask = wi::lshift (test[i].mask, m);
2078 : 1924 : minval = build_zero_cst (TREE_TYPE (minval));
2079 : : }
2080 : : }
2081 : :
2082 : : /* Now build the test-and-branch code. */
2083 : :
2084 : 4322 : gsi = gsi_last_bb (m_case_bb);
2085 : :
2086 : : /* idx = (unsigned)x - minval. */
2087 : 4322 : idx = fold_convert_loc (loc, unsigned_index_type, index_expr);
2088 : 4322 : idx = fold_build2_loc (loc, MINUS_EXPR, unsigned_index_type, idx,
2089 : : fold_convert_loc (loc, unsigned_index_type, minval));
2090 : 4322 : idx = force_gimple_operand_gsi (&gsi, idx,
2091 : : /*simple=*/true, NULL_TREE,
2092 : : /*before=*/true, GSI_SAME_STMT);
2093 : :
2094 : 4322 : profile_probability subtree_prob = m_subtree_prob;
2095 : 4322 : profile_probability default_prob = m_default_prob;
2096 : 4322 : if (!default_prob.initialized_p ())
2097 : 2761 : default_prob = m_subtree_prob.invert ();
2098 : :
2099 : 4322 : if (m_handles_entire_switch && entry_test_needed)
2100 : : {
2101 : 2720 : tree range = int_const_binop (MINUS_EXPR, maxval, minval);
2102 : : /* if (idx > range) goto default */
2103 : 2720 : range
2104 : 2720 : = force_gimple_operand_gsi (&gsi,
2105 : : fold_convert (unsigned_index_type, range),
2106 : : /*simple=*/true, NULL_TREE,
2107 : : /*before=*/true, GSI_SAME_STMT);
2108 : 2720 : tmp = fold_build2 (GT_EXPR, boolean_type_node, idx, range);
2109 : 2720 : default_prob = default_prob / 2;
2110 : 2720 : basic_block new_bb
2111 : 2720 : = hoist_edge_and_branch_if_true (&gsi, tmp, default_bb,
2112 : : default_prob, loc);
2113 : 5440 : gsi = gsi_last_bb (new_bb);
2114 : : }
2115 : :
2116 : 4322 : tmp = fold_build2_loc (loc, LSHIFT_EXPR, word_type_node, word_mode_one,
2117 : : fold_convert_loc (loc, word_type_node, idx));
2118 : :
2119 : : /* csui = (1 << (word_mode) idx) */
2120 : 4322 : if (count > 1)
2121 : : {
2122 : 1075 : csui = make_ssa_name (word_type_node);
2123 : 1075 : tmp = force_gimple_operand_gsi (&gsi, tmp,
2124 : : /*simple=*/false, NULL_TREE,
2125 : : /*before=*/true, GSI_SAME_STMT);
2126 : 1075 : shift_stmt = gimple_build_assign (csui, tmp);
2127 : 1075 : gsi_insert_before (&gsi, shift_stmt, GSI_SAME_STMT);
2128 : 1075 : update_stmt (shift_stmt);
2129 : : }
2130 : : else
2131 : : csui = tmp;
2132 : :
2133 : : /* for each unique set of cases:
2134 : : if (const & csui) goto target */
2135 : 10334 : for (k = 0; k < count; k++)
2136 : : {
2137 : 6012 : profile_probability prob = test[k].prob / (subtree_prob + default_prob);
2138 : 6012 : subtree_prob -= test[k].prob;
2139 : 6012 : tmp = wide_int_to_tree (word_type_node, test[k].mask);
2140 : 6012 : tmp = fold_build2_loc (loc, BIT_AND_EXPR, word_type_node, csui, tmp);
2141 : 6012 : tmp = fold_build2_loc (loc, NE_EXPR, boolean_type_node,
2142 : : tmp, word_mode_zero);
2143 : 6012 : tmp = force_gimple_operand_gsi (&gsi, tmp,
2144 : : /*simple=*/true, NULL_TREE,
2145 : : /*before=*/true, GSI_SAME_STMT);
2146 : 6012 : basic_block new_bb
2147 : 6012 : = hoist_edge_and_branch_if_true (&gsi, tmp, test[k].target_bb,
2148 : : prob, loc);
2149 : 12024 : gsi = gsi_last_bb (new_bb);
2150 : : }
2151 : :
2152 : : /* We should have removed all edges now. */
2153 : 4322 : gcc_assert (EDGE_COUNT (gsi_bb (gsi)->succs) == 0);
2154 : :
2155 : : /* If nothing matched, go to the default label. */
2156 : 4322 : edge e = make_edge (gsi_bb (gsi), default_bb, EDGE_FALLTHRU);
2157 : 4322 : e->probability = profile_probability::always ();
2158 : 17288 : }
2159 : :
2160 : : /* Split the basic block at the statement pointed to by GSIP, and insert
2161 : : a branch to the target basic block of E_TRUE conditional on tree
2162 : : expression COND.
2163 : :
2164 : : It is assumed that there is already an edge from the to-be-split
2165 : : basic block to E_TRUE->dest block. This edge is removed, and the
2166 : : profile information on the edge is re-used for the new conditional
2167 : : jump.
2168 : :
2169 : : The CFG is updated. The dominator tree will not be valid after
2170 : : this transformation, but the immediate dominators are updated if
2171 : : UPDATE_DOMINATORS is true.
2172 : :
2173 : : Returns the newly created basic block. */
2174 : :
2175 : : basic_block
2176 : 8732 : bit_test_cluster::hoist_edge_and_branch_if_true (gimple_stmt_iterator *gsip,
2177 : : tree cond, basic_block case_bb,
2178 : : profile_probability prob,
2179 : : location_t loc)
2180 : : {
2181 : 8732 : tree tmp;
2182 : 8732 : gcond *cond_stmt;
2183 : 8732 : edge e_false;
2184 : 8732 : basic_block new_bb, split_bb = gsi_bb (*gsip);
2185 : :
2186 : 8732 : edge e_true = make_edge (split_bb, case_bb, EDGE_TRUE_VALUE);
2187 : 8732 : e_true->probability = prob;
2188 : 8732 : gcc_assert (e_true->src == split_bb);
2189 : :
2190 : 8732 : tmp = force_gimple_operand_gsi (gsip, cond, /*simple=*/true, NULL,
2191 : : /*before=*/true, GSI_SAME_STMT);
2192 : 8732 : cond_stmt = gimple_build_cond_from_tree (tmp, NULL_TREE, NULL_TREE);
2193 : 8732 : gimple_set_location (cond_stmt, loc);
2194 : 8732 : gsi_insert_before (gsip, cond_stmt, GSI_SAME_STMT);
2195 : :
2196 : 8732 : e_false = split_block (split_bb, cond_stmt);
2197 : 8732 : new_bb = e_false->dest;
2198 : 8732 : redirect_edge_pred (e_true, split_bb);
2199 : :
2200 : 8732 : e_false->flags &= ~EDGE_FALLTHRU;
2201 : 8732 : e_false->flags |= EDGE_FALSE_VALUE;
2202 : 8732 : e_false->probability = e_true->probability.invert ();
2203 : 8732 : new_bb->count = e_false->count ();
2204 : :
2205 : 8732 : return new_bb;
2206 : : }
2207 : :
2208 : : /* Compute the number of case labels that correspond to each outgoing edge of
2209 : : switch statement. Record this information in the aux field of the edge.
2210 : : Return the approx max number of cases per edge. */
2211 : :
2212 : : int
2213 : 47801 : switch_decision_tree::compute_cases_per_edge ()
2214 : : {
2215 : 47801 : int max_c = 0;
2216 : 47801 : reset_out_edges_aux (m_switch);
2217 : 47801 : int ncases = gimple_switch_num_labels (m_switch);
2218 : 308820 : for (int i = ncases - 1; i >= 1; --i)
2219 : : {
2220 : 261019 : edge case_edge = gimple_switch_edge (cfun, m_switch, i);
2221 : 261019 : case_edge->aux = (void *) ((intptr_t) (case_edge->aux) + 1);
2222 : : /* For a range case add one extra. That's enough for the bit
2223 : : cluster heuristic. */
2224 : 261019 : if ((intptr_t)case_edge->aux > max_c)
2225 : 147852 : max_c = (intptr_t)case_edge->aux +
2226 : 73926 : !!CASE_HIGH (gimple_switch_label (m_switch, i));
2227 : : }
2228 : 47801 : return max_c;
2229 : : }
2230 : :
2231 : : /* Analyze switch statement and return true when the statement is expanded
2232 : : as decision tree. */
2233 : :
2234 : : bool
2235 : 47801 : switch_decision_tree::analyze_switch_statement ()
2236 : : {
2237 : 47801 : unsigned l = gimple_switch_num_labels (m_switch);
2238 : 47801 : basic_block bb = gimple_bb (m_switch);
2239 : 47801 : auto_vec<cluster *> clusters;
2240 : 47801 : clusters.create (l - 1);
2241 : :
2242 : 47801 : basic_block default_bb = gimple_switch_default_bb (cfun, m_switch);
2243 : 47801 : m_case_bbs.reserve (l);
2244 : 47801 : m_case_bbs.quick_push (default_bb);
2245 : :
2246 : 47801 : int max_c = compute_cases_per_edge ();
2247 : :
2248 : 308820 : for (unsigned i = 1; i < l; i++)
2249 : : {
2250 : 261019 : tree elt = gimple_switch_label (m_switch, i);
2251 : 261019 : tree lab = CASE_LABEL (elt);
2252 : 261019 : basic_block case_bb = label_to_block (cfun, lab);
2253 : 261019 : edge case_edge = find_edge (bb, case_bb);
2254 : 261019 : tree low = CASE_LOW (elt);
2255 : 261019 : tree high = CASE_HIGH (elt);
2256 : :
2257 : 261019 : profile_probability p
2258 : 261019 : = case_edge->probability / ((intptr_t) (case_edge->aux));
2259 : 261019 : clusters.quick_push (new simple_cluster (low, high, elt, case_edge->dest,
2260 : 261019 : p));
2261 : 261019 : m_case_bbs.quick_push (case_edge->dest);
2262 : : }
2263 : :
2264 : 47801 : reset_out_edges_aux (m_switch);
2265 : :
2266 : : /* Find bit-test clusters. */
2267 : 47801 : vec<cluster *> output = bit_test_cluster::find_bit_tests (clusters, max_c);
2268 : :
2269 : : /* Find jump table clusters. We are looking for these in the sequences of
2270 : : simple clusters which we didn't manage to convert into bit-test
2271 : : clusters. */
2272 : 47801 : vec<cluster *> output2;
2273 : 47801 : auto_vec<cluster *> tmp;
2274 : 47801 : output2.create (1);
2275 : 47801 : tmp.create (1);
2276 : :
2277 : 294968 : for (unsigned i = 0; i < output.length (); i++)
2278 : : {
2279 : 247167 : cluster *c = output[i];
2280 : 247167 : if (c->get_type () != SIMPLE_CASE)
2281 : : {
2282 : 4322 : if (!tmp.is_empty ())
2283 : : {
2284 : 1019 : vec<cluster *> n = jump_table_cluster::find_jump_tables (tmp);
2285 : 1019 : output2.safe_splice (n);
2286 : 1019 : n.release ();
2287 : 1019 : tmp.truncate (0);
2288 : : }
2289 : 4322 : output2.safe_push (c);
2290 : : }
2291 : : else
2292 : 242845 : tmp.safe_push (c);
2293 : : }
2294 : :
2295 : : /* We still can have a temporary vector to test. */
2296 : 47801 : if (!tmp.is_empty ())
2297 : : {
2298 : 44541 : vec<cluster *> n = jump_table_cluster::find_jump_tables (tmp);
2299 : 44541 : output2.safe_splice (n);
2300 : 44541 : n.release ();
2301 : : }
2302 : :
2303 : 47801 : if (dump_file)
2304 : : {
2305 : 24 : fprintf (dump_file, ";; GIMPLE switch case clusters: ");
2306 : 111 : for (unsigned i = 0; i < output2.length (); i++)
2307 : 87 : output2[i]->dump (dump_file, dump_flags & TDF_DETAILS);
2308 : 24 : fprintf (dump_file, "\n");
2309 : : }
2310 : :
2311 : 47801 : output.release ();
2312 : :
2313 : 47801 : bool expanded = try_switch_expansion (output2);
2314 : 47801 : release_clusters (output2);
2315 : 47801 : return expanded;
2316 : 47801 : }
2317 : :
2318 : : /* Attempt to expand CLUSTERS as a decision tree. Return true when
2319 : : expanded. */
2320 : :
2321 : : bool
2322 : 47801 : switch_decision_tree::try_switch_expansion (vec<cluster *> &clusters)
2323 : : {
2324 : 47801 : tree index_expr = gimple_switch_index (m_switch);
2325 : 47801 : tree index_type = TREE_TYPE (index_expr);
2326 : 47801 : basic_block bb = gimple_bb (m_switch);
2327 : :
2328 : 47801 : if (gimple_switch_num_labels (m_switch) == 1
2329 : 47801 : || range_check_type (index_type) == NULL_TREE)
2330 : 1 : return false;
2331 : :
2332 : : /* Find the default case target label. */
2333 : 47800 : edge default_edge = gimple_switch_default_edge (cfun, m_switch);
2334 : 47800 : m_default_bb = default_edge->dest;
2335 : :
2336 : : /* Do the insertion of a case label into m_case_list. The labels are
2337 : : fed to us in descending order from the sorted vector of case labels used
2338 : : in the tree part of the middle end. So the list we construct is
2339 : : sorted in ascending order. */
2340 : :
2341 : 269061 : for (int i = clusters.length () - 1; i >= 0; i--)
2342 : : {
2343 : 173461 : case_tree_node *r = m_case_list;
2344 : 173461 : m_case_list = m_case_node_pool.allocate ();
2345 : 173461 : m_case_list->m_right = r;
2346 : 173461 : m_case_list->m_c = clusters[i];
2347 : : }
2348 : :
2349 : 47800 : record_phi_operand_mapping ();
2350 : :
2351 : : /* Split basic block that contains the gswitch statement. */
2352 : 47800 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2353 : 47800 : edge e;
2354 : 47800 : if (gsi_end_p (gsi))
2355 : 0 : e = split_block_after_labels (bb);
2356 : : else
2357 : : {
2358 : 47800 : gsi_prev (&gsi);
2359 : 47800 : e = split_block (bb, gsi_stmt (gsi));
2360 : : }
2361 : 47800 : bb = split_edge (e);
2362 : :
2363 : : /* Create new basic blocks for non-case clusters where specific expansion
2364 : : needs to happen. */
2365 : 221261 : for (unsigned i = 0; i < clusters.length (); i++)
2366 : 173461 : if (clusters[i]->get_type () != SIMPLE_CASE)
2367 : : {
2368 : 12623 : clusters[i]->m_case_bb = create_empty_bb (bb);
2369 : 12623 : clusters[i]->m_case_bb->count = bb->count;
2370 : 12623 : clusters[i]->m_case_bb->loop_father = bb->loop_father;
2371 : : }
2372 : :
2373 : : /* Do not do an extra work for a single cluster. */
2374 : 47800 : if (clusters.length () == 1
2375 : 59235 : && clusters[0]->get_type () != SIMPLE_CASE)
2376 : : {
2377 : 10362 : cluster *c = clusters[0];
2378 : 10362 : c->emit (index_expr, index_type,
2379 : : gimple_switch_default_label (m_switch), m_default_bb,
2380 : 10362 : gimple_location (m_switch));
2381 : 10362 : redirect_edge_succ (single_succ_edge (bb), c->m_case_bb);
2382 : : }
2383 : : else
2384 : : {
2385 : 37438 : emit (bb, index_expr, default_edge->probability, index_type);
2386 : :
2387 : : /* Emit cluster-specific switch handling. */
2388 : 200537 : for (unsigned i = 0; i < clusters.length (); i++)
2389 : 163099 : if (clusters[i]->get_type () != SIMPLE_CASE)
2390 : : {
2391 : 2261 : edge e = single_pred_edge (clusters[i]->m_case_bb);
2392 : 2261 : e->dest->count = e->src->count.apply_probability (e->probability);
2393 : 4522 : clusters[i]->emit (index_expr, index_type,
2394 : : gimple_switch_default_label (m_switch),
2395 : 2261 : m_default_bb, gimple_location (m_switch));
2396 : : }
2397 : : }
2398 : :
2399 : 47800 : fix_phi_operands_for_edges ();
2400 : :
2401 : 47800 : return true;
2402 : : }
2403 : :
2404 : : /* Before switch transformation, record all SSA_NAMEs defined in switch BB
2405 : : and used in a label basic block. */
2406 : :
2407 : : void
2408 : 47800 : switch_decision_tree::record_phi_operand_mapping ()
2409 : : {
2410 : 47800 : basic_block switch_bb = gimple_bb (m_switch);
2411 : : /* Record all PHI nodes that have to be fixed after conversion. */
2412 : 356619 : for (unsigned i = 0; i < m_case_bbs.length (); i++)
2413 : : {
2414 : 308819 : gphi_iterator gsi;
2415 : 308819 : basic_block bb = m_case_bbs[i];
2416 : 383364 : for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2417 : : {
2418 : 74545 : gphi *phi = gsi.phi ();
2419 : :
2420 : 195999 : for (unsigned i = 0; i < gimple_phi_num_args (phi); i++)
2421 : : {
2422 : 195999 : basic_block phi_src_bb = gimple_phi_arg_edge (phi, i)->src;
2423 : 195999 : if (phi_src_bb == switch_bb)
2424 : : {
2425 : 74545 : tree def = gimple_phi_arg_def (phi, i);
2426 : 74545 : tree result = gimple_phi_result (phi);
2427 : 74545 : m_phi_mapping.put (result, def);
2428 : 74545 : break;
2429 : : }
2430 : : }
2431 : : }
2432 : : }
2433 : 47800 : }
2434 : :
2435 : : /* Append new operands to PHI statements that were introduced due to
2436 : : addition of new edges to case labels. */
2437 : :
2438 : : void
2439 : 47800 : switch_decision_tree::fix_phi_operands_for_edges ()
2440 : : {
2441 : 47800 : gphi_iterator gsi;
2442 : :
2443 : 356619 : for (unsigned i = 0; i < m_case_bbs.length (); i++)
2444 : : {
2445 : 308819 : basic_block bb = m_case_bbs[i];
2446 : 383364 : for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2447 : : {
2448 : 74545 : gphi *phi = gsi.phi ();
2449 : 524474 : for (unsigned j = 0; j < gimple_phi_num_args (phi); j++)
2450 : : {
2451 : 449929 : tree def = gimple_phi_arg_def (phi, j);
2452 : 449929 : if (def == NULL_TREE)
2453 : : {
2454 : 77808 : edge e = gimple_phi_arg_edge (phi, j);
2455 : 77808 : tree *definition
2456 : 77808 : = m_phi_mapping.get (gimple_phi_result (phi));
2457 : 77808 : gcc_assert (definition);
2458 : 77808 : add_phi_arg (phi, *definition, e, UNKNOWN_LOCATION);
2459 : : }
2460 : : }
2461 : : }
2462 : : }
2463 : 47800 : }
2464 : :
2465 : : /* Generate a decision tree, switching on INDEX_EXPR and jumping to
2466 : : one of the labels in CASE_LIST or to the DEFAULT_LABEL.
2467 : :
2468 : : We generate a binary decision tree to select the appropriate target
2469 : : code. */
2470 : :
2471 : : void
2472 : 37438 : switch_decision_tree::emit (basic_block bb, tree index_expr,
2473 : : profile_probability default_prob, tree index_type)
2474 : : {
2475 : 37438 : balance_case_nodes (&m_case_list, NULL);
2476 : :
2477 : 37438 : if (dump_file)
2478 : 17 : dump_function_to_file (current_function_decl, dump_file, dump_flags);
2479 : 37438 : if (dump_file && (dump_flags & TDF_DETAILS))
2480 : : {
2481 : 0 : int indent_step = ceil_log2 (TYPE_PRECISION (index_type)) + 2;
2482 : 0 : fprintf (dump_file, ";; Expanding GIMPLE switch as decision tree:\n");
2483 : 0 : gcc_assert (m_case_list != NULL);
2484 : 0 : dump_case_nodes (dump_file, m_case_list, indent_step, 0);
2485 : : }
2486 : :
2487 : 74876 : bb = emit_case_nodes (bb, index_expr, m_case_list, default_prob, index_type,
2488 : 37438 : gimple_location (m_switch));
2489 : :
2490 : 37438 : if (bb)
2491 : 36351 : emit_jump (bb, m_default_bb);
2492 : :
2493 : : /* Remove all edges and do just an edge that will reach default_bb. */
2494 : 37438 : bb = gimple_bb (m_switch);
2495 : 37438 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2496 : 37438 : gsi_remove (&gsi, true);
2497 : :
2498 : 37438 : delete_basic_block (bb);
2499 : 37438 : }
2500 : :
2501 : : /* Take an ordered list of case nodes
2502 : : and transform them into a near optimal binary tree,
2503 : : on the assumption that any target code selection value is as
2504 : : likely as any other.
2505 : :
2506 : : The transformation is performed by splitting the ordered
2507 : : list into two equal sections plus a pivot. The parts are
2508 : : then attached to the pivot as left and right branches. Each
2509 : : branch is then transformed recursively. */
2510 : :
2511 : : void
2512 : 202124 : switch_decision_tree::balance_case_nodes (case_tree_node **head,
2513 : : case_tree_node *parent)
2514 : : {
2515 : 202124 : case_tree_node *np;
2516 : :
2517 : 202124 : np = *head;
2518 : 202124 : if (np)
2519 : : {
2520 : 132225 : int i = 0;
2521 : 132225 : case_tree_node **npp;
2522 : 132225 : case_tree_node *left;
2523 : 132225 : profile_probability prob = profile_probability::never ();
2524 : :
2525 : : /* Count the number of entries on branch. */
2526 : :
2527 : 2356933 : while (np)
2528 : : {
2529 : 2224708 : i++;
2530 : 2224708 : prob += np->m_c->m_prob;
2531 : 2224708 : np = np->m_right;
2532 : : }
2533 : :
2534 : 132225 : if (i > 2)
2535 : : {
2536 : : /* Split this list if it is long enough for that to help. */
2537 : 82343 : npp = head;
2538 : 82343 : left = *npp;
2539 : 82343 : profile_probability pivot_prob = prob / 2;
2540 : :
2541 : : /* Find the place in the list that bisects the list's total cost
2542 : : by probability. */
2543 : 4145969 : while (1)
2544 : : {
2545 : : /* Skip nodes while their probability does not reach
2546 : : that amount. */
2547 : 2114156 : prob -= (*npp)->m_c->m_prob;
2548 : 2114156 : if ((prob.initialized_p () && prob < pivot_prob)
2549 : 2146558 : || ! (*npp)->m_right)
2550 : : break;
2551 : 2031813 : npp = &(*npp)->m_right;
2552 : : }
2553 : :
2554 : 82343 : np = *npp;
2555 : 82343 : *npp = 0;
2556 : 82343 : *head = np;
2557 : 82343 : np->m_parent = parent;
2558 : 82343 : np->m_left = left == np ? NULL : left;
2559 : :
2560 : : /* Optimize each of the two split parts. */
2561 : 82343 : balance_case_nodes (&np->m_left, np);
2562 : 82343 : balance_case_nodes (&np->m_right, np);
2563 : 82343 : np->m_c->m_subtree_prob = np->m_c->m_prob;
2564 : 82343 : if (np->m_left)
2565 : 81715 : np->m_c->m_subtree_prob += np->m_left->m_c->m_subtree_prob;
2566 : 82343 : if (np->m_right)
2567 : 13072 : np->m_c->m_subtree_prob += np->m_right->m_c->m_subtree_prob;
2568 : : }
2569 : : else
2570 : : {
2571 : : /* Else leave this branch as one level,
2572 : : but fill in `parent' fields. */
2573 : 49882 : np = *head;
2574 : 49882 : np->m_parent = parent;
2575 : 49882 : np->m_c->m_subtree_prob = np->m_c->m_prob;
2576 : 80756 : for (; np->m_right; np = np->m_right)
2577 : : {
2578 : 30874 : np->m_right->m_parent = np;
2579 : 30874 : (*head)->m_c->m_subtree_prob += np->m_right->m_c->m_subtree_prob;
2580 : : }
2581 : : }
2582 : : }
2583 : 202124 : }
2584 : :
2585 : : /* Dump ROOT, a list or tree of case nodes, to file. */
2586 : :
2587 : : void
2588 : 0 : switch_decision_tree::dump_case_nodes (FILE *f, case_tree_node *root,
2589 : : int indent_step, int indent_level)
2590 : : {
2591 : 0 : if (root == 0)
2592 : 0 : return;
2593 : 0 : indent_level++;
2594 : :
2595 : 0 : dump_case_nodes (f, root->m_left, indent_step, indent_level);
2596 : :
2597 : 0 : fputs (";; ", f);
2598 : 0 : fprintf (f, "%*s", indent_step * indent_level, "");
2599 : 0 : root->m_c->dump (f);
2600 : 0 : root->m_c->m_prob.dump (f);
2601 : 0 : fputs (" subtree: ", f);
2602 : 0 : root->m_c->m_subtree_prob.dump (f);
2603 : 0 : fputs (")\n", f);
2604 : :
2605 : 0 : dump_case_nodes (f, root->m_right, indent_step, indent_level);
2606 : : }
2607 : :
2608 : :
2609 : : /* Add an unconditional jump to CASE_BB that happens in basic block BB. */
2610 : :
2611 : : void
2612 : 64836 : switch_decision_tree::emit_jump (basic_block bb, basic_block case_bb)
2613 : : {
2614 : 64836 : edge e = single_succ_edge (bb);
2615 : 64836 : redirect_edge_succ (e, case_bb);
2616 : 64836 : }
2617 : :
2618 : : /* Generate code to compare OP0 with OP1 so that the condition codes are
2619 : : set and to jump to LABEL_BB if the condition is true.
2620 : : COMPARISON is the GIMPLE comparison (EQ, NE, GT, etc.).
2621 : : PROB is the probability of jumping to LABEL_BB. */
2622 : :
2623 : : basic_block
2624 : 103717 : switch_decision_tree::emit_cmp_and_jump_insns (basic_block bb, tree op0,
2625 : : tree op1, tree_code comparison,
2626 : : basic_block label_bb,
2627 : : profile_probability prob,
2628 : : location_t loc)
2629 : : {
2630 : : // TODO: it's once called with lhs != index.
2631 : 103717 : op1 = fold_convert (TREE_TYPE (op0), op1);
2632 : :
2633 : 103717 : gcond *cond = gimple_build_cond (comparison, op0, op1, NULL_TREE, NULL_TREE);
2634 : 103717 : gimple_set_location (cond, loc);
2635 : 103717 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2636 : 103717 : gsi_insert_after (&gsi, cond, GSI_NEW_STMT);
2637 : :
2638 : 103717 : gcc_assert (single_succ_p (bb));
2639 : :
2640 : : /* Make a new basic block where false branch will take place. */
2641 : 103717 : edge false_edge = split_block (bb, cond);
2642 : 103717 : false_edge->flags = EDGE_FALSE_VALUE;
2643 : 103717 : false_edge->probability = prob.invert ();
2644 : 103717 : false_edge->dest->count = bb->count.apply_probability (prob.invert ());
2645 : :
2646 : 103717 : edge true_edge = make_edge (bb, label_bb, EDGE_TRUE_VALUE);
2647 : 103717 : true_edge->probability = prob;
2648 : :
2649 : 103717 : return false_edge->dest;
2650 : : }
2651 : :
2652 : : /* Generate code to jump to LABEL if OP0 and OP1 are equal.
2653 : : PROB is the probability of jumping to LABEL_BB.
2654 : : BB is a basic block where the new condition will be placed. */
2655 : :
2656 : : basic_block
2657 : 138898 : switch_decision_tree::do_jump_if_equal (basic_block bb, tree op0, tree op1,
2658 : : basic_block label_bb,
2659 : : profile_probability prob,
2660 : : location_t loc)
2661 : : {
2662 : 138898 : op1 = fold_convert (TREE_TYPE (op0), op1);
2663 : :
2664 : 138898 : gcond *cond = gimple_build_cond (EQ_EXPR, op0, op1, NULL_TREE, NULL_TREE);
2665 : 138898 : gimple_set_location (cond, loc);
2666 : 138898 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2667 : 138898 : gsi_insert_before (&gsi, cond, GSI_SAME_STMT);
2668 : :
2669 : 138898 : gcc_assert (single_succ_p (bb));
2670 : :
2671 : : /* Make a new basic block where false branch will take place. */
2672 : 138898 : edge false_edge = split_block (bb, cond);
2673 : 138898 : false_edge->flags = EDGE_FALSE_VALUE;
2674 : 138898 : false_edge->probability = prob.invert ();
2675 : 138898 : false_edge->dest->count = bb->count.apply_probability (prob.invert ());
2676 : :
2677 : 138898 : edge true_edge = make_edge (bb, label_bb, EDGE_TRUE_VALUE);
2678 : 138898 : true_edge->probability = prob;
2679 : :
2680 : 138898 : return false_edge->dest;
2681 : : }
2682 : :
2683 : : /* Emit step-by-step code to select a case for the value of INDEX.
2684 : : The thus generated decision tree follows the form of the
2685 : : case-node binary tree NODE, whose nodes represent test conditions.
2686 : : DEFAULT_PROB is probability of cases leading to default BB.
2687 : : INDEX_TYPE is the type of the index of the switch. */
2688 : :
2689 : : basic_block
2690 : 64836 : switch_decision_tree::emit_case_nodes (basic_block bb, tree index,
2691 : : case_tree_node *node,
2692 : : profile_probability default_prob,
2693 : : tree index_type, location_t loc)
2694 : : {
2695 : 144352 : profile_probability p;
2696 : :
2697 : : /* If node is null, we are done. */
2698 : 144352 : if (node == NULL)
2699 : : return bb;
2700 : :
2701 : : /* Single value case. */
2702 : 122027 : if (node->m_c->is_single_value_p ())
2703 : : {
2704 : : /* Node is single valued. First see if the index expression matches
2705 : : this node and then check our children, if any. */
2706 : 97826 : p = node->m_c->m_prob / (node->m_c->m_subtree_prob + default_prob);
2707 : 97826 : bb = do_jump_if_equal (bb, index, node->m_c->get_low (),
2708 : : node->m_c->m_case_bb, p, loc);
2709 : : /* Since this case is taken at this point, reduce its weight from
2710 : : subtree_weight. */
2711 : 97826 : node->m_c->m_subtree_prob -= node->m_c->m_prob;
2712 : :
2713 : 97826 : if (node->m_left != NULL && node->m_right != NULL)
2714 : : {
2715 : : /* 1) the node has both children
2716 : :
2717 : : If both children are single-valued cases with no
2718 : : children, finish up all the work. This way, we can save
2719 : : one ordered comparison. */
2720 : :
2721 : 11816 : if (!node->m_left->has_child ()
2722 : 7556 : && node->m_left->m_c->is_single_value_p ()
2723 : 6917 : && !node->m_right->has_child ()
2724 : 6746 : && node->m_right->m_c->is_single_value_p ())
2725 : : {
2726 : 13334 : p = (node->m_right->m_c->m_prob
2727 : 6667 : / (node->m_c->m_subtree_prob + default_prob));
2728 : 6667 : bb = do_jump_if_equal (bb, index, node->m_right->m_c->get_low (),
2729 : : node->m_right->m_c->m_case_bb, p, loc);
2730 : 6667 : node->m_c->m_subtree_prob -= node->m_right->m_c->m_prob;
2731 : :
2732 : 13334 : p = (node->m_left->m_c->m_prob
2733 : 6667 : / (node->m_c->m_subtree_prob + default_prob));
2734 : 6667 : bb = do_jump_if_equal (bb, index, node->m_left->m_c->get_low (),
2735 : : node->m_left->m_c->m_case_bb, p, loc);
2736 : : }
2737 : : else
2738 : : {
2739 : : /* Branch to a label where we will handle it later. */
2740 : 5149 : basic_block test_bb = split_edge (single_succ_edge (bb));
2741 : 5149 : redirect_edge_succ (single_pred_edge (test_bb),
2742 : 5149 : single_succ_edge (bb)->dest);
2743 : :
2744 : 5149 : p = ((node->m_right->m_c->m_subtree_prob + default_prob / 2)
2745 : 10298 : / (node->m_c->m_subtree_prob + default_prob));
2746 : 5149 : test_bb->count = bb->count.apply_probability (p);
2747 : 5149 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_high (),
2748 : : GT_EXPR, test_bb, p, loc);
2749 : 5149 : default_prob /= 2;
2750 : :
2751 : : /* Handle the left-hand subtree. */
2752 : 5149 : bb = emit_case_nodes (bb, index, node->m_left,
2753 : : default_prob, index_type, loc);
2754 : :
2755 : : /* If the left-hand subtree fell through,
2756 : : don't let it fall into the right-hand subtree. */
2757 : 5149 : if (bb && m_default_bb)
2758 : 4550 : emit_jump (bb, m_default_bb);
2759 : :
2760 : 5149 : bb = emit_case_nodes (test_bb, index, node->m_right,
2761 : : default_prob, index_type, loc);
2762 : : }
2763 : : }
2764 : 86010 : else if (node->m_left == NULL && node->m_right != NULL)
2765 : : {
2766 : : /* 2) the node has only right child. */
2767 : :
2768 : : /* Here we have a right child but no left so we issue a conditional
2769 : : branch to default and process the right child.
2770 : :
2771 : : Omit the conditional branch to default if the right child
2772 : : does not have any children and is single valued; it would
2773 : : cost too much space to save so little time. */
2774 : :
2775 : 29071 : if (node->m_right->has_child ()
2776 : 28604 : || !node->m_right->m_c->is_single_value_p ())
2777 : : {
2778 : 3999 : p = ((default_prob / 2)
2779 : 1333 : / (node->m_c->m_subtree_prob + default_prob));
2780 : 1333 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_low (),
2781 : : LT_EXPR, m_default_bb, p, loc);
2782 : 1333 : default_prob /= 2;
2783 : :
2784 : 1333 : bb = emit_case_nodes (bb, index, node->m_right, default_prob,
2785 : : index_type, loc);
2786 : : }
2787 : : else
2788 : : {
2789 : : /* We cannot process node->right normally
2790 : : since we haven't ruled out the numbers less than
2791 : : this node's value. So handle node->right explicitly. */
2792 : 55476 : p = (node->m_right->m_c->m_subtree_prob
2793 : 27738 : / (node->m_c->m_subtree_prob + default_prob));
2794 : 27738 : bb = do_jump_if_equal (bb, index, node->m_right->m_c->get_low (),
2795 : : node->m_right->m_c->m_case_bb, p, loc);
2796 : : }
2797 : : }
2798 : 56939 : else if (node->m_left != NULL && node->m_right == NULL)
2799 : : {
2800 : : /* 3) just one subtree, on the left. Similar case as previous. */
2801 : :
2802 : 50785 : if (node->m_left->has_child ()
2803 : 0 : || !node->m_left->m_c->is_single_value_p ())
2804 : : {
2805 : 152355 : p = ((default_prob / 2)
2806 : 50785 : / (node->m_c->m_subtree_prob + default_prob));
2807 : 50785 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_high (),
2808 : : GT_EXPR, m_default_bb, p, loc);
2809 : 50785 : default_prob /= 2;
2810 : :
2811 : 50785 : bb = emit_case_nodes (bb, index, node->m_left, default_prob,
2812 : : index_type, loc);
2813 : : }
2814 : : else
2815 : : {
2816 : : /* We cannot process node->left normally
2817 : : since we haven't ruled out the numbers less than
2818 : : this node's value. So handle node->left explicitly. */
2819 : 0 : p = (node->m_left->m_c->m_subtree_prob
2820 : 0 : / (node->m_c->m_subtree_prob + default_prob));
2821 : 0 : bb = do_jump_if_equal (bb, index, node->m_left->m_c->get_low (),
2822 : : node->m_left->m_c->m_case_bb, p, loc);
2823 : : }
2824 : : }
2825 : : }
2826 : : else
2827 : : {
2828 : : /* Node is a range. These cases are very similar to those for a single
2829 : : value, except that we do not start by testing whether this node
2830 : : is the one to branch to. */
2831 : 26857 : if (node->has_child () || node->m_c->get_type () != SIMPLE_CASE)
2832 : : {
2833 : 22249 : bool is_bt = node->m_c->get_type () == BIT_TEST;
2834 : 22249 : int parts = is_bt ? 3 : 2;
2835 : :
2836 : : /* Branch to a label where we will handle it later. */
2837 : 22249 : basic_block test_bb = split_edge (single_succ_edge (bb));
2838 : 22249 : redirect_edge_succ (single_pred_edge (test_bb),
2839 : 22249 : single_succ_edge (bb)->dest);
2840 : :
2841 : 22249 : profile_probability right_prob = profile_probability::never ();
2842 : 22249 : if (node->m_right)
2843 : 3059 : right_prob = node->m_right->m_c->m_subtree_prob;
2844 : 22249 : p = ((right_prob + default_prob / parts)
2845 : 44498 : / (node->m_c->m_subtree_prob + default_prob));
2846 : 22249 : test_bb->count = bb->count.apply_probability (p);
2847 : :
2848 : 22249 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_high (),
2849 : : GT_EXPR, test_bb, p, loc);
2850 : :
2851 : 22249 : default_prob /= parts;
2852 : 22249 : node->m_c->m_subtree_prob -= right_prob;
2853 : 22249 : if (is_bt)
2854 : 1561 : node->m_c->m_default_prob = default_prob;
2855 : :
2856 : : /* Value belongs to this node or to the left-hand subtree. */
2857 : 22249 : p = node->m_c->m_prob / (node->m_c->m_subtree_prob + default_prob);
2858 : 22249 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_low (),
2859 : : GE_EXPR, node->m_c->m_case_bb, p, loc);
2860 : :
2861 : : /* Handle the left-hand subtree. */
2862 : 22249 : bb = emit_case_nodes (bb, index, node->m_left, default_prob,
2863 : : index_type, loc);
2864 : :
2865 : : /* If the left-hand subtree fell through,
2866 : : don't let it fall into the right-hand subtree. */
2867 : 22249 : if (bb && m_default_bb)
2868 : 21983 : emit_jump (bb, m_default_bb);
2869 : :
2870 : 22249 : bb = emit_case_nodes (test_bb, index, node->m_right, default_prob,
2871 : : index_type, loc);
2872 : : }
2873 : : else
2874 : : {
2875 : : /* Node has no children so we check low and high bounds to remove
2876 : : redundant tests. Only one of the bounds can exist,
2877 : : since otherwise this node is bounded--a case tested already. */
2878 : 1952 : tree lhs, rhs;
2879 : 1952 : generate_range_test (bb, index, node->m_c->get_low (),
2880 : 1952 : node->m_c->get_high (), &lhs, &rhs);
2881 : 1952 : p = default_prob / (node->m_c->m_subtree_prob + default_prob);
2882 : :
2883 : 1952 : bb = emit_cmp_and_jump_insns (bb, lhs, rhs, GT_EXPR,
2884 : : m_default_bb, p, loc);
2885 : :
2886 : 1952 : emit_jump (bb, node->m_c->m_case_bb);
2887 : 1952 : return NULL;
2888 : : }
2889 : : }
2890 : :
2891 : : return bb;
2892 : : }
2893 : :
2894 : : /* The main function of the pass scans statements for switches and invokes
2895 : : process_switch on them. */
2896 : :
2897 : : namespace {
2898 : :
2899 : : const pass_data pass_data_convert_switch =
2900 : : {
2901 : : GIMPLE_PASS, /* type */
2902 : : "switchconv", /* name */
2903 : : OPTGROUP_NONE, /* optinfo_flags */
2904 : : TV_TREE_SWITCH_CONVERSION, /* tv_id */
2905 : : ( PROP_cfg | PROP_ssa ), /* properties_required */
2906 : : 0, /* properties_provided */
2907 : : 0, /* properties_destroyed */
2908 : : 0, /* todo_flags_start */
2909 : : TODO_update_ssa, /* todo_flags_finish */
2910 : : };
2911 : :
2912 : : class pass_convert_switch : public gimple_opt_pass
2913 : : {
2914 : : public:
2915 : 285689 : pass_convert_switch (gcc::context *ctxt)
2916 : 571378 : : gimple_opt_pass (pass_data_convert_switch, ctxt)
2917 : : {}
2918 : :
2919 : : /* opt_pass methods: */
2920 : 2511775 : bool gate (function *) final override
2921 : : {
2922 : 2511775 : return flag_tree_switch_conversion != 0;
2923 : : }
2924 : : unsigned int execute (function *) final override;
2925 : :
2926 : : }; // class pass_convert_switch
2927 : :
2928 : : unsigned int
2929 : 2407157 : pass_convert_switch::execute (function *fun)
2930 : : {
2931 : 2407157 : basic_block bb;
2932 : 2407157 : bool cfg_altered = false;
2933 : :
2934 : 13023346 : FOR_EACH_BB_FN (bb, fun)
2935 : : {
2936 : 31584790 : if (gswitch *stmt = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
2937 : : {
2938 : 29263 : if (dump_file)
2939 : : {
2940 : 43 : expanded_location loc = expand_location (gimple_location (stmt));
2941 : :
2942 : 43 : fprintf (dump_file, "beginning to process the following "
2943 : : "SWITCH statement (%s:%d) : ------- \n",
2944 : : loc.file, loc.line);
2945 : 43 : print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
2946 : 43 : putc ('\n', dump_file);
2947 : : }
2948 : :
2949 : 29263 : switch_conversion sconv;
2950 : 29263 : sconv.expand (stmt);
2951 : 29263 : cfg_altered |= sconv.m_cfg_altered;
2952 : 29263 : if (!sconv.m_reason)
2953 : : {
2954 : 702 : if (dump_file)
2955 : : {
2956 : 39 : fputs ("Switch converted\n", dump_file);
2957 : 39 : fputs ("--------------------------------\n", dump_file);
2958 : : }
2959 : :
2960 : : /* Make no effort to update the post-dominator tree.
2961 : : It is actually not that hard for the transformations
2962 : : we have performed, but it is not supported
2963 : : by iterate_fix_dominators. */
2964 : 702 : free_dominance_info (CDI_POST_DOMINATORS);
2965 : : }
2966 : : else
2967 : : {
2968 : 28561 : if (dump_file)
2969 : : {
2970 : 4 : fputs ("Bailing out - ", dump_file);
2971 : 4 : fputs (sconv.m_reason, dump_file);
2972 : 4 : fputs ("\n--------------------------------\n", dump_file);
2973 : : }
2974 : : }
2975 : 29263 : }
2976 : : }
2977 : :
2978 : 2407157 : return cfg_altered ? TODO_cleanup_cfg : 0;;
2979 : : }
2980 : :
2981 : : } // anon namespace
2982 : :
2983 : : gimple_opt_pass *
2984 : 285689 : make_pass_convert_switch (gcc::context *ctxt)
2985 : : {
2986 : 285689 : return new pass_convert_switch (ctxt);
2987 : : }
2988 : :
2989 : : /* The main function of the pass scans statements for switches and invokes
2990 : : process_switch on them. */
2991 : :
2992 : : namespace {
2993 : :
2994 : : template <bool O0> class pass_lower_switch: public gimple_opt_pass
2995 : : {
2996 : : public:
2997 : 1714134 : pass_lower_switch (gcc::context *ctxt) : gimple_opt_pass (data, ctxt) {}
2998 : :
2999 : : static const pass_data data;
3000 : : opt_pass *
3001 : 285689 : clone () final override
3002 : : {
3003 : 285689 : return new pass_lower_switch<O0> (m_ctxt);
3004 : : }
3005 : :
3006 : : bool
3007 : 2527549 : gate (function *) final override
3008 : : {
3009 : 2527549 : return !O0 || !optimize;
3010 : : }
3011 : :
3012 : : unsigned int execute (function *fun) final override;
3013 : : }; // class pass_lower_switch
3014 : :
3015 : : template <bool O0>
3016 : : const pass_data pass_lower_switch<O0>::data = {
3017 : : GIMPLE_PASS, /* type */
3018 : : O0 ? "switchlower_O0" : "switchlower", /* name */
3019 : : OPTGROUP_NONE, /* optinfo_flags */
3020 : : TV_TREE_SWITCH_LOWERING, /* tv_id */
3021 : : ( PROP_cfg | PROP_ssa ), /* properties_required */
3022 : : 0, /* properties_provided */
3023 : : 0, /* properties_destroyed */
3024 : : 0, /* todo_flags_start */
3025 : : TODO_update_ssa | TODO_cleanup_cfg, /* todo_flags_finish */
3026 : : };
3027 : :
3028 : : template <bool O0>
3029 : : unsigned int
3030 : 1482198 : pass_lower_switch<O0>::execute (function *fun)
3031 : : {
3032 : : basic_block bb;
3033 : 1482198 : bool expanded = false;
3034 : :
3035 : 1482198 : auto_vec<gimple *> switch_statements;
3036 : 1482198 : switch_statements.create (1);
3037 : :
3038 : 15305797 : FOR_EACH_BB_FN (bb, fun)
3039 : : {
3040 : 27268960 : if (gswitch *swtch = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
3041 : : {
3042 : : if (!O0)
3043 : 32564 : group_case_labels_stmt (swtch);
3044 : 47791 : switch_statements.safe_push (swtch);
3045 : : }
3046 : : }
3047 : :
3048 : 1529989 : for (unsigned i = 0; i < switch_statements.length (); i++)
3049 : : {
3050 : 47791 : gimple *stmt = switch_statements[i];
3051 : 47791 : if (dump_file)
3052 : : {
3053 : 24 : expanded_location loc = expand_location (gimple_location (stmt));
3054 : :
3055 : 24 : fprintf (dump_file, "beginning to process the following "
3056 : : "SWITCH statement (%s:%d) : ------- \n",
3057 : : loc.file, loc.line);
3058 : 24 : print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
3059 : 24 : putc ('\n', dump_file);
3060 : : }
3061 : :
3062 : 47791 : gswitch *swtch = dyn_cast<gswitch *> (stmt);
3063 : : if (swtch)
3064 : : {
3065 : 47791 : switch_decision_tree dt (swtch);
3066 : 47791 : expanded |= dt.analyze_switch_statement ();
3067 : 47791 : }
3068 : : }
3069 : :
3070 : 1482198 : if (expanded)
3071 : : {
3072 : 34353 : free_dominance_info (CDI_DOMINATORS);
3073 : 34353 : free_dominance_info (CDI_POST_DOMINATORS);
3074 : 34353 : mark_virtual_operands_for_renaming (cfun);
3075 : : }
3076 : :
3077 : 1482198 : return 0;
3078 : 1482198 : }
3079 : :
3080 : : } // anon namespace
3081 : :
3082 : : gimple_opt_pass *
3083 : 285689 : make_pass_lower_switch_O0 (gcc::context *ctxt)
3084 : : {
3085 : 285689 : return new pass_lower_switch<true> (ctxt);
3086 : : }
3087 : : gimple_opt_pass *
3088 : 285689 : make_pass_lower_switch (gcc::context *ctxt)
3089 : : {
3090 : 285689 : return new pass_lower_switch<false> (ctxt);
3091 : : }
|