]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-optimization/108888 - call if-conversion
authorRichard Biener <rguenther@suse.de>
Thu, 23 Feb 2023 10:03:03 +0000 (11:03 +0100)
committerAndrew Stubbs <ams@codesourcery.com>
Thu, 23 Feb 2023 16:30:39 +0000 (16:30 +0000)
The following makes sure to only predicate calls necessary.

PR tree-optimization/108888
* tree-if-conv.cc (if_convertible_stmt_p): Set PLF_2 on
calls to predicate.
(predicate_statements): Only predicate calls with PLF_2.

* g++.dg/torture/pr108888.C: New testcase.

(cherry picked from commit 31cc5821223a096ef61743bff520f4a0dbba5872)

gcc/ChangeLog.omp
gcc/testsuite/ChangeLog.omp
gcc/testsuite/g++.dg/torture/pr108888.C [new file with mode: 0644]
gcc/tree-if-conv.cc

index 77bc463a2c85787f52c9e1e6377f4898ad5dc738..c1da700805c45e02a92f23fcd6b6b17fb73d9c21 100644 (file)
@@ -1,3 +1,11 @@
+2023-02-23  Andrew Stubbs  <ams@codesourcery.com>
+
+       Backport from mainline:
+       PR tree-optimization/108888
+       * tree-if-conv.cc (if_convertible_stmt_p): Set PLF_2 on
+       calls to predicate.
+       (predicate_statements): Only predicate calls with PLF_2.
+
 2023-02-23  Andrew Stubbs  <ams@codesourcery.com>
 
        * internal-fn.cc (expand_MASK_CALL): New.
index d3c93a0fd23ced9cb04588591b098e05657fea30..98e4168763375a6b0b95f444ed613e2b52569109 100644 (file)
@@ -1,3 +1,8 @@
+2023-02-23  Andrew Stubbs  <ams@codesourcery.com>
+
+       Backport from mainline:
+       * g++.dg/torture/pr108888.C: New testcase.
+
 2023-02-23  Andrew Stubbs  <ams@codesourcery.com>
 
        * gcc.dg/vect/vect-simd-clone-16.c: New test.
diff --git a/gcc/testsuite/g++.dg/torture/pr108888.C b/gcc/testsuite/g++.dg/torture/pr108888.C
new file mode 100644 (file)
index 0000000..29a22e2
--- /dev/null
@@ -0,0 +1,18 @@
+// { dg-do compile }
+
+int scaleValueSaturate_scalefactor, scaleValueSaturate___trans_tmp_2,
+    scaleValuesSaturate_i;
+int scaleValueSaturate(int value) {
+  int result = __builtin_clz(value);
+  if (value)
+    if (-result <= scaleValueSaturate_scalefactor)
+      return 0;
+  return scaleValueSaturate___trans_tmp_2;
+}
+short scaleValuesSaturate_dst;
+short *scaleValuesSaturate_src;
+void scaleValuesSaturate() {
+  for (; scaleValuesSaturate_i; scaleValuesSaturate_i++)
+    scaleValuesSaturate_dst =
+        scaleValueSaturate(scaleValuesSaturate_src[scaleValuesSaturate_i]);
+}
index e0c2db745c1ebde08959252c6f9f134ed7f1dc3b..16da1dc8df289eb5d71fd31e3e5a94d2d1b5535a 100644 (file)
@@ -1106,6 +1106,7 @@ if_convertible_stmt_p (gimple *stmt, vec<data_reference_p> refs)
                   n = n->simdclone->next_clone)
                if (n->simdclone->inbranch)
                  {
+                   gimple_set_plf (stmt, GF_PLF_2, true);
                    need_to_predicate = true;
                    return true;
                  }
@@ -2559,7 +2560,8 @@ predicate_statements (loop_p loop)
              release_defs (stmt);
              continue;
            }
-         else if (gimple_plf (stmt, GF_PLF_2))
+         else if (gimple_plf (stmt, GF_PLF_2)
+                  && is_gimple_assign (stmt))
            {
              tree lhs = gimple_assign_lhs (stmt);
              tree mask;
@@ -2644,13 +2646,14 @@ predicate_statements (loop_p loop)
              gimple_assign_set_rhs1 (stmt, ifc_temp_var (type, rhs, &gsi));
              update_stmt (stmt);
            }
-
-         /* Convert functions that have a SIMD clone to IFN_MASK_CALL.  This
-            will cause the vectorizer to match the "in branch" clone variants,
-            and serves to build the mask vector in a natural way.  */
-         gcall *call = dyn_cast <gcall *> (gsi_stmt (gsi));
-         if (call && !gimple_call_internal_p (call))
+         else if (gimple_plf (stmt, GF_PLF_2)
+                  && is_gimple_call (stmt))
            {
+             /* Convert functions that have a SIMD clone to IFN_MASK_CALL.
+                This will cause the vectorizer to match the "in branch"
+                clone variants, and serves to build the mask vector
+                in a natural way.  */
+             gcall *call = dyn_cast <gcall *> (gsi_stmt (gsi));
              tree orig_fn = gimple_call_fn (call);
              int orig_nargs = gimple_call_num_args (call);
              auto_vec<tree> args;