mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-27 06:54:30 +00:00
2b2d105ff9
Standardise on check lines: * CHECK-ASM * CHECK-OBJ * CHECK-ASM-AND-OBJ This allows for the addition of tests involving symbol operands, which will not result in identical instructions in both assembly and disassembled object output. This commit doesn't exploit this reworking to increase test coverage of symbol operands - that will come in a future patch. llvm-svn: 341546
36 lines
1.4 KiB
ArmAsm
36 lines
1.4 KiB
ArmAsm
# RUN: llvm-mc %s -triple=riscv32 -mattr=+m -riscv-no-aliases -show-encoding \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-ASM,CHECK-ASM-AND-OBJ %s
|
|
# RUN: llvm-mc %s -triple=riscv64 -mattr=+m -riscv-no-aliases -show-encoding \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-ASM,CHECK-ASM-AND-OBJ %s
|
|
# RUN: llvm-mc -filetype=obj -triple=riscv32 -mattr=+m < %s \
|
|
# RUN: | llvm-objdump -mattr=+m -riscv-no-aliases -d -r - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-OBJ,CHECK-ASM-AND-OBJ %s
|
|
# RUN: llvm-mc -filetype=obj -triple=riscv64 -mattr=+m < %s \
|
|
# RUN: | llvm-objdump -mattr=+m -riscv-no-aliases -d -r - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-OBJ,CHECK-ASM-AND-OBJ %s
|
|
|
|
# CHECK-ASM-AND-OBJ: mul a4, ra, s0
|
|
# CHECK-ASM: encoding: [0x33,0x87,0x80,0x02]
|
|
mul a4, ra, s0
|
|
# CHECK-ASM-AND-OBJ: mulh ra, zero, zero
|
|
# CHECK-ASM: encoding: [0xb3,0x10,0x00,0x02]
|
|
mulh x1, x0, x0
|
|
# CHECK-ASM-AND-OBJ: mulhsu t0, t2, t1
|
|
# CHECK-ASM: encoding: [0xb3,0xa2,0x63,0x02]
|
|
mulhsu t0, t2, t1
|
|
# CHECK-ASM-AND-OBJ: mulhu a5, a4, a3
|
|
# CHECK-ASM: encoding: [0xb3,0x37,0xd7,0x02]
|
|
mulhu a5, a4, a3
|
|
# CHECK-ASM-AND-OBJ: div s0, s0, s0
|
|
# CHECK-ASM: encoding: [0x33,0x44,0x84,0x02]
|
|
div s0, s0, s0
|
|
# CHECK-ASM-AND-OBJ: divu gp, a0, a1
|
|
# CHECK-ASM: encoding: [0xb3,0x51,0xb5,0x02]
|
|
divu gp, a0, a1
|
|
# CHECK-ASM-AND-OBJ: rem s2, s2, s8
|
|
# CHECK-ASM: encoding: [0x33,0x69,0x89,0x03]
|
|
rem s2, s2, s8
|
|
# CHECK-ASM-AND-OBJ: remu s2, s2, s8
|
|
# CHECK-ASM: encoding: [0x33,0x79,0x89,0x03]
|
|
remu x18, x18, x24
|