brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · 81bb285 Raw
44 lines · plain
1# RUN: llvm-mc %s -triple=riscv64 -mattr=+q -M no-aliases -show-encoding \2# RUN:     | FileCheck -check-prefixes=CHECK-ASM,CHECK-ASM-AND-OBJ %s3# RUN: llvm-mc -filetype=obj -triple=riscv64 -mattr=+q < %s \4# RUN:     | llvm-objdump --mattr=+q -M no-aliases -d -r - \5# RUN:     | FileCheck --check-prefix=CHECK-ASM-AND-OBJ %s6#7# RUN: not llvm-mc -triple riscv32 -mattr=+q < %s 2>&1 \8# RUN:     | FileCheck -check-prefix=CHECK-RV32 %s9 10# CHECK-ASM-AND-OBJ: fcvt.l.q a0, ft0, dyn11# CHECK-ASM: encoding: [0x53,0x75,0x20,0xc6]12# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}13fcvt.l.q a0, ft0, dyn14# CHECK-ASM-AND-OBJ: fcvt.lu.q a1, ft1, dyn15# CHECK-ASM: encoding: [0xd3,0xf5,0x30,0xc6]16# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}17fcvt.lu.q a1, ft1, dyn18# CHECK-ASM-AND-OBJ: fcvt.q.l ft3, a3, dyn19# CHECK-ASM: encoding: [0xd3,0xf1,0x26,0xd6]20# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}21fcvt.q.l ft3, a3, dyn22# CHECK-ASM-AND-OBJ: fcvt.q.lu ft4, a4, dyn23# CHECK-ASM: encoding: [0x53,0x72,0x37,0xd6]24# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}25fcvt.q.lu ft4, a4, dyn26 27# Rounding modes28# CHECK-ASM-AND-OBJ: fcvt.q.l ft3, a329# CHECK-ASM: encoding: [0xd3,0x81,0x26,0xd6]30# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}31fcvt.q.l ft3, a3, rne32# CHECK-ASM-AND-OBJ: fcvt.q.lu ft4, a4, rtz33# CHECK-ASM: encoding: [0x53,0x12,0x37,0xd6]34# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}35fcvt.q.lu ft4, a4, rtz36# CHECK-ASM-AND-OBJ: fcvt.l.q a0, ft0, rdn37# CHECK-ASM: encoding: [0x53,0x25,0x20,0xc6]38# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}39fcvt.l.q a0, ft0, rdn40# CHECK-ASM-AND-OBJ: fcvt.lu.q a1, ft1, rup41# CHECK-ASM: encoding: [0xd3,0xb5,0x30,0xc6]42# CHECK-RV32: :[[@LINE+1]]:1: error: instruction requires the following: RV64I Base Instruction Set{{$}}43fcvt.lu.q a1, ft1, rup44