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 10 fcmeq p0.h, p0/z, z0.h, #0.0 11 // CHECK-INST: fcmeq p0.h, p0/z, z0.h, #0.0 12 // CHECK-ENCODING: [0x00,0x20,0x52,0x65] 13 // CHECK-ERROR: instruction requires: sve 14 // CHECK-UNKNOWN: 00 20 52 65 <unknown> 15 16 fcmeq p0.s, p0/z, z0.s, #0.0 17 // CHECK-INST: fcmeq p0.s, p0/z, z0.s, #0.0 18 // CHECK-ENCODING: [0x00,0x20,0x92,0x65] 19 // CHECK-ERROR: instruction requires: sve 20 // CHECK-UNKNOWN: 00 20 92 65 <unknown> 21 22 fcmeq p0.d, p0/z, z0.d, #0.0 23 // CHECK-INST: fcmeq p0.d, p0/z, z0.d, #0.0 24 // CHECK-ENCODING: [0x00,0x20,0xd2,0x65] 25 // CHECK-ERROR: instruction requires: sve 26 // CHECK-UNKNOWN: 00 20 d2 65 <unknown> 27 28 fcmeq p0.h, p0/z, z0.h, z1.h 29 // CHECK-INST: fcmeq p0.h, p0/z, z0.h, z1.h 30 // CHECK-ENCODING: [0x00,0x60,0x41,0x65] 31 // CHECK-ERROR: instruction requires: sve 32 // CHECK-UNKNOWN: 00 60 41 65 <unknown> 33 34 fcmeq p0.s, p0/z, z0.s, z1.s 35 // CHECK-INST: fcmeq p0.s, p0/z, z0.s, z1.s 36 // CHECK-ENCODING: [0x00,0x60,0x81,0x65] 37 // CHECK-ERROR: instruction requires: sve 38 // CHECK-UNKNOWN: 00 60 81 65 <unknown> 39 40 fcmeq p0.d, p0/z, z0.d, z1.d 41 // CHECK-INST: fcmeq p0.d, p0/z, z0.d, z1.d 42 // CHECK-ENCODING: [0x00,0x60,0xc1,0x65] 43 // CHECK-ERROR: instruction requires: sve 44 // CHECK-UNKNOWN: 00 60 c1 65 <unknown> 45