diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2014-03-20 11:24:52 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2014-03-20 11:24:52 -0500 |
commit | 6eaf95cbfa0031ea267682dc2c9c17ed3e3dc167 (patch) | |
tree | 93cf4f0efb9ce1654e9f298b6342953a7935965a /sysdeps/powerpc/powerpc64/multiarch/strcspn.c | |
parent | ae3a5dff0f4135cc57ddddf3c19ed5be80285b54 (diff) | |
download | glibc-6eaf95cbfa0031ea267682dc2c9c17ed3e3dc167.tar glibc-6eaf95cbfa0031ea267682dc2c9c17ed3e3dc167.tar.gz glibc-6eaf95cbfa0031ea267682dc2c9c17ed3e3dc167.tar.bz2 glibc-6eaf95cbfa0031ea267682dc2c9c17ed3e3dc167.zip |
PowerPC: optimized strcspn for PPC64/POWER7
This patch add a optimized strcspn for POWER7 by using a different
algorithm than default implementation: it constructs a table based on
the 'accept' argument and use this table to check for any occurance
on the input string. The idea is similar as x86_64 uses.
For PowerPC some tunings were added, such as unroll loops and align
stack memory to table to 16 bytes (so VSX clean can ran without
alignment issues).
Diffstat (limited to 'sysdeps/powerpc/powerpc64/multiarch/strcspn.c')
-rw-r--r-- | sysdeps/powerpc/powerpc64/multiarch/strcspn.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcspn.c b/sysdeps/powerpc/powerpc64/multiarch/strcspn.c new file mode 100644 index 0000000000..3609d93ad2 --- /dev/null +++ b/sysdeps/powerpc/powerpc64/multiarch/strcspn.c @@ -0,0 +1,31 @@ +/* Multiple versions of strcspn. PowerPC64 version. + Copyright (C) 2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ + +#ifndef NOT_IN_libc +# include <string.h> +# include <shlib-compat.h> +# include "init-arch.h" + +extern __typeof (strcspn) __strcspn_ppc attribute_hidden; +extern __typeof (strcspn) __strcspn_power7 attribute_hidden; + +libc_ifunc (strcspn, + (hwcap & PPC_FEATURE_HAS_VSX) + ? __strcspn_power7 + : __strcspn_ppc); +#endif |