X87: [Atomics] Fix disassembly for ia32 xchg_b and xchg_w.
port af677d7b34
(r35998)
original commit message:
https://codereview.chromium.org/1938213002 added xchg_b and xchg_w, but didn't
add it to the disassembler, and there were no tests that caught it.
BUG=
Review-Url: https://codereview.chromium.org/1947843002
Cr-Commit-Position: refs/heads/master@{#36051}
This commit is contained in:
parent
fd4f63b652
commit
e8c7592c5e
@ -30,18 +30,19 @@ struct ByteMnemonic {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const ByteMnemonic two_operands_instr[] = {
|
static const ByteMnemonic two_operands_instr[] = {
|
||||||
{0x01, "add", OPER_REG_OP_ORDER}, {0x03, "add", REG_OPER_OP_ORDER},
|
{0x01, "add", OPER_REG_OP_ORDER}, {0x03, "add", REG_OPER_OP_ORDER},
|
||||||
{0x09, "or", OPER_REG_OP_ORDER}, {0x0B, "or", REG_OPER_OP_ORDER},
|
{0x09, "or", OPER_REG_OP_ORDER}, {0x0B, "or", REG_OPER_OP_ORDER},
|
||||||
{0x13, "adc", REG_OPER_OP_ORDER}, {0x1B, "sbb", REG_OPER_OP_ORDER},
|
{0x13, "adc", REG_OPER_OP_ORDER}, {0x1B, "sbb", REG_OPER_OP_ORDER},
|
||||||
{0x21, "and", OPER_REG_OP_ORDER}, {0x23, "and", REG_OPER_OP_ORDER},
|
{0x21, "and", OPER_REG_OP_ORDER}, {0x23, "and", REG_OPER_OP_ORDER},
|
||||||
{0x29, "sub", OPER_REG_OP_ORDER}, {0x2A, "subb", REG_OPER_OP_ORDER},
|
{0x29, "sub", OPER_REG_OP_ORDER}, {0x2A, "subb", REG_OPER_OP_ORDER},
|
||||||
{0x2B, "sub", REG_OPER_OP_ORDER}, {0x31, "xor", OPER_REG_OP_ORDER},
|
{0x2B, "sub", REG_OPER_OP_ORDER}, {0x31, "xor", OPER_REG_OP_ORDER},
|
||||||
{0x33, "xor", REG_OPER_OP_ORDER}, {0x38, "cmpb", OPER_REG_OP_ORDER},
|
{0x33, "xor", REG_OPER_OP_ORDER}, {0x38, "cmpb", OPER_REG_OP_ORDER},
|
||||||
{0x39, "cmp", OPER_REG_OP_ORDER}, {0x3A, "cmpb", REG_OPER_OP_ORDER},
|
{0x39, "cmp", OPER_REG_OP_ORDER}, {0x3A, "cmpb", REG_OPER_OP_ORDER},
|
||||||
{0x3B, "cmp", REG_OPER_OP_ORDER}, {0x84, "test_b", REG_OPER_OP_ORDER},
|
{0x3B, "cmp", REG_OPER_OP_ORDER}, {0x84, "test_b", REG_OPER_OP_ORDER},
|
||||||
{0x85, "test", REG_OPER_OP_ORDER}, {0x87, "xchg", REG_OPER_OP_ORDER},
|
{0x85, "test", REG_OPER_OP_ORDER}, {0x86, "xchg_b", REG_OPER_OP_ORDER},
|
||||||
{0x8A, "mov_b", REG_OPER_OP_ORDER}, {0x8B, "mov", REG_OPER_OP_ORDER},
|
{0x87, "xchg", REG_OPER_OP_ORDER}, {0x8A, "mov_b", REG_OPER_OP_ORDER},
|
||||||
{0x8D, "lea", REG_OPER_OP_ORDER}, {-1, "", UNSET_OP_ORDER}};
|
{0x8B, "mov", REG_OPER_OP_ORDER}, {0x8D, "lea", REG_OPER_OP_ORDER},
|
||||||
|
{-1, "", UNSET_OP_ORDER}};
|
||||||
|
|
||||||
static const ByteMnemonic zero_operands_instr[] = {
|
static const ByteMnemonic zero_operands_instr[] = {
|
||||||
{0xC3, "ret", UNSET_OP_ORDER},
|
{0xC3, "ret", UNSET_OP_ORDER},
|
||||||
@ -1267,6 +1268,13 @@ int DisassemblerX87::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|||||||
} else if (*data == 0x8B) {
|
} else if (*data == 0x8B) {
|
||||||
data++;
|
data++;
|
||||||
data += PrintOperands("mov_w", REG_OPER_OP_ORDER, data);
|
data += PrintOperands("mov_w", REG_OPER_OP_ORDER, data);
|
||||||
|
} else if (*data == 0x87) {
|
||||||
|
data++;
|
||||||
|
int mod, regop, rm;
|
||||||
|
get_modrm(*data, &mod, ®op, &rm);
|
||||||
|
AppendToBuffer("xchg_w ");
|
||||||
|
data += PrintRightOperand(data);
|
||||||
|
AppendToBuffer(",%s", NameOfCPURegister(regop));
|
||||||
} else if (*data == 0x89) {
|
} else if (*data == 0x89) {
|
||||||
data++;
|
data++;
|
||||||
int mod, regop, rm;
|
int mod, regop, rm;
|
||||||
|
Loading…
Reference in New Issue
Block a user