]> git.sesse.net Git - vlc/blob - src/misc/cpu.c
* src/misc/cpu.c: New altivec detection for Darwin. Using the correct
[vlc] / src / misc / cpu.c
1 /*****************************************************************************
2  * cpu.c: CPU detection code
3  *****************************************************************************
4  * Copyright (C) 1998-2004 VideoLAN
5  * $Id: cpu.c,v 1.13 2004/01/20 15:34:44 hartman Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <vlc/vlc.h>
30
31 #ifdef HAVE_SIGNAL_H
32 #   include <signal.h>                            /* SIGHUP, SIGINT, SIGKILL */
33 #   include <setjmp.h>                                    /* longjmp, setjmp */
34 #endif
35
36 #ifdef SYS_DARWIN
37 #include <sys/sysctl.h>
38 #endif
39
40 #include "vlc_cpu.h"
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 #ifdef HAVE_SIGNAL_H
46 static void SigHandler   ( int );
47 #endif
48
49 /*****************************************************************************
50  * Global variables - they're needed for signal handling
51  *****************************************************************************/
52 #ifdef HAVE_SIGNAL_H
53 static jmp_buf env;
54 static int     i_illegal;
55 #if defined( __i386__ )
56 static char   *psz_capability;
57 #endif
58 #endif
59
60 /*****************************************************************************
61  * CPUCapabilities: get the CPU capabilities
62  *****************************************************************************
63  * This function is called to list extensions the CPU may have.
64  *****************************************************************************/
65 uint32_t CPUCapabilities( void )
66 {
67     volatile uint32_t i_capabilities = CPU_CAPABILITY_NONE;
68
69 #if defined( SYS_DARWIN )
70     int selectors[2] = { CTL_HW, HW_VECTORUNIT };
71     int i_has_altivec = 0;
72     size_t i_length = sizeof( i_has_altivec );
73     int i_error = sysctl( selectors, 2, &i_has_altivec, &i_length, NULL, 0);
74
75     i_capabilities |= CPU_CAPABILITY_FPU;
76
77     if( i_error == 0 && i_has_altivec != 0 )
78         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
79
80     return i_capabilities;
81
82 #elif defined( __i386__ )
83     volatile unsigned int  i_eax, i_ebx, i_ecx, i_edx;
84     volatile vlc_bool_t    b_amd;
85
86     /* Needed for x86 CPU capabilities detection */
87 #   define cpuid( reg )                    \
88         asm volatile ( "pushl %%ebx\n\t"   \
89                        "cpuid\n\t"         \
90                        "movl %%ebx,%1\n\t" \
91                        "popl %%ebx\n\t"    \
92                      : "=a" ( i_eax ),     \
93                        "=r" ( i_ebx ),     \
94                        "=c" ( i_ecx ),     \
95                        "=d" ( i_edx )      \
96                      : "a"  ( reg )        \
97                      : "cc" );
98
99 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW ) \
100      && defined( HAVE_SIGNAL_H )
101     void (*pf_sigill) (int) = signal( SIGILL, SigHandler );
102 #   endif
103
104     i_capabilities |= CPU_CAPABILITY_FPU;
105
106     /* test for a 486 CPU */
107     asm volatile ( "pushl %%ebx\n\t"
108                    "pushfl\n\t"
109                    "popl %%eax\n\t"
110                    "movl %%eax, %%ebx\n\t"
111                    "xorl $0x200000, %%eax\n\t"
112                    "pushl %%eax\n\t"
113                    "popfl\n\t"
114                    "pushfl\n\t"
115                    "popl %%eax\n\t"
116                    "movl %%ebx,%1\n\t"
117                    "popl %%ebx\n\t"
118                  : "=a" ( i_eax ),
119                    "=r" ( i_ebx )
120                  :
121                  : "cc" );
122
123     if( i_eax == i_ebx )
124     {
125 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW ) \
126      && defined( HAVE_SIGNAL_H )
127         signal( SIGILL, pf_sigill );
128 #   endif
129         return i_capabilities;
130     }
131
132     i_capabilities |= CPU_CAPABILITY_486;
133
134     /* the CPU supports the CPUID instruction - get its level */
135     cpuid( 0x00000000 );
136
137     if( !i_eax )
138     {
139 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW ) \
140      && defined( HAVE_SIGNAL_H )
141         signal( SIGILL, pf_sigill );
142 #   endif
143         return i_capabilities;
144     }
145
146     /* FIXME: this isn't correct, since some 486s have cpuid */
147     i_capabilities |= CPU_CAPABILITY_586;
148
149     /* borrowed from mpeg2dec */
150     b_amd = ( i_ebx == 0x68747541 ) && ( i_ecx == 0x444d4163 )
151                     && ( i_edx == 0x69746e65 );
152
153     /* test for the MMX flag */
154     cpuid( 0x00000001 );
155
156     if( ! (i_edx & 0x00800000) )
157     {
158 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW ) \
159      && defined( HAVE_SIGNAL_H )
160         signal( SIGILL, pf_sigill );
161 #   endif
162         return i_capabilities;
163     }
164
165     i_capabilities |= CPU_CAPABILITY_MMX;
166
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         psz_capability = "SSE";
174         i_illegal = 0;
175
176         if( setjmp( env ) == 0 )
177         {
178             /* Test a SSE instruction */
179             __asm__ __volatile__ ( "xorps %%xmm0,%%xmm0\n" : : );
180         }
181
182         if( i_illegal == 0 )
183         {
184             i_capabilities |= CPU_CAPABILITY_SSE;
185         }
186 #   endif
187     }
188
189     /* test for additional capabilities */
190     cpuid( 0x80000000 );
191
192     if( i_eax < 0x80000001 )
193     {
194 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW ) \
195      && defined( HAVE_SIGNAL_H )
196         signal( SIGILL, pf_sigill );
197 #   endif
198         return i_capabilities;
199     }
200
201     /* list these additional capabilities */
202     cpuid( 0x80000001 );
203
204 #   ifdef CAN_COMPILE_3DNOW
205     if( i_edx & 0x80000000 )
206     {
207         psz_capability = "3D Now!";
208         i_illegal = 0;
209
210         if( setjmp( env ) == 0 )
211         {
212             /* Test a 3D Now! instruction */
213             __asm__ __volatile__ ( "pfadd %%mm0,%%mm0\n" "femms\n" : : );
214         }
215
216         if( i_illegal == 0 )
217         {
218             i_capabilities |= CPU_CAPABILITY_3DNOW;
219         }
220     }
221 #   endif
222
223     if( b_amd && ( i_edx & 0x00400000 ) )
224     {
225         i_capabilities |= CPU_CAPABILITY_MMXEXT;
226     }
227
228 #   if defined( CAN_COMPILE_SSE ) || defined ( CAN_COMPILE_3DNOW ) \
229      && defined( HAVE_SIGNAL_H )
230     signal( SIGILL, pf_sigill );
231 #   endif
232     return i_capabilities;
233
234 #elif defined( __powerpc__ )
235
236 #   ifdef CAN_COMPILE_ALTIVEC && defined( HAVE_SIGNAL_H )
237     void (*pf_sigill) (int) = signal( SIGILL, SigHandler );
238
239     i_capabilities |= CPU_CAPABILITY_FPU;
240
241     i_illegal = 0;
242
243     if( setjmp( env ) == 0 )
244     {
245         asm volatile ("mtspr 256, %0\n\t"
246                       "vand %%v0, %%v0, %%v0"
247                       :
248                       : "r" (-1));
249     }
250
251     if( i_illegal == 0 )
252     {
253         i_capabilities |= CPU_CAPABILITY_ALTIVEC;
254     }
255
256     signal( SIGILL, pf_sigill );
257 #   endif
258
259     return i_capabilities;
260
261 #elif defined( __sparc__ )
262
263     i_capabilities |= CPU_CAPABILITY_FPU;
264     return i_capabilities;
265
266 #elif defined( _MSC_VER )
267     i_capabilities |= CPU_CAPABILITY_FPU;
268     return i_capabilities;
269
270 #else
271     /* default behaviour */
272     return i_capabilities;
273
274 #endif
275 }
276
277 /*****************************************************************************
278  * SigHandler: system signal handler
279  *****************************************************************************
280  * This function is called when an illegal instruction signal is received by
281  * the program. We use this function to test OS and CPU capabilities
282  *****************************************************************************/
283 #if defined( HAVE_SIGNAL_H )
284 static void SigHandler( int i_signal )
285 {
286     /* Acknowledge the signal received */
287     i_illegal = 1;
288
289 #ifdef HAVE_SIGRELSE
290     sigrelse( i_signal );
291 #endif
292
293 #if defined( __i386__ )
294     fprintf( stderr, "warning: your CPU has %s instructions, but not your "
295                      "operating system.\n", psz_capability );
296     fprintf( stderr, "         some optimizations will be disabled unless "
297                      "you upgrade your OS\n" );
298 #   if defined( SYS_LINUX )
299     fprintf( stderr, "         (for instance Linux kernel 2.4.x or later)\n" );
300 #   endif
301 #endif
302
303     longjmp( env, 1 );
304 }
305 #endif
306