[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v11 3/3] target/riscv: Validate misa_mxl_max only once
From: |
Akihiko Odaki |
Subject: |
[PATCH v11 3/3] target/riscv: Validate misa_mxl_max only once |
Date: |
Sat, 03 Feb 2024 19:11:10 +0900 |
misa_mxl_max is now a class member and initialized only once for each
class. This also moves the initialization of gdb_core_xml_file which
will be referenced before realization in the future.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
---
target/riscv/cpu.c | 21 +++++++++++++++++++++
target/riscv/tcg/tcg-cpu.c | 23 -----------------------
2 files changed, 21 insertions(+), 23 deletions(-)
diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
index c9d09d175510..12a69efe89c4 100644
--- a/target/riscv/cpu.c
+++ b/target/riscv/cpu.c
@@ -1344,6 +1344,26 @@ static const MISAExtInfo misa_ext_info_arr[] = {
MISA_EXT_INFO(RVB, "x-b", "Bit manipulation (Zba_Zbb_Zbs)")
};
+static void riscv_cpu_validate_misa_mxl(RISCVCPUClass *mcc)
+{
+ CPUClass *cc = CPU_CLASS(mcc);
+
+ /* Validate that MISA_MXL is set properly. */
+ switch (mcc->misa_mxl_max) {
+#ifdef TARGET_RISCV64
+ case MXL_RV64:
+ case MXL_RV128:
+ cc->gdb_core_xml_file = "riscv-64bit-cpu.xml";
+ break;
+#endif
+ case MXL_RV32:
+ cc->gdb_core_xml_file = "riscv-32bit-cpu.xml";
+ break;
+ default:
+ g_assert_not_reached();
+ }
+}
+
static int riscv_validate_misa_info_idx(uint32_t bit)
{
int idx;
@@ -2303,6 +2323,7 @@ static void riscv_cpu_class_init(ObjectClass *c, void
*data)
RISCVCPUClass *mcc = RISCV_CPU_CLASS(c);
mcc->misa_mxl_max = (uint32_t)(uintptr_t)data;
+ riscv_cpu_validate_misa_mxl(mcc);
}
static void riscv_isa_string_ext(RISCVCPU *cpu, char **isa_str,
diff --git a/target/riscv/tcg/tcg-cpu.c b/target/riscv/tcg/tcg-cpu.c
index 067f1493fea7..e5a60c2e8b60 100644
--- a/target/riscv/tcg/tcg-cpu.c
+++ b/target/riscv/tcg/tcg-cpu.c
@@ -268,27 +268,6 @@ static void riscv_cpu_validate_misa_priv(CPURISCVState
*env, Error **errp)
}
}
-static void riscv_cpu_validate_misa_mxl(RISCVCPU *cpu)
-{
- RISCVCPUClass *mcc = RISCV_CPU_GET_CLASS(cpu);
- CPUClass *cc = CPU_CLASS(mcc);
-
- /* Validate that MISA_MXL is set properly. */
- switch (mcc->misa_mxl_max) {
-#ifdef TARGET_RISCV64
- case MXL_RV64:
- case MXL_RV128:
- cc->gdb_core_xml_file = "riscv-64bit-cpu.xml";
- break;
-#endif
- case MXL_RV32:
- cc->gdb_core_xml_file = "riscv-32bit-cpu.xml";
- break;
- default:
- g_assert_not_reached();
- }
-}
-
static void riscv_cpu_validate_v(CPURISCVState *env, RISCVCPUConfig *cfg,
Error **errp)
{
@@ -911,8 +890,6 @@ static bool riscv_tcg_cpu_realize(CPUState *cs, Error
**errp)
return false;
}
- riscv_cpu_validate_misa_mxl(cpu);
-
#ifndef CONFIG_USER_ONLY
CPURISCVState *env = &cpu->env;
Error *local_err = NULL;
--
2.43.0
- [PATCH v11 0/3] gdbstub and TCG plugin improvements, Akihiko Odaki, 2024/02/03
- [PATCH v11 1/3] target/riscv: Remove misa_mxl validation, Akihiko Odaki, 2024/02/03
- [PATCH v11 2/3] target/riscv: Move misa_mxl_max to class, Akihiko Odaki, 2024/02/03
- [PATCH v11 3/3] target/riscv: Validate misa_mxl_max only once,
Akihiko Odaki <=
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Alex Bennée, 2024/02/03
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Akihiko Odaki, 2024/02/03
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Alex Bennée, 2024/02/03
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Akihiko Odaki, 2024/02/04
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Alex Bennée, 2024/02/05
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Pierrick Bouvier, 2024/02/05
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Alex Bennée, 2024/02/05
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Akihiko Odaki, 2024/02/06
- Re: [PATCH v11 0/3] gdbstub and TCG plugin improvements, Alistair Francis, 2024/02/04