LCOV - code coverage report
Current view: top level - gcc - gimple-range-fold.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 87.0 % 814 708
Test Date: 2026-06-20 15:32:29 Functions: 75.0 % 52 39
Legend: Lines:     hit not hit

            Line data    Source code
       1              : /* Code for GIMPLE range related routines.
       2              :    Copyright (C) 2019-2026 Free Software Foundation, Inc.
       3              :    Contributed by Andrew MacLeod <amacleod@redhat.com>
       4              :    and Aldy Hernandez <aldyh@redhat.com>.
       5              : 
       6              : This file is part of GCC.
       7              : 
       8              : GCC is free software; you can redistribute it and/or modify
       9              : it under the terms of the GNU General Public License as published by
      10              : the Free Software Foundation; either version 3, or (at your option)
      11              : any later version.
      12              : 
      13              : GCC is distributed in the hope that it will be useful,
      14              : but WITHOUT ANY WARRANTY; without even the implied warranty of
      15              : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      16              : GNU General Public License for more details.
      17              : 
      18              : You should have received a copy of the GNU General Public License
      19              : along with GCC; see the file COPYING3.  If not see
      20              : <http://www.gnu.org/licenses/>.  */
      21              : 
      22              : #include "config.h"
      23              : #include "system.h"
      24              : #include "coretypes.h"
      25              : #include "backend.h"
      26              : #include "insn-codes.h"
      27              : #include "tree.h"
      28              : #include "gimple.h"
      29              : #include "ssa.h"
      30              : #include "gimple-pretty-print.h"
      31              : #include "optabs-tree.h"
      32              : #include "gimple-iterator.h"
      33              : #include "gimple-fold.h"
      34              : #include "wide-int.h"
      35              : #include "fold-const.h"
      36              : #include "case-cfn-macros.h"
      37              : #include "omp-general.h"
      38              : #include "cfgloop.h"
      39              : #include "tree-ssa-loop.h"
      40              : #include "tree-scalar-evolution.h"
      41              : #include "langhooks.h"
      42              : #include "vr-values.h"
      43              : #include "range.h"
      44              : #include "value-query.h"
      45              : #include "gimple-range-op.h"
      46              : #include "gimple-range.h"
      47              : #include "cgraph.h"
      48              : #include "alloc-pool.h"
      49              : #include "symbol-summary.h"
      50              : #include "ipa-utils.h"
      51              : #include "sreal.h"
      52              : #include "ipa-cp.h"
      53              : #include "ipa-prop.h"
      54              : #include "rtl.h"
      55              : // Construct a fur_source, and set the m_query field.
      56              : 
      57    472587202 : fur_source::fur_source (range_query *q)
      58              : {
      59    472587202 :   if (q)
      60    472586237 :     m_query = q;
      61              :   else
      62         1930 :     m_query = get_range_query (cfun);
      63    472587202 :   m_depend_p = false;
      64    472587202 : }
      65              : 
      66              : // Invoke range_of_expr on EXPR.
      67              : 
      68              : bool
      69            0 : fur_source::get_operand (vrange &r, tree expr)
      70              : {
      71            0 :   return m_query->range_of_expr (r, expr);
      72              : }
      73              : 
      74              : // Evaluate EXPR for this stmt as a PHI argument on edge E.  Use the current
      75              : // range_query to get the range on the edge.
      76              : 
      77              : bool
      78            0 : fur_source::get_phi_operand (vrange &r, tree expr, edge e)
      79              : {
      80            0 :   return m_query->range_on_edge (r, e, expr);
      81              : }
      82              : 
      83              : // Default is no relation.
      84              : 
      85              : relation_kind
      86      5427999 : fur_source::query_relation (tree op1 ATTRIBUTE_UNUSED,
      87              :                             tree op2 ATTRIBUTE_UNUSED)
      88              : {
      89      5427999 :   return VREL_VARYING;
      90              : }
      91              : 
      92              : // Default registers nothing and returns false meaning nothing changed.
      93              : 
      94              : bool
      95     24473072 : fur_source::register_relation (gimple *s ATTRIBUTE_UNUSED,
      96              :                                relation_kind k ATTRIBUTE_UNUSED,
      97              :                                tree op1 ATTRIBUTE_UNUSED,
      98              :                                tree op2 ATTRIBUTE_UNUSED)
      99              : {
     100     24473072 :   return false;
     101              : }
     102              : 
     103              : // Default registers nothing and returns false meaning nothing changed.
     104              : 
     105              : bool
     106      5919124 : fur_source::register_relation (edge e ATTRIBUTE_UNUSED,
     107              :                                relation_kind k ATTRIBUTE_UNUSED,
     108              :                                tree op1 ATTRIBUTE_UNUSED,
     109              :                                tree op2 ATTRIBUTE_UNUSED)
     110              : {
     111      5919124 :   return false;
     112              : }
     113              : 
     114              : // Get the value of EXPR on edge m_edge.
     115              : 
     116              : bool
     117     65953116 : fur_edge::get_operand (vrange &r, tree expr)
     118              : {
     119     65953116 :   return m_query->range_on_edge (r, m_edge, expr);
     120              : }
     121              : 
     122              : // Evaluate EXPR for this stmt as a PHI argument on edge E.  Use the current
     123              : // range_query to get the range on the edge.
     124              : 
     125              : bool
     126            0 : fur_edge::get_phi_operand (vrange &r, tree expr, edge e)
     127              : {
     128              :   // Edge to edge recalculations not supported yet, until we sort it out.
     129            0 :   gcc_checking_assert (e == m_edge);
     130            0 :   return m_query->range_on_edge (r, e, expr);
     131              : }
     132              : 
     133              : // Instantiate a stmt based fur_source.
     134              : 
     135    410356371 : fur_stmt::fur_stmt (gimple *s, range_query *q) : fur_source (q)
     136              : {
     137    410356371 :   m_stmt = s;
     138    410356371 : }
     139              : 
     140              : // Retrieve range of EXPR as it occurs as a use on stmt M_STMT.
     141              : 
     142              : bool
     143    538559829 : fur_stmt::get_operand (vrange &r, tree expr)
     144              : {
     145    538559829 :   return m_query->range_of_expr (r, expr, m_stmt);
     146              : }
     147              : 
     148              : // Evaluate EXPR for this stmt as a PHI argument on edge E.  Use the current
     149              : // range_query to get the range on the edge.
     150              : 
     151              : bool
     152     54167391 : fur_stmt::get_phi_operand (vrange &r, tree expr, edge e)
     153              : {
     154              :   // Pick up the range of expr from edge E.
     155     54167391 :   fur_edge e_src (e, m_query);
     156     54167391 :   return e_src.get_operand (r, expr);
     157              : }
     158              : 
     159              : // Return relation based from m_stmt.
     160              : 
     161              : relation_kind
     162    105381828 : fur_stmt::query_relation (tree op1, tree op2)
     163              : {
     164    105381828 :   return m_query->relation ().query (m_stmt, op1, op2);
     165              : }
     166              : 
     167              : // Instantiate a stmt based fur_source with a GORI object and a ranger cache.
     168              : 
     169    230500904 : fur_depend::fur_depend (gimple *s, range_query *q, ranger_cache *c)
     170    230500904 :   : fur_stmt (s, q), m_cache (c)
     171              : {
     172    230500904 :   m_depend_p = true;
     173    230500904 : }
     174              : 
     175              : // Register a relation on a stmt if there is an oracle.  Return false if
     176              : // no new relation is registered.
     177              : 
     178              : bool
     179     32496931 : fur_depend::register_relation (gimple *s, relation_kind k, tree op1, tree op2)
     180              : {
     181     32496931 :   if (!m_query->relation ().record (s, k, op1, op2))
     182              :     return false;
     183              : 
     184              :   // This new relation could cause different calculations, so mark the operands
     185              :   // with a new timestamp, forcing recalculations.
     186     23970852 :   if (m_cache)
     187              :     {
     188     23970820 :       m_cache->update_consumers (op1);
     189     23970820 :       m_cache->update_consumers (op2);
     190              :     }
     191              :   return true;
     192              : }
     193              : 
     194              : // Register a relation on an edge if there is an oracle.  Return false if
     195              : // no new relation is registered.
     196              : 
     197              : bool
     198      6447719 : fur_depend::register_relation (edge e, relation_kind k, tree op1, tree op2)
     199              : {
     200      6447719 :   if (!m_query->relation ().record (e, k, op1, op2))
     201              :     return false;
     202              : 
     203              :   // This new relation could cause different calculations, so mark the operands
     204              :   // with a new timestamp, forcing recalculations.
     205      6431328 :   if (m_cache)
     206              :     {
     207      6431326 :       m_cache->update_consumers (op1);
     208      6431326 :       m_cache->update_consumers (op2);
     209              :     }
     210              :   return true;
     211              : }
     212              : 
     213              : // This version of fur_source will pick a range up from a list of ranges
     214              : // supplied by the caller.
     215              : 
     216              : class fur_list : public fur_source
     217              : {
     218              : public:
     219              :   fur_list (vrange &r1, range_query *q = NULL);
     220              :   fur_list (vrange &r1, vrange &r2, range_query *q = NULL);
     221              :   fur_list (unsigned num, vrange **list, range_query *q = NULL);
     222              :   virtual bool get_operand (vrange &r, tree expr) override;
     223              :   virtual bool get_phi_operand (vrange &r, tree expr, edge e) override;
     224              : private:
     225              :   vrange *m_local[2];
     226              :   vrange **m_list;
     227              :   unsigned m_index;
     228              :   unsigned m_limit;
     229              : };
     230              : 
     231              : // One range supplied for unary operations.
     232              : 
     233       856658 : fur_list::fur_list (vrange &r1, range_query *q) : fur_source (q)
     234              : {
     235       856658 :   m_list = m_local;
     236       856658 :   m_index = 0;
     237       856658 :   m_limit = 1;
     238       856658 :   m_local[0] = &r1;
     239       856658 : }
     240              : 
     241              : // Two ranges supplied for binary operations.
     242              : 
     243            0 : fur_list::fur_list (vrange &r1, vrange &r2, range_query *q) : fur_source (q)
     244              : {
     245            0 :   m_list = m_local;
     246            0 :   m_index = 0;
     247            0 :   m_limit = 2;
     248            0 :   m_local[0] = &r1;
     249            0 :   m_local[1] = &r2;
     250            0 : }
     251              : 
     252              : // Arbitrary number of ranges in a vector.
     253              : 
     254            0 : fur_list::fur_list (unsigned num, vrange **list, range_query *q)
     255            0 :   : fur_source (q)
     256              : {
     257            0 :   m_list = list;
     258            0 :   m_index = 0;
     259            0 :   m_limit = num;
     260            0 : }
     261              : 
     262              : // Get the next operand from the vector, ensure types are compatible.
     263              : 
     264              : bool
     265      1705720 : fur_list::get_operand (vrange &r, tree expr)
     266              : {
     267              :   // Do not use the vector for non-ssa-names, or if it has been emptied.
     268      1705720 :   if (TREE_CODE (expr) != SSA_NAME || m_index >= m_limit)
     269       849062 :     return m_query->range_of_expr (r, expr);
     270       856658 :   r = *m_list[m_index++];
     271       856658 :   gcc_checking_assert (range_compatible_p (TREE_TYPE (expr), r.type ()));
     272              :   return true;
     273              : }
     274              : 
     275              : // This will simply pick the next operand from the vector.
     276              : bool
     277            0 : fur_list::get_phi_operand (vrange &r, tree expr, edge e ATTRIBUTE_UNUSED)
     278              : {
     279            0 :   return get_operand (r, expr);
     280              : }
     281              : 
     282              : // Fold stmt S into range R using R1 as the first operand.
     283              : 
     284              : bool
     285       856658 : fold_range (vrange &r, gimple *s, vrange &r1, range_query *q)
     286              : {
     287       856658 :   fold_using_range f;
     288       856658 :   fur_list src (r1, q);
     289       856658 :   return f.fold_stmt (r, s, src);
     290              : }
     291              : 
     292              : // Fold stmt S into range R using R1  and R2 as the first two operands.
     293              : 
     294              : bool
     295            0 : fold_range (vrange &r, gimple *s, vrange &r1, vrange &r2, range_query *q)
     296              : {
     297            0 :   fold_using_range f;
     298            0 :   fur_list src (r1, r2, q);
     299            0 :   return f.fold_stmt (r, s, src);
     300              : }
     301              : 
     302              : // Fold stmt S into range R using NUM_ELEMENTS from VECTOR as the initial
     303              : // operands encountered.
     304              : 
     305              : bool
     306            0 : fold_range (vrange &r, gimple *s, unsigned num_elements, vrange **vector,
     307              :             range_query *q)
     308              : {
     309            0 :   fold_using_range f;
     310            0 :   fur_list src (num_elements, vector, q);
     311            0 :   return f.fold_stmt (r, s, src);
     312              : }
     313              : 
     314              : // Fold stmt S into range R using range query Q.
     315              : 
     316              : bool
     317     74895033 : fold_range (vrange &r, gimple *s, range_query *q)
     318              : {
     319     74895033 :   fold_using_range f;
     320     74895033 :   fur_stmt src (s, q);
     321     74895033 :   return f.fold_stmt (r, s, src);
     322              : }
     323              : 
     324              : // Recalculate stmt S into R using range query Q as if it were on edge ON_EDGE.
     325              : 
     326              : bool
     327      7206776 : fold_range (vrange &r, gimple *s, edge on_edge, range_query *q)
     328              : {
     329      7206776 :   fold_using_range f;
     330      7206776 :   fur_edge src (on_edge, q);
     331      7206776 :   return f.fold_stmt (r, s, src);
     332              : }
     333              : 
     334              : // Calculate op1 on statetemt S with LHS into range R using range query Q
     335              : // to resolve any other operands.
     336              : 
     337              : bool
     338            0 : op1_range (vrange &r, gimple *s, const vrange &lhs, range_query *q)
     339              : {
     340            0 :   gimple_range_op_handler handler (s);
     341            0 :   if (!handler)
     342              :     return false;
     343              : 
     344            0 :   fur_stmt src (s, q);
     345              : 
     346            0 :   tree op2_expr = handler.operand2 ();
     347            0 :   if (!op2_expr)
     348            0 :     return handler.calc_op1 (r, lhs);
     349              : 
     350            0 :   value_range op2 (TREE_TYPE (op2_expr));
     351            0 :   if (!src.get_operand (op2, op2_expr))
     352              :     return false;
     353              : 
     354            0 :   return handler.calc_op1 (r, lhs, op2);
     355            0 : }
     356              : 
     357              : // Calculate op1 on statetemt S into range R using range query Q.
     358              : // LHS is set to VARYING in this case.
     359              : 
     360              : bool
     361            0 : op1_range (vrange &r, gimple *s, range_query *q)
     362              : {
     363            0 :   tree lhs_type = gimple_range_type (s);
     364            0 :   if (!lhs_type)
     365              :     return false;
     366            0 :   value_range lhs_range;
     367            0 :   lhs_range.set_varying (lhs_type);
     368            0 :   return op1_range (r, s, lhs_range, q);
     369            0 : }
     370              : 
     371              : // Calculate op2 on statetemt S with LHS into range R using range query Q
     372              : // to resolve any other operands.
     373              : 
     374              : bool
     375            0 : op2_range (vrange &r, gimple *s, const vrange &lhs, range_query *q)
     376              : {
     377              : 
     378            0 :   gimple_range_op_handler handler (s);
     379            0 :   if (!handler)
     380              :     return false;
     381              : 
     382            0 :   fur_stmt src (s, q);
     383              : 
     384            0 :   value_range op1 (TREE_TYPE (handler.operand1 ()));
     385            0 :   if (!src.get_operand (op1, handler.operand1 ()))
     386              :     return false;
     387              : 
     388            0 :   return handler.calc_op2 (r, lhs, op1);
     389            0 : }
     390              : 
     391              : // Calculate op2 on statetemt S into range R using range query Q.
     392              : // LHS is set to VARYING in this case.
     393              : 
     394              : bool
     395            0 : op2_range (vrange &r, gimple *s, range_query *q)
     396              : {
     397            0 :   tree lhs_type = gimple_range_type (s);
     398            0 :   if (!lhs_type)
     399              :     return false;
     400            0 :   value_range lhs_range;
     401            0 :   lhs_range.set_varying (lhs_type);
     402            0 :   return op2_range (r, s, lhs_range, q);
     403            0 : }
     404              : 
     405              : // Provide a fur_source which can be used to determine any relations on
     406              : // a statement.  It manages the callback from fold_using_ranges to determine
     407              : // a relation_trio for a statement.
     408              : 
     409              : class fur_relation : public fur_stmt
     410              : {
     411              : public:
     412              :   fur_relation (gimple *s, range_query *q = NULL);
     413              :   virtual bool register_relation (gimple *stmt, relation_kind k, tree op1,
     414              :                                   tree op2);
     415              :   virtual bool register_relation (edge e, relation_kind k, tree op1,
     416              :                                   tree op2);
     417              :   relation_trio trio() const;
     418              : private:
     419              :   relation_kind def_op1, def_op2, op1_op2;
     420              : };
     421              : 
     422      1071946 : fur_relation::fur_relation (gimple *s, range_query *q) : fur_stmt (s, q)
     423              : {
     424      1071946 :   def_op1 = def_op2 = op1_op2 = VREL_VARYING;
     425      1071946 : }
     426              : 
     427              : // Construct a trio from what is known.
     428              : 
     429              : relation_trio
     430      1071946 : fur_relation::trio () const
     431              : {
     432      1071946 :   return relation_trio (def_op1, def_op2, op1_op2);
     433              : }
     434              : 
     435              : // Don't support edges, but avoid a compiler warning by providing the routine.
     436              : // Return false indicating nothing has changed.
     437              : 
     438              : bool
     439            0 : fur_relation::register_relation (edge, relation_kind, tree, tree)
     440              : {
     441            0 :   return false;
     442              : }
     443              : 
     444              : // Register relation K between OP1 and OP2 on STMT.  Return false if there
     445              : // is no relation.
     446              : 
     447              : bool
     448      1054016 : fur_relation::register_relation (gimple *stmt, relation_kind k, tree op1,
     449              :                                  tree op2)
     450              : {
     451      1054016 :   tree lhs = gimple_get_lhs (stmt);
     452      1054016 :   tree a1 = NULL_TREE;
     453      1054016 :   tree a2 = NULL_TREE;
     454      1054016 :   switch (gimple_code (stmt))
     455              :     {
     456            0 :       case GIMPLE_COND:
     457            0 :         a1 = gimple_cond_lhs (stmt);
     458            0 :         a2 = gimple_cond_rhs (stmt);
     459            0 :         break;
     460      1054016 :       case GIMPLE_ASSIGN:
     461      1054016 :         a1 = gimple_assign_rhs1 (stmt);
     462      1054016 :         if (gimple_num_ops (stmt) >= 3)
     463      1054016 :           a2 = gimple_assign_rhs2 (stmt);
     464              :         break;
     465              :       default:
     466              :         break;
     467              :     }
     468              :   // STMT is of the form LHS = A1 op A2, now map the relation to these
     469              :   // operands, if possible.
     470      1054016 :   if (op1 == lhs)
     471              :     {
     472      1054016 :       if (op2 == a1)
     473      1054016 :         def_op1 = k;
     474            0 :       else if (op2 == a2)
     475            0 :         def_op2 = k;
     476              :     }
     477            0 :   else if (op2 == lhs)
     478              :     {
     479            0 :       if (op1 == a1)
     480            0 :         def_op1 = relation_swap (k);
     481            0 :       else if (op1 == a2)
     482            0 :         def_op2 = relation_swap (k);
     483              :     }
     484              :   else
     485              :     {
     486            0 :       if (op1 == a1 && op2 == a2)
     487            0 :         op1_op2 = k;
     488            0 :       else if (op2 == a1 && op1 == a2)
     489            0 :         op1_op2 = relation_swap (k);
     490              :     }
     491            0 :   return def_op1 == VREL_VARYING && def_op2 == VREL_VARYING
     492      1054016 :          && op1_op2 == VREL_VARYING;
     493              : }
     494              : 
     495              : // Return the relation trio for stmt S using query Q.
     496              : 
     497              : relation_trio
     498      1071946 : fold_relations (gimple *s, range_query *q)
     499              : {
     500      1071946 :   fold_using_range f;
     501      1071946 :   fur_relation src (s, q);
     502      1071946 :   tree lhs = gimple_range_ssa_p (gimple_get_lhs (s));
     503      1071946 :   if (lhs)
     504              :     {
     505      1071946 :       value_range vr(TREE_TYPE (lhs));
     506      1071946 :       if (f.fold_stmt (vr, s, src))
     507      1071946 :         return src.trio ();
     508      1071946 :     }
     509            0 :   return TRIO_VARYING;
     510              : }
     511              : 
     512              : // -------------------------------------------------------------------------
     513              : 
     514              : // Adjust the range for a pointer difference where the operands came
     515              : // from a memchr.
     516              : //
     517              : // This notices the following sequence:
     518              : //
     519              : //      def = __builtin_memchr (arg, 0, sz)
     520              : //      n = def - arg
     521              : //
     522              : // The range for N can be narrowed to [0, PTRDIFF_MAX - 1].
     523              : 
     524              : static void
     525      2584431 : adjust_pointer_diff_expr (irange &res, const gimple *diff_stmt)
     526              : {
     527      2584431 :   tree op0 = gimple_assign_rhs1 (diff_stmt);
     528      2584431 :   tree op1 = gimple_assign_rhs2 (diff_stmt);
     529      2584431 :   tree op0_ptype = TREE_TYPE (TREE_TYPE (op0));
     530      2584431 :   tree op1_ptype = TREE_TYPE (TREE_TYPE (op1));
     531      2584431 :   gimple *call;
     532              : 
     533      2584431 :   if (TREE_CODE (op0) == SSA_NAME
     534      2558456 :       && TREE_CODE (op1) == SSA_NAME
     535      2514226 :       && (call = SSA_NAME_DEF_STMT (op0))
     536      2514226 :       && is_gimple_call (call)
     537        73370 :       && gimple_call_builtin_p (call, BUILT_IN_MEMCHR)
     538        55002 :       && TYPE_MODE (op0_ptype) == TYPE_MODE (char_type_node)
     539        54757 :       && TYPE_PRECISION (op0_ptype) == TYPE_PRECISION (char_type_node)
     540        54757 :       && TYPE_MODE (op1_ptype) == TYPE_MODE (char_type_node)
     541        54199 :       && TYPE_PRECISION (op1_ptype) == TYPE_PRECISION (char_type_node)
     542        54199 :       && gimple_call_builtin_p (call, BUILT_IN_MEMCHR)
     543        54199 :       && vrp_operand_equal_p (op1, gimple_call_arg (call, 0))
     544      2620801 :       && integer_zerop (gimple_call_arg (call, 1)))
     545              :     {
     546           26 :       wide_int maxm1 = irange_val_max (ptrdiff_type_node) - 1;
     547           26 :       res.intersect (int_range<2> (ptrdiff_type_node,
     548           52 :                                    wi::zero (TYPE_PRECISION (ptrdiff_type_node)),
     549           26 :                                    maxm1));
     550           26 :     }
     551      2584431 : }
     552              : 
     553              : // Adjust the range for an IMAGPART_EXPR.
     554              : 
     555              : static void
     556       655261 : adjust_imagpart_expr (vrange &res, const gimple *stmt)
     557              : {
     558       655261 :   tree name = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
     559              : 
     560       655261 :   if (TREE_CODE (name) != SSA_NAME || !SSA_NAME_DEF_STMT (name))
     561              :     return;
     562              : 
     563       528276 :   gimple *def_stmt = SSA_NAME_DEF_STMT (name);
     564       528276 :   if (is_gimple_call (def_stmt) && gimple_call_internal_p (def_stmt))
     565              :     {
     566       399390 :       switch (gimple_call_internal_fn (def_stmt))
     567              :         {
     568       381809 :         case IFN_ADD_OVERFLOW:
     569       381809 :         case IFN_SUB_OVERFLOW:
     570       381809 :         case IFN_MUL_OVERFLOW:
     571       381809 :         case IFN_UADDC:
     572       381809 :         case IFN_USUBC:
     573       381809 :         case IFN_ATOMIC_COMPARE_EXCHANGE:
     574       381809 :           {
     575       381809 :             int_range<2> r;
     576       381809 :             r.set_varying (boolean_type_node);
     577       381809 :             tree type = TREE_TYPE (gimple_assign_lhs (stmt));
     578       381809 :             range_cast (r, type);
     579       381809 :             res.intersect (r);
     580       381809 :           }
     581       399390 :         default:
     582       399390 :           break;
     583              :         }
     584       399390 :       return;
     585              :     }
     586       128886 :   if (is_gimple_assign (def_stmt)
     587       128886 :       && gimple_assign_rhs_code (def_stmt) == COMPLEX_CST)
     588              :     {
     589           15 :       tree cst = gimple_assign_rhs1 (def_stmt);
     590           15 :       if (TREE_CODE (cst) == COMPLEX_CST
     591           15 :           && TREE_CODE (TREE_TYPE (TREE_TYPE (cst))) == INTEGER_TYPE)
     592              :         {
     593            4 :           wide_int w = wi::to_wide (TREE_IMAGPART (cst));
     594            4 :           int_range<1> imag (TREE_TYPE (TREE_IMAGPART (cst)), w, w);
     595            4 :           res.intersect (imag);
     596            4 :         }
     597              :     }
     598              : }
     599              : 
     600              : // Adjust the range for a REALPART_EXPR.
     601              : 
     602              : static void
     603       634583 : adjust_realpart_expr (vrange &res, const gimple *stmt)
     604              : {
     605       634583 :   tree name = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
     606              : 
     607       634583 :   if (TREE_CODE (name) != SSA_NAME)
     608              :     return;
     609              : 
     610       499892 :   gimple *def_stmt = SSA_NAME_DEF_STMT (name);
     611       499892 :   if (!SSA_NAME_DEF_STMT (name))
     612              :     return;
     613              : 
     614       499892 :   if (is_gimple_assign (def_stmt)
     615       499892 :       && gimple_assign_rhs_code (def_stmt) == COMPLEX_CST)
     616              :     {
     617           10 :       tree cst = gimple_assign_rhs1 (def_stmt);
     618           10 :       if (TREE_CODE (cst) == COMPLEX_CST
     619           10 :           && TREE_CODE (TREE_TYPE (TREE_TYPE (cst))) == INTEGER_TYPE)
     620              :         {
     621            0 :           wide_int imag = wi::to_wide (TREE_REALPART (cst));
     622            0 :           int_range<2> tmp (TREE_TYPE (TREE_REALPART (cst)), imag, imag);
     623            0 :           res.intersect (tmp);
     624            0 :         }
     625              :     }
     626              : }
     627              : 
     628              : // This function looks for situations when walking the use/def chains
     629              : // may provide additional contextual range information not exposed on
     630              : // this statement.
     631              : 
     632              : static void
     633    182359705 : gimple_range_adjustment (vrange &res, const gimple *stmt)
     634              : {
     635    182359705 :   switch (gimple_expr_code (stmt))
     636              :     {
     637      2584431 :     case POINTER_DIFF_EXPR:
     638      2584431 :       adjust_pointer_diff_expr (as_a <irange> (res), stmt);
     639      2584431 :       return;
     640              : 
     641       655261 :     case IMAGPART_EXPR:
     642       655261 :       adjust_imagpart_expr (res, stmt);
     643       655261 :       return;
     644              : 
     645       634583 :     case REALPART_EXPR:
     646       634583 :       adjust_realpart_expr (res, stmt);
     647       634583 :       return;
     648              : 
     649              :     default:
     650              :       break;
     651              :     }
     652              : }
     653              : 
     654              : // Provide context to the gimple fold callback.
     655              : 
     656              : static struct
     657              : {
     658              :   gimple *m_stmt;
     659              :   range_query *m_query;
     660              : } x_fold_context;
     661              : 
     662              : // Gimple fold callback.
     663              : 
     664              : static tree
     665     56819279 : pta_valueize (tree name)
     666              : {
     667     56819279 :   tree ret
     668     56819279 :     = x_fold_context.m_query->value_of_expr (name, x_fold_context.m_stmt);
     669              : 
     670     56819279 :   return ret ? ret : name;
     671              : }
     672              : 
     673              : // Calculate a range for statement S and return it in R. If NAME is provided it
     674              : // represents the SSA_NAME on the LHS of the statement. It is only required
     675              : // if there is more than one lhs/output.  If a range cannot
     676              : // be calculated, return false.
     677              : 
     678              : bool
     679    292469669 : fold_using_range::fold_stmt (vrange &r, gimple *s, fur_source &src, tree name)
     680              : {
     681    292469669 :   bool res = false;
     682              :   // If name and S are specified, make sure it is an LHS of S.
     683    292469669 :   gcc_checking_assert (!name || !gimple_get_lhs (s) ||
     684              :                        name == gimple_get_lhs (s));
     685              : 
     686    155914646 :   if (!name)
     687    155914646 :     name = gimple_get_lhs (s);
     688              : 
     689              :   // Process addresses and loads from static constructors.
     690    292469669 :   if (gimple_code (s) == GIMPLE_ASSIGN && range_from_readonly_var (r, s))
     691              :     return true;
     692              : 
     693    292369173 :   gimple_range_op_handler handler (s);
     694    292369173 :   if (gimple_code (s) == GIMPLE_ASSIGN
     695    292369173 :       && gimple_assign_rhs_code (s) == ADDR_EXPR)
     696      3979751 :     res = range_of_address (as_a <prange> (r), s, src);
     697    288389422 :   else if (handler)
     698    182360811 :     res = range_of_range_op (r, handler, src);
     699    106028611 :   else if (is_a<gphi *>(s))
     700     26399813 :     res = range_of_phi (r, as_a<gphi *> (s), src);
     701     79628798 :   else if (is_a<gcall *>(s))
     702     12861693 :     res = range_of_call (r, as_a<gcall *> (s), src);
     703     66767105 :   else if (is_a<gassign *> (s) && gimple_assign_rhs_code (s) == COND_EXPR)
     704       151882 :     res = range_of_cond_expr (r, as_a<gassign *> (s), src);
     705              : 
     706              :   // If the result is varying, use the type's min/max if either is not
     707              :   // the same as the full precision min/max. This helps with strict enum
     708              :   // e.g. `g++.dg/warn/pr33738.C`.
     709    225753950 :   if (res && r.varying_p () && INTEGRAL_TYPE_P (r.type ()))
     710              :     {
     711    115184219 :       irange &ir = as_a <irange> (r);
     712    115184219 :       tree type = r.type ();
     713    115184219 :       auto typemax = wi::to_wide (TYPE_MAX_VALUE (type));
     714    115184219 :       auto typemin = wi::to_wide (TYPE_MIN_VALUE (type));
     715    115184219 :       auto precisionmax = wi::max_value (TYPE_PRECISION (type),
     716    230368438 :                                          TYPE_SIGN (type));
     717    115184219 :       auto precisionmin = wi::min_value (TYPE_PRECISION (type),
     718    230368438 :                                          TYPE_SIGN (type));
     719    230367727 :       if (typemax != precisionmax || typemin != precisionmin)
     720          711 :         ir.set (type, typemin, typemax);
     721    115185060 :     }
     722              : 
     723    292369173 :   if (!res)
     724              :     {
     725              :       // If no name specified or range is unsupported, bail.
     726     66615223 :       if (!name || !gimple_range_ssa_p (name))
     727        50247 :         return false;
     728              :       // We don't understand the stmt, so return the global range.
     729     66564976 :       gimple_range_global (r, name);
     730     66564976 :       return true;
     731              :     }
     732              : 
     733    225753950 :   if (r.undefined_p ())
     734              :     return true;
     735              : 
     736              :   // We sometimes get compatible types copied from operands, make sure
     737              :   // the correct type is being returned.
     738    225703229 :   if (name && TREE_TYPE (name) != r.type ())
     739              :     {
     740      3631925 :       gcc_checking_assert (range_compatible_p (r.type (), TREE_TYPE (name)));
     741      3631925 :       range_cast (r, TREE_TYPE (name));
     742              :     }
     743              : 
     744              :   // IF this is not a prange, we are done.
     745    225703229 :   if (!is_a <prange> (r))
     746              :     return true;
     747              : 
     748     25911831 :   prange &p = as_a <prange> (r);
     749              :   // Check to see if points_to should be set.
     750     25911831 :   if (p.pt_unknown_p () && name && gimple_code (s) == GIMPLE_ASSIGN)
     751              :     {
     752     15420931 :       tree rhs = gimple_assign_rhs1 (s);
     753     15420931 :       tree_code code = gimple_assign_rhs_code (s);
     754              :       // If code is SSA_NAME, any points to would already be copied.
     755     14270720 :       if (code != SSA_NAME && get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS
     756     19564666 :           && TREE_CODE (rhs) == ADDR_EXPR)
     757              :         {
     758      3977998 :           p.set_pt (rhs, true);
     759              :         }
     760              :       // PR 125854 - Do not attempt to invoke the fold machinery unless this
     761              :       // query is the same as the current query (which fold may invoke).
     762     22885866 :       else if (src.query () == get_range_query (cfun))
     763              :         {
     764              :           // If we couldn't find anything, try fold.
     765      6378905 :           x_fold_context = { s, src.query () };
     766      6378905 :           rhs = gimple_fold_stmt_to_constant_1 (s, pta_valueize, pta_valueize);
     767      6378905 :           if (rhs && TREE_CODE (rhs) == ADDR_EXPR)
     768              :             {
     769         4376 :               p.set_pt (rhs, true);
     770              :             }
     771              :         }
     772              :     }
     773              :   return true;
     774              : }
     775              : 
     776              : // Calculate a range for range_op statement S and return it in R.  If any
     777              : // If a range cannot be calculated, return false.
     778              : 
     779              : bool
     780    182360811 : fold_using_range::range_of_range_op (vrange &r,
     781              :                                      gimple_range_op_handler &handler,
     782              :                                      fur_source &src)
     783              : {
     784    182360811 :   gcc_checking_assert (handler);
     785    182360811 :   gimple *s = handler.stmt ();
     786    182360811 :   tree type = gimple_range_type (s);
     787    182360811 :   if (!type)
     788              :     return false;
     789              : 
     790    182360811 :   tree lhs = handler.lhs ();
     791    182360811 :   tree op1 = handler.operand1 ();
     792    182360811 :   tree op2 = handler.operand2 ();
     793              : 
     794              :   // Certain types of builtin functions may have no arguments.
     795    182360811 :   if (!op1)
     796              :     {
     797         1106 :       value_range r1 (type);
     798         1106 :       if (!handler.fold_range (r, type, r1, r1))
     799            0 :         r.set_varying (type);
     800         1106 :       return true;
     801         1106 :     }
     802              : 
     803    182359705 :   value_range range1 (TREE_TYPE (op1));
     804    182359705 :   value_range range2 (op2 ? TREE_TYPE (op2) : TREE_TYPE (op1));
     805              : 
     806    182359705 :   if (src.get_operand (range1, op1))
     807              :     {
     808    182359705 :       if (!op2)
     809              :         {
     810              :           // Fold range, and register any dependency if available.
     811     36462655 :           value_range r2 (type);
     812     36462655 :           r2.set_varying (type);
     813     36462655 :           if (!handler.fold_range (r, type, range1, r2))
     814       254962 :             r.set_varying (type);
     815     36462655 :           if (lhs && gimple_range_ssa_p (op1))
     816              :             {
     817     53684018 :               if (src.gori_ssa ())
     818     19957901 :                 src.gori_ssa ()->register_dependency (lhs, op1);
     819     33726086 :               relation_kind rel;
     820     33726086 :               rel = handler.lhs_op1_relation (r, range1, range1);
     821     33726086 :               if (rel != VREL_VARYING)
     822     24659947 :                 src.register_relation (s, rel, lhs, op1);
     823              :             }
     824     36462655 :         }
     825    145897050 :       else if (src.get_operand (range2, op2))
     826              :         {
     827    145897050 :           relation_kind rel = src.query_relation (op1, op2);
     828    145897050 :           if (dump_file && (dump_flags & TDF_DETAILS) && rel != VREL_VARYING)
     829              :             {
     830          143 :               fprintf (dump_file, " folding with relation ");
     831          143 :               print_generic_expr (dump_file, op1, TDF_SLIM);
     832          143 :               print_relation (dump_file, rel);
     833          143 :               print_generic_expr (dump_file, op2, TDF_SLIM);
     834          143 :               fputc ('\n', dump_file);
     835              :             }
     836              :           // Fold range, and register any dependency if available.
     837    145897050 :           if (!handler.fold_range (r, type, range1, range2,
     838              :                                    relation_trio::op1_op2 (rel)))
     839            0 :             r.set_varying (type);
     840    145897050 :           if (irange::supports_p (type))
     841    132715489 :             relation_fold_and_or (as_a <irange> (r), s, src, range1, range2);
     842    145897050 :           if (lhs)
     843              :             {
     844    150003769 :               if (src.gori_ssa ())
     845              :                 {
     846     58334226 :                   src.gori_ssa ()->register_dependency (lhs, op1);
     847    116668452 :                   src.gori_ssa ()->register_dependency (lhs, op2);
     848              :                 }
     849     91669484 :               if (gimple_range_ssa_p (op1))
     850              :                 {
     851     89092020 :                   relation_kind rel2 = handler.lhs_op1_relation (r, range1,
     852     89092020 :                                                                  range2, rel);
     853     89092020 :                   if (rel2 != VREL_VARYING)
     854     38248127 :                     src.register_relation (s, rel2, lhs, op1);
     855              :                 }
     856     91669484 :               if (gimple_range_ssa_p (op2))
     857              :                 {
     858     36770370 :                   relation_kind rel2 = handler.lhs_op2_relation (r, range1,
     859     36770370 :                                                                  range2, rel);
     860     36770370 :                   if (rel2 != VREL_VARYING)
     861      2474694 :                     src.register_relation (s, rel2, lhs, op2);
     862              :                 }
     863              :             }
     864              :           // Check for an existing BB, as we maybe asked to fold an
     865              :           // artificial statement not in the CFG.
     866     54227566 :           else if (is_a<gcond *> (s) && gimple_bb (s))
     867              :             {
     868     45840939 :               basic_block bb = gimple_bb (s);
     869     45840939 :               edge e0 = EDGE_SUCC (bb, 0);
     870              :               /* During RTL expansion one of the edges can be removed
     871              :                  if expansion proves the jump is unconditional.  */
     872     45840939 :               edge e1 = single_succ_p (bb) ? NULL : EDGE_SUCC (bb, 1);
     873              : 
     874     45840939 :               gcc_checking_assert (e1 || currently_expanding_to_rtl);
     875     45840939 :               if (!single_pred_p (e0->dest))
     876     11541501 :                 e0 = NULL;
     877     45840939 :               if (e1 && !single_pred_p (e1->dest))
     878              :                 e1 = NULL;
     879     45840939 :               src.register_outgoing_edges (as_a<gcond *> (s),
     880              :                                            as_a <irange> (r), e0, e1);
     881              :             }
     882              :         }
     883              :       else
     884            0 :         r.set_varying (type);
     885              :     }
     886              :   else
     887            0 :     r.set_varying (type);
     888              :   // Make certain range-op adjustments that aren't handled any other way.
     889    182359705 :   gimple_range_adjustment (r, s);
     890    182359705 :   return true;
     891    182359705 : }
     892              : 
     893              : // Calculate the range of an assignment containing an ADDR_EXPR.
     894              : // Return the range in R.
     895              : // If a range cannot be calculated, set it to VARYING and return true.
     896              : 
     897              : bool
     898      3979751 : fold_using_range::range_of_address (prange &r, gimple *stmt, fur_source &src)
     899              : {
     900      3979751 :   gcc_checking_assert (gimple_code (stmt) == GIMPLE_ASSIGN);
     901      3979751 :   gcc_checking_assert (gimple_assign_rhs_code (stmt) == ADDR_EXPR);
     902              : 
     903      3979751 :   tree expr = gimple_assign_rhs1 (stmt);
     904      3979751 :   poly_int64 bitsize, bitpos;
     905      3979751 :   tree offset;
     906      3979751 :   machine_mode mode;
     907      3979751 :   int unsignedp, reversep, volatilep;
     908      3979751 :   tree base = get_inner_reference (TREE_OPERAND (expr, 0), &bitsize,
     909              :                                    &bitpos, &offset, &mode, &unsignedp,
     910              :                                    &reversep, &volatilep);
     911              : 
     912              : 
     913      3979751 :   if (base != NULL_TREE
     914      3979751 :       && TREE_CODE (base) == MEM_REF
     915      7813404 :       && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
     916              :     {
     917      3833598 :       tree ssa = TREE_OPERAND (base, 0);
     918      3833598 :       tree lhs = gimple_get_lhs (stmt);
     919      6205129 :       if (lhs && gimple_range_ssa_p (ssa) && src.gori_ssa ())
     920      2371531 :         src.gori_ssa ()->register_dependency (lhs, ssa);
     921      3833598 :       src.get_operand (r, ssa);
     922      3833598 :       range_cast (r, TREE_TYPE (gimple_assign_rhs1 (stmt)));
     923              : 
     924      3833598 :       poly_offset_int off = 0;
     925      3833598 :       bool off_cst = false;
     926      3833598 :       if (offset == NULL_TREE || TREE_CODE (offset) == INTEGER_CST)
     927              :         {
     928      3752270 :           off = mem_ref_offset (base);
     929      3752270 :           if (offset)
     930           48 :             off += poly_offset_int::from (wi::to_poly_wide (offset),
     931           48 :                                           SIGNED);
     932      3752270 :           off <<= LOG2_BITS_PER_UNIT;
     933      3752270 :           off += bitpos;
     934              :           off_cst = true;
     935              :         }
     936              :       /* If &X->a is equal to X, the range of X is the result.  */
     937      3752270 :       if (off_cst && known_eq (off, 0))
     938      1387201 :         return true;
     939      2446397 :       else if (flag_delete_null_pointer_checks
     940      2446397 :                && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (expr)))
     941              :         {
     942              :           /* For -fdelete-null-pointer-checks -fno-wrapv-pointer we don't
     943              :              allow going from non-NULL pointer to NULL.  */
     944      2445012 :           if (r.undefined_p ()
     945      4890024 :               || !r.contains_p (wi::zero (TYPE_PRECISION (TREE_TYPE (expr)))))
     946              :             {
     947              :               /* We could here instead adjust r by off >> LOG2_BITS_PER_UNIT
     948              :                  using POINTER_PLUS_EXPR if off_cst and just fall back to
     949              :                  this.  */
     950      1791785 :               r.set_nonzero (TREE_TYPE (gimple_assign_rhs1 (stmt)));
     951      1791785 :               return true;
     952              :             }
     953              :         }
     954              :       /* If MEM_REF has a "positive" offset, consider it non-NULL
     955              :          always, for -fdelete-null-pointer-checks also "negative"
     956              :          ones.  Punt for unknown offsets (e.g. variable ones).  */
     957       654612 :       if (!TYPE_OVERFLOW_WRAPS (TREE_TYPE (expr))
     958       654402 :           && off_cst
     959       595381 :           && known_ne (off, 0)
     960      1249993 :           && (flag_delete_null_pointer_checks || known_gt (off, 0)))
     961              :         {
     962       595381 :           r.set_nonzero (TREE_TYPE (gimple_assign_rhs1 (stmt)));
     963       595381 :           return true;
     964              :         }
     965        59231 :       r.set_varying (TREE_TYPE (gimple_assign_rhs1 (stmt)));
     966        59231 :       return true;
     967              :     }
     968              : 
     969              :   // Handle "= &a".
     970       146153 :   if (tree_single_nonzero_p (expr))
     971              :     {
     972       144986 :       r.set_nonzero (TREE_TYPE (gimple_assign_rhs1 (stmt)));
     973       144986 :       return true;
     974              :     }
     975              : 
     976              :   // Otherwise return varying.
     977         1167 :   r.set_varying (TREE_TYPE (gimple_assign_rhs1 (stmt)));
     978         1167 :   return true;
     979              : }
     980              : 
     981              : /* If TYPE is a pointer, return false.  Otherwise, add zero of TYPE (which must
     982              :    be an integer) to R and return true.  */
     983              : 
     984              : static bool
     985         1196 : range_from_missing_constructor_part (vrange &r, tree type)
     986              : {
     987         1196 :   if (POINTER_TYPE_P (type))
     988              :     return false;
     989         1047 :   gcc_checking_assert (irange::supports_p (type));
     990         1047 :   wide_int zero = wi::zero (TYPE_PRECISION (type));
     991         1047 :   r.union_ (int_range<1> (type, zero, zero));
     992         1047 :   return true;
     993         1047 : }
     994              : 
     995              : // One step of fold_using_range::range_from_readonly_var.  Process expressions
     996              : // in COMPS which together load a value of TYPE, from index I to 0 according to
     997              : // the corresponding static initializer in CST which should be either a scalar
     998              : // invariant or a constructor.  Currently TYPE must be either a pointer or an
     999              : // integer.  If TYPE is a pointer, return true if all potentially loaded values
    1000              : // are known not to be zero and false if any of them can be zero.  Otherwise
    1001              : // return true if it is possible to add all constants which can be loaded from
    1002              : // CST (which must be storable to TYPE) to R and do so.
    1003              : // TODO: Add support for franges.
    1004              : 
    1005              : static bool
    1006       768965 : range_from_readonly_load (vrange &r, tree type, tree cst,
    1007              :                           const vec <tree> &comps, unsigned i)
    1008              : {
    1009       780292 :   if (i == 0)
    1010              :     {
    1011       663488 :       if (!useless_type_conversion_p (type, TREE_TYPE (cst)))
    1012              :         return false;
    1013              : 
    1014       663488 :       if (POINTER_TYPE_P (type))
    1015              :         {
    1016       147174 :           return tree_single_nonzero_p (cst);
    1017              :         }
    1018              : 
    1019       516314 :       if (TREE_CODE (cst) != INTEGER_CST)
    1020              :         return false;
    1021              : 
    1022       516243 :       wide_int wi_cst = wi::to_wide (cst);
    1023       516243 :       r.union_ (int_range<1> (type, wi_cst, wi_cst));
    1024       516243 :       return true;
    1025       516243 :     }
    1026              :   /* TODO: Perhaps handle RAW_DATA_CST too.  */
    1027       116804 :   if (TREE_CODE (cst) != CONSTRUCTOR)
    1028              :     return false;
    1029              : 
    1030       116057 :   i--;
    1031       116057 :   tree expr = comps[i];
    1032       116057 :   unsigned ix;
    1033       116057 :   tree index, val;
    1034              : 
    1035       116057 :   if (TREE_CODE (expr) == COMPONENT_REF)
    1036              :     {
    1037        11374 :       tree ref_fld = TREE_OPERAND (expr, 1);
    1038        18378 :       FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (cst), ix, index, val)
    1039              :         {
    1040        18331 :           if (index != ref_fld)
    1041         7004 :             continue;
    1042              :           return range_from_readonly_load (r, type, val, comps, i);
    1043              :         }
    1044           47 :       if (TREE_CODE (TREE_TYPE (cst)) == RECORD_TYPE)
    1045            7 :         return range_from_missing_constructor_part (r, type);
    1046              :       else
    1047              :         /* Missing constructor of a union field just isn't like other missing
    1048              :            constructor parts.  */
    1049              :         return false;
    1050              :     }
    1051              : 
    1052       104683 :   gcc_assert (TREE_CODE (expr) == ARRAY_REF);
    1053       104683 :   tree op1 = TREE_OPERAND (expr, 1);
    1054              : 
    1055       104683 :   if (TREE_CODE (op1) == INTEGER_CST)
    1056              :     {
    1057         3320 :       unsigned ctor_idx;
    1058         3320 :       val = get_array_ctor_element_at_index (cst, wi::to_offset (op1),
    1059              :                                              &ctor_idx);
    1060         3320 :       if (!val)
    1061              :         {
    1062           96 :           if (ctor_idx < CONSTRUCTOR_NELTS (cst))
    1063              :             return false;
    1064           96 :           return range_from_missing_constructor_part (r, type);
    1065              :         }
    1066         3224 :       return range_from_readonly_load (r, type, val, comps, i);
    1067              :     }
    1068              : 
    1069       101363 :   tree arr_type = TREE_TYPE (cst);
    1070       101363 :   tree domain = TYPE_DOMAIN (arr_type);
    1071       101363 :   if (!TYPE_MIN_VALUE (domain)
    1072       101363 :       || !TYPE_MAX_VALUE (domain)
    1073       101363 :       || !tree_fits_uhwi_p (TYPE_MIN_VALUE (domain))
    1074       202726 :       || !tree_fits_uhwi_p (TYPE_MAX_VALUE (domain)))
    1075              :     return false;
    1076       101288 :   unsigned HOST_WIDE_INT needed_count
    1077       101288 :     = (tree_to_uhwi (TYPE_MAX_VALUE (domain))
    1078       101288 :        - tree_to_uhwi (TYPE_MIN_VALUE (domain)) + 1);
    1079       202516 :   if (CONSTRUCTOR_NELTS (cst) < needed_count)
    1080              :     {
    1081         1093 :       if (!range_from_missing_constructor_part (r, type))
    1082              :         return false;
    1083              :     }
    1084              : 
    1085       764327 :   FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (cst), ix, index, val)
    1086              :     {
    1087              :       /* TODO: If the array index in the expr is an SSA_NAME with a known
    1088              :          range, we could use just values loaded from the corresponding array
    1089              :          elements.  */
    1090       664065 :       if (!range_from_readonly_load (r, type, val, comps, i))
    1091              :         return false;
    1092              :     }
    1093              : 
    1094              :   return true;
    1095              : }
    1096              : 
    1097              : // Attempt to calculate the range of value loaded by STMT (which must be an
    1098              : // assignment) if it is a load from a read-only aggregate variable.  If
    1099              : // successful, return true and set the discovered range in R.  Otherwise return
    1100              : // false and leave R untouched.
    1101              : 
    1102              : bool
    1103    187531239 : fold_using_range::range_from_readonly_var (vrange &r, gimple *stmt)
    1104              : {
    1105    187531239 :   gcc_checking_assert (gimple_code (stmt) == GIMPLE_ASSIGN);
    1106    187531239 :   tree type = TREE_TYPE (gimple_assign_lhs (stmt));
    1107              :   /* TODO: Add support for frange.  */
    1108    187531239 :   if (!irange::supports_p (type)
    1109    187531239 :       && !prange::supports_p (type))
    1110              :     return false;
    1111              : 
    1112    177470320 :   unsigned HOST_WIDE_INT limit = param_vrp_cstload_limit;
    1113    177470320 :   if (!limit)
    1114              :     return false;
    1115              : 
    1116    177451086 :   tree t = gimple_assign_rhs1 (stmt);
    1117    177451086 :   if (!tree_fits_uhwi_p (TYPE_SIZE_UNIT (TREE_TYPE (t))))
    1118              :     return false;
    1119    177451086 :   limit *= tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (t)));
    1120              : 
    1121    177451086 :   unsigned count = 0;
    1122    177451086 :   while (TREE_CODE (t) == ARRAY_REF
    1123    225496724 :          || TREE_CODE (t) == COMPONENT_REF)
    1124              :     {
    1125     48045638 :       count++;
    1126     48045638 :       t = TREE_OPERAND (t, 0);
    1127              :     }
    1128    177451086 :   if (!count
    1129     31124993 :       || (TREE_CODE (t) != VAR_DECL
    1130     31124993 :           && TREE_CODE (t) != CONST_DECL))
    1131              :     return false;
    1132              : 
    1133      8829708 :   if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (t))
    1134      8829708 :       || tree_to_uhwi (DECL_SIZE_UNIT (t)) > limit)
    1135              :     return false;
    1136              : 
    1137              :   /* TODO: We perhaps should try to handle at least some cases when the
    1138              :      declaration is wrapped in a MEM_REF, but we need to be careful to look at
    1139              :      the right part of the constructor then.  */
    1140      7854568 :   tree ctor = ctor_for_folding (t);
    1141      7854568 :   if (!ctor
    1142      7854561 :       || TREE_CODE (ctor) != CONSTRUCTOR)
    1143              :     return false;
    1144              : 
    1145       101676 :   t = gimple_assign_rhs1 (stmt);
    1146       101676 :   auto_vec <tree, 4> comps;
    1147       101676 :   comps.safe_grow (count, true);
    1148       101676 :   int i = 0;
    1149       101676 :   while (TREE_CODE (t) == ARRAY_REF
    1150       208200 :          || TREE_CODE (t) == COMPONENT_REF)
    1151              :     {
    1152       106524 :       comps[i] = t;
    1153       106524 :       t = TREE_OPERAND (t, 0);
    1154       106524 :       i++;
    1155              :     }
    1156              : 
    1157       101676 :   value_range tmp (type);
    1158       101676 :   bool res = range_from_readonly_load (tmp, type, ctor, comps, count);
    1159       101676 :   if (res)
    1160              :     {
    1161       100496 :       if (POINTER_TYPE_P (type))
    1162        24427 :         r.set_nonzero (type);
    1163              :       else
    1164        76069 :         r = tmp;
    1165              :     }
    1166       101676 :   return res;
    1167       101676 : }
    1168              : 
    1169              : // Calculate a range for phi statement S and return it in R.
    1170              : // If a range cannot be calculated, return false.
    1171              : 
    1172              : bool
    1173     26399813 : fold_using_range::range_of_phi (vrange &r, gphi *phi, fur_source &src)
    1174              : {
    1175     26399813 :   tree phi_def = gimple_phi_result (phi);
    1176     26399813 :   tree type = gimple_range_type (phi);
    1177     26399813 :   value_range arg_range (type);
    1178     26399813 :   value_range equiv_range (type);
    1179     26399813 :   unsigned x;
    1180              : 
    1181     26399813 :   if (!type)
    1182              :     return false;
    1183              : 
    1184              :   // Track if all executable arguments are the same.
    1185     26399813 :   tree single_arg = NULL_TREE;
    1186     26399813 :   bool seen_arg = false;
    1187              : 
    1188     26399813 :   relation_oracle *oracle = &(src.query()->relation ());
    1189              :   // Start with an empty range, unioning in each argument's range.
    1190     26399813 :   r.set_undefined ();
    1191     67596726 :   for (x = 0; x < gimple_phi_num_args (phi); x++)
    1192              :     {
    1193     54186656 :       tree arg = gimple_phi_arg_def (phi, x);
    1194              :       // An argument that is the same as the def provides no new range.
    1195     54186656 :       if (arg == phi_def)
    1196        19265 :         continue;
    1197              : 
    1198     54167391 :       edge e = gimple_phi_arg_edge (phi, x);
    1199              : 
    1200              :       // Get the range of the argument on its edge.
    1201     54167391 :       src.get_phi_operand (arg_range, arg, e);
    1202              : 
    1203     54167391 :       if (!arg_range.undefined_p ())
    1204              :         {
    1205              :           // Register potential dependencies for stale value tracking.
    1206              :           // Likewise, if the incoming PHI argument is equivalent to this
    1207              :           // PHI definition, it provides no new info.  Accumulate these ranges
    1208              :           // in case all arguments are equivalences.
    1209     53906937 :           if (oracle->query (e, arg, phi_def) == VREL_EQ)
    1210       390042 :             equiv_range.union_(arg_range);
    1211              :           else
    1212     53516895 :             r.union_ (arg_range);
    1213              : 
    1214     88912038 :           if (gimple_range_ssa_p (arg) && src.gori_ssa ())
    1215     35005097 :             src.gori_ssa ()->register_dependency (phi_def, arg);
    1216              :         }
    1217              : 
    1218              :       // Track if all arguments are the same.
    1219     54167391 :       if (!seen_arg)
    1220              :         {
    1221              :           seen_arg = true;
    1222              :           single_arg = arg;
    1223              :         }
    1224     27767578 :       else if (!vrp_operand_equal_p (single_arg, arg))
    1225     26588072 :         single_arg = NULL_TREE;
    1226              : 
    1227              :       // Once the value reaches varying, stop looking.
    1228     54167391 :       if (r.varying_p () && single_arg == NULL_TREE)
    1229              :         break;
    1230              :     }
    1231              : 
    1232              :   // If all arguments were equivalences, use the equivalence ranges as no
    1233              :   // arguments were processed.
    1234     26399813 :   if (r.undefined_p () && !equiv_range.undefined_p ())
    1235       246861 :     r = equiv_range;
    1236              : 
    1237              :   // If the PHI boils down to a single effective argument, look at it.
    1238     26399813 :   if (single_arg)
    1239              :     {
    1240              :       // Symbolic arguments can be equivalences.
    1241      2367176 :       if (gimple_range_ssa_p (single_arg))
    1242              :         {
    1243              :           // Only allow the equivalence if the PHI definition does not
    1244              :           // dominate any incoming edge for SINGLE_ARG.
    1245              :           // See PR 108139 and 109462.
    1246      1922989 :           basic_block bb = gimple_bb (phi);
    1247      1922989 :           if (!dom_info_available_p (CDI_DOMINATORS))
    1248              :             single_arg = NULL;
    1249              :           else
    1250      4065165 :             for (x = 0; x < gimple_phi_num_args (phi); x++)
    1251      2147307 :               if (gimple_phi_arg_def (phi, x) == single_arg
    1252      4283487 :                   && dominated_by_p (CDI_DOMINATORS,
    1253      2136180 :                                       gimple_phi_arg_edge (phi, x)->src,
    1254              :                                       bb))
    1255              :                 {
    1256              :                   single_arg = NULL;
    1257              :                   break;
    1258              :                 }
    1259      1921949 :           if (single_arg)
    1260      1917858 :             src.register_relation (phi, VREL_EQ, phi_def, single_arg);
    1261              :         }
    1262       444187 :       else if (src.get_operand (arg_range, single_arg))
    1263              :         {
    1264              :           // Check if the single argument points to a specific object.
    1265       444187 :           if (is_a <prange> (arg_range))
    1266              :             {
    1267        40920 :               prange &ptr = as_a <prange> (arg_range);
    1268              :               // If it doesn't already point at something, set points to.
    1269        40920 :               if (ptr.pt_unknown_p () && TREE_CODE (single_arg) == ADDR_EXPR)
    1270            0 :                 ptr.set_pt (single_arg, true);
    1271        40920 :               r = ptr;
    1272        40920 :               return true;
    1273              :             }
    1274              :           // Numerical arguments that are a constant can be returned as
    1275              :           // the constant. This can help fold later cases where even this
    1276              :           // constant might have been UNDEFINED via an unreachable edge.
    1277       403267 :           if (arg_range.singleton_p ())
    1278              :             {
    1279       401499 :               r = arg_range;
    1280       401499 :               return true;
    1281              :             }
    1282              :         }
    1283              :     }
    1284              : 
    1285              :   // Incorporate any global value.  If a PHI analysis phase was run, there may
    1286              :   // be a restricted global range already.  Query the range with no context
    1287              :   // to get a global range.
    1288              : 
    1289              :   // If SCEV is available, query if this PHI has any known values.
    1290     25957394 :   if (scev_initialized_p ()
    1291     25957394 :       && !POINTER_TYPE_P (TREE_TYPE (phi_def)))
    1292              :     {
    1293     11401878 :       class loop *l = loop_containing_stmt (phi);
    1294     11401878 :       if (l && loop_outer (l))
    1295              :         {
    1296      8939313 :           value_range loop_range (type);
    1297      8939313 :           range_of_ssa_name_with_loop_info (loop_range, phi_def, l, phi, src);
    1298      8939313 :           if (!loop_range.varying_p ())
    1299              :             {
    1300      2502880 :               if (dump_file && (dump_flags & TDF_DETAILS))
    1301              :                 {
    1302        14275 :                   fprintf (dump_file, "Loops range found for ");
    1303        14275 :                   print_generic_expr (dump_file, phi_def, TDF_SLIM);
    1304        14275 :                   fprintf (dump_file, ": ");
    1305        14275 :                   loop_range.dump (dump_file);
    1306        14275 :                   fprintf (dump_file, " and calculated range :");
    1307        14275 :                   r.dump (dump_file);
    1308        14275 :                   fprintf (dump_file, "\n");
    1309              :                 }
    1310      2502880 :               r.intersect (loop_range);
    1311              :             }
    1312      8939313 :         }
    1313              :     }
    1314              : 
    1315              :   return true;
    1316     26399813 : }
    1317              : 
    1318              : // Calculate a range for call statement S and return it in R.
    1319              : // If a range cannot be calculated, return false.
    1320              : 
    1321              : bool
    1322     12861693 : fold_using_range::range_of_call (vrange &r, gcall *call, fur_source &)
    1323              : {
    1324     12861693 :   tree type = gimple_range_type (call);
    1325     12861693 :   if (!type)
    1326              :     return false;
    1327              : 
    1328     12861693 :   tree lhs = gimple_call_lhs (call);
    1329              : 
    1330     12861693 :   if (gimple_stmt_nonnegative_p (call))
    1331        44578 :     r.set_nonnegative (type);
    1332     12817115 :   else if (gimple_call_nonnull_result_p (call)
    1333     12817115 :            || gimple_call_nonnull_arg (call))
    1334       611556 :     r.set_nonzero (type);
    1335              :   else
    1336     12205559 :     r.set_varying (type);
    1337              : 
    1338     12861693 :   tree callee = gimple_call_fndecl (call);
    1339     12861693 :   if (callee
    1340     12861693 :       && useless_type_conversion_p (TREE_TYPE (TREE_TYPE (callee)), type))
    1341              :     {
    1342     11767032 :       value_range val;
    1343     11767032 :       if (ipa_return_value_range (val, callee))
    1344              :         {
    1345       564085 :           r.intersect (val);
    1346       564085 :           if (dump_file && (dump_flags & TDF_DETAILS))
    1347              :             {
    1348           28 :               fprintf (dump_file, "Using return value range of ");
    1349           28 :               print_generic_expr (dump_file, callee, TDF_SLIM);
    1350           28 :               fprintf (dump_file, ": ");
    1351           28 :               val.dump (dump_file);
    1352           28 :               fprintf (dump_file, "\n");
    1353              :             }
    1354              :         }
    1355     11767032 :     }
    1356              : 
    1357              :   // If there is an LHS, intersect that with what is known.
    1358     12861693 :   if (gimple_range_ssa_p (lhs))
    1359              :     {
    1360     12861693 :       value_range def (TREE_TYPE (lhs));
    1361     12861693 :       gimple_range_global (def, lhs);
    1362     12861693 :       r.intersect (def);
    1363     12861693 :     }
    1364              :   return true;
    1365              : }
    1366              : 
    1367              : // Given COND ? OP1 : OP2 with ranges R1 for OP1 and R2 for OP2, Use gori
    1368              : // to further resolve R1 and R2 if there are any dependencies between
    1369              : // OP1 and COND or OP2 and COND.  All values can are to be calculated using SRC
    1370              : // as the origination source location for operands..
    1371              : // Effectively, use COND an the edge condition and solve for OP1 on the true
    1372              : // edge and OP2 on the false edge.
    1373              : 
    1374              : bool
    1375       151882 : fold_using_range::condexpr_adjust (vrange &r1, vrange &r2, gimple *, tree cond,
    1376              :                                    tree op1, tree op2, fur_source &src)
    1377              : {
    1378       151882 :   if (!src.gori () || !src.gori_ssa ())
    1379              :     return false;
    1380              : 
    1381       113008 :   tree ssa1 = gimple_range_ssa_p (op1);
    1382       113008 :   tree ssa2 = gimple_range_ssa_p (op2);
    1383       113008 :   if (!ssa1 && !ssa2)
    1384              :     return false;
    1385       101910 :   if (TREE_CODE (cond) != SSA_NAME)
    1386              :     return false;
    1387       227114 :   gassign *cond_def = dyn_cast <gassign *> (SSA_NAME_DEF_STMT (cond));
    1388       101817 :   if (!cond_def
    1389       101817 :       || TREE_CODE_CLASS (gimple_assign_rhs_code (cond_def)) != tcc_comparison)
    1390              :     return false;
    1391        97041 :   tree type = TREE_TYPE (gimple_assign_rhs1 (cond_def));
    1392        97041 :   if (!value_range::supports_type_p (type)
    1393       194078 :       || !range_compatible_p (type, TREE_TYPE (gimple_assign_rhs2 (cond_def))))
    1394              :     return false;
    1395        97037 :   range_op_handler hand (gimple_assign_rhs_code (cond_def));
    1396        97037 :   if (!hand)
    1397              :     return false;
    1398              : 
    1399        97037 :   tree c1 = gimple_range_ssa_p (gimple_assign_rhs1 (cond_def));
    1400       194074 :   tree c2 = gimple_range_ssa_p (gimple_assign_rhs2 (cond_def));
    1401              : 
    1402              :   // Only solve if there is one SSA name in the condition.
    1403        97037 :   if ((!c1 && !c2) || (c1 && c2))
    1404              :     return false;
    1405              : 
    1406              :   // Pick up the current values of each part of the condition.
    1407        26585 :   tree rhs1 = gimple_assign_rhs1 (cond_def);
    1408        26585 :   tree rhs2 = gimple_assign_rhs2 (cond_def);
    1409        26585 :   value_range cl (TREE_TYPE (rhs1));
    1410        26585 :   value_range cr (TREE_TYPE (rhs2));
    1411        26585 :   src.get_operand (cl, rhs1);
    1412        26585 :   src.get_operand (cr, rhs2);
    1413              : 
    1414        26585 :   tree cond_name = c1 ? c1 : c2;
    1415        26585 :   gimple *def_stmt = SSA_NAME_DEF_STMT (cond_name);
    1416              : 
    1417              :   // Evaluate the value of COND_NAME on the true and false edges, using either
    1418              :   // the op1 or op2 routines based on its location.
    1419        26585 :   value_range cond_true (type), cond_false (type);
    1420        26585 :   if (c1)
    1421              :     {
    1422        26585 :       if (!hand.op1_range (cond_false, type, range_false (), cr))
    1423              :         return false;
    1424        26585 :       if (!hand.op1_range (cond_true, type, range_true (), cr))
    1425              :         return false;
    1426        26585 :       cond_false.intersect (cl);
    1427        26585 :       cond_true.intersect (cl);
    1428              :     }
    1429              :   else
    1430              :     {
    1431            0 :       if (!hand.op2_range (cond_false, type, range_false (), cl))
    1432              :         return false;
    1433            0 :       if (!hand.op2_range (cond_true, type, range_true (), cl))
    1434              :         return false;
    1435            0 :       cond_false.intersect (cr);
    1436            0 :       cond_true.intersect (cr);
    1437              :     }
    1438              : 
    1439              :    // Now solve for SSA1 or SSA2 if they are in the dependency chain.
    1440        48970 :    if (ssa1 && src.gori_ssa()->in_chain_p (ssa1, cond_name))
    1441              :     {
    1442          921 :       value_range tmp1 (TREE_TYPE (ssa1));
    1443         1842 :       if (src.gori ()->compute_operand_range (tmp1, def_stmt, cond_true,
    1444              :           ssa1, src))
    1445          583 :         r1.intersect (tmp1);
    1446          921 :     }
    1447        43837 :   if (ssa2 && src.gori_ssa ()->in_chain_p (ssa2, cond_name))
    1448              :     {
    1449          258 :       value_range tmp2 (TREE_TYPE (ssa2));
    1450          516 :       if (src.gori ()->compute_operand_range (tmp2, def_stmt, cond_false,
    1451              :           ssa2, src))
    1452          210 :         r2.intersect (tmp2);
    1453          258 :     }
    1454              :   // If the same name is specified in the condition and COND_EXPR,
    1455              :   // combine the calculated condition range and the other one provided. ie:
    1456              :   // c_1 = b_2 < 10
    1457              :   // f_3 = c_1 ? 0 : b_2
    1458              :   // With b_2 providing the false value, the value of f_3 will be
    1459              :   // either 0 UNION  (0 = b_2 < 10), which is [-INF, 9].
    1460              :   // COND_EXPR is
    1461        26585 :   if (ssa1 && cond_name == ssa1)
    1462         2044 :     r1 = cond_true;
    1463        24541 :   else if (ssa2 && cond_name == ssa2)
    1464         2860 :     r2 = cond_false;
    1465              :   return true;
    1466        26585 : }
    1467              : 
    1468              : // Calculate a range for COND_EXPR statement S and return it in R.
    1469              : // If a range cannot be calculated, return false.
    1470              : 
    1471              : bool
    1472       151882 : fold_using_range::range_of_cond_expr  (vrange &r, gassign *s, fur_source &src)
    1473              : {
    1474       151882 :   tree cond = gimple_assign_rhs1 (s);
    1475       151882 :   tree op1 = gimple_assign_rhs2 (s);
    1476       151882 :   tree op2 = gimple_assign_rhs3 (s);
    1477              : 
    1478       151882 :   tree type = gimple_range_type (s);
    1479       151882 :   if (!type)
    1480              :     return false;
    1481              : 
    1482       151882 :   value_range range1 (TREE_TYPE (op1));
    1483       151882 :   value_range range2 (TREE_TYPE (op2));
    1484       151882 :   value_range cond_range (TREE_TYPE (cond));
    1485       151882 :   gcc_checking_assert (gimple_assign_rhs_code (s) == COND_EXPR);
    1486       151882 :   gcc_checking_assert (range_compatible_p (TREE_TYPE (op1), TREE_TYPE (op2)));
    1487       151882 :   src.get_operand (cond_range, cond);
    1488       151882 :   src.get_operand (range1, op1);
    1489       151882 :   src.get_operand (range2, op2);
    1490              : 
    1491              :   // Try to see if there is a dependence between the COND and either operand
    1492       151882 :   if (condexpr_adjust (range1, range2, s, cond, op1, op2, src))
    1493        26585 :     if (dump_file && (dump_flags & TDF_DETAILS))
    1494              :       {
    1495          559 :         fprintf (dump_file, "Possible COND_EXPR adjustment. Range op1 : ");
    1496          559 :         range1.dump(dump_file);
    1497          559 :         fprintf (dump_file, " and Range op2: ");
    1498          559 :         range2.dump(dump_file);
    1499          559 :         fprintf (dump_file, "\n");
    1500              :       }
    1501              : 
    1502              :   // If the condition is known, choose the appropriate expression.
    1503       151882 :   if (cond_range.singleton_p ())
    1504              :     {
    1505              :       // False, pick second operand.
    1506         2121 :       if (cond_range.zero_p ())
    1507         1059 :         r = range2;
    1508              :       else
    1509         1062 :         r = range1;
    1510              :     }
    1511              :   else
    1512              :     {
    1513       149761 :       r = range1;
    1514       149761 :       r.union_ (range2);
    1515              :     }
    1516       151882 :   gcc_checking_assert (r.undefined_p ()
    1517              :                        || range_compatible_p (r.type (), type));
    1518       151882 :   return true;
    1519       151882 : }
    1520              : 
    1521              : // If SCEV has any information about phi node NAME, return it as a range in R.
    1522              : 
    1523              : void
    1524      8939313 : fold_using_range::range_of_ssa_name_with_loop_info (vrange &r, tree name,
    1525              :                                                     class loop *l, gphi *phi,
    1526              :                                                     fur_source &src)
    1527              : {
    1528      8939313 :   static bool in_scev_call = false;
    1529      8939313 :   gcc_checking_assert (TREE_CODE (name) == SSA_NAME);
    1530              :   // Avoid SCEV callbacks causing infinite recursion.
    1531      8939313 :   if (in_scev_call)
    1532       455046 :     r.set_varying (TREE_TYPE (name));
    1533              :   // SCEV currently invokes get_range_query () for values.  If the query
    1534              :   // being passed in is not the same SCEV will use, do not invoke SCEV.
    1535              :   // This can be remove if/when SCEV uses a passed in range-query.
    1536     16968534 :   else if (src.query () != get_range_query (cfun))
    1537              :     {
    1538      1774890 :       r.set_varying (TREE_TYPE (name));
    1539              :       // Report the msmatch if SRC is not the global query.  The cache
    1540              :       // uses a global query and would provide numerous false positives.
    1541          124 :       if (dump_file && (dump_flags & TDF_DETAILS)
    1542      1774966 :           && src.query () != get_global_range_query ())
    1543           39 :         fprintf (dump_file,
    1544              :           "fold_using-range:: SCEV not invoked due to mismatched queries\n");
    1545              :     }
    1546              :   else
    1547              :     {
    1548      6709377 :       in_scev_call = true;
    1549      6709377 :       if (!range_of_var_in_loop (r, name, l, phi, src.query ()))
    1550          293 :         r.set_varying (TREE_TYPE (name));
    1551      6709377 :       in_scev_call = false;
    1552              :     }
    1553      8939313 : }
    1554              : 
    1555              : // -----------------------------------------------------------------------
    1556              : 
    1557              : // Check if an && or || expression can be folded based on relations. ie
    1558              : //   c_2 = a_6 > b_7
    1559              : //   c_3 = a_6 < b_7
    1560              : //   c_4 = c_2 && c_3
    1561              : // c_2 and c_3 can never be true at the same time,
    1562              : // Therefore c_4 can always resolve to false based purely on the relations.
    1563              : 
    1564              : void
    1565    132715489 : fold_using_range::relation_fold_and_or (irange& lhs_range, gimple *s,
    1566              :                                         fur_source &src, vrange &op1,
    1567              :                                         vrange &op2)
    1568              : {
    1569              :   // No queries or already folded.
    1570    132715489 :   if (!src.gori () || lhs_range.singleton_p ())
    1571     44924362 :     return;
    1572              : 
    1573              :   // Only care about AND and OR expressions.
    1574     87791127 :   enum tree_code code = gimple_expr_code (s);
    1575     87791127 :   bool is_and = false;
    1576     87791127 :   if (code == BIT_AND_EXPR || code == TRUTH_AND_EXPR)
    1577              :     is_and = true;
    1578     84250454 :   else if (code != BIT_IOR_EXPR && code != TRUTH_OR_EXPR)
    1579              :     return;
    1580              : 
    1581      5038569 :   gimple_range_op_handler handler (s);
    1582      5038569 :   tree lhs = handler.lhs ();
    1583      5038569 :   tree ssa1 = gimple_range_ssa_p (handler.operand1 ());
    1584      5038569 :   tree ssa2 = gimple_range_ssa_p (handler.operand2 ());
    1585              : 
    1586              :   // Deal with || and && only when there is a full set of symbolics.
    1587      5038383 :   if (!lhs || !ssa1 || !ssa2
    1588      2715763 :       || (TREE_CODE (TREE_TYPE (lhs)) != BOOLEAN_TYPE)
    1589      1846029 :       || (TREE_CODE (TREE_TYPE (ssa1)) != BOOLEAN_TYPE)
    1590      6883362 :       || (TREE_CODE (TREE_TYPE (ssa2)) != BOOLEAN_TYPE))
    1591              :     return;
    1592              : 
    1593              :   // Now we know its a boolean AND or OR expression with boolean operands.
    1594              :   // Ideally we search dependencies for common names, and see what pops out.
    1595              :   // until then, simply try to resolve direct dependencies.
    1596              : 
    1597      1842114 :   gimple *ssa1_stmt = SSA_NAME_DEF_STMT (ssa1);
    1598      1842114 :   gimple *ssa2_stmt = SSA_NAME_DEF_STMT (ssa2);
    1599              : 
    1600      1842114 :   gimple_range_op_handler handler1 (ssa1_stmt);
    1601      1842114 :   gimple_range_op_handler handler2 (ssa2_stmt);
    1602              : 
    1603              :   // If either handler is not present, no relation can be found.
    1604      1842114 :   if (!handler1 || !handler2)
    1605       128744 :     return;
    1606              : 
    1607              :   // Both stmts will need to have 2 ssa names in the stmt.
    1608      1713370 :   tree ssa1_dep1 = gimple_range_ssa_p (handler1.operand1 ());
    1609      1713370 :   tree ssa1_dep2 = gimple_range_ssa_p (handler1.operand2 ());
    1610      1713370 :   tree ssa2_dep1 = gimple_range_ssa_p (handler2.operand1 ());
    1611      1713370 :   tree ssa2_dep2 = gimple_range_ssa_p (handler2.operand2 ());
    1612              : 
    1613      1713370 :   if (!ssa1_dep1 || !ssa1_dep2 || !ssa2_dep1 || !ssa2_dep2)
    1614              :     return;
    1615              : 
    1616       197516 :   if (HONOR_NANS (TREE_TYPE (ssa1_dep1)))
    1617              :     return;
    1618              : 
    1619              :   // Make sure they are the same dependencies, and detect the order of the
    1620              :   // relationship.
    1621       185751 :   bool reverse_op2 = true;
    1622       185751 :   if (ssa1_dep1 == ssa2_dep1 && ssa1_dep2 == ssa2_dep2)
    1623              :     reverse_op2 = false;
    1624       185644 :   else if (ssa1_dep1 != ssa2_dep2 || ssa1_dep2 != ssa2_dep1)
    1625              :     return;
    1626              : 
    1627          112 :   int_range<2> bool_one = range_true ();
    1628          112 :   relation_kind relation1 = handler1.op1_op2_relation (bool_one, op1, op2);
    1629          112 :   relation_kind relation2 = handler2.op1_op2_relation (bool_one, op1, op2);
    1630          112 :   if (relation1 == VREL_VARYING || relation2 == VREL_VARYING)
    1631              :     return;
    1632              : 
    1633           76 :   if (reverse_op2)
    1634            5 :     relation2 = relation_swap (relation2);
    1635              : 
    1636              :   // x && y is false if the relation intersection of the true cases is NULL.
    1637           76 :   if (is_and && relation_intersect (relation1, relation2) == VREL_UNDEFINED)
    1638            0 :     lhs_range = range_false (boolean_type_node);
    1639              :   // x || y is true if the union of the true cases is NO-RELATION..
    1640              :   // ie, one or the other being true covers the full range of possibilities.
    1641           76 :   else if (!is_and && relation_union (relation1, relation2) == VREL_VARYING)
    1642            0 :     lhs_range = bool_one;
    1643              :   else
    1644           76 :     return;
    1645              : 
    1646            0 :   range_cast (lhs_range, TREE_TYPE (lhs));
    1647            0 :   if (dump_file && (dump_flags & TDF_DETAILS))
    1648              :     {
    1649            0 :       fprintf (dump_file, "  Relation adjustment: ");
    1650            0 :       print_generic_expr (dump_file, ssa1, TDF_SLIM);
    1651            0 :       fprintf (dump_file, "  and ");
    1652            0 :       print_generic_expr (dump_file, ssa2, TDF_SLIM);
    1653            0 :       fprintf (dump_file, "  combine to produce ");
    1654            0 :       lhs_range.dump (dump_file);
    1655            0 :       fputc ('\n', dump_file);
    1656              :     }
    1657              : 
    1658              :   return;
    1659          112 : }
    1660              : 
    1661              : // Register any outgoing edge relations from a conditional branch.
    1662              : 
    1663              : void
    1664     67902508 : fur_source::register_outgoing_edges (gcond *s, irange &lhs_range,
    1665              :                                      edge e0, edge e1)
    1666              : {
    1667     67902508 :   int_range<2> e0_range, e1_range;
    1668     67902508 :   tree name;
    1669     67902508 :   basic_block bb = gimple_bb (s);
    1670              : 
    1671     67902508 :   gimple_range_op_handler handler (s);
    1672     67902508 :   if (!handler)
    1673              :     return;
    1674              : 
    1675     67892700 :   if (e0)
    1676              :     {
    1677              :       // If this edge is never taken, ignore it.
    1678     56351199 :       gcond_edge_range (e0_range, e0);
    1679     56351199 :       e0_range.intersect (lhs_range);
    1680     56351199 :       if (e0_range.undefined_p ())
    1681     24987035 :         e0 = NULL;
    1682              :     }
    1683              : 
    1684     67892700 :   if (e1)
    1685              :     {
    1686              :       // If this edge is never taken, ignore it.
    1687     49513898 :       gcond_edge_range (e1_range, e1);
    1688     49513898 :       e1_range.intersect (lhs_range);
    1689     49513898 :       if (e1_range.undefined_p ())
    1690     28319434 :         e1 = NULL;
    1691              :     }
    1692              : 
    1693     67892700 :   if (!e0 && !e1)
    1694              :     return;
    1695              : 
    1696              :   // First, register the gcond itself.  This will catch statements like
    1697              :   // if (a_2 < b_5)
    1698     64824698 :   tree ssa1 = gimple_range_ssa_p (handler.operand1 ());
    1699     64824698 :   tree ssa2 = gimple_range_ssa_p (handler.operand2 ());
    1700     64824698 :   value_range r1,r2;
    1701     64824698 :   if (ssa1 && ssa2)
    1702              :     {
    1703     19376220 :       r1.set_varying (TREE_TYPE (ssa1));
    1704     19376220 :       r2.set_varying (TREE_TYPE (ssa2));
    1705     19376220 :       if (e0)
    1706              :         {
    1707     12964054 :           relation_kind relation = handler.op1_op2_relation (e0_range, r1, r2);
    1708     12964054 :           if (relation != VREL_VARYING)
    1709     12887856 :             register_relation (e0, relation, ssa1, ssa2);
    1710              :         }
    1711     19376220 :       if (e1)
    1712              :         {
    1713     11314855 :           relation_kind relation = handler.op1_op2_relation (e1_range, r1, r2);
    1714     11314855 :           if (relation != VREL_VARYING)
    1715     11256377 :             register_relation (e1, relation, ssa1, ssa2);
    1716              :         }
    1717              :     }
    1718              : 
    1719              :   // Outgoing relations of GORI exports require a gori engine.
    1720    117319528 :   if (!gori_ssa ())
    1721     12329880 :     return;
    1722              : 
    1723              :   // Now look for other relations in the exports.  This will find stmts
    1724              :   // leading to the condition such as:
    1725              :   // c_2 = a_4 < b_7
    1726              :   // if (c_2)
    1727    167063801 :   FOR_EACH_GORI_EXPORT_NAME (gori_ssa (), bb, name)
    1728              :     {
    1729    114568983 :       if (TREE_CODE (TREE_TYPE (name)) != BOOLEAN_TYPE)
    1730    109186758 :         continue;
    1731      8898290 :       gimple *stmt = SSA_NAME_DEF_STMT (name);
    1732      8898290 :       gimple_range_op_handler handler (stmt);
    1733      8898290 :       if (!handler)
    1734      3516065 :         continue;
    1735      5382225 :       tree ssa1 = gimple_range_ssa_p (handler.operand1 ());
    1736      5382225 :       tree ssa2 = gimple_range_ssa_p (handler.operand2 ());
    1737      5382225 :       value_range r (TREE_TYPE (name));
    1738      5382225 :       if (ssa1 && ssa2)
    1739              :         {
    1740      2296413 :           r1.set_varying (TREE_TYPE (ssa1));
    1741      2296413 :           r2.set_varying (TREE_TYPE (ssa2));
    1742      1408792 :           if (e0 && gori ()->edge_range_p (r, e0, name, *m_query)
    1743      3671788 :               && r.singleton_p ())
    1744              :             {
    1745      1259361 :               relation_kind relation = handler.op1_op2_relation (r, r1, r2);
    1746      1259361 :               if (relation != VREL_VARYING)
    1747       422535 :                 register_relation (e0, relation, ssa1, ssa2);
    1748              :             }
    1749      1457757 :           if (e1 && gori ()->edge_range_p (r, e1, name, *m_query)
    1750      3709331 :               && r.singleton_p ())
    1751              :             {
    1752      1038134 :               relation_kind relation = handler.op1_op2_relation (r, r1, r2);
    1753      1038134 :               if (relation != VREL_VARYING)
    1754       150920 :                 register_relation (e1, relation, ssa1, ssa2);
    1755              :             }
    1756              :         }
    1757      5382225 :     }
    1758     67902508 : }
        

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.