]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
ARM: Clean up __libc_ifunc_impl_list
authorRoland McGrath <roland@hack.frob.com>
Tue, 18 Jun 2013 17:11:02 +0000 (10:11 -0700)
committerRoland McGrath <roland@hack.frob.com>
Tue, 18 Jun 2013 17:11:02 +0000 (10:11 -0700)
ports/ChangeLog.arm
ports/sysdeps/arm/armv7/multiarch/ifunc-impl-list.c

index a901c6ea09f2c3504e1d7e55aaf21f7f57498e58..f3fae51c73bbb3e51200f4c1246c84c184c828a3 100644 (file)
@@ -1,3 +1,9 @@
+2013-06-18  Roland McGrath  <roland@hack.frob.com>
+
+       * sysdeps/arm/armv7/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list)
+       [__ARM_NEON__]: Do not refer to HWCAP_ARM_NEON.
+       [!__SOFTFP__]: Do not refer to HWCAP_ARM_VFP.
+
 2013-06-18  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/arm/fpu_control.h [!(_LIBC && !_LIBC_TEST) &&
index 9c2487fd228b1ec04b6a91330c4313f9d56334e0..4a9a25c767668e8cae31cf6ff874f049cb341890 100644 (file)
@@ -16,6 +16,7 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <stdbool.h>
 #include <string.h>
 #include <ldsodefs.h>
 #include <sysdep.h>
@@ -29,21 +30,25 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
                        size_t max)
 {
   size_t i = 0;
-  int hwcap;
 
-  hwcap = GLRO(dl_hwcap);
-
-  IFUNC_IMPL (i, name, memcpy,
-             IFUNC_IMPL_ADD (array, i, memcpy, hwcap & HWCAP_ARM_NEON,
+  bool use_neon = true;
 #ifdef __ARM_NEON__
-                              memcpy
+# define __memcpy_neon memcpy
 #else
-                             __memcpy_neon
+  use_neon = (GLRO(dl_hwcap) & HWCAP_ARM_NEON) != 0;
 #endif
-                              )
+
+#ifndef __ARM_NEON__
+  bool use_vfp = true;
+# ifdef __SOFTFP__
+  use_vfp = (GLRO(dl_hwcap) & HWCAP_ARM_VFP) != 0;
+# endif
+#endif
+
+  IFUNC_IMPL (i, name, memcpy,
+             IFUNC_IMPL_ADD (array, i, memcpy, use_neon, __memcpy_neon)
 #ifndef __ARM_NEON__
-             IFUNC_IMPL_ADD (array, i, memcpy, hwcap & HWCAP_ARM_VFP,
-                             __memcpy_vfp)
+             IFUNC_IMPL_ADD (array, i, memcpy, use_vfp, __memcpy_vfp)
 #endif
              IFUNC_IMPL_ADD (array, i, memcpy, 1, __memcpy_arm));