Re: [PATCH v3] tree-optimization/95821 - Convert strlen + strchr to memchr

2022-09-22 Thread Jakub Jelinek via Gcc-patches
On Tue, Jun 21, 2022 at 11:12:15AM -0700, Noah Goldstein wrote:
> This patch allows for strchr(x, c) to the replace with memchr(x, c,
> strlen(x) + 1) if strlen(x) has already been computed earlier in the
> tree.
> 
> Handles PR95821: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95821
> 
> Since memchr doesn't need to re-find the null terminator it is faster
> than strchr.
> 
> bootstrapped and tested on x86_64-linux.
> 
>   PR tree-optimization/95821
> 
> gcc/
> 
>   * tree-ssa-strlen.cc (strlen_pass::handle_builtin_strchr): Emit
>   memchr instead of strchr if strlen already computed.
> 
> gcc/testsuite/
> 
>   * c-c++-common/pr95821-1.c: New test.
>   * c-c++-common/pr95821-2.c: New test.
>   * c-c++-common/pr95821-3.c: New test.
>   * c-c++-common/pr95821-4.c: New test.
>   * c-c++-common/pr95821-5.c: New test.
>   * c-c++-common/pr95821-6.c: New test.
>   * c-c++-common/pr95821-7.c: New test.
>   * c-c++-common/pr95821-8.c: New test.

Sorry for the delay.

> --- /dev/null
> +++ b/gcc/testsuite/c-c++-common/pr95821-1.c
> @@ -0,0 +1,15 @@
> +/* { dg-do compile } */
> +/* { dg-options "-O2" } */
> +/* { dg-final { scan-assembler "memchr" } } */

Please don't scan assembler, whether memchr will expand
to a call or be expanded inline etc. is not known.
Better use "-O2 -fdump-tree-optimize" in dg-options
and scan the optimized dump for "memchr \\\(".
Ditto for other tests.

> @@ -2452,32 +2459,96 @@ strlen_pass::handle_builtin_strchr ()
> fprintf (dump_file, "Optimizing: ");
> print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
>   }
> -   if (si != NULL && si->endptr != NULL_TREE)
> +   /* Three potential optimizations assume t=strlen (s) has already been
> +  computed:
> + 1. strchr (s, chr) where chr is known to be zero -> t

-> s + t
rather than
-> t
actually.

> + 2. strchr (s, chr) where chr is known not to be zero ->
> +memchr (s, chr, t)
> + 3. strchr (s, chr) where chr is not known to be zero or

nor instead of or?

> +non-zero -> memchr (s, chr, t + 1).  */
> +   if (!is_strchr_zerop)
>   {
> -   rhs = unshare_expr (si->endptr);
> -   if (!useless_type_conversion_p (TREE_TYPE (lhs),
> -   TREE_TYPE (rhs)))
> - rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
> +   /* If its not strchr (s, zerop) then try and convert to
> +  memchr since strlen has already been computed.  */
> +   tree fn = builtin_decl_explicit (BUILT_IN_MEMCHR);
> +
> +   /* Only need to check length strlen (s) + 1 if chr may be zero.
> +  Otherwise the last chr (which is known to be zero) can never
> +  be a match.  */
> +   bool chr_nonzero = false;
> +   if (TREE_CODE (chr) == INTEGER_CST
> +   && integer_nonzerop (fold_convert (char_type_node, chr)))
> + chr_nonzero = true;
> +   else if (TREE_CODE (chr) == SSA_NAME
> +&& CHAR_TYPE_SIZE < INT_TYPE_SIZE)
> + {
> +   value_range r;
> +   /* Try to determine using ranges if (char) chr must
> +  be always 0.  That is true e.g. if all the subranges

must be always non-zero ?

> +  have the INT_TYPE_SIZE - CHAR_TYPE_SIZE bits
> +  the same on lower and upper bounds.  */

That is actually not enough, see below.

> +   if (get_range_query (cfun)->range_of_expr (r, chr, stmt)
> +   && r.kind () == VR_RANGE)
> + {
> +   wide_int mask
> +   = wi::mask (CHAR_TYPE_SIZE, true, INT_TYPE_SIZE);

Wrong indentation, = should be 2 columns left of wide_int.

> +   for (unsigned i = 0; i < r.num_pairs (); ++i)
> + if ((r.lower_bound (i) & mask)
> + != (r.upper_bound (i) & mask))
> +   {
> + chr_nonzero = false;
> + break;
> +   }

This else if actually can't do what it indends to, because
chr_nonzero is initialized to false at the start and in the loop you
also just set it to false, so it is always false.
You need to add chr_nonzero = true; before the for loop above.
With that, all the above test proves is that there is no range like
[15, 257] where it would include 256 in the middle of the range or
at the end.  But the above doesn't clear chr_nonzero on ranges like
[0, 32] or [256, 511] where (char) chr can still be zero.
So, the test should be:
if ((r.lower_bound (i) & mask)
!= (r.upper_bound (i) & mask)
|| (r.lower_bound (i) & ~mask) == 0)
or so, that will rule out also the above ranges and if one just has ranges
like:
[1, 32] U [48, 56] U [257, 

Re: [PATCH v3] tree-optimization/95821 - Convert strlen + strchr to memchr

2022-09-21 Thread Noah Goldstein via Gcc-patches
On Sat, Jul 9, 2022 at 8:59 AM Jeff Law via Gcc-patches
 wrote:
>
>
>
> On 6/21/2022 12:12 PM, Noah Goldstein via Gcc-patches wrote:
> > This patch allows for strchr(x, c) to the replace with memchr(x, c,
> > strlen(x) + 1) if strlen(x) has already been computed earlier in the
> > tree.
> >
> > Handles PR95821: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95821
> >
> > Since memchr doesn't need to re-find the null terminator it is faster
> > than strchr.
> >
> > bootstrapped and tested on x86_64-linux.
> >
> >   PR tree-optimization/95821
> >
> > gcc/
> >
> >   * tree-ssa-strlen.cc (strlen_pass::handle_builtin_strchr): Emit
> >   memchr instead of strchr if strlen already computed.
> >
> > gcc/testsuite/
> >
> >   * c-c++-common/pr95821-1.c: New test.
> >   * c-c++-common/pr95821-2.c: New test.
> >   * c-c++-common/pr95821-3.c: New test.
> >   * c-c++-common/pr95821-4.c: New test.
> >   * c-c++-common/pr95821-5.c: New test.
> >   * c-c++-common/pr95821-6.c: New test.
> >   * c-c++-common/pr95821-7.c: New test.
> >   * c-c++-common/pr95821-8.c: New test.
> Given Jakub's involvement to-date and the fact this touches
> tree-ssa-strlen.cc I think Jakub should have final ACK/NAK on this.
>
> jeff
>

Ping.


Re: [PATCH v3] tree-optimization/95821 - Convert strlen + strchr to memchr

2022-07-09 Thread Jeff Law via Gcc-patches




On 6/21/2022 12:12 PM, Noah Goldstein via Gcc-patches wrote:

This patch allows for strchr(x, c) to the replace with memchr(x, c,
strlen(x) + 1) if strlen(x) has already been computed earlier in the
tree.

Handles PR95821: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95821

Since memchr doesn't need to re-find the null terminator it is faster
than strchr.

bootstrapped and tested on x86_64-linux.

PR tree-optimization/95821

gcc/

* tree-ssa-strlen.cc (strlen_pass::handle_builtin_strchr): Emit
memchr instead of strchr if strlen already computed.

gcc/testsuite/

* c-c++-common/pr95821-1.c: New test.
* c-c++-common/pr95821-2.c: New test.
* c-c++-common/pr95821-3.c: New test.
* c-c++-common/pr95821-4.c: New test.
* c-c++-common/pr95821-5.c: New test.
* c-c++-common/pr95821-6.c: New test.
* c-c++-common/pr95821-7.c: New test.
* c-c++-common/pr95821-8.c: New test.
Given Jakub's involvement to-date and the fact this touches 
tree-ssa-strlen.cc I think Jakub should have final ACK/NAK on this.


jeff



[PATCH v3] tree-optimization/95821 - Convert strlen + strchr to memchr

2022-06-21 Thread Noah Goldstein via Gcc-patches
This patch allows for strchr(x, c) to the replace with memchr(x, c,
strlen(x) + 1) if strlen(x) has already been computed earlier in the
tree.

Handles PR95821: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95821

Since memchr doesn't need to re-find the null terminator it is faster
than strchr.

bootstrapped and tested on x86_64-linux.

PR tree-optimization/95821

gcc/

* tree-ssa-strlen.cc (strlen_pass::handle_builtin_strchr): Emit
memchr instead of strchr if strlen already computed.

gcc/testsuite/

* c-c++-common/pr95821-1.c: New test.
* c-c++-common/pr95821-2.c: New test.
* c-c++-common/pr95821-3.c: New test.
* c-c++-common/pr95821-4.c: New test.
* c-c++-common/pr95821-5.c: New test.
* c-c++-common/pr95821-6.c: New test.
* c-c++-common/pr95821-7.c: New test.
* c-c++-common/pr95821-8.c: New test.
---
 gcc/testsuite/c-c++-common/pr95821-1.c |  15 
 gcc/testsuite/c-c++-common/pr95821-2.c |  17 
 gcc/testsuite/c-c++-common/pr95821-3.c |  17 
 gcc/testsuite/c-c++-common/pr95821-4.c |  16 
 gcc/testsuite/c-c++-common/pr95821-5.c |  19 +
 gcc/testsuite/c-c++-common/pr95821-6.c |  18 
 gcc/testsuite/c-c++-common/pr95821-7.c |  18 
 gcc/testsuite/c-c++-common/pr95821-8.c |  19 +
 gcc/tree-ssa-strlen.cc | 113 -
 9 files changed, 233 insertions(+), 19 deletions(-)
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-1.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-2.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-3.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-4.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-5.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-6.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-7.c
 create mode 100644 gcc/testsuite/c-c++-common/pr95821-8.c

diff --git a/gcc/testsuite/c-c++-common/pr95821-1.c 
b/gcc/testsuite/c-c++-common/pr95821-1.c
new file mode 100644
index 000..e0beb609ea2
--- /dev/null
+++ b/gcc/testsuite/c-c++-common/pr95821-1.c
@@ -0,0 +1,15 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler "memchr" } } */
+
+#include 
+
+char *
+foo (char *s, char c)
+{
+   size_t slen = __builtin_strlen(s);
+   if(slen < 1000)
+   return NULL;
+
+   return __builtin_strchr(s, c);
+}
diff --git a/gcc/testsuite/c-c++-common/pr95821-2.c 
b/gcc/testsuite/c-c++-common/pr95821-2.c
new file mode 100644
index 000..5429f0586be
--- /dev/null
+++ b/gcc/testsuite/c-c++-common/pr95821-2.c
@@ -0,0 +1,17 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler-not "memchr" } } */
+
+#include 
+
+char *
+foo (char *s, char c, char * other)
+{
+   size_t slen = __builtin_strlen(s);
+   if(slen < 1000)
+   return NULL;
+
+   *other = 0;
+
+   return __builtin_strchr(s, c);
+}
diff --git a/gcc/testsuite/c-c++-common/pr95821-3.c 
b/gcc/testsuite/c-c++-common/pr95821-3.c
new file mode 100644
index 000..bc929c6044b
--- /dev/null
+++ b/gcc/testsuite/c-c++-common/pr95821-3.c
@@ -0,0 +1,17 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler "memchr" } } */
+
+#include 
+
+char *
+foo (char * __restrict s, char c, char * __restrict other)
+{
+   size_t slen = __builtin_strlen(s);
+   if(slen < 1000)
+   return NULL;
+
+   *other = 0;
+
+   return __builtin_strchr(s, c);
+}
diff --git a/gcc/testsuite/c-c++-common/pr95821-4.c 
b/gcc/testsuite/c-c++-common/pr95821-4.c
new file mode 100644
index 000..684b41d5b70
--- /dev/null
+++ b/gcc/testsuite/c-c++-common/pr95821-4.c
@@ -0,0 +1,16 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler "memchr" } } */
+
+#include 
+#include 
+
+char *
+foo (char *s, char c)
+{
+   size_t slen = strlen(s);
+   if(slen < 1000)
+   return NULL;
+
+   return strchr(s, c);
+}
diff --git a/gcc/testsuite/c-c++-common/pr95821-5.c 
b/gcc/testsuite/c-c++-common/pr95821-5.c
new file mode 100644
index 000..00c1d93b614
--- /dev/null
+++ b/gcc/testsuite/c-c++-common/pr95821-5.c
@@ -0,0 +1,19 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler-not "memchr" } } */
+
+#include 
+#include 
+
+char *
+foo (char *s, char c, char * other)
+{
+   size_t slen = strlen(s);
+   if(slen < 1000)
+   return NULL;
+
+   *other = 0;
+
+   return strchr(s, c);
+}
+int main() {}
diff --git a/gcc/testsuite/c-c++-common/pr95821-6.c 
b/gcc/testsuite/c-c++-common/pr95821-6.c
new file mode 100644
index 000..dec839de5ea
--- /dev/null
+++ b/gcc/testsuite/c-c++-common/pr95821-6.c
@@ -0,0 +1,18 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+/* { dg-final { scan-assembler "memchr" } } */
+
+#include 
+#include 
+
+char *
+foo (char * __restrict s, char c,