• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \
2// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
3// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
4// RUN:        | FileCheck %s --check-prefix=CHECK-ERROR
5// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
6// RUN:        | llvm-objdump -d -mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST
7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
8// RUN:        | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN
9
10cmplt   p0.b, p0/z, z0.b, z1.b
11// CHECK-INST: cmpgt	p0.b, p0/z, z1.b, z0.b
12// CHECK-ENCODING: [0x30,0x80,0x00,0x24]
13// CHECK-ERROR: instruction requires: sve
14// CHECK-UNKNOWN: 30 80 00 24 <unknown>
15
16cmplt   p0.h, p0/z, z0.h, z1.h
17// CHECK-INST: cmpgt	p0.h, p0/z, z1.h, z0.h
18// CHECK-ENCODING: [0x30,0x80,0x40,0x24]
19// CHECK-ERROR: instruction requires: sve
20// CHECK-UNKNOWN: 30 80 40 24 <unknown>
21
22cmplt   p0.s, p0/z, z0.s, z1.s
23// CHECK-INST: cmpgt	p0.s, p0/z, z1.s, z0.s
24// CHECK-ENCODING: [0x30,0x80,0x80,0x24]
25// CHECK-ERROR: instruction requires: sve
26// CHECK-UNKNOWN: 30 80 80 24 <unknown>
27
28cmplt   p0.d, p0/z, z0.d, z1.d
29// CHECK-INST: cmpgt	p0.d, p0/z, z1.d, z0.d
30// CHECK-ENCODING: [0x30,0x80,0xc0,0x24]
31// CHECK-ERROR: instruction requires: sve
32// CHECK-UNKNOWN: 30 80 c0 24 <unknown>
33
34cmplt   p0.b, p0/z, z0.b, z0.d
35// CHECK-INST: cmplt p0.b, p0/z, z0.b, z0.d
36// CHECK-ENCODING: [0x00,0x60,0x00,0x24]
37// CHECK-ERROR: instruction requires: sve
38// CHECK-UNKNOWN: 00 60 00 24 <unknown>
39
40cmplt   p0.h, p0/z, z0.h, z0.d
41// CHECK-INST: cmplt p0.h, p0/z, z0.h, z0.d
42// CHECK-ENCODING: [0x00,0x60,0x40,0x24]
43// CHECK-ERROR: instruction requires: sve
44// CHECK-UNKNOWN: 00 60 40 24 <unknown>
45
46cmplt   p0.s, p0/z, z0.s, z0.d
47// CHECK-INST: cmplt p0.s, p0/z, z0.s, z0.d
48// CHECK-ENCODING: [0x00,0x60,0x80,0x24]
49// CHECK-ERROR: instruction requires: sve
50// CHECK-UNKNOWN: 00 60 80 24 <unknown>
51
52cmplt   p0.b, p0/z, z0.b, #-16
53// CHECK-INST: cmplt p0.b, p0/z, z0.b, #-16
54// CHECK-ENCODING: [0x00,0x20,0x10,0x25]
55// CHECK-ERROR: instruction requires: sve
56// CHECK-UNKNOWN: 00 20 10 25 <unknown>
57
58cmplt   p0.h, p0/z, z0.h, #-16
59// CHECK-INST: cmplt p0.h, p0/z, z0.h, #-16
60// CHECK-ENCODING: [0x00,0x20,0x50,0x25]
61// CHECK-ERROR: instruction requires: sve
62// CHECK-UNKNOWN: 00 20 50 25 <unknown>
63
64cmplt   p0.s, p0/z, z0.s, #-16
65// CHECK-INST: cmplt p0.s, p0/z, z0.s, #-16
66// CHECK-ENCODING: [0x00,0x20,0x90,0x25]
67// CHECK-ERROR: instruction requires: sve
68// CHECK-UNKNOWN: 00 20 90 25 <unknown>
69
70cmplt   p0.d, p0/z, z0.d, #-16
71// CHECK-INST: cmplt p0.d, p0/z, z0.d, #-16
72// CHECK-ENCODING: [0x00,0x20,0xd0,0x25]
73// CHECK-ERROR: instruction requires: sve
74// CHECK-UNKNOWN: 00 20 d0 25 <unknown>
75
76cmplt   p0.b, p0/z, z0.b, #15
77// CHECK-INST: cmplt p0.b, p0/z, z0.b, #15
78// CHECK-ENCODING: [0x00,0x20,0x0f,0x25]
79// CHECK-ERROR: instruction requires: sve
80// CHECK-UNKNOWN: 00 20 0f 25 <unknown>
81
82cmplt   p0.h, p0/z, z0.h, #15
83// CHECK-INST: cmplt p0.h, p0/z, z0.h, #15
84// CHECK-ENCODING: [0x00,0x20,0x4f,0x25]
85// CHECK-ERROR: instruction requires: sve
86// CHECK-UNKNOWN: 00 20 4f 25 <unknown>
87
88cmplt   p0.s, p0/z, z0.s, #15
89// CHECK-INST: cmplt p0.s, p0/z, z0.s, #15
90// CHECK-ENCODING: [0x00,0x20,0x8f,0x25]
91// CHECK-ERROR: instruction requires: sve
92// CHECK-UNKNOWN: 00 20 8f 25 <unknown>
93
94cmplt   p0.d, p0/z, z0.d, #15
95// CHECK-INST: cmplt p0.d, p0/z, z0.d, #15
96// CHECK-ENCODING: [0x00,0x20,0xcf,0x25]
97// CHECK-ERROR: instruction requires: sve
98// CHECK-UNKNOWN: 00 20 cf 25 <unknown>
99