diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2013-10-16 16:09:02 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2013-10-16 16:09:02 +0000 |
commit | a2cd42a0a7c46d158714c09047a77b7bc1cf9d69 (patch) | |
tree | 5ad3e6549546869c0ecdd97fb4dd2c79dd5d2833 /test/MC/Disassembler | |
parent | c4e2060ecc5b74021c5639f7e8b1a063b598feac (diff) | |
download | external_llvm-a2cd42a0a7c46d158714c09047a77b7bc1cf9d69.zip external_llvm-a2cd42a0a7c46d158714c09047a77b7bc1cf9d69.tar.gz external_llvm-a2cd42a0a7c46d158714c09047a77b7bc1cf9d69.tar.bz2 |
[AArch64] Add support for NEON scalar signed saturating accumulated of unsigned
value and unsigned saturating accumulate of signed value instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192800 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Disassembler')
-rw-r--r-- | test/MC/Disassembler/AArch64/neon-instructions.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/MC/Disassembler/AArch64/neon-instructions.txt b/test/MC/Disassembler/AArch64/neon-instructions.txt index 248071b..b52b682 100644 --- a/test/MC/Disassembler/AArch64/neon-instructions.txt +++ b/test/MC/Disassembler/AArch64/neon-instructions.txt @@ -1623,3 +1623,27 @@ 0xf5,0x79,0x60,0x7e 0x94,0x79,0xa0,0x7e 0x92,0x79,0xe0,0x7e + +#---------------------------------------------------------------------- +# Signed Saturating Accumulated of Unsigned Value +#---------------------------------------------------------------------- +# CHECK: suqadd b19, b14 +# CHECK: suqadd h20, h15 +# CHECK: suqadd s21, s12 +# CHECK: suqadd d18, d22 +0xd3,0x39,0x20,0x5e +0xf4,0x39,0x60,0x5e +0x95,0x39,0xa0,0x5e +0xd2,0x3a,0xe0,0x5e + +#---------------------------------------------------------------------- +# Unsigned Saturating Accumulated of Unsigned Value +#---------------------------------------------------------------------- +# CHECK: usqadd b19, b14 +# CHECK: usqadd h20, h15 +# CHECK: usqadd s21, s12 +# CHECK: usqadd d18, d22 +0xd3,0x39,0x20,0x7e +0xf4,0x39,0x60,0x7e +0x95,0x39,0xa0,0x7e +0xd2,0x3a,0xe0,0x7e |