- target/loongarch: Fix qemu-system-loongarch64 assert - target/loongarch: Fix qemu-loongarch64 hang when executing 'll.d , , 0' - target/loongarch: Fix tlb huge page loading issue - target/loongarch/kvm: Add software breakpoint support - target/loongarch/kvm: sync kernel header files - hw/intc/loongarch_extioi: Add virt extension support - target/loongarch/kvm: Add pmu support - target/loongarch/kvm: Fix vm restore failed - target/loongarch/kvm: Add pv steal time support - target/loongarch/kvm: fpu save the vreg registers high Signed-off-by: Song Gao <gaosong@loongson.cn>
137 lines
5.1 KiB
Diff
137 lines
5.1 KiB
Diff
From 3db0118d3663c5d56841dac30e4bf95ccfff21bd Mon Sep 17 00:00:00 2001
|
||
From: Song Gao <gaosong@loongson.cn>
|
||
Date: Tue, 2 Apr 2024 09:39:36 +0800
|
||
Subject: [PATCH] target/loongarch: Fix qemu-system-loongarch64 assert
|
||
failed with the option '-d int'
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
qemu-system-loongarch64 assert failed with the option '-d int',
|
||
the helper_idle() raise an exception EXCP_HLT, but the exception name is undefined.
|
||
|
||
-----
|
||
merge patch:
|
||
|
||
0cbb322f70e8a87e4acbffecef5ea8f9448f3513(target/loongarch/cpu.c: typo fix: expection)
|
||
|
||
Signed-off-by: Song Gao <gaosong@loongson.cn>
|
||
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
|
||
Message-Id: <20240321123606.1704900-1-gaosong@loongson.cn>
|
||
---
|
||
target/loongarch/cpu.c | 74 +++++++++++++++++++++++-------------------
|
||
1 file changed, 40 insertions(+), 34 deletions(-)
|
||
|
||
diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c
|
||
index b098b1c6f3..0b3f954b64 100644
|
||
--- a/target/loongarch/cpu.c
|
||
+++ b/target/loongarch/cpu.c
|
||
@@ -43,33 +43,45 @@ const char * const fregnames[32] = {
|
||
"f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
|
||
};
|
||
|
||
-static const char * const excp_names[] = {
|
||
- [EXCCODE_INT] = "Interrupt",
|
||
- [EXCCODE_PIL] = "Page invalid exception for load",
|
||
- [EXCCODE_PIS] = "Page invalid exception for store",
|
||
- [EXCCODE_PIF] = "Page invalid exception for fetch",
|
||
- [EXCCODE_PME] = "Page modified exception",
|
||
- [EXCCODE_PNR] = "Page Not Readable exception",
|
||
- [EXCCODE_PNX] = "Page Not Executable exception",
|
||
- [EXCCODE_PPI] = "Page Privilege error",
|
||
- [EXCCODE_ADEF] = "Address error for instruction fetch",
|
||
- [EXCCODE_ADEM] = "Address error for Memory access",
|
||
- [EXCCODE_SYS] = "Syscall",
|
||
- [EXCCODE_BRK] = "Break",
|
||
- [EXCCODE_INE] = "Instruction Non-Existent",
|
||
- [EXCCODE_IPE] = "Instruction privilege error",
|
||
- [EXCCODE_FPD] = "Floating Point Disabled",
|
||
- [EXCCODE_FPE] = "Floating Point Exception",
|
||
- [EXCCODE_DBP] = "Debug breakpoint",
|
||
- [EXCCODE_BCE] = "Bound Check Exception",
|
||
- [EXCCODE_SXD] = "128 bit vector instructions Disable exception",
|
||
- [EXCCODE_ASXD] = "256 bit vector instructions Disable exception",
|
||
+struct TypeExcp {
|
||
+ int32_t exccode;
|
||
+ const char * const name;
|
||
+};
|
||
+
|
||
+static const struct TypeExcp excp_names[] = {
|
||
+ {EXCCODE_INT, "Interrupt"},
|
||
+ {EXCCODE_PIL, "Page invalid exception for load"},
|
||
+ {EXCCODE_PIS, "Page invalid exception for store"},
|
||
+ {EXCCODE_PIF, "Page invalid exception for fetch"},
|
||
+ {EXCCODE_PME, "Page modified exception"},
|
||
+ {EXCCODE_PNR, "Page Not Readable exception"},
|
||
+ {EXCCODE_PNX, "Page Not Executable exception"},
|
||
+ {EXCCODE_PPI, "Page Privilege error"},
|
||
+ {EXCCODE_ADEF, "Address error for instruction fetch"},
|
||
+ {EXCCODE_ADEM, "Address error for Memory access"},
|
||
+ {EXCCODE_SYS, "Syscall"},
|
||
+ {EXCCODE_BRK, "Break"},
|
||
+ {EXCCODE_INE, "Instruction Non-Existent"},
|
||
+ {EXCCODE_IPE, "Instruction privilege error"},
|
||
+ {EXCCODE_FPD, "Floating Point Disabled"},
|
||
+ {EXCCODE_FPE, "Floating Point Exception"},
|
||
+ {EXCCODE_DBP, "Debug breakpoint"},
|
||
+ {EXCCODE_BCE, "Bound Check Exception"},
|
||
+ {EXCCODE_SXD, "128 bit vector instructions Disable exception"},
|
||
+ {EXCCODE_ASXD, "256 bit vector instructions Disable exception"},
|
||
+ {EXCP_HLT, "EXCP_HLT"},
|
||
};
|
||
|
||
const char *loongarch_exception_name(int32_t exception)
|
||
{
|
||
- assert(excp_names[exception]);
|
||
- return excp_names[exception];
|
||
+ int i;
|
||
+
|
||
+ for (i = 0; i < ARRAY_SIZE(excp_names); i++) {
|
||
+ if (excp_names[i].exccode == exception) {
|
||
+ return excp_names[i].name;
|
||
+ }
|
||
+ }
|
||
+ return "Unknown";
|
||
}
|
||
|
||
void G_NORETURN do_raise_exception(CPULoongArchState *env,
|
||
@@ -78,7 +90,7 @@ void G_NORETURN do_raise_exception(CPULoongArchState *env,
|
||
{
|
||
CPUState *cs = env_cpu(env);
|
||
|
||
- qemu_log_mask(CPU_LOG_INT, "%s: %d (%s)\n",
|
||
+ qemu_log_mask(CPU_LOG_INT, "%s: exception: %d (%s)\n",
|
||
__func__,
|
||
exception,
|
||
loongarch_exception_name(exception));
|
||
@@ -159,22 +171,16 @@ static void loongarch_cpu_do_interrupt(CPUState *cs)
|
||
CPULoongArchState *env = &cpu->env;
|
||
bool update_badinstr = 1;
|
||
int cause = -1;
|
||
- const char *name;
|
||
bool tlbfill = FIELD_EX64(env->CSR_TLBRERA, CSR_TLBRERA, ISTLBR);
|
||
uint32_t vec_size = FIELD_EX64(env->CSR_ECFG, CSR_ECFG, VS);
|
||
|
||
if (cs->exception_index != EXCCODE_INT) {
|
||
- if (cs->exception_index < 0 ||
|
||
- cs->exception_index >= ARRAY_SIZE(excp_names)) {
|
||
- name = "unknown";
|
||
- } else {
|
||
- name = excp_names[cs->exception_index];
|
||
- }
|
||
-
|
||
qemu_log_mask(CPU_LOG_INT,
|
||
"%s enter: pc " TARGET_FMT_lx " ERA " TARGET_FMT_lx
|
||
- " TLBRERA " TARGET_FMT_lx " %s exception\n", __func__,
|
||
- env->pc, env->CSR_ERA, env->CSR_TLBRERA, name);
|
||
+ " TLBRERA " TARGET_FMT_lx " exception: %d (%s)\n",
|
||
+ __func__, env->pc, env->CSR_ERA, env->CSR_TLBRERA,
|
||
+ cs->exception_index,
|
||
+ loongarch_exception_name(cs->exception_index));
|
||
}
|
||
|
||
switch (cs->exception_index) {
|
||
--
|
||
2.33.0
|
||
|