predicates.md (input_operand): Add comment.
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 19 Apr 2017 08:05:36 +0000 (08:05 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 19 Apr 2017 08:05:36 +0000 (08:05 +0000)
* config/sparc/predicates.md (input_operand): Add comment.  Return
true for any memory operand when LRA is in progress.
* config/sparc/sparc.c (sparc_expand_move): Minor formatting fix.

Co-Authored-By: Jeff Law <law@redhat.com>
Co-Authored-By: Vladimir Makarov <vmakarov@redhat.com>
From-SVN: r246989

gcc/ChangeLog
gcc/config/sparc/predicates.md
gcc/config/sparc/sparc.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/20170419-1.c [new file with mode: 0644]

index 7aa8c03c45b4ae1eea6130f81c3745515e3074aa..d52db8a36095c6bd634ca003a4ced82f0d2d0723 100644 (file)
@@ -1,3 +1,10 @@
+2017-04-19  Eric Botcazou  <ebotcazou@adacore.com>
+            Vladimir Makarov  <vmakarov@redhat.com>
+
+       * config/sparc/predicates.md (input_operand): Add comment.  Return
+       true for any memory operand when LRA is in progress.
+       * config/sparc/sparc.c (sparc_expand_move): Minor formatting fix.
+
 2017-04-18  Jeff Law  <law@redhat.com>
 
        PR target/74563
index 118ed916ad9332eccdd7cdffaa8e8297f793091b..951933efb3936446cbe11127db8e8d01bfb868a6 100644 (file)
   if (TARGET_ARCH32 && mode == DImode && GET_CODE (op) == CONST_INT)
     return true;
 
+  /* Allow FP constants to be built in integer registers.  */
   if (mclass == MODE_FLOAT && GET_CODE (op) == CONST_DOUBLE)
     return true;
 
 
   /* Check for valid MEM forms.  */
   if (GET_CODE (op) == MEM)
-    return memory_address_p (mode, XEXP (op, 0));
+    {
+      /* Except when LRA is precisely working hard to make them valid
+        and relying entirely on the constraints.  */
+      if (lra_in_progress)
+       return true;
+
+      return memory_address_p (mode, XEXP (op, 0));
+    }
 
   return false;
 })
index 16ca444518f4647bb2280215bc4955d1b4eaca75..8277496964acf2f954c187c3c23a2ca1796fc34b 100644 (file)
@@ -1911,9 +1911,8 @@ sparc_expand_move (machine_mode mode, rtx *operands)
          /* We are able to build any SF constant in integer registers
             with at most 2 instructions.  */
          && (mode == SFmode
-             /* And any DF constant in integer registers.  */
-             || (mode == DFmode
-                 && ! can_create_pseudo_p ())))
+             /* And any DF constant in integer registers if needed.  */
+             || (mode == DFmode && !can_create_pseudo_p ())))
        return false;
 
       operands[1] = force_const_mem (mode, operands[1]);
index 90fdddb5f91e87f46224e2f201353a57a7285053..8f2cfffd9996a0eb90ec18f582cc36ddbea3305d 100644 (file)
@@ -1,3 +1,8 @@
+2017-04-19  Eric Botcazou  <ebotcazou@adacore.com>
+            Jeff Law  <law@redhat.com>
+
+       * gcc.c-torture/compile/20170419-1.c: New test.
+
 2017-04-19  Tom de Vries  <tom@codesourcery.com>
 
        PR testsuite/80221
diff --git a/gcc/testsuite/gcc.c-torture/compile/20170419-1.c b/gcc/testsuite/gcc.c-torture/compile/20170419-1.c
new file mode 100644 (file)
index 0000000..c16a5ea
--- /dev/null
@@ -0,0 +1,13 @@
+extern int __fpclassifyd (double x);
+
+double fdim (double x, double y)
+{
+   int c = __fpclassifyd (x);
+   if (c == 0)
+     return (x);
+   if (__fpclassifyd (y) == 0)
+     return (y);
+   if (c == 1)
+     return (__builtin_huge_val ());
+   return x > y ? x - y : 0.0;
+}