mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
db86191fa7
Summary: Add regression tests of asmparser, mccodeemitter, and disassembler for shift operation instructions. Also change asmparser to support UImm7 operand. And, add new SLD/SRD/SLA instructions also. Differential Revision: https://reviews.llvm.org/D81324
29 lines
987 B
ArmAsm
29 lines
987 B
ArmAsm
# RUN: llvm-mc -triple=ve --show-encoding < %s \
|
|
# RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
|
|
# RUN: llvm-mc -triple=ve -filetype=obj < %s | llvm-objdump -d - \
|
|
# RUN: | FileCheck %s --check-prefixes=CHECK-INST
|
|
|
|
# CHECK-INST: sll %s11, %s11, %s11
|
|
# CHECK-ENCODING: encoding: [0x00,0x00,0x00,0x00,0x8b,0x8b,0x0b,0x65]
|
|
sll %s11, %s11, %s11
|
|
|
|
# CHECK-INST: sll %s11, %s11, 63
|
|
# CHECK-ENCODING: encoding: [0x00,0x00,0x00,0x00,0x8b,0x3f,0x0b,0x65]
|
|
sll %s11, %s11, 63
|
|
|
|
# CHECK-INST: sll %s11, %s11, 127
|
|
# CHECK-ENCODING: encoding: [0x00,0x00,0x00,0x00,0x8b,0x7f,0x0b,0x65]
|
|
sll %s11, %s11, 127
|
|
|
|
# CHECK-INST: sll %s11, %s11, 64
|
|
# CHECK-ENCODING: encoding: [0x00,0x00,0x00,0x00,0x8b,0x40,0x0b,0x65]
|
|
sll %s11, %s11, 64
|
|
|
|
# CHECK-INST: sll %s11, (32)1, 35
|
|
# CHECK-ENCODING: encoding: [0x00,0x00,0x00,0x00,0x20,0x23,0x0b,0x65]
|
|
sll %s11, (32)1, 35
|
|
|
|
# CHECK-INST: sll %s11, (32)0, 23
|
|
# CHECK-ENCODING: encoding: [0x00,0x00,0x00,0x00,0x60,0x17,0x0b,0x65]
|
|
sll %s11, (32)0, 23
|