LCOV - code coverage report
Current view: top level - gcc - tree-switch-conversion.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 96.8 % 1425 1379
Test Date: 2026-05-30 15:37:04 Functions: 95.0 % 60 57
Legend: Lines:     hit not hit

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

Generated by: LCOV version 2.4-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.