]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR middle-end/69909 (wrong code with -Os and vectors @ x86_64)
authorJakub Jelinek <jakub@redhat.com>
Wed, 24 Feb 2016 08:36:16 +0000 (09:36 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 24 Feb 2016 08:36:16 +0000 (09:36 +0100)
PR middle-end/69909
* expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
set_mem_attributes if tem is SSA_NAME which got expanded
as a MEM.

* gcc.dg/torture/pr69909.c: New test.

Co-Authored-By: Richard Biener <rguenther@suse.de>
From-SVN: r233656

gcc/ChangeLog
gcc/expr.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr69909.c [new file with mode: 0644]

index dc87f1b5d64f5482a94b232ae8d3d8a8ed708c7f..03f7a326d2682e0e77e8b5d1030ff5ba4c0097e6 100644 (file)
@@ -1,3 +1,11 @@
+2016-02-24  Jakub Jelinek  <jakub@redhat.com>
+           Richard Biener  <rguenth@suse.de>
+
+       PR middle-end/69909
+       * expr.c (expand_expr_real_1) <normal_inner_ref>: Avoid
+       set_mem_attributes if tem is SSA_NAME which got expanded
+       as a MEM.
+
 2016-02-24  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/69907
index 1b89a63201739392633b74b877b61f18405f4291..29d22b07256ce0adcb8c8eae5249847e144caf4b 100644 (file)
@@ -10521,7 +10521,11 @@ expand_expr_real_1 (tree exp, rtx target, machine_mode tmode,
        if (op0 == orig_op0)
          op0 = copy_rtx (op0);
 
-       set_mem_attributes (op0, exp, 0);
+       /* Don't set memory attributes if the base expression is
+          SSA_NAME that got expanded as a MEM.  In that case, we should
+          just honor its original memory attributes.  */
+       if (TREE_CODE (tem) != SSA_NAME || !MEM_P (orig_op0))
+         set_mem_attributes (op0, exp, 0);
 
        if (REG_P (XEXP (op0, 0)))
          mark_reg_pointer (XEXP (op0, 0), MEM_ALIGN (op0));
index d716932e42f21f5483ecddc97323c366378b8612..f09672b07831b31d241a5accf9b741114c28784c 100644 (file)
@@ -1,3 +1,8 @@
+2016-02-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/69909
+       * gcc.dg/torture/pr69909.c: New test.
+
 2016-02-24  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/69907
diff --git a/gcc/testsuite/gcc.dg/torture/pr69909.c b/gcc/testsuite/gcc.dg/torture/pr69909.c
new file mode 100644 (file)
index 0000000..fb36c80
--- /dev/null
@@ -0,0 +1,35 @@
+/* PR middle-end/69909 */
+/* { dg-do run { target int128 } } */
+/* { dg-additional-options "-w" } */
+
+typedef unsigned V __attribute__ ((vector_size (32)));
+typedef __int128 T;
+typedef __int128 U __attribute__ ((vector_size (32)));
+
+__attribute__((noinline, noclone)) T
+foo (T a, V b, V c, V d, V e, U f)
+{
+  d[6] ^= 0x10;
+  f -= (U) d;
+  f[1] |= f[1] << (a & 127);
+  c ^= d;
+  return b[7] + c[2] + c[2] + d[6] + e[2] + f[1];
+}
+
+int
+main ()
+{
+  if (__CHAR_BIT__ != 8 || sizeof (unsigned) != 4 || sizeof (T) != 16)
+    return 0;
+
+  T x = foo (1, (V) { 9, 2, 5, 8, 1, 2, 9, 3 },
+               (V) { 1, 2, 3, 4, 5, 6, 7, 8 },
+               (V) { 4, 1, 2, 9, 8, 3, 5, 2 },
+               (V) { 3, 6, 1, 3, 2, 9, 4, 8 }, (U) { 3, 5 });
+  if (((unsigned long long) (x >> 64) != 0xffffffffffffffffULL
+       || (unsigned long long) x != 0xfffffffe0000001aULL)
+      && ((unsigned long long) (x >> 64) != 0xfffffffffffffffdULL
+         || (unsigned long long) x != 0xffffffff00000022ULL))
+    __builtin_abort ();
+  return 0;
+}