mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 18:58:31 +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
1 changed files with 16 additions and 0 deletions
|
@ -671,6 +671,22 @@ static void set_hflags_for_handler (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) {
|
||||
/* TODO: add BadInstr support for microMIPS */
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue