diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2022-06-17 07:33:06 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2022-07-14 14:10:17 -0700 |
commit | c6cf555a88f8ffb8ec85c2b94fe656ab217260ea (patch) | |
tree | fac88fef4d594a13125d3f361569adae0c57446a /gcc/testsuite/c-c++-common/pr103798-9.c | |
parent | 748f8a8b145dde59c7b63aa68b5a59515b7efc49 (diff) | |
download | gcc-c6cf555a88f8ffb8ec85c2b94fe656ab217260ea.zip gcc-c6cf555a88f8ffb8ec85c2b94fe656ab217260ea.tar.gz gcc-c6cf555a88f8ffb8ec85c2b94fe656ab217260ea.tar.bz2 |
Simplify memchr with small constant strings
When memchr is applied on a constant string of no more than the bytes of
a word, simplify memchr by checking each byte in the constant string.
int f (int a)
{
return __builtin_memchr ("AE", a, 2) != 0;
}
is simplified to
int f (int a)
{
return ((char) a == 'A' || (char) a == 'E') != 0;
}
gcc/
PR tree-optimization/103798
* tree-ssa-forwprop.cc: Include "tree-ssa-strlen.h".
(simplify_builtin_call): Inline memchr with constant strings of
no more than the bytes of a word.
* tree-ssa-strlen.cc (use_in_zero_equality): Make it global.
* tree-ssa-strlen.h (use_in_zero_equality): New.
gcc/testsuite/
PR tree-optimization/103798
* c-c++-common/pr103798-1.c: New test.
* c-c++-common/pr103798-2.c: Likewise.
* c-c++-common/pr103798-3.c: Likewise.
* c-c++-common/pr103798-4.c: Likewise.
* c-c++-common/pr103798-5.c: Likewise.
* c-c++-common/pr103798-6.c: Likewise.
* c-c++-common/pr103798-7.c: Likewise.
* c-c++-common/pr103798-8.c: Likewise.
* c-c++-common/pr103798-9.c: Likewise.
* c-c++-common/pr103798-10.c: Likewise.
Diffstat (limited to 'gcc/testsuite/c-c++-common/pr103798-9.c')
-rw-r--r-- | gcc/testsuite/c-c++-common/pr103798-9.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/c-c++-common/pr103798-9.c b/gcc/testsuite/c-c++-common/pr103798-9.c new file mode 100644 index 0000000..c5f0f94 --- /dev/null +++ b/gcc/testsuite/c-c++-common/pr103798-9.c @@ -0,0 +1,10 @@ +/* { dg-do compile } */ +/* { dg-options "-Os -fdump-tree-optimized -save-temps" } */ + +int +f (char a) +{ + return __builtin_memchr ("a", a, 1) == 0; +} + +/* { dg-final { scan-assembler-not "memchr" } } */ |