aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-data-ref.c
diff options
context:
space:
mode:
authorSebastian Pop <sebastian.pop@amd.com>2008-01-03 22:59:48 +0000
committerSebastian Pop <spop@gcc.gnu.org>2008-01-03 22:59:48 +0000
commit6b6fa4e9e35124cb87c424da9947fe6d56c2ab2b (patch)
tree5250b2886e7f3ff0ad700a413e64d1ba9e6a6070 /gcc/tree-data-ref.c
parent2726bafeee02a584d1ceb8bd1a50544b348590ec (diff)
downloadgcc-6b6fa4e9e35124cb87c424da9947fe6d56c2ab2b.zip
gcc-6b6fa4e9e35124cb87c424da9947fe6d56c2ab2b.tar.gz
gcc-6b6fa4e9e35124cb87c424da9947fe6d56c2ab2b.tar.bz2
re PR tree-optimization/34458 (ICE in int_cst_value, at tree.c:8047 at -O3)
2008-01-03 Sebastian Pop <sebastian.pop@amd.com> Revert fix for PR tree-optimization/34458. From-SVN: r131308
Diffstat (limited to 'gcc/tree-data-ref.c')
-rw-r--r--gcc/tree-data-ref.c39
1 files changed, 14 insertions, 25 deletions
diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c
index 5fd39f6..88f6347 100644
--- a/gcc/tree-data-ref.c
+++ b/gcc/tree-data-ref.c
@@ -1817,17 +1817,6 @@ analyze_siv_subscript_cst_affine (tree chrec_a,
}
}
-/* Return the HWI converted value of X. */
-
-static inline HOST_WIDE_INT
-dd_int_cst_value (tree x)
-{
- if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
- x = fold_convert (integer_type_node, x);
-
- return int_cst_value (x);
-}
-
/* Helper recursive function for initializing the matrix A. Returns
the initial value of CHREC. */
@@ -1837,9 +1826,9 @@ initialize_matrix_A (lambda_matrix A, tree chrec, unsigned index, int mult)
gcc_assert (chrec);
if (TREE_CODE (chrec) != POLYNOMIAL_CHREC)
- return dd_int_cst_value (chrec);
+ return int_cst_value (chrec);
- A[index][0] = mult * dd_int_cst_value (CHREC_RIGHT (chrec));
+ A[index][0] = mult * int_cst_value (CHREC_RIGHT (chrec));
return initialize_matrix_A (A, CHREC_LEFT (chrec), index + 1, mult);
}
@@ -1924,9 +1913,9 @@ compute_overlap_steps_for_affine_1_2 (tree chrec_a, tree chrec_b,
affine_fn ova1, ova2, ovb;
tree last_conflicts_xz, last_conflicts_yz, last_conflicts_xyz;
- step_x = dd_int_cst_value (CHREC_RIGHT (CHREC_LEFT (chrec_a)));
- step_y = dd_int_cst_value (CHREC_RIGHT (chrec_a));
- step_z = dd_int_cst_value (CHREC_RIGHT (chrec_b));
+ step_x = int_cst_value (CHREC_RIGHT (CHREC_LEFT (chrec_a)));
+ step_y = int_cst_value (CHREC_RIGHT (chrec_a));
+ step_z = int_cst_value (CHREC_RIGHT (chrec_b));
niter_x =
estimated_loop_iterations_int (get_chrec_loop (CHREC_LEFT (chrec_a)),
@@ -2097,8 +2086,8 @@ analyze_subscript_affine_affine (tree chrec_a,
niter_b = estimated_loop_iterations_int (get_chrec_loop (chrec_b),
false);
niter = MIN (niter_a, niter_b);
- step_a = dd_int_cst_value (CHREC_RIGHT (chrec_a));
- step_b = dd_int_cst_value (CHREC_RIGHT (chrec_b));
+ step_a = int_cst_value (CHREC_RIGHT (chrec_a));
+ step_b = int_cst_value (CHREC_RIGHT (chrec_b));
compute_overlap_steps_for_affine_univar (niter, step_a, step_b,
&ova, &ovb,
@@ -2763,7 +2752,7 @@ build_classic_dist_vector_1 (struct data_dependence_relation *ddr,
return false;
}
- dist = dd_int_cst_value (SUB_DISTANCE (subscript));
+ dist = int_cst_value (SUB_DISTANCE (subscript));
/* This is the subscript coupling test. If we have already
recorded a distance for this loop (a distance coming from
@@ -2858,8 +2847,8 @@ add_multivariate_self_dist (struct data_dependence_relation *ddr, tree c_2)
/* For "{{0, +, 2}_1, +, 3}_2" the distance vector is (3, -2). */
dist_v = lambda_vector_new (DDR_NB_LOOPS (ddr));
- v1 = dd_int_cst_value (CHREC_RIGHT (c_1));
- v2 = dd_int_cst_value (CHREC_RIGHT (c_2));
+ v1 = int_cst_value (CHREC_RIGHT (c_1));
+ v2 = int_cst_value (CHREC_RIGHT (c_2));
cd = gcd (v1, v2);
v1 /= cd;
v2 /= cd;
@@ -3286,14 +3275,14 @@ init_omega_eq_with_af (omega_pb pb, unsigned eq,
return false;
var_idx = index_in_loop_nest (var, DDR_LOOP_NEST (ddr));
- pb->eqs[eq].coef[offset + var_idx + 1] = dd_int_cst_value (right);
+ pb->eqs[eq].coef[offset + var_idx + 1] = int_cst_value (right);
/* Compute the innermost loop index. */
DDR_INNER_LOOP (ddr) = MAX (DDR_INNER_LOOP (ddr), var_idx);
if (offset == 0)
pb->eqs[eq].coef[var_idx + DDR_NB_LOOPS (ddr) + 1]
- += dd_int_cst_value (right);
+ += int_cst_value (right);
switch (TREE_CODE (left))
{
@@ -3301,7 +3290,7 @@ init_omega_eq_with_af (omega_pb pb, unsigned eq,
return init_omega_eq_with_af (pb, eq, offset, left, ddr);
case INTEGER_CST:
- pb->eqs[eq].coef[0] += dd_int_cst_value (left);
+ pb->eqs[eq].coef[0] += int_cst_value (left);
return true;
default:
@@ -3310,7 +3299,7 @@ init_omega_eq_with_af (omega_pb pb, unsigned eq,
}
case INTEGER_CST:
- pb->eqs[eq].coef[0] += dd_int_cst_value (access_fun);
+ pb->eqs[eq].coef[0] += int_cst_value (access_fun);
return true;
default: