[X86] Make 'xchgq %rax, %rax' an alias for the 0x90 nop encoding to match gas.
authorCraig Topper <craig.topper@intel.com>
Tue, 16 Jan 2018 06:07:14 +0000 (06:07 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 16 Jan 2018 06:07:14 +0000 (06:07 +0000)
Previously we encoded it as 0x48 0x90.

llvm-svn: 322531

llvm/lib/Target/X86/X86InstrInfo.td
llvm/test/MC/X86/x86-64.s

index d6dbf33..2a29084 100644 (file)
@@ -3310,6 +3310,10 @@ def : InstAlias<"xchg{l}\t{%eax, $src|$src, eax}",
                 (XCHG32ar64 GR32_NOAX:$src), 0>, Requires<[In64BitMode]>;
 def : InstAlias<"xchg{q}\t{%rax, $src|$src, rax}", (XCHG64ar GR64:$src), 0>;
 
+// xchg %rax, %rax is a nop in x86-64 and can be encoded as such. Without this
+// we emit an unneeded REX.w prefix.
+def : InstAlias<"xchg{q}\t{%rax, %rax|rax, rax}", (NOOP), 0>;
+
 // These aliases exist to get the parser to prioritize matching 8-bit
 // immediate encodings over matching the implicit ax/eax/rax encodings. By
 // explicitly mentioning the A register here, these entries will be ordered
index 17c9022..e47c9d9 100644 (file)
@@ -1354,8 +1354,8 @@ pclmullqhqdq (%rdi), %xmm1
 pclmulqdq $0, (%rdi), %xmm1
 
 // PR10345
-// CHECK: xchgq %rax, %rax
-// CHECK: encoding: [0x48,0x90]
+// CHECK: nop
+// CHECK: encoding: [0x90]
 xchgq %rax, %rax
 
 // CHECK: xchgl %eax, %eax