public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-1880] tree-optimization/110269 - restore missed condition folding
@ 2023-06-16  8:26 Richard Biener
  0 siblings, 0 replies; only message in thread
From: Richard Biener @ 2023-06-16  8:26 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:827e208fa64771f15fc8e53970a2297e637277b5

commit r14-1880-g827e208fa64771f15fc8e53970a2297e637277b5
Author: Richard Biener <rguenther@suse.de>
Date:   Fri Jun 16 08:55:12 2023 +0200

    tree-optimization/110269 - restore missed condition folding
    
    The following makes sure we optimize x != 0 using range info
    via tree_expr_nonzero_p via match.pd.
    
            PR tree-optimization/110269
            * fold-const.cc (fold_binary_loc): Merge x != 0 folding
            with tree_expr_nonzero_p ...
            * match.pd (cmp (convert? addr@0) integer_zerop): With this
            pattern.
    
            * gcc.dg/tree-ssa/pr110269.c: New testcase.

Diff:
---
 gcc/fold-const.cc                        |  7 -------
 gcc/match.pd                             |  4 ++--
 gcc/testsuite/gcc.dg/tree-ssa/pr110269.c | 34 ++++++++++++++++++++++++++++++++
 3 files changed, 36 insertions(+), 9 deletions(-)

diff --git a/gcc/fold-const.cc b/gcc/fold-const.cc
index 9ea055d4523..3aa6851acd5 100644
--- a/gcc/fold-const.cc
+++ b/gcc/fold-const.cc
@@ -12298,13 +12298,6 @@ fold_binary_loc (location_t loc, enum tree_code code, tree type,
 			      tem, build_int_cst (TREE_TYPE (tem), 0));
 	}
 
-      if (integer_zerop (arg1)
-	  && tree_expr_nonzero_p (arg0))
-        {
-	  tree res = constant_boolean_node (code==NE_EXPR, type);
-	  return omit_one_operand_loc (loc, type, res, arg0);
-	}
-
       if (TREE_CODE (arg0) == BIT_XOR_EXPR
 	  && TREE_CODE (arg1) == BIT_XOR_EXPR)
 	{
diff --git a/gcc/match.pd b/gcc/match.pd
index a17d6838c14..b7baad6bf1b 100644
--- a/gcc/match.pd
+++ b/gcc/match.pd
@@ -6120,8 +6120,8 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
    (cmp @0 (bit_xor @1 (convert @2)))))
 
  (simplify
-  (cmp (convert? addr@0) integer_zerop)
-  (if (tree_single_nonzero_warnv_p (@0, NULL))
+  (cmp (nop_convert? @0) integer_zerop)
+  (if (tree_expr_nonzero_p (@0))
    { constant_boolean_node (cmp == NE_EXPR, type); }))
 
  /* (X & C) op (Y & C) into (X ^ Y) & C op 0.  */
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr110269.c b/gcc/testsuite/gcc.dg/tree-ssa/pr110269.c
new file mode 100644
index 00000000000..c68a6f91604
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/tree-ssa/pr110269.c
@@ -0,0 +1,34 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fdump-tree-ccp2 -fdump-tree-optimized" } */
+
+void foo(void);
+static int a = 1, c;
+static int *b = &a;
+static int **d = &b;
+static int ***e = &d;
+void __assert_fail() __attribute__((__noreturn__));
+static int f() {
+    if (a) return a;
+    for (; c;) *e = 0;
+    if (b) __assert_fail();
+    return 6;
+}
+int main() {
+    if (f()) {
+        *d = 0;
+        if (b == 0)
+            ;
+        else {
+            __builtin_unreachable();
+            __assert_fail();
+        }
+    }
+    if (b == 0)
+        ;
+    else
+        foo();
+    ;
+}
+
+/* { dg-final { scan-tree-dump-times "Folding predicate" 2 "ccp2" } } */
+/* { dg-final { scan-tree-dump-not "foo" "optimized" } } */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-06-16  8:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-16  8:26 [gcc r14-1880] tree-optimization/110269 - restore missed condition folding Richard Biener

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).