mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
target/riscv: Set [m|s]tval for both illegal and virtual instruction traps
Currently, the [m|s]tval CSRs are set with trapping instruction encoding only for illegal instruction traps taken at the time of instruction decoding. In RISC-V world, a valid instructions might also trap as illegal or virtual instruction based to trapping bits in various CSRs (such as mstatus.TVM or hstatus.VTVM). We improve setting of [m|s]tval CSRs for all types of illegal and virtual instruction traps. Signed-off-by: Anup Patel <apatel@ventanamicro.com> Reviewed-by: Frank Chang <frank.chang@sifive.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20220511144528.393530-4-apatel@ventanamicro.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
24826da0ee
commit
62cf02451e
4 changed files with 23 additions and 5 deletions
|
@ -406,6 +406,7 @@ void restore_state_to_opc(CPURISCVState *env, TranslationBlock *tb,
|
|||
} else {
|
||||
env->pc = data[0];
|
||||
}
|
||||
env->bins = data[1];
|
||||
}
|
||||
|
||||
static void riscv_cpu_reset(DeviceState *dev)
|
||||
|
@ -445,6 +446,7 @@ static void riscv_cpu_reset(DeviceState *dev)
|
|||
env->mcause = 0;
|
||||
env->miclaim = MIP_SGEIP;
|
||||
env->pc = env->resetvec;
|
||||
env->bins = 0;
|
||||
env->two_stage_lookup = false;
|
||||
|
||||
/* Initialized default priorities of local interrupts. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue