re PR middle-end/21082 (&a[b] - &a[c] is not folded to b - c)
authorRichard Guenther <rguenth@gcc.gnu.org>
Sat, 23 Apr 2005 21:34:40 +0000 (21:34 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Sat, 23 Apr 2005 21:34:40 +0000 (21:34 +0000)
2005-04-23  Richard Guenther  <rguenth@gcc.gnu.org>

PR middle-end/21082
* fold-const.c: Fold &a[i]-&a[j] to i-j.

* g++.dg/tree-ssa/pr21082.C: New testcase.

From-SVN: r98636

gcc/ChangeLog
gcc/fold-const.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/tree-ssa/pr21082.C [new file with mode: 0644]

index 8d7e15642716853f68786b244aa151537ffaa8d3..e0a065b7695bf2db28a6aa517cbc258be4ab9ed0 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-23  Richard Guenther  <rguenth@gcc.gnu.org>
+
+       PR middle-end/21082
+       * fold-const.c: Fold &a[i]-&a[j] to i-j.
+
 2005-04-23  Zdenek Dvorak  <dvorakz@suse.cz>
 
        * tree-ssa-loop-niter.c (tree_simplify_using_condition): Expand simple
index e928025700b86e7540bfe0f5c6ac593fb7ae82b2..a75d1a2506354ff0395d403dee77f6bf54d6cead 100644 (file)
@@ -7841,7 +7841,28 @@ fold_binary (enum tree_code code, tree type, tree op0, tree op1)
            && ptr_difference_const (arg0, arg1, &diff))
          return build_int_cst_type (type, diff);
       }
-         
+
+      /* Fold &a[i] - &a[j] to i-j.  */
+      if (TREE_CODE (arg0) == ADDR_EXPR
+         && TREE_CODE (TREE_OPERAND (arg0, 0)) == ARRAY_REF
+         && TREE_CODE (arg1) == ADDR_EXPR
+         && TREE_CODE (TREE_OPERAND (arg1, 0)) == ARRAY_REF)
+        {
+         tree aref0 = TREE_OPERAND (arg0, 0);
+         tree aref1 = TREE_OPERAND (arg1, 0);
+         if (operand_equal_p (TREE_OPERAND (aref0, 0),
+                              TREE_OPERAND (aref1, 0), 0))
+           {
+             tree op0 = fold_convert (type, TREE_OPERAND (aref0, 1));
+             tree op1 = fold_convert (type, TREE_OPERAND (aref1, 1));
+             tree esz = array_ref_element_size (aref0);
+             tree diff = build2 (MINUS_EXPR, type, op0, op1);
+             return fold_build2 (MULT_EXPR, type, diff,
+                                 fold_convert (type, esz));
+                                 
+           }
+       }
+
       /* Try replacing &a[i1] - c * i2 with &a[i1 - i2], if c is step
         of the array.  Loop optimizer sometimes produce this type of
         expressions.  */
index 819bb052c05ea1bd1ea58622753ba9b619127a73..48e1d3078bd984f7063d3573dead5e319ee9c106 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-23  Richard Guenther  <rguenth@gcc.gnu.org>
+
+       PR middle-end/21082
+       * g++.dg/tree-ssa/pr21082.C: New testcase.
+
 2005-04-23  Zdenek Dvorak  <dvorakz@suse.cz>
 
        * gcc.dg/vect/vect-99.c: New test.
diff --git a/gcc/testsuite/g++.dg/tree-ssa/pr21082.C b/gcc/testsuite/g++.dg/tree-ssa/pr21082.C
new file mode 100644 (file)
index 0000000..dab630f
--- /dev/null
@@ -0,0 +1,13 @@
+/* { dg-do link } */
+
+void link_error();
+
+int a[4];
+long b, c;
+
+int main()
+{
+       if (&a[b] - &a[c] != b - c)
+               link_error();
+       return 0;
+}