IPA ICF, part 4/5
[official-gcc.git] / gcc / tree-switch-conversion.c
blobae5853b87046f01760e7be7c35439048ccca433c
1 /* Lower GIMPLE_SWITCH expressions to something more efficient than
2 a jump table.
3 Copyright (C) 2006-2014 Free Software Foundation, Inc.
5 This file is part of GCC.
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.
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.
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. */
22 /* This file handles the lowering of GIMPLE_SWITCH to an indexed
23 load, or a series of bit-test-and-branch expressions. */
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "tm.h"
29 #include "line-map.h"
30 #include "params.h"
31 #include "flags.h"
32 #include "tree.h"
33 #include "varasm.h"
34 #include "stor-layout.h"
35 #include "basic-block.h"
36 #include "tree-ssa-alias.h"
37 #include "internal-fn.h"
38 #include "gimple-expr.h"
39 #include "is-a.h"
40 #include "gimple.h"
41 #include "gimplify.h"
42 #include "gimple-iterator.h"
43 #include "gimplify-me.h"
44 #include "gimple-ssa.h"
45 #include "cgraph.h"
46 #include "tree-cfg.h"
47 #include "tree-phinodes.h"
48 #include "stringpool.h"
49 #include "tree-ssanames.h"
50 #include "tree-pass.h"
51 #include "gimple-pretty-print.h"
52 #include "cfgloop.h"
54 /* ??? For lang_hooks.types.type_for_mode, but is there a word_mode
55 type in the GIMPLE type system that is language-independent? */
56 #include "langhooks.h"
58 /* Need to include expr.h and optabs.h for lshift_cheap_p. */
59 #include "expr.h"
60 #include "optabs.h"
62 /* Maximum number of case bit tests.
63 FIXME: This should be derived from PARAM_CASE_VALUES_THRESHOLD and
64 targetm.case_values_threshold(), or be its own param. */
65 #define MAX_CASE_BIT_TESTS 3
67 /* Split the basic block at the statement pointed to by GSIP, and insert
68 a branch to the target basic block of E_TRUE conditional on tree
69 expression COND.
71 It is assumed that there is already an edge from the to-be-split
72 basic block to E_TRUE->dest block. This edge is removed, and the
73 profile information on the edge is re-used for the new conditional
74 jump.
76 The CFG is updated. The dominator tree will not be valid after
77 this transformation, but the immediate dominators are updated if
78 UPDATE_DOMINATORS is true.
80 Returns the newly created basic block. */
82 static basic_block
83 hoist_edge_and_branch_if_true (gimple_stmt_iterator *gsip,
84 tree cond, edge e_true,
85 bool update_dominators)
87 tree tmp;
88 gimple cond_stmt;
89 edge e_false;
90 basic_block new_bb, split_bb = gsi_bb (*gsip);
91 bool dominated_e_true = false;
93 gcc_assert (e_true->src == split_bb);
95 if (update_dominators
96 && get_immediate_dominator (CDI_DOMINATORS, e_true->dest) == split_bb)
97 dominated_e_true = true;
99 tmp = force_gimple_operand_gsi (gsip, cond, /*simple=*/true, NULL,
100 /*before=*/true, GSI_SAME_STMT);
101 cond_stmt = gimple_build_cond_from_tree (tmp, NULL_TREE, NULL_TREE);
102 gsi_insert_before (gsip, cond_stmt, GSI_SAME_STMT);
104 e_false = split_block (split_bb, cond_stmt);
105 new_bb = e_false->dest;
106 redirect_edge_pred (e_true, split_bb);
108 e_true->flags &= ~EDGE_FALLTHRU;
109 e_true->flags |= EDGE_TRUE_VALUE;
111 e_false->flags &= ~EDGE_FALLTHRU;
112 e_false->flags |= EDGE_FALSE_VALUE;
113 e_false->probability = REG_BR_PROB_BASE - e_true->probability;
114 e_false->count = split_bb->count - e_true->count;
115 new_bb->count = e_false->count;
117 if (update_dominators)
119 if (dominated_e_true)
120 set_immediate_dominator (CDI_DOMINATORS, e_true->dest, split_bb);
121 set_immediate_dominator (CDI_DOMINATORS, e_false->dest, split_bb);
124 return new_bb;
128 /* Determine whether "1 << x" is relatively cheap in word_mode. */
129 /* FIXME: This is the function that we need rtl.h and optabs.h for.
130 This function (and similar RTL-related cost code in e.g. IVOPTS) should
131 be moved to some kind of interface file for GIMPLE/RTL interactions. */
132 static bool
133 lshift_cheap_p (bool speed_p)
135 /* FIXME: This should be made target dependent via this "this_target"
136 mechanism, similar to e.g. can_copy_init_p in gcse.c. */
137 static bool init[2] = {false, false};
138 static bool cheap[2] = {true, true};
140 /* If the targer has no lshift in word_mode, the operation will most
141 probably not be cheap. ??? Does GCC even work for such targets? */
142 if (optab_handler (ashl_optab, word_mode) == CODE_FOR_nothing)
143 return false;
145 if (!init[speed_p])
147 rtx reg = gen_raw_REG (word_mode, 10000);
148 int cost = set_src_cost (gen_rtx_ASHIFT (word_mode, const1_rtx, reg),
149 speed_p);
150 cheap[speed_p] = cost < COSTS_N_INSNS (MAX_CASE_BIT_TESTS);
151 init[speed_p] = true;
154 return cheap[speed_p];
157 /* Return true if a switch should be expanded as a bit test.
158 RANGE is the difference between highest and lowest case.
159 UNIQ is number of unique case node targets, not counting the default case.
160 COUNT is the number of comparisons needed, not counting the default case. */
162 static bool
163 expand_switch_using_bit_tests_p (tree range,
164 unsigned int uniq,
165 unsigned int count, bool speed_p)
167 return (((uniq == 1 && count >= 3)
168 || (uniq == 2 && count >= 5)
169 || (uniq == 3 && count >= 6))
170 && lshift_cheap_p (speed_p)
171 && compare_tree_int (range, GET_MODE_BITSIZE (word_mode)) < 0
172 && compare_tree_int (range, 0) > 0);
175 /* Implement switch statements with bit tests
177 A GIMPLE switch statement can be expanded to a short sequence of bit-wise
178 comparisons. "switch(x)" is converted into "if ((1 << (x-MINVAL)) & CST)"
179 where CST and MINVAL are integer constants. This is better than a series
180 of compare-and-banch insns in some cases, e.g. we can implement:
182 if ((x==4) || (x==6) || (x==9) || (x==11))
184 as a single bit test:
186 if ((1<<x) & ((1<<4)|(1<<6)|(1<<9)|(1<<11)))
188 This transformation is only applied if the number of case targets is small,
189 if CST constains at least 3 bits, and "1 << x" is cheap. The bit tests are
190 performed in "word_mode".
192 The following example shows the code the transformation generates:
194 int bar(int x)
196 switch (x)
198 case '0': case '1': case '2': case '3': case '4':
199 case '5': case '6': case '7': case '8': case '9':
200 case 'A': case 'B': case 'C': case 'D': case 'E':
201 case 'F':
202 return 1;
204 return 0;
209 bar (int x)
211 tmp1 = x - 48;
212 if (tmp1 > (70 - 48)) goto L2;
213 tmp2 = 1 << tmp1;
214 tmp3 = 0b11111100000001111111111;
215 if ((tmp2 & tmp3) != 0) goto L1 ; else goto L2;
217 return 1;
219 return 0;
222 TODO: There are still some improvements to this transformation that could
223 be implemented:
225 * A narrower mode than word_mode could be used if that is cheaper, e.g.
226 for x86_64 where a narrower-mode shift may result in smaller code.
228 * The compounded constant could be shifted rather than the one. The
229 test would be either on the sign bit or on the least significant bit,
230 depending on the direction of the shift. On some machines, the test
231 for the branch would be free if the bit to test is already set by the
232 shift operation.
234 This transformation was contributed by Roger Sayle, see this e-mail:
235 http://gcc.gnu.org/ml/gcc-patches/2003-01/msg01950.html
238 /* A case_bit_test represents a set of case nodes that may be
239 selected from using a bit-wise comparison. HI and LO hold
240 the integer to be tested against, TARGET_EDGE contains the
241 edge to the basic block to jump to upon success and BITS
242 counts the number of case nodes handled by this test,
243 typically the number of bits set in HI:LO. The LABEL field
244 is used to quickly identify all cases in this set without
245 looking at label_to_block for every case label. */
247 struct case_bit_test
249 wide_int mask;
250 edge target_edge;
251 tree label;
252 int bits;
255 /* Comparison function for qsort to order bit tests by decreasing
256 probability of execution. Our best guess comes from a measured
257 profile. If the profile counts are equal, break even on the
258 number of case nodes, i.e. the node with the most cases gets
259 tested first.
261 TODO: Actually this currently runs before a profile is available.
262 Therefore the case-as-bit-tests transformation should be done
263 later in the pass pipeline, or something along the lines of
264 "Efficient and effective branch reordering using profile data"
265 (Yang et. al., 2002) should be implemented (although, how good
266 is a paper is called "Efficient and effective ..." when the
267 latter is implied by the former, but oh well...). */
269 static int
270 case_bit_test_cmp (const void *p1, const void *p2)
272 const struct case_bit_test *const d1 = (const struct case_bit_test *) p1;
273 const struct case_bit_test *const d2 = (const struct case_bit_test *) p2;
275 if (d2->target_edge->count != d1->target_edge->count)
276 return d2->target_edge->count - d1->target_edge->count;
277 if (d2->bits != d1->bits)
278 return d2->bits - d1->bits;
280 /* Stabilize the sort. */
281 return LABEL_DECL_UID (d2->label) - LABEL_DECL_UID (d1->label);
284 /* Expand a switch statement by a short sequence of bit-wise
285 comparisons. "switch(x)" is effectively converted into
286 "if ((1 << (x-MINVAL)) & CST)" where CST and MINVAL are
287 integer constants.
289 INDEX_EXPR is the value being switched on.
291 MINVAL is the lowest case value of in the case nodes,
292 and RANGE is highest value minus MINVAL. MINVAL and RANGE
293 are not guaranteed to be of the same type as INDEX_EXPR
294 (the gimplifier doesn't change the type of case label values,
295 and MINVAL and RANGE are derived from those values).
296 MAXVAL is MINVAL + RANGE.
298 There *MUST* be MAX_CASE_BIT_TESTS or less unique case
299 node targets. */
301 static void
302 emit_case_bit_tests (gimple swtch, tree index_expr,
303 tree minval, tree range, tree maxval)
305 struct case_bit_test test[MAX_CASE_BIT_TESTS];
306 unsigned int i, j, k;
307 unsigned int count;
309 basic_block switch_bb = gimple_bb (swtch);
310 basic_block default_bb, new_default_bb, new_bb;
311 edge default_edge;
312 bool update_dom = dom_info_available_p (CDI_DOMINATORS);
314 vec<basic_block> bbs_to_fix_dom = vNULL;
316 tree index_type = TREE_TYPE (index_expr);
317 tree unsigned_index_type = unsigned_type_for (index_type);
318 unsigned int branch_num = gimple_switch_num_labels (swtch);
320 gimple_stmt_iterator gsi;
321 gimple shift_stmt;
323 tree idx, tmp, csui;
324 tree word_type_node = lang_hooks.types.type_for_mode (word_mode, 1);
325 tree word_mode_zero = fold_convert (word_type_node, integer_zero_node);
326 tree word_mode_one = fold_convert (word_type_node, integer_one_node);
327 int prec = TYPE_PRECISION (word_type_node);
328 wide_int wone = wi::one (prec);
330 memset (&test, 0, sizeof (test));
332 /* Get the edge for the default case. */
333 tmp = gimple_switch_default_label (swtch);
334 default_bb = label_to_block (CASE_LABEL (tmp));
335 default_edge = find_edge (switch_bb, default_bb);
337 /* Go through all case labels, and collect the case labels, profile
338 counts, and other information we need to build the branch tests. */
339 count = 0;
340 for (i = 1; i < branch_num; i++)
342 unsigned int lo, hi;
343 tree cs = gimple_switch_label (swtch, i);
344 tree label = CASE_LABEL (cs);
345 edge e = find_edge (switch_bb, label_to_block (label));
346 for (k = 0; k < count; k++)
347 if (e == test[k].target_edge)
348 break;
350 if (k == count)
352 gcc_checking_assert (count < MAX_CASE_BIT_TESTS);
353 test[k].mask = wi::zero (prec);
354 test[k].target_edge = e;
355 test[k].label = label;
356 test[k].bits = 1;
357 count++;
359 else
360 test[k].bits++;
362 lo = tree_to_uhwi (int_const_binop (MINUS_EXPR,
363 CASE_LOW (cs), minval));
364 if (CASE_HIGH (cs) == NULL_TREE)
365 hi = lo;
366 else
367 hi = tree_to_uhwi (int_const_binop (MINUS_EXPR,
368 CASE_HIGH (cs), minval));
370 for (j = lo; j <= hi; j++)
371 test[k].mask |= wi::lshift (wone, j);
374 qsort (test, count, sizeof (*test), case_bit_test_cmp);
376 /* If all values are in the 0 .. BITS_PER_WORD-1 range, we can get rid of
377 the minval subtractions, but it might make the mask constants more
378 expensive. So, compare the costs. */
379 if (compare_tree_int (minval, 0) > 0
380 && compare_tree_int (maxval, GET_MODE_BITSIZE (word_mode)) < 0)
382 int cost_diff;
383 HOST_WIDE_INT m = tree_to_uhwi (minval);
384 rtx reg = gen_raw_REG (word_mode, 10000);
385 bool speed_p = optimize_bb_for_speed_p (gimple_bb (swtch));
386 cost_diff = set_rtx_cost (gen_rtx_PLUS (word_mode, reg,
387 GEN_INT (-m)), speed_p);
388 for (i = 0; i < count; i++)
390 rtx r = immed_wide_int_const (test[i].mask, word_mode);
391 cost_diff += set_src_cost (gen_rtx_AND (word_mode, reg, r), speed_p);
392 r = immed_wide_int_const (wi::lshift (test[i].mask, m), word_mode);
393 cost_diff -= set_src_cost (gen_rtx_AND (word_mode, reg, r), speed_p);
395 if (cost_diff > 0)
397 for (i = 0; i < count; i++)
398 test[i].mask = wi::lshift (test[i].mask, m);
399 minval = build_zero_cst (TREE_TYPE (minval));
400 range = maxval;
404 /* We generate two jumps to the default case label.
405 Split the default edge, so that we don't have to do any PHI node
406 updating. */
407 new_default_bb = split_edge (default_edge);
409 if (update_dom)
411 bbs_to_fix_dom.create (10);
412 bbs_to_fix_dom.quick_push (switch_bb);
413 bbs_to_fix_dom.quick_push (default_bb);
414 bbs_to_fix_dom.quick_push (new_default_bb);
417 /* Now build the test-and-branch code. */
419 gsi = gsi_last_bb (switch_bb);
421 /* idx = (unsigned)x - minval. */
422 idx = fold_convert (unsigned_index_type, index_expr);
423 idx = fold_build2 (MINUS_EXPR, unsigned_index_type, idx,
424 fold_convert (unsigned_index_type, minval));
425 idx = force_gimple_operand_gsi (&gsi, idx,
426 /*simple=*/true, NULL_TREE,
427 /*before=*/true, GSI_SAME_STMT);
429 /* if (idx > range) goto default */
430 range = force_gimple_operand_gsi (&gsi,
431 fold_convert (unsigned_index_type, range),
432 /*simple=*/true, NULL_TREE,
433 /*before=*/true, GSI_SAME_STMT);
434 tmp = fold_build2 (GT_EXPR, boolean_type_node, idx, range);
435 new_bb = hoist_edge_and_branch_if_true (&gsi, tmp, default_edge, update_dom);
436 if (update_dom)
437 bbs_to_fix_dom.quick_push (new_bb);
438 gcc_assert (gimple_bb (swtch) == new_bb);
439 gsi = gsi_last_bb (new_bb);
441 /* Any blocks dominated by the GIMPLE_SWITCH, but that are not successors
442 of NEW_BB, are still immediately dominated by SWITCH_BB. Make it so. */
443 if (update_dom)
445 vec<basic_block> dom_bbs;
446 basic_block dom_son;
448 dom_bbs = get_dominated_by (CDI_DOMINATORS, new_bb);
449 FOR_EACH_VEC_ELT (dom_bbs, i, dom_son)
451 edge e = find_edge (new_bb, dom_son);
452 if (e && single_pred_p (e->dest))
453 continue;
454 set_immediate_dominator (CDI_DOMINATORS, dom_son, switch_bb);
455 bbs_to_fix_dom.safe_push (dom_son);
457 dom_bbs.release ();
460 /* csui = (1 << (word_mode) idx) */
461 csui = make_ssa_name (word_type_node, NULL);
462 tmp = fold_build2 (LSHIFT_EXPR, word_type_node, word_mode_one,
463 fold_convert (word_type_node, idx));
464 tmp = force_gimple_operand_gsi (&gsi, tmp,
465 /*simple=*/false, NULL_TREE,
466 /*before=*/true, GSI_SAME_STMT);
467 shift_stmt = gimple_build_assign (csui, tmp);
468 gsi_insert_before (&gsi, shift_stmt, GSI_SAME_STMT);
469 update_stmt (shift_stmt);
471 /* for each unique set of cases:
472 if (const & csui) goto target */
473 for (k = 0; k < count; k++)
475 tmp = wide_int_to_tree (word_type_node, test[k].mask);
476 tmp = fold_build2 (BIT_AND_EXPR, word_type_node, csui, tmp);
477 tmp = force_gimple_operand_gsi (&gsi, tmp,
478 /*simple=*/true, NULL_TREE,
479 /*before=*/true, GSI_SAME_STMT);
480 tmp = fold_build2 (NE_EXPR, boolean_type_node, tmp, word_mode_zero);
481 new_bb = hoist_edge_and_branch_if_true (&gsi, tmp, test[k].target_edge,
482 update_dom);
483 if (update_dom)
484 bbs_to_fix_dom.safe_push (new_bb);
485 gcc_assert (gimple_bb (swtch) == new_bb);
486 gsi = gsi_last_bb (new_bb);
489 /* We should have removed all edges now. */
490 gcc_assert (EDGE_COUNT (gsi_bb (gsi)->succs) == 0);
492 /* If nothing matched, go to the default label. */
493 make_edge (gsi_bb (gsi), new_default_bb, EDGE_FALLTHRU);
495 /* The GIMPLE_SWITCH is now redundant. */
496 gsi_remove (&gsi, true);
498 if (update_dom)
500 /* Fix up the dominator tree. */
501 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
502 bbs_to_fix_dom.release ();
507 Switch initialization conversion
509 The following pass changes simple initializations of scalars in a switch
510 statement into initializations from a static array. Obviously, the values
511 must be constant and known at compile time and a default branch must be
512 provided. For example, the following code:
514 int a,b;
516 switch (argc)
518 case 1:
519 case 2:
520 a_1 = 8;
521 b_1 = 6;
522 break;
523 case 3:
524 a_2 = 9;
525 b_2 = 5;
526 break;
527 case 12:
528 a_3 = 10;
529 b_3 = 4;
530 break;
531 default:
532 a_4 = 16;
533 b_4 = 1;
534 break;
536 a_5 = PHI <a_1, a_2, a_3, a_4>
537 b_5 = PHI <b_1, b_2, b_3, b_4>
540 is changed into:
542 static const int = CSWTCH01[] = {6, 6, 5, 1, 1, 1, 1, 1, 1, 1, 1, 4};
543 static const int = CSWTCH02[] = {8, 8, 9, 16, 16, 16, 16, 16, 16, 16,
544 16, 16, 10};
546 if (((unsigned) argc) - 1 < 11)
548 a_6 = CSWTCH02[argc - 1];
549 b_6 = CSWTCH01[argc - 1];
551 else
553 a_7 = 16;
554 b_7 = 1;
556 a_5 = PHI <a_6, a_7>
557 b_b = PHI <b_6, b_7>
559 There are further constraints. Specifically, the range of values across all
560 case labels must not be bigger than SWITCH_CONVERSION_BRANCH_RATIO (default
561 eight) times the number of the actual switch branches.
563 This transformation was contributed by Martin Jambor, see this e-mail:
564 http://gcc.gnu.org/ml/gcc-patches/2008-07/msg00011.html */
566 /* The main structure of the pass. */
567 struct switch_conv_info
569 /* The expression used to decide the switch branch. */
570 tree index_expr;
572 /* The following integer constants store the minimum and maximum value
573 covered by the case labels. */
574 tree range_min;
575 tree range_max;
577 /* The difference between the above two numbers. Stored here because it
578 is used in all the conversion heuristics, as well as for some of the
579 transformation, and it is expensive to re-compute it all the time. */
580 tree range_size;
582 /* Basic block that contains the actual GIMPLE_SWITCH. */
583 basic_block switch_bb;
585 /* Basic block that is the target of the default case. */
586 basic_block default_bb;
588 /* The single successor block of all branches out of the GIMPLE_SWITCH,
589 if such a block exists. Otherwise NULL. */
590 basic_block final_bb;
592 /* The probability of the default edge in the replaced switch. */
593 int default_prob;
595 /* The count of the default edge in the replaced switch. */
596 gcov_type default_count;
598 /* Combined count of all other (non-default) edges in the replaced switch. */
599 gcov_type other_count;
601 /* Number of phi nodes in the final bb (that we'll be replacing). */
602 int phi_count;
604 /* Array of default values, in the same order as phi nodes. */
605 tree *default_values;
607 /* Constructors of new static arrays. */
608 vec<constructor_elt, va_gc> **constructors;
610 /* Array of ssa names that are initialized with a value from a new static
611 array. */
612 tree *target_inbound_names;
614 /* Array of ssa names that are initialized with the default value if the
615 switch expression is out of range. */
616 tree *target_outbound_names;
618 /* The first load statement that loads a temporary from a new static array.
620 gimple arr_ref_first;
622 /* The last load statement that loads a temporary from a new static array. */
623 gimple arr_ref_last;
625 /* String reason why the case wasn't a good candidate that is written to the
626 dump file, if there is one. */
627 const char *reason;
629 /* Parameters for expand_switch_using_bit_tests. Should be computed
630 the same way as in expand_case. */
631 unsigned int uniq;
632 unsigned int count;
635 /* Collect information about GIMPLE_SWITCH statement SWTCH into INFO. */
637 static void
638 collect_switch_conv_info (gimple swtch, struct switch_conv_info *info)
640 unsigned int branch_num = gimple_switch_num_labels (swtch);
641 tree min_case, max_case;
642 unsigned int count, i;
643 edge e, e_default;
644 edge_iterator ei;
646 memset (info, 0, sizeof (*info));
648 /* The gimplifier has already sorted the cases by CASE_LOW and ensured there
649 is a default label which is the first in the vector.
650 Collect the bits we can deduce from the CFG. */
651 info->index_expr = gimple_switch_index (swtch);
652 info->switch_bb = gimple_bb (swtch);
653 info->default_bb =
654 label_to_block (CASE_LABEL (gimple_switch_default_label (swtch)));
655 e_default = find_edge (info->switch_bb, info->default_bb);
656 info->default_prob = e_default->probability;
657 info->default_count = e_default->count;
658 FOR_EACH_EDGE (e, ei, info->switch_bb->succs)
659 if (e != e_default)
660 info->other_count += e->count;
662 /* See if there is one common successor block for all branch
663 targets. If it exists, record it in FINAL_BB.
664 Start with the destination of the default case as guess
665 or its destination in case it is a forwarder block. */
666 if (! single_pred_p (e_default->dest))
667 info->final_bb = e_default->dest;
668 else if (single_succ_p (e_default->dest)
669 && ! single_pred_p (single_succ (e_default->dest)))
670 info->final_bb = single_succ (e_default->dest);
671 /* Require that all switch destinations are either that common
672 FINAL_BB or a forwarder to it. */
673 if (info->final_bb)
674 FOR_EACH_EDGE (e, ei, info->switch_bb->succs)
676 if (e->dest == info->final_bb)
677 continue;
679 if (single_pred_p (e->dest)
680 && single_succ_p (e->dest)
681 && single_succ (e->dest) == info->final_bb)
682 continue;
684 info->final_bb = NULL;
685 break;
688 /* Get upper and lower bounds of case values, and the covered range. */
689 min_case = gimple_switch_label (swtch, 1);
690 max_case = gimple_switch_label (swtch, branch_num - 1);
692 info->range_min = CASE_LOW (min_case);
693 if (CASE_HIGH (max_case) != NULL_TREE)
694 info->range_max = CASE_HIGH (max_case);
695 else
696 info->range_max = CASE_LOW (max_case);
698 info->range_size =
699 int_const_binop (MINUS_EXPR, info->range_max, info->range_min);
701 /* Get a count of the number of case labels. Single-valued case labels
702 simply count as one, but a case range counts double, since it may
703 require two compares if it gets lowered as a branching tree. */
704 count = 0;
705 for (i = 1; i < branch_num; i++)
707 tree elt = gimple_switch_label (swtch, i);
708 count++;
709 if (CASE_HIGH (elt)
710 && ! tree_int_cst_equal (CASE_LOW (elt), CASE_HIGH (elt)))
711 count++;
713 info->count = count;
715 /* Get the number of unique non-default targets out of the GIMPLE_SWITCH
716 block. Assume a CFG cleanup would have already removed degenerate
717 switch statements, this allows us to just use EDGE_COUNT. */
718 info->uniq = EDGE_COUNT (gimple_bb (swtch)->succs) - 1;
721 /* Checks whether the range given by individual case statements of the SWTCH
722 switch statement isn't too big and whether the number of branches actually
723 satisfies the size of the new array. */
725 static bool
726 check_range (struct switch_conv_info *info)
728 gcc_assert (info->range_size);
729 if (!tree_fits_uhwi_p (info->range_size))
731 info->reason = "index range way too large or otherwise unusable";
732 return false;
735 if (tree_to_uhwi (info->range_size)
736 > ((unsigned) info->count * SWITCH_CONVERSION_BRANCH_RATIO))
738 info->reason = "the maximum range-branch ratio exceeded";
739 return false;
742 return true;
745 /* Checks whether all but the FINAL_BB basic blocks are empty. */
747 static bool
748 check_all_empty_except_final (struct switch_conv_info *info)
750 edge e;
751 edge_iterator ei;
753 FOR_EACH_EDGE (e, ei, info->switch_bb->succs)
755 if (e->dest == info->final_bb)
756 continue;
758 if (!empty_block_p (e->dest))
760 info->reason = "bad case - a non-final BB not empty";
761 return false;
765 return true;
768 /* This function checks whether all required values in phi nodes in final_bb
769 are constants. Required values are those that correspond to a basic block
770 which is a part of the examined switch statement. It returns true if the
771 phi nodes are OK, otherwise false. */
773 static bool
774 check_final_bb (struct switch_conv_info *info)
776 gimple_stmt_iterator gsi;
778 info->phi_count = 0;
779 for (gsi = gsi_start_phis (info->final_bb); !gsi_end_p (gsi); gsi_next (&gsi))
781 gimple phi = gsi_stmt (gsi);
782 unsigned int i;
784 info->phi_count++;
786 for (i = 0; i < gimple_phi_num_args (phi); i++)
788 basic_block bb = gimple_phi_arg_edge (phi, i)->src;
790 if (bb == info->switch_bb
791 || (single_pred_p (bb) && single_pred (bb) == info->switch_bb))
793 tree reloc, val;
795 val = gimple_phi_arg_def (phi, i);
796 if (!is_gimple_ip_invariant (val))
798 info->reason = "non-invariant value from a case";
799 return false; /* Non-invariant argument. */
801 reloc = initializer_constant_valid_p (val, TREE_TYPE (val));
802 if ((flag_pic && reloc != null_pointer_node)
803 || (!flag_pic && reloc == NULL_TREE))
805 if (reloc)
806 info->reason
807 = "value from a case would need runtime relocations";
808 else
809 info->reason
810 = "value from a case is not a valid initializer";
811 return false;
817 return true;
820 /* The following function allocates default_values, target_{in,out}_names and
821 constructors arrays. The last one is also populated with pointers to
822 vectors that will become constructors of new arrays. */
824 static void
825 create_temp_arrays (struct switch_conv_info *info)
827 int i;
829 info->default_values = XCNEWVEC (tree, info->phi_count * 3);
830 /* ??? Macros do not support multi argument templates in their
831 argument list. We create a typedef to work around that problem. */
832 typedef vec<constructor_elt, va_gc> *vec_constructor_elt_gc;
833 info->constructors = XCNEWVEC (vec_constructor_elt_gc, info->phi_count);
834 info->target_inbound_names = info->default_values + info->phi_count;
835 info->target_outbound_names = info->target_inbound_names + info->phi_count;
836 for (i = 0; i < info->phi_count; i++)
837 vec_alloc (info->constructors[i], tree_to_uhwi (info->range_size) + 1);
840 /* Free the arrays created by create_temp_arrays(). The vectors that are
841 created by that function are not freed here, however, because they have
842 already become constructors and must be preserved. */
844 static void
845 free_temp_arrays (struct switch_conv_info *info)
847 XDELETEVEC (info->constructors);
848 XDELETEVEC (info->default_values);
851 /* Populate the array of default values in the order of phi nodes.
852 DEFAULT_CASE is the CASE_LABEL_EXPR for the default switch branch. */
854 static void
855 gather_default_values (tree default_case, struct switch_conv_info *info)
857 gimple_stmt_iterator gsi;
858 basic_block bb = label_to_block (CASE_LABEL (default_case));
859 edge e;
860 int i = 0;
862 gcc_assert (CASE_LOW (default_case) == NULL_TREE);
864 if (bb == info->final_bb)
865 e = find_edge (info->switch_bb, bb);
866 else
867 e = single_succ_edge (bb);
869 for (gsi = gsi_start_phis (info->final_bb); !gsi_end_p (gsi); gsi_next (&gsi))
871 gimple phi = gsi_stmt (gsi);
872 tree val = PHI_ARG_DEF_FROM_EDGE (phi, e);
873 gcc_assert (val);
874 info->default_values[i++] = val;
878 /* The following function populates the vectors in the constructors array with
879 future contents of the static arrays. The vectors are populated in the
880 order of phi nodes. SWTCH is the switch statement being converted. */
882 static void
883 build_constructors (gimple swtch, struct switch_conv_info *info)
885 unsigned i, branch_num = gimple_switch_num_labels (swtch);
886 tree pos = info->range_min;
888 for (i = 1; i < branch_num; i++)
890 tree cs = gimple_switch_label (swtch, i);
891 basic_block bb = label_to_block (CASE_LABEL (cs));
892 edge e;
893 tree high;
894 gimple_stmt_iterator gsi;
895 int j;
897 if (bb == info->final_bb)
898 e = find_edge (info->switch_bb, bb);
899 else
900 e = single_succ_edge (bb);
901 gcc_assert (e);
903 while (tree_int_cst_lt (pos, CASE_LOW (cs)))
905 int k;
906 for (k = 0; k < info->phi_count; k++)
908 constructor_elt elt;
910 elt.index = int_const_binop (MINUS_EXPR, pos, info->range_min);
911 elt.value
912 = unshare_expr_without_location (info->default_values[k]);
913 info->constructors[k]->quick_push (elt);
916 pos = int_const_binop (PLUS_EXPR, pos,
917 build_int_cst (TREE_TYPE (pos), 1));
919 gcc_assert (tree_int_cst_equal (pos, CASE_LOW (cs)));
921 j = 0;
922 if (CASE_HIGH (cs))
923 high = CASE_HIGH (cs);
924 else
925 high = CASE_LOW (cs);
926 for (gsi = gsi_start_phis (info->final_bb);
927 !gsi_end_p (gsi); gsi_next (&gsi))
929 gimple phi = gsi_stmt (gsi);
930 tree val = PHI_ARG_DEF_FROM_EDGE (phi, e);
931 tree low = CASE_LOW (cs);
932 pos = CASE_LOW (cs);
936 constructor_elt elt;
938 elt.index = int_const_binop (MINUS_EXPR, pos, info->range_min);
939 elt.value = unshare_expr_without_location (val);
940 info->constructors[j]->quick_push (elt);
942 pos = int_const_binop (PLUS_EXPR, pos,
943 build_int_cst (TREE_TYPE (pos), 1));
944 } while (!tree_int_cst_lt (high, pos)
945 && tree_int_cst_lt (low, pos));
946 j++;
951 /* If all values in the constructor vector are the same, return the value.
952 Otherwise return NULL_TREE. Not supposed to be called for empty
953 vectors. */
955 static tree
956 constructor_contains_same_values_p (vec<constructor_elt, va_gc> *vec)
958 unsigned int i;
959 tree prev = NULL_TREE;
960 constructor_elt *elt;
962 FOR_EACH_VEC_SAFE_ELT (vec, i, elt)
964 if (!prev)
965 prev = elt->value;
966 else if (!operand_equal_p (elt->value, prev, OEP_ONLY_CONST))
967 return NULL_TREE;
969 return prev;
972 /* Return type which should be used for array elements, either TYPE,
973 or for integral type some smaller integral type that can still hold
974 all the constants. */
976 static tree
977 array_value_type (gimple swtch, tree type, int num,
978 struct switch_conv_info *info)
980 unsigned int i, len = vec_safe_length (info->constructors[num]);
981 constructor_elt *elt;
982 enum machine_mode mode;
983 int sign = 0;
984 tree smaller_type;
986 if (!INTEGRAL_TYPE_P (type))
987 return type;
989 mode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (TYPE_MODE (type)));
990 if (GET_MODE_SIZE (TYPE_MODE (type)) <= GET_MODE_SIZE (mode))
991 return type;
993 if (len < (optimize_bb_for_size_p (gimple_bb (swtch)) ? 2 : 32))
994 return type;
996 FOR_EACH_VEC_SAFE_ELT (info->constructors[num], i, elt)
998 wide_int cst;
1000 if (TREE_CODE (elt->value) != INTEGER_CST)
1001 return type;
1003 cst = elt->value;
1004 while (1)
1006 unsigned int prec = GET_MODE_BITSIZE (mode);
1007 if (prec > HOST_BITS_PER_WIDE_INT)
1008 return type;
1010 if (sign >= 0 && cst == wi::zext (cst, prec))
1012 if (sign == 0 && cst == wi::sext (cst, prec))
1013 break;
1014 sign = 1;
1015 break;
1017 if (sign <= 0 && cst == wi::sext (cst, prec))
1019 sign = -1;
1020 break;
1023 if (sign == 1)
1024 sign = 0;
1026 mode = GET_MODE_WIDER_MODE (mode);
1027 if (mode == VOIDmode
1028 || GET_MODE_SIZE (mode) >= GET_MODE_SIZE (TYPE_MODE (type)))
1029 return type;
1033 if (sign == 0)
1034 sign = TYPE_UNSIGNED (type) ? 1 : -1;
1035 smaller_type = lang_hooks.types.type_for_mode (mode, sign >= 0);
1036 if (GET_MODE_SIZE (TYPE_MODE (type))
1037 <= GET_MODE_SIZE (TYPE_MODE (smaller_type)))
1038 return type;
1040 return smaller_type;
1043 /* Create an appropriate array type and declaration and assemble a static array
1044 variable. Also create a load statement that initializes the variable in
1045 question with a value from the static array. SWTCH is the switch statement
1046 being converted, NUM is the index to arrays of constructors, default values
1047 and target SSA names for this particular array. ARR_INDEX_TYPE is the type
1048 of the index of the new array, PHI is the phi node of the final BB that
1049 corresponds to the value that will be loaded from the created array. TIDX
1050 is an ssa name of a temporary variable holding the index for loads from the
1051 new array. */
1053 static void
1054 build_one_array (gimple swtch, int num, tree arr_index_type, gimple phi,
1055 tree tidx, struct switch_conv_info *info)
1057 tree name, cst;
1058 gimple load;
1059 gimple_stmt_iterator gsi = gsi_for_stmt (swtch);
1060 location_t loc = gimple_location (swtch);
1062 gcc_assert (info->default_values[num]);
1064 name = copy_ssa_name (PHI_RESULT (phi), NULL);
1065 info->target_inbound_names[num] = name;
1067 cst = constructor_contains_same_values_p (info->constructors[num]);
1068 if (cst)
1069 load = gimple_build_assign (name, cst);
1070 else
1072 tree array_type, ctor, decl, value_type, fetch, default_type;
1074 default_type = TREE_TYPE (info->default_values[num]);
1075 value_type = array_value_type (swtch, default_type, num, info);
1076 array_type = build_array_type (value_type, arr_index_type);
1077 if (default_type != value_type)
1079 unsigned int i;
1080 constructor_elt *elt;
1082 FOR_EACH_VEC_SAFE_ELT (info->constructors[num], i, elt)
1083 elt->value = fold_convert (value_type, elt->value);
1085 ctor = build_constructor (array_type, info->constructors[num]);
1086 TREE_CONSTANT (ctor) = true;
1087 TREE_STATIC (ctor) = true;
1089 decl = build_decl (loc, VAR_DECL, NULL_TREE, array_type);
1090 TREE_STATIC (decl) = 1;
1091 DECL_INITIAL (decl) = ctor;
1093 DECL_NAME (decl) = create_tmp_var_name ("CSWTCH");
1094 DECL_ARTIFICIAL (decl) = 1;
1095 TREE_CONSTANT (decl) = 1;
1096 TREE_READONLY (decl) = 1;
1097 varpool_node::finalize_decl (decl);
1099 fetch = build4 (ARRAY_REF, value_type, decl, tidx, NULL_TREE,
1100 NULL_TREE);
1101 if (default_type != value_type)
1103 fetch = fold_convert (default_type, fetch);
1104 fetch = force_gimple_operand_gsi (&gsi, fetch, true, NULL_TREE,
1105 true, GSI_SAME_STMT);
1107 load = gimple_build_assign (name, fetch);
1110 gsi_insert_before (&gsi, load, GSI_SAME_STMT);
1111 update_stmt (load);
1112 info->arr_ref_last = load;
1115 /* Builds and initializes static arrays initialized with values gathered from
1116 the SWTCH switch statement. Also creates statements that load values from
1117 them. */
1119 static void
1120 build_arrays (gimple swtch, struct switch_conv_info *info)
1122 tree arr_index_type;
1123 tree tidx, sub, utype;
1124 gimple stmt;
1125 gimple_stmt_iterator gsi;
1126 int i;
1127 location_t loc = gimple_location (swtch);
1129 gsi = gsi_for_stmt (swtch);
1131 /* Make sure we do not generate arithmetics in a subrange. */
1132 utype = TREE_TYPE (info->index_expr);
1133 if (TREE_TYPE (utype))
1134 utype = lang_hooks.types.type_for_mode (TYPE_MODE (TREE_TYPE (utype)), 1);
1135 else
1136 utype = lang_hooks.types.type_for_mode (TYPE_MODE (utype), 1);
1138 arr_index_type = build_index_type (info->range_size);
1139 tidx = make_ssa_name (utype, NULL);
1140 sub = fold_build2_loc (loc, MINUS_EXPR, utype,
1141 fold_convert_loc (loc, utype, info->index_expr),
1142 fold_convert_loc (loc, utype, info->range_min));
1143 sub = force_gimple_operand_gsi (&gsi, sub,
1144 false, NULL, true, GSI_SAME_STMT);
1145 stmt = gimple_build_assign (tidx, sub);
1147 gsi_insert_before (&gsi, stmt, GSI_SAME_STMT);
1148 update_stmt (stmt);
1149 info->arr_ref_first = stmt;
1151 for (gsi = gsi_start_phis (info->final_bb), i = 0;
1152 !gsi_end_p (gsi); gsi_next (&gsi), i++)
1153 build_one_array (swtch, i, arr_index_type, gsi_stmt (gsi), tidx, info);
1156 /* Generates and appropriately inserts loads of default values at the position
1157 given by BSI. Returns the last inserted statement. */
1159 static gimple
1160 gen_def_assigns (gimple_stmt_iterator *gsi, struct switch_conv_info *info)
1162 int i;
1163 gimple assign = NULL;
1165 for (i = 0; i < info->phi_count; i++)
1167 tree name = copy_ssa_name (info->target_inbound_names[i], NULL);
1168 info->target_outbound_names[i] = name;
1169 assign = gimple_build_assign (name, info->default_values[i]);
1170 gsi_insert_before (gsi, assign, GSI_SAME_STMT);
1171 update_stmt (assign);
1173 return assign;
1176 /* Deletes the unused bbs and edges that now contain the switch statement and
1177 its empty branch bbs. BBD is the now dead BB containing the original switch
1178 statement, FINAL is the last BB of the converted switch statement (in terms
1179 of succession). */
1181 static void
1182 prune_bbs (basic_block bbd, basic_block final)
1184 edge_iterator ei;
1185 edge e;
1187 for (ei = ei_start (bbd->succs); (e = ei_safe_edge (ei)); )
1189 basic_block bb;
1190 bb = e->dest;
1191 remove_edge (e);
1192 if (bb != final)
1193 delete_basic_block (bb);
1195 delete_basic_block (bbd);
1198 /* Add values to phi nodes in final_bb for the two new edges. E1F is the edge
1199 from the basic block loading values from an array and E2F from the basic
1200 block loading default values. BBF is the last switch basic block (see the
1201 bbf description in the comment below). */
1203 static void
1204 fix_phi_nodes (edge e1f, edge e2f, basic_block bbf,
1205 struct switch_conv_info *info)
1207 gimple_stmt_iterator gsi;
1208 int i;
1210 for (gsi = gsi_start_phis (bbf), i = 0;
1211 !gsi_end_p (gsi); gsi_next (&gsi), i++)
1213 gimple phi = gsi_stmt (gsi);
1214 add_phi_arg (phi, info->target_inbound_names[i], e1f, UNKNOWN_LOCATION);
1215 add_phi_arg (phi, info->target_outbound_names[i], e2f, UNKNOWN_LOCATION);
1219 /* Creates a check whether the switch expression value actually falls into the
1220 range given by all the cases. If it does not, the temporaries are loaded
1221 with default values instead. SWTCH is the switch statement being converted.
1223 bb0 is the bb with the switch statement, however, we'll end it with a
1224 condition instead.
1226 bb1 is the bb to be used when the range check went ok. It is derived from
1227 the switch BB
1229 bb2 is the bb taken when the expression evaluated outside of the range
1230 covered by the created arrays. It is populated by loads of default
1231 values.
1233 bbF is a fall through for both bb1 and bb2 and contains exactly what
1234 originally followed the switch statement.
1236 bbD contains the switch statement (in the end). It is unreachable but we
1237 still need to strip off its edges.
1240 static void
1241 gen_inbound_check (gimple swtch, struct switch_conv_info *info)
1243 tree label_decl1 = create_artificial_label (UNKNOWN_LOCATION);
1244 tree label_decl2 = create_artificial_label (UNKNOWN_LOCATION);
1245 tree label_decl3 = create_artificial_label (UNKNOWN_LOCATION);
1246 gimple label1, label2, label3;
1247 tree utype, tidx;
1248 tree bound;
1250 gimple cond_stmt;
1252 gimple last_assign;
1253 gimple_stmt_iterator gsi;
1254 basic_block bb0, bb1, bb2, bbf, bbd;
1255 edge e01, e02, e21, e1d, e1f, e2f;
1256 location_t loc = gimple_location (swtch);
1258 gcc_assert (info->default_values);
1260 bb0 = gimple_bb (swtch);
1262 tidx = gimple_assign_lhs (info->arr_ref_first);
1263 utype = TREE_TYPE (tidx);
1265 /* (end of) block 0 */
1266 gsi = gsi_for_stmt (info->arr_ref_first);
1267 gsi_next (&gsi);
1269 bound = fold_convert_loc (loc, utype, info->range_size);
1270 cond_stmt = gimple_build_cond (LE_EXPR, tidx, bound, NULL_TREE, NULL_TREE);
1271 gsi_insert_before (&gsi, cond_stmt, GSI_SAME_STMT);
1272 update_stmt (cond_stmt);
1274 /* block 2 */
1275 label2 = gimple_build_label (label_decl2);
1276 gsi_insert_before (&gsi, label2, GSI_SAME_STMT);
1277 last_assign = gen_def_assigns (&gsi, info);
1279 /* block 1 */
1280 label1 = gimple_build_label (label_decl1);
1281 gsi_insert_before (&gsi, label1, GSI_SAME_STMT);
1283 /* block F */
1284 gsi = gsi_start_bb (info->final_bb);
1285 label3 = gimple_build_label (label_decl3);
1286 gsi_insert_before (&gsi, label3, GSI_SAME_STMT);
1288 /* cfg fix */
1289 e02 = split_block (bb0, cond_stmt);
1290 bb2 = e02->dest;
1292 e21 = split_block (bb2, last_assign);
1293 bb1 = e21->dest;
1294 remove_edge (e21);
1296 e1d = split_block (bb1, info->arr_ref_last);
1297 bbd = e1d->dest;
1298 remove_edge (e1d);
1300 /* flags and profiles of the edge for in-range values */
1301 e01 = make_edge (bb0, bb1, EDGE_TRUE_VALUE);
1302 e01->probability = REG_BR_PROB_BASE - info->default_prob;
1303 e01->count = info->other_count;
1305 /* flags and profiles of the edge taking care of out-of-range values */
1306 e02->flags &= ~EDGE_FALLTHRU;
1307 e02->flags |= EDGE_FALSE_VALUE;
1308 e02->probability = info->default_prob;
1309 e02->count = info->default_count;
1311 bbf = info->final_bb;
1313 e1f = make_edge (bb1, bbf, EDGE_FALLTHRU);
1314 e1f->probability = REG_BR_PROB_BASE;
1315 e1f->count = info->other_count;
1317 e2f = make_edge (bb2, bbf, EDGE_FALLTHRU);
1318 e2f->probability = REG_BR_PROB_BASE;
1319 e2f->count = info->default_count;
1321 /* frequencies of the new BBs */
1322 bb1->frequency = EDGE_FREQUENCY (e01);
1323 bb2->frequency = EDGE_FREQUENCY (e02);
1324 bbf->frequency = EDGE_FREQUENCY (e1f) + EDGE_FREQUENCY (e2f);
1326 /* Tidy blocks that have become unreachable. */
1327 prune_bbs (bbd, info->final_bb);
1329 /* Fixup the PHI nodes in bbF. */
1330 fix_phi_nodes (e1f, e2f, bbf, info);
1332 /* Fix the dominator tree, if it is available. */
1333 if (dom_info_available_p (CDI_DOMINATORS))
1335 vec<basic_block> bbs_to_fix_dom;
1337 set_immediate_dominator (CDI_DOMINATORS, bb1, bb0);
1338 set_immediate_dominator (CDI_DOMINATORS, bb2, bb0);
1339 if (! get_immediate_dominator (CDI_DOMINATORS, bbf))
1340 /* If bbD was the immediate dominator ... */
1341 set_immediate_dominator (CDI_DOMINATORS, bbf, bb0);
1343 bbs_to_fix_dom.create (4);
1344 bbs_to_fix_dom.quick_push (bb0);
1345 bbs_to_fix_dom.quick_push (bb1);
1346 bbs_to_fix_dom.quick_push (bb2);
1347 bbs_to_fix_dom.quick_push (bbf);
1349 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
1350 bbs_to_fix_dom.release ();
1354 /* The following function is invoked on every switch statement (the current one
1355 is given in SWTCH) and runs the individual phases of switch conversion on it
1356 one after another until one fails or the conversion is completed.
1357 Returns NULL on success, or a pointer to a string with the reason why the
1358 conversion failed. */
1360 static const char *
1361 process_switch (gimple swtch)
1363 struct switch_conv_info info;
1365 /* Group case labels so that we get the right results from the heuristics
1366 that decide on the code generation approach for this switch. */
1367 group_case_labels_stmt (swtch);
1369 /* If this switch is now a degenerate case with only a default label,
1370 there is nothing left for us to do. */
1371 if (gimple_switch_num_labels (swtch) < 2)
1372 return "switch is a degenerate case";
1374 collect_switch_conv_info (swtch, &info);
1376 /* No error markers should reach here (they should be filtered out
1377 during gimplification). */
1378 gcc_checking_assert (TREE_TYPE (info.index_expr) != error_mark_node);
1380 /* A switch on a constant should have been optimized in tree-cfg-cleanup. */
1381 gcc_checking_assert (! TREE_CONSTANT (info.index_expr));
1383 if (info.uniq <= MAX_CASE_BIT_TESTS)
1385 if (expand_switch_using_bit_tests_p (info.range_size,
1386 info.uniq, info.count,
1387 optimize_bb_for_speed_p
1388 (gimple_bb (swtch))))
1390 if (dump_file)
1391 fputs (" expanding as bit test is preferable\n", dump_file);
1392 emit_case_bit_tests (swtch, info.index_expr, info.range_min,
1393 info.range_size, info.range_max);
1394 loops_state_set (LOOPS_NEED_FIXUP);
1395 return NULL;
1398 if (info.uniq <= 2)
1399 /* This will be expanded as a decision tree in stmt.c:expand_case. */
1400 return " expanding as jumps is preferable";
1403 /* If there is no common successor, we cannot do the transformation. */
1404 if (! info.final_bb)
1405 return "no common successor to all case label target blocks found";
1407 /* Check the case label values are within reasonable range: */
1408 if (!check_range (&info))
1410 gcc_assert (info.reason);
1411 return info.reason;
1414 /* For all the cases, see whether they are empty, the assignments they
1415 represent constant and so on... */
1416 if (! check_all_empty_except_final (&info))
1418 gcc_assert (info.reason);
1419 return info.reason;
1421 if (!check_final_bb (&info))
1423 gcc_assert (info.reason);
1424 return info.reason;
1427 /* At this point all checks have passed and we can proceed with the
1428 transformation. */
1430 create_temp_arrays (&info);
1431 gather_default_values (gimple_switch_default_label (swtch), &info);
1432 build_constructors (swtch, &info);
1434 build_arrays (swtch, &info); /* Build the static arrays and assignments. */
1435 gen_inbound_check (swtch, &info); /* Build the bounds check. */
1437 /* Cleanup: */
1438 free_temp_arrays (&info);
1439 return NULL;
1442 /* The main function of the pass scans statements for switches and invokes
1443 process_switch on them. */
1445 namespace {
1447 const pass_data pass_data_convert_switch =
1449 GIMPLE_PASS, /* type */
1450 "switchconv", /* name */
1451 OPTGROUP_NONE, /* optinfo_flags */
1452 TV_TREE_SWITCH_CONVERSION, /* tv_id */
1453 ( PROP_cfg | PROP_ssa ), /* properties_required */
1454 0, /* properties_provided */
1455 0, /* properties_destroyed */
1456 0, /* todo_flags_start */
1457 TODO_update_ssa, /* todo_flags_finish */
1460 class pass_convert_switch : public gimple_opt_pass
1462 public:
1463 pass_convert_switch (gcc::context *ctxt)
1464 : gimple_opt_pass (pass_data_convert_switch, ctxt)
1467 /* opt_pass methods: */
1468 virtual bool gate (function *) { return flag_tree_switch_conversion != 0; }
1469 virtual unsigned int execute (function *);
1471 }; // class pass_convert_switch
1473 unsigned int
1474 pass_convert_switch::execute (function *fun)
1476 basic_block bb;
1478 FOR_EACH_BB_FN (bb, fun)
1480 const char *failure_reason;
1481 gimple stmt = last_stmt (bb);
1482 if (stmt && gimple_code (stmt) == GIMPLE_SWITCH)
1484 if (dump_file)
1486 expanded_location loc = expand_location (gimple_location (stmt));
1488 fprintf (dump_file, "beginning to process the following "
1489 "SWITCH statement (%s:%d) : ------- \n",
1490 loc.file, loc.line);
1491 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1492 putc ('\n', dump_file);
1495 failure_reason = process_switch (stmt);
1496 if (! failure_reason)
1498 if (dump_file)
1500 fputs ("Switch converted\n", dump_file);
1501 fputs ("--------------------------------\n", dump_file);
1504 /* Make no effort to update the post-dominator tree. It is actually not
1505 that hard for the transformations we have performed, but it is not
1506 supported by iterate_fix_dominators. */
1507 free_dominance_info (CDI_POST_DOMINATORS);
1509 else
1511 if (dump_file)
1513 fputs ("Bailing out - ", dump_file);
1514 fputs (failure_reason, dump_file);
1515 fputs ("\n--------------------------------\n", dump_file);
1521 return 0;
1524 } // anon namespace
1526 gimple_opt_pass *
1527 make_pass_convert_switch (gcc::context *ctxt)
1529 return new pass_convert_switch (ctxt);