mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
af453b57a3
This patch switches the default for -riscv-no-aliases to false and updates all affected MC and CodeGen tests. As recommended in D41071, MC tests use the canonical instructions and the CodeGen tests use the aliases. Additionally, for the f and d instructions with rounding mode, the tests for the aliased versions are moved and tightened such that they can actually detect if alias emission is enabled. (see D40902 for context) Differential Revision: https://reviews.llvm.org/D41225 Patch by Mario Werner. llvm-svn: 320797
39 lines
1.7 KiB
ArmAsm
39 lines
1.7 KiB
ArmAsm
# RUN: llvm-mc %s -triple=riscv64 -mattr=+f -riscv-no-aliases -show-encoding \
|
|
# RUN: | FileCheck -check-prefixes=CHECK,CHECK-INST %s
|
|
# RUN: llvm-mc -filetype=obj -triple riscv64 -mattr=+f < %s \
|
|
# RUN: | llvm-objdump -mattr=+f -riscv-no-aliases -d - \
|
|
# RUN: | FileCheck -check-prefix=CHECK-INST %s
|
|
# RUN: not llvm-mc -triple riscv32 -mattr=+f < %s 2>&1 \
|
|
# RUN: | FileCheck -check-prefix=CHECK-RV32 %s
|
|
|
|
# CHECK-INST: fcvt.l.s a0, ft0, dyn
|
|
# CHECK: encoding: [0x53,0x75,0x20,0xc0]
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.l.s a0, ft0, dyn
|
|
# CHECK-INST: fcvt.lu.s a1, ft1, dyn
|
|
# CHECK: encoding: [0xd3,0xf5,0x30,0xc0]
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.lu.s a1, ft1, dyn
|
|
# CHECK-INST: fcvt.s.l ft2, a2, dyn
|
|
# CHECK: encoding: [0x53,0x71,0x26,0xd0]
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.s.l ft2, a2, dyn
|
|
# CHECK-INST: fcvt.s.lu ft3, a3, dyn
|
|
# CHECK: encoding: [0xd3,0xf1,0x36,0xd0]
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.s.lu ft3, a3, dyn
|
|
|
|
# Rounding modes
|
|
# CHECK-INST: fcvt.l.s a4, ft4, rne
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.l.s a4, ft4, rne
|
|
# CHECK-INST: fcvt.lu.s a5, ft5, rtz
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.lu.s a5, ft5, rtz
|
|
# CHECK-INST: fcvt.s.l ft6, a6, rdn
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.s.l ft6, a6, rdn
|
|
# CHECK-INST: fcvt.s.lu ft7, a7, rup
|
|
# CHECK-RV32: :[[@LINE+1]]:1: error: instruction use requires an option to be enabled
|
|
fcvt.s.lu ft7, a7, rup
|