mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-26 11:10:59 +00:00
target/mips: Clean up handling of CP0 register 15
Clean up handling of CP0 register 15. Backports commit 4466cd49e53d3a4418a0f27ea9ff335fd9aed180 from qemu
This commit is contained in:
parent
41133450de
commit
e54d2617a1
|
@ -366,6 +366,7 @@ typedef struct mips_def_t mips_def_t;
|
||||||
#define CP0_REG15__EBASE 1
|
#define CP0_REG15__EBASE 1
|
||||||
#define CP0_REG15__CDMMBASE 2
|
#define CP0_REG15__CDMMBASE 2
|
||||||
#define CP0_REG15__CMGCRBASE 3
|
#define CP0_REG15__CMGCRBASE 3
|
||||||
|
#define CP0_REG15__BEVVA 4
|
||||||
/* CP0 Register 16 */
|
/* CP0 Register 16 */
|
||||||
#define CP0_REG16__CONFIG 0
|
#define CP0_REG16__CONFIG 0
|
||||||
#define CP0_REG16__CONFIG1 1
|
#define CP0_REG16__CONFIG1 1
|
||||||
|
|
|
@ -7302,17 +7302,17 @@ static void gen_mfc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
||||||
break;
|
break;
|
||||||
case CP0_REGISTER_15:
|
case CP0_REGISTER_15:
|
||||||
switch (sel) {
|
switch (sel) {
|
||||||
case 0:
|
case CP0_REG15__PRID:
|
||||||
gen_mfc0_load32(ctx, arg, offsetof(CPUMIPSState, CP0_PRid));
|
gen_mfc0_load32(ctx, arg, offsetof(CPUMIPSState, CP0_PRid));
|
||||||
register_name = "PRid";
|
register_name = "PRid";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case CP0_REG15__EBASE:
|
||||||
check_insn(ctx, ISA_MIPS32R2);
|
check_insn(ctx, ISA_MIPS32R2);
|
||||||
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_EBase));
|
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_EBase));
|
||||||
tcg_gen_ext32s_tl(tcg_ctx, arg, arg);
|
tcg_gen_ext32s_tl(tcg_ctx, arg, arg);
|
||||||
register_name = "EBase";
|
register_name = "EBase";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case CP0_REG15__CMGCRBASE:
|
||||||
check_insn(ctx, ISA_MIPS32R2);
|
check_insn(ctx, ISA_MIPS32R2);
|
||||||
CP0_CHECK(ctx->cmgcr);
|
CP0_CHECK(ctx->cmgcr);
|
||||||
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_CMGCRBase));
|
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_CMGCRBase));
|
||||||
|
@ -8036,11 +8036,11 @@ static void gen_mtc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
||||||
break;
|
break;
|
||||||
case CP0_REGISTER_15:
|
case CP0_REGISTER_15:
|
||||||
switch (sel) {
|
switch (sel) {
|
||||||
case 0:
|
case CP0_REG15__PRID:
|
||||||
/* ignored */
|
/* ignored */
|
||||||
register_name = "PRid";
|
register_name = "PRid";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case CP0_REG15__EBASE:
|
||||||
check_insn(ctx, ISA_MIPS32R2);
|
check_insn(ctx, ISA_MIPS32R2);
|
||||||
gen_helper_mtc0_ebase(tcg_ctx, tcg_ctx->cpu_env, arg);
|
gen_helper_mtc0_ebase(tcg_ctx, tcg_ctx->cpu_env, arg);
|
||||||
register_name = "EBase";
|
register_name = "EBase";
|
||||||
|
@ -8773,16 +8773,16 @@ static void gen_dmfc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
||||||
break;
|
break;
|
||||||
case CP0_REGISTER_15:
|
case CP0_REGISTER_15:
|
||||||
switch (sel) {
|
switch (sel) {
|
||||||
case 0:
|
case CP0_REG15__PRID:
|
||||||
gen_mfc0_load32(ctx, arg, offsetof(CPUMIPSState, CP0_PRid));
|
gen_mfc0_load32(ctx, arg, offsetof(CPUMIPSState, CP0_PRid));
|
||||||
register_name = "PRid";
|
register_name = "PRid";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case CP0_REG15__EBASE:
|
||||||
check_insn(ctx, ISA_MIPS32R2);
|
check_insn(ctx, ISA_MIPS32R2);
|
||||||
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_EBase));
|
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_EBase));
|
||||||
register_name = "EBase";
|
register_name = "EBase";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case CP0_REG15__CMGCRBASE:
|
||||||
check_insn(ctx, ISA_MIPS32R2);
|
check_insn(ctx, ISA_MIPS32R2);
|
||||||
CP0_CHECK(ctx->cmgcr);
|
CP0_CHECK(ctx->cmgcr);
|
||||||
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_CMGCRBase));
|
tcg_gen_ld_tl(tcg_ctx, arg, tcg_ctx->cpu_env, offsetof(CPUMIPSState, CP0_CMGCRBase));
|
||||||
|
@ -9492,11 +9492,11 @@ static void gen_dmtc0(DisasContext *ctx, TCGv arg, int reg, int sel)
|
||||||
break;
|
break;
|
||||||
case CP0_REGISTER_15:
|
case CP0_REGISTER_15:
|
||||||
switch (sel) {
|
switch (sel) {
|
||||||
case 0:
|
case CP0_REG15__PRID:
|
||||||
/* ignored */
|
/* ignored */
|
||||||
register_name = "PRid";
|
register_name = "PRid";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case CP0_REG15__EBASE:
|
||||||
check_insn(ctx, ISA_MIPS32R2);
|
check_insn(ctx, ISA_MIPS32R2);
|
||||||
gen_helper_mtc0_ebase(tcg_ctx, tcg_ctx->cpu_env, arg);
|
gen_helper_mtc0_ebase(tcg_ctx, tcg_ctx->cpu_env, arg);
|
||||||
register_name = "EBase";
|
register_name = "EBase";
|
||||||
|
|
Loading…
Reference in a new issue