target/i386: Fix andn instruction
commit5cd10051c2e02b7a86eae49919d6c65a87dbea46
authorAlexandro Sanchez Bach <alexandro@phi.nz>
Thu, 5 Apr 2018 12:40:58 +0000 (5 14:40 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 5 Apr 2018 12:41:54 +0000 (5 14:41 +0200)
tree2cd348243c3e12e6afca07382a210fce2878d411
parentd69748463c706801eabce2216c3f7914f56cc3a8
target/i386: Fix andn instruction

In commit 7073fbada733c8d10992f00772c9b9299d740e9b, the `andn` instruction
was implemented via `tcg_gen_andc` but passes the operands in the wrong
order:
- X86 defines `andn dest,src1,src2` as: dest = ~src1 & src2
- TCG defines `andc dest,src1,src2` as: dest = src1 & ~src2

The following simple test shows the issue:

    #include <stdio.h>
    #include <stdint.h>

    int main(void) {
        uint32_t ret = 0;
        __asm (
            "mov $0xFF00, %%ecx\n"
            "mov $0x0F0F, %%eax\n"
            "andn %%ecx, %%eax, %%ecx\n"
            "mov %%ecx, %0\n"
          : "=r" (ret));
        printf("%08X\n", ret);
        return 0;
    }

This patch fixes the problem by simply swapping the order of the two last
arguments in `tcg_gen_andc_tl`.

Reported-by: Alexandro Sanchez Bach <alexandro@phi.nz>
Signed-off-by: Alexandro Sanchez Bach <alexandro@phi.nz>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
target/i386/translate.c