xref: /aosp_15_r20/external/llvm/test/MC/AArch64/neon-add-pairwise.s (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker// RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+neon,+fullfp16 -show-encoding < %s | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Worker// Check that the assembler can handle the documented syntax for AArch64
4*9880d681SAndroid Build Coastguard Worker
5*9880d681SAndroid Build Coastguard Worker
6*9880d681SAndroid Build Coastguard Worker//------------------------------------------------------------------------------
7*9880d681SAndroid Build Coastguard Worker// Vector  Add Pairwise (Integer)
8*9880d681SAndroid Build Coastguard Worker//------------------------------------------------------------------------------
9*9880d681SAndroid Build Coastguard Worker         addp v0.8b, v1.8b, v2.8b
10*9880d681SAndroid Build Coastguard Worker         addp v0.16b, v1.16b, v2.16b
11*9880d681SAndroid Build Coastguard Worker         addp v0.4h, v1.4h, v2.4h
12*9880d681SAndroid Build Coastguard Worker         addp v0.8h, v1.8h, v2.8h
13*9880d681SAndroid Build Coastguard Worker         addp v0.2s, v1.2s, v2.2s
14*9880d681SAndroid Build Coastguard Worker         addp v0.4s, v1.4s, v2.4s
15*9880d681SAndroid Build Coastguard Worker         addp v0.2d, v1.2d, v2.2d
16*9880d681SAndroid Build Coastguard Worker
17*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.8b, v1.8b, v2.8b        // encoding: [0x20,0xbc,0x22,0x0e]
18*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.16b, v1.16b, v2.16b     // encoding: [0x20,0xbc,0x22,0x4e]
19*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.4h, v1.4h, v2.4h        // encoding: [0x20,0xbc,0x62,0x0e]
20*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.8h, v1.8h, v2.8h        // encoding: [0x20,0xbc,0x62,0x4e]
21*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.2s, v1.2s, v2.2s        // encoding: [0x20,0xbc,0xa2,0x0e]
22*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.4s, v1.4s, v2.4s        // encoding: [0x20,0xbc,0xa2,0x4e]
23*9880d681SAndroid Build Coastguard Worker// CHECK: addp v0.2d, v1.2d, v2.2d        // encoding: [0x20,0xbc,0xe2,0x4e]
24*9880d681SAndroid Build Coastguard Worker
25*9880d681SAndroid Build Coastguard Worker//------------------------------------------------------------------------------
26*9880d681SAndroid Build Coastguard Worker// Vector Add Pairwise (Floating Point
27*9880d681SAndroid Build Coastguard Worker//------------------------------------------------------------------------------
28*9880d681SAndroid Build Coastguard Worker         faddp v0.4h, v1.4h, v2.4h
29*9880d681SAndroid Build Coastguard Worker         faddp v0.8h, v1.8h, v2.8h
30*9880d681SAndroid Build Coastguard Worker         faddp v0.2s, v1.2s, v2.2s
31*9880d681SAndroid Build Coastguard Worker         faddp v0.4s, v1.4s, v2.4s
32*9880d681SAndroid Build Coastguard Worker         faddp v0.2d, v1.2d, v2.2d
33*9880d681SAndroid Build Coastguard Worker
34*9880d681SAndroid Build Coastguard Worker// CHECK: faddp   v0.4h, v1.4h, v2.4h     // encoding: [0x20,0x14,0x42,0x2e]
35*9880d681SAndroid Build Coastguard Worker// CHECK: faddp   v0.8h, v1.8h, v2.8h     // encoding: [0x20,0x14,0x42,0x6e]
36*9880d681SAndroid Build Coastguard Worker// CHECK: faddp v0.2s, v1.2s, v2.2s       // encoding: [0x20,0xd4,0x22,0x2e]
37*9880d681SAndroid Build Coastguard Worker// CHECK: faddp v0.4s, v1.4s, v2.4s       // encoding: [0x20,0xd4,0x22,0x6e]
38*9880d681SAndroid Build Coastguard Worker// CHECK: faddp v0.2d, v1.2d, v2.2d       // encoding: [0x20,0xd4,0x62,0x6e]
39