target/mips: Add updating BadInstr and BadInstrX for nanoMIPS
Update BadInstr and BadInstrX registers for nanoMIPS. The same support for pre-nanoMIPS remains unimplemented. Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Yongbok Kim <yongbok.kim@mips.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
This commit is contained in:
parent
fb32f8c856
commit
7a5f784aa2
@ -682,6 +682,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 New Issue
Block a user