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 fcvtzu z0.h, p0/m, z0.h 11 // CHECK-INST: fcvtzu z0.h, p0/m, z0.h 12 // CHECK-ENCODING: [0x00,0xa0,0x5b,0x65] 13 // CHECK-ERROR: instruction requires: sve 14 // CHECK-UNKNOWN: 00 a0 5b 65 <unknown> 15 16 fcvtzu z0.s, p0/m, z0.h 17 // CHECK-INST: fcvtzu z0.s, p0/m, z0.h 18 // CHECK-ENCODING: [0x00,0xa0,0x5d,0x65] 19 // CHECK-ERROR: instruction requires: sve 20 // CHECK-UNKNOWN: 00 a0 5d 65 <unknown> 21 22 fcvtzu z0.s, p0/m, z0.s 23 // CHECK-INST: fcvtzu z0.s, p0/m, z0.s 24 // CHECK-ENCODING: [0x00,0xa0,0x9d,0x65] 25 // CHECK-ERROR: instruction requires: sve 26 // CHECK-UNKNOWN: 00 a0 9d 65 <unknown> 27 28 fcvtzu z0.s, p0/m, z0.d 29 // CHECK-INST: fcvtzu z0.s, p0/m, z0.d 30 // CHECK-ENCODING: [0x00,0xa0,0xd9,0x65] 31 // CHECK-ERROR: instruction requires: sve 32 // CHECK-UNKNOWN: 00 a0 d9 65 <unknown> 33 34 fcvtzu z0.d, p0/m, z0.h 35 // CHECK-INST: fcvtzu z0.d, p0/m, z0.h 36 // CHECK-ENCODING: [0x00,0xa0,0x5f,0x65] 37 // CHECK-ERROR: instruction requires: sve 38 // CHECK-UNKNOWN: 00 a0 5f 65 <unknown> 39 40 fcvtzu z0.d, p0/m, z0.s 41 // CHECK-INST: fcvtzu z0.d, p0/m, z0.s 42 // CHECK-ENCODING: [0x00,0xa0,0xdd,0x65] 43 // CHECK-ERROR: instruction requires: sve 44 // CHECK-UNKNOWN: 00 a0 dd 65 <unknown> 45 46 fcvtzu z0.d, p0/m, z0.d 47 // CHECK-INST: fcvtzu z0.d, p0/m, z0.d 48 // CHECK-ENCODING: [0x00,0xa0,0xdf,0x65] 49 // CHECK-ERROR: instruction requires: sve 50 // CHECK-UNKNOWN: 00 a0 df 65 <unknown> 51 52 53 // --------------------------------------------------------------------------// 54 // Test compatibility with MOVPRFX instruction. 55 56 movprfx z5.d, p0/z, z7.d 57 // CHECK-INST: movprfx z5.d, p0/z, z7.d 58 // CHECK-ENCODING: [0xe5,0x20,0xd0,0x04] 59 // CHECK-ERROR: instruction requires: sve 60 // CHECK-UNKNOWN: e5 20 d0 04 <unknown> 61 62 fcvtzu z5.d, p0/m, z0.d 63 // CHECK-INST: fcvtzu z5.d, p0/m, z0.d 64 // CHECK-ENCODING: [0x05,0xa0,0xdf,0x65] 65 // CHECK-ERROR: instruction requires: sve 66 // CHECK-UNKNOWN: 05 a0 df 65 <unknown> 67 68 movprfx z5, z7 69 // CHECK-INST: movprfx z5, z7 70 // CHECK-ENCODING: [0xe5,0xbc,0x20,0x04] 71 // CHECK-ERROR: instruction requires: sve 72 // CHECK-UNKNOWN: e5 bc 20 04 <unknown> 73 74 fcvtzu z5.d, p0/m, z0.d 75 // CHECK-INST: fcvtzu z5.d, p0/m, z0.d 76 // CHECK-ENCODING: [0x05,0xa0,0xdf,0x65] 77 // CHECK-ERROR: instruction requires: sve 78 // CHECK-UNKNOWN: 05 a0 df 65 <unknown> 79