mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
39932105f0
This adds the instruction encoding and mnenomics for the proposed RISC-V Bit Manipulation extension (version 0.92). It is implemented with each category of instruction as its own target feature, with the 'b' extension feature enabling all options. Since this extension is not yet ratified, all target features are prefixed with 'experimental-' to note their status. Differential Revision: https://reviews.llvm.org/D65649
33 lines
1.3 KiB
ArmAsm
33 lines
1.3 KiB
ArmAsm
# With B extension:
|
|
# RUN: llvm-mc %s -triple=riscv32 -mattr=+experimental-b -show-encoding \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-ASM,CHECK-ASM-AND-OBJ %s
|
|
# RUN: llvm-mc -filetype=obj -triple=riscv32 -mattr=+experimental-b < %s \
|
|
# RUN: | llvm-objdump --mattr=+experimental-b -d -r - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-OBJ,CHECK-ASM-AND-OBJ %s
|
|
|
|
# With Bitmanip CRC extension:
|
|
# RUN: llvm-mc %s -triple=riscv32 -mattr=+experimental-zbr -show-encoding \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-ASM,CHECK-ASM-AND-OBJ %s
|
|
# RUN: llvm-mc -filetype=obj -triple=riscv32 -mattr=+experimental-zbr < %s \
|
|
# RUN: | llvm-objdump --mattr=+experimental-zbr -d -r - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-OBJ,CHECK-ASM-AND-OBJ %s
|
|
|
|
# CHECK-ASM-AND-OBJ: crc32.b t0, t1
|
|
# CHECK-ASM: encoding: [0x93,0x12,0x03,0x61]
|
|
crc32.b t0, t1
|
|
# CHECK-ASM-AND-OBJ: crc32.h t0, t1
|
|
# CHECK-ASM: encoding: [0x93,0x12,0x13,0x61]
|
|
crc32.h t0, t1
|
|
# CHECK-ASM-AND-OBJ: crc32.w t0, t1
|
|
# CHECK-ASM: encoding: [0x93,0x12,0x23,0x61]
|
|
crc32.w t0, t1
|
|
# CHECK-ASM-AND-OBJ: crc32c.b t0, t1
|
|
# CHECK-ASM: encoding: [0x93,0x12,0x83,0x61]
|
|
crc32c.b t0, t1
|
|
# CHECK-ASM-AND-OBJ: crc32c.h t0, t1
|
|
# CHECK-ASM: encoding: [0x93,0x12,0x93,0x61]
|
|
crc32c.h t0, t1
|
|
# CHECK-ASM-AND-OBJ: crc32c.w t0, t1
|
|
# CHECK-ASM: encoding: [0x93,0x12,0xa3,0x61]
|
|
crc32c.w t0, t1
|