mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 11:01:00 +00:00
target/mips: Clean up handling of CP0 register 20
Clean up handling of CP0 register 20. Backports commit 14f92b0b9ca0abe48f9a23a73e8dc413d919eab9 from qemu
This commit is contained in:
parent
462d062240
commit
6d070f1346
|
@ -7420,7 +7420,7 @@ static void gen_mfc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_20:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG20__XCONTEXT:
|
||||
#if defined(TARGET_MIPS64)
|
||||
check_insn(ctx, ISA_MIPS3);
|
||||
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_XContext));
|
||||
|
@ -8156,7 +8156,7 @@ static void gen_mtc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_20:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG20__XCONTEXT:
|
||||
#if defined(TARGET_MIPS64)
|
||||
check_insn(ctx, ISA_MIPS3);
|
||||
gen_helper_mtc0_xcontext(tcg_ctx, tcg_ctx->cpu_env, arg);
|
||||
|
@ -8889,7 +8889,7 @@ static void gen_dmfc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_20:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG20__XCONTEXT:
|
||||
check_insn(ctx, ISA_MIPS3);
|
||||
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_XContext));
|
||||
register_name = "XContext";
|
||||
|
@ -9603,7 +9603,7 @@ static void gen_dmtc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
|||
break;
|
||||
case CP0_REGISTER_20:
|
||||
switch (sel) {
|
||||
case 0:
|
||||
case CP0_REG20__XCONTEXT:
|
||||
check_insn(ctx, ISA_MIPS3);
|
||||
gen_helper_mtc0_xcontext(tcg_ctx, tcg_ctx->cpu_env, arg);
|
||||
register_name = "XContext";
|
||||
|
|
Loading…
Reference in a new issue