brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.7 KiB · df5f736 Raw
75 lines · plain
1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \2// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST3// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme < %s \4// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST5// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \6// RUN:        | FileCheck %s --check-prefix=CHECK-ERROR7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \8// RUN:        | llvm-objdump -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST9// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \10// RUN:   | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN11 12eon     z5.b, z5.b, #0xf913// CHECK-INST: eor     z5.b, z5.b, #0x614// CHECK-ENCODING: [0x25,0x3e,0x40,0x05]15// CHECK-ERROR: instruction requires: sve or sme16// CHECK-UNKNOWN: 05403e25 <unknown>17 18eon     z23.h, z23.h, #0xfff919// CHECK-INST: eor     z23.h, z23.h, #0x620// CHECK-ENCODING: [0x37,0x7c,0x40,0x05]21// CHECK-ERROR: instruction requires: sve or sme22// CHECK-UNKNOWN: 05407c37 <unknown>23 24eon     z0.s, z0.s, #0xfffffff925// CHECK-INST: eor     z0.s, z0.s, #0x626// CHECK-ENCODING: [0x20,0xf8,0x40,0x05]27// CHECK-ERROR: instruction requires: sve or sme28// CHECK-UNKNOWN: 0540f820 <unknown>29 30eon     z0.d, z0.d, #0xfffffffffffffff931// CHECK-INST: eor     z0.d, z0.d, #0x632// CHECK-ENCODING: [0x20,0xf8,0x43,0x05]33// CHECK-ERROR: instruction requires: sve or sme34// CHECK-UNKNOWN: 0543f820 <unknown>35 36eon     z5.b, z5.b, #0x637// CHECK-INST: eor     z5.b, z5.b, #0xf938// CHECK-ENCODING: [0xa5,0x2e,0x40,0x05]39// CHECK-ERROR: instruction requires: sve or sme40// CHECK-UNKNOWN: 05402ea5 <unknown>41 42eon     z23.h, z23.h, #0x643// CHECK-INST: eor     z23.h, z23.h, #0xfff944// CHECK-ENCODING: [0xb7,0x6d,0x40,0x05]45// CHECK-ERROR: instruction requires: sve or sme46// CHECK-UNKNOWN: 05406db7 <unknown>47 48eon     z0.s, z0.s, #0x649// CHECK-INST: eor     z0.s, z0.s, #0xfffffff950// CHECK-ENCODING: [0xa0,0xeb,0x40,0x05]51// CHECK-ERROR: instruction requires: sve or sme52// CHECK-UNKNOWN: 0540eba0 <unknown>53 54eon     z0.d, z0.d, #0x655// CHECK-INST: eor     z0.d, z0.d, #0xfffffffffffffff956// CHECK-ENCODING: [0xa0,0xef,0x43,0x05]57// CHECK-ERROR: instruction requires: sve or sme58// CHECK-UNKNOWN: 0543efa0 <unknown>59 60 61// --------------------------------------------------------------------------//62// Test compatibility with MOVPRFX instruction.63 64movprfx z0, z765// CHECK-INST: movprfx	z0, z766// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]67// CHECK-ERROR: instruction requires: sve or sme68// CHECK-UNKNOWN: 0420bce0 <unknown>69 70eon     z0.d, z0.d, #0x671// CHECK-INST: eor	z0.d, z0.d, #0xfffffffffffffff972// CHECK-ENCODING: [0xa0,0xef,0x43,0x05]73// CHECK-ERROR: instruction requires: sve or sme74// CHECK-UNKNOWN: 0543efa0 <unknown>75