2 * Mesa 3-D graphics library
4 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
28 * Check CPU capabilities & initialize optimized funtions for this particular
31 * Changed by Andre Werthmann for using the new SSE functions.
33 * \author Holger Waechtler <holger@akaflieg.extern.tu-berlin.de>
34 * \author Andre Werthmann <wertmann@cs.uni-potsdam.de>
37 /* XXX these includes should probably go into imports.h or glheader.h */
38 #if defined(USE_SSE_ASM) && defined(__linux__)
39 #include <linux/version.h>
41 #if defined(USE_SSE_ASM) && defined(__FreeBSD__)
42 #include <sys/types.h>
43 #include <sys/sysctl.h>
45 #if defined(USE_SSE_ASM) && defined(__OpenBSD__)
46 #include <sys/param.h>
47 #include <sys/sysctl.h>
48 #include <machine/cpu.h>
50 #if defined(__x86_64__) && !defined(_MSC_VER)
54 #include "main/imports.h"
55 #include "common_x86_asm.h"
58 /** Bitmask of X86_FEATURE_x bits */
59 int _mesa_x86_cpu_features
= 0x0;
61 static int detection_debug
= GL_FALSE
;
63 /* No reason for this to be public.
65 extern GLuint _ASMAPI
_mesa_x86_has_cpuid(void);
66 extern void _ASMAPI
_mesa_x86_cpuid(GLuint op
, GLuint
*reg_eax
, GLuint
*reg_ebx
, GLuint
*reg_ecx
, GLuint
*reg_edx
);
67 extern GLuint _ASMAPI
_mesa_x86_cpuid_eax(GLuint op
);
68 extern GLuint _ASMAPI
_mesa_x86_cpuid_ebx(GLuint op
);
69 extern GLuint _ASMAPI
_mesa_x86_cpuid_ecx(GLuint op
);
70 extern GLuint _ASMAPI
_mesa_x86_cpuid_edx(GLuint op
);
73 #if defined(USE_SSE_ASM)
75 * We must verify that the Streaming SIMD Extensions are truly supported
76 * on this processor before we go ahead and hook out the optimized code.
78 * However, I have been told by Alan Cox that all 2.4 (and later) Linux
79 * kernels provide full SSE support on all processors that expose SSE via
80 * the CPUID mechanism.
83 /* These are assembly functions: */
84 extern void _mesa_test_os_sse_support( void );
85 extern void _mesa_test_os_sse_exception_support( void );
89 #ifndef STATUS_FLOAT_MULTIPLE_TRAPS
90 # define STATUS_FLOAT_MULTIPLE_TRAPS (0xC00002B5L)
92 static LONG WINAPI
ExceptionFilter(LPEXCEPTION_POINTERS exp
)
94 PEXCEPTION_RECORD rec
= exp
->ExceptionRecord
;
95 PCONTEXT ctx
= exp
->ContextRecord
;
97 if ( rec
->ExceptionCode
== EXCEPTION_ILLEGAL_INSTRUCTION
) {
98 _mesa_debug(NULL
, "EXCEPTION_ILLEGAL_INSTRUCTION\n" );
99 _mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM
);
100 } else if ( rec
->ExceptionCode
== STATUS_FLOAT_MULTIPLE_TRAPS
) {
101 _mesa_debug(NULL
, "STATUS_FLOAT_MULTIPLE_TRAPS\n");
102 /* Windows seems to clear the exception flag itself, we just have to increment Eip */
104 _mesa_debug(NULL
, "UNEXPECTED EXCEPTION (0x%08x), terminating!\n" );
105 return EXCEPTION_EXECUTE_HANDLER
;
108 if ( (ctx
->ContextFlags
& CONTEXT_CONTROL
) != CONTEXT_CONTROL
) {
109 _mesa_debug(NULL
, "Context does not contain control registers, terminating!\n");
110 return EXCEPTION_EXECUTE_HANDLER
;
114 return EXCEPTION_CONTINUE_EXECUTION
;
120 * Check if SSE is supported.
121 * If not, turn off the X86_FEATURE_XMM flag in _mesa_x86_cpu_features.
123 void _mesa_check_os_sse_support( void )
125 #if defined(__FreeBSD__)
129 len
= sizeof(enabled
);
130 ret
= sysctlbyname("hw.instruction_sse", &enabled
, &len
, NULL
, 0);
132 _mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM
);
134 #elif defined (__NetBSD__)
137 size_t len
= sizeof(enabled
);
138 ret
= sysctlbyname("machdep.sse", &enabled
, &len
, (void *)NULL
, 0);
140 _mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM
);
142 #elif defined(__OpenBSD__)
146 size_t len
= sizeof(enabled
);
148 mib
[0] = CTL_MACHDEP
;
151 ret
= sysctl(mib
, 2, &enabled
, &len
, NULL
, 0);
153 _mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM
);
155 #elif defined(_WIN32)
156 LPTOP_LEVEL_EXCEPTION_FILTER oldFilter
;
158 /* Install our ExceptionFilter */
159 oldFilter
= SetUnhandledExceptionFilter( ExceptionFilter
);
162 _mesa_debug(NULL
, "Testing OS support for SSE...\n");
164 _mesa_test_os_sse_support();
167 _mesa_debug(NULL
, "Yes.\n");
169 _mesa_debug(NULL
, "No!\n");
174 _mesa_debug(NULL
, "Testing OS support for SSE unmasked exceptions...\n");
176 _mesa_test_os_sse_exception_support();
179 _mesa_debug(NULL
, "Yes.\n");
181 _mesa_debug(NULL
, "No!\n");
185 /* Restore previous exception filter */
186 SetUnhandledExceptionFilter( oldFilter
);
189 _mesa_debug(NULL
, "Tests of OS support for SSE passed.\n");
191 _mesa_debug(NULL
, "Tests of OS support for SSE failed!\n");
194 /* Do nothing on other platforms for now.
197 _mesa_debug(NULL
, "Not testing OS support for SSE, leaving enabled.\n");
198 #endif /* __FreeBSD__ */
201 #endif /* USE_SSE_ASM */
205 * Initialize the _mesa_x86_cpu_features bitfield.
206 * This is a no-op if called more than once.
209 _mesa_get_x86_features(void)
211 static int called
= 0;
219 _mesa_x86_cpu_features
= 0x0;
221 if (_mesa_getenv( "MESA_NO_ASM")) {
225 if (!_mesa_x86_has_cpuid()) {
226 _mesa_debug(NULL
, "CPUID not detected\n");
230 GLuint cpu_ext_features
;
235 /* get vendor name */
236 _mesa_x86_cpuid(0, &result
, (GLuint
*)(cpu_vendor
+ 0), (GLuint
*)(cpu_vendor
+ 8), (GLuint
*)(cpu_vendor
+ 4));
237 cpu_vendor
[12] = '\0';
240 _mesa_debug(NULL
, "CPU vendor: %s\n", cpu_vendor
);
242 /* get cpu features */
243 cpu_features
= _mesa_x86_cpuid_edx(1);
244 cpu_features_ecx
= _mesa_x86_cpuid_ecx(1);
246 if (cpu_features
& X86_CPU_FPU
)
247 _mesa_x86_cpu_features
|= X86_FEATURE_FPU
;
248 if (cpu_features
& X86_CPU_CMOV
)
249 _mesa_x86_cpu_features
|= X86_FEATURE_CMOV
;
252 if (cpu_features
& X86_CPU_MMX
)
253 _mesa_x86_cpu_features
|= X86_FEATURE_MMX
;
257 if (cpu_features
& X86_CPU_XMM
)
258 _mesa_x86_cpu_features
|= X86_FEATURE_XMM
;
259 if (cpu_features
& X86_CPU_XMM2
)
260 _mesa_x86_cpu_features
|= X86_FEATURE_XMM2
;
261 if (cpu_features
& x86_CPU_SSE4_1
)
262 _mesa_x86_features
|= X86_FEATURE_SSE4_1
;
265 /* query extended cpu features */
266 if ((cpu_ext_info
= _mesa_x86_cpuid_eax(0x80000000)) > 0x80000000) {
267 if (cpu_ext_info
>= 0x80000001) {
269 cpu_ext_features
= _mesa_x86_cpuid_edx(0x80000001);
271 if (cpu_features
& X86_CPU_MMX
) {
274 if (cpu_ext_features
& X86_CPUEXT_3DNOW
)
275 _mesa_x86_cpu_features
|= X86_FEATURE_3DNOW
;
276 if (cpu_ext_features
& X86_CPUEXT_3DNOW_EXT
)
277 _mesa_x86_cpu_features
|= X86_FEATURE_3DNOWEXT
;
281 if (cpu_ext_features
& X86_CPUEXT_MMX_EXT
)
282 _mesa_x86_cpu_features
|= X86_FEATURE_MMXEXT
;
288 if (cpu_ext_info
>= 0x80000002) {
291 for (ofs
= 0; ofs
< 3; ofs
++)
292 _mesa_x86_cpuid(0x80000002+ofs
, (GLuint
*)(cpu_name
+ (16*ofs
)+0), (GLuint
*)(cpu_name
+ (16*ofs
)+4), (GLuint
*)(cpu_name
+ (16*ofs
)+8), (GLuint
*)(cpu_name
+ (16*ofs
)+12));
293 cpu_name
[48] = '\0'; /* the name should be NULL terminated, but just to be sure */
296 _mesa_debug(NULL
, "CPU name: %s\n", cpu_name
);
304 if ( _mesa_getenv( "MESA_NO_MMX" ) == 0 ) {
306 _mesa_debug(NULL
, "MMX cpu detected.\n");
308 _mesa_x86_cpu_features
&= ~(X86_FEATURE_MMX
);
314 if ( cpu_has_3dnow
) {
315 if ( _mesa_getenv( "MESA_NO_3DNOW" ) == 0 ) {
317 _mesa_debug(NULL
, "3DNow! cpu detected.\n");
319 _mesa_x86_cpu_features
&= ~(X86_FEATURE_3DNOW
);
326 if ( _mesa_getenv( "MESA_NO_SSE" ) == 0 ) {
328 _mesa_debug(NULL
, "SSE cpu detected.\n");
329 if ( _mesa_getenv( "MESA_FORCE_SSE" ) == 0 ) {
330 _mesa_check_os_sse_support();
333 _mesa_debug(NULL
, "SSE cpu detected, but switched off by user.\n");
334 _mesa_x86_cpu_features
&= ~(X86_FEATURE_XMM
);
339 #elif defined(__x86_64__) && !defined(_MSC_VER)
340 unsigned int uninitialized_var(eax
), uninitialized_var(ebx
),
341 uninitialized_var(ecx
), uninitialized_var(edx
);
343 /* Always available on x86-64. */
344 _mesa_x86_cpu_features
|= X86_FEATURE_XMM
| X86_FEATURE_XMM2
;
346 __get_cpuid(1, &eax
, &ebx
, &ecx
, &edx
);
348 if (ecx
& bit_SSE4_1
)
349 _mesa_x86_cpu_features
|= X86_FEATURE_SSE4_1
;
350 #endif /* USE_X86_ASM */
352 (void) detection_debug
;