[ARC] Update fma expansions.
authorClaudiu Zissulescu <claziss@synopsys.com>
Wed, 13 Jun 2018 08:54:09 +0000 (10:54 +0200)
committerClaudiu Zissulescu <claziss@gcc.gnu.org>
Wed, 13 Jun 2018 08:54:09 +0000 (10:54 +0200)
Accept at most a single constant for fma patterns.

gcc/
2018-03-21  Claudiu Zissulescu  <claziss@synopsys.com>

* config/arc/fpu.md (fmasf4): Force operand to register.
(fnmasf4): Likewise.

gcc/testsuite
2018-03-21  Claudiu Zissulescu  <claziss@synopsys.com>

* gcc.target/arc/fma-1.c: New test.

From-SVN: r261543

gcc/ChangeLog
gcc/config/arc/fpu.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/arc/fma-1.c [new file with mode: 0644]

index ce7197bf27c201f259f24e5b44e7592d5d34701c..34eb1d962a7db081370c5e98d7582a334f60b229 100644 (file)
@@ -1,3 +1,8 @@
+2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
+
+       * config/arc/fpu.md (fmasf4): Force operand to register.
+       (fnmasf4): Likewise.
+
 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
 
        * config/arc/arc-protos.h (arc_pad_return): Remove.
index 5c56f76c67996ac542974fc2347b4d46bda2025c..66a4d91616fdb5fe7f5b6ae45a573a7acb080078 100644 (file)
@@ -64,6 +64,9 @@
    tmp = gen_rtx_REG (SFmode, ACCL_REGNO);
    emit_move_insn (tmp, operands[3]);
    operands[3] = tmp;
+   if (!register_operand (operands[1], SFmode)
+        && !register_operand (operands[2], SFmode))
+     operands[2] = force_reg (SFmode, operands[2]);
    }")
 
 (define_expand "fnmasf4"
@@ -77,6 +80,9 @@
    tmp = gen_rtx_REG (SFmode, ACCL_REGNO);
    emit_move_insn (tmp, operands[3]);
    operands[3] = tmp;
+   if (!register_operand (operands[1], SFmode)
+        && !register_operand (operands[2], SFmode))
+     operands[2] = force_reg (SFmode, operands[2]);
 }")
 
 (define_insn "fmasf4_fpu"
index 572424df1faa0b89d3d007d5f27372c71d9e602e..cb680c727ae617d051c3c74e17be31245ff406b8 100644 (file)
@@ -1,3 +1,7 @@
+2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
+
+       * gcc.target/arc/fma-1.c: New test.
+
 2018-06-12  Claudiu Zissulescu  <claziss@synopsys.com>
 
        * gcc.target/arc/pr9001107555.c: New file.
diff --git a/gcc/testsuite/gcc.target/arc/fma-1.c b/gcc/testsuite/gcc.target/arc/fma-1.c
new file mode 100644 (file)
index 0000000..c195ad9
--- /dev/null
@@ -0,0 +1,13 @@
+/* { dg-do compile } */
+/* { dg-skip-if "FPU not available" { arc700 || arc6xx } } */
+/* { dg-options "-s -std=gnu11  -O2 -frounding-math -mfpu=fpus_all" } */
+
+const float a, b = 7.8539818525e01;
+
+/* Check if the fma operation is generated correctly.  */
+
+int foo (void)
+{
+  return (float)3.0 * b + a;
+}
+/* { dg-final { scan-assembler "fsmadd" } } */