diff options
author | Craig Topper <craig.topper@gmail.com> | 2016-11-22 05:31:43 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2016-11-22 05:31:43 +0000 |
commit | 3dcf45f08d03eeccf6b2d9bec74efe6fd0aebd2b (patch) | |
tree | 2522d0a488b2470c25ea0a2b72111b366a9887ae /llvm/lib/Target/X86/InstPrinter | |
parent | cada9f2275addd74b3d3990a1ded629bb3c7d0ef (diff) | |
download | bcm5719-llvm-3dcf45f08d03eeccf6b2d9bec74efe6fd0aebd2b.tar.gz bcm5719-llvm-3dcf45f08d03eeccf6b2d9bec74efe6fd0aebd2b.zip |
[X86] Remove alternate CodeGenOnly version of (v)movq that declared the load size as i128mem. Change all uses to the use the i64mem version.
I'm sure this caused the load size to misprint in Intel syntax output. We were also inconsistent about which patterns used which instruction between VEX and EVEX.
There are two different reg/reg versions of movq, one from a GPR and one from the lower 64-bits of an XMM register. This changes the loading folding table to use the single i64mem memory form for folding both cases. But we need to use TB_NO_REVERSE to prevent a duplicate entry in the unfolding table.
llvm-svn: 287622
Diffstat (limited to 'llvm/lib/Target/X86/InstPrinter')
-rw-r--r-- | llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp b/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp index bcbb8dfc065..8594addb5dd 100644 --- a/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp +++ b/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp @@ -1020,11 +1020,8 @@ bool llvm::EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS, LLVM_FALLTHROUGH; case X86::MOVQI2PQIrm: - case X86::MOVZPQILo2PQIrm: case X86::VMOVQI2PQIrm: case X86::VMOVQI2PQIZrm: - case X86::VMOVZPQILo2PQIrm: - case X86::VMOVZPQILo2PQIZrm: DecodeZeroMoveLowMask(MVT::v2i64, ShuffleMask); DestName = getRegName(MI->getOperand(0).getReg()); break; |