mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 13:51:11 +00:00
target/mips: Clean up handling of CP0 register 7
Clean up handling of CP0 register 7. Backports commit 143a9875e51a358924154ffa76135ca29415dfb5 from qemu
This commit is contained in:
parent
95fa7aae61
commit
38f0e31950
|
@ -7168,7 +7168,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(ctx, arg, offsetof(CPUMIPSState, CP0_HWREna));
|
||||
register_name = "HWREna";
|
||||
|
@ -7898,7 +7898,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(tcg_ctx, tcg_ctx->cpu_env, arg);
|
||||
ctx->base.is_jmp = DISAS_STOP;
|
||||
|
@ -8638,7 +8638,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(ctx, arg, offsetof(CPUMIPSState, CP0_HWREna));
|
||||
register_name = "HWREna";
|
||||
|
@ -9350,7 +9350,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(tcg_ctx, tcg_ctx->cpu_env, arg);
|
||||
ctx->base.is_jmp = DISAS_STOP;
|
||||
|
|
Loading…
Reference in a new issue