Commit 23da1ceb authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

[x64] add missing disassm of pcmpeqd

BUG=
R=bmeurer@chromium.org

Review URL: https://codereview.chromium.org/658063003

Patch from Weiliang Lin <weiliang.lin@intel.com>.

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24680 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 6353ff20
...@@ -1088,6 +1088,8 @@ int DisassemblerX64::TwoByteOpcodeInstruction(byte* data) { ...@@ -1088,6 +1088,8 @@ int DisassemblerX64::TwoByteOpcodeInstruction(byte* data) {
mnemonic = "ucomisd"; mnemonic = "ucomisd";
} else if (opcode == 0x2F) { } else if (opcode == 0x2F) {
mnemonic = "comisd"; mnemonic = "comisd";
} else if (opcode == 0x76) {
mnemonic = "pcmpeqd";
} else { } else {
UnimplementedInstruction(); UnimplementedInstruction();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment