mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-25 17:41:09 +00:00
target/mips: Add updating BadInstr and BadInstrX for nanoMIPS
Update BadInstr and BadInstrX registers for nanoMIPS. The same support for pre-nanoMIPS remains unimplemented. Backports commit 7a5f784aa215df6bf5d674b4003f8df43bf3b2d4 from qemu
This commit is contained in:
parent
7e0342c9f6
commit
7473e6dbe6
|
@ -671,6 +671,22 @@ static void set_hflags_for_handler (CPUMIPSState *env)
|
||||||
|
|
||||||
static inline void set_badinstr_registers(CPUMIPSState *env)
|
static inline void set_badinstr_registers(CPUMIPSState *env)
|
||||||
{
|
{
|
||||||
|
if (env->insn_flags & ISA_NANOMIPS32) {
|
||||||
|
if (env->CP0_Config3 & (1 << CP0C3_BI)) {
|
||||||
|
uint32_t instr = (cpu_lduw_code(env, env->active_tc.PC)) << 16;
|
||||||
|
if ((instr & 0x10000000) == 0) {
|
||||||
|
instr |= cpu_lduw_code(env, env->active_tc.PC + 2);
|
||||||
|
}
|
||||||
|
env->CP0_BadInstr = instr;
|
||||||
|
|
||||||
|
if ((instr & 0xFC000000) == 0x60000000) {
|
||||||
|
instr = cpu_lduw_code(env, env->active_tc.PC + 4) << 16;
|
||||||
|
env->CP0_BadInstrX = instr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (env->hflags & MIPS_HFLAG_M16) {
|
if (env->hflags & MIPS_HFLAG_M16) {
|
||||||
/* TODO: add BadInstr support for microMIPS */
|
/* TODO: add BadInstr support for microMIPS */
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue