target/i386: fix CPUID check for LFENCE and SFENCE
LFENCE and SFENCE were introduced with the original SSE instruction set; marking them incorrectly as cpuid(SSE2) causes failures for CPU models that lack SSE2, for example pentium3. Reported-by: Guenter Roeck <linux@roeck-us.net> Tested-by: Guenter Roeck <linux@roeck-us.net> Cc: qemu-stable@nongnu.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
15195de6a9
commit
14bde8cd76
@ -345,9 +345,9 @@ static void decode_group15(DisasContext *s, CPUX86State *env, X86OpEntry *entry,
|
||||
[1] = X86_OP_ENTRYw(RDxxBASE, R,y, cpuid(FSGSBASE) chk(o64) p_f3),
|
||||
[2] = X86_OP_ENTRYr(WRxxBASE, R,y, cpuid(FSGSBASE) chk(o64) p_f3 zextT0),
|
||||
[3] = X86_OP_ENTRYr(WRxxBASE, R,y, cpuid(FSGSBASE) chk(o64) p_f3 zextT0),
|
||||
[5] = X86_OP_ENTRY0(LFENCE, cpuid(SSE2) p_00),
|
||||
[5] = X86_OP_ENTRY0(LFENCE, cpuid(SSE) p_00),
|
||||
[6] = X86_OP_ENTRY0(MFENCE, cpuid(SSE2) p_00),
|
||||
[7] = X86_OP_ENTRY0(SFENCE, cpuid(SSE2) p_00),
|
||||
[7] = X86_OP_ENTRY0(SFENCE, cpuid(SSE) p_00),
|
||||
};
|
||||
|
||||
static const X86OpEntry group15_mem[8] = {
|
||||
|
Loading…
Reference in New Issue
Block a user