target: [PR102941] Fix inline-asm flags with non-REG_P output
authorAndrew Pinski <apinski@marvell.com>
Tue, 26 Oct 2021 07:28:09 +0000 (07:28 +0000)
committerAndrew Pinski <apinski@marvell.com>
Fri, 7 Jan 2022 22:02:44 +0000 (22:02 +0000)
So the problem here is that arm_md_asm_adjust would
just create a set directly to the output memory which is wrong.
It needs to output to a temp register first and then do a
move.

OK? Bootstrapped and tested on aarch64-linux-gnu with no regressions.
I have no way to test on arm even though this touches common code.

PR target/102941

gcc/ChangeLog:

* config/arm/aarch-common.c (arm_md_asm_adjust):
Use a temp if !REG_P.

gcc/testsuite/ChangeLog:

* gcc.target/aarch64/asm-flag-7.c: New test.
* gcc.target/arm/asm-flag-7.c: New test.

gcc/config/arm/aarch-common.c
gcc/testsuite/gcc.target/aarch64/asm-flag-7.c [new file with mode: 0644]
gcc/testsuite/gcc.target/arm/asm-flag-7.c [new file with mode: 0644]

index 812017a..04a53d7 100644 (file)
@@ -641,7 +641,7 @@ arm_md_asm_adjust (vec<rtx> &outputs, vec<rtx> & /*inputs*/,
       rtx x = gen_rtx_REG (mode, CC_REGNUM);
       x = gen_rtx_fmt_ee (code, word_mode, x, const0_rtx);
 
-      if (dest_mode == word_mode)
+      if (dest_mode == word_mode && REG_P (dest))
        emit_insn (gen_rtx_SET (dest, x));
       else
        {
diff --git a/gcc/testsuite/gcc.target/aarch64/asm-flag-7.c b/gcc/testsuite/gcc.target/aarch64/asm-flag-7.c
new file mode 100644 (file)
index 0000000..6c31b85
--- /dev/null
@@ -0,0 +1,22 @@
+/* Test that "=@cc*" works with MEM_P RTX  */
+/* PR target/102941 */
+/* { dg-do compile } */
+/* { dg-options "-O" } */
+
+#ifndef __GCC_ASM_FLAG_OUTPUTS__
+#error "missing preprocessor define"
+#endif
+int test_cmpu_x;
+
+void f(long *);
+long
+test_cmpu_y() {
+  long le;
+  f(&le);
+  __asm__("cmp %"
+          "[x], %"
+          "[y]"
+          : "=@ccls"(le)
+          : [x] ""(test_cmpu_x), [y] ""(test_cmpu_y));
+    return le;
+}
diff --git a/gcc/testsuite/gcc.target/arm/asm-flag-7.c b/gcc/testsuite/gcc.target/arm/asm-flag-7.c
new file mode 100644 (file)
index 0000000..ac11da0
--- /dev/null
@@ -0,0 +1,23 @@
+/* Test that "=@cc*" works with MEM_P RTX  */
+/* PR target/102941 */
+/* { dg-do compile } */
+/* { dg-options "-O" } */
+/* { dg-skip-if "" { arm_thumb1 } } */
+
+#ifndef __GCC_ASM_FLAG_OUTPUTS__
+#error "missing preprocessor define"
+#endif
+int test_cmpu_x;
+
+void f(long *);
+long
+test_cmpu_y() {
+  long le;
+  f(&le);
+  __asm__("cmp %"
+          "[x], %"
+          "[y]"
+          : "=@ccls"(le)
+          : [x] ""(test_cmpu_x), [y] ""(test_cmpu_y));
+    return le;
+}