]> git.sesse.net Git - vlc/blob - src/misc/cpu.c
Use <vlc_cpu.h>
[vlc] / src / misc / cpu.c
1 /*****************************************************************************
2  * cpu.c: CPU detection code
3  *****************************************************************************
4  * Copyright (C) 1998-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Eugenio Jarosiewicz <ej0@cise.ufl.eduEujenio>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_cpu.h>
35
36 #include <sys/types.h>
37 #ifndef WIN32
38 #include <unistd.h>
39 #include <sys/wait.h>
40 #endif
41
42 #include "libvlc.h"
43
44 #if defined(__APPLE__) && (defined(__ppc__) || defined(__ppc64__))
45 #include <sys/sysctl.h>
46 #endif
47
48 #if defined( __i386__ ) || defined( __x86_64__ ) || defined( __powerpc__ ) \
49  || defined( __ppc__ ) || defined( __ppc64__ ) || defined( __powerpc64__ )
50 static bool check_OS_capability( const char *psz_capability, pid_t pid )
51 {
52 #ifndef WIN32
53     int status;
54
55     if( pid == -1 )
56         return false; /* fail safe :-/ */
57
58     while( waitpid( pid, &status, 0 ) == -1 );
59
60     if( WIFEXITED( status ) && WEXITSTATUS( status ) == 0 )
61         return true;
62
63     fprintf( stderr, "warning: your CPU has %s instructions, but not your "
64                      "operating system.\n", psz_capability );
65     fprintf( stderr, "         some optimizations will be disabled unless "
66                      "you upgrade your OS\n" );
67     return false;
68 #else
69 # warning FIXME!
70 # define fork() (errno = ENOSYS, -1)
71     (void)pid;
72     (void)psz_capability;
73     return true;
74 #endif
75 }
76 #endif
77
78 /*****************************************************************************
79  * CPUCapabilities: get the CPU capabilities
80  *****************************************************************************
81  * This function is called to list extensions the CPU may have.
82  *****************************************************************************/
83 uint32_t CPUCapabilities( void )
84 {
85     uint32_t i_capabilities = 0;
86
87 #if defined( __i386__ ) || defined( __x86_64__ )
88      unsigned int i_eax, i_ebx, i_ecx, i_edx;
89      bool b_amd;
90
91     /* Needed for x86 CPU capabilities detection */
92 #   if defined( __x86_64__ )
93 #       define cpuid( reg )                    \
94             asm volatile ( "cpuid\n\t"         \
95                            "movl %%ebx,%1\n\t" \
96                          : "=a" ( i_eax ),     \
97                            "=b" ( i_ebx ),     \
98                            "=c" ( i_ecx ),     \
99                            "=d" ( i_edx )      \
100                          : "a"  ( reg )        \
101                          : "cc" );
102 #   else
103 #       define cpuid( reg )                    \
104             asm volatile ( "push %%ebx\n\t"    \
105                            "cpuid\n\t"         \
106                            "movl %%ebx,%1\n\t" \
107                            "pop %%ebx\n\t"     \
108                          : "=a" ( i_eax ),     \
109                            "=r" ( i_ebx ),     \
110                            "=c" ( i_ecx ),     \
111                            "=d" ( i_edx )      \
112                          : "a"  ( reg )        \
113                          : "cc" );
114 #   endif
115
116     i_capabilities |= CPU_CAPABILITY_FPU;
117
118 # if defined (__i386__) && !defined (__i486__) && !defined (__i586__) \
119   && !defined (__i686__) && !defined (__pentium4__) \
120   && !defined (__k6__) && !defined (__athlon__) && !defined (__k8__)
121     /* check if cpuid instruction is supported */
122     asm volatile ( "push %%ebx\n\t"
123                    "pushf\n\t"
124                    "pop %%eax\n\t"
125                    "movl %%eax, %%ebx\n\t"
126                    "xorl $0x200000, %%eax\n\t"
127                    "push %%eax\n\t"
128                    "popf\n\t"
129                    "pushf\n\t"
130                    "pop %%eax\n\t"
131                    "movl %%ebx,%1\n\t"
132                    "pop %%ebx\n\t"
133                  : "=a" ( i_eax ),
134                    "=r" ( i_ebx )
135                  :
136                  : "cc" );
137
138     if( i_eax == i_ebx )
139         goto out;
140 # endif
141
142     /* the CPU supports the CPUID instruction - get its level */
143     cpuid( 0x00000000 );
144
145 # if defined (__i386__) && !defined (__i586__) \
146   && !defined (__i686__) && !defined (__pentium4__) \
147   && !defined (__k6__) && !defined (__athlon__) && !defined (__k8__)
148     if( !i_eax )
149         goto out;
150 #endif
151
152     /* borrowed from mpeg2dec */
153     b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 )
154                     && ( i_edx == 0x69746e65 );
155
156     /* test for the MMX flag */
157     cpuid( 0x00000001 );
158 # if !defined (__MMX__)
159     if( ! (i_edx & 0x00800000) )
160         goto out;
161 # endif
162     i_capabilities |= CPU_CAPABILITY_MMX;
163
164 # if defined (__SSE__)
165     i_capabilities |= CPU_CAPABILITY_MMXEXT | CPU_CAPABILITY_SSE;
166 # else
167     if( i_edx & 0x02000000 )
168     {
169         i_capabilities |= CPU_CAPABILITY_MMXEXT;
170
171 #   ifdef CAN_COMPILE_SSE
172         /* We test if OS supports the SSE instructions */
173         pid_t pid = fork();
174         if( pid == 0 )
175         {
176             /* Test a SSE instruction */
177             __asm__ __volatile__ ( "xorps %%xmm0,%%xmm0\n" : : );
178             exit(0);
179         }
180         if( check_OS_capability( "SSE", pid ) )
181             i_capabilities |= CPU_CAPABILITY_SSE;
182 #   endif
183     }
184 # endif
185
186 # if defined (__SSE2__)
187     i_capabilities |= CPU_CAPABILITY_SSE2;
188 # elif defined (CAN_COMPILE_SSE)
189     if( i_edx & 0x04000000 )
190     {
191         /* We test if OS supports the SSE2 instructions */
192         pid_t pid = fork();
193         if( pid == 0 )
194         {
195             /* Test a SSE2 instruction */
196             __asm__ __volatile__ ( "movupd %%xmm0, %%xmm0\n" : : );
197             exit(0);
198         }
199         if( check_OS_capability( "SSE2", pid ) )
200             i_capabilities |= CPU_CAPABILITY_SSE2;
201     }
202 # endif
203
204     /* test for additional capabilities */
205     cpuid( 0x80000000 );
206
207     if( i_eax < 0x80000001 )
208         goto out;
209
210     /* list these additional capabilities */
211     cpuid( 0x80000001 );
212
213 # if defined (__3dNOW__)
214     i_capabilities |= CPU_CAPABILITY_3DNOW;
215 # elif defined (CAN_COMPILE_3DNOW)
216     if( i_edx & 0x80000000 )
217     {
218         pid_t pid = fork();
219         if( pid == 0 )
220         {
221             /* Test a 3D Now! instruction */
222             __asm__ __volatile__ ( "pfadd %%mm0,%%mm0\n" "femms\n" : : );
223             exit(0);
224         }
225         if( check_OS_capability( "3D Now!", pid ) )
226             i_capabilities |= CPU_CAPABILITY_3DNOW;
227     }
228 # endif
229
230     if( b_amd && ( i_edx & 0x00400000 ) )
231     {
232         i_capabilities |= CPU_CAPABILITY_MMXEXT;
233     }
234 out:
235
236 #elif defined( __arm__ )
237 #   if defined( __ARM_EABI__ ) && !defined( __SOFTFP__ )
238 //    i_capabilities |= CPU_CAPABILITY_FPU;
239 #   endif
240 #   if defined( __ARM_NEON__ )
241     i_capabilities |= CPU_CAPABILITY_NEON;
242 #   endif
243
244 #elif defined( __powerpc__ ) || defined( __ppc__ ) || defined( __powerpc64__ ) \
245     || defined( __ppc64__ )
246
247     i_capabilities |= CPU_CAPABILITY_FPU;
248
249 #   if defined(__APPLE__)
250     int selectors[2] = { CTL_HW, HW_VECTORUNIT };
251     int i_has_altivec = 0;
252     size_t i_length = sizeof( i_has_altivec );
253     int i_error = sysctl( selectors, 2, &i_has_altivec, &i_length, NULL, 0);
254
255     if( i_error == 0 && i_has_altivec != 0 )
256         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
257
258 #   elif defined( CAN_COMPILE_ALTIVEC )
259     pid_t pid = fork();
260     if( pid == 0 )
261     {
262         asm volatile ("mtspr 256, %0\n\t"
263                       "vand %%v0, %%v0, %%v0"
264                       :
265                       : "r" (-1));
266         exit(0);
267     }
268
269     if( check_OS_capability( "Altivec", pid ) )
270         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
271
272 #   endif
273
274 #elif defined( __sparc__ )
275     i_capabilities |= CPU_CAPABILITY_FPU;
276
277 #elif defined( _MSC_VER ) && !defined( UNDER_CE )
278     i_capabilities |= CPU_CAPABILITY_FPU;
279
280 #endif
281     return i_capabilities;
282 }
283
284 uint32_t cpu_flags = 0;
285
286
287 /*****************************************************************************
288  * vlc_CPU: get pre-computed CPU capability flags
289  ****************************************************************************/
290 unsigned vlc_CPU (void)
291 {
292     return cpu_flags;
293 }
294
295 static vlc_memcpy_t pf_vlc_memcpy = memcpy;
296 static vlc_memset_t pf_vlc_memset = memset;
297
298 void vlc_fastmem_register (vlc_memcpy_t cpy, vlc_memset_t set)
299 {
300     if (cpy)
301         pf_vlc_memcpy = cpy;
302     if (set)
303         pf_vlc_memset = set;
304 }
305
306 /**
307  * vlc_memcpy: fast CPU-dependent memcpy
308  */
309 void *vlc_memcpy (void *tgt, const void *src, size_t n)
310 {
311     return pf_vlc_memcpy (tgt, src, n);
312 }
313
314 /**
315  * vlc_memset: fast CPU-dependent memset
316  */
317 void *vlc_memset (void *tgt, int c, size_t n)
318 {
319     return pf_vlc_memset (tgt, c, n);
320 }