1 /**************************************************************************
3 * Copyright 2008 Dennis Smit
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 * on the rights to use, copy, modify, merge, publish, distribute, sub
10 * license, and/or sell copies of the Software, and to permit persons to whom
11 * the Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20 * AUTHORS, COPYRIGHT HOLDERS, AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 **************************************************************************/
29 * CPU feature detection.
32 * @author Based on the work of Eric Anholt <anholt@FreeBSD.org>
35 #include "pipe/p_config.h"
38 #include "u_cpu_detect.h"
40 #if defined(PIPE_ARCH_PPC)
41 #if defined(PIPE_OS_APPLE)
42 #include <sys/sysctl.h>
49 #if defined(PIPE_OS_NETBSD) || defined(PIPE_OS_OPENBSD)
50 #include <sys/param.h>
51 #include <sys/sysctl.h>
52 #include <machine/cpu.h>
55 #if defined(PIPE_OS_FREEBSD)
56 #include <sys/types.h>
57 #include <sys/sysctl.h>
60 #if defined(PIPE_OS_LINUX)
68 #if defined(PIPE_OS_WINDOWS)
77 DEBUG_GET_ONCE_BOOL_OPTION(dump_cpu
, "GALLIUM_DUMP_CPU", FALSE
)
81 struct util_cpu_caps util_cpu_caps
;
83 #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
84 static int has_cpuid(void);
88 #if defined(PIPE_ARCH_PPC) && !defined(PIPE_OS_APPLE)
89 static jmp_buf __lv_powerpc_jmpbuf
;
90 static volatile sig_atomic_t __lv_powerpc_canjump
= 0;
93 sigill_handler(int sig
)
95 if (!__lv_powerpc_canjump
) {
96 signal (sig
, SIG_DFL
);
100 __lv_powerpc_canjump
= 0;
101 longjmp(__lv_powerpc_jmpbuf
, 1);
105 #if defined(PIPE_ARCH_PPC)
107 check_os_altivec_support(void)
109 #if defined(PIPE_OS_APPLE)
110 int sels
[2] = {CTL_HW
, HW_VECTORUNIT
};
112 int len
= sizeof (has_vu
);
115 err
= sysctl(sels
, 2, &has_vu
, &len
, NULL
, 0);
119 util_cpu_caps
.has_altivec
= 1;
122 #else /* !PIPE_OS_APPLE */
123 /* not on Apple/Darwin, do it the brute-force way */
124 /* this is borrowed from the libmpeg2 library */
125 signal(SIGILL
, sigill_handler
);
126 if (setjmp(__lv_powerpc_jmpbuf
)) {
127 signal(SIGILL
, SIG_DFL
);
129 __lv_powerpc_canjump
= 1;
133 "vand %%v0, %%v0, %%v0"
137 signal(SIGILL
, SIG_DFL
);
138 util_cpu_caps
.has_altivec
= 1;
140 #endif /* !PIPE_OS_APPLE */
142 #endif /* PIPE_ARCH_PPC */
145 #if defined(PIPE_ARCH_X86) || defined (PIPE_ARCH_X86_64)
146 static int has_cpuid(void)
148 #if defined(PIPE_ARCH_X86)
149 #if defined(PIPE_OS_GCC)
156 "xorl $0x200000, %0\n"
170 #elif defined(PIPE_ARCH_X86_64)
179 * @sa cpuid.h included in gcc-4.3 onwards.
180 * @sa http://msdn.microsoft.com/en-us/library/hskdteyh.aspx
183 cpuid(uint32_t ax
, uint32_t *p
)
185 #if defined(PIPE_CC_GCC) && defined(PIPE_ARCH_X86)
187 "xchgl %%ebx, %1\n\t"
196 #elif defined(PIPE_CC_GCC) && defined(PIPE_ARCH_X86_64)
205 #elif defined(PIPE_CC_MSVC)
214 #endif /* X86 or X86_64 */
217 util_cpu_detect(void)
219 static boolean util_cpu_detect_initialized
= FALSE
;
221 if(util_cpu_detect_initialized
)
224 memset(&util_cpu_caps
, 0, sizeof util_cpu_caps
);
226 /* Count the number of CPUs in system */
227 #if defined(PIPE_OS_WINDOWS)
229 SYSTEM_INFO system_info
;
230 GetSystemInfo(&system_info
);
231 util_cpu_caps
.nr_cpus
= system_info
.dwNumberOfProcessors
;
233 #elif defined(PIPE_OS_UNIX) && defined(_SC_NPROCESSORS_ONLN)
234 util_cpu_caps
.nr_cpus
= sysconf(_SC_NPROCESSORS_ONLN
);
235 if (util_cpu_caps
.nr_cpus
== -1)
236 util_cpu_caps
.nr_cpus
= 1;
237 #elif defined(PIPE_OS_BSD)
246 sysctl(mib
, 2, &ncpu
, &len
, NULL
, 0);
247 util_cpu_caps
.nr_cpus
= ncpu
;
250 util_cpu_caps
.nr_cpus
= 1;
253 #if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
258 util_cpu_caps
.cacheline
= 32;
260 /* Get max cpuid level */
261 cpuid(0x00000000, regs
);
263 if (regs
[0] >= 0x00000001) {
264 unsigned int cacheline
;
266 cpuid (0x00000001, regs2
);
268 util_cpu_caps
.x86_cpu_type
= (regs2
[0] >> 8) & 0xf;
269 if (util_cpu_caps
.x86_cpu_type
== 0xf)
270 util_cpu_caps
.x86_cpu_type
= 8 + ((regs2
[0] >> 20) & 255); /* use extended family (P4, IA64) */
272 /* general feature flags */
273 util_cpu_caps
.has_tsc
= (regs2
[3] >> 8) & 1; /* 0x0000010 */
274 util_cpu_caps
.has_mmx
= (regs2
[3] >> 23) & 1; /* 0x0800000 */
275 util_cpu_caps
.has_sse
= (regs2
[3] >> 25) & 1; /* 0x2000000 */
276 util_cpu_caps
.has_sse2
= (regs2
[3] >> 26) & 1; /* 0x4000000 */
277 util_cpu_caps
.has_sse3
= (regs2
[2] >> 0) & 1; /* 0x0000001 */
278 util_cpu_caps
.has_ssse3
= (regs2
[2] >> 9) & 1; /* 0x0000020 */
279 util_cpu_caps
.has_sse4_1
= (regs2
[2] >> 19) & 1;
280 util_cpu_caps
.has_sse4_2
= (regs2
[2] >> 20) & 1;
281 util_cpu_caps
.has_avx
= (regs2
[2] >> 28) & 1;
282 util_cpu_caps
.has_mmx2
= util_cpu_caps
.has_sse
; /* SSE cpus supports mmxext too */
284 cacheline
= ((regs2
[1] >> 8) & 0xFF) * 8;
286 util_cpu_caps
.cacheline
= cacheline
;
289 cpuid(0x80000000, regs
);
291 if (regs
[0] >= 0x80000001) {
293 cpuid(0x80000001, regs2
);
295 util_cpu_caps
.has_mmx
|= (regs2
[3] >> 23) & 1;
296 util_cpu_caps
.has_mmx2
|= (regs2
[3] >> 22) & 1;
297 util_cpu_caps
.has_3dnow
= (regs2
[3] >> 31) & 1;
298 util_cpu_caps
.has_3dnow_ext
= (regs2
[3] >> 30) & 1;
301 if (regs
[0] >= 0x80000006) {
302 cpuid(0x80000006, regs2
);
303 util_cpu_caps
.cacheline
= regs2
[2] & 0xFF;
306 if (!util_cpu_caps
.has_sse
) {
307 util_cpu_caps
.has_sse2
= 0;
308 util_cpu_caps
.has_sse3
= 0;
309 util_cpu_caps
.has_ssse3
= 0;
310 util_cpu_caps
.has_sse4_1
= 0;
313 #endif /* PIPE_ARCH_X86 || PIPE_ARCH_X86_64 */
315 #if defined(PIPE_ARCH_PPC)
316 check_os_altivec_support();
317 #endif /* PIPE_ARCH_PPC */
320 if (debug_get_option_dump_cpu()) {
321 debug_printf("util_cpu_caps.nr_cpus = %u\n", util_cpu_caps
.nr_cpus
);
323 debug_printf("util_cpu_caps.x86_cpu_type = %u\n", util_cpu_caps
.x86_cpu_type
);
324 debug_printf("util_cpu_caps.cacheline = %u\n", util_cpu_caps
.cacheline
);
326 debug_printf("util_cpu_caps.has_tsc = %u\n", util_cpu_caps
.has_tsc
);
327 debug_printf("util_cpu_caps.has_mmx = %u\n", util_cpu_caps
.has_mmx
);
328 debug_printf("util_cpu_caps.has_mmx2 = %u\n", util_cpu_caps
.has_mmx2
);
329 debug_printf("util_cpu_caps.has_sse = %u\n", util_cpu_caps
.has_sse
);
330 debug_printf("util_cpu_caps.has_sse2 = %u\n", util_cpu_caps
.has_sse2
);
331 debug_printf("util_cpu_caps.has_sse3 = %u\n", util_cpu_caps
.has_sse3
);
332 debug_printf("util_cpu_caps.has_ssse3 = %u\n", util_cpu_caps
.has_ssse3
);
333 debug_printf("util_cpu_caps.has_sse4_1 = %u\n", util_cpu_caps
.has_sse4_1
);
334 debug_printf("util_cpu_caps.has_sse4_2 = %u\n", util_cpu_caps
.has_sse4_2
);
335 debug_printf("util_cpu_caps.has_avx = %u\n", util_cpu_caps
.has_avx
);
336 debug_printf("util_cpu_caps.has_3dnow = %u\n", util_cpu_caps
.has_3dnow
);
337 debug_printf("util_cpu_caps.has_3dnow_ext = %u\n", util_cpu_caps
.has_3dnow_ext
);
338 debug_printf("util_cpu_caps.has_altivec = %u\n", util_cpu_caps
.has_altivec
);
342 util_cpu_detect_initialized
= TRUE
;