Mercurial > libavcodec.hg
annotate i386/cputest.c @ 3623:d0242f36a793 libavcodec
reduce size of vlc table, thats slightly faster here
author | michael |
---|---|
date | Fri, 25 Aug 2006 12:26:34 +0000 |
parents | 647a677c00a4 |
children | c537a97eec66 |
rev | line source |
---|---|
0 | 1 /* Cpu detection code, extracted from mmx.h ((c)1997-99 by H. Dietz |
429 | 2 and R. Fisher). Converted to C and improved by Fabrice Bellard */ |
0 | 3 |
4 #include <stdlib.h> | |
5 #include "../dsputil.h" | |
6 | |
2293
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
7 #ifdef ARCH_X86_64 |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
8 # define REG_b "rbx" |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
9 # define REG_S "rsi" |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
10 #else |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
11 # define REG_b "ebx" |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
12 # define REG_S "esi" |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
13 #endif |
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
14 |
22
c31fb57d17a6
Suppressing external gas stuff to improve portability to Win32
nickols_k
parents:
16
diff
changeset
|
15 /* ebx saving is necessary for PIC. gcc seems unable to see it alone */ |
c31fb57d17a6
Suppressing external gas stuff to improve portability to Win32
nickols_k
parents:
16
diff
changeset
|
16 #define cpuid(index,eax,ebx,ecx,edx)\ |
43 | 17 __asm __volatile\ |
2979 | 18 ("mov %%"REG_b", %%"REG_S"\n\t"\ |
22
c31fb57d17a6
Suppressing external gas stuff to improve portability to Win32
nickols_k
parents:
16
diff
changeset
|
19 "cpuid\n\t"\ |
2293
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
20 "xchg %%"REG_b", %%"REG_S\ |
22
c31fb57d17a6
Suppressing external gas stuff to improve portability to Win32
nickols_k
parents:
16
diff
changeset
|
21 : "=a" (eax), "=S" (ebx),\ |
c31fb57d17a6
Suppressing external gas stuff to improve portability to Win32
nickols_k
parents:
16
diff
changeset
|
22 "=c" (ecx), "=d" (edx)\ |
43 | 23 : "0" (index)); |
0 | 24 |
25 /* Function to test if multimedia instructions are supported... */ | |
26 int mm_support(void) | |
27 { | |
2377
9214c91cdfb7
detect sse on athlon-xp patch by (matthieu castet <castet >.< matthieu >at< free >.< fr>)
michael
parents:
2300
diff
changeset
|
28 int rval = 0; |
0 | 29 int eax, ebx, ecx, edx; |
2388 | 30 int max_std_level, max_ext_level, std_caps=0, ext_caps=0; |
2300
40542ea560d5
gcc 3.4.3 preversions do not appreciate invalid instruction and operand combinations anymore patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2293
diff
changeset
|
31 long a, c; |
2967 | 32 |
0 | 33 __asm__ __volatile__ ( |
34 /* See if CPUID instruction is supported ... */ | |
35 /* ... Get copies of EFLAGS into eax and ecx */ | |
36 "pushf\n\t" | |
2293
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
37 "pop %0\n\t" |
2300
40542ea560d5
gcc 3.4.3 preversions do not appreciate invalid instruction and operand combinations anymore patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2293
diff
changeset
|
38 "mov %0, %1\n\t" |
2967 | 39 |
0 | 40 /* ... Toggle the ID bit in one copy and store */ |
41 /* to the EFLAGS reg */ | |
2300
40542ea560d5
gcc 3.4.3 preversions do not appreciate invalid instruction and operand combinations anymore patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2293
diff
changeset
|
42 "xor $0x200000, %0\n\t" |
0 | 43 "push %0\n\t" |
44 "popf\n\t" | |
2967 | 45 |
0 | 46 /* ... Get the (hopefully modified) EFLAGS */ |
47 "pushf\n\t" | |
2293
15cfba1b97b5
adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64 patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2129
diff
changeset
|
48 "pop %0\n\t" |
2300
40542ea560d5
gcc 3.4.3 preversions do not appreciate invalid instruction and operand combinations anymore patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2293
diff
changeset
|
49 : "=a" (a), "=c" (c) |
0 | 50 : |
2967 | 51 : "cc" |
0 | 52 ); |
2967 | 53 |
2300
40542ea560d5
gcc 3.4.3 preversions do not appreciate invalid instruction and operand combinations anymore patch by (Aurelien Jacobs <aurel at gnuage dot org>)
michael
parents:
2293
diff
changeset
|
54 if (a == c) |
0 | 55 return 0; /* CPUID not supported */ |
2388 | 56 |
57 cpuid(0, max_std_level, ebx, ecx, edx); | |
58 | |
59 if(max_std_level >= 1){ | |
60 cpuid(1, eax, ebx, ecx, std_caps); | |
61 if (std_caps & (1<<23)) | |
62 rval |= MM_MMX; | |
2967 | 63 if (std_caps & (1<<25)) |
2388 | 64 rval |= MM_MMXEXT | MM_SSE; |
2967 | 65 if (std_caps & (1<<26)) |
2388 | 66 rval |= MM_SSE2; |
3279
647a677c00a4
Remove unused and unsupported Cyrix's "Extended MMX",
gpoirier
parents:
2979
diff
changeset
|
67 if (ecx & 1) |
647a677c00a4
Remove unused and unsupported Cyrix's "Extended MMX",
gpoirier
parents:
2979
diff
changeset
|
68 rval |= MM_SSE3; |
2388 | 69 } |
0 | 70 |
2388 | 71 cpuid(0x80000000, max_ext_level, ebx, ecx, edx); |
72 | |
73 if(max_ext_level >= 0x80000001){ | |
74 cpuid(0x80000001, eax, ebx, ecx, ext_caps); | |
75 if (ext_caps & (1<<31)) | |
76 rval |= MM_3DNOW; | |
77 if (ext_caps & (1<<30)) | |
78 rval |= MM_3DNOWEXT; | |
79 if (ext_caps & (1<<23)) | |
80 rval |= MM_MMX; | |
3279
647a677c00a4
Remove unused and unsupported Cyrix's "Extended MMX",
gpoirier
parents:
2979
diff
changeset
|
81 if (ext_caps & (1<<22)) |
647a677c00a4
Remove unused and unsupported Cyrix's "Extended MMX",
gpoirier
parents:
2979
diff
changeset
|
82 rval |= MM_MMXEXT; |
2388 | 83 } |
84 | |
85 #if 0 | |
2967 | 86 av_log(NULL, AV_LOG_DEBUG, "%s%s%s%s%s%s\n", |
87 (rval&MM_MMX) ? "MMX ":"", | |
88 (rval&MM_MMXEXT) ? "MMX2 ":"", | |
89 (rval&MM_SSE) ? "SSE ":"", | |
90 (rval&MM_SSE2) ? "SSE2 ":"", | |
91 (rval&MM_3DNOW) ? "3DNow ":"", | |
2388 | 92 (rval&MM_3DNOWEXT) ? "3DNowExt ":""); |
93 #endif | |
94 return rval; | |
0 | 95 } |
43 | 96 |
97 #ifdef __TEST__ | |
98 int main ( void ) | |
99 { | |
100 int mm_flags; | |
101 mm_flags = mm_support(); | |
2129 | 102 printf("mm_support = 0x%08X\n",mm_flags); |
43 | 103 return 0; |
104 } | |
105 #endif |