diff options
Diffstat (limited to 'llvm/test/MC/AArch64/SVE/cmpgt.s')
| -rw-r--r-- | llvm/test/MC/AArch64/SVE/cmpgt.s | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/llvm/test/MC/AArch64/SVE/cmpgt.s b/llvm/test/MC/AArch64/SVE/cmpgt.s new file mode 100644 index 00000000000..edc7c7e2baa --- /dev/null +++ b/llvm/test/MC/AArch64/SVE/cmpgt.s @@ -0,0 +1,51 @@ +// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %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=+sve < %s \ +// RUN: | llvm-objdump -d -mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST +// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \ +// RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN + + +cmpgt p0.b, p0/z, z0.b, z0.b +// CHECK-INST: cmpgt p0.b, p0/z, z0.b, z0.b +// CHECK-ENCODING: [0x10,0x80,0x00,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 80 00 24 <unknown> + +cmpgt p0.h, p0/z, z0.h, z0.h +// CHECK-INST: cmpgt p0.h, p0/z, z0.h, z0.h +// CHECK-ENCODING: [0x10,0x80,0x40,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 80 40 24 <unknown> + +cmpgt p0.s, p0/z, z0.s, z0.s +// CHECK-INST: cmpgt p0.s, p0/z, z0.s, z0.s +// CHECK-ENCODING: [0x10,0x80,0x80,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 80 80 24 <unknown> + +cmpgt p0.d, p0/z, z0.d, z0.d +// CHECK-INST: cmpgt p0.d, p0/z, z0.d, z0.d +// CHECK-ENCODING: [0x10,0x80,0xc0,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 80 c0 24 <unknown> + +cmpgt p0.b, p0/z, z0.b, z0.d +// CHECK-INST: cmpgt p0.b, p0/z, z0.b, z0.d +// CHECK-ENCODING: [0x10,0x40,0x00,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 40 00 24 <unknown> + +cmpgt p0.h, p0/z, z0.h, z0.d +// CHECK-INST: cmpgt p0.h, p0/z, z0.h, z0.d +// CHECK-ENCODING: [0x10,0x40,0x40,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 40 40 24 <unknown> + +cmpgt p0.s, p0/z, z0.s, z0.d +// CHECK-INST: cmpgt p0.s, p0/z, z0.s, z0.d +// CHECK-ENCODING: [0x10,0x40,0x80,0x24] +// CHECK-ERROR: instruction requires: sve +// CHECK-UNKNOWN: 10 40 80 24 <unknown> |

