-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #288 from chipsalliance/wsip/bitmanip
Add test for Bitmanip extension
- Loading branch information
Showing
3 changed files
with
141 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// Copyright 2024 Antmicro <www.antmicro.com> | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
#define STDOUT 0xd0580000 | ||
#define RESULT_SUCCESS 0xff | ||
#define RESULT_FAILURE 0x1 | ||
|
||
// 5-bit encodings of registers | ||
#define reg_map(x) reg_map__##x | ||
#define reg_map__t0 5 | ||
#define reg_map__t1 6 | ||
#define reg_map__t2 7 | ||
|
||
#define INSTR_TWO_ARG(rd, rs1, rs2) (reg_map(rd) << 7 | reg_map(rs1) << 15 | reg_map(rs2) << 20) | ||
#define INSTR_ONE_ARG(rd, rs1) (reg_map(rd) << 7 | reg_map(rs1) << 15) | ||
|
||
// Implement instructions not implemented in the toolchain (Bitmanip Extenstion 0.94-draft, Jan 20, 2021) | ||
#define crc32_b(rd, rs1) .word (0b0110000 << 25 | (0b10000) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32_h(rd, rs1) .word (0b0110000 << 25 | (0b10001) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32_w(rd, rs1) .word (0b0110000 << 25 | (0b10010) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32_d(rd, rs1) .word (0b0110000 << 25 | (0b10011) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32c_b(rd, rs1) .word (0b0110000 << 25 | (0b11000) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32c_h(rd, rs1) .word (0b0110000 << 25 | (0b11001) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32c_w(rd, rs1) .word (0b0110000 << 25 | (0b11010) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
#define crc32c_d(rd, rs1) .word (0b0110000 << 25 | (0b11011) << 20 | INSTR_ONE_ARG(rd, rs1) | 0b001 << 12 | 0b0010011) | ||
|
||
#define shfl(rd, rs1, rs2) .word (0b0000100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b001 << 12 | 0b0110011) | ||
#define unshfl(rd, rs1, rs2) .word (0b0000100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b101 << 12 | 0b0110011) | ||
#define bdecompress(rd, rs1, rs2) .word (0b0100100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b110 << 12 | 0b0110011) | ||
#define bcompress(rd, rs1, rs2) .word (0b0000100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b110 << 12 | 0b0110011) | ||
#define bfp(rd, rs1, rs2) .word (0b0100100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b111 << 12 | 0b0110011) | ||
#define grev(rd, rs1, rs2) .word (0b0110100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b101 << 12 | 0b0110011) | ||
#define gorc(rd, rs1, rs2) .word (0b0010100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b101 << 12 | 0b0110011) | ||
|
||
#define xperm_n(rd, rs1, rs2) .word (0b0010100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b010 << 12 | 0b0110011) | ||
#define xperm_b(rd, rs1, rs2) .word (0b0010100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b100 << 12 | 0b0110011) | ||
#define xperm_h(rd, rs1, rs2) .word (0b0010100 << 25 | INSTR_TWO_ARG(rd, rs1, rs2) | 0b110 << 12 | 0b0110011) | ||
|
||
#define EQUAL_OR_FAIL(reg, value) \ | ||
li t3, value; \ | ||
bne reg, t3, test_failed | ||
|
||
.global _start | ||
_start: | ||
li t0, 0xc0de // arg1 | ||
li t1, 0xdec0de // arg2 | ||
li t2, 0 // result | ||
|
||
test_bcompress: | ||
bcompress(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xff) | ||
|
||
test_bdcompress: | ||
bdecompress(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xc05c) | ||
|
||
test_grev: | ||
grev(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xb7030000) | ||
|
||
test_gorc: | ||
gorc(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xffffffff) | ||
|
||
test_shfl: | ||
shfl(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0x30003132) | ||
|
||
test_unshfl: | ||
unshfl(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xcf0006) | ||
|
||
test_crc32_b: | ||
crc32_b(t2, t1) | ||
EQUAL_OR_FAIL(t2, 0x616b2113) | ||
|
||
test_crc32_h: | ||
crc32_h(t2, t1) | ||
EQUAL_OR_FAIL(t2, 0x84df2aff) | ||
|
||
test_crc32_w: | ||
crc32_w(t2, t1) | ||
EQUAL_OR_FAIL(t2, 0x489fb07b) | ||
|
||
test_crc32c_b: | ||
crc32c_b(t2, t1) | ||
EQUAL_OR_FAIL(t2, 0x7fab804c) | ||
|
||
test_crc32c_h: | ||
crc32c_h(t2, t1) | ||
EQUAL_OR_FAIL(t2, 0xc4779ec) | ||
|
||
test_crc32c_w: | ||
crc32c_w(t2, t1) | ||
EQUAL_OR_FAIL(t2, 0xa1ebfe1d) | ||
|
||
test_xperm_n: | ||
xperm_n(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xee000e00) | ||
|
||
test_xperm_b: | ||
xperm_b(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0xde000000) | ||
|
||
test_xperm_h: | ||
xperm_h(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0x0) | ||
|
||
test_bfp: | ||
bfp(t2, t0, t1) | ||
EQUAL_OR_FAIL(t2, 0x8000c0de) | ||
|
||
success: | ||
li a0, STDOUT | ||
li a1, RESULT_SUCCESS | ||
sw a1, 0(a0) | ||
|
||
do_nothing: | ||
nop | ||
j do_nothing | ||
|
||
test_failed: | ||
li a0, STDOUT | ||
li a1, RESULT_FAILURE | ||
sw a1, 0(a0) | ||
.long 0 |