D | cpuid.h | 96 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ argument 101 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 104 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ argument 109 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 112 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ argument 113 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 116 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ argument 117 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 123 unsigned int *__edx) { in __get_cpuid() argument 124 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx); in __get_cpuid() [all …]
|