]> granicus.if.org Git - libx264/commitdiff
add cache info to cpu_detect. also print sse3.
authorLoren Merritt <pengvado@videolan.org>
Tue, 20 Nov 2007 05:57:29 +0000 (05:57 +0000)
committerLoren Merritt <pengvado@videolan.org>
Tue, 20 Nov 2007 05:57:29 +0000 (05:57 +0000)
git-svn-id: svn://svn.videolan.org/x264/trunk@695 df754926-b1dd-0310-bc7b-ec298dee348c

common/cpu.c
encoder/encoder.c
x264.h

index 45484b83526143ae7307e7e9cbe4a7c4918fe374..504585edf3338fdc5189ec643d91718150baef91 100644 (file)
@@ -43,69 +43,85 @@ extern void x264_emms( void );
 uint32_t x264_cpu_detect( void )
 {
     uint32_t cpu = 0;
-
     uint32_t eax, ebx, ecx, edx;
-    int      b_amd;
+    uint32_t vendor[4] = {0};
+    int max_extended_cap;
+    int cache;
 
     if( !x264_cpu_cpuid_test() )
-    {
-        /* No cpuid */
         return 0;
-    }
 
-    x264_cpu_cpuid( 0, &eax, &ebx, &ecx, &edx);
+    x264_cpu_cpuid( 0, &eax, vendor+0, vendor+2, vendor+1 );
     if( eax == 0 )
-    {
         return 0;
-    }
-    b_amd   = (ebx == 0x68747541) && (ecx == 0x444d4163) && (edx == 0x69746e65);
 
     x264_cpu_cpuid( 1, &eax, &ebx, &ecx, &edx );
-    if( (edx&0x00800000) == 0 )
-    {
-        /* No MMX */
+    if( edx&0x00800000 )
+        cpu |= X264_CPU_MMX;
+    else
         return 0;
-    }
-    cpu = X264_CPU_MMX;
-    if( (edx&0x02000000) )
-    {
-        /* SSE - identical to AMD MMX extensions */
+    if( edx&0x02000000 )
         cpu |= X264_CPU_MMXEXT|X264_CPU_SSE;
-    }
-    if( (edx&0x04000000) )
-    {
-        /* Is it OK ? */
+    if( edx&0x04000000 )
         cpu |= X264_CPU_SSE2;
-    }
 #ifdef HAVE_SSE3
-    if( (ecx&0x00000001) )
-    {
+    if( ecx&0x00000001 )
         cpu |= X264_CPU_SSE3;
-    }
-    if( (ecx&0x00000200) )
-    {
+    if( ecx&0x00000200 )
         cpu |= X264_CPU_SSSE3;
-    }
 #endif
 
     x264_cpu_cpuid( 0x80000000, &eax, &ebx, &ecx, &edx );
-    if( eax < 0x80000001 )
+    max_extended_cap = eax;
+
+    if( !strcmp((char*)vendor, "AuthenticAMD") && max_extended_cap >= 0x80000001 )
     {
-        /* no extended capabilities */
-        return cpu;
+        x264_cpu_cpuid( 0x80000001, &eax, &ebx, &ecx, &edx );
+        if( edx&0x80000000 )
+            cpu |= X264_CPU_3DNOW;
+        if( edx&0x00400000 )
+            cpu |= X264_CPU_MMXEXT;
     }
 
-    x264_cpu_cpuid( 0x80000001, &eax, &ebx, &ecx, &edx );
-    if( edx&0x80000000 )
+    if( !strcmp((char*)vendor, "GenuineIntel") || !strcmp((char*)vendor, "CyrixInstead") )
+        cpu |= X264_CPU_CACHELINE_SPLIT;
+    /* cacheline size is specified in 3 places, any of which may be missing */
+    x264_cpu_cpuid( 1, &eax, &ebx, &ecx, &edx );
+    cache = (ebx&0xff00)>>5; // cflush size
+    if( !cache && max_extended_cap >= 0x80000006 )
     {
-        cpu |= X264_CPU_3DNOW;
+        x264_cpu_cpuid( 0x80000006, &eax, &ebx, &ecx, &edx );
+        cache = ecx&0xff; // cacheline size
     }
-    if( b_amd && (edx&0x00400000) )
+    if( !cache )
     {
-        /* AMD MMX extensions */
-        cpu |= X264_CPU_MMXEXT;
+        // Cache and TLB Information
+        static const char cache32_ids[] = { 0x0a, 0x0c, 0x41, 0x42, 0x43, 0x44, 0x45, 0x82, 0x83, 0x84, 0x85, 0 };
+        static const char cache64_ids[] = { 0x22, 0x23, 0x25, 0x29, 0x2c, 0x46, 0x47, 0x49, 0x60, 0x66, 0x67, 0x68, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7f, 0x86, 0x87, 0 };
+        uint32_t buf[4];
+        int max, i=0, j;
+        do {
+            x264_cpu_cpuid( 2, buf+0, buf+1, buf+2, buf+3 );
+            max = buf[0]&0xff;
+            buf[0] &= ~0xff;
+            for(j=0; j<4; j++)
+                if( !(buf[j]>>31) )
+                    while( buf[j] )
+                    {
+                        if( strchr( cache32_ids, buf[j]&0xff ) )
+                            cache = 32;
+                        if( strchr( cache64_ids, buf[j]&0xff ) )
+                            cache = 64;
+                        buf[j] >>= 8;
+                    }
+        } while( ++i < max );
     }
 
+    if( cache == 32 )
+        cpu |= X264_CPU_CACHELINE_32;
+    if( cache == 64 )
+        cpu |= X264_CPU_CACHELINE_64;
+
     return cpu;
 }
 
index c1c387c0e7b060dd0c94457fa890d542a48bd072..5ebf000a3ddba35921b4926d33b73cdcb86fcbee 100644 (file)
@@ -672,14 +672,18 @@ x264_t *x264_encoder_open   ( x264_param_t *param )
 
     mbcmp_init( h );
 
-    x264_log( h, X264_LOG_INFO, "using cpu capabilities: %s%s%s%s%s%s%s%s\n",
+    x264_log( h, X264_LOG_INFO, "using cpu capabilities: %s%s%s%s%s%s%s%s%s%s\n",
              param->cpu&X264_CPU_MMX ? "MMX " : "",
              param->cpu&X264_CPU_MMXEXT ? "MMXEXT " : "",
              param->cpu&X264_CPU_SSE ? "SSE " : "",
              param->cpu&X264_CPU_SSE2 ? "SSE2 " : "",
+             param->cpu&X264_CPU_SSE3 ? "SSE3 " : "",
              param->cpu&X264_CPU_SSSE3 ? "SSSE3 " : "",
              param->cpu&X264_CPU_3DNOW ? "3DNow! " : "",
              param->cpu&X264_CPU_ALTIVEC ? "Altivec " : "",
+             param->cpu&X264_CPU_CACHELINE_SPLIT ?
+                 param->cpu&X264_CPU_CACHELINE_32 ? "Cache32 " :
+                 param->cpu&X264_CPU_CACHELINE_64 ? "Cache64 " : "Cache? " : "",
              param->cpu ? "" : "none!" );
 
     h->out.i_nal = 0;
diff --git a/x264.h b/x264.h
index 8fef919f692a88abbd547053ba4f34fb05cea005..6d2ee75319ff18aad701e76ee973591651ce8915 100644 (file)
--- a/x264.h
+++ b/x264.h
@@ -35,7 +35,7 @@
 
 #include <stdarg.h>
 
-#define X264_BUILD 56
+#define X264_BUILD 57
 
 /* x264_t:
  *      opaque handler for encoder */
@@ -55,6 +55,9 @@ typedef struct x264_t x264_t;
 #define X264_CPU_ALTIVEC    0x000040    /* altivec */
 #define X264_CPU_SSE3       0x000080    /* sse 3 */
 #define X264_CPU_SSSE3      0x000100    /* ssse 3 */
+#define X264_CPU_CACHELINE_SPLIT 0x200  /* avoid memory loads that span the boder between two cachelines */
+#define X264_CPU_CACHELINE_32 0x0400    /* size of a cacheline in bytes */
+#define X264_CPU_CACHELINE_64 0x0800
 
 /* Analyse flags
  */