tree-optimization/98758 - fix integer arithmetic in data-ref analysis
authorRichard Biener <rguenther@suse.de>
Wed, 20 Jan 2021 07:48:34 +0000 (08:48 +0100)
committerRichard Biener <rguenther@suse.de>
Wed, 20 Jan 2021 08:38:22 +0000 (09:38 +0100)
This fixes some int arithmetic issues and a bogus truncation.

2021-01-20  Richard Biener  <rguenther@suse.de>

PR tree-optimization/98758
* tree-data-ref.c (int_divides_p): Use lambda_int arguments.
(lambda_matrix_right_hermite): Avoid undefinedness with
signed integer abs and multiplication.
(analyze_subscript_affine_affine): Use lambda_int.

* gcc.dg/torture/pr98758.c: New testcase.

gcc/testsuite/gcc.dg/torture/pr98758.c [new file with mode: 0644]
gcc/tree-data-ref.c

diff --git a/gcc/testsuite/gcc.dg/torture/pr98758.c b/gcc/testsuite/gcc.dg/torture/pr98758.c
new file mode 100644 (file)
index 0000000..7b9fdb2
--- /dev/null
@@ -0,0 +1,13 @@
+/* { dg-do compile } */
+
+long *a, *b;
+long c;
+void d(void)
+{
+  b = a;
+  while (c) {
+    *a = (__INTPTR_TYPE__)(a += (long)1 << (sizeof(long) * 8 - 10));
+    c = b[0];
+    b = a;
+  }
+}
index 65fe6d5da91e996fe8ebbb7d76bfa41f8be6ae47..9d07b415e9d1a7acadcdbda188fa216a7c6de3c2 100644 (file)
@@ -143,7 +143,7 @@ tree_fold_divides_p (const_tree a, const_tree b)
 /* Returns true iff A divides B.  */
 
 static inline bool
-int_divides_p (int a, int b)
+int_divides_p (lambda_int a, lambda_int b)
 {
   return ((b % a) == 0);
 }
@@ -4280,10 +4280,10 @@ lambda_matrix_right_hermite (lambda_matrix A, int m, int n,
 
                  a = S[i-1][j];
                  b = S[i][j];
-                 sigma = (a * b < 0) ? -1: 1;
-                 a = abs_hwi (a);
-                 b = abs_hwi (b);
-                 factor = sigma * (a / b);
+                 sigma = ((a < 0) ^ (b < 0)) ? -1: 1;
+                 unsigned HOST_WIDE_INT abs_a = absu_hwi (a);
+                 unsigned HOST_WIDE_INT abs_b = absu_hwi (b);
+                 factor = sigma * (lambda_int)(abs_a / abs_b);
 
                  lambda_matrix_row_add (S, n, i, i-1, -factor);
                  std::swap (S[i], S[i-1]);
@@ -4309,7 +4309,7 @@ analyze_subscript_affine_affine (tree chrec_a,
                                 tree *last_conflicts)
 {
   unsigned nb_vars_a, nb_vars_b, dim;
-  HOST_WIDE_INT gamma, gcd_alpha_beta;
+  lambda_int gamma, gcd_alpha_beta;
   lambda_matrix A, U, S;
   struct obstack scratch_obstack;