[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / AArch64 / SVE / fcmle.s
blobeec273fab5c3b2a6d96c12ed232dccccc7f364b4
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
10 fcmle p0.h, p0/z, z0.h, #0.0
11 // CHECK-INST: fcmle p0.h, p0/z, z0.h, #0.0
12 // CHECK-ENCODING: [0x10,0x20,0x51,0x65]
13 // CHECK-ERROR: instruction requires: sve
14 // CHECK-UNKNOWN: 10 20 51 65 <unknown>
16 fcmle p0.s, p0/z, z0.s, #0.0
17 // CHECK-INST: fcmle p0.s, p0/z, z0.s, #0.0
18 // CHECK-ENCODING: [0x10,0x20,0x91,0x65]
19 // CHECK-ERROR: instruction requires: sve
20 // CHECK-UNKNOWN: 10 20 91 65 <unknown>
22 fcmle p0.d, p0/z, z0.d, #0.0
23 // CHECK-INST: fcmle p0.d, p0/z, z0.d, #0.0
24 // CHECK-ENCODING: [0x10,0x20,0xd1,0x65]
25 // CHECK-ERROR: instruction requires: sve
26 // CHECK-UNKNOWN: 10 20 d1 65 <unknown>
28 fcmle p0.h, p0/z, z0.h, z1.h
29 // CHECK-INST: fcmge p0.h, p0/z, z1.h, z0.h
30 // CHECK-ENCODING: [0x20,0x40,0x40,0x65]
31 // CHECK-ERROR: instruction requires: sve
32 // CHECK-UNKNOWN: 20 40 40 65 <unknown>
34 fcmle p0.s, p0/z, z0.s, z1.s
35 // CHECK-INST: fcmge p0.s, p0/z, z1.s, z0.s
36 // CHECK-ENCODING: [0x20,0x40,0x80,0x65]
37 // CHECK-ERROR: instruction requires: sve
38 // CHECK-UNKNOWN: 20 40 80 65 <unknown>
40 fcmle p0.d, p0/z, z0.d, z1.d
41 // CHECK-INST: fcmge p0.d, p0/z, z1.d, z0.d
42 // CHECK-ENCODING: [0x20,0x40,0xc0,0x65]
43 // CHECK-ERROR: instruction requires: sve
44 // CHECK-UNKNOWN: 20 40 c0 65 <unknown>