| // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p2 < %s \ |
| // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST |
| // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme2p2 < %s \ |
| // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST |
| // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ |
| // RUN: | FileCheck %s --check-prefix=CHECK-ERROR |
| // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2p2 < %s \ |
| // RUN: | llvm-objdump -d --mattr=+sve2p2 - | FileCheck %s --check-prefix=CHECK-INST |
| // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2p2 < %s \ |
| // RUN: | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN |
| // Disassemble encoding and check the re-encoding (-show-encoding) matches. |
| // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p2 < %s \ |
| // RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \ |
| // RUN: | llvm-mc -triple=aarch64 -mattr=+sve2p2 -disassemble -show-encoding \ |
| // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST |
| |
| revh z0.s, p0/z, z0.s // 00000101-10100101-10100000-00000000 |
| // CHECK-INST: revh z0.s, p0/z, z0.s |
| // CHECK-ENCODING: [0x00,0xa0,0xa5,0x05] |
| // CHECK-ERROR: instruction requires: sme2p2 or sve2p2 |
| // CHECK-UNKNOWN: 05a5a000 <unknown> |
| |
| revh z23.s, p3/z, z13.s // 00000101-10100101-10101101-10110111 |
| // CHECK-INST: revh z23.s, p3/z, z13.s |
| // CHECK-ENCODING: [0xb7,0xad,0xa5,0x05] |
| // CHECK-ERROR: instruction requires: sme2p2 or sve2p2 |
| // CHECK-UNKNOWN: 05a5adb7 <unknown> |
| |
| revh z31.d, p7/z, z31.d // 00000101-11100101-10111111-11111111 |
| // CHECK-INST: revh z31.d, p7/z, z31.d |
| // CHECK-ENCODING: [0xff,0xbf,0xe5,0x05] |
| // CHECK-ERROR: instruction requires: sme2p2 or sve2p2 |
| // CHECK-UNKNOWN: 05e5bfff <unknown> |