[mlir][inline] Fix Issue#82401: Infinite loop in MLIR inliner for indirect recursive...
[llvm-project.git] / llvm / test / MC / AArch64 / SVE / whilelt.s
blob0bac347a5979a4aff74b0564926a269c25d0a44d
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 whilelt p15.b, xzr, x0
13 // CHECK-INST: whilelt p15.b, xzr, x0
14 // CHECK-ENCODING: [0xef,0x17,0x20,0x25]
15 // CHECK-ERROR: instruction requires: sve or sme
16 // CHECK-UNKNOWN: 252017ef <unknown>
18 whilelt p15.b, x0, xzr
19 // CHECK-INST: whilelt p15.b, x0, xzr
20 // CHECK-ENCODING: [0x0f,0x14,0x3f,0x25]
21 // CHECK-ERROR: instruction requires: sve or sme
22 // CHECK-UNKNOWN: 253f140f <unknown>
24 whilelt p15.b, wzr, w0
25 // CHECK-INST: whilelt p15.b, wzr, w0
26 // CHECK-ENCODING: [0xef,0x07,0x20,0x25]
27 // CHECK-ERROR: instruction requires: sve or sme
28 // CHECK-UNKNOWN: 252007ef <unknown>
30 whilelt p15.b, w0, wzr
31 // CHECK-INST: whilelt p15.b, w0, wzr
32 // CHECK-ENCODING: [0x0f,0x04,0x3f,0x25]
33 // CHECK-ERROR: instruction requires: sve or sme
34 // CHECK-UNKNOWN: 253f040f <unknown>
36 whilelt p15.h, x0, xzr
37 // CHECK-INST: whilelt p15.h, x0, xzr
38 // CHECK-ENCODING: [0x0f,0x14,0x7f,0x25]
39 // CHECK-ERROR: instruction requires: sve or sme
40 // CHECK-UNKNOWN: 257f140f <unknown>
42 whilelt p15.h, w0, wzr
43 // CHECK-INST: whilelt p15.h, w0, wzr
44 // CHECK-ENCODING: [0x0f,0x04,0x7f,0x25]
45 // CHECK-ERROR: instruction requires: sve or sme
46 // CHECK-UNKNOWN: 257f040f <unknown>
48 whilelt p15.s, x0, xzr
49 // CHECK-INST: whilelt p15.s, x0, xzr
50 // CHECK-ENCODING: [0x0f,0x14,0xbf,0x25]
51 // CHECK-ERROR: instruction requires: sve or sme
52 // CHECK-UNKNOWN: 25bf140f <unknown>
54 whilelt p15.s, w0, wzr
55 // CHECK-INST: whilelt p15.s, w0, wzr
56 // CHECK-ENCODING: [0x0f,0x04,0xbf,0x25]
57 // CHECK-ERROR: instruction requires: sve or sme
58 // CHECK-UNKNOWN: 25bf040f <unknown>
60 whilelt p15.d, w0, wzr
61 // CHECK-INST: whilelt p15.d, w0, wzr
62 // CHECK-ENCODING: [0x0f,0x04,0xff,0x25]
63 // CHECK-ERROR: instruction requires: sve or sme
64 // CHECK-UNKNOWN: 25ff040f <unknown>
66 whilelt p15.d, x0, xzr
67 // CHECK-INST: whilelt p15.d, x0, xzr
68 // CHECK-ENCODING: [0x0f,0x14,0xff,0x25]
69 // CHECK-ERROR: instruction requires: sve or sme
70 // CHECK-UNKNOWN: 25ff140f <unknown>