Remove ENABLE_SSSE3_ON_ATOM.
authorH.J. Lu <hongjiu.lu@intel.com>
Fri, 28 Aug 2009 21:54:46 +0000 (14:54 -0700)
committerUlrich Drepper <drepper@redhat.com>
Fri, 28 Aug 2009 21:54:46 +0000 (14:54 -0700)
It turns that SSSE3 isn't slow on Atom. The problem is bsf. This patch
removes ENABLE_SSSE3_ON_ATOM.

ChangeLog
sysdeps/i386/i686/multiarch/init-arch.c
sysdeps/x86_64/multiarch/init-arch.c

index a979b2f..b52cb81 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-08-27  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/i386/i686/multiarch/init-arch.c (ENABLE_SSSE3_ON_ATOM):
+       Removed.
+       * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Don't
+       turn off SSSE3 on Atom.
+
 2009-08-28  Ulrich Drepper  <drepper@redhat.com>
 
        * stdlib/tst-strtol.c (tests): More tests.
index b371bae..00a94d8 100644 (file)
@@ -1,3 +1 @@
-#define ENABLE_SSSE3_ON_ATOM
-
 #include <sysdeps/x86_64/multiarch/init-arch.c>
index c152ab2..9a1e776 100644 (file)
@@ -64,15 +64,7 @@ __init_cpu_features (void)
          __cpu_features.model += extended_model;
        }
       else if (__cpu_features.family == 0x06)
-       {
-         __cpu_features.model += extended_model;
-
-#ifndef ENABLE_SSSE3_ON_ATOM
-         if (__cpu_features.model == 0x1c)
-           /* Avoid SSSE3 on Atom since it is slow.  */
-           __cpu_features.cpuid[COMMON_CPUID_INDEX_1].ecx &= ~(1 << 9);
-#endif
-       }
+       __cpu_features.model += extended_model;
     }
   /* This spells out "AuthenticAMD".  */
   else if (ebx == 0x68747541 && ecx == 0x444d4163 && edx == 0x69746e65)