This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Add support for the Zicond ISA extension #59
Merged
Merged
Conversation
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
cmuellner
added a commit
to cmuellner/riscv-arch-test
that referenced
this pull request
Mar 21, 2023
This patch intoduces a coverage model and the generated test cases using riscv_ctg. The tests have been generated using the following command: riscv_ctg.py \ --cgf coverage/dataset.cgf \ --cgf coverage/zicond.cgf \ -bi rv32i \ -d tests/ riscv_ctg.py \ --cgf coverage/dataset.cgf \ --cgf coverage/zicond.cgf \ -bi rv64i \ -d tests64/ The resulting tests have been copied to the target directory: cp tests/*S riscv-test-suite/rv32i_m/Zicond/src/ cp tests64/*S riscv-test-suite/rv64i_m/Zicond/src/ This PR depends on Zicond support in the riscv-ctg repo: riscv-software-src/riscv-ctg#59 Signed-off-by: Christoph Müllner <[email protected]>
15 tasks
cmuellner
added a commit
to cmuellner/riscv-arch-test
that referenced
this pull request
Mar 21, 2023
This patch intoduces a coverage model and the generated test cases using riscv_ctg. The tests have been generated using the following command: riscv_ctg.py \ --cgf coverage/dataset.cgf \ --cgf coverage/zicond.cgf \ -bi rv32i \ -d tests/ riscv_ctg.py \ --cgf coverage/dataset.cgf \ --cgf coverage/zicond.cgf \ -bi rv64i \ -d tests64/ The resulting tests have been copied to the target directory: cp tests/*S riscv-test-suite/rv32i_m/Zicond/src/ cp tests64/*S riscv-test-suite/rv64i_m/Zicond/src/ This PR depends on Zicond support in the riscv-ctg repo: riscv-software-src/riscv-ctg#59 Signed-off-by: Christoph Müllner <[email protected]>
Please add an example cgf file with the coverpoints also under the |
The upcoming Zicond ISA extension introduces two new instructions: * czero.eqz * czero.nez This patch adds these instructions to template.yaml. The Zicond ISA extension is documented here: https://github.com/riscv/riscv-zicond/blob/main/zicondops.adoc Signed-off-by: Christoph Müllner <[email protected]>
I have added the zicond.cgf that I have added in the ACT PR and the change log entry. |
pawks
previously approved these changes
Mar 29, 2023
@cmuellner The version of the tool has not been updated. Please run the following command to update the version.
|
Updated PR with the additional version bump commit generated by |
pawks
approved these changes
Apr 4, 2023
cmuellner
added a commit
to cmuellner/riscv-arch-test
that referenced
this pull request
Nov 17, 2023
This patch intoduces a coverage model and the generated test cases using riscv_ctg. The tests have been generated using the following command: riscv_ctg.py \ --cgf coverage/dataset.cgf \ --cgf coverage/zicond.cgf \ -bi rv32i \ -d tests/ riscv_ctg.py \ --cgf coverage/dataset.cgf \ --cgf coverage/zicond.cgf \ -bi rv64i \ -d tests64/ The resulting tests have been copied to the target directory: cp tests/*S riscv-test-suite/rv32i_m/Zicond/src/ cp tests64/*S riscv-test-suite/rv64i_m/Zicond/src/ This PR depends on Zicond support in the riscv-ctg repo: riscv-software-src/riscv-ctg#59 Signed-off-by: Christoph Müllner <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The upcoming Zicond ISA extension introduces two new instructions:
This patch adds these instructions to template.yaml.
The Zicond ISA extension is documented here:
https://github.com/riscv/riscv-zicond/blob/main/zicondops.adoc