annotate cpudetect.c @ 2301:b4c4c832cce7

Detect and show cpu name.
author atmos4
date Sat, 20 Oct 2001 02:35:31 +0000
parents dac462a0ac8c
children 456e22bfb147
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
1 #include "config.h"
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
2 #include "cpudetect.h"
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
3
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
4 #ifdef ARCH_X86
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
5
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
6 #include <stdio.h>
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
7
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
8 #ifdef __FreeBSD__
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
9 #include <sys/types.h>
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
10 #include <sys/sysctl.h>
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
11 #endif
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
12
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
13 #ifdef __linux__
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
14 #include <signal.h>
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
15 #endif
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
16
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
17 //#define X86_FXSR_MAGIC
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
18 /* Thanks to the FreeBSD project for some of this cpuid code, and
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
19 * help understanding how to use it. Thanks to the Mesa
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
20 * team for SSE support detection and more cpu detect code.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
21 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
22
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
23 /* I believe this code works. However, it has only been used on a PII and PIII */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
24
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
25 CpuCaps gCpuCaps;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
26 static void check_os_katmai_support( void );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
27
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
28 #if 1
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
29 // return TRUE if cpuid supported
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
30 static int has_cpuid()
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
31 {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
32 int a, c;
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
33
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
34 // code from libavcodec:
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
35 __asm__ __volatile__ (
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
36 /* See if CPUID instruction is supported ... */
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
37 /* ... Get copies of EFLAGS into eax and ecx */
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
38 "pushf\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
39 "popl %0\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
40 "movl %0, %1\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
41
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
42 /* ... Toggle the ID bit in one copy and store */
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
43 /* to the EFLAGS reg */
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
44 "xorl $0x200000, %0\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
45 "push %0\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
46 "popf\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
47
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
48 /* ... Get the (hopefully modified) EFLAGS */
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
49 "pushf\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
50 "popl %0\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
51 : "=a" (a), "=c" (c)
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
52 :
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
53 : "cc"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
54 );
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
55
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
56 return (a!=c);
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
57 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
58 #endif
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
59
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
60 static void
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
61 do_cpuid(unsigned int ax, unsigned int *p)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
62 {
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
63 #if 0
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
64 __asm __volatile(
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
65 "cpuid;"
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
66 : "=a" (p[0]), "=b" (p[1]), "=c" (p[2]), "=d" (p[3])
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
67 : "0" (ax)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
68 );
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
69 #else
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
70 // code from libavcodec:
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
71 __asm __volatile
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
72 ("movl %%ebx, %%esi\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
73 "cpuid\n\t"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
74 "xchgl %%ebx, %%esi"
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
75 : "=a" (p[0]), "=S" (p[1]),
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
76 "=c" (p[2]), "=d" (p[3])
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
77 : "0" (ax));
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
78 #endif
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
79
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
80 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
81
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
82 void GetCpuCaps( CpuCaps *caps)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
83 {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
84 unsigned int regs[4];
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
85 unsigned int regs2[4];
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
86
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
87 bzero(caps, sizeof(*caps));
2288
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
88 if (!has_cpuid()) {
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
89 printf("CPUID not supported!???\n");
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
90 return;
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
91 }
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
92 do_cpuid(0x00000000, regs); // get _max_ cpuid level and vendor name
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
93 printf("CPU vendor name: %.4s%.4s%.4s max cpuid level: %d\n",&regs[1],&regs[3],&regs[2],regs[0]);
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
94 if (regs[0]>=0x00000001)
2280
b318387bfeda amd fix
pontscho
parents: 2272
diff changeset
95 {
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
96 do_cpuid(0x00000001, regs2);
2301
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
97
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
98 printf("CPU: %s\n",GetCpuFriendlyName(regs, regs2));
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
99
2288
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
100 caps->cpuType=(regs2[0] >> 8)&0xf;
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
101 if(caps->cpuType==0xf){
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
102 // use extended family (P4, IA64)
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
103 caps->cpuType=8+((regs2[0]>>20)&255);
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
104 }
2288
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
105
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
106 // general feature flags:
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
107 caps->hasMMX = (regs2[3] & (1 << 23 )) >> 23; // 0x0800000
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
108 caps->hasSSE = (regs2[3] & (1 << 25 )) >> 25; // 0x2000000
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
109 caps->hasSSE2 = (regs2[3] & (1 << 26 )) >> 26; // 0x4000000
2288
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
110 caps->hasMMX2 = caps->hasSSE; // SSE cpus supports mmxext too
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
111 }
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
112 do_cpuid(0x80000000, regs);
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
113 if (regs[0]>=0x80000001) {
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
114 printf("extended cpuid-level: %d\n",regs[0]&0x7FFFFFFF);
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
115 do_cpuid(0x80000001, regs2);
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
116 caps->hasMMX = (regs2[3] & (1 << 23 )) >> 23; // 0x0800000
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
117 caps->hasMMX2 = (regs2[3] & (1 << 22 )) >> 22; // 0x400000
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
118 caps->has3DNow = (regs2[3] & (1 << 31 )) >> 31; //0x80000000
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
119 caps->has3DNowExt = (regs2[3] & (1 << 30 )) >> 30;
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
120 }
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
121 #if 0
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
122 printf("cpudetect: MMX=%d MMX2=%d SSE=%d SSE2=%d 3DNow=%d 3DNowExt=%d\n",
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
123 gCpuCaps.hasMMX,
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
124 gCpuCaps.hasMMX2,
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
125 gCpuCaps.hasSSE,
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
126 gCpuCaps.hasSSE2,
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
127 gCpuCaps.has3DNow,
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
128 gCpuCaps.has3DNowExt );
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
129 #endif
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
130
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
131 /* FIXME: Does SSE2 need more OS support, too? */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
132 #if defined(__linux__) || defined(__FreeBSD__)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
133 if (caps->hasSSE)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
134 check_os_katmai_support();
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
135 if (!caps->hasSSE)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
136 caps->hasSSE2 = 0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
137 #else
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
138 caps->hasSSE=0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
139 caps->hasSSE2 = 0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
140 #endif
2288
dac462a0ac8c final fix?
arpi
parents: 2284
diff changeset
141
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
142
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
143 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
144
2301
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
145
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
146 #define CPUID_EXTFAMILY ((regs2[0] >> 20)&0xFF) /* 27..20 */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
147 #define CPUID_EXTMODEL ((regs2[0] >> 16)&0x0F) /* 19..16 */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
148 #define CPUID_TYPE ((regs2[0] >> 12)&0x04) /* 13..12 */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
149 #define CPUID_FAMILY ((regs2[0] >> 8)&0x0F) /* 11..08 */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
150 #define CPUID_MODEL ((regs2[0] >> 4)&0x0F) /* 07..04 */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
151 #define CPUID_STEPPING ((regs2[0] >> 0)&0x0F) /* 03..00 */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
152
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
153 char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]){
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
154 #include "cputable.h" /* get cpuname and cpuvendors */
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
155 char vendor[17];
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
156 char retname[255];
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
157 int i;
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
158
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
159 sprintf(vendor,"%.4s%.4s%.4s",&regs[1],&regs[3],&regs[2]);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
160
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
161 for(i=0; i<MAX_VENDORS; i++){
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
162 if(!strcmp(cpuvendors[i].string,vendor)){
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
163 if(cpuname[i][CPUID_FAMILY][CPUID_MODEL]){
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
164 sprintf(retname,"%s %s",cpuvendors[i].name,cpuname[i][CPUID_FAMILY][CPUID_MODEL]);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
165 } else {
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
166 sprintf(retname,"unknown %s %d. Generation CPU",cpuvendors[i].name,CPUID_FAMILY);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
167 printf("unknown %s CPU:\n",cpuvendors[i].name);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
168 printf("Vendor: %s\n",cpuvendors[i].string);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
169 printf("Type: %d\n",CPUID_TYPE);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
170 printf("Family: %d (ext: %d)\n",CPUID_FAMILY,CPUID_EXTFAMILY);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
171 printf("Model: %d (ext: %d)\n",CPUID_MODEL,CPUID_EXTMODEL);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
172 printf("Stepping: %d\n",CPUID_STEPPING);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
173 printf("Please send the above info along with the exact CPU name"
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
174 "to the MPlayer-Developers, so we can add it to the list!\n");
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
175 }
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
176 }
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
177 }
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
178
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
179 //printf("Detected CPU: %s\n", retname);
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
180 return retname;
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
181 }
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
182
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
183 #undef CPUID_EXTFAMILY
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
184 #undef CPUID_EXTMODEL
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
185 #undef CPUID_TYPE
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
186 #undef CPUID_FAMILY
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
187 #undef CPUID_MODEL
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
188 #undef CPUID_STEPPING
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
189
b4c4c832cce7 Detect and show cpu name.
atmos4
parents: 2288
diff changeset
190
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
191 #if defined(__linux__) && defined(_POSIX_SOURCE) && defined(X86_FXSR_MAGIC)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
192 static void sigill_handler_sse( int signal, struct sigcontext sc )
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
193 {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
194 printf( "SIGILL, " );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
195
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
196 /* Both the "xorps %%xmm0,%%xmm0" and "divps %xmm0,%%xmm1"
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
197 * instructions are 3 bytes long. We must increment the instruction
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
198 * pointer manually to avoid repeated execution of the offending
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
199 * instruction.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
200 *
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
201 * If the SIGILL is caused by a divide-by-zero when unmasked
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
202 * exceptions aren't supported, the SIMD FPU status and control
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
203 * word will be restored at the end of the test, so we don't need
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
204 * to worry about doing it here. Besides, we may not be able to...
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
205 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
206 sc.eip += 3;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
207
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
208 gCpuCaps.hasSSE=0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
209 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
210
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
211 static void sigfpe_handler_sse( int signal, struct sigcontext sc )
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
212 {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
213 printf( "SIGFPE, " );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
214
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
215 if ( sc.fpstate->magic != 0xffff ) {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
216 /* Our signal context has the extended FPU state, so reset the
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
217 * divide-by-zero exception mask and clear the divide-by-zero
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
218 * exception bit.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
219 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
220 sc.fpstate->mxcsr |= 0x00000200;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
221 sc.fpstate->mxcsr &= 0xfffffffb;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
222 } else {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
223 /* If we ever get here, we're completely hosed.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
224 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
225 printf( "\n\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
226 printf( "SSE enabling test failed badly!" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
227 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
228 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
229 #endif /* __linux__ && _POSIX_SOURCE && X86_FXSR_MAGIC */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
230
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
231 /* If we're running on a processor that can do SSE, let's see if we
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
232 * are allowed to or not. This will catch 2.4.0 or later kernels that
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
233 * haven't been configured for a Pentium III but are running on one,
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
234 * and RedHat patched 2.2 kernels that have broken exception handling
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
235 * support for user space apps that do SSE.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
236 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
237 static void check_os_katmai_support( void )
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
238 {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
239 #if defined(__FreeBSD__)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
240 int has_sse=0, ret;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
241 size_t len=sizeof(has_sse);
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
242
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
243 ret = sysctlbyname("hw.instruction_sse", &has_sse, &len, NULL, 0);
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
244 if (ret || !has_sse)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
245 gCpuCaps.hasSSE=0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
246
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
247 #elif defined(__linux__)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
248 #if defined(_POSIX_SOURCE) && defined(X86_FXSR_MAGIC)
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
249 struct sigaction saved_sigill;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
250 struct sigaction saved_sigfpe;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
251
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
252 /* Save the original signal handlers.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
253 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
254 sigaction( SIGILL, NULL, &saved_sigill );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
255 sigaction( SIGFPE, NULL, &saved_sigfpe );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
256
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
257 signal( SIGILL, (void (*)(int))sigill_handler_sse );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
258 signal( SIGFPE, (void (*)(int))sigfpe_handler_sse );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
259
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
260 /* Emulate test for OSFXSR in CR4. The OS will set this bit if it
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
261 * supports the extended FPU save and restore required for SSE. If
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
262 * we execute an SSE instruction on a PIII and get a SIGILL, the OS
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
263 * doesn't support Streaming SIMD Exceptions, even if the processor
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
264 * does.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
265 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
266 if ( gCpuCaps.hasSSE ) {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
267 printf( "Testing OS support for SSE... " );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
268
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
269 // __asm __volatile ("xorps %%xmm0, %%xmm0");
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
270 __asm __volatile ("xorps %xmm0, %xmm0");
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
271
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
272 if ( gCpuCaps.hasSSE ) {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
273 printf( "yes.\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
274 } else {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
275 printf( "no!\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
276 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
277 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
278
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
279 /* Emulate test for OSXMMEXCPT in CR4. The OS will set this bit if
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
280 * it supports unmasked SIMD FPU exceptions. If we unmask the
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
281 * exceptions, do a SIMD divide-by-zero and get a SIGILL, the OS
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
282 * doesn't support unmasked SIMD FPU exceptions. If we get a SIGFPE
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
283 * as expected, we're okay but we need to clean up after it.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
284 *
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
285 * Are we being too stringent in our requirement that the OS support
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
286 * unmasked exceptions? Certain RedHat 2.2 kernels enable SSE by
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
287 * setting CR4.OSFXSR but don't support unmasked exceptions. Win98
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
288 * doesn't even support them. We at least know the user-space SSE
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
289 * support is good in kernels that do support unmasked exceptions,
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
290 * and therefore to be safe I'm going to leave this test in here.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
291 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
292 if ( gCpuCaps.hasSSE ) {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
293 printf( "Testing OS support for SSE unmasked exceptions... " );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
294
2272
c26a9eff0993 cpu detection fixed
arpi
parents: 2268
diff changeset
295 // test_os_katmai_exception_support();
2268
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
296
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
297 if ( gCpuCaps.hasSSE ) {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
298 printf( "yes.\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
299 } else {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
300 printf( "no!\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
301 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
302 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
303
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
304 /* Restore the original signal handlers.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
305 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
306 sigaction( SIGILL, &saved_sigill, NULL );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
307 sigaction( SIGFPE, &saved_sigfpe, NULL );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
308
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
309 /* If we've gotten to here and the XMM CPUID bit is still set, we're
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
310 * safe to go ahead and hook out the SSE code throughout Mesa.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
311 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
312 if ( gCpuCaps.hasSSE ) {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
313 printf( "Tests of OS support for SSE passed.\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
314 } else {
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
315 printf( "Tests of OS support for SSE failed!\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
316 }
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
317 #else
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
318 /* We can't use POSIX signal handling to test the availability of
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
319 * SSE, so we disable it by default.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
320 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
321 printf( "Cannot test OS support for SSE, disabling to be safe.\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
322 gCpuCaps.hasSSE=0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
323 #endif /* _POSIX_SOURCE && X86_FXSR_MAGIC */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
324 #else
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
325 /* Do nothing on other platforms for now.
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
326 */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
327 message( "Not testing OS support for SSE, leaving disabled.\n" );
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
328 gCpuCaps.hasSSE=0;
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
329 #endif /* __linux__ */
72ff2179d396 cpu detect code by Eric Anholt <eanholt@gladstone.uoregon.edu>
arpi
parents:
diff changeset
330 }
2280
b318387bfeda amd fix
pontscho
parents: 2272
diff changeset
331 #endif /* ARCH_X86 */