mirror of https://gitee.com/openkylin/qemu.git
target/mips: Clean up handling of CP0 register 7
Clean up handling of CP0 register 7. Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com> Message-Id: <1567009614-12438-9-git-send-email-aleksandar.markovic@rt-rk.com>
This commit is contained in:
parent
9023594b40
commit
143a9875e5
|
@ -7086,7 +7086,7 @@ static void gen_mfc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_07:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG07__HWRENA:
|
||||
check_insn(ctx, ISA_MIPS32R2);
|
||||
gen_mfc0_load32(arg, offsetof(CPUMIPSState, CP0_HWREna));
|
||||
register_name = "HWREna";
|
||||
|
@ -7818,7 +7818,7 @@ static void gen_mtc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_07:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG07__HWRENA:
|
||||
check_insn(ctx, ISA_MIPS32R2);
|
||||
gen_helper_mtc0_hwrena(cpu_env, arg);
|
||||
ctx->base.is_jmp = DISAS_STOP;
|
||||
|
@ -8563,7 +8563,7 @@ static void gen_dmfc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_07:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG07__HWRENA:
|
||||
check_insn(ctx, ISA_MIPS32R2);
|
||||
gen_mfc0_load32(arg, offsetof(CPUMIPSState, CP0_HWREna));
|
||||
register_name = "HWREna";
|
||||
|
@ -9277,7 +9277,7 @@ static void gen_dmtc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_07:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG07__HWRENA:
|
||||
check_insn(ctx, ISA_MIPS32R2);
|
||||
gen_helper_mtc0_hwrena(cpu_env, arg);
|
||||
ctx->base.is_jmp = DISAS_STOP;
|
||||
|
|
Loading…
Reference in New Issue