[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / MC / AArch64 / SVE / eon.s
blobdf5f7369a3ebcd7356c263de4503716400777973
1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \
2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
3 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme < %s \
4 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
5 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
6 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR
7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
8 // RUN: | llvm-objdump -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST
9 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
10 // RUN: | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN
12 eon z5.b, z5.b, #0xf9
13 // CHECK-INST: eor z5.b, z5.b, #0x6
14 // CHECK-ENCODING: [0x25,0x3e,0x40,0x05]
15 // CHECK-ERROR: instruction requires: sve or sme
16 // CHECK-UNKNOWN: 05403e25 <unknown>
18 eon z23.h, z23.h, #0xfff9
19 // CHECK-INST: eor z23.h, z23.h, #0x6
20 // CHECK-ENCODING: [0x37,0x7c,0x40,0x05]
21 // CHECK-ERROR: instruction requires: sve or sme
22 // CHECK-UNKNOWN: 05407c37 <unknown>
24 eon z0.s, z0.s, #0xfffffff9
25 // CHECK-INST: eor z0.s, z0.s, #0x6
26 // CHECK-ENCODING: [0x20,0xf8,0x40,0x05]
27 // CHECK-ERROR: instruction requires: sve or sme
28 // CHECK-UNKNOWN: 0540f820 <unknown>
30 eon z0.d, z0.d, #0xfffffffffffffff9
31 // CHECK-INST: eor z0.d, z0.d, #0x6
32 // CHECK-ENCODING: [0x20,0xf8,0x43,0x05]
33 // CHECK-ERROR: instruction requires: sve or sme
34 // CHECK-UNKNOWN: 0543f820 <unknown>
36 eon z5.b, z5.b, #0x6
37 // CHECK-INST: eor z5.b, z5.b, #0xf9
38 // CHECK-ENCODING: [0xa5,0x2e,0x40,0x05]
39 // CHECK-ERROR: instruction requires: sve or sme
40 // CHECK-UNKNOWN: 05402ea5 <unknown>
42 eon z23.h, z23.h, #0x6
43 // CHECK-INST: eor z23.h, z23.h, #0xfff9
44 // CHECK-ENCODING: [0xb7,0x6d,0x40,0x05]
45 // CHECK-ERROR: instruction requires: sve or sme
46 // CHECK-UNKNOWN: 05406db7 <unknown>
48 eon z0.s, z0.s, #0x6
49 // CHECK-INST: eor z0.s, z0.s, #0xfffffff9
50 // CHECK-ENCODING: [0xa0,0xeb,0x40,0x05]
51 // CHECK-ERROR: instruction requires: sve or sme
52 // CHECK-UNKNOWN: 0540eba0 <unknown>
54 eon z0.d, z0.d, #0x6
55 // CHECK-INST: eor z0.d, z0.d, #0xfffffffffffffff9
56 // CHECK-ENCODING: [0xa0,0xef,0x43,0x05]
57 // CHECK-ERROR: instruction requires: sve or sme
58 // CHECK-UNKNOWN: 0543efa0 <unknown>
61 // --------------------------------------------------------------------------//
62 // Test compatibility with MOVPRFX instruction.
64 movprfx z0, z7
65 // CHECK-INST: movprfx z0, z7
66 // CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]
67 // CHECK-ERROR: instruction requires: sve or sme
68 // CHECK-UNKNOWN: 0420bce0 <unknown>
70 eon z0.d, z0.d, #0x6
71 // CHECK-INST: eor z0.d, z0.d, #0xfffffffffffffff9
72 // CHECK-ENCODING: [0xa0,0xef,0x43,0x05]
73 // CHECK-ERROR: instruction requires: sve or sme
74 // CHECK-UNKNOWN: 0543efa0 <unknown>