[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / AArch64 / SVE2 / bdep.s
blob9d68b5a673c888f6ea98aaa10fe7f184dccdba29
1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+bitperm < %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=+bitperm < %s \
6 // RUN: | llvm-objdump -d -mattr=+bitperm - | FileCheck %s --check-prefix=CHECK-INST
7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+bitperm < %s \
8 // RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN
10 bdep z0.b, z1.b, z31.b
11 // CHECK-INST: bdep z0.b, z1.b, z31.b
12 // CHECK-ENCODING: [0x20,0xb4,0x1f,0x45]
13 // CHECK-ERROR: instruction requires: bitperm
14 // CHECK-UNKNOWN: 20 b4 1f 45 <unknown>
16 bdep z0.h, z1.h, z31.h
17 // CHECK-INST: bdep z0.h, z1.h, z31.h
18 // CHECK-ENCODING: [0x20,0xb4,0x5f,0x45]
19 // CHECK-ERROR: instruction requires: bitperm
20 // CHECK-UNKNOWN: 20 b4 5f 45 <unknown>
22 bdep z0.s, z1.s, z31.s
23 // CHECK-INST: bdep z0.s, z1.s, z31.s
24 // CHECK-ENCODING: [0x20,0xb4,0x9f,0x45]
25 // CHECK-ERROR: instruction requires: bitperm
26 // CHECK-UNKNOWN: 20 b4 9f 45 <unknown>
28 bdep z0.d, z1.d, z31.d
29 // CHECK-INST: bdep z0.d, z1.d, z31.d
30 // CHECK-ENCODING: [0x20,0xb4,0xdf,0x45]
31 // CHECK-ERROR: instruction requires: bitperm
32 // CHECK-UNKNOWN: 20 b4 df 45 <unknown>