OSDN Git Service

Remove trailing white spaces.
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa-loop-niter.c
index 405f3ca..7dbb8c3 100644 (file)
@@ -1,19 +1,19 @@
 /* Functions to determine/estimate number of iterations of a loop.
    Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation,
    Inc.
-   
+
 This file is part of GCC.
-   
+
 GCC is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by the
 Free Software Foundation; either version 3, or (at your option) any
 later version.
-   
+
 GCC is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 for more details.
-   
+
 You should have received a copy of the GNU General Public License
 along with GCC; see the file COPYING3.  If not see
 <http://www.gnu.org/licenses/>.  */
@@ -255,7 +255,7 @@ refine_bounds_using_guard (tree type, tree varx, mpz_t offx,
       return;
     default:
       return;
-    } 
+    }
 
   mpz_init (offc0);
   mpz_init (offc1);
@@ -297,7 +297,7 @@ refine_bounds_using_guard (tree type, tree varx, mpz_t offx,
      overflow decreases the appropriate offset by M, and underflow
      increases it by M.  The above inequality would not necessarily be
      true if
-   
+
      -- VARX + OFFX underflows and VARX + OFFC0 does not, or
        VARX + OFFC0 overflows, but VARX + OFFX does not.
        This may only happen if OFFX < OFFC0.
@@ -352,7 +352,7 @@ end:
 /* Stores the bounds on the value of the expression X - Y in LOOP to BNDS.
    The subtraction is considered to be performed in arbitrary precision,
    without overflows.
+
    We do not attempt to be too clever regarding the value ranges of X and
    Y; most of the time, they are just integers or ssa names offsetted by
    integer.  However, we try to use the information contained in the
@@ -650,7 +650,7 @@ number_of_iterations_ne (tree type, affine_iv *iv, tree final,
        niter->assumptions = fold_build2 (TRUTH_AND_EXPR, boolean_type_node,
                                          niter->assumptions, assumption);
     }
-      
+
   c = fold_build2 (EXACT_DIV_EXPR, niter_type, c, d);
   tmp = fold_build2 (MULT_EXPR, niter_type, c, inverse (s, bound));
   niter->niter = fold_build2 (BIT_AND_EXPR, niter_type, tmp, bound);
@@ -847,7 +847,7 @@ assert_no_overflow_lt (tree type, affine_iv *iv0, affine_iv *iv1,
   if (!integer_nonzerop (assumption))
     niter->assumptions = fold_build2 (TRUTH_AND_EXPR, boolean_type_node,
                                      niter->assumptions, assumption);
-    
+
   iv0->no_overflow = true;
   iv1->no_overflow = true;
   return true;
@@ -869,10 +869,10 @@ assert_loop_rolls_lt (tree type, affine_iv *iv0, affine_iv *iv1,
 
   /* We are going to compute the number of iterations as
      (iv1->base - iv0->base + step - 1) / step, computed in the unsigned
-     variant of TYPE.  This formula only works if 
-     
+     variant of TYPE.  This formula only works if
+
      -step + 1 <= (iv1->base - iv0->base) <= MAX - step + 1
-   
+
      (where MAX is the maximum value of the unsigned variant of TYPE, and
      the computations in this formula are performed in full precision
      (without overflows).
@@ -882,7 +882,7 @@ assert_loop_rolls_lt (tree type, affine_iv *iv0, affine_iv *iv1,
      and for loops iv0->base < iv1->base - step * i the condition
      iv0->base < iv1->base + step, due to loop header copying, which enable us
      to prove the lower bound.
-     
+
      The upper bound is more complicated.  Unless the expressions for initial
      and final value themselves contain enough information, we usually cannot
      derive it from the context.  */
@@ -920,7 +920,7 @@ assert_loop_rolls_lt (tree type, affine_iv *iv0, affine_iv *iv1,
 
   if (rolls_p && no_overflow_p)
     return;
-  
+
   type1 = type;
   if (POINTER_TYPE_P (type))
     type1 = sizetype;
@@ -945,8 +945,8 @@ assert_loop_rolls_lt (tree type, affine_iv *iv0, affine_iv *iv1,
        }
 
       /* And then we can compute iv0->base - diff, and compare it with
-        iv1->base.  */      
-      mbzl = fold_build2 (MINUS_EXPR, type1, 
+        iv1->base.  */
+      mbzl = fold_build2 (MINUS_EXPR, type1,
                          fold_convert (type1, iv0->base), diff);
       mbzr = fold_convert (type1, iv1->base);
     }
@@ -1020,7 +1020,7 @@ number_of_iterations_lt (tree type, affine_iv *iv0, affine_iv *iv1,
         or
 
         for (i = iv1->base; i > iv0->base; i--).
-            
+
         In both cases # of iterations is iv1->base - iv0->base, assuming that
         iv1->base >= iv0->base.
 
@@ -1108,7 +1108,7 @@ number_of_iterations_le (tree type, affine_iv *iv0, affine_iv *iv1,
      IV0 < IV1 + 1, assuming that IV1 is not equal to the greatest
      value of the type.  This we must know anyway, since if it is
      equal to this value, the loop rolls forever.  We do not check
-     this condition for pointer type ivs, as the code cannot rely on 
+     this condition for pointer type ivs, as the code cannot rely on
      the object to that the pointer points being placed at the end of
      the address space (and more pragmatically, TYPE_{MIN,MAX}_VALUE is
      not defined for pointers).  */
@@ -1183,7 +1183,7 @@ dump_affine_iv (FILE *file, affine_iv *iv)
    exited (including possibly non-returning function calls, exceptions, etc.)
    -- in this case we can use the information whether the control induction
    variables can overflow or not in a more efficient way.
-   
+
    The results (number of iterations and assumptions as described in
    comments at struct tree_niter_desc in tree-flow.h) are stored to NITER.
    Returns false if it fails to determine number of iterations, true if it
@@ -1280,7 +1280,7 @@ number_of_iterations_cond (struct loop *loop,
       niter->max = double_int_zero;
       return true;
     }
-         
+
   /* OK, now we know we have a senseful loop.  Handle several cases, depending
      on what comparison operator is used.  */
   bound_difference (loop, iv1->base, iv0->base, &bnds);
@@ -1801,7 +1801,7 @@ number_of_iterations_exit (struct loop *loop, edge exit,
     default:
       return false;
     }
-  
+
   op0 = gimple_cond_lhs (stmt);
   op1 = gimple_cond_rhs (stmt);
   type = TREE_TYPE (op0);
@@ -1809,7 +1809,7 @@ number_of_iterations_exit (struct loop *loop, edge exit,
   if (TREE_CODE (type) != INTEGER_TYPE
       && !POINTER_TYPE_P (type))
     return false;
-     
+
   if (!simple_iv (loop, loop_containing_stmt (stmt), op0, &iv0, false))
     return false;
   if (!simple_iv (loop, loop_containing_stmt (stmt), op1, &iv1, false))
@@ -1862,7 +1862,7 @@ number_of_iterations_exit (struct loop *loop, edge exit,
     {
       const char *wording;
       location_t loc = gimple_location (stmt);
-  
+
       /* We can provide a more specific warning if one of the operator is
         constant and the other advances by +1 or -1.  */
       if (!integer_zerop (iv1.step)
@@ -1874,7 +1874,7 @@ number_of_iterations_exit (struct loop *loop, edge exit,
           ? N_("assuming that the loop is not infinite")
           : N_("cannot optimize possibly infinite loops");
       else
-       wording = 
+       wording =
          flag_unsafe_loop_optimizations
          ? N_("assuming that the loop counter does not overflow")
          : N_("cannot optimize loop, the loop counter may overflow");
@@ -1976,7 +1976,7 @@ finite_loop_p (struct loop *loop)
                 loop->num);
       return true;
     }
-   
+
   exits = get_loop_exit_edges (loop);
   for (i = 0; VEC_iterate (edge, exits, i, ex); i++)
     {
@@ -2025,7 +2025,7 @@ chain_of_csts_start (struct loop *loop, tree x)
   if (!bb
       || !flow_bb_inside_loop_p (loop, bb))
     return NULL;
-  
+
   if (gimple_code (stmt) == GIMPLE_PHI)
     {
       if (bb == loop->header)
@@ -2058,7 +2058,7 @@ chain_of_csts_start (struct loop *loop, tree x)
    * the initial value of the phi node is constant
    * the value of the phi node in the next iteration can be derived from the
      value in the current iteration by a chain of operations with constants.
-   
+
    If such phi node exists, it is returned, otherwise NULL is returned.  */
 
 static gimple
@@ -2089,8 +2089,8 @@ get_base_for (struct loop *loop, tree x)
   return phi;
 }
 
-/* Given an expression X, then 
+/* Given an expression X, then
+
    * if X is NULL_TREE, we return the constant BASE.
    * otherwise X is a SSA name, whose value in the considered loop is derived
      by a chain of operations with constant from a result of a phi node in
@@ -2305,7 +2305,7 @@ derive_constant_upper_bound_assign (gimple stmt)
 /* Returns a constant upper bound on the value of expression VAL.  VAL
    is considered to be unsigned.  If its type is signed, its value must
    be nonnegative.  */
+
 static double_int
 derive_constant_upper_bound (tree val)
 {
@@ -2319,7 +2319,7 @@ derive_constant_upper_bound (tree val)
 /* Returns a constant upper bound on the value of expression OP0 CODE OP1,
    whose type is TYPE.  The expression is considered to be unsigned.  If
    its type is signed, its value must be nonnegative.  */
+
 static double_int
 derive_constant_upper_bound_ops (tree type, tree op0,
                                 enum tree_code code, tree op1)
@@ -2451,7 +2451,7 @@ derive_constant_upper_bound_ops (tree type, tree op0,
        return max;
       return derive_constant_upper_bound_assign (stmt);
 
-    default: 
+    default:
       return max;
     }
 }
@@ -2622,7 +2622,7 @@ array_at_struct_end_p (tree ref)
      its declaration.  */
   if (!base || !INDIRECT_REF_P (base))
     return false;
-  
+
   for (;handled_component_p (ref); ref = parent)
     {
       parent = TREE_OPERAND (ref, 0);
@@ -2697,7 +2697,7 @@ idx_infer_loop_bounds (tree base, tree *idx, void *dta)
 
   low = array_ref_low_bound (base);
   high = array_ref_up_bound (base);
-  
+
   /* The case of nonconstant bounds could be handled, but it would be
      complicated.  */
   if (TREE_CODE (low) != INTEGER_CST
@@ -2731,7 +2731,7 @@ idx_infer_loop_bounds (tree base, tree *idx, void *dta)
     next = fold_binary (PLUS_EXPR, type, low, step);
   else
     next = fold_binary (PLUS_EXPR, type, high, step);
-  
+
   if (tree_int_cst_compare (low, next) <= 0
       && tree_int_cst_compare (next, high) <= 0)
     return true;
@@ -2851,7 +2851,7 @@ infer_loop_bounds_from_undefined (struct loop *loop)
   gimple_stmt_iterator bsi;
   basic_block bb;
   bool reliable;
-  
+
   bbs = get_loop_body (loop);
 
   for (i = 0; i < loop->num_nodes; i++)
@@ -2931,7 +2931,7 @@ estimate_numbers_of_iterations_loop (struct loop *loop)
                       true, true, true);
     }
   VEC_free (edge, heap, exits);
-  
+
   infer_loop_bounds_from_undefined (loop);
 
   /* If we have a measured profile, use it to estimate the number of
@@ -3011,7 +3011,7 @@ stmt_dominates_stmt_p (gimple s1, gimple s2)
 
 static bool
 n_of_executions_at_most (gimple stmt,
-                        struct nb_iter_bound *niter_bound, 
+                        struct nb_iter_bound *niter_bound,
                         tree niter)
 {
   double_int bound = niter_bound->bound;
@@ -3027,7 +3027,7 @@ n_of_executions_at_most (gimple stmt,
 
   /* We know that NITER_BOUND->stmt is executed at most NITER_BOUND->bound + 1
      times.  This means that:
-     
+
      -- if NITER_BOUND->is_exit is true, then everything before
         NITER_BOUND->stmt is executed at most NITER_BOUND->bound + 1
        times, and everything after it at most NITER_BOUND->bound times.
@@ -3087,13 +3087,13 @@ nowrap_type_p (tree type)
    enough with respect to the step and initial condition in order to
    keep the evolution confined in TYPEs bounds.  Return true when the
    iv is known to overflow or when the property is not computable.
+
    USE_OVERFLOW_SEMANTICS is true if this function should assume that
    the rules for overflow of the given language apply (e.g., that signed
    arithmetics in C does not overflow).  */
 
 bool
-scev_probably_wraps_p (tree base, tree step, 
+scev_probably_wraps_p (tree base, tree step,
                       gimple at_stmt, struct loop *loop,
                       bool use_overflow_semantics)
 {
@@ -3107,7 +3107,7 @@ scev_probably_wraps_p (tree base, tree step,
 
      We used to test for the following situation that frequently appears
      during address arithmetics:
-        
+
        D.1621_13 = (long unsigned intD.4) D.1620_12;
        D.1622_14 = D.1621_13 * 8;
        D.1623_15 = (doubleD.29 *) D.1622_14;