mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-22 13:45:38 +00:00
target/riscv: Use background registers also for MSTATUS_MPV
The current condition for the use of background registers only considers the hypervisor load and store instructions, but not accesses from M mode via MSTATUS_MPRV+MPV. Backports db9ab38b81058b41e5f469165067feea46762eee
This commit is contained in:
parent
a392976e77
commit
e74588a57f
|
@ -357,7 +357,7 @@ static int get_physical_address(CPURISCVState *env, hwaddr *physical,
|
|||
* was called. Background registers will be used if the guest has
|
||||
* forced a two stage translation to be on (in HS or M mode).
|
||||
*/
|
||||
if (!riscv_cpu_virt_enabled(env) && riscv_cpu_two_stage_lookup(mmu_idx)) {
|
||||
if (!riscv_cpu_virt_enabled(env) && two_stage) {
|
||||
use_background = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue