xref: /llvm-project/llvm/test/MC/AArch64/SVE/orn.s (revision ae16b2ed9871b5624fdcb4286fbd0d6ddfd88961)
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
11
12orn     z5.b, z5.b, #0xf9
13// CHECK-INST: orr     z5.b, z5.b, #0x6
14// CHECK-ENCODING: [0x25,0x3e,0x00,0x05]
15// CHECK-ERROR: instruction requires: sve or sme
16// CHECK-UNKNOWN: 05003e25 <unknown>
17
18orn     z23.h, z23.h, #0xfff9
19// CHECK-INST: orr     z23.h, z23.h, #0x6
20// CHECK-ENCODING: [0x37,0x7c,0x00,0x05]
21// CHECK-ERROR: instruction requires: sve or sme
22// CHECK-UNKNOWN: 05007c37 <unknown>
23
24orn     z0.s, z0.s, #0xfffffff9
25// CHECK-INST: orr     z0.s, z0.s, #0x6
26// CHECK-ENCODING: [0x20,0xf8,0x00,0x05]
27// CHECK-ERROR: instruction requires: sve or sme
28// CHECK-UNKNOWN: 0500f820 <unknown>
29
30orn     z0.d, z0.d, #0xfffffffffffffff9
31// CHECK-INST: orr     z0.d, z0.d, #0x6
32// CHECK-ENCODING: [0x20,0xf8,0x03,0x05]
33// CHECK-ERROR: instruction requires: sve or sme
34// CHECK-UNKNOWN: 0503f820 <unknown>
35
36orn     z5.b, z5.b, #0x6
37// CHECK-INST: orr     z5.b, z5.b, #0xf9
38// CHECK-ENCODING: [0xa5,0x2e,0x00,0x05]
39// CHECK-ERROR: instruction requires: sve or sme
40// CHECK-UNKNOWN: 05002ea5 <unknown>
41
42orn     z23.h, z23.h, #0x6
43// CHECK-INST: orr     z23.h, z23.h, #0xfff9
44// CHECK-ENCODING: [0xb7,0x6d,0x00,0x05]
45// CHECK-ERROR: instruction requires: sve or sme
46// CHECK-UNKNOWN: 05006db7 <unknown>
47
48orn     z0.s, z0.s, #0x6
49// CHECK-INST: orr     z0.s, z0.s, #0xfffffff9
50// CHECK-ENCODING: [0xa0,0xeb,0x00,0x05]
51// CHECK-ERROR: instruction requires: sve or sme
52// CHECK-UNKNOWN: 0500eba0 <unknown>
53
54orn     z0.d, z0.d, #0x6
55// CHECK-INST: orr     z0.d, z0.d, #0xfffffffffffffff9
56// CHECK-ENCODING: [0xa0,0xef,0x03,0x05]
57// CHECK-ERROR: instruction requires: sve or sme
58// CHECK-UNKNOWN: 0503efa0 <unknown>
59
60orn     p0.b, p0/z, p0.b, p0.b
61// CHECK-INST: orn     p0.b, p0/z, p0.b, p0.b
62// CHECK-ENCODING: [0x10,0x40,0x80,0x25]
63// CHECK-ERROR: instruction requires: sve or sme
64// CHECK-UNKNOWN: 25804010 <unknown>
65
66orn     p15.b, p15/z, p15.b, p15.b
67// CHECK-INST: orn     p15.b, p15/z, p15.b, p15.b
68// CHECK-ENCODING: [0xff,0x7d,0x8f,0x25]
69// CHECK-ERROR: instruction requires: sve or sme
70// CHECK-UNKNOWN: 258f7dff <unknown>
71
72
73// --------------------------------------------------------------------------//
74// Test compatibility with MOVPRFX instruction.
75
76movprfx z0, z7
77// CHECK-INST: movprfx	z0, z7
78// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]
79// CHECK-ERROR: instruction requires: sve or sme
80// CHECK-UNKNOWN: 0420bce0 <unknown>
81
82orn     z0.d, z0.d, #0x6
83// CHECK-INST: orr	z0.d, z0.d, #0xfffffffffffffff9
84// CHECK-ENCODING: [0xa0,0xef,0x03,0x05]
85// CHECK-ERROR: instruction requires: sve or sme
86// CHECK-UNKNOWN: 0503efa0 <unknown>
87