OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * x86 feature check |
| 3 * |
| 4 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 5 * Author: |
| 6 * Jim Kukunas |
| 7 * |
| 8 * For conditions of distribution and use, see copyright notice in zlib.h |
| 9 */ |
| 10 |
| 11 #include "x86.h" |
| 12 |
| 13 int x86_cpu_has_sse2; |
| 14 int x86_cpu_has_sse42; |
| 15 int x86_cpu_has_pclmulqdq; |
| 16 |
| 17 void x86_check_features(void) |
| 18 { |
| 19 unsigned eax, ebx, ecx, edx; |
| 20 |
| 21 eax = 1; |
| 22 __asm__ __volatile__ ( |
| 23 #ifdef X86 |
| 24 "xchg %%ebx, %1\n\t" |
| 25 #endif |
| 26 "cpuid\n\t" |
| 27 #ifdef X86 |
| 28 "xchg %1, %%ebx\n\t" |
| 29 : "+a" (eax), "=S" (ebx), "=c" (ecx), "=d" (edx) |
| 30 #else |
| 31 : "+a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) |
| 32 #endif |
| 33 ); |
| 34 |
| 35 x86_cpu_has_sse2 = edx & 0x4000000; |
| 36 x86_cpu_has_sse42= ecx & 0x100000; |
| 37 x86_cpu_has_pclmulqdq = ecx & 0x2; |
| 38 } |
OLD | NEW |