re PR target/89752 (ICE in emit_move_insn, at expr.c:3723)
authorJakub Jelinek <jakub@redhat.com>
Tue, 19 Mar 2019 08:11:25 +0000 (09:11 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 19 Mar 2019 08:11:25 +0000 (09:11 +0100)
PR target/89752
* gimplify.c (gimplify_asm_expr): For output argument with
TREE_ADDRESSABLE type, clear allows_reg if it allows memory, otherwise
diagnose error.

* g++.dg/ext/asm15.C: Check for particular diagnostic wording.
* g++.dg/ext/asm16.C: Likewise.
* g++.dg/ext/asm17.C: New test.

From-SVN: r269793

gcc/ChangeLog
gcc/gimplify.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/asm15.C
gcc/testsuite/g++.dg/ext/asm16.C
gcc/testsuite/g++.dg/ext/asm17.C [new file with mode: 0644]

index 5ef58714b3e59e65a7989c751245a56f7c316fb9..f96d515a92e86013e89f9f0f0c3e4ac05e616316 100644 (file)
@@ -1,3 +1,10 @@
+2019-03-19  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/89752
+       * gimplify.c (gimplify_asm_expr): For output argument with
+       TREE_ADDRESSABLE type, clear allows_reg if it allows memory, otherwise
+       diagnose error.
+
 2019-03-19  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR rtl-optimization/89753
index 6d7a314719dec98f7da83f895c77cbb6358437e6..e264700989f0c35dfafa01d440b0720e85771398 100644 (file)
@@ -6155,6 +6155,19 @@ gimplify_asm_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
          is_inout = false;
        }
 
+      /* If we can't make copies, we can only accept memory.  */
+      if (TREE_ADDRESSABLE (TREE_TYPE (TREE_VALUE (link))))
+       {
+         if (allows_mem)
+           allows_reg = 0;
+         else
+           {
+             error ("impossible constraint in %<asm%>");
+             error ("non-memory output %d must stay in memory", i);
+             return GS_ERROR;
+           }
+       }
+
       if (!allows_reg && allows_mem)
        mark_addressable (TREE_VALUE (link));
 
index 4e35805af654f420b9418bc7f65b0fa355d511bc..86be3ca10601c2d52cc229dee5b25cda8dba5abc 100644 (file)
@@ -1,3 +1,10 @@
+2019-03-19  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/89752
+       * g++.dg/ext/asm15.C: Check for particular diagnostic wording.
+       * g++.dg/ext/asm16.C: Likewise.
+       * g++.dg/ext/asm17.C: New test.
+
 2019-03-19  Eric Botcazou  <ebotcazou@adacore.com>
 
        * c-c++-common/unroll-7.c: New test.
index c4946ddc5367019eb1e223226256fff4b06bfebe..6c6f3dfc3db3b8adee6a1f604e754376ed5c87bc 100644 (file)
@@ -6,5 +6,6 @@ struct S { S (); ~S (); int s; };
 void
 foo (S &s)
 {
-  __asm volatile ("" : "+r" (s) : : "memory"); // { dg-error "" }
+  __asm volatile ("" : "+r" (s) : : "memory"); // { dg-error "impossible constraint" }
+                                               // { dg-error "must stay in memory" "" { target *-*-* } .-1 }
 }
index 565cbb33e5f6cc8b605c99e16ec4120c68bf54cb..9ebb4dc15f9a45ffada74c9dabc8822f9c6fcb44 100644 (file)
@@ -6,5 +6,6 @@ struct S { S (); ~S (); int s[64]; } s;
 void
 foo ()
 {
-  __asm volatile ("" : "=r" (s) : : "memory"); // { dg-error "" }
+  __asm volatile ("" : "=r" (s) : : "memory"); // { dg-error "impossible constraint" }
+                                               // { dg-error "must stay in memory" "" { target *-*-* } .-1 }
 }
diff --git a/gcc/testsuite/g++.dg/ext/asm17.C b/gcc/testsuite/g++.dg/ext/asm17.C
new file mode 100644 (file)
index 0000000..9e7de37
--- /dev/null
@@ -0,0 +1,11 @@
+// PR target/89752
+// { dg-do compile }
+
+struct A { A (); ~A (); short c; };
+
+void
+foo ()
+{
+  A a0, a1;
+  __asm volatile ("" : "+rm" (a0), "+rm" (a1));
+}