diff options
| author | Frank Chang <frank.chang@sifive.com> | 2021-02-23 14:59:32 +0800 |
|---|---|---|
| committer | Alistair Francis <alistair.francis@wdc.com> | 2021-03-22 21:54:40 -0400 |
| commit | 5e437d3ccdccfd85f6e69ca60f921be2dab62c3c (patch) | |
| tree | 443640a16e3517dfffd84c19dd49fff02ee46979 /target/riscv/csr.c | |
| parent | c95bd5ff1660883d15ad6e0005e4c8571604f51a (diff) | |
| download | focaccia-qemu-5e437d3ccdccfd85f6e69ca60f921be2dab62c3c.tar.gz focaccia-qemu-5e437d3ccdccfd85f6e69ca60f921be2dab62c3c.zip | |
target/riscv: fix vs() to return proper error code
vs() should return -RISCV_EXCP_ILLEGAL_INST instead of -1 if rvv feature is not enabled. If -1 is returned, exception will be raised and cs->exception_index will be set to the negative return value. The exception will then be treated as an instruction access fault instead of illegal instruction fault. Signed-off-by: Frank Chang <frank.chang@sifive.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20210223065935.20208-1-frank.chang@sifive.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to '')
| -rw-r--r-- | target/riscv/csr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv/csr.c b/target/riscv/csr.c index fd2e6363f3..d2ae73e4a0 100644 --- a/target/riscv/csr.c +++ b/target/riscv/csr.c @@ -54,7 +54,7 @@ static int vs(CPURISCVState *env, int csrno) if (env->misa & RVV) { return 0; } - return -1; + return -RISCV_EXCP_ILLEGAL_INST; } static int ctr(CPURISCVState *env, int csrno) |