根据英特尔参考手册,如果该指令抛出#UD 异常CPUID.(EAX=14H, ECX=0):EBX.PTWRITE [Bit 4] = 0
如何检查这些值?
如果我从那时起使用int __get_cpuid (unsigned int __level, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx)
什么<cpuid.h>
应该是论点?
你不能用那个。你需要一个可以传入的版本,ecx
因为它必须为零。如果可用,您可以使用__cpuid_count
,例如:
unsigned eax, ebx, ecx, edx;
if (__get_cpuid(0x00, &eax, &ebx, &ecx, &edx) == 0) {
// cpuid not supported
}
if (eax < 0x14) {
// leaf 0x14 not supported
}
__cpuid_count(0x14, 0x00, eax, ebx, ecx, edx);
if ((ebx & 0x10) == 0) {
// PTWRITE not supported
}