28 lines
968 B
ArmAsm
28 lines
968 B
ArmAsm
// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme < %s \
|
|
// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
|
|
// RUN: llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
|
|
// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
|
|
// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme < %s \
|
|
// RUN: | llvm-objdump -d --mattr=+sme - | FileCheck %s --check-prefix=CHECK-INST
|
|
// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sme < %s \
|
|
// RUN: | llvm-objdump -d --mattr=-sme - | FileCheck %s --check-prefix=CHECK-INST
|
|
|
|
smstart
|
|
// CHECK-INST: smstart
|
|
// CHECK-ENCODING: [0x7f,0x47,0x03,0xd5]
|
|
|
|
smstart sm
|
|
// CHECK-INST: smstart sm
|
|
// CHECK-ENCODING: [0x7f,0x43,0x03,0xd5]
|
|
|
|
smstart za
|
|
// CHECK-INST: smstart za
|
|
// CHECK-ENCODING: [0x7f,0x45,0x03,0xd5]
|
|
|
|
smstart SM
|
|
// CHECK-INST: smstart sm
|
|
// CHECK-ENCODING: [0x7f,0x43,0x03,0xd5]
|
|
|
|
smstart ZA
|
|
// CHECK-INST: smstart za
|
|
// CHECK-ENCODING: [0x7f,0x45,0x03,0xd5]
|