4 * Copyright 1995,1997 Morten Welinder
5 * Copyright 1997-1998 Marcus Meissner
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/port.h"
25 #ifdef HAVE_SYS_PARAM_H
26 # include <sys/param.h>
28 #ifdef HAVE_SYS_SYSCTL_H
29 # include <sys/sysctl.h>
31 #ifdef HAVE_MACHINE_CPU_H
32 # include <machine/cpu.h>
40 #ifdef HAVE_SYS_TIME_H
41 # include <sys/time.h>
45 #define NONAMELESSUNION
46 #define NONAMELESSSTRUCT
53 #include "wine/unicode.h"
54 #include "wine/debug.h"
56 WINE_DEFAULT_DEBUG_CHANNEL(reg);
58 #define AUTH 0x68747541 /* "Auth" */
59 #define ENTI 0x69746e65 /* "enti" */
60 #define CAMD 0x444d4163 /* "cAMD" */
62 /* Calls cpuid with an eax of 'ax' and returns the 16 bytes in *p
63 * We are compiled with -fPIC, so we can't clobber ebx.
65 static inline void do_cpuid(int ax, int *p)
68 __asm__("pushl %%ebx\n\t"
70 "movl %%ebx, %%esi\n\t"
72 : "=a" (p[0]), "=S" (p[1]), "=c" (p[2]), "=d" (p[3])
77 /* From xf86info havecpuid.c 1.11 */
78 static inline int have_cpuid(void)
92 : "=&r" (f1), "=&r" (f2)
94 return ((f1^f2) & 0x00200000) != 0;
100 static BYTE PF[64] = {0,};
101 static ULONGLONG cpuHz = 1000000000; /* default to a 1GHz */
103 static void create_registry_keys( const SYSTEM_INFO *info )
105 static const WCHAR SystemW[] = {'M','a','c','h','i','n','e','\\',
106 'H','a','r','d','w','a','r','e','\\',
107 'D','e','s','c','r','i','p','t','i','o','n','\\',
108 'S','y','s','t','e','m',0};
109 static const WCHAR fpuW[] = {'F','l','o','a','t','i','n','g','P','o','i','n','t','P','r','o','c','e','s','s','o','r',0};
110 static const WCHAR cpuW[] = {'C','e','n','t','r','a','l','P','r','o','c','e','s','s','o','r',0};
111 static const WCHAR IdentifierW[] = {'I','d','e','n','t','i','f','i','e','r',0};
112 static const WCHAR SysidW[] = {'A','T',' ','c','o','m','p','a','t','i','b','l','e',0};
113 static const WCHAR mhzKeyW[] = {'~','M','H','z',0};
116 HKEY hkey, system_key, cpu_key;
117 OBJECT_ATTRIBUTES attr;
118 UNICODE_STRING nameW, valueW;
120 attr.Length = sizeof(attr);
121 attr.RootDirectory = 0;
122 attr.ObjectName = &nameW;
124 attr.SecurityDescriptor = NULL;
125 attr.SecurityQualityOfService = NULL;
127 RtlInitUnicodeString( &nameW, SystemW );
128 if (NtCreateKey( &system_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL )) return;
130 RtlInitUnicodeString( &valueW, IdentifierW );
131 NtSetValueKey( system_key, &valueW, 0, REG_SZ, SysidW, (strlenW(SysidW)+1) * sizeof(WCHAR) );
133 attr.RootDirectory = system_key;
134 RtlInitUnicodeString( &nameW, fpuW );
135 if (!NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL )) NtClose( hkey );
137 RtlInitUnicodeString( &nameW, cpuW );
138 if (!NtCreateKey( &cpu_key, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ))
140 for (i = 0; i < info->dwNumberOfProcessors; i++)
142 char num[10], id[20];
144 attr.RootDirectory = cpu_key;
145 sprintf( num, "%d", i );
146 RtlCreateUnicodeStringFromAsciiz( &nameW, num );
147 if (!NtCreateKey( &hkey, KEY_ALL_ACCESS, &attr, 0, NULL, 0, NULL ))
150 DWORD cpuMHz = cpuHz / 1000000;
152 sprintf( id, "CPU %ld", info->dwProcessorType );
153 RtlMultiByteToUnicodeN( idW, sizeof(idW), NULL, id, strlen(id)+1 );
154 NtSetValueKey( hkey, &valueW, 0, REG_SZ, idW, (strlenW(idW)+1)*sizeof(WCHAR) );
156 RtlInitUnicodeString( &valueW, mhzKeyW );
157 NtSetValueKey( hkey, &valueW, 0, REG_DWORD, &cpuMHz, sizeof(DWORD) );
160 RtlFreeUnicodeString( &nameW );
164 NtClose( system_key );
167 /****************************************************************************
168 * QueryPerformanceCounter (KERNEL32.@)
170 * Get the current value of the performance counter.
173 * counter [O] Destination for the current counter reading
176 * Success: TRUE. counter contains the current reading
180 * See QueryPerformanceFrequency.
182 BOOL WINAPI QueryPerformanceCounter(PLARGE_INTEGER counter)
186 #if defined(__i386__) && defined(__GNUC__)
187 if (IsProcessorFeaturePresent( PF_RDTSC_INSTRUCTION_AVAILABLE )) {
188 /* i586 optimized version */
189 __asm__ __volatile__ ( "rdtsc"
190 : "=a" (counter->u.LowPart), "=d" (counter->u.HighPart) );
192 counter->QuadPart = counter->QuadPart / ( cpuHz / 1193182 ) ;
197 /* fall back to generic routine (ie, for i386, i486) */
198 NtQuerySystemTime( &time );
199 counter->QuadPart = time.QuadPart;
204 /****************************************************************************
205 * QueryPerformanceFrequency (KERNEL32.@)
207 * Get the resolution of the performace counter.
210 * frequency [O] Destination for the counter resolution
213 * Success. TRUE. Frequency contains the resolution of the counter.
217 * See QueryPerformanceCounter.
219 BOOL WINAPI QueryPerformanceFrequency(PLARGE_INTEGER frequency)
221 #if defined(__i386__) && defined(__GNUC__)
222 if (IsProcessorFeaturePresent( PF_RDTSC_INSTRUCTION_AVAILABLE )) {
223 /* On a standard PC, Windows returns the clock frequency for the
224 * 8253 Programmable Interrupt Timer, which has been 1193182 Hz
225 * since the first IBM PC (cpuHz/4). There are applications that
226 * crash when the returned frequency is much higher or lower, so
227 * do not try to be smart */
228 frequency->QuadPart = 1193182;
232 frequency->u.LowPart = 10000000;
233 frequency->u.HighPart = 0;
238 /***********************************************************************
239 * GetSystemInfo [KERNEL32.@]
241 * Get information about the system.
247 * On the first call it creates cached values, so it doesn't have to determine
248 * them repeatedly. On Linux, the "/proc/cpuinfo" special file is used.
250 * It creates a registry subhierarchy, looking like:
251 * "\HARDWARE\DESCRIPTION\System\CentralProcessor\<processornumber>\Identifier (CPU x86)".
252 * Note that there is a hierarchy for every processor installed, so this
253 * supports multiprocessor systems. This is done like Win95 does it, I think.
255 * It also creates a cached flag array for IsProcessorFeaturePresent().
257 VOID WINAPI GetSystemInfo(
258 LPSYSTEM_INFO si /* [out] Destination for system information, may not be NULL */)
260 static int cache = 0;
261 static SYSTEM_INFO cachedsi;
263 TRACE("si=0x%p\n", si);
265 memcpy(si,&cachedsi,sizeof(*si));
268 memset(PF,0,sizeof(PF));
270 /* choose sensible defaults ...
271 * FIXME: perhaps overrideable with precompiler flags?
273 cachedsi.u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_INTEL;
274 cachedsi.dwPageSize = getpagesize();
276 /* FIXME: the two entries below should be computed somehow... */
277 cachedsi.lpMinimumApplicationAddress = (void *)0x00010000;
278 cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF;
279 cachedsi.dwActiveProcessorMask = 1;
280 cachedsi.dwNumberOfProcessors = 1;
281 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
282 cachedsi.dwAllocationGranularity = 0x10000;
283 cachedsi.wProcessorLevel = 5; /* 586 */
284 cachedsi.wProcessorRevision = 0;
286 cache = 1; /* even if there is no more info, we now have a cacheentry */
287 memcpy(si,&cachedsi,sizeof(*si));
289 /* Hmm, reasonable processor feature defaults? */
294 FILE *f = fopen ("/proc/cpuinfo", "r");
298 while (fgets(line,200,f)!=NULL) {
301 /* NOTE: the ':' is the only character we can rely on */
302 if (!(value = strchr(line,':')))
305 /* terminate the valuename */
307 while ((s >= line) && ((*s == ' ') || (*s == '\t'))) s--;
310 /* and strip leading spaces from value */
312 while (*value==' ') value++;
313 if ((s=strchr(value,'\n')))
317 if (!strcasecmp(line, "cpu family")) {
318 if (isdigit (value[0])) {
319 switch (value[0] - '0') {
320 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
321 cachedsi.wProcessorLevel= 3;
323 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
324 cachedsi.wProcessorLevel= 4;
326 case 5: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
327 cachedsi.wProcessorLevel= 5;
329 case 6: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
330 cachedsi.wProcessorLevel= 6;
332 case 1: /* two-figure levels */
335 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
336 cachedsi.wProcessorLevel= 6;
341 FIXME("unknown cpu family '%s', please report ! (-> setting to 386)\n", value);
348 if (!strcasecmp(line, "cpu")) {
349 if ( isdigit (value[0]) && value[1] == '8' &&
350 value[2] == '6' && value[3] == 0
352 switch (value[0] - '0') {
353 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
354 cachedsi.wProcessorLevel= 3;
356 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
357 cachedsi.wProcessorLevel= 4;
359 case 5: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
360 cachedsi.wProcessorLevel= 5;
362 case 6: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
363 cachedsi.wProcessorLevel= 6;
366 FIXME("unknown Linux 2.0 cpu family '%s', please report ! (-> setting to 386)\n", value);
372 if (!strcasecmp(line,"fdiv_bug")) {
373 if (!strncasecmp(value,"yes",3))
374 PF[PF_FLOATING_POINT_PRECISION_ERRATA] = TRUE;
378 if (!strcasecmp(line,"fpu")) {
379 if (!strncasecmp(value,"no",2))
380 PF[PF_FLOATING_POINT_EMULATED] = TRUE;
384 if (!strcasecmp(line,"processor")) {
385 /* processor number counts up... */
388 if (sscanf(value,"%d",&x))
389 if (x+1>cachedsi.dwNumberOfProcessors)
390 cachedsi.dwNumberOfProcessors=x+1;
394 if (!strcasecmp(line,"stepping")) {
397 if (sscanf(value,"%d",&x))
398 cachedsi.wProcessorRevision = x;
402 if (!strcasecmp(line, "cpu MHz")) {
404 if (sscanf( value, "%lf", &cmz ) == 1) {
405 /* SYSTEMINFO doesn't have a slot for cpu speed, so store in a global */
406 cpuHz = cmz * 1000 * 1000;
407 TRACE("CPU speed read as %lld\n", cpuHz);
411 if ( !strcasecmp(line,"flags") ||
412 !strcasecmp(line,"features")
414 if (strstr(value,"cx8"))
415 PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
416 if (strstr(value,"mmx"))
417 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
418 if (strstr(value,"tsc"))
419 PF[PF_RDTSC_INSTRUCTION_AVAILABLE] = TRUE;
420 if (strstr(value,"3dnow"))
421 PF[PF_3DNOW_INSTRUCTIONS_AVAILABLE] = TRUE;
422 /* This will also catch sse2, but we have sse itself
423 * if we have sse2, so no problem */
424 if (strstr(value,"sse"))
425 PF[PF_XMMI_INSTRUCTIONS_AVAILABLE] = TRUE;
426 if (strstr(value,"sse2"))
427 PF[PF_XMMI64_INSTRUCTIONS_AVAILABLE] = TRUE;
428 if (strstr(value,"pae"))
429 PF[PF_PAE_ENABLED] = TRUE;
436 memcpy(si,&cachedsi,sizeof(*si));
437 #elif defined (__NetBSD__)
443 FILE *f = fopen ("/var/run/dmesg.boot", "r");
445 /* first deduce as much as possible from the sysctls */
446 mib[0] = CTL_MACHDEP;
447 #ifdef CPU_FPU_PRESENT
448 mib[1] = CPU_FPU_PRESENT;
449 value[1] = sizeof(int);
450 if (sysctl(mib, 2, value, value+1, NULL, 0) >= 0)
451 if (value) PF[PF_FLOATING_POINT_EMULATED] = FALSE;
452 else PF[PF_FLOATING_POINT_EMULATED] = TRUE;
455 mib[1] = CPU_SSE; /* this should imply MMX */
456 value[1] = sizeof(int);
457 if (sysctl(mib, 2, value, value+1, NULL, 0) >= 0)
458 if (value) PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
461 mib[1] = CPU_SSE2; /* this should imply MMX */
462 value[1] = sizeof(int);
463 if (sysctl(mib, 2, value, value+1, NULL, 0) >= 0)
464 if (value) PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
468 value[1] = sizeof(int);
469 if (sysctl(mib, 2, value, value+1, NULL, 0) >= 0)
470 if (value[0] > cachedsi.dwNumberOfProcessors)
471 cachedsi.dwNumberOfProcessors = value[0];
474 if (sysctl(mib, 2, model, value+1, NULL, 0) >= 0) {
475 model[value[1]] = '\0'; /* just in case */
476 cpuclass = strstr(model, "-class");
477 if (cpuclass != NULL) {
478 while(cpuclass > model && cpuclass[0] != '(') cpuclass--;
479 if (!strncmp(cpuclass+1, "386", 3)) {
480 cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
481 cachedsi.wProcessorLevel= 3;
483 if (!strncmp(cpuclass+1, "486", 3)) {
484 cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
485 cachedsi.wProcessorLevel= 4;
487 if (!strncmp(cpuclass+1, "586", 3)) {
488 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
489 cachedsi.wProcessorLevel= 5;
491 if (!strncmp(cpuclass+1, "686", 3)) {
492 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
493 cachedsi.wProcessorLevel= 6;
494 /* this should imply MMX */
495 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
500 /* it may be worth reading from /var/run/dmesg.boot for
501 additional information such as CX8, MMX and TSC
502 (however this information should be considered less
503 reliable than that from the sysctl calls) */
506 while (fgets(model, 255, f) != NULL) {
507 if (sscanf(model,"cpu%d: features %x<", value, value+1) == 2) {
508 /* we could scan the string but it is easier
509 to test the bits directly */
511 PF[PF_FLOATING_POINT_EMULATED] = TRUE;
513 PF[PF_RDTSC_INSTRUCTION_AVAILABLE] = TRUE;
514 if (value[1] & 0x100)
515 PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
516 if (value[1] & 0x800000)
517 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
526 memcpy(si,&cachedsi,sizeof(*si));
527 #elif defined(__FreeBSD__)
529 unsigned int regs[4], regs2[4];
532 regs[0] = 0; /* No cpuid support -- skip the rest */
534 do_cpuid(0x00000000, regs); /* get standard cpuid level and vendor name */
535 if (regs[0]>=0x00000001) { /* Check for supported cpuid version */
536 do_cpuid(0x00000001, regs2); /* get cpu features */
537 switch ((regs2[0] >> 8)&0xf) { /* cpu family */
538 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
539 cachedsi.wProcessorLevel = 3;
541 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
542 cachedsi.wProcessorLevel = 4;
545 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
546 cachedsi.wProcessorLevel = 5;
549 case 15: /* PPro/2/3/4 has same info as P1 */
550 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
551 cachedsi.wProcessorLevel = 6;
554 FIXME("unknown FreeBSD cpu family %d, please report! (-> setting to 386)\n", \
555 (regs2[0] >> 8)&0xf);
558 PF[PF_FLOATING_POINT_EMULATED] = !(regs2[3] & 1);
559 PF[PF_RDTSC_INSTRUCTION_AVAILABLE] = (regs2[3] & (1 << 4 )) >> 4;
560 PF[PF_COMPARE_EXCHANGE_DOUBLE] = (regs2[3] & (1 << 8 )) >> 8;
561 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 23)) >> 23;
562 /* Check for OS support of SSE -- Is this used, and should it be sse1 or sse2? */
564 ret = sysctlbyname("hw.instruction_sse", &num, &len, NULL, 0);
566 PF[PF_XMMI_INSTRUCTIONS_AVAILABLE] = num;*/
568 if (regs[1] == AUTH &&
571 do_cpuid(0x80000000, regs); /* get vendor cpuid level */
572 if (regs[0]>=0x80000001) {
573 do_cpuid(0x80000001, regs2); /* get vendor features */
574 PF[PF_3DNOW_INSTRUCTIONS_AVAILABLE] =
575 (regs2[3] & (1 << 31 )) >> 31;
580 ret = sysctlbyname("hw.ncpu", &num, &len, NULL, 0);
582 cachedsi.dwNumberOfProcessors = num;
584 memcpy(si,&cachedsi,sizeof(*si));
585 #elif defined (__APPLE__)
588 unsigned long long longVal;
592 valSize = sizeof(int);
593 if (sysctlbyname ("hw.optional.floatingpoint", &value, &valSize, NULL, 0) == 0)
596 PF[PF_FLOATING_POINT_EMULATED] = FALSE;
598 PF[PF_FLOATING_POINT_EMULATED] = TRUE;
600 valSize = sizeof(int);
601 if (sysctlbyname ("hw.ncpu", &value, &valSize, NULL, 0) == 0)
602 cachedsi.dwNumberOfProcessors = value;
604 valSize = sizeof(int);
605 if (sysctlbyname ("hw.activecpu", &value, &valSize, NULL, 0) == 0)
606 cachedsi.dwActiveProcessorMask = value;
608 valSize = sizeof(int);
609 if (sysctlbyname ("hw.cputype", &cputype, &valSize, NULL, 0) == 0)
611 valSize = sizeof(int);
612 if (sysctlbyname ("hw.cpusubtype", &value, &valSize, NULL, 0) == 0)
616 case CPU_TYPE_POWERPC:
617 cachedsi.u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_PPC;
620 case CPU_SUBTYPE_POWERPC_601:
621 case CPU_SUBTYPE_POWERPC_602:
622 cachedsi.dwProcessorType = PROCESSOR_PPC_601;
623 cachedsi.wProcessorLevel = 1;
625 case CPU_SUBTYPE_POWERPC_603:
626 cachedsi.dwProcessorType = PROCESSOR_PPC_603;
627 cachedsi.wProcessorLevel = 3;
629 case CPU_SUBTYPE_POWERPC_603e:
630 case CPU_SUBTYPE_POWERPC_603ev:
631 cachedsi.dwProcessorType = PROCESSOR_PPC_603;
632 cachedsi.wProcessorLevel = 6;
634 case CPU_SUBTYPE_POWERPC_604:
635 cachedsi.dwProcessorType = PROCESSOR_PPC_604;
636 cachedsi.wProcessorLevel = 4;
638 case CPU_SUBTYPE_POWERPC_604e:
639 cachedsi.dwProcessorType = PROCESSOR_PPC_604;
640 cachedsi.wProcessorLevel = 9;
642 case CPU_SUBTYPE_POWERPC_620:
643 cachedsi.dwProcessorType = PROCESSOR_PPC_620;
644 cachedsi.wProcessorLevel = 20;
646 case CPU_SUBTYPE_POWERPC_750:
647 case CPU_SUBTYPE_POWERPC_7400:
648 case CPU_SUBTYPE_POWERPC_7450:
649 /* G3/G4 derivate from 603 so ... */
650 cachedsi.dwProcessorType = PROCESSOR_PPC_603;
651 cachedsi.wProcessorLevel = 6;
653 case CPU_SUBTYPE_POWERPC_970:
654 cachedsi.dwProcessorType = PROCESSOR_PPC_604;
655 cachedsi.wProcessorLevel = 9;
656 /* :o) PF[PF_ALTIVEC_INSTRUCTIONS_AVAILABLE] ;-) */
660 break; /* CPU_TYPE_POWERPC */
662 cachedsi.u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_INTEL;
665 case CPU_SUBTYPE_386:
666 cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
667 cachedsi.wProcessorLevel = 3;
669 case CPU_SUBTYPE_486:
670 case CPU_SUBTYPE_486SX:
671 cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
672 cachedsi.wProcessorLevel = 4;
674 case CPU_SUBTYPE_586:
675 case CPU_SUBTYPE_PENTPRO:
676 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
677 cachedsi.wProcessorLevel = 5;
679 case CPU_SUBTYPE_PENTII_M3:
680 case CPU_SUBTYPE_PENTII_M5:
681 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
682 cachedsi.wProcessorLevel = 5;
683 /* this should imply MMX */
684 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
688 break; /* CPU_TYPE_I386 */
690 } /* switch (cputype) */
693 valSize = sizeof(longVal);
694 if (!sysctlbyname("hw.cpufrequency", &longVal, &valSize, NULL, 0))
697 memcpy(si,&cachedsi,sizeof(*si));
699 FIXME("not yet supported on this system\n");
701 TRACE("<- CPU arch %d, res'd %d, pagesize %ld, minappaddr %p, maxappaddr %p,"
702 " act.cpumask %08lx, numcpus %ld, CPU type %ld, allocgran. %ld, CPU level %d, CPU rev %d\n",
703 si->u.s.wProcessorArchitecture, si->u.s.wReserved, si->dwPageSize,
704 si->lpMinimumApplicationAddress, si->lpMaximumApplicationAddress,
705 si->dwActiveProcessorMask, si->dwNumberOfProcessors, si->dwProcessorType,
706 si->dwAllocationGranularity, si->wProcessorLevel, si->wProcessorRevision);
708 create_registry_keys( &cachedsi );
712 /***********************************************************************
713 * IsProcessorFeaturePresent [KERNEL32.@]
715 * Determine if the cpu supports a given feature.
718 * TRUE, If the processor supports feature,
721 BOOL WINAPI IsProcessorFeaturePresent (
722 DWORD feature /* [in] Feature number, (PF_ constants from "winnt.h") */)
725 GetSystemInfo (&si); /* To ensure the information is loaded and cached */