summaryrefslogtreecommitdiff
path: root/test/MC/ARM/neon-sub-encoding.s
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2012-04-20 18:12:54 +0000
committerJim Grosbach <grosbach@apple.com>2012-04-20 18:12:54 +0000
commitd8b3ed8f25c1ba76a6db875cd2d6eaa016bd4646 (patch)
tree19529b0b4a14f7a62b38e637ae67500339f51a9d /test/MC/ARM/neon-sub-encoding.s
parent7605b29e27723e3d702cf9dc7fc7e3b60d2405a5 (diff)
downloadllvm-d8b3ed8f25c1ba76a6db875cd2d6eaa016bd4646.tar.gz
llvm-d8b3ed8f25c1ba76a6db875cd2d6eaa016bd4646.tar.bz2
llvm-d8b3ed8f25c1ba76a6db875cd2d6eaa016bd4646.tar.xz
ARM: Update NEON assembly two-operand aliases.
Use the new TwoOperandAliasConstraint to handle lots of the two-operand aliases for NEON instructions. There's still more to go, but this is a good chunk of them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ARM/neon-sub-encoding.s')
-rw-r--r--test/MC/ARM/neon-sub-encoding.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/MC/ARM/neon-sub-encoding.s b/test/MC/ARM/neon-sub-encoding.s
index 8eb38a5f71..be67aa8da6 100644
--- a/test/MC/ARM/neon-sub-encoding.s
+++ b/test/MC/ARM/neon-sub-encoding.s
@@ -158,3 +158,18 @@
@ CHECK: vhsub.u8 q4, q4, q9 @ encoding: [0x62,0x82,0x08,0xf3]
@ CHECK: vhsub.u16 q5, q5, q8 @ encoding: [0x60,0xa2,0x1a,0xf3]
@ CHECK: vhsub.u32 q6, q6, q7 @ encoding: [0x4e,0xc2,0x2c,0xf3]
+
+
+ vsubw.s8 q6, d5
+ vsubw.s16 q7, d1
+ vsubw.s32 q8, d2
+ vsubw.u8 q6, d5
+ vsubw.u16 q7, d1
+ vsubw.u32 q8, d2
+
+@ CHECK: vsubw.s8 q6, q6, d5 @ encoding: [0x05,0xc3,0x8c,0xf2]
+@ CHECK: vsubw.s16 q7, q7, d1 @ encoding: [0x01,0xe3,0x9e,0xf2]
+@ CHECK: vsubw.s32 q8, q8, d2 @ encoding: [0x82,0x03,0xe0,0xf2]
+@ CHECK: vsubw.u8 q6, q6, d5 @ encoding: [0x05,0xc3,0x8c,0xf3]
+@ CHECK: vsubw.u16 q7, q7, d1 @ encoding: [0x01,0xe3,0x9e,0xf3]
+@ CHECK: vsubw.u32 q8, q8, d2 @ encoding: [0x82,0x03,0xe0,0xf3]