mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
b390d5a473
Summary: Now that llvm-objdump allows target-specific options, we match the `no-aliases` and `numeric` options for RISC-V, as supported by GNU objdump. This is done by overriding the variables used for the command-line options, so that the command-line options are still supported. This patch updates all tests using `llvm-objdump -riscv-no-aliases` to use `llvm-objdump -M no-aliases`. Reviewers: luismarques, asb Reviewed By: luismarques, asb Subscribers: pzheng, hiraditya, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, PkmX, jocewei, psnobl, benna, Jim, s.egerton, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D66139 llvm-svn: 371534
22 lines
836 B
ArmAsm
22 lines
836 B
ArmAsm
# 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=riscv64 -mattr=+m < %s \
|
|
# RUN: | llvm-objdump -mattr=+m -M no-aliases -d -r - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-OBJ,CHECK-ASM-AND-OBJ %s
|
|
|
|
# CHECK-ASM-AND-OBJ: mulw ra, sp, gp
|
|
# CHECK-ASM: encoding: [0xbb,0x00,0x31,0x02]
|
|
mulw ra, sp, gp
|
|
# CHECK-ASM-AND-OBJ: divw tp, t0, t1
|
|
# CHECK-ASM: encoding: [0x3b,0xc2,0x62,0x02]
|
|
divw tp, t0, t1
|
|
# CHECK-ASM-AND-OBJ: divuw t2, s0, s2
|
|
# CHECK-ASM: encoding: [0xbb,0x53,0x24,0x03]
|
|
divuw t2, s0, s2
|
|
# CHECK-ASM-AND-OBJ: remw a0, a1, a2
|
|
# CHECK-ASM: encoding: [0x3b,0xe5,0xc5,0x02]
|
|
remw a0, a1, a2
|
|
# CHECK-ASM-AND-OBJ: remuw a3, a4, a5
|
|
# CHECK-ASM: encoding: [0xbb,0x76,0xf7,0x02]
|
|
remuw a3, a4, a5
|