diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-12-13 14:48:48 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-12-13 14:48:48 -0500 |
commit | 24c2c3b99699b7cb7cc3c251d9bd504b2cde6a45 (patch) | |
tree | 1005ad44fdc3c14e95c375e820ea2932c2a8f05e /sysdeps/powerpc/powerpc64/multiarch/strncmp.c | |
parent | 1c92d9a0e0be6175915128157036cf138ef64af8 (diff) | |
download | glibc-24c2c3b99699b7cb7cc3c251d9bd504b2cde6a45.zip glibc-24c2c3b99699b7cb7cc3c251d9bd504b2cde6a45.tar.gz glibc-24c2c3b99699b7cb7cc3c251d9bd504b2cde6a45.tar.bz2 |
PowerPC: multiarch strncmp for PowerPC64
Diffstat (limited to 'sysdeps/powerpc/powerpc64/multiarch/strncmp.c')
-rw-r--r-- | sysdeps/powerpc/powerpc64/multiarch/strncmp.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncmp.c b/sysdeps/powerpc/powerpc64/multiarch/strncmp.c new file mode 100644 index 0000000..09db0be --- /dev/null +++ b/sysdeps/powerpc/powerpc64/multiarch/strncmp.c @@ -0,0 +1,37 @@ +/* Multiple versions of strncmp. + Copyright (C) 2013 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/>. */ + +/* Define multiple versions only for definition in libc. */ +#if defined SHARED && !defined NOT_IN_libc +# include <string.h> +# include <shlib-compat.h> +# include "init-arch.h" + +extern __typeof (strncmp) __strncmp_ppc attribute_hidden; +extern __typeof (strncmp) __strncmp_power4 attribute_hidden; +extern __typeof (strncmp) __strncmp_power7 attribute_hidden; + +/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle + ifunc symbol properly. */ +libc_ifunc (strncmp, + (hwcap & PPC_FEATURE_HAS_VSX) + ? __strncmp_power7 : + (hwcap & PPC_FEATURE_POWER4) + ? __strncmp_power4 + : __strncmp_ppc); +#endif |