[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / MC / AArch64 / SVE2 / whilehs.s
blob46a4591587279a241de3774b77c9236620ac2001
1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2 < %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=+sve2 < %s \
8 // RUN: | llvm-objdump -d --mattr=+sve2 - | FileCheck %s --check-prefix=CHECK-INST
9 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2 < %s \
10 // RUN: | llvm-objdump -d --mattr=-sve2 - | FileCheck %s --check-prefix=CHECK-UNKNOWN
12 whilehs p15.b, xzr, x0
13 // CHECK-INST: whilehs p15.b, xzr, x0
14 // CHECK-ENCODING: [0xef,0x1b,0x20,0x25]
15 // CHECK-ERROR: instruction requires: sve2 or sme
16 // CHECK-UNKNOWN: 25201bef <unknown>
18 whilehs p15.b, x0, xzr
19 // CHECK-INST: whilehs p15.b, x0, xzr
20 // CHECK-ENCODING: [0x0f,0x18,0x3f,0x25]
21 // CHECK-ERROR: instruction requires: sve2 or sme
22 // CHECK-UNKNOWN: 253f180f <unknown>
24 whilehs p15.b, wzr, w0
25 // CHECK-INST: whilehs p15.b, wzr, w0
26 // CHECK-ENCODING: [0xef,0x0b,0x20,0x25]
27 // CHECK-ERROR: instruction requires: sve2 or sme
28 // CHECK-UNKNOWN: 25200bef <unknown>
30 whilehs p15.b, w0, wzr
31 // CHECK-INST: whilehs p15.b, w0, wzr
32 // CHECK-ENCODING: [0x0f,0x08,0x3f,0x25]
33 // CHECK-ERROR: instruction requires: sve2 or sme
34 // CHECK-UNKNOWN: 253f080f <unknown>
36 whilehs p15.h, x0, xzr
37 // CHECK-INST: whilehs p15.h, x0, xzr
38 // CHECK-ENCODING: [0x0f,0x18,0x7f,0x25]
39 // CHECK-ERROR: instruction requires: sve2 or sme
40 // CHECK-UNKNOWN: 257f180f <unknown>
42 whilehs p15.h, w0, wzr
43 // CHECK-INST: whilehs p15.h, w0, wzr
44 // CHECK-ENCODING: [0x0f,0x08,0x7f,0x25]
45 // CHECK-ERROR: instruction requires: sve2 or sme
46 // CHECK-UNKNOWN: 257f080f <unknown>
48 whilehs p15.s, x0, xzr
49 // CHECK-INST: whilehs p15.s, x0, xzr
50 // CHECK-ENCODING: [0x0f,0x18,0xbf,0x25]
51 // CHECK-ERROR: instruction requires: sve2 or sme
52 // CHECK-UNKNOWN: 25bf180f <unknown>
54 whilehs p15.s, w0, wzr
55 // CHECK-INST: whilehs p15.s, w0, wzr
56 // CHECK-ENCODING: [0x0f,0x08,0xbf,0x25]
57 // CHECK-ERROR: instruction requires: sve2 or sme
58 // CHECK-UNKNOWN: 25bf080f <unknown>
60 whilehs p15.d, w0, wzr
61 // CHECK-INST: whilehs p15.d, w0, wzr
62 // CHECK-ENCODING: [0x0f,0x08,0xff,0x25]
63 // CHECK-ERROR: instruction requires: sve2 or sme
64 // CHECK-UNKNOWN: 25ff080f <unknown>
66 whilehs p15.d, x0, xzr
67 // CHECK-INST: whilehs p15.d, x0, xzr
68 // CHECK-ENCODING: [0x0f,0x18,0xff,0x25]
69 // CHECK-ERROR: instruction requires: sve2 or sme
70 // CHECK-UNKNOWN: 25ff180f <unknown>