| /* cpuid.h: Macros to identify the properties of an x86 host. |
| * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| * See the COPYING file in the top-level directory. |
| # error "<cpuid.h> is unusable with this compiler" |
| /* Cover the uses that we have within qemu. */ |
| /* ??? Irritating that we have the same information in target/i386/. */ |
| #define bit_CMOV (1 << 15) |
| #define bit_SSE2 (1 << 26) |
| #define bit_SSE4_1 (1 << 19) |
| #define bit_MOVBE (1 << 22) |
| #define bit_OSXSAVE (1 << 27) |
| #define bit_AVX (1 << 28) |
| #define bit_AVX2 (1 << 5) |
| #define bit_BMI2 (1 << 8) |
| /* Leaf 0x80000001, %ecx */ |
| #define bit_LZCNT (1 << 5) |
| #endif /* QEMU_CPUID_H */ |