public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] fold-const: do not fold 'inf/inf' with -ftrapping-math [PR95115]
@ 2022-01-30 18:39 Xi Ruoyao
  2022-01-31  9:35 ` Richard Biener
  0 siblings, 1 reply; 7+ messages in thread
From: Xi Ruoyao @ 2022-01-30 18:39 UTC (permalink / raw)
  To: gcc-patches

'inf/inf' should raise an invalid operation exception at runtime.  So it
should not be folded during compilation unless -fno-trapping-math is
used.

gcc/
	PR middle-end/95115
	* fold-const.cc (const_binop): Do not fold "inf/inf".

gcc/testsuite
	* gcc.dg/pr95115.c: New test.
---
 gcc/fold-const.cc              |  8 ++++++++
 gcc/testsuite/gcc.dg/pr95115.c | 25 +++++++++++++++++++++++++
 2 files changed, 33 insertions(+)
 create mode 100644 gcc/testsuite/gcc.dg/pr95115.c

diff --git a/gcc/fold-const.cc b/gcc/fold-const.cc
index fd9c6352d4f..0e99d5a2e3d 100644
--- a/gcc/fold-const.cc
+++ b/gcc/fold-const.cc
@@ -1283,6 +1283,14 @@ const_binop (enum tree_code code, tree arg1, tree arg2)
 	  && (flag_trapping_math || ! MODE_HAS_INFINITIES (mode)))
 	return NULL_TREE;
 
+      /* Don't perform "inf/inf", because it would raise an invalid
+	 operation exception (IEEE 754 section 7.2 clause d).  */
+      if (code == RDIV_EXPR
+	  && flag_trapping_math
+	  && REAL_VALUE_ISINF (d1)
+	  && REAL_VALUE_ISINF (d2))
+	return NULL_TREE;
+
       /* If either operand is a NaN, just return it.  Otherwise, set up
 	 for floating-point trap; we return an overflow.  */
       if (REAL_VALUE_ISNAN (d1))
diff --git a/gcc/testsuite/gcc.dg/pr95115.c b/gcc/testsuite/gcc.dg/pr95115.c
new file mode 100644
index 00000000000..46a95dfb698
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr95115.c
@@ -0,0 +1,25 @@
+/* { dg-do run } */
+/* { dg-options "-O2 -ftrapping-math" } */
+/* { dg-add-options ieee } */
+/* { dg-require-effective-target fenv_exceptions } */
+
+#include <fenv.h>
+#include <stdlib.h>
+
+double
+x (void)
+{
+  double d = __builtin_inf ();
+  return d / d;
+}
+
+int
+main (void)
+{
+  double r = x ();
+  if (!__builtin_isnan (r))
+	abort ();
+  if (!fetestexcept (FE_INVALID))
+	abort ();
+  exit (0);
+}
-- 
2.35.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-02-01  7:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-30 18:39 [PATCH] fold-const: do not fold 'inf/inf' with -ftrapping-math [PR95115] Xi Ruoyao
2022-01-31  9:35 ` Richard Biener
2022-01-31 10:07   ` Xi Ruoyao
2022-01-31 14:57     ` Richard Biener
2022-02-01  5:10       ` [PATCH] fold-const: do not fold NaN result from non-NaN operands (was: Re: [PATCH] fold-const: do not fold 'inf/inf' with -ftrapping-math [PR95115]) Xi Ruoyao
2022-02-01  7:19         ` Richard Biener
2022-01-31 23:32   ` [PATCH] fold-const: do not fold 'inf/inf' with -ftrapping-math [PR95115] Joseph Myers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).