diff mbox series

[frange] Relax floating point relational folding.

Message ID 20230823152209.351604-1-aldyh@redhat.com
State New
Headers show
Series [frange] Relax floating point relational folding. | expand

Commit Message

Aldy Hernandez Aug. 23, 2023, 3:22 p.m. UTC
[Jakub/Andrew: I've been staring at this for far too long and could
use another pair of eyes.]

This patch implements a new frelop_early_resolve() that handles the
NAN special cases instead of calling into the integer version which
can break for some combinations.  Relaxing FP conditional folding in
this matter allows ranger to do a better job resulting in more
threading opportunities, among other things.

In auditing ranger versus DOM scoped tables I've noticed we are too
cautious when folding floating point conditionals involving
relationals.  We refuse to fold anything if there is the possibility
of a NAN, but this is overly restrictive.

For example:

  if (x_5 != y_8)
    if (x_5 != y_8)
      link_error ();

In range-ops, we fail to fold the second conditional because
frelop_early_resolve bails on anything that may have a NAN, but in the
above case the possibility of a NAN is inconsequential.

However, there are some cases where we must be careful, because a NAN
can complicate matters:

  if (x_5 == x_5)
   ...

Here the operands to EQ_EXPR are the same so we get VREL_EQ as the
relation.  However, we can't fold the conditional unless we know x_5
cannot be a NAN.

On the other hand, we can fold the second conditional here:

  if (x_5 == x_5)
    if (x_5 > x_5)

Because on the TRUE side of the first conditional we are guaranteed to
be free of NANs.

This patch is basically an inline of the integer version of
relop_early_resolve() with special casing for floats.

The main thing to keep in mind is that the relation coming into a
range-op entry may have a NAN, and for that one must look at the
operands.  This makes the relations akin to unordered comparisons,
making VREL_LT behave like VREL_UNLT would.

The tricky corner cases are VREL_EQ and VREL_NE, as discussed above.
Apart from these that are special cased, the relation table for
intersect should work fine for returning a FALSE, even with NANs.  The
union table, not so much and is documented in the code.

This allows us to add some optimizations for the unordered operators.
For example, a relation of VREL_LT on entry to an operator allows us
to fold an UNLT_EXPR as true, even with NANs because in this case
VREL_LT is really VREL_UNLT which maps perfectly.

BTW, we batted some ideas on how to get this work, and it seems this
is the cleaner route with the special cases nestled in the operators
themselves.  Another idea is to add unordered relations, but that
would require bloating the various tables adding spots for VREL_UNEQ,
VREL_UNLT, etc, plus adding relations for VREL_UNORDERED so the
intersects work correctly.  I'm not wed to either one, and we can
certainly revisit this if it becomes burdensome to maintain (or to get
right).

I'll hold off until the end of the week to commit, to wait for
feedback.

Tested on x86-64 Linux.

gcc/ChangeLog:

	* range-op-float.cc (frelop_early_resolve): Rewrite for better NAN
	handling.
	(operator_not_equal::fold_range): Adjust for relations.
	(operator_lt::fold_range): Same.
	(operator_gt::fold_range): Same.
	(foperator_unordered_equal::fold_range): Same.
	(foperator_unordered_lt::fold_range): Same.
	(foperator_unordered_le::fold_range): Same.
	(foperator_unordered_gt::fold_range): Same.
	(foperator_unordered_ge::fold_range): Same.

gcc/testsuite/ChangeLog:

	* gcc.dg/tree-ssa/vrp-float-12.c: New test.
---
 gcc/range-op-float.cc                        | 148 +++++++++++++++----
 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-12.c |  23 +++
 2 files changed, 143 insertions(+), 28 deletions(-)
 create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/vrp-float-12.c

Comments

Jakub Jelinek Aug. 28, 2023, 7:01 a.m. UTC | #1
On Wed, Aug 23, 2023 at 05:22:00PM +0200, Aldy Hernandez via Gcc-patches wrote:
> BTW, we batted some ideas on how to get this work, and it seems this
> is the cleaner route with the special cases nestled in the operators
> themselves.  Another idea is to add unordered relations, but that
> would require bloating the various tables adding spots for VREL_UNEQ,
> VREL_UNLT, etc, plus adding relations for VREL_UNORDERED so the
> intersects work correctly.  I'm not wed to either one, and we can
> certainly revisit this if it becomes burdensome to maintain (or to get
> right).

My strong preference would be to have the full set of operations,
i.e. VREL_LTGT, VREL_{,UN}ORDERED, VREL_UN{LT,LE,GT,GE,EQ}, then everything
will fall out of this cleanly, not just some common special cases, but
also unions of them, intersections etc.
The only important question is if you want to differentiate VREL_*
for floating point comparisions with possible NANs vs. other comparisons
in the callers, then one needs effectively e.g. 2 sets of rr_* tables
in value-relation.cc and what exactly say VREL_EQ inverts to etc. is then
dependent on the context (this is what we do at the tree level normally,
e.g. fold-const.cc (invert_tree_comparison) has honor_nans argument),
or whether it would be a completely new set of value relations, so
even for EQ/NE etc. one would use VRELF_ or something similar.

	Jakub
Aldy Hernandez Sept. 19, 2023, 7:17 p.m. UTC | #2
Hi Jakub.

I wasn't ignoring you, just quietly thinking, making sure we weren't
missing anything.  In the process I cleaned everything, which
hopefully makes it easier to see why we don't need relationals (the
key is to look at frelop_early_resolve() and the op1/op2_range entries
which clear the NAN bits).

I am committing the patch below, and as I say in it:

    I don't mean this patch as a hard-no against implementing the
    unordered relations Jakub preferred, but seeing that it's looking
    cleaner and trivially simple without the added burden of more enums,
    I'd like to flesh it out completely and then discuss if we still think
    new codes are needed.  At least now we have tests :).

Please let me know if you have any test cases you think we may be
missing.  FYI, I'm still not done with the unordered folders.

Tested on x86-64 Linux.  Committed.
Aldy

On Mon, Aug 28, 2023 at 3:01 AM Jakub Jelinek <jakub@redhat.com> wrote:
>
> On Wed, Aug 23, 2023 at 05:22:00PM +0200, Aldy Hernandez via Gcc-patches wrote:
> > BTW, we batted some ideas on how to get this work, and it seems this
> > is the cleaner route with the special cases nestled in the operators
> > themselves.  Another idea is to add unordered relations, but that
> > would require bloating the various tables adding spots for VREL_UNEQ,
> > VREL_UNLT, etc, plus adding relations for VREL_UNORDERED so the
> > intersects work correctly.  I'm not wed to either one, and we can
> > certainly revisit this if it becomes burdensome to maintain (or to get
> > right).
>
> My strong preference would be to have the full set of operations,
> i.e. VREL_LTGT, VREL_{,UN}ORDERED, VREL_UN{LT,LE,GT,GE,EQ}, then everything
> will fall out of this cleanly, not just some common special cases, but
> also unions of them, intersections etc.
> The only important question is if you want to differentiate VREL_*
> for floating point comparisions with possible NANs vs. other comparisons
> in the callers, then one needs effectively e.g. 2 sets of rr_* tables
> in value-relation.cc and what exactly say VREL_EQ inverts to etc. is then
> dependent on the context (this is what we do at the tree level normally,
> e.g. fold-const.cc (invert_tree_comparison) has honor_nans argument),
> or whether it would be a completely new set of value relations, so
> even for EQ/NE etc. one would use VRELF_ or something similar.
>
>         Jakub
>
diff mbox series

Patch

diff --git a/gcc/range-op-float.cc b/gcc/range-op-float.cc
index e30b489c410..14199647744 100644
--- a/gcc/range-op-float.cc
+++ b/gcc/range-op-float.cc
@@ -268,22 +268,75 @@  maybe_isnan (const frange &op1, const frange &op2)
   return op1.maybe_isnan () || op2.maybe_isnan ();
 }
 
-// Floating version of relop_early_resolve that takes into account NAN
-// and -ffinite-math-only.
+// Floating point version of relop_early_resolve that takes NANs into
+// account.
+//
+// For relation opcodes, first try to see if the supplied relation
+// forces a true or false result, and return that.
+// Then check for undefined operands.  If none of this applies,
+// return false.
+//
+// TRIO are the relations between operands as they appear in the IL.
+// MY_REL is the relation that corresponds to the operator being
+// folded.  For example, when attempting to fold x_3 == y_5, MY_REL is
+// VREL_EQ, and if the statement is dominated by x_3 > y_5, then
+// TRIO.op1_op2() is VREL_GT.
+//
+// Relations in a floating point world are a bit tricky, as TRIO
+// behaves as the corresponding unordered variant if either operand
+// could be a NAN.  For example, when resolving "if (x_5 == x_5)", the
+// relation is VREL_EQ, but it behaves like VREL_UNEQ if NANs are a
+// possibility.  Similarly, the false edge of "if (x >= y)" has a
+// relation of VREL_LT, but behaves as VREL_UNLT unless we can prove
+// neither operand can be NAN.
+//
+// ?? It is unclear whether providing unordered VREL relations would
+// simplify things, as we'd have to add more entries to various
+// tables, tweak all the op1_op2_relation() entries, etc.
 
 static inline bool
 frelop_early_resolve (irange &r, tree type,
 		      const frange &op1, const frange &op2,
-		      relation_trio rel, relation_kind my_rel)
+		      relation_trio trio, relation_kind my_rel)
 {
+  relation_kind rel = trio.op1_op2 ();
+
+  if (maybe_isnan (op1, op2))
+    {
+      // There's not much we can do for VREL_EQ if NAN is a
+      // possibility.  It is up to the caller to deal with these
+      // special cases.
+      if (rel == VREL_EQ)
+	return empty_range_varying (r, type, op1, op2);
+    }
+  // If known relation is a complete subset of this relation, always
+  // return true.  However, avoid doing this when NAN is a possibility
+  // as we'll incorrectly fold conditions:
+  //
+  //   if (x_3 >= y_5)
+  //     ;
+  //   else
+  //     ;; With NANs the relation here is basically VREL_UNLT, so we
+  //     ;; can't fold the following:
+  //     if (x_3 < y_5)
+  else if (relation_union (rel, my_rel) == my_rel)
+    {
+      r = range_true (type);
+      return true;
+    }
+
+  // If known relation has no subset of this relation, always false.
+  if (relation_intersect (rel, my_rel) == VREL_UNDEFINED)
+    {
+      r = range_false (type);
+      return true;
+    }
+
   // If either operand is undefined, return VARYING.
   if (empty_range_varying (r, type, op1, op2))
     return true;
 
-  // We can fold relations from the oracle when we know both operands
-  // are free of NANs, or when -ffinite-math-only.
-  return (!maybe_isnan (op1, op2)
-	  && relop_early_resolve (r, type, op1, op2, rel, my_rel));
+  return false;
 }
 
 // Set VALUE to its next real value, or INF if the operation overflows.
@@ -738,9 +791,17 @@  operator_equal::op1_op2_relation (const irange &lhs, const frange &,
 bool
 operator_not_equal::fold_range (irange &r, tree type,
 				const frange &op1, const frange &op2,
-				relation_trio rel) const
+				relation_trio trio) const
 {
-  if (frelop_early_resolve (r, type, op1, op2, rel, VREL_NE))
+  relation_kind rel = trio.op1_op2 ();
+
+  // VREL_NE & NE_EXPR is always true, even with NANs.
+  if (rel == VREL_NE)
+    {
+      r = range_true (type);
+      return true;
+    }
+  if (frelop_early_resolve (r, type, op1, op2, trio, VREL_NE))
     return true;
 
   // x != NAN is always TRUE.
@@ -862,9 +923,17 @@  operator_not_equal::op1_op2_relation (const irange &lhs, const frange &,
 bool
 operator_lt::fold_range (irange &r, tree type,
 			 const frange &op1, const frange &op2,
-			 relation_trio rel) const
+			 relation_trio trio) const
 {
-  if (frelop_early_resolve (r, type, op1, op2, rel, VREL_LT))
+  relation_kind rel = trio.op1_op2 ();
+
+  // VREL_EQ & LT_EXPR is impossible, even with NANs.
+  if (rel == VREL_EQ)
+    {
+      r = range_false (type);
+      return true;
+    }
+  if (frelop_early_resolve (r, type, op1, op2, trio, VREL_LT))
     return true;
 
   if (op1.known_isnan ()
@@ -1083,9 +1152,17 @@  operator_le::op1_op2_relation (const irange &lhs, const frange &,
 bool
 operator_gt::fold_range (irange &r, tree type,
 			 const frange &op1, const frange &op2,
-			 relation_trio rel) const
+			 relation_trio trio) const
 {
-  if (frelop_early_resolve (r, type, op1, op2, rel, VREL_GT))
+  relation_kind rel = trio.op1_op2 ();
+
+  // VREL_EQ & GT_EXPR is impossible, even with NANs.
+  if (rel == VREL_EQ)
+    {
+      r = range_false (type);
+      return true;
+    }
+  if (frelop_early_resolve (r, type, op1, op2, trio, VREL_GT))
     return true;
 
   if (op1.known_isnan ()
@@ -1587,9 +1664,12 @@  class foperator_unordered_lt : public range_operator
 public:
   bool fold_range (irange &r, tree type,
 		   const frange &op1, const frange &op2,
-		   relation_trio rel = TRIO_VARYING) const final override
+		   relation_trio trio = TRIO_VARYING) const final override
   {
-    if (op1.known_isnan () || op2.known_isnan ())
+    relation_kind rel = trio.op1_op2 ();
+
+    if (op1.known_isnan () || op2.known_isnan ()
+	|| rel == VREL_LT)
       {
 	r = range_true (type);
 	return true;
@@ -1601,7 +1681,7 @@  public:
     if (op2.maybe_isnan ())
       op2_no_nan.clear_nan ();
     if (!range_op_handler (LT_EXPR).fold_range (r, type, op1_no_nan,
-						op2_no_nan, rel))
+						op2_no_nan, trio))
       return false;
     // The result is the same as the ordered version when the
     // comparison is true or when the operands cannot be NANs.
@@ -1699,9 +1779,12 @@  class foperator_unordered_le : public range_operator
 public:
   bool fold_range (irange &r, tree type,
 		   const frange &op1, const frange &op2,
-		   relation_trio rel = TRIO_VARYING) const final override
+		   relation_trio trio = TRIO_VARYING) const final override
   {
-    if (op1.known_isnan () || op2.known_isnan ())
+    relation_kind rel = trio.op1_op2 ();
+
+    if (op1.known_isnan () || op2.known_isnan ()
+	|| rel == VREL_LE)
       {
 	r = range_true (type);
 	return true;
@@ -1713,7 +1796,7 @@  public:
     if (op2.maybe_isnan ())
       op2_no_nan.clear_nan ();
     if (!range_op_handler (LE_EXPR).fold_range (r, type, op1_no_nan,
-						op2_no_nan, rel))
+						op2_no_nan, trio))
       return false;
     // The result is the same as the ordered version when the
     // comparison is true or when the operands cannot be NANs.
@@ -1807,9 +1890,12 @@  class foperator_unordered_gt : public range_operator
 public:
   bool fold_range (irange &r, tree type,
 		   const frange &op1, const frange &op2,
-		   relation_trio rel = TRIO_VARYING) const final override
+		   relation_trio trio = TRIO_VARYING) const final override
   {
-    if (op1.known_isnan () || op2.known_isnan ())
+    relation_kind rel = trio.op1_op2 ();
+
+    if (op1.known_isnan () || op2.known_isnan ()
+	|| rel == VREL_GT)
       {
 	r = range_true (type);
 	return true;
@@ -1821,7 +1907,7 @@  public:
     if (op2.maybe_isnan ())
       op2_no_nan.clear_nan ();
     if (!range_op_handler (GT_EXPR).fold_range (r, type, op1_no_nan,
-						op2_no_nan, rel))
+						op2_no_nan, trio))
       return false;
     // The result is the same as the ordered version when the
     // comparison is true or when the operands cannot be NANs.
@@ -1919,9 +2005,12 @@  class foperator_unordered_ge : public range_operator
 public:
   bool fold_range (irange &r, tree type,
 		   const frange &op1, const frange &op2,
-		   relation_trio rel = TRIO_VARYING) const final override
+		   relation_trio trio = TRIO_VARYING) const final override
   {
-    if (op1.known_isnan () || op2.known_isnan ())
+    relation_kind rel = trio.op1_op2 ();
+
+    if (op1.known_isnan () || op2.known_isnan ()
+	|| rel == VREL_GE)
       {
 	r = range_true (type);
 	return true;
@@ -1933,7 +2022,7 @@  public:
     if (op2.maybe_isnan ())
       op2_no_nan.clear_nan ();
     if (!range_op_handler (GE_EXPR).fold_range (r, type, op1_no_nan,
-						op2_no_nan, rel))
+						op2_no_nan, trio))
       return false;
     // The result is the same as the ordered version when the
     // comparison is true or when the operands cannot be NANs.
@@ -2030,9 +2119,12 @@  class foperator_unordered_equal : public range_operator
 public:
   bool fold_range (irange &r, tree type,
 		   const frange &op1, const frange &op2,
-		   relation_trio rel = TRIO_VARYING) const final override
+		   relation_trio trio = TRIO_VARYING) const final override
   {
-    if (op1.known_isnan () || op2.known_isnan ())
+    relation_kind rel = trio.op1_op2 ();
+
+    if (op1.known_isnan () || op2.known_isnan ()
+	|| rel == VREL_EQ)
       {
 	r = range_true (type);
 	return true;
@@ -2044,7 +2136,7 @@  public:
     if (op2.maybe_isnan ())
       op2_no_nan.clear_nan ();
     if (!range_op_handler (EQ_EXPR).fold_range (r, type, op1_no_nan,
-						op2_no_nan, rel))
+						op2_no_nan, trio))
       return false;
     // The result is the same as the ordered version when the
     // comparison is true or when the operands cannot be NANs.
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/vrp-float-12.c b/gcc/testsuite/gcc.dg/tree-ssa/vrp-float-12.c
new file mode 100644
index 00000000000..0c9426dfef5
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/tree-ssa/vrp-float-12.c
@@ -0,0 +1,23 @@ 
+// { dg-do compile }
+// { dg-options "-O2 -fdisable-tree-fre1 -fdump-tree-evrp" }
+
+void link_error ();
+void func ();
+
+void foo1 (float x, float y)
+{
+   if (x != y)
+     if (x == y)
+       link_error();
+}
+
+void foo2 (float a, float b)
+{
+  if (a != b)
+    // This conditional should be folded away.
+    if (a != b)
+      func ();
+}
+
+// { dg-final { scan-tree-dump-not "link_error" "evrp" } }
+// { dg-final { scan-tree-dump-times "if \\(a_2\\(D\\) != b_3\\(D\\)" 1 "evrp" } }