re PR inline-asm/92615 (ICE in extract_insn)
authorJakub Jelinek <jakub@redhat.com>
Sat, 23 Nov 2019 10:07:21 +0000 (11:07 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 23 Nov 2019 10:07:21 +0000 (11:07 +0100)
PR target/92615
* config/i386/i386.c (ix86_md_asm_adjust): If dest_mode is
GET_MODE (dest), is not QImode, using ZERO_EXTEND and dest is not
register_operand, force x into register before storing it into dest.
Formatting fix.

* gcc.target/i386/pr92615.c: New test.

From-SVN: r278642

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr92615.c [new file with mode: 0644]

index e57413167472ebc169ad0f7b5f22a0017c0499b0..eadbfc082d07a5c0fd3e4633b109e7ee27a5b7b7 100644 (file)
@@ -1,5 +1,11 @@
 2019-11-23  Jakub Jelinek  <jakub@redhat.com>
 
+       PR target/92615
+       * config/i386/i386.c (ix86_md_asm_adjust): If dest_mode is
+       GET_MODE (dest), is not QImode, using ZERO_EXTEND and dest is not
+       register_operand, force x into register before storing it into dest.
+       Formatting fix.
+
        PR middle-end/83859
        * doc/extend.texi (attribute access): Fix a typo.
 
index 7115ec44c2a41c5a22bbdedc08dfadb5b8386e55..780ebb85ef805f49c604e0a2bef9eadc8c126f4a 100644 (file)
@@ -20819,11 +20819,15 @@ ix86_md_asm_adjust (vec<rtx> &outputs, vec<rtx> &/*inputs*/,
            {
              x = force_reg (dest_mode, const0_rtx);
 
-             emit_insn (gen_movstrictqi
-                        (gen_lowpart (QImode, x), destqi));
+             emit_insn (gen_movstrictqi (gen_lowpart (QImode, x), destqi));
            }
          else
-           x = gen_rtx_ZERO_EXTEND (dest_mode, destqi);
+           {
+             x = gen_rtx_ZERO_EXTEND (dest_mode, destqi);
+             if (dest_mode == GET_MODE (dest)
+                 && !register_operand (dest, GET_MODE (dest)))
+               x = force_reg (dest_mode, x);
+           }
        }
 
       if (dest_mode != GET_MODE (dest))
index 1c8f1a00d43b5aabfad0e30299220fff00910062..db2b2ea10413ea321808eb0d9f5e8be869974416 100644 (file)
@@ -1,5 +1,8 @@
 2019-11-23  Jakub Jelinek  <jakub@redhat.com>
 
+       PR target/92615
+       * gcc.target/i386/pr92615.c: New test.
+
        PR rtl-optimization/92610
        * g++.dg/opt/pr92610.C: New test.
 
diff --git a/gcc/testsuite/gcc.target/i386/pr92615.c b/gcc/testsuite/gcc.target/i386/pr92615.c
new file mode 100644 (file)
index 0000000..b84bfcd
--- /dev/null
@@ -0,0 +1,45 @@
+/* PR target/92615 */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+void *a;
+long long b;
+char c;
+
+void
+foo (void)
+{
+  void *p;
+  long long q;
+  char r;
+  __asm__ ("" : : "r" (&p), "r" (&q), "r" (&r));
+  __asm__ ("" : "=@cca" (p));
+  a = p;
+  __asm__ ("" : "=@cca" (q));
+  b = q;
+  __asm__ ("" : "=@cca" (r));
+  c = r;
+  __asm__ ("" : : "r" (&p), "r" (&q), "r" (&r));
+}
+
+void
+bar (void)
+{
+  void *p;
+  long long q;
+  char r;
+  __asm__ ("" : "=@cca" (p));
+  a = p;
+  __asm__ ("" : "=@cca" (q));
+  b = q;
+  __asm__ ("" : "=@cca" (r));
+  c = r;
+  __asm__ ("" : : "r" (p), "A" (q), "q" (r));
+}
+
+void
+baz (void)
+{
+  void *p = (void *) &p;
+  __asm__ __volatile__ ("" : "=@ccng" (p) : "r" (1));
+}