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 : 7357 : can_log2 (tree type, optimization_type opt_type)
78 : : {
79 : : /* Check if target supports FFS for given type. */
80 : 7357 : 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 : 1512 : int prec = TYPE_PRECISION (type);
85 : 1512 : int i_prec = TYPE_PRECISION (integer_type_node);
86 : 1512 : int li_prec = TYPE_PRECISION (long_integer_type_node);
87 : 1512 : int lli_prec = TYPE_PRECISION (long_long_integer_type_node);
88 : 1512 : tree new_type;
89 : 1512 : if (prec <= i_prec
90 : 1512 : && direct_internal_fn_supported_p (IFN_FFS, integer_type_node, opt_type))
91 : 1502 : 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 : 29188 : switch_conversion::switch_conversion (): m_final_bb (NULL),
171 : 29188 : m_constructors (NULL), m_default_values (NULL),
172 : 29188 : m_arr_ref_first (NULL), m_arr_ref_last (NULL),
173 : 29188 : m_reason (NULL), m_default_case_nonstandard (false), m_cfg_altered (false),
174 : 29188 : m_exp_index_transform_applied (false)
175 : : {
176 : 29188 : }
177 : :
178 : : /* Collection information about SWTCH statement. */
179 : :
180 : : void
181 : 29188 : switch_conversion::collect (gswitch *swtch)
182 : : {
183 : 29188 : unsigned int branch_num = gimple_switch_num_labels (swtch);
184 : 29188 : tree min_case, max_case;
185 : 29188 : unsigned int i;
186 : 29188 : edge e, e_default, e_first;
187 : 29188 : edge_iterator ei;
188 : :
189 : 29188 : 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 : 29188 : m_index_expr = gimple_switch_index (swtch);
195 : 29188 : m_switch_bb = gimple_bb (swtch);
196 : 29188 : e_default = gimple_switch_default_edge (cfun, swtch);
197 : 29188 : m_default_bb = e_default->dest;
198 : 29188 : m_default_prob = e_default->probability;
199 : :
200 : : /* Get upper and lower bounds of case values, and the covered range. */
201 : 29188 : min_case = gimple_switch_label (swtch, 1);
202 : 29188 : max_case = gimple_switch_label (swtch, branch_num - 1);
203 : :
204 : 29188 : m_range_min = CASE_LOW (min_case);
205 : 29188 : if (CASE_HIGH (max_case) != NULL_TREE)
206 : 2761 : m_range_max = CASE_HIGH (max_case);
207 : : else
208 : 26427 : m_range_max = CASE_LOW (max_case);
209 : :
210 : 29188 : m_contiguous_range = true;
211 : 29188 : tree last = CASE_HIGH (min_case) ? CASE_HIGH (min_case) : m_range_min;
212 : 94549 : for (i = 2; i < branch_num; i++)
213 : : {
214 : 81392 : tree elt = gimple_switch_label (swtch, i);
215 : 81393 : if (wi::to_wide (last) + 1 != wi::to_wide (CASE_LOW (elt)))
216 : : {
217 : 16031 : m_contiguous_range = false;
218 : 16031 : break;
219 : : }
220 : 65361 : last = CASE_HIGH (elt) ? CASE_HIGH (elt) : CASE_LOW (elt);
221 : : }
222 : :
223 : 29188 : if (m_contiguous_range)
224 : 13157 : 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 : 29188 : if (! single_pred_p (e_first->dest))
234 : 8304 : m_final_bb = e_first->dest;
235 : 20884 : else if (single_succ_p (e_first->dest)
236 : 17593 : && ! single_pred_p (single_succ (e_first->dest)))
237 : 12663 : 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 : 29188 : auto_vec<edge, 10> fw_edges;
242 : 29188 : m_uniq = 0;
243 : 29188 : if (m_final_bb)
244 : 105164 : FOR_EACH_EDGE (e, ei, m_switch_bb->succs)
245 : : {
246 : 92708 : edge phi_e = nullptr;
247 : 92708 : if (e->dest == m_final_bb)
248 : 13526 : phi_e = e;
249 : 79182 : else if (single_pred_p (e->dest)
250 : 164134 : && single_succ_p (e->dest)
251 : 150608 : && single_succ (e->dest) == m_final_bb)
252 : 68321 : phi_e = single_succ_edge (e->dest);
253 : 92708 : if (phi_e)
254 : : {
255 : 81847 : if (e == e_default)
256 : : ;
257 : 63659 : 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 : 111071 : for (i = 0; i < fw_edges.length (); ++i)
263 : 95431 : if (phi_alternatives_equal (m_final_bb, fw_edges[i], phi_e))
264 : : break;
265 : 33180 : if (i == fw_edges.length ())
266 : : {
267 : : /* But limit the above possibly quadratic search. */
268 : 15640 : if (fw_edges.length () < 10)
269 : 7156 : fw_edges.quick_push (phi_e);
270 : 15640 : m_uniq++;
271 : : }
272 : : }
273 : : else
274 : 47069 : m_uniq++;
275 : 84197 : continue;
276 : 81847 : }
277 : :
278 : 10861 : if (e == e_default && m_contiguous_range)
279 : : {
280 : 2350 : m_default_case_nonstandard = true;
281 : 2350 : continue;
282 : : }
283 : :
284 : 8511 : m_final_bb = NULL;
285 : 8511 : break;
286 : : }
287 : :
288 : : /* When there's not a single common successor block conservatively
289 : : approximate the number of unique non-default targets. */
290 : 29188 : if (!m_final_bb)
291 : 33464 : m_uniq = EDGE_COUNT (gimple_bb (swtch)->succs) - 1;
292 : :
293 : 29188 : m_range_size
294 : 29188 : = 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 : 29188 : m_count = 0;
300 : 195041 : for (i = 1; i < branch_num; i++)
301 : : {
302 : 165853 : tree elt = gimple_switch_label (swtch, i);
303 : 165853 : m_count++;
304 : 165853 : if (CASE_HIGH (elt)
305 : 165853 : && ! tree_int_cst_equal (CASE_LOW (elt), CASE_HIGH (elt)))
306 : 11567 : m_count++;
307 : : }
308 : 29188 : }
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 : 7357 : switch_conversion::is_exp_index_transform_viable (gswitch *swtch)
323 : : {
324 : 7357 : tree index = gimple_switch_index (swtch);
325 : 7357 : tree index_type = TREE_TYPE (index);
326 : 7357 : basic_block swtch_bb = gimple_bb (swtch);
327 : 7357 : unsigned num_labels = gimple_switch_num_labels (swtch);
328 : :
329 : 7357 : optimization_type opt_type = bb_optimization_type (swtch_bb);
330 : 7357 : m_exp_index_transform_log2_type = can_log2 (index_type, opt_type);
331 : 7357 : 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 : 55740 : for (i = 1; i < num_labels; i++)
338 : : {
339 : 48876 : tree label = gimple_switch_label (swtch, i);
340 : 48876 : if (CASE_HIGH (label))
341 : : return false;
342 : : }
343 : :
344 : : /* Check that each label is nonnegative and a power of 2. */
345 : 10242 : for (i = 1; i < num_labels; i++)
346 : : {
347 : 10168 : tree label = gimple_switch_label (swtch, i);
348 : 10168 : wide_int label_wi = wi::to_wide (CASE_LOW (label));
349 : 10168 : if (!wi::ge_p (label_wi, 0, TYPE_SIGN (index_type)))
350 : : return false;
351 : 10067 : if (wi::exact_log2 (label_wi) == -1)
352 : : return false;
353 : 10168 : }
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 : 7283 : switch_conversion::check_range ()
555 : : {
556 : 7283 : gcc_assert (m_range_size);
557 : 7283 : 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 : 7265 : if (tree_to_uhwi (m_range_size)
564 : 7265 : > ((unsigned) m_count * param_switch_conversion_branch_ratio))
565 : : {
566 : 742 : m_reason = "the maximum range-branch ratio exceeded";
567 : 742 : 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 : 6597 : switch_conversion::check_all_empty_except_final ()
577 : : {
578 : 6597 : edge e, e_default = find_edge (m_switch_bb, m_default_bb);
579 : 6597 : edge_iterator ei;
580 : :
581 : 21057 : FOR_EACH_EDGE (e, ei, m_switch_bb->succs)
582 : : {
583 : 20320 : if (e->dest == m_final_bb)
584 : 4393 : continue;
585 : :
586 : 15927 : if (!empty_block_p (e->dest))
587 : : {
588 : 7234 : if (m_contiguous_range && e == e_default)
589 : : {
590 : 1374 : m_default_case_nonstandard = true;
591 : 1374 : continue;
592 : : }
593 : :
594 : 5860 : m_reason = "bad case - a non-final BB not empty";
595 : 5860 : 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 : 737 : switch_conversion::check_final_bb ()
609 : : {
610 : 737 : gphi_iterator gsi;
611 : :
612 : 737 : m_phi_count = 0;
613 : 1461 : for (gsi = gsi_start_phis (m_final_bb); !gsi_end_p (gsi); gsi_next (&gsi))
614 : : {
615 : 811 : gphi *phi = gsi.phi ();
616 : 811 : unsigned int i;
617 : :
618 : 1622 : if (virtual_operand_p (gimple_phi_result (phi)))
619 : 17 : continue;
620 : :
621 : 794 : m_phi_count++;
622 : :
623 : 9707 : for (i = 0; i < gimple_phi_num_args (phi); i++)
624 : : {
625 : 9000 : basic_block bb = gimple_phi_arg_edge (phi, i)->src;
626 : :
627 : 9000 : if (bb == m_switch_bb
628 : 26104 : || (single_pred_p (bb)
629 : 8191 : && single_pred (bb) == m_switch_bb
630 : 8025 : && (!m_default_case_nonstandard
631 : 487 : || empty_block_p (bb))))
632 : : {
633 : 8793 : tree reloc, val;
634 : 8793 : const char *reason = NULL;
635 : :
636 : 8793 : val = gimple_phi_arg_def (phi, i);
637 : 8793 : if (!is_gimple_ip_invariant (val))
638 : : reason = "non-invariant value from a case";
639 : : else
640 : : {
641 : 8756 : reloc = initializer_constant_valid_p (val, TREE_TYPE (val));
642 : 8756 : if ((flag_pic && reloc != null_pointer_node)
643 : 8689 : || (!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 : 650 : switch_conversion::create_temp_arrays ()
690 : : {
691 : 650 : int i;
692 : :
693 : 650 : 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 : 650 : typedef vec<constructor_elt, va_gc> *vec_constructor_elt_gc;
697 : 650 : m_constructors = XCNEWVEC (vec_constructor_elt_gc, m_phi_count);
698 : 650 : m_target_inbound_names = m_default_values + m_phi_count;
699 : 650 : m_target_outbound_names = m_target_inbound_names + m_phi_count;
700 : 1355 : for (i = 0; i < m_phi_count; i++)
701 : 705 : vec_alloc (m_constructors[i], tree_to_uhwi (m_range_size) + 1);
702 : 650 : }
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 : 650 : switch_conversion::gather_default_values (tree default_case)
711 : : {
712 : 650 : gphi_iterator gsi;
713 : 650 : basic_block bb = label_to_block (cfun, CASE_LABEL (default_case));
714 : 650 : edge e;
715 : 650 : int i = 0;
716 : :
717 : 650 : gcc_assert (CASE_LOW (default_case) == NULL_TREE
718 : : || m_default_case_nonstandard);
719 : :
720 : 650 : if (bb == m_final_bb)
721 : 211 : e = find_edge (m_switch_bb, bb);
722 : : else
723 : 439 : e = single_succ_edge (bb);
724 : :
725 : 1372 : for (gsi = gsi_start_phis (m_final_bb); !gsi_end_p (gsi); gsi_next (&gsi))
726 : : {
727 : 722 : gphi *phi = gsi.phi ();
728 : 1444 : if (virtual_operand_p (gimple_phi_result (phi)))
729 : 17 : continue;
730 : 705 : tree val = PHI_ARG_DEF_FROM_EDGE (phi, e);
731 : 705 : gcc_assert (val);
732 : 705 : m_default_values[i++] = val;
733 : : }
734 : 650 : }
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 : 650 : switch_conversion::build_constructors ()
742 : : {
743 : 650 : unsigned i, branch_num = gimple_switch_num_labels (m_switch);
744 : 650 : tree pos = m_range_min;
745 : 650 : tree pos_one = build_int_cst (TREE_TYPE (pos), 1);
746 : :
747 : 8657 : for (i = 1; i < branch_num; i++)
748 : : {
749 : 8007 : tree cs = gimple_switch_label (m_switch, i);
750 : 8007 : basic_block bb = label_to_block (cfun, CASE_LABEL (cs));
751 : 8007 : edge e;
752 : 8007 : tree high;
753 : 8007 : gphi_iterator gsi;
754 : 8007 : int j;
755 : :
756 : 8007 : if (bb == m_final_bb)
757 : 513 : e = find_edge (m_switch_bb, bb);
758 : : else
759 : 7494 : e = single_succ_edge (bb);
760 : 8007 : gcc_assert (e);
761 : :
762 : 11853 : while (tree_int_cst_lt (pos, CASE_LOW (cs)))
763 : : {
764 : : int k;
765 : 9124 : for (k = 0; k < m_phi_count; k++)
766 : : {
767 : 5278 : constructor_elt elt;
768 : :
769 : 5278 : elt.index = int_const_binop (MINUS_EXPR, pos, m_range_min);
770 : 5278 : if (TYPE_PRECISION (TREE_TYPE (elt.index))
771 : 5278 : > TYPE_PRECISION (sizetype))
772 : 18 : elt.index = fold_convert (sizetype, elt.index);
773 : 5278 : elt.value
774 : 5278 : = unshare_expr_without_location (m_default_values[k]);
775 : 5278 : m_constructors[k]->quick_push (elt);
776 : : }
777 : :
778 : 3846 : pos = int_const_binop (PLUS_EXPR, pos, pos_one);
779 : : }
780 : 8007 : gcc_assert (tree_int_cst_equal (pos, CASE_LOW (cs)));
781 : :
782 : 8007 : j = 0;
783 : 8007 : if (CASE_HIGH (cs))
784 : 108 : high = CASE_HIGH (cs);
785 : : else
786 : 7899 : high = CASE_LOW (cs);
787 : 8007 : for (gsi = gsi_start_phis (m_final_bb);
788 : 16543 : !gsi_end_p (gsi); gsi_next (&gsi))
789 : : {
790 : 8536 : gphi *phi = gsi.phi ();
791 : 17072 : if (virtual_operand_p (gimple_phi_result (phi)))
792 : 72 : continue;
793 : 8464 : tree val = PHI_ARG_DEF_FROM_EDGE (phi, e);
794 : 8464 : tree low = CASE_LOW (cs);
795 : 8464 : pos = CASE_LOW (cs);
796 : :
797 : 8791 : do
798 : : {
799 : 8791 : constructor_elt elt;
800 : :
801 : 8791 : elt.index = int_const_binop (MINUS_EXPR, pos, m_range_min);
802 : 8791 : if (TYPE_PRECISION (TREE_TYPE (elt.index))
803 : 8791 : > TYPE_PRECISION (sizetype))
804 : 3 : elt.index = fold_convert (sizetype, elt.index);
805 : 8791 : elt.value = unshare_expr_without_location (val);
806 : 8791 : m_constructors[j]->quick_push (elt);
807 : :
808 : 8791 : pos = int_const_binop (PLUS_EXPR, pos, pos_one);
809 : 8791 : } while (!tree_int_cst_lt (high, pos)
810 : 17255 : && tree_int_cst_lt (low, pos));
811 : 8464 : j++;
812 : : }
813 : : }
814 : 650 : }
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 : 705 : switch_conversion::contains_linear_function_p (vec<constructor_elt, va_gc> *vec,
823 : : wide_int *coeff_a,
824 : : wide_int *coeff_b)
825 : : {
826 : 705 : unsigned int i;
827 : 705 : constructor_elt *elt;
828 : :
829 : 705 : 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 : 705 : tree elt0 = (*vec)[0].value;
844 : 705 : tree elt1 = (*vec)[1].value;
845 : :
846 : 705 : if (TREE_CODE (elt0) != INTEGER_CST || TREE_CODE (elt1) != INTEGER_CST)
847 : : return false;
848 : :
849 : 557 : wide_int range_min
850 : 557 : = wide_int::from (wi::to_wide (m_range_min),
851 : 557 : TYPE_PRECISION (TREE_TYPE (elt0)),
852 : 1671 : TYPE_SIGN (TREE_TYPE (m_range_min)));
853 : 557 : wide_int y1 = wi::to_wide (elt0);
854 : 557 : wide_int y2 = wi::to_wide (elt1);
855 : 557 : wide_int a = y2 - y1;
856 : 557 : wide_int b = y2 - a * (range_min + 1);
857 : :
858 : : /* Verify that all values fulfill the linear function. */
859 : 2168 : FOR_EACH_VEC_SAFE_ELT (vec, i, elt)
860 : : {
861 : 2077 : if (TREE_CODE (elt->value) != INTEGER_CST)
862 : 466 : return false;
863 : :
864 : 2077 : wide_int value = wi::to_wide (elt->value);
865 : 2077 : if (a * range_min + b != value)
866 : 466 : return false;
867 : :
868 : 1611 : ++range_min;
869 : 2077 : }
870 : :
871 : 91 : *coeff_a = a;
872 : 91 : *coeff_b = b;
873 : :
874 : 91 : return true;
875 : 557 : }
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 : 614 : switch_conversion::array_value_type (tree type, int num)
883 : : {
884 : 614 : unsigned int i, len = vec_safe_length (m_constructors[num]);
885 : 614 : constructor_elt *elt;
886 : 614 : int sign = 0;
887 : 614 : 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 : 614 : type = TYPE_MAIN_VARIANT (type);
895 : :
896 : 614 : if (!INTEGRAL_TYPE_P (type)
897 : 614 : || (TREE_CODE (type) == BITINT_TYPE
898 : 0 : && (TYPE_PRECISION (type) > MAX_FIXED_MODE_SIZE
899 : 0 : || TYPE_MODE (type) == BLKmode)))
900 : 148 : return type;
901 : :
902 : 466 : scalar_int_mode type_mode = SCALAR_INT_TYPE_MODE (type);
903 : 466 : scalar_int_mode mode = get_narrowest_mode (type_mode);
904 : 1398 : 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 : 705 : switch_conversion::build_one_array (int num, tree arr_index_type,
969 : : gphi *phi, tree tidx)
970 : : {
971 : 705 : tree name;
972 : 705 : gimple *load;
973 : 705 : gimple_stmt_iterator gsi = gsi_for_stmt (m_switch);
974 : 705 : location_t loc = gimple_location (m_switch);
975 : :
976 : 705 : gcc_assert (m_default_values[num]);
977 : :
978 : 705 : name = copy_ssa_name (PHI_RESULT (phi));
979 : 705 : m_target_inbound_names[num] = name;
980 : :
981 : 705 : vec<constructor_elt, va_gc> *constructor = m_constructors[num];
982 : 705 : wide_int coeff_a, coeff_b;
983 : 705 : bool linear_p = contains_linear_function_p (constructor, &coeff_a, &coeff_b);
984 : 705 : tree type;
985 : 705 : if (linear_p
986 : 705 : && (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 : 614 : tree array_type, ctor, decl, value_type, fetch, default_type;
1007 : :
1008 : 614 : default_type = TREE_TYPE (m_default_values[num]);
1009 : 614 : value_type = array_value_type (default_type, num);
1010 : 614 : array_type = build_array_type (value_type, arr_index_type);
1011 : 614 : addr_space_t as
1012 : 614 : = targetm.addr_space.for_artificial_rodata (array_type,
1013 : : ARTIFICIAL_RODATA_CSWITCH);
1014 : 614 : if (!ADDR_SPACE_GENERIC_P (as))
1015 : : {
1016 : 0 : int quals = (TYPE_QUALS_NO_ADDR_SPACE (value_type)
1017 : 0 : | ENCODE_QUAL_ADDR_SPACE (as));
1018 : 0 : value_type = build_qualified_type (value_type, quals);
1019 : 0 : array_type = build_array_type (value_type, arr_index_type);
1020 : : }
1021 : 614 : if (default_type != value_type)
1022 : : {
1023 : : unsigned int i;
1024 : : constructor_elt *elt;
1025 : :
1026 : 3386 : FOR_EACH_VEC_SAFE_ELT (constructor, i, elt)
1027 : 3272 : elt->value = fold_convert (value_type, elt->value);
1028 : : }
1029 : 614 : ctor = build_constructor (array_type, constructor);
1030 : 614 : TREE_CONSTANT (ctor) = true;
1031 : 614 : TREE_STATIC (ctor) = true;
1032 : :
1033 : 614 : decl = build_decl (loc, VAR_DECL, NULL_TREE, array_type);
1034 : 614 : TREE_STATIC (decl) = 1;
1035 : 614 : DECL_INITIAL (decl) = ctor;
1036 : :
1037 : 614 : DECL_NAME (decl) = create_tmp_var_name ("CSWTCH");
1038 : 614 : DECL_ARTIFICIAL (decl) = 1;
1039 : 614 : DECL_IGNORED_P (decl) = 1;
1040 : 614 : TREE_CONSTANT (decl) = 1;
1041 : 614 : TREE_READONLY (decl) = 1;
1042 : 614 : DECL_IGNORED_P (decl) = 1;
1043 : : /* The decl is mergeable since we don't take the address ever and
1044 : : just reading from it. */
1045 : 614 : DECL_MERGEABLE (decl) = 1;
1046 : :
1047 : 614 : if (offloading_function_p (cfun->decl))
1048 : 0 : DECL_ATTRIBUTES (decl)
1049 : 0 : = tree_cons (get_identifier ("omp declare target"), NULL_TREE,
1050 : : NULL_TREE);
1051 : 614 : varpool_node::finalize_decl (decl);
1052 : :
1053 : 614 : fetch = build4 (ARRAY_REF, value_type, decl, tidx, NULL_TREE,
1054 : : NULL_TREE);
1055 : 614 : if (default_type != value_type)
1056 : : {
1057 : 114 : fetch = fold_convert (default_type, fetch);
1058 : 114 : fetch = force_gimple_operand_gsi (&gsi, fetch, true, NULL_TREE,
1059 : : true, GSI_SAME_STMT);
1060 : : }
1061 : 614 : load = gimple_build_assign (name, fetch);
1062 : : }
1063 : :
1064 : 705 : gsi_insert_before (&gsi, load, GSI_SAME_STMT);
1065 : 705 : update_stmt (load);
1066 : 705 : m_arr_ref_last = load;
1067 : 705 : }
1068 : :
1069 : : /* Builds and initializes static arrays initialized with values gathered from
1070 : : the switch statement. Also creates statements that load values from
1071 : : them. */
1072 : :
1073 : : void
1074 : 650 : switch_conversion::build_arrays ()
1075 : : {
1076 : 650 : tree arr_index_type;
1077 : 650 : tree tidx, sub, utype, tidxtype;
1078 : 650 : gimple *stmt;
1079 : 650 : gimple_stmt_iterator gsi;
1080 : 650 : gphi_iterator gpi;
1081 : 650 : int i;
1082 : 650 : location_t loc = gimple_location (m_switch);
1083 : :
1084 : 650 : gsi = gsi_for_stmt (m_switch);
1085 : :
1086 : : /* Make sure we do not generate arithmetics in a subrange. */
1087 : 650 : utype = TREE_TYPE (m_index_expr);
1088 : 650 : if (TREE_TYPE (utype))
1089 : 46 : utype = lang_hooks.types.type_for_mode (TYPE_MODE (TREE_TYPE (utype)), 1);
1090 : 604 : else if (TREE_CODE (utype) == BITINT_TYPE
1091 : 605 : && (TYPE_PRECISION (utype) > MAX_FIXED_MODE_SIZE
1092 : 0 : || TYPE_MODE (utype) == BLKmode))
1093 : 1 : utype = unsigned_type_for (utype);
1094 : : else
1095 : 603 : utype = lang_hooks.types.type_for_mode (TYPE_MODE (utype), 1);
1096 : 650 : if (TYPE_PRECISION (utype) > TYPE_PRECISION (sizetype))
1097 : 1 : tidxtype = sizetype;
1098 : : else
1099 : : tidxtype = utype;
1100 : :
1101 : 650 : arr_index_type = build_index_type (m_range_size);
1102 : 650 : tidx = make_ssa_name (tidxtype);
1103 : 650 : sub = fold_build2_loc (loc, MINUS_EXPR, utype,
1104 : : fold_convert_loc (loc, utype, m_index_expr),
1105 : : fold_convert_loc (loc, utype, m_range_min));
1106 : 650 : sub = fold_convert (tidxtype, sub);
1107 : 650 : sub = force_gimple_operand_gsi (&gsi, sub,
1108 : : false, NULL, true, GSI_SAME_STMT);
1109 : 650 : stmt = gimple_build_assign (tidx, sub);
1110 : :
1111 : 650 : gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
1112 : 650 : update_stmt (stmt);
1113 : 650 : m_arr_ref_first = stmt;
1114 : :
1115 : 650 : for (gpi = gsi_start_phis (m_final_bb), i = 0;
1116 : 1372 : !gsi_end_p (gpi); gsi_next (&gpi))
1117 : : {
1118 : 722 : gphi *phi = gpi.phi ();
1119 : 1444 : if (!virtual_operand_p (gimple_phi_result (phi)))
1120 : 705 : build_one_array (i++, arr_index_type, phi, tidx);
1121 : : else
1122 : : {
1123 : 17 : edge e;
1124 : 17 : edge_iterator ei;
1125 : 21 : FOR_EACH_EDGE (e, ei, m_switch_bb->succs)
1126 : : {
1127 : 21 : if (e->dest == m_final_bb)
1128 : : break;
1129 : 11 : if (!m_default_case_nonstandard
1130 : 4 : || e->dest != m_default_bb)
1131 : : {
1132 : 7 : e = single_succ_edge (e->dest);
1133 : 7 : break;
1134 : : }
1135 : : }
1136 : 17 : gcc_assert (e && e->dest == m_final_bb);
1137 : 17 : m_target_vop = PHI_ARG_DEF_FROM_EDGE (phi, e);
1138 : : }
1139 : : }
1140 : 650 : }
1141 : :
1142 : : /* Generates and appropriately inserts loads of default values at the position
1143 : : given by GSI. Returns the last inserted statement. */
1144 : :
1145 : : gassign *
1146 : 546 : switch_conversion::gen_def_assigns (gimple_stmt_iterator *gsi)
1147 : : {
1148 : 546 : int i;
1149 : 546 : gassign *assign = NULL;
1150 : :
1151 : 1135 : for (i = 0; i < m_phi_count; i++)
1152 : : {
1153 : 589 : tree name = copy_ssa_name (m_target_inbound_names[i]);
1154 : 589 : m_target_outbound_names[i] = name;
1155 : 589 : assign = gimple_build_assign (name, m_default_values[i]);
1156 : 589 : gsi_insert_before (gsi, assign, GSI_SAME_STMT);
1157 : 589 : update_stmt (assign);
1158 : : }
1159 : 546 : return assign;
1160 : : }
1161 : :
1162 : : /* Deletes the unused bbs and edges that now contain the switch statement and
1163 : : its empty branch bbs. BBD is the now dead BB containing
1164 : : the original switch statement, FINAL is the last BB of the converted
1165 : : switch statement (in terms of succession). */
1166 : :
1167 : : void
1168 : 650 : switch_conversion::prune_bbs (basic_block bbd, basic_block final,
1169 : : basic_block default_bb)
1170 : : {
1171 : 650 : edge_iterator ei;
1172 : 650 : edge e;
1173 : :
1174 : 9816 : for (ei = ei_start (bbd->succs); (e = ei_safe_edge (ei)); )
1175 : : {
1176 : 8516 : basic_block bb;
1177 : 8516 : bb = e->dest;
1178 : 8516 : remove_edge (e);
1179 : 8516 : if (bb != final && bb != default_bb)
1180 : 7773 : delete_basic_block (bb);
1181 : : }
1182 : 650 : delete_basic_block (bbd);
1183 : 650 : }
1184 : :
1185 : : /* Add values to phi nodes in final_bb for the two new edges. E1F is the edge
1186 : : from the basic block loading values from an array and E2F from the basic
1187 : : block loading default values. BBF is the last switch basic block (see the
1188 : : bbf description in the comment below). */
1189 : :
1190 : : void
1191 : 650 : switch_conversion::fix_phi_nodes (edge e1f, edge e2f, basic_block bbf)
1192 : : {
1193 : 650 : gphi_iterator gsi;
1194 : 650 : int i;
1195 : :
1196 : 650 : for (gsi = gsi_start_phis (bbf), i = 0;
1197 : 1372 : !gsi_end_p (gsi); gsi_next (&gsi))
1198 : : {
1199 : 722 : gphi *phi = gsi.phi ();
1200 : 722 : tree inbound, outbound;
1201 : 1444 : if (virtual_operand_p (gimple_phi_result (phi)))
1202 : 17 : inbound = outbound = m_target_vop;
1203 : : else
1204 : : {
1205 : 705 : inbound = m_target_inbound_names[i];
1206 : 705 : outbound = m_target_outbound_names[i++];
1207 : : }
1208 : 722 : add_phi_arg (phi, inbound, e1f, UNKNOWN_LOCATION);
1209 : 722 : if (!m_default_case_nonstandard)
1210 : 602 : add_phi_arg (phi, outbound, e2f, UNKNOWN_LOCATION);
1211 : : }
1212 : 650 : }
1213 : :
1214 : : /* Creates a check whether the switch expression value actually falls into the
1215 : : range given by all the cases. If it does not, the temporaries are loaded
1216 : : with default values instead. */
1217 : :
1218 : : void
1219 : 650 : switch_conversion::gen_inbound_check ()
1220 : : {
1221 : 650 : tree label_decl1 = create_artificial_label (UNKNOWN_LOCATION);
1222 : 650 : tree label_decl2 = create_artificial_label (UNKNOWN_LOCATION);
1223 : 650 : tree label_decl3 = create_artificial_label (UNKNOWN_LOCATION);
1224 : 650 : glabel *label1, *label2, *label3;
1225 : 650 : tree utype, tidx;
1226 : 650 : tree bound;
1227 : :
1228 : 650 : gcond *cond_stmt;
1229 : :
1230 : 650 : gassign *last_assign = NULL;
1231 : 650 : gimple_stmt_iterator gsi;
1232 : 650 : basic_block bb0, bb1, bb2, bbf, bbd;
1233 : 650 : edge e01 = NULL, e02, e21, e1d, e1f, e2f;
1234 : 650 : location_t loc = gimple_location (m_switch);
1235 : :
1236 : 650 : gcc_assert (m_default_values);
1237 : :
1238 : 650 : bb0 = gimple_bb (m_switch);
1239 : :
1240 : 650 : tidx = gimple_assign_lhs (m_arr_ref_first);
1241 : 650 : utype = TREE_TYPE (tidx);
1242 : :
1243 : : /* (end of) block 0 */
1244 : 650 : gsi = gsi_for_stmt (m_arr_ref_first);
1245 : 650 : gsi_next (&gsi);
1246 : :
1247 : 650 : bound = fold_convert_loc (loc, utype, m_range_size);
1248 : 650 : cond_stmt = gimple_build_cond (LE_EXPR, tidx, bound, NULL_TREE, NULL_TREE);
1249 : 650 : gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
1250 : 650 : update_stmt (cond_stmt);
1251 : :
1252 : : /* block 2 */
1253 : 650 : if (!m_default_case_nonstandard)
1254 : : {
1255 : 546 : label2 = gimple_build_label (label_decl2);
1256 : 546 : gsi_insert_before (&gsi, label2, GSI_SAME_STMT);
1257 : 546 : last_assign = gen_def_assigns (&gsi);
1258 : : }
1259 : :
1260 : : /* block 1 */
1261 : 650 : label1 = gimple_build_label (label_decl1);
1262 : 650 : gsi_insert_before (&gsi, label1, GSI_SAME_STMT);
1263 : :
1264 : : /* block F */
1265 : 650 : gsi = gsi_start_bb (m_final_bb);
1266 : 650 : label3 = gimple_build_label (label_decl3);
1267 : 650 : gsi_insert_before (&gsi, label3, GSI_SAME_STMT);
1268 : :
1269 : : /* cfg fix */
1270 : 650 : e02 = split_block (bb0, cond_stmt);
1271 : 650 : bb2 = e02->dest;
1272 : :
1273 : 650 : if (m_default_case_nonstandard)
1274 : : {
1275 : 104 : bb1 = bb2;
1276 : 104 : bb2 = m_default_bb;
1277 : 104 : e01 = e02;
1278 : 104 : e01->flags = EDGE_TRUE_VALUE;
1279 : 104 : e02 = make_edge (bb0, bb2, EDGE_FALSE_VALUE);
1280 : 104 : edge e_default = find_edge (bb1, bb2);
1281 : 104 : for (gphi_iterator gsi = gsi_start_phis (bb2);
1282 : 131 : !gsi_end_p (gsi); gsi_next (&gsi))
1283 : : {
1284 : 27 : gphi *phi = gsi.phi ();
1285 : 27 : tree arg = PHI_ARG_DEF_FROM_EDGE (phi, e_default);
1286 : 27 : add_phi_arg (phi, arg, e02,
1287 : : gimple_phi_arg_location_from_edge (phi, e_default));
1288 : : }
1289 : : /* Partially fix the dominator tree, if it is available. */
1290 : 104 : if (dom_info_available_p (CDI_DOMINATORS))
1291 : 104 : redirect_immediate_dominators (CDI_DOMINATORS, bb1, bb0);
1292 : : }
1293 : : else
1294 : : {
1295 : 546 : e21 = split_block (bb2, last_assign);
1296 : 546 : bb1 = e21->dest;
1297 : 546 : remove_edge (e21);
1298 : : }
1299 : :
1300 : 650 : e1d = split_block (bb1, m_arr_ref_last);
1301 : 650 : bbd = e1d->dest;
1302 : 650 : remove_edge (e1d);
1303 : :
1304 : : /* Flags and profiles of the edge for in-range values. */
1305 : 650 : if (!m_default_case_nonstandard)
1306 : 546 : e01 = make_edge (bb0, bb1, EDGE_TRUE_VALUE);
1307 : 650 : e01->probability = m_default_prob.invert ();
1308 : :
1309 : : /* Flags and profiles of the edge taking care of out-of-range values. */
1310 : 650 : e02->flags &= ~EDGE_FALLTHRU;
1311 : 650 : e02->flags |= EDGE_FALSE_VALUE;
1312 : 650 : e02->probability = m_default_prob;
1313 : :
1314 : 650 : bbf = m_final_bb;
1315 : :
1316 : 650 : e1f = make_edge (bb1, bbf, EDGE_FALLTHRU);
1317 : 650 : e1f->probability = profile_probability::always ();
1318 : :
1319 : 650 : if (m_default_case_nonstandard)
1320 : : e2f = NULL;
1321 : : else
1322 : : {
1323 : 546 : e2f = make_edge (bb2, bbf, EDGE_FALLTHRU);
1324 : 546 : e2f->probability = profile_probability::always ();
1325 : : }
1326 : :
1327 : : /* frequencies of the new BBs */
1328 : 650 : bb1->count = e01->count ();
1329 : 650 : bb2->count = e02->count ();
1330 : 650 : if (!m_default_case_nonstandard)
1331 : 546 : bbf->count = e1f->count () + e2f->count ();
1332 : :
1333 : : /* Tidy blocks that have become unreachable. */
1334 : 1425 : bool prune_default_bb = !m_default_case_nonstandard
1335 : 650 : && !m_exp_index_transform_applied;
1336 : 650 : prune_bbs (bbd, m_final_bb, prune_default_bb ? NULL : m_default_bb);
1337 : :
1338 : : /* Fixup the PHI nodes in bbF. */
1339 : 650 : fix_phi_nodes (e1f, e2f, bbf);
1340 : :
1341 : : /* Fix the dominator tree, if it is available. */
1342 : 650 : if (dom_info_available_p (CDI_DOMINATORS))
1343 : : {
1344 : 650 : vec<basic_block> bbs_to_fix_dom;
1345 : :
1346 : 650 : set_immediate_dominator (CDI_DOMINATORS, bb1, bb0);
1347 : 650 : if (!m_default_case_nonstandard)
1348 : 546 : set_immediate_dominator (CDI_DOMINATORS, bb2, bb0);
1349 : 650 : if (! get_immediate_dominator (CDI_DOMINATORS, bbf))
1350 : : /* If bbD was the immediate dominator ... */
1351 : 435 : set_immediate_dominator (CDI_DOMINATORS, bbf, bb0);
1352 : :
1353 : 665 : bbs_to_fix_dom.create (3 + (bb2 != bbf));
1354 : 650 : bbs_to_fix_dom.quick_push (bb0);
1355 : 650 : bbs_to_fix_dom.quick_push (bb1);
1356 : 650 : if (bb2 != bbf)
1357 : 635 : bbs_to_fix_dom.quick_push (bb2);
1358 : 650 : bbs_to_fix_dom.quick_push (bbf);
1359 : :
1360 : 650 : iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
1361 : 650 : bbs_to_fix_dom.release ();
1362 : : }
1363 : 650 : }
1364 : :
1365 : : /* The following function is invoked on every switch statement (the current
1366 : : one is given in SWTCH) and runs the individual phases of switch
1367 : : conversion on it one after another until one fails or the conversion
1368 : : is completed. On success, NULL is in m_reason, otherwise points
1369 : : to a string with the reason why the conversion failed. */
1370 : :
1371 : : void
1372 : 29188 : switch_conversion::expand (gswitch *swtch)
1373 : : {
1374 : : /* Group case labels so that we get the right results from the heuristics
1375 : : that decide on the code generation approach for this switch. */
1376 : 29188 : m_cfg_altered |= group_case_labels_stmt (swtch);
1377 : :
1378 : : /* If this switch is now a degenerate case with only a default label,
1379 : : there is nothing left for us to do. */
1380 : 29188 : if (gimple_switch_num_labels (swtch) < 2)
1381 : : {
1382 : 0 : m_reason = "switch is a degenerate case";
1383 : 0 : return;
1384 : : }
1385 : :
1386 : 29188 : collect (swtch);
1387 : :
1388 : : /* No error markers should reach here (they should be filtered out
1389 : : during gimplification). */
1390 : 29188 : gcc_checking_assert (TREE_TYPE (m_index_expr) != error_mark_node);
1391 : :
1392 : : /* Prefer bit test if possible. */
1393 : 29188 : if (tree_fits_uhwi_p (m_range_size)
1394 : 29118 : && bit_test_cluster::can_be_handled (tree_to_uhwi (m_range_size), m_uniq)
1395 : 44322 : && bit_test_cluster::is_beneficial (m_count, m_uniq))
1396 : : {
1397 : 3105 : m_reason = "expanding as bit test is preferable";
1398 : 3105 : return;
1399 : : }
1400 : :
1401 : 26083 : if (m_uniq <= 2)
1402 : : {
1403 : : /* This will be expanded as a decision tree . */
1404 : 7991 : m_reason = "expanding as jumps is preferable";
1405 : 7991 : return;
1406 : : }
1407 : :
1408 : : /* If there is no common successor, we cannot do the transformation. */
1409 : 18092 : if (!m_final_bb)
1410 : : {
1411 : 10735 : m_reason = "no common successor to all case label target blocks found";
1412 : 10735 : return;
1413 : : }
1414 : :
1415 : : /* Sometimes it is possible to use the "exponential index transform" to help
1416 : : switch conversion convert switches which it otherwise could not convert.
1417 : : However, we want to do this transform only when we know that switch
1418 : : conversion will then really be able to convert the switch. So we first
1419 : : check if the transformation is applicable and then maybe later do the
1420 : : transformation. */
1421 : 7357 : bool exp_transform_viable = is_exp_index_transform_viable (swtch);
1422 : :
1423 : : /* Check the case label values are within reasonable range.
1424 : :
1425 : : If we will be doing exponential index transform, the range will be always
1426 : : reasonable. */
1427 : 7357 : if (!exp_transform_viable && !check_range ())
1428 : : {
1429 : 760 : gcc_assert (m_reason);
1430 : : return;
1431 : : }
1432 : :
1433 : : /* For all the cases, see whether they are empty, the assignments they
1434 : : represent constant and so on... */
1435 : 6597 : if (!check_all_empty_except_final ())
1436 : : {
1437 : 5860 : gcc_assert (m_reason);
1438 : : return;
1439 : : }
1440 : 737 : if (!check_final_bb ())
1441 : : {
1442 : 87 : gcc_assert (m_reason);
1443 : : return;
1444 : : }
1445 : :
1446 : : /* At this point all checks have passed and we can proceed with the
1447 : : transformation. */
1448 : :
1449 : 650 : if (exp_transform_viable)
1450 : 21 : exp_index_transform (swtch);
1451 : :
1452 : 650 : create_temp_arrays ();
1453 : 1300 : gather_default_values (m_default_case_nonstandard
1454 : 104 : ? gimple_switch_label (swtch, 1)
1455 : 546 : : gimple_switch_default_label (swtch));
1456 : 650 : build_constructors ();
1457 : :
1458 : 650 : build_arrays (); /* Build the static arrays and assignments. */
1459 : 650 : gen_inbound_check (); /* Build the bounds check. */
1460 : :
1461 : 650 : m_cfg_altered = true;
1462 : : }
1463 : :
1464 : : /* Destructor. */
1465 : :
1466 : 29188 : switch_conversion::~switch_conversion ()
1467 : : {
1468 : 29188 : XDELETEVEC (m_constructors);
1469 : 29188 : XDELETEVEC (m_default_values);
1470 : 29188 : }
1471 : :
1472 : : /* Constructor. */
1473 : :
1474 : 14576 : group_cluster::group_cluster (vec<cluster *> &clusters,
1475 : 14576 : unsigned start, unsigned end)
1476 : : {
1477 : 14576 : gcc_checking_assert (end - start + 1 >= 1);
1478 : 14576 : m_prob = profile_probability::never ();
1479 : 14576 : m_cases.create (end - start + 1);
1480 : 125003 : for (unsigned i = start; i <= end; i++)
1481 : : {
1482 : 110427 : m_cases.quick_push (static_cast<simple_cluster *> (clusters[i]));
1483 : 110427 : m_prob += clusters[i]->m_prob;
1484 : : }
1485 : 14576 : m_subtree_prob = m_prob;
1486 : 14576 : }
1487 : :
1488 : : /* Destructor. */
1489 : :
1490 : 14576 : group_cluster::~group_cluster ()
1491 : : {
1492 : 125003 : for (unsigned i = 0; i < m_cases.length (); i++)
1493 : 110427 : delete m_cases[i];
1494 : :
1495 : 14576 : m_cases.release ();
1496 : 14576 : }
1497 : :
1498 : : /* Dump content of a cluster. */
1499 : :
1500 : : void
1501 : 28 : group_cluster::dump (FILE *f, bool details)
1502 : : {
1503 : 28 : unsigned total_values = 0;
1504 : 390 : for (unsigned i = 0; i < m_cases.length (); i++)
1505 : 334 : total_values += m_cases[i]->get_range (m_cases[i]->get_low (),
1506 : 167 : m_cases[i]->get_high ());
1507 : :
1508 : : unsigned comparison_count = 0;
1509 : 195 : for (unsigned i = 0; i < m_cases.length (); i++)
1510 : : {
1511 : 167 : simple_cluster *sc = static_cast<simple_cluster *> (m_cases[i]);
1512 : 279 : comparison_count += sc->get_comparison_count ();
1513 : : }
1514 : :
1515 : 28 : unsigned HOST_WIDE_INT range = get_range (get_low (), get_high ());
1516 : 46 : fprintf (f, "%s", get_type () == JUMP_TABLE ? "JT" : "BT");
1517 : :
1518 : 28 : if (details)
1519 : 0 : fprintf (f, "(values:%d comparisons:%d range:" HOST_WIDE_INT_PRINT_DEC
1520 : : " density: %.2f%%)", total_values, comparison_count, range,
1521 : 0 : 100.0f * comparison_count / range);
1522 : :
1523 : 28 : fprintf (f, ":");
1524 : 28 : PRINT_CASE (f, get_low ());
1525 : 28 : fprintf (f, "-");
1526 : 28 : PRINT_CASE (f, get_high ());
1527 : 28 : fprintf (f, " ");
1528 : 28 : }
1529 : :
1530 : : /* Emit GIMPLE code to handle the cluster. */
1531 : :
1532 : : void
1533 : 8441 : jump_table_cluster::emit (tree index_expr, tree,
1534 : : tree default_label_expr, basic_block default_bb,
1535 : : location_t loc)
1536 : : {
1537 : 8441 : tree low = get_low ();
1538 : 8441 : unsigned HOST_WIDE_INT range = get_range (low, get_high ());
1539 : 8441 : unsigned HOST_WIDE_INT nondefault_range = 0;
1540 : 8441 : bool bitint = false;
1541 : 8441 : gimple_stmt_iterator gsi = gsi_start_bb (m_case_bb);
1542 : :
1543 : : /* For large/huge _BitInt, subtract low from index_expr, cast to unsigned
1544 : : DImode type (get_range doesn't support ranges larger than 64-bits)
1545 : : and subtract low from all case values as well. */
1546 : 8441 : if (TREE_CODE (TREE_TYPE (index_expr)) == BITINT_TYPE
1547 : 8441 : && TYPE_PRECISION (TREE_TYPE (index_expr)) > GET_MODE_PRECISION (DImode))
1548 : : {
1549 : 2 : bitint = true;
1550 : 2 : tree this_low = low, type;
1551 : 2 : gimple *g;
1552 : 2 : gimple_seq seq = NULL;
1553 : 2 : if (!TYPE_OVERFLOW_WRAPS (TREE_TYPE (index_expr)))
1554 : : {
1555 : 1 : type = unsigned_type_for (TREE_TYPE (index_expr));
1556 : 1 : index_expr = gimple_convert (&seq, type, index_expr);
1557 : 1 : this_low = fold_convert (type, this_low);
1558 : : }
1559 : 2 : this_low = const_unop (NEGATE_EXPR, TREE_TYPE (this_low), this_low);
1560 : 2 : index_expr = gimple_build (&seq, PLUS_EXPR, TREE_TYPE (index_expr),
1561 : : index_expr, this_low);
1562 : 2 : type = build_nonstandard_integer_type (GET_MODE_PRECISION (DImode), 1);
1563 : 2 : g = gimple_build_cond (GT_EXPR, index_expr,
1564 : 2 : fold_convert (TREE_TYPE (index_expr),
1565 : : TYPE_MAX_VALUE (type)),
1566 : : NULL_TREE, NULL_TREE);
1567 : 2 : gimple_seq_add_stmt (&seq, g);
1568 : 2 : gimple_seq_set_location (seq, loc);
1569 : 2 : gsi_insert_seq_after (&gsi, seq, GSI_NEW_STMT);
1570 : 2 : edge e1 = split_block (m_case_bb, g);
1571 : 2 : e1->flags = EDGE_FALSE_VALUE;
1572 : 2 : e1->probability = profile_probability::likely ();
1573 : 2 : edge e2 = make_edge (e1->src, default_bb, EDGE_TRUE_VALUE);
1574 : 2 : e2->probability = e1->probability.invert ();
1575 : 2 : gsi = gsi_start_bb (e1->dest);
1576 : 2 : seq = NULL;
1577 : 2 : index_expr = gimple_convert (&seq, type, index_expr);
1578 : 2 : gimple_seq_set_location (seq, loc);
1579 : 2 : gsi_insert_seq_after (&gsi, seq, GSI_NEW_STMT);
1580 : : }
1581 : :
1582 : : /* For jump table we just emit a new gswitch statement that will
1583 : : be latter lowered to jump table. */
1584 : 8441 : auto_vec <tree> labels;
1585 : 16882 : labels.create (m_cases.length ());
1586 : :
1587 : 8441 : basic_block case_bb = gsi_bb (gsi);
1588 : 8441 : make_edge (case_bb, default_bb, 0);
1589 : 92192 : for (unsigned i = 0; i < m_cases.length (); i++)
1590 : : {
1591 : 83751 : tree lab = unshare_expr (m_cases[i]->m_case_label_expr);
1592 : 83751 : if (bitint)
1593 : : {
1594 : 13 : CASE_LOW (lab)
1595 : 13 : = fold_convert (TREE_TYPE (index_expr),
1596 : : const_binop (MINUS_EXPR,
1597 : : TREE_TYPE (CASE_LOW (lab)),
1598 : : CASE_LOW (lab), low));
1599 : 13 : if (CASE_HIGH (lab))
1600 : 0 : CASE_HIGH (lab)
1601 : 0 : = fold_convert (TREE_TYPE (index_expr),
1602 : : const_binop (MINUS_EXPR,
1603 : : TREE_TYPE (CASE_HIGH (lab)),
1604 : : CASE_HIGH (lab), low));
1605 : : }
1606 : 83751 : labels.quick_push (lab);
1607 : 83751 : make_edge (case_bb, m_cases[i]->m_case_bb, 0);
1608 : : }
1609 : :
1610 : 8441 : gswitch *s = gimple_build_switch (index_expr,
1611 : : unshare_expr (default_label_expr), labels);
1612 : 8441 : gimple_set_location (s, loc);
1613 : 8441 : gsi_insert_after (&gsi, s, GSI_NEW_STMT);
1614 : :
1615 : : /* Set up even probabilities for all cases. */
1616 : 92192 : for (unsigned i = 0; i < m_cases.length (); i++)
1617 : : {
1618 : 83751 : simple_cluster *sc = static_cast<simple_cluster *> (m_cases[i]);
1619 : 83751 : edge case_edge = find_edge (case_bb, sc->m_case_bb);
1620 : 83751 : unsigned HOST_WIDE_INT case_range
1621 : 83751 : = sc->get_range (sc->get_low (), sc->get_high ());
1622 : 83751 : nondefault_range += case_range;
1623 : :
1624 : : /* case_edge->aux is number of values in a jump-table that are covered
1625 : : by the case_edge. */
1626 : 83751 : case_edge->aux = (void *) ((intptr_t) (case_edge->aux) + case_range);
1627 : : }
1628 : :
1629 : 8441 : edge default_edge = gimple_switch_default_edge (cfun, s);
1630 : 8441 : default_edge->probability = profile_probability::never ();
1631 : :
1632 : 92192 : for (unsigned i = 0; i < m_cases.length (); i++)
1633 : : {
1634 : 83751 : simple_cluster *sc = static_cast<simple_cluster *> (m_cases[i]);
1635 : 83751 : edge case_edge = find_edge (case_bb, sc->m_case_bb);
1636 : 83751 : case_edge->probability
1637 : 83751 : = profile_probability::always ().apply_scale ((intptr_t)case_edge->aux,
1638 : : range);
1639 : : }
1640 : :
1641 : : /* Number of non-default values is probability of default edge. */
1642 : 8441 : default_edge->probability
1643 : 8441 : += profile_probability::always ().apply_scale (nondefault_range,
1644 : 8441 : range).invert ();
1645 : :
1646 : 8441 : switch_decision_tree::reset_out_edges_aux (s);
1647 : 8441 : }
1648 : :
1649 : : /* Find jump tables of given CLUSTERS, where all members of the vector
1650 : : are of type simple_cluster. New clusters are returned. */
1651 : :
1652 : : vec<cluster *>
1653 : 74373 : jump_table_cluster::find_jump_tables (vec<cluster *> &clusters)
1654 : : {
1655 : 74373 : if (!is_enabled ())
1656 : 15274 : return clusters.copy ();
1657 : :
1658 : 59099 : unsigned l = clusters.length ();
1659 : :
1660 : 59099 : auto_vec<min_cluster_item> min;
1661 : 59099 : min.reserve (l + 1);
1662 : :
1663 : 59099 : min.quick_push (min_cluster_item (0, 0, 0));
1664 : :
1665 : 59099 : unsigned HOST_WIDE_INT max_ratio
1666 : 59099 : = (optimize_insn_for_size_p ()
1667 : 59099 : ? param_jump_table_max_growth_ratio_for_size
1668 : 59099 : : param_jump_table_max_growth_ratio_for_speed);
1669 : :
1670 : 270727 : for (unsigned i = 1; i <= l; i++)
1671 : : {
1672 : : /* Set minimal # of clusters with i-th item to infinite. */
1673 : 211628 : min.quick_push (min_cluster_item (INT_MAX, INT_MAX, INT_MAX));
1674 : :
1675 : : /* Pre-calculate number of comparisons for the clusters. */
1676 : 211628 : HOST_WIDE_INT comparison_count = 0;
1677 : 7010372 : for (unsigned k = 0; k <= i - 1; k++)
1678 : : {
1679 : 6798744 : simple_cluster *sc = static_cast<simple_cluster *> (clusters[k]);
1680 : 13412172 : comparison_count += sc->get_comparison_count ();
1681 : : }
1682 : :
1683 : 7010372 : for (unsigned j = 0; j < i; j++)
1684 : : {
1685 : 6798744 : unsigned HOST_WIDE_INT s = min[j].m_non_jt_cases;
1686 : 13597124 : if (i - j < case_values_threshold ())
1687 : 531002 : s += i - j;
1688 : :
1689 : : /* Prefer clusters with smaller number of numbers covered. */
1690 : 6798744 : if ((min[j].m_count + 1 < min[i].m_count
1691 : 1848147 : || (min[j].m_count + 1 == min[i].m_count
1692 : 977 : && s < min[i].m_non_jt_cases))
1693 : 6798781 : && can_be_handled (clusters, j, i - 1, max_ratio,
1694 : : comparison_count))
1695 : 211654 : min[i] = min_cluster_item (min[j].m_count + 1, j, s);
1696 : :
1697 : 6798744 : simple_cluster *sc = static_cast<simple_cluster *> (clusters[j]);
1698 : 13412172 : comparison_count -= sc->get_comparison_count ();
1699 : : }
1700 : :
1701 : 211628 : gcc_checking_assert (comparison_count == 0);
1702 : 211628 : gcc_checking_assert (min[i].m_count != INT_MAX);
1703 : : }
1704 : :
1705 : : /* No result. */
1706 : 59099 : if (min[l].m_count == l)
1707 : 8475 : return clusters.copy ();
1708 : :
1709 : 50624 : vec<cluster *> output;
1710 : 50624 : output.create (4);
1711 : :
1712 : : /* Find and build the clusters. */
1713 : 50624 : for (unsigned int end = l;;)
1714 : : {
1715 : 57633 : int start = min[end].m_start;
1716 : :
1717 : : /* Do not allow clusters with small number of cases. */
1718 : 57633 : if (is_beneficial (clusters, start, end - 1))
1719 : 9183 : output.safe_push (new jump_table_cluster (clusters, start, end - 1));
1720 : : else
1721 : 150388 : for (int i = end - 1; i >= start; i--)
1722 : 101938 : output.safe_push (clusters[i]);
1723 : :
1724 : 57633 : end = start;
1725 : :
1726 : 57633 : if (start <= 0)
1727 : : break;
1728 : : }
1729 : :
1730 : 50624 : output.reverse ();
1731 : 50624 : return output;
1732 : 59099 : }
1733 : :
1734 : : /* Return true when cluster starting at START and ending at END (inclusive)
1735 : : can build a jump-table. */
1736 : :
1737 : : bool
1738 : 4950634 : jump_table_cluster::can_be_handled (const vec<cluster *> &clusters,
1739 : : unsigned start, unsigned end,
1740 : : unsigned HOST_WIDE_INT max_ratio,
1741 : : unsigned HOST_WIDE_INT comparison_count)
1742 : : {
1743 : : /* If the switch is relatively small such that the cost of one
1744 : : indirect jump on the target are higher than the cost of a
1745 : : decision tree, go with the decision tree.
1746 : :
1747 : : If range of values is much bigger than number of values,
1748 : : or if it is too large to represent in a HOST_WIDE_INT,
1749 : : make a sequence of conditional branches instead of a dispatch.
1750 : :
1751 : : The definition of "much bigger" depends on whether we are
1752 : : optimizing for size or for speed.
1753 : :
1754 : : For algorithm correctness, jump table for a single case must return
1755 : : true. We bail out in is_beneficial if it's called just for
1756 : : a single case. */
1757 : 4950634 : if (start == end)
1758 : : return true;
1759 : :
1760 : 9742698 : unsigned HOST_WIDE_INT range = get_range (clusters[start]->get_low (),
1761 : 4871349 : clusters[end]->get_high ());
1762 : : /* Check overflow. */
1763 : 4871349 : if (range == 0)
1764 : : return false;
1765 : :
1766 : 4868053 : if (range > HOST_WIDE_INT_M1U / 100)
1767 : : return false;
1768 : :
1769 : 657895 : unsigned HOST_WIDE_INT lhs = 100 * range;
1770 : 657895 : if (lhs < range)
1771 : : return false;
1772 : :
1773 : 657895 : return lhs <= max_ratio * comparison_count;
1774 : : }
1775 : :
1776 : : /* Return true if cluster starting at START and ending at END (inclusive)
1777 : : is profitable transformation. */
1778 : :
1779 : : bool
1780 : 57633 : jump_table_cluster::is_beneficial (const vec<cluster *> &,
1781 : : unsigned start, unsigned end)
1782 : : {
1783 : : /* Single case bail out. */
1784 : 57633 : if (start == end)
1785 : : return false;
1786 : :
1787 : 102676 : return end - start + 1 >= case_values_threshold ();
1788 : : }
1789 : :
1790 : : /* Find bit tests of given CLUSTERS, where all members of the vector
1791 : : are of type simple_cluster. MAX_C is the approx max number of cases per
1792 : : label. New clusters are returned. */
1793 : :
1794 : : vec<cluster *>
1795 : 75895 : bit_test_cluster::find_bit_tests (vec<cluster *> &clusters, int max_c)
1796 : : {
1797 : 75895 : if (!is_enabled () || max_c == 1)
1798 : 37376 : return clusters.copy ();
1799 : :
1800 : : /* Dynamic programming algorithm.
1801 : :
1802 : : In: List of simple clusters
1803 : : Out: List of simple clusters and bit test clusters such that each bit test
1804 : : cluster can_be_handled() and is_beneficial()
1805 : :
1806 : : Tries to merge consecutive clusters into bigger (bit test) ones. Tries to
1807 : : end up with as few clusters as possible. */
1808 : :
1809 : 38519 : unsigned l = clusters.length ();
1810 : :
1811 : 38518 : if (l == 0)
1812 : 1 : return clusters.copy ();
1813 : 38518 : gcc_checking_assert (l <= INT_MAX);
1814 : :
1815 : 38518 : auto_vec<min_cluster_item> min;
1816 : 38518 : min.reserve (l + 1);
1817 : :
1818 : 38518 : int bits_in_word = GET_MODE_BITSIZE (word_mode);
1819 : :
1820 : : /* First phase: Compute the minimum number of clusters for each prefix of the
1821 : : input list incrementally
1822 : :
1823 : : min[i] = (count, j, _) means that the prefix ending with the (i-1)-th
1824 : : element can be made to contain as few as count clusters and that in such
1825 : : clustering the last cluster is made up of input clusters [j, i-1]
1826 : : (inclusive). */
1827 : 38518 : min.quick_push (min_cluster_item (0, 0, INT_MAX));
1828 : 38518 : min.quick_push (min_cluster_item (1, 0, INT_MAX));
1829 : 130885 : for (int i = 2; i <= (int) l; i++)
1830 : : {
1831 : 92367 : auto_vec<unsigned, m_max_case_bit_tests> unique_labels;
1832 : :
1833 : : /* Since each cluster contains at least one case number and one bit test
1834 : : cluster can cover at most bits_in_word case numbers, we don't need to
1835 : : look farther than bits_in_word clusters back. */
1836 : 380550 : for (int j = i - 1; j >= 0 && j >= i - bits_in_word; j--)
1837 : : {
1838 : : /* Consider creating a bit test cluster from input clusters [j, i-1]
1839 : : (inclusive) */
1840 : :
1841 : 318248 : simple_cluster *sc = static_cast<simple_cluster *> (clusters[j]);
1842 : 318248 : unsigned label = sc->m_case_bb->index;
1843 : 318248 : if (!unique_labels.contains (label))
1844 : : {
1845 : 236077 : if (unique_labels.length () >= m_max_case_bit_tests)
1846 : : /* is_beneficial() will be false for this and the following
1847 : : iterations. */
1848 : : break;
1849 : 206012 : unique_labels.quick_push (label);
1850 : : }
1851 : :
1852 : 288183 : unsigned new_count = min[j].m_count + 1;
1853 : :
1854 : 288183 : if (j == i - 1)
1855 : : {
1856 : 92367 : min.quick_push (min_cluster_item (new_count, j, INT_MAX));
1857 : 92367 : continue;
1858 : : }
1859 : :
1860 : 195816 : unsigned HOST_WIDE_INT range
1861 : 195816 : = get_range (clusters[j]->get_low (), clusters[i-1]->get_high ());
1862 : 195816 : if (new_count < min[i].m_count
1863 : 173884 : && can_be_handled (range, unique_labels.length ())
1864 : 338446 : && is_beneficial (i - j, unique_labels.length ()))
1865 : 9377 : min[i] = min_cluster_item (new_count, j, INT_MAX);
1866 : : }
1867 : 92367 : }
1868 : :
1869 : 38518 : if (min[l].m_count == l)
1870 : : /* No bit test clustering opportunities. */
1871 : 33661 : return clusters.copy ();
1872 : :
1873 : 4857 : vec<cluster *> output;
1874 : 4857 : output.create (4);
1875 : :
1876 : : /* Second phase: Find and build the bit test clusters by traversing min
1877 : : array backwards. */
1878 : 4857 : for (unsigned end = l;;)
1879 : : {
1880 : 9616 : unsigned start = min[end].m_start;
1881 : 9616 : gcc_checking_assert (start < end);
1882 : :
1883 : : /* This cluster will be made out of input clusters [start, end - 1]. */
1884 : :
1885 : 9616 : if (start == end - 1)
1886 : : /* Let the cluster be a simple cluster. */
1887 : 4223 : output.safe_push (clusters[start]);
1888 : : else
1889 : : {
1890 : 5393 : bool entire = start == 0 && end == l;
1891 : 5393 : output.safe_push (new bit_test_cluster (clusters, start, end - 1,
1892 : 5393 : entire));
1893 : : }
1894 : :
1895 : 9616 : end = start;
1896 : :
1897 : 9616 : if (start <= 0)
1898 : : break;
1899 : : }
1900 : :
1901 : 4857 : output.reverse ();
1902 : 4857 : return output;
1903 : 38518 : }
1904 : :
1905 : : /* Return true when RANGE of case values with UNIQ labels
1906 : : can build a bit test. */
1907 : :
1908 : : bool
1909 : 203002 : bit_test_cluster::can_be_handled (unsigned HOST_WIDE_INT range,
1910 : : unsigned int uniq)
1911 : : {
1912 : : /* Check overflow. */
1913 : 203002 : if (range == 0)
1914 : : return false;
1915 : :
1916 : 401972 : if (range > GET_MODE_BITSIZE (word_mode))
1917 : : return false;
1918 : :
1919 : 168608 : return uniq <= m_max_case_bit_tests;
1920 : : }
1921 : :
1922 : : /* Return true when COUNT of cases of UNIQ labels is beneficial for bit test
1923 : : transformation. */
1924 : :
1925 : : bool
1926 : 157764 : bit_test_cluster::is_beneficial (unsigned count, unsigned uniq)
1927 : : {
1928 : : /* NOTE: When modifying this, keep in mind the value of
1929 : : m_max_case_bit_tests. */
1930 : 157764 : return (((uniq == 1 && count >= 3)
1931 : 148565 : || (uniq == 2 && count >= 5)
1932 : 304708 : || (uniq == 3 && count >= 6)));
1933 : : }
1934 : :
1935 : : /* Comparison function for qsort to order bit tests by decreasing
1936 : : probability of execution. */
1937 : :
1938 : : int
1939 : 8642 : case_bit_test::cmp (const void *p1, const void *p2)
1940 : : {
1941 : 8642 : const case_bit_test *const d1 = (const case_bit_test *) p1;
1942 : 8642 : const case_bit_test *const d2 = (const case_bit_test *) p2;
1943 : :
1944 : 8642 : if (d2->bits != d1->bits)
1945 : 7612 : return d2->bits - d1->bits;
1946 : :
1947 : : /* Stabilize the sort. */
1948 : 1030 : return (LABEL_DECL_UID (CASE_LABEL (d2->label))
1949 : 1030 : - LABEL_DECL_UID (CASE_LABEL (d1->label)));
1950 : : }
1951 : :
1952 : : /* Expand a switch statement by a short sequence of bit-wise
1953 : : comparisons. "switch(x)" is effectively converted into
1954 : : "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
1955 : : integer constants.
1956 : :
1957 : : INDEX_EXPR is the value being switched on.
1958 : :
1959 : : MINVAL is the lowest case value of in the case nodes,
1960 : : and RANGE is highest value minus MINVAL. MINVAL and RANGE
1961 : : are not guaranteed to be of the same type as INDEX_EXPR
1962 : : (the gimplifier doesn't change the type of case label values,
1963 : : and MINVAL and RANGE are derived from those values).
1964 : : MAXVAL is MINVAL + RANGE.
1965 : :
1966 : : There *MUST* be max_case_bit_tests or less unique case
1967 : : node targets. */
1968 : :
1969 : : void
1970 : 4348 : bit_test_cluster::emit (tree index_expr, tree index_type,
1971 : : tree, basic_block default_bb, location_t loc)
1972 : : {
1973 : 26088 : case_bit_test test[m_max_case_bit_tests] = { {} };
1974 : 4348 : unsigned int i, j, k;
1975 : 4348 : unsigned int count;
1976 : :
1977 : 4348 : tree unsigned_index_type = range_check_type (index_type);
1978 : :
1979 : 4348 : gimple_stmt_iterator gsi;
1980 : 4348 : gassign *shift_stmt;
1981 : :
1982 : 4348 : tree idx, tmp, csui;
1983 : 4348 : tree word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
1984 : 4348 : tree word_mode_zero = fold_convert (word_type_node, integer_zero_node);
1985 : 4348 : tree word_mode_one = fold_convert (word_type_node, integer_one_node);
1986 : 4348 : int prec = TYPE_PRECISION (word_type_node);
1987 : 4348 : wide_int wone = wi::one (prec);
1988 : :
1989 : 4348 : tree minval = get_low ();
1990 : 4348 : tree maxval = get_high ();
1991 : :
1992 : : /* Go through all case labels, and collect the case labels, profile
1993 : : counts, and other information we need to build the branch tests. */
1994 : 4348 : count = 0;
1995 : 22661 : for (i = 0; i < m_cases.length (); i++)
1996 : : {
1997 : 18313 : unsigned int lo, hi;
1998 : 18313 : simple_cluster *n = static_cast<simple_cluster *> (m_cases[i]);
1999 : 23089 : for (k = 0; k < count; k++)
2000 : 17041 : if (n->m_case_bb == test[k].target_bb)
2001 : : break;
2002 : :
2003 : 18313 : if (k == count)
2004 : : {
2005 : 6048 : gcc_checking_assert (count < m_max_case_bit_tests);
2006 : 6048 : test[k].mask = wi::zero (prec);
2007 : 6048 : test[k].target_bb = n->m_case_bb;
2008 : 6048 : test[k].label = n->m_case_label_expr;
2009 : 6048 : test[k].bits = 0;
2010 : 6048 : test[k].prob = profile_probability::never ();
2011 : 6048 : count++;
2012 : : }
2013 : :
2014 : 18313 : test[k].bits += n->get_range (n->get_low (), n->get_high ());
2015 : 18313 : test[k].prob += n->m_prob;
2016 : :
2017 : 18313 : lo = tree_to_uhwi (int_const_binop (MINUS_EXPR, n->get_low (), minval));
2018 : 18313 : if (n->get_high () == NULL_TREE)
2019 : : hi = lo;
2020 : : else
2021 : 18313 : hi = tree_to_uhwi (int_const_binop (MINUS_EXPR, n->get_high (),
2022 : : minval));
2023 : :
2024 : 43155 : for (j = lo; j <= hi; j++)
2025 : 24842 : test[k].mask |= wi::lshift (wone, j);
2026 : : }
2027 : :
2028 : 4348 : qsort (test, count, sizeof (*test), case_bit_test::cmp);
2029 : :
2030 : : /* If every possible relative value of the index expression is a valid shift
2031 : : amount, then we can merge the entry test in the bit test. */
2032 : 4348 : bool entry_test_needed;
2033 : 4348 : int_range_max r;
2034 : 8696 : if (TREE_CODE (index_expr) == SSA_NAME
2035 : 8696 : && get_range_query (cfun)->range_of_expr (r, index_expr)
2036 : 4348 : && !r.undefined_p ()
2037 : 4347 : && !r.varying_p ()
2038 : 10079 : && wi::leu_p (r.upper_bound () - r.lower_bound (), prec - 1))
2039 : : {
2040 : 61 : wide_int min = r.lower_bound ();
2041 : 61 : wide_int max = r.upper_bound ();
2042 : 61 : tree index_type = TREE_TYPE (index_expr);
2043 : 61 : minval = fold_convert (index_type, minval);
2044 : 61 : wide_int iminval = wi::to_wide (minval);
2045 : 61 : if (wi::lt_p (min, iminval, TYPE_SIGN (index_type)))
2046 : : {
2047 : 56 : minval = wide_int_to_tree (index_type, min);
2048 : 179 : for (i = 0; i < count; i++)
2049 : 123 : test[i].mask = wi::lshift (test[i].mask, iminval - min);
2050 : : }
2051 : 5 : else if (wi::gt_p (min, iminval, TYPE_SIGN (index_type)))
2052 : : {
2053 : 0 : minval = wide_int_to_tree (index_type, min);
2054 : 0 : for (i = 0; i < count; i++)
2055 : 0 : test[i].mask = wi::lrshift (test[i].mask, min - iminval);
2056 : : }
2057 : 61 : maxval = wide_int_to_tree (index_type, max);
2058 : 61 : entry_test_needed = false;
2059 : 61 : }
2060 : : else
2061 : : entry_test_needed = true;
2062 : :
2063 : : /* If all values are in the 0 .. BITS_PER_WORD-1 range, we can get rid of
2064 : : the minval subtractions, but it might make the mask constants more
2065 : : expensive. So, compare the costs. */
2066 : 4348 : if (compare_tree_int (minval, 0) > 0 && compare_tree_int (maxval, prec) < 0)
2067 : : {
2068 : 2265 : int cost_diff;
2069 : 2265 : HOST_WIDE_INT m = tree_to_uhwi (minval);
2070 : 2265 : rtx reg = gen_raw_REG (word_mode, 10000);
2071 : 2265 : bool speed_p = optimize_insn_for_speed_p ();
2072 : 2265 : cost_diff = set_src_cost (gen_rtx_PLUS (word_mode, reg,
2073 : : GEN_INT (-m)),
2074 : : word_mode, speed_p);
2075 : 4880 : for (i = 0; i < count; i++)
2076 : : {
2077 : 2615 : rtx r = immed_wide_int_const (test[i].mask, word_mode);
2078 : 2615 : cost_diff += set_src_cost (gen_rtx_AND (word_mode, reg, r),
2079 : : word_mode, speed_p);
2080 : 2615 : r = immed_wide_int_const (wi::lshift (test[i].mask, m), word_mode);
2081 : 2615 : cost_diff -= set_src_cost (gen_rtx_AND (word_mode, reg, r),
2082 : : word_mode, speed_p);
2083 : : }
2084 : 2265 : if (cost_diff > 0)
2085 : : {
2086 : 4136 : for (i = 0; i < count; i++)
2087 : 2212 : test[i].mask = wi::lshift (test[i].mask, m);
2088 : 1924 : minval = build_zero_cst (TREE_TYPE (minval));
2089 : : }
2090 : : }
2091 : :
2092 : : /* Now build the test-and-branch code. */
2093 : :
2094 : 4348 : gsi = gsi_last_bb (m_case_bb);
2095 : :
2096 : : /* idx = (unsigned)x - minval. */
2097 : 4348 : idx = fold_convert_loc (loc, unsigned_index_type, index_expr);
2098 : 4348 : idx = fold_build2_loc (loc, MINUS_EXPR, unsigned_index_type, idx,
2099 : : fold_convert_loc (loc, unsigned_index_type, minval));
2100 : 4348 : idx = force_gimple_operand_gsi (&gsi, idx,
2101 : : /*simple=*/true, NULL_TREE,
2102 : : /*before=*/true, GSI_SAME_STMT);
2103 : :
2104 : 4348 : profile_probability subtree_prob = m_subtree_prob;
2105 : 4348 : profile_probability default_prob = m_default_prob;
2106 : 4348 : if (!default_prob.initialized_p ())
2107 : 2779 : default_prob = m_subtree_prob.invert ();
2108 : :
2109 : 4348 : if (m_handles_entire_switch && entry_test_needed)
2110 : : {
2111 : 2738 : tree range = int_const_binop (MINUS_EXPR, maxval, minval);
2112 : : /* if (idx > range) goto default */
2113 : 2738 : range
2114 : 2738 : = force_gimple_operand_gsi (&gsi,
2115 : : fold_convert (unsigned_index_type, range),
2116 : : /*simple=*/true, NULL_TREE,
2117 : : /*before=*/true, GSI_SAME_STMT);
2118 : 2738 : tmp = fold_build2 (GT_EXPR, boolean_type_node, idx, range);
2119 : 2738 : default_prob = default_prob / 2;
2120 : 2738 : basic_block new_bb
2121 : 2738 : = hoist_edge_and_branch_if_true (&gsi, tmp, default_bb,
2122 : : default_prob, loc);
2123 : 5476 : gsi = gsi_last_bb (new_bb);
2124 : : }
2125 : :
2126 : 4348 : tmp = fold_build2_loc (loc, LSHIFT_EXPR, word_type_node, word_mode_one,
2127 : : fold_convert_loc (loc, word_type_node, idx));
2128 : :
2129 : : /* csui = (1 << (word_mode) idx) */
2130 : 4348 : if (count > 1)
2131 : : {
2132 : 1086 : csui = make_ssa_name (word_type_node);
2133 : 1086 : tmp = force_gimple_operand_gsi (&gsi, tmp,
2134 : : /*simple=*/false, NULL_TREE,
2135 : : /*before=*/true, GSI_SAME_STMT);
2136 : 1086 : shift_stmt = gimple_build_assign (csui, tmp);
2137 : 1086 : gsi_insert_before (&gsi, shift_stmt, GSI_SAME_STMT);
2138 : 1086 : update_stmt (shift_stmt);
2139 : : }
2140 : : else
2141 : : csui = tmp;
2142 : :
2143 : : /* for each unique set of cases:
2144 : : if (const & csui) goto target */
2145 : 10396 : for (k = 0; k < count; k++)
2146 : : {
2147 : 6048 : profile_probability prob = test[k].prob / (subtree_prob + default_prob);
2148 : 6048 : subtree_prob -= test[k].prob;
2149 : 6048 : tmp = wide_int_to_tree (word_type_node, test[k].mask);
2150 : 6048 : tmp = fold_build2_loc (loc, BIT_AND_EXPR, word_type_node, csui, tmp);
2151 : 6048 : tmp = fold_build2_loc (loc, NE_EXPR, boolean_type_node,
2152 : : tmp, word_mode_zero);
2153 : 6048 : tmp = force_gimple_operand_gsi (&gsi, tmp,
2154 : : /*simple=*/true, NULL_TREE,
2155 : : /*before=*/true, GSI_SAME_STMT);
2156 : 6048 : basic_block new_bb
2157 : 6048 : = hoist_edge_and_branch_if_true (&gsi, tmp, test[k].target_bb,
2158 : : prob, loc);
2159 : 12096 : gsi = gsi_last_bb (new_bb);
2160 : : }
2161 : :
2162 : : /* We should have removed all edges now. */
2163 : 4348 : gcc_assert (EDGE_COUNT (gsi_bb (gsi)->succs) == 0);
2164 : :
2165 : : /* If nothing matched, go to the default label. */
2166 : 4348 : edge e = make_edge (gsi_bb (gsi), default_bb, EDGE_FALLTHRU);
2167 : 4348 : e->probability = profile_probability::always ();
2168 : 17392 : }
2169 : :
2170 : : /* Split the basic block at the statement pointed to by GSIP, and insert
2171 : : a branch to the target basic block of E_TRUE conditional on tree
2172 : : expression COND.
2173 : :
2174 : : It is assumed that there is already an edge from the to-be-split
2175 : : basic block to E_TRUE->dest block. This edge is removed, and the
2176 : : profile information on the edge is re-used for the new conditional
2177 : : jump.
2178 : :
2179 : : The CFG is updated. The dominator tree will not be valid after
2180 : : this transformation, but the immediate dominators are updated if
2181 : : UPDATE_DOMINATORS is true.
2182 : :
2183 : : Returns the newly created basic block. */
2184 : :
2185 : : basic_block
2186 : 8786 : bit_test_cluster::hoist_edge_and_branch_if_true (gimple_stmt_iterator *gsip,
2187 : : tree cond, basic_block case_bb,
2188 : : profile_probability prob,
2189 : : location_t loc)
2190 : : {
2191 : 8786 : tree tmp;
2192 : 8786 : gcond *cond_stmt;
2193 : 8786 : edge e_false;
2194 : 8786 : basic_block new_bb, split_bb = gsi_bb (*gsip);
2195 : :
2196 : 8786 : edge e_true = make_edge (split_bb, case_bb, EDGE_TRUE_VALUE);
2197 : 8786 : e_true->probability = prob;
2198 : 8786 : gcc_assert (e_true->src == split_bb);
2199 : :
2200 : 8786 : tmp = force_gimple_operand_gsi (gsip, cond, /*simple=*/true, NULL,
2201 : : /*before=*/true, GSI_SAME_STMT);
2202 : 8786 : cond_stmt = gimple_build_cond_from_tree (tmp, NULL_TREE, NULL_TREE);
2203 : 8786 : gimple_set_location (cond_stmt, loc);
2204 : 8786 : gsi_insert_before (gsip, cond_stmt, GSI_SAME_STMT);
2205 : :
2206 : 8786 : e_false = split_block (split_bb, cond_stmt);
2207 : 8786 : new_bb = e_false->dest;
2208 : 8786 : redirect_edge_pred (e_true, split_bb);
2209 : :
2210 : 8786 : e_false->flags &= ~EDGE_FALLTHRU;
2211 : 8786 : e_false->flags |= EDGE_FALSE_VALUE;
2212 : 8786 : e_false->probability = e_true->probability.invert ();
2213 : 8786 : new_bb->count = e_false->count ();
2214 : :
2215 : 8786 : return new_bb;
2216 : : }
2217 : :
2218 : : /* Compute the number of case labels that correspond to each outgoing edge of
2219 : : switch statement. Record this information in the aux field of the edge.
2220 : : Return the approx max number of cases per edge. */
2221 : :
2222 : : int
2223 : 47895 : switch_decision_tree::compute_cases_per_edge ()
2224 : : {
2225 : 47895 : int max_c = 0;
2226 : 47895 : reset_out_edges_aux (m_switch);
2227 : 47895 : int ncases = gimple_switch_num_labels (m_switch);
2228 : 310340 : for (int i = ncases - 1; i >= 1; --i)
2229 : : {
2230 : 262445 : edge case_edge = gimple_switch_edge (cfun, m_switch, i);
2231 : 262445 : case_edge->aux = (void *) ((intptr_t) (case_edge->aux) + 1);
2232 : : /* For a range case add one extra. That's enough for the bit
2233 : : cluster heuristic. */
2234 : 262445 : if ((intptr_t)case_edge->aux > max_c)
2235 : 148300 : max_c = (intptr_t)case_edge->aux +
2236 : 74150 : !!CASE_HIGH (gimple_switch_label (m_switch, i));
2237 : : }
2238 : 47895 : return max_c;
2239 : : }
2240 : :
2241 : : /* Analyze switch statement and return true when the statement is expanded
2242 : : as decision tree. */
2243 : :
2244 : : bool
2245 : 47895 : switch_decision_tree::analyze_switch_statement ()
2246 : : {
2247 : 47895 : unsigned l = gimple_switch_num_labels (m_switch);
2248 : 47895 : basic_block bb = gimple_bb (m_switch);
2249 : 47895 : auto_vec<cluster *> clusters;
2250 : 47895 : clusters.create (l - 1);
2251 : :
2252 : 47895 : basic_block default_bb = gimple_switch_default_bb (cfun, m_switch);
2253 : 47895 : m_case_bbs.reserve (l);
2254 : 47895 : m_case_bbs.quick_push (default_bb);
2255 : :
2256 : 47895 : int max_c = compute_cases_per_edge ();
2257 : :
2258 : 310340 : for (unsigned i = 1; i < l; i++)
2259 : : {
2260 : 262445 : tree elt = gimple_switch_label (m_switch, i);
2261 : 262445 : tree lab = CASE_LABEL (elt);
2262 : 262445 : basic_block case_bb = label_to_block (cfun, lab);
2263 : 262445 : edge case_edge = find_edge (bb, case_bb);
2264 : 262445 : tree low = CASE_LOW (elt);
2265 : 262445 : tree high = CASE_HIGH (elt);
2266 : :
2267 : 262445 : profile_probability p
2268 : 262445 : = case_edge->probability / ((intptr_t) (case_edge->aux));
2269 : 262445 : clusters.quick_push (new simple_cluster (low, high, elt, case_edge->dest,
2270 : 262445 : p));
2271 : 262445 : m_case_bbs.quick_push (case_edge->dest);
2272 : : }
2273 : :
2274 : 47895 : reset_out_edges_aux (m_switch);
2275 : :
2276 : : /* Find bit-test clusters. */
2277 : 47895 : vec<cluster *> output = bit_test_cluster::find_bit_tests (clusters, max_c);
2278 : :
2279 : : /* Find jump table clusters. We are looking for these in the sequences of
2280 : : simple clusters which we didn't manage to convert into bit-test
2281 : : clusters. */
2282 : 47895 : vec<cluster *> output2;
2283 : 47895 : auto_vec<cluster *> tmp;
2284 : 47895 : output2.create (1);
2285 : 47895 : tmp.create (1);
2286 : :
2287 : 296375 : for (unsigned i = 0; i < output.length (); i++)
2288 : : {
2289 : 248480 : cluster *c = output[i];
2290 : 248480 : if (c->get_type () != SIMPLE_CASE)
2291 : : {
2292 : 4348 : if (!tmp.is_empty ())
2293 : : {
2294 : 1019 : vec<cluster *> n = jump_table_cluster::find_jump_tables (tmp);
2295 : 1019 : output2.safe_splice (n);
2296 : 1019 : n.release ();
2297 : 1019 : tmp.truncate (0);
2298 : : }
2299 : 4348 : output2.safe_push (c);
2300 : : }
2301 : : else
2302 : 244132 : tmp.safe_push (c);
2303 : : }
2304 : :
2305 : : /* We still can have a temporary vector to test. */
2306 : 47895 : if (!tmp.is_empty ())
2307 : : {
2308 : 44618 : vec<cluster *> n = jump_table_cluster::find_jump_tables (tmp);
2309 : 44618 : output2.safe_splice (n);
2310 : 44618 : n.release ();
2311 : : }
2312 : :
2313 : 47895 : if (dump_file)
2314 : : {
2315 : 24 : fprintf (dump_file, ";; GIMPLE switch case clusters: ");
2316 : 111 : for (unsigned i = 0; i < output2.length (); i++)
2317 : 87 : output2[i]->dump (dump_file, dump_flags & TDF_DETAILS);
2318 : 24 : fprintf (dump_file, "\n");
2319 : : }
2320 : :
2321 : 47895 : output.release ();
2322 : :
2323 : 47895 : bool expanded = try_switch_expansion (output2);
2324 : 47895 : release_clusters (output2);
2325 : 47895 : return expanded;
2326 : 47895 : }
2327 : :
2328 : : /* Attempt to expand CLUSTERS as a decision tree. Return true when
2329 : : expanded. */
2330 : :
2331 : : bool
2332 : 47895 : switch_decision_tree::try_switch_expansion (vec<cluster *> &clusters)
2333 : : {
2334 : 47895 : tree index_expr = gimple_switch_index (m_switch);
2335 : 47895 : tree index_type = TREE_TYPE (index_expr);
2336 : 47895 : basic_block bb = gimple_bb (m_switch);
2337 : :
2338 : 47895 : if (gimple_switch_num_labels (m_switch) == 1
2339 : 47895 : || range_check_type (index_type) == NULL_TREE)
2340 : 1 : return false;
2341 : :
2342 : : /* Find the default case target label. */
2343 : 47894 : edge default_edge = gimple_switch_default_edge (cfun, m_switch);
2344 : 47894 : m_default_bb = default_edge->dest;
2345 : :
2346 : : /* Do the insertion of a case label into m_case_list. The labels are
2347 : : fed to us in descending order from the sorted vector of case labels used
2348 : : in the tree part of the middle end. So the list we construct is
2349 : : sorted in ascending order. */
2350 : :
2351 : 268958 : for (int i = clusters.length () - 1; i >= 0; i--)
2352 : : {
2353 : 173170 : case_tree_node *r = m_case_list;
2354 : 173170 : m_case_list = m_case_node_pool.allocate ();
2355 : 173170 : m_case_list->m_right = r;
2356 : 173170 : m_case_list->m_c = clusters[i];
2357 : : }
2358 : :
2359 : 47894 : record_phi_operand_mapping ();
2360 : :
2361 : : /* Split basic block that contains the gswitch statement. */
2362 : 47894 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2363 : 47894 : edge e;
2364 : 47894 : if (gsi_end_p (gsi))
2365 : 0 : e = split_block_after_labels (bb);
2366 : : else
2367 : : {
2368 : 47894 : gsi_prev (&gsi);
2369 : 47894 : e = split_block (bb, gsi_stmt (gsi));
2370 : : }
2371 : 47894 : bb = split_edge (e);
2372 : :
2373 : : /* Create new basic blocks for non-case clusters where specific expansion
2374 : : needs to happen. */
2375 : 221064 : for (unsigned i = 0; i < clusters.length (); i++)
2376 : 173170 : if (clusters[i]->get_type () != SIMPLE_CASE)
2377 : : {
2378 : 12789 : clusters[i]->m_case_bb = create_empty_bb (bb);
2379 : 12789 : clusters[i]->m_case_bb->count = bb->count;
2380 : 12789 : clusters[i]->m_case_bb->loop_father = bb->loop_father;
2381 : : }
2382 : :
2383 : : /* Do not do an extra work for a single cluster. */
2384 : 47894 : if (clusters.length () == 1
2385 : 59468 : && clusters[0]->get_type () != SIMPLE_CASE)
2386 : : {
2387 : 10508 : cluster *c = clusters[0];
2388 : 10508 : c->emit (index_expr, index_type,
2389 : : gimple_switch_default_label (m_switch), m_default_bb,
2390 : 10508 : gimple_location (m_switch));
2391 : 10508 : redirect_edge_succ (single_succ_edge (bb), c->m_case_bb);
2392 : : }
2393 : : else
2394 : : {
2395 : 37386 : emit (bb, index_expr, default_edge->probability, index_type);
2396 : :
2397 : : /* Emit cluster-specific switch handling. */
2398 : 200048 : for (unsigned i = 0; i < clusters.length (); i++)
2399 : 162662 : if (clusters[i]->get_type () != SIMPLE_CASE)
2400 : : {
2401 : 2281 : edge e = single_pred_edge (clusters[i]->m_case_bb);
2402 : 2281 : e->dest->count = e->src->count.apply_probability (e->probability);
2403 : 4562 : clusters[i]->emit (index_expr, index_type,
2404 : : gimple_switch_default_label (m_switch),
2405 : 2281 : m_default_bb, gimple_location (m_switch));
2406 : : }
2407 : : }
2408 : :
2409 : 47894 : fix_phi_operands_for_edges ();
2410 : :
2411 : 47894 : return true;
2412 : : }
2413 : :
2414 : : /* Before switch transformation, record all SSA_NAMEs defined in switch BB
2415 : : and used in a label basic block. */
2416 : :
2417 : : void
2418 : 47894 : switch_decision_tree::record_phi_operand_mapping ()
2419 : : {
2420 : 47894 : basic_block switch_bb = gimple_bb (m_switch);
2421 : : /* Record all PHI nodes that have to be fixed after conversion. */
2422 : 358233 : for (unsigned i = 0; i < m_case_bbs.length (); i++)
2423 : : {
2424 : 310339 : gphi_iterator gsi;
2425 : 310339 : basic_block bb = m_case_bbs[i];
2426 : 385796 : for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2427 : : {
2428 : 75457 : gphi *phi = gsi.phi ();
2429 : :
2430 : 197297 : for (unsigned i = 0; i < gimple_phi_num_args (phi); i++)
2431 : : {
2432 : 197297 : basic_block phi_src_bb = gimple_phi_arg_edge (phi, i)->src;
2433 : 197297 : if (phi_src_bb == switch_bb)
2434 : : {
2435 : 75457 : tree def = gimple_phi_arg_def (phi, i);
2436 : 75457 : tree result = gimple_phi_result (phi);
2437 : 75457 : m_phi_mapping.put (result, def);
2438 : 75457 : break;
2439 : : }
2440 : : }
2441 : : }
2442 : : }
2443 : 47894 : }
2444 : :
2445 : : /* Append new operands to PHI statements that were introduced due to
2446 : : addition of new edges to case labels. */
2447 : :
2448 : : void
2449 : 47894 : switch_decision_tree::fix_phi_operands_for_edges ()
2450 : : {
2451 : 47894 : gphi_iterator gsi;
2452 : :
2453 : 358233 : for (unsigned i = 0; i < m_case_bbs.length (); i++)
2454 : : {
2455 : 310339 : basic_block bb = m_case_bbs[i];
2456 : 385796 : for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2457 : : {
2458 : 75457 : gphi *phi = gsi.phi ();
2459 : 529383 : for (unsigned j = 0; j < gimple_phi_num_args (phi); j++)
2460 : : {
2461 : 453926 : tree def = gimple_phi_arg_def (phi, j);
2462 : 453926 : if (def == NULL_TREE)
2463 : : {
2464 : 78594 : edge e = gimple_phi_arg_edge (phi, j);
2465 : 78594 : tree *definition
2466 : 78594 : = m_phi_mapping.get (gimple_phi_result (phi));
2467 : 78594 : gcc_assert (definition);
2468 : 78594 : add_phi_arg (phi, *definition, e, UNKNOWN_LOCATION);
2469 : : }
2470 : : }
2471 : : }
2472 : : }
2473 : 47894 : }
2474 : :
2475 : : /* Generate a decision tree, switching on INDEX_EXPR and jumping to
2476 : : one of the labels in CASE_LIST or to the DEFAULT_LABEL.
2477 : :
2478 : : We generate a binary decision tree to select the appropriate target
2479 : : code. */
2480 : :
2481 : : void
2482 : 37386 : switch_decision_tree::emit (basic_block bb, tree index_expr,
2483 : : profile_probability default_prob, tree index_type)
2484 : : {
2485 : 37386 : balance_case_nodes (&m_case_list, NULL);
2486 : :
2487 : 37386 : if (dump_file)
2488 : 17 : dump_function_to_file (current_function_decl, dump_file, dump_flags);
2489 : 37386 : if (dump_file && (dump_flags & TDF_DETAILS))
2490 : : {
2491 : 0 : int indent_step = ceil_log2 (TYPE_PRECISION (index_type)) + 2;
2492 : 0 : fprintf (dump_file, ";; Expanding GIMPLE switch as decision tree:\n");
2493 : 0 : gcc_assert (m_case_list != NULL);
2494 : 0 : dump_case_nodes (dump_file, m_case_list, indent_step, 0);
2495 : : }
2496 : :
2497 : 74772 : bb = emit_case_nodes (bb, index_expr, m_case_list, default_prob, index_type,
2498 : 37386 : gimple_location (m_switch));
2499 : :
2500 : 37386 : if (bb)
2501 : 36285 : emit_jump (bb, m_default_bb);
2502 : :
2503 : : /* Remove all edges and do just an edge that will reach default_bb. */
2504 : 37386 : bb = gimple_bb (m_switch);
2505 : 37386 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2506 : 37386 : gsi_remove (&gsi, true);
2507 : :
2508 : 37386 : delete_basic_block (bb);
2509 : 37386 : }
2510 : :
2511 : : /* Take an ordered list of case nodes
2512 : : and transform them into a near optimal binary tree,
2513 : : on the assumption that any target code selection value is as
2514 : : likely as any other.
2515 : :
2516 : : The transformation is performed by splitting the ordered
2517 : : list into two equal sections plus a pivot. The parts are
2518 : : then attached to the pivot as left and right branches. Each
2519 : : branch is then transformed recursively. */
2520 : :
2521 : : void
2522 : 201694 : switch_decision_tree::balance_case_nodes (case_tree_node **head,
2523 : : case_tree_node *parent)
2524 : : {
2525 : 201694 : case_tree_node *np;
2526 : :
2527 : 201694 : np = *head;
2528 : 201694 : if (np)
2529 : : {
2530 : 131878 : int i = 0;
2531 : 131878 : case_tree_node **npp;
2532 : 131878 : case_tree_node *left;
2533 : 131878 : profile_probability prob = profile_probability::never ();
2534 : :
2535 : : /* Count the number of entries on branch. */
2536 : :
2537 : 2354713 : while (np)
2538 : : {
2539 : 2222835 : i++;
2540 : 2222835 : prob += np->m_c->m_prob;
2541 : 2222835 : np = np->m_right;
2542 : : }
2543 : :
2544 : 131878 : if (i > 2)
2545 : : {
2546 : : /* Split this list if it is long enough for that to help. */
2547 : 82154 : npp = head;
2548 : 82154 : left = *npp;
2549 : 82154 : profile_probability pivot_prob = prob / 2;
2550 : :
2551 : : /* Find the place in the list that bisects the list's total cost
2552 : : by probability. */
2553 : 4143078 : while (1)
2554 : : {
2555 : : /* Skip nodes while their probability does not reach
2556 : : that amount. */
2557 : 2112616 : prob -= (*npp)->m_c->m_prob;
2558 : 2112616 : if ((prob.initialized_p () && prob < pivot_prob)
2559 : 2144764 : || ! (*npp)->m_right)
2560 : : break;
2561 : 2030462 : npp = &(*npp)->m_right;
2562 : : }
2563 : :
2564 : 82154 : np = *npp;
2565 : 82154 : *npp = 0;
2566 : 82154 : *head = np;
2567 : 82154 : np->m_parent = parent;
2568 : 82154 : np->m_left = left == np ? NULL : left;
2569 : :
2570 : : /* Optimize each of the two split parts. */
2571 : 82154 : balance_case_nodes (&np->m_left, np);
2572 : 82154 : balance_case_nodes (&np->m_right, np);
2573 : 82154 : np->m_c->m_subtree_prob = np->m_c->m_prob;
2574 : 82154 : if (np->m_left)
2575 : 81525 : np->m_c->m_subtree_prob += np->m_left->m_c->m_subtree_prob;
2576 : 82154 : if (np->m_right)
2577 : 12967 : np->m_c->m_subtree_prob += np->m_right->m_c->m_subtree_prob;
2578 : : }
2579 : : else
2580 : : {
2581 : : /* Else leave this branch as one level,
2582 : : but fill in `parent' fields. */
2583 : 49724 : np = *head;
2584 : 49724 : np->m_parent = parent;
2585 : 49724 : np->m_c->m_subtree_prob = np->m_c->m_prob;
2586 : 80508 : for (; np->m_right; np = np->m_right)
2587 : : {
2588 : 30784 : np->m_right->m_parent = np;
2589 : 30784 : (*head)->m_c->m_subtree_prob += np->m_right->m_c->m_subtree_prob;
2590 : : }
2591 : : }
2592 : : }
2593 : 201694 : }
2594 : :
2595 : : /* Dump ROOT, a list or tree of case nodes, to file. */
2596 : :
2597 : : void
2598 : 0 : switch_decision_tree::dump_case_nodes (FILE *f, case_tree_node *root,
2599 : : int indent_step, int indent_level)
2600 : : {
2601 : 0 : if (root == 0)
2602 : 0 : return;
2603 : 0 : indent_level++;
2604 : :
2605 : 0 : dump_case_nodes (f, root->m_left, indent_step, indent_level);
2606 : :
2607 : 0 : fputs (";; ", f);
2608 : 0 : fprintf (f, "%*s", indent_step * indent_level, "");
2609 : 0 : root->m_c->dump (f);
2610 : 0 : root->m_c->m_prob.dump (f);
2611 : 0 : fputs (" subtree: ", f);
2612 : 0 : root->m_c->m_subtree_prob.dump (f);
2613 : 0 : fputs (")\n", f);
2614 : :
2615 : 0 : dump_case_nodes (f, root->m_right, indent_step, indent_level);
2616 : : }
2617 : :
2618 : :
2619 : : /* Add an unconditional jump to CASE_BB that happens in basic block BB. */
2620 : :
2621 : : void
2622 : 64664 : switch_decision_tree::emit_jump (basic_block bb, basic_block case_bb)
2623 : : {
2624 : 64664 : edge e = single_succ_edge (bb);
2625 : 64664 : redirect_edge_succ (e, case_bb);
2626 : 64664 : }
2627 : :
2628 : : /* Generate code to compare OP0 with OP1 so that the condition codes are
2629 : : set and to jump to LABEL_BB if the condition is true.
2630 : : COMPARISON is the GIMPLE comparison (EQ, NE, GT, etc.).
2631 : : PROB is the probability of jumping to LABEL_BB. */
2632 : :
2633 : : basic_block
2634 : 103586 : switch_decision_tree::emit_cmp_and_jump_insns (basic_block bb, tree op0,
2635 : : tree op1, tree_code comparison,
2636 : : basic_block label_bb,
2637 : : profile_probability prob,
2638 : : location_t loc)
2639 : : {
2640 : : // TODO: it's once called with lhs != index.
2641 : 103586 : op1 = fold_convert (TREE_TYPE (op0), op1);
2642 : :
2643 : 103586 : gcond *cond = gimple_build_cond (comparison, op0, op1, NULL_TREE, NULL_TREE);
2644 : 103586 : gimple_set_location (cond, loc);
2645 : 103586 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2646 : 103586 : gsi_insert_after (&gsi, cond, GSI_NEW_STMT);
2647 : :
2648 : 103586 : gcc_assert (single_succ_p (bb));
2649 : :
2650 : : /* Make a new basic block where false branch will take place. */
2651 : 103586 : edge false_edge = split_block (bb, cond);
2652 : 103586 : false_edge->flags = EDGE_FALSE_VALUE;
2653 : 103586 : false_edge->probability = prob.invert ();
2654 : 103586 : false_edge->dest->count = bb->count.apply_probability (prob.invert ());
2655 : :
2656 : 103586 : edge true_edge = make_edge (bb, label_bb, EDGE_TRUE_VALUE);
2657 : 103586 : true_edge->probability = prob;
2658 : :
2659 : 103586 : return false_edge->dest;
2660 : : }
2661 : :
2662 : : /* Generate code to jump to LABEL if OP0 and OP1 are equal.
2663 : : PROB is the probability of jumping to LABEL_BB.
2664 : : BB is a basic block where the new condition will be placed. */
2665 : :
2666 : : basic_block
2667 : 138395 : switch_decision_tree::do_jump_if_equal (basic_block bb, tree op0, tree op1,
2668 : : basic_block label_bb,
2669 : : profile_probability prob,
2670 : : location_t loc)
2671 : : {
2672 : 138395 : op1 = fold_convert (TREE_TYPE (op0), op1);
2673 : :
2674 : 138395 : gcond *cond = gimple_build_cond (EQ_EXPR, op0, op1, NULL_TREE, NULL_TREE);
2675 : 138395 : gimple_set_location (cond, loc);
2676 : 138395 : gimple_stmt_iterator gsi = gsi_last_bb (bb);
2677 : 138395 : gsi_insert_before (&gsi, cond, GSI_SAME_STMT);
2678 : :
2679 : 138395 : gcc_assert (single_succ_p (bb));
2680 : :
2681 : : /* Make a new basic block where false branch will take place. */
2682 : 138395 : edge false_edge = split_block (bb, cond);
2683 : 138395 : false_edge->flags = EDGE_FALSE_VALUE;
2684 : 138395 : false_edge->probability = prob.invert ();
2685 : 138395 : false_edge->dest->count = bb->count.apply_probability (prob.invert ());
2686 : :
2687 : 138395 : edge true_edge = make_edge (bb, label_bb, EDGE_TRUE_VALUE);
2688 : 138395 : true_edge->probability = prob;
2689 : :
2690 : 138395 : return false_edge->dest;
2691 : : }
2692 : :
2693 : : /* Emit step-by-step code to select a case for the value of INDEX.
2694 : : The thus generated decision tree follows the form of the
2695 : : case-node binary tree NODE, whose nodes represent test conditions.
2696 : : DEFAULT_PROB is probability of cases leading to default BB.
2697 : : INDEX_TYPE is the type of the index of the switch. */
2698 : :
2699 : : basic_block
2700 : 64664 : switch_decision_tree::emit_case_nodes (basic_block bb, tree index,
2701 : : case_tree_node *node,
2702 : : profile_probability default_prob,
2703 : : tree index_type, location_t loc)
2704 : : {
2705 : 143983 : profile_probability p;
2706 : :
2707 : : /* If node is null, we are done. */
2708 : 143983 : if (node == NULL)
2709 : : return bb;
2710 : :
2711 : : /* Single value case. */
2712 : 121616 : if (node->m_c->is_single_value_p ())
2713 : : {
2714 : : /* Node is single valued. First see if the index expression matches
2715 : : this node and then check our children, if any. */
2716 : 97349 : p = node->m_c->m_prob / (node->m_c->m_subtree_prob + default_prob);
2717 : 97349 : bb = do_jump_if_equal (bb, index, node->m_c->get_low (),
2718 : : node->m_c->m_case_bb, p, loc);
2719 : : /* Since this case is taken at this point, reduce its weight from
2720 : : subtree_weight. */
2721 : 97349 : node->m_c->m_subtree_prob -= node->m_c->m_prob;
2722 : :
2723 : 97349 : if (node->m_left != NULL && node->m_right != NULL)
2724 : : {
2725 : : /* 1) the node has both children
2726 : :
2727 : : If both children are single-valued cases with no
2728 : : children, finish up all the work. This way, we can save
2729 : : one ordered comparison. */
2730 : :
2731 : 11700 : if (!node->m_left->has_child ()
2732 : 7604 : && node->m_left->m_c->is_single_value_p ()
2733 : 6965 : && !node->m_right->has_child ()
2734 : 6794 : && node->m_right->m_c->is_single_value_p ())
2735 : : {
2736 : 13430 : p = (node->m_right->m_c->m_prob
2737 : 6715 : / (node->m_c->m_subtree_prob + default_prob));
2738 : 6715 : bb = do_jump_if_equal (bb, index, node->m_right->m_c->get_low (),
2739 : : node->m_right->m_c->m_case_bb, p, loc);
2740 : 6715 : node->m_c->m_subtree_prob -= node->m_right->m_c->m_prob;
2741 : :
2742 : 13430 : p = (node->m_left->m_c->m_prob
2743 : 6715 : / (node->m_c->m_subtree_prob + default_prob));
2744 : 6715 : bb = do_jump_if_equal (bb, index, node->m_left->m_c->get_low (),
2745 : : node->m_left->m_c->m_case_bb, p, loc);
2746 : : }
2747 : : else
2748 : : {
2749 : : /* Branch to a label where we will handle it later. */
2750 : 4985 : basic_block test_bb = split_edge (single_succ_edge (bb));
2751 : 4985 : redirect_edge_succ (single_pred_edge (test_bb),
2752 : 4985 : single_succ_edge (bb)->dest);
2753 : :
2754 : 4985 : p = ((node->m_right->m_c->m_subtree_prob + default_prob / 2)
2755 : 9970 : / (node->m_c->m_subtree_prob + default_prob));
2756 : 4985 : test_bb->count = bb->count.apply_probability (p);
2757 : 4985 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_high (),
2758 : : GT_EXPR, test_bb, p, loc);
2759 : 4985 : default_prob /= 2;
2760 : :
2761 : : /* Handle the left-hand subtree. */
2762 : 4985 : bb = emit_case_nodes (bb, index, node->m_left,
2763 : : default_prob, index_type, loc);
2764 : :
2765 : : /* If the left-hand subtree fell through,
2766 : : don't let it fall into the right-hand subtree. */
2767 : 4985 : if (bb && m_default_bb)
2768 : 4386 : emit_jump (bb, m_default_bb);
2769 : :
2770 : 4985 : bb = emit_case_nodes (test_bb, index, node->m_right,
2771 : : default_prob, index_type, loc);
2772 : : }
2773 : : }
2774 : 85649 : else if (node->m_left == NULL && node->m_right != NULL)
2775 : : {
2776 : : /* 2) the node has only right child. */
2777 : :
2778 : : /* Here we have a right child but no left so we issue a conditional
2779 : : branch to default and process the right child.
2780 : :
2781 : : Omit the conditional branch to default if the right child
2782 : : does not have any children and is single valued; it would
2783 : : cost too much space to save so little time. */
2784 : :
2785 : 28957 : if (node->m_right->has_child ()
2786 : 28489 : || !node->m_right->m_c->is_single_value_p ())
2787 : : {
2788 : 4023 : p = ((default_prob / 2)
2789 : 1341 : / (node->m_c->m_subtree_prob + default_prob));
2790 : 1341 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_low (),
2791 : : LT_EXPR, m_default_bb, p, loc);
2792 : 1341 : default_prob /= 2;
2793 : :
2794 : 1341 : bb = emit_case_nodes (bb, index, node->m_right, default_prob,
2795 : : index_type, loc);
2796 : : }
2797 : : else
2798 : : {
2799 : : /* We cannot process node->right normally
2800 : : since we haven't ruled out the numbers less than
2801 : : this node's value. So handle node->right explicitly. */
2802 : 55232 : p = (node->m_right->m_c->m_subtree_prob
2803 : 27616 : / (node->m_c->m_subtree_prob + default_prob));
2804 : 27616 : bb = do_jump_if_equal (bb, index, node->m_right->m_c->get_low (),
2805 : : node->m_right->m_c->m_case_bb, p, loc);
2806 : : }
2807 : : }
2808 : 56692 : else if (node->m_left != NULL && node->m_right == NULL)
2809 : : {
2810 : : /* 3) just one subtree, on the left. Similar case as previous. */
2811 : :
2812 : 50700 : if (node->m_left->has_child ()
2813 : 0 : || !node->m_left->m_c->is_single_value_p ())
2814 : : {
2815 : 152100 : p = ((default_prob / 2)
2816 : 50700 : / (node->m_c->m_subtree_prob + default_prob));
2817 : 50700 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_high (),
2818 : : GT_EXPR, m_default_bb, p, loc);
2819 : 50700 : default_prob /= 2;
2820 : :
2821 : 50700 : bb = emit_case_nodes (bb, index, node->m_left, default_prob,
2822 : : index_type, loc);
2823 : : }
2824 : : else
2825 : : {
2826 : : /* We cannot process node->left normally
2827 : : since we haven't ruled out the numbers less than
2828 : : this node's value. So handle node->left explicitly. */
2829 : 0 : p = (node->m_left->m_c->m_subtree_prob
2830 : 0 : / (node->m_c->m_subtree_prob + default_prob));
2831 : 0 : bb = do_jump_if_equal (bb, index, node->m_left->m_c->get_low (),
2832 : : node->m_left->m_c->m_case_bb, p, loc);
2833 : : }
2834 : : }
2835 : : }
2836 : : else
2837 : : {
2838 : : /* Node is a range. These cases are very similar to those for a single
2839 : : value, except that we do not start by testing whether this node
2840 : : is the one to branch to. */
2841 : 26953 : if (node->has_child () || node->m_c->get_type () != SIMPLE_CASE)
2842 : : {
2843 : 22293 : bool is_bt = node->m_c->get_type () == BIT_TEST;
2844 : 22293 : int parts = is_bt ? 3 : 2;
2845 : :
2846 : : /* Branch to a label where we will handle it later. */
2847 : 22293 : basic_block test_bb = split_edge (single_succ_edge (bb));
2848 : 22293 : redirect_edge_succ (single_pred_edge (test_bb),
2849 : 22293 : single_succ_edge (bb)->dest);
2850 : :
2851 : 22293 : profile_probability right_prob = profile_probability::never ();
2852 : 22293 : if (node->m_right)
2853 : 3094 : right_prob = node->m_right->m_c->m_subtree_prob;
2854 : 22293 : p = ((right_prob + default_prob / parts)
2855 : 44586 : / (node->m_c->m_subtree_prob + default_prob));
2856 : 22293 : test_bb->count = bb->count.apply_probability (p);
2857 : :
2858 : 22293 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_high (),
2859 : : GT_EXPR, test_bb, p, loc);
2860 : :
2861 : 22293 : default_prob /= parts;
2862 : 22293 : node->m_c->m_subtree_prob -= right_prob;
2863 : 22293 : if (is_bt)
2864 : 1569 : node->m_c->m_default_prob = default_prob;
2865 : :
2866 : : /* Value belongs to this node or to the left-hand subtree. */
2867 : 22293 : p = node->m_c->m_prob / (node->m_c->m_subtree_prob + default_prob);
2868 : 22293 : bb = emit_cmp_and_jump_insns (bb, index, node->m_c->get_low (),
2869 : : GE_EXPR, node->m_c->m_case_bb, p, loc);
2870 : :
2871 : : /* Handle the left-hand subtree. */
2872 : 22293 : bb = emit_case_nodes (bb, index, node->m_left, default_prob,
2873 : : index_type, loc);
2874 : :
2875 : : /* If the left-hand subtree fell through,
2876 : : don't let it fall into the right-hand subtree. */
2877 : 22293 : if (bb && m_default_bb)
2878 : 22019 : emit_jump (bb, m_default_bb);
2879 : :
2880 : 22293 : bb = emit_case_nodes (test_bb, index, node->m_right, default_prob,
2881 : : index_type, loc);
2882 : : }
2883 : : else
2884 : : {
2885 : : /* Node has no children so we check low and high bounds to remove
2886 : : redundant tests. Only one of the bounds can exist,
2887 : : since otherwise this node is bounded--a case tested already. */
2888 : 1974 : tree lhs, rhs;
2889 : 1974 : generate_range_test (bb, index, node->m_c->get_low (),
2890 : 1974 : node->m_c->get_high (), &lhs, &rhs);
2891 : 1974 : p = default_prob / (node->m_c->m_subtree_prob + default_prob);
2892 : :
2893 : 1974 : bb = emit_cmp_and_jump_insns (bb, lhs, rhs, GT_EXPR,
2894 : : m_default_bb, p, loc);
2895 : :
2896 : 1974 : emit_jump (bb, node->m_c->m_case_bb);
2897 : 1974 : return NULL;
2898 : : }
2899 : : }
2900 : :
2901 : : return bb;
2902 : : }
2903 : :
2904 : : /* The main function of the pass scans statements for switches and invokes
2905 : : process_switch on them. */
2906 : :
2907 : : namespace {
2908 : :
2909 : : const pass_data pass_data_convert_switch =
2910 : : {
2911 : : GIMPLE_PASS, /* type */
2912 : : "switchconv", /* name */
2913 : : OPTGROUP_NONE, /* optinfo_flags */
2914 : : TV_TREE_SWITCH_CONVERSION, /* tv_id */
2915 : : ( PROP_cfg | PROP_ssa ), /* properties_required */
2916 : : 0, /* properties_provided */
2917 : : 0, /* properties_destroyed */
2918 : : 0, /* todo_flags_start */
2919 : : TODO_update_ssa, /* todo_flags_finish */
2920 : : };
2921 : :
2922 : : class pass_convert_switch : public gimple_opt_pass
2923 : : {
2924 : : public:
2925 : 289080 : pass_convert_switch (gcc::context *ctxt)
2926 : 578160 : : gimple_opt_pass (pass_data_convert_switch, ctxt)
2927 : : {}
2928 : :
2929 : : /* opt_pass methods: */
2930 : 2466470 : bool gate (function *) final override
2931 : : {
2932 : 2466470 : return flag_tree_switch_conversion != 0;
2933 : : }
2934 : : unsigned int execute (function *) final override;
2935 : :
2936 : : }; // class pass_convert_switch
2937 : :
2938 : : unsigned int
2939 : 2361751 : pass_convert_switch::execute (function *fun)
2940 : : {
2941 : 2361751 : basic_block bb;
2942 : 2361751 : bool cfg_altered = false;
2943 : :
2944 : 12875400 : FOR_EACH_BB_FN (bb, fun)
2945 : : {
2946 : 31276923 : if (gswitch *stmt = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
2947 : : {
2948 : 29188 : if (dump_file)
2949 : : {
2950 : 43 : expanded_location loc = expand_location (gimple_location (stmt));
2951 : :
2952 : 43 : fprintf (dump_file, "beginning to process the following "
2953 : : "SWITCH statement (%s:%d) : ------- \n",
2954 : : loc.file, loc.line);
2955 : 43 : print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
2956 : 43 : putc ('\n', dump_file);
2957 : : }
2958 : :
2959 : 29188 : switch_conversion sconv;
2960 : 29188 : sconv.expand (stmt);
2961 : 29188 : cfg_altered |= sconv.m_cfg_altered;
2962 : 29188 : if (!sconv.m_reason)
2963 : : {
2964 : 650 : if (dump_file)
2965 : : {
2966 : 39 : fputs ("Switch converted\n", dump_file);
2967 : 39 : fputs ("--------------------------------\n", dump_file);
2968 : : }
2969 : :
2970 : : /* Make no effort to update the post-dominator tree.
2971 : : It is actually not that hard for the transformations
2972 : : we have performed, but it is not supported
2973 : : by iterate_fix_dominators. */
2974 : 650 : free_dominance_info (CDI_POST_DOMINATORS);
2975 : : }
2976 : : else
2977 : : {
2978 : 28538 : if (dump_file)
2979 : : {
2980 : 4 : fputs ("Bailing out - ", dump_file);
2981 : 4 : fputs (sconv.m_reason, dump_file);
2982 : 4 : fputs ("\n--------------------------------\n", dump_file);
2983 : : }
2984 : : }
2985 : 29188 : }
2986 : : }
2987 : :
2988 : 2361751 : return cfg_altered ? TODO_cleanup_cfg : 0;;
2989 : : }
2990 : :
2991 : : } // anon namespace
2992 : :
2993 : : gimple_opt_pass *
2994 : 289080 : make_pass_convert_switch (gcc::context *ctxt)
2995 : : {
2996 : 289080 : return new pass_convert_switch (ctxt);
2997 : : }
2998 : :
2999 : : /* The main function of the pass scans statements for switches and invokes
3000 : : process_switch on them. */
3001 : :
3002 : : namespace {
3003 : :
3004 : : template <bool O0> class pass_lower_switch: public gimple_opt_pass
3005 : : {
3006 : : public:
3007 : 1734480 : pass_lower_switch (gcc::context *ctxt) : gimple_opt_pass (data, ctxt) {}
3008 : :
3009 : : static const pass_data data;
3010 : : opt_pass *
3011 : 289080 : clone () final override
3012 : : {
3013 : 289080 : return new pass_lower_switch<O0> (m_ctxt);
3014 : : }
3015 : :
3016 : : bool
3017 : 2507724 : gate (function *) final override
3018 : : {
3019 : 2507724 : return !O0 || !optimize;
3020 : : }
3021 : :
3022 : : unsigned int execute (function *fun) final override;
3023 : : }; // class pass_lower_switch
3024 : :
3025 : : template <bool O0>
3026 : : const pass_data pass_lower_switch<O0>::data = {
3027 : : GIMPLE_PASS, /* type */
3028 : : O0 ? "switchlower_O0" : "switchlower", /* name */
3029 : : OPTGROUP_NONE, /* optinfo_flags */
3030 : : TV_TREE_SWITCH_LOWERING, /* tv_id */
3031 : : ( PROP_cfg | PROP_ssa ), /* properties_required */
3032 : : 0, /* properties_provided */
3033 : : 0, /* properties_destroyed */
3034 : : 0, /* todo_flags_start */
3035 : : TODO_update_ssa | TODO_cleanup_cfg, /* todo_flags_finish */
3036 : : };
3037 : :
3038 : : template <bool O0>
3039 : : unsigned int
3040 : 1469256 : pass_lower_switch<O0>::execute (function *fun)
3041 : : {
3042 : : basic_block bb;
3043 : 1469256 : bool expanded = false;
3044 : :
3045 : 1469256 : auto_vec<gimple *> switch_statements;
3046 : 1469256 : switch_statements.create (1);
3047 : :
3048 : 15168402 : FOR_EACH_BB_FN (bb, fun)
3049 : : {
3050 : 27020623 : if (gswitch *swtch = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
3051 : : {
3052 : : if (!O0)
3053 : 32648 : group_case_labels_stmt (swtch);
3054 : 47885 : switch_statements.safe_push (swtch);
3055 : : }
3056 : : }
3057 : :
3058 : 1517141 : for (unsigned i = 0; i < switch_statements.length (); i++)
3059 : : {
3060 : 47885 : gimple *stmt = switch_statements[i];
3061 : 47885 : if (dump_file)
3062 : : {
3063 : 24 : expanded_location loc = expand_location (gimple_location (stmt));
3064 : :
3065 : 24 : fprintf (dump_file, "beginning to process the following "
3066 : : "SWITCH statement (%s:%d) : ------- \n",
3067 : : loc.file, loc.line);
3068 : 24 : print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
3069 : 24 : putc ('\n', dump_file);
3070 : : }
3071 : :
3072 : 47885 : gswitch *swtch = dyn_cast<gswitch *> (stmt);
3073 : : if (swtch)
3074 : : {
3075 : 47885 : switch_decision_tree dt (swtch);
3076 : 47885 : expanded |= dt.analyze_switch_statement ();
3077 : 47885 : }
3078 : : }
3079 : :
3080 : 1469256 : if (expanded)
3081 : : {
3082 : 34416 : free_dominance_info (CDI_DOMINATORS);
3083 : 34416 : free_dominance_info (CDI_POST_DOMINATORS);
3084 : 34416 : mark_virtual_operands_for_renaming (cfun);
3085 : : }
3086 : :
3087 : 1469256 : return 0;
3088 : 1469256 : }
3089 : :
3090 : : } // anon namespace
3091 : :
3092 : : gimple_opt_pass *
3093 : 289080 : make_pass_lower_switch_O0 (gcc::context *ctxt)
3094 : : {
3095 : 289080 : return new pass_lower_switch<true> (ctxt);
3096 : : }
3097 : : gimple_opt_pass *
3098 : 289080 : make_pass_lower_switch (gcc::context *ctxt)
3099 : : {
3100 : 289080 : return new pass_lower_switch<false> (ctxt);
3101 : : }
|