diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-09-03 16:25:14 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-09-03 16:25:14 +0000 |
commit | ca0d1734b44a67ca0077c3f5714d901f7489559d (patch) | |
tree | 97a18813c2b055f1c9a7f5bfbfedbe563bc280e5 /kqemu.c | |
parent | aa0bc6b68c98d4b8122a846c962a1bac1c329ca4 (diff) |
SYSENTER fix for x86_64 CPUs
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1565 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'kqemu.c')
-rw-r--r-- | kqemu.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -119,13 +119,19 @@ static void kqemu_update_cpuid(CPUState *env) critical_features_mask = CPUID_CMOV | CPUID_CX8 | CPUID_FXSR | CPUID_MMX | CPUID_SSE | - CPUID_SSE2; + CPUID_SSE2 | CPUID_SEP; if (!is_cpuid_supported()) { features = 0; } else { cpuid(1, eax, ebx, ecx, edx); features = edx; } +#ifdef __x86_64__ + /* NOTE: on x86_64 CPUs, SYSENTER is not supported in + compatibility mode, so in order to have the best performances + it is better not to use it */ + features &= ~CPUID_SEP; +#endif env->cpuid_features = (env->cpuid_features & ~critical_features_mask) | (features & critical_features_mask); /* XXX: we could update more of the target CPUID state so that the |