[PATCH] D38626: Invalid used of 'w' suffix on push and pop using 64-bit register
Andrew V. Tischenko via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 27 03:30:38 PDT 2017
avt77 updated this revision to Diff 120567.
avt77 added a comment.
The patch was re-based to show the change in the test.
https://reviews.llvm.org/D38626
Files:
lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
test/MC/Disassembler/X86/x86-64.txt
Index: test/MC/Disassembler/X86/x86-64.txt
===================================================================
--- test/MC/Disassembler/X86/x86-64.txt
+++ test/MC/Disassembler/X86/x86-64.txt
@@ -479,12 +479,10 @@
# CHECK: nopq %rax
0x48 0x0f 0x1f 0xC0
-# TODO: wrong dissassembler with 0x67 prefix: expected popq
-# CHECK: popw %r14
+# CHECK: popq %r14
0x67 0x49 0x5e
-# TODO: wrong dissassembler with 0x67 prefix: expected pushq
-# CHECK: pushw %r14
+# CHECK: pushq %r14
0x67 0x49 0x56
# CHECK: xchgw %di, %ax
Index: lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
===================================================================
--- lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
+++ lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
@@ -949,8 +949,10 @@
}
}
- if (insn->rexPrefix & 0x08)
+ if (insn->rexPrefix & 0x08) {
attrMask |= ATTR_REXW;
+ attrMask &= ~ATTR_ADSIZE;
+ }
/*
* JCXZ/JECXZ need special handling for 16-bit mode because the meaning
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D38626.120567.patch
Type: text/x-patch
Size: 1031 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171027/d922d6d3/attachment.bin>
More information about the llvm-commits
mailing list