xref: /llvm-project/llvm/test/MC/AArch64/SVE2p1/smaxqv.s (revision 835de8dcf1021de6d224625558346fd127358e08)
1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2p1 < %s \
2// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
3// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p1 < %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=+sme2p1 < %s \
8// RUN:        | llvm-objdump -d --mattr=+sme2p1 - | FileCheck %s --check-prefix=CHECK-INST
9// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme2p1 < %s \
10// RUN:        | llvm-objdump -d --mattr=-sme2p1,-sve2p1 - | FileCheck %s --check-prefix=CHECK-UNKNOWN
11// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2p1 < %s \
12// RUN:        | sed '/.text/d' | sed 's/.*encoding: //g' \
13// RUN:        | llvm-mc -triple=aarch64 -mattr=+sme2p1 -disassemble -show-encoding \
14// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
15
16smaxqv  v0.8h, p0, z0.h  // 00000100-01001100-00100000-00000000
17// CHECK-INST: smaxqv  v0.8h, p0, z0.h
18// CHECK-ENCODING: [0x00,0x20,0x4c,0x04]
19// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
20// CHECK-UNKNOWN: 044c2000 <unknown>
21
22smaxqv  v21.8h, p5, z10.h  // 00000100-01001100-00110101-01010101
23// CHECK-INST: smaxqv  v21.8h, p5, z10.h
24// CHECK-ENCODING: [0x55,0x35,0x4c,0x04]
25// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
26// CHECK-UNKNOWN: 044c3555 <unknown>
27
28smaxqv  v23.8h, p3, z13.h  // 00000100-01001100-00101101-10110111
29// CHECK-INST: smaxqv  v23.8h, p3, z13.h
30// CHECK-ENCODING: [0xb7,0x2d,0x4c,0x04]
31// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
32// CHECK-UNKNOWN: 044c2db7 <unknown>
33
34smaxqv  v31.8h, p7, z31.h  // 00000100-01001100-00111111-11111111
35// CHECK-INST: smaxqv  v31.8h, p7, z31.h
36// CHECK-ENCODING: [0xff,0x3f,0x4c,0x04]
37// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
38// CHECK-UNKNOWN: 044c3fff <unknown>
39
40smaxqv  v0.4s, p0, z0.s  // 00000100-10001100-00100000-00000000
41// CHECK-INST: smaxqv  v0.4s, p0, z0.s
42// CHECK-ENCODING: [0x00,0x20,0x8c,0x04]
43// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
44// CHECK-UNKNOWN: 048c2000 <unknown>
45
46smaxqv  v21.4s, p5, z10.s  // 00000100-10001100-00110101-01010101
47// CHECK-INST: smaxqv  v21.4s, p5, z10.s
48// CHECK-ENCODING: [0x55,0x35,0x8c,0x04]
49// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
50// CHECK-UNKNOWN: 048c3555 <unknown>
51
52smaxqv  v23.4s, p3, z13.s  // 00000100-10001100-00101101-10110111
53// CHECK-INST: smaxqv  v23.4s, p3, z13.s
54// CHECK-ENCODING: [0xb7,0x2d,0x8c,0x04]
55// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
56// CHECK-UNKNOWN: 048c2db7 <unknown>
57
58smaxqv  v31.4s, p7, z31.s  // 00000100-10001100-00111111-11111111
59// CHECK-INST: smaxqv  v31.4s, p7, z31.s
60// CHECK-ENCODING: [0xff,0x3f,0x8c,0x04]
61// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
62// CHECK-UNKNOWN: 048c3fff <unknown>
63
64smaxqv  v0.2d, p0, z0.d  // 00000100-11001100-00100000-00000000
65// CHECK-INST: smaxqv  v0.2d, p0, z0.d
66// CHECK-ENCODING: [0x00,0x20,0xcc,0x04]
67// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
68// CHECK-UNKNOWN: 04cc2000 <unknown>
69
70smaxqv  v21.2d, p5, z10.d  // 00000100-11001100-00110101-01010101
71// CHECK-INST: smaxqv  v21.2d, p5, z10.d
72// CHECK-ENCODING: [0x55,0x35,0xcc,0x04]
73// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
74// CHECK-UNKNOWN: 04cc3555 <unknown>
75
76smaxqv  v23.2d, p3, z13.d  // 00000100-11001100-00101101-10110111
77// CHECK-INST: smaxqv  v23.2d, p3, z13.d
78// CHECK-ENCODING: [0xb7,0x2d,0xcc,0x04]
79// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
80// CHECK-UNKNOWN: 04cc2db7 <unknown>
81
82smaxqv  v31.2d, p7, z31.d  // 00000100-11001100-00111111-11111111
83// CHECK-INST: smaxqv  v31.2d, p7, z31.d
84// CHECK-ENCODING: [0xff,0x3f,0xcc,0x04]
85// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
86// CHECK-UNKNOWN: 04cc3fff <unknown>
87
88smaxqv  v0.16b, p0, z0.b  // 00000100-00001100-00100000-00000000
89// CHECK-INST: smaxqv  v0.16b, p0, z0.b
90// CHECK-ENCODING: [0x00,0x20,0x0c,0x04]
91// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
92// CHECK-UNKNOWN: 040c2000 <unknown>
93
94smaxqv  v21.16b, p5, z10.b  // 00000100-00001100-00110101-01010101
95// CHECK-INST: smaxqv  v21.16b, p5, z10.b
96// CHECK-ENCODING: [0x55,0x35,0x0c,0x04]
97// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
98// CHECK-UNKNOWN: 040c3555 <unknown>
99
100smaxqv  v23.16b, p3, z13.b  // 00000100-00001100-00101101-10110111
101// CHECK-INST: smaxqv  v23.16b, p3, z13.b
102// CHECK-ENCODING: [0xb7,0x2d,0x0c,0x04]
103// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
104// CHECK-UNKNOWN: 040c2db7 <unknown>
105
106smaxqv  v31.16b, p7, z31.b  // 00000100-00001100-00111111-11111111
107// CHECK-INST: smaxqv  v31.16b, p7, z31.b
108// CHECK-ENCODING: [0xff,0x3f,0x0c,0x04]
109// CHECK-ERROR: instruction requires: sme2p1 or sve2p1
110// CHECK-UNKNOWN: 040c3fff <unknown>
111