mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-16 22:51:32 +00:00
x86 emulator: fix parity calculation for AAD instruction
Reported-by: Paolo Bonzini <pbonzini@redhat.com> Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Gleb Natapov <gleb@redhat.com>
This commit is contained in:
parent
7a905b1485
commit
f583c29b79
@ -2995,14 +2995,11 @@ static int em_aad(struct x86_emulate_ctxt *ctxt)
|
|||||||
|
|
||||||
ctxt->dst.val = (ctxt->dst.val & 0xffff0000) | al;
|
ctxt->dst.val = (ctxt->dst.val & 0xffff0000) | al;
|
||||||
|
|
||||||
ctxt->eflags &= ~(X86_EFLAGS_PF | X86_EFLAGS_SF | X86_EFLAGS_ZF);
|
/* Set PF, ZF, SF */
|
||||||
|
ctxt->src.type = OP_IMM;
|
||||||
if (!al)
|
ctxt->src.val = 0;
|
||||||
ctxt->eflags |= X86_EFLAGS_ZF;
|
ctxt->src.bytes = 1;
|
||||||
if (!(al & 1))
|
fastop(ctxt, em_or);
|
||||||
ctxt->eflags |= X86_EFLAGS_PF;
|
|
||||||
if (al & 0x80)
|
|
||||||
ctxt->eflags |= X86_EFLAGS_SF;
|
|
||||||
|
|
||||||
return X86EMUL_CONTINUE;
|
return X86EMUL_CONTINUE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user