* [Qemu-devel] [PATCH v3] target-tricore: pretty-print register dump and show more status registers
@ 2014-12-19 11:34 Alex Zuepke
2014-12-19 18:59 ` Bastian Koppelmann
0 siblings, 1 reply; 2+ messages in thread
From: Alex Zuepke @ 2014-12-19 11:34 UTC (permalink / raw)
To: qemu-devel; +Cc: kbastian, Alex Zuepke
Now using psw_read() to retrieve the status bits correctly.
Signed-off-by: Alex Zuepke <alexander.zuepke@hs-rm.de>
---
target-tricore/translate.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/target-tricore/translate.c b/target-tricore/translate.c
index e3eeedb..3d87346 100644
--- a/target-tricore/translate.c
+++ b/target-tricore/translate.c
@@ -85,22 +85,31 @@ void tricore_cpu_dump_state(CPUState *cs, FILE *f,
{
TriCoreCPU *cpu = TRICORE_CPU(cs);
CPUTriCoreState *env = &cpu->env;
+ uint32_t psw;
int i;
- cpu_fprintf(f, "PC=%08x\n", env->PC);
+ psw = psw_read(env);
+
+ cpu_fprintf(f, "PC: " TARGET_FMT_lx, env->PC);
+ cpu_fprintf(f, " PSW: " TARGET_FMT_lx, psw);
+ cpu_fprintf(f, " ICR: " TARGET_FMT_lx, env->ICR);
+ cpu_fprintf(f, "\nPCXI: " TARGET_FMT_lx, env->PCXI);
+ cpu_fprintf(f, " FCX: " TARGET_FMT_lx, env->FCX);
+ cpu_fprintf(f, " LCX: " TARGET_FMT_lx, env->LCX);
+
for (i = 0; i < 16; ++i) {
if ((i & 3) == 0) {
- cpu_fprintf(f, "GPR A%02d:", i);
+ cpu_fprintf(f, "\nGPR A%02d:", i);
}
- cpu_fprintf(f, " %s " TARGET_FMT_lx, regnames_a[i], env->gpr_a[i]);
+ cpu_fprintf(f, " " TARGET_FMT_lx, env->gpr_a[i]);
}
for (i = 0; i < 16; ++i) {
if ((i & 3) == 0) {
- cpu_fprintf(f, "GPR D%02d:", i);
+ cpu_fprintf(f, "\nGPR D%02d:", i);
}
- cpu_fprintf(f, " %s " TARGET_FMT_lx, regnames_d[i], env->gpr_d[i]);
+ cpu_fprintf(f, " " TARGET_FMT_lx, env->gpr_d[i]);
}
-
+ cpu_fprintf(f, "\n");
}
/*
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH v3] target-tricore: pretty-print register dump and show more status registers
2014-12-19 11:34 [Qemu-devel] [PATCH v3] target-tricore: pretty-print register dump and show more status registers Alex Zuepke
@ 2014-12-19 18:59 ` Bastian Koppelmann
0 siblings, 0 replies; 2+ messages in thread
From: Bastian Koppelmann @ 2014-12-19 18:59 UTC (permalink / raw)
To: Alex Zuepke, qemu-devel
On 12/19/2014 11:34 AM, Alex Zuepke wrote:
> Now using psw_read() to retrieve the status bits correctly.
>
> Signed-off-by: Alex Zuepke <alexander.zuepke@hs-rm.de>
> ---
> target-tricore/translate.c | 21 +++++++++++++++------
> 1 file changed, 15 insertions(+), 6 deletions(-)
>
> diff --git a/target-tricore/translate.c b/target-tricore/translate.c
> index e3eeedb..3d87346 100644
> --- a/target-tricore/translate.c
> +++ b/target-tricore/translate.c
> @@ -85,22 +85,31 @@ void tricore_cpu_dump_state(CPUState *cs, FILE *f,
> {
> TriCoreCPU *cpu = TRICORE_CPU(cs);
> CPUTriCoreState *env = &cpu->env;
> + uint32_t psw;
> int i;
>
> - cpu_fprintf(f, "PC=%08x\n", env->PC);
> + psw = psw_read(env);
> +
> + cpu_fprintf(f, "PC: " TARGET_FMT_lx, env->PC);
> + cpu_fprintf(f, " PSW: " TARGET_FMT_lx, psw);
> + cpu_fprintf(f, " ICR: " TARGET_FMT_lx, env->ICR);
> + cpu_fprintf(f, "\nPCXI: " TARGET_FMT_lx, env->PCXI);
> + cpu_fprintf(f, " FCX: " TARGET_FMT_lx, env->FCX);
> + cpu_fprintf(f, " LCX: " TARGET_FMT_lx, env->LCX);
> +
> for (i = 0; i < 16; ++i) {
> if ((i & 3) == 0) {
> - cpu_fprintf(f, "GPR A%02d:", i);
> + cpu_fprintf(f, "\nGPR A%02d:", i);
> }
> - cpu_fprintf(f, " %s " TARGET_FMT_lx, regnames_a[i], env->gpr_a[i]);
> + cpu_fprintf(f, " " TARGET_FMT_lx, env->gpr_a[i]);
> }
> for (i = 0; i < 16; ++i) {
> if ((i & 3) == 0) {
> - cpu_fprintf(f, "GPR D%02d:", i);
> + cpu_fprintf(f, "\nGPR D%02d:", i);
> }
> - cpu_fprintf(f, " %s " TARGET_FMT_lx, regnames_d[i], env->gpr_d[i]);
> + cpu_fprintf(f, " " TARGET_FMT_lx, env->gpr_d[i]);
> }
> -
> + cpu_fprintf(f, "\n");
> }
>
> /*
Hi Alex,
thanks for the patch. Please, whenever you send a new version of a
patch, send the complete series again even if you only changed one patch.
Other than that,
Reviewed-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
and applied all the patches to tricore-next.
Cheers,
Bastian
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-12-19 17:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-19 11:34 [Qemu-devel] [PATCH v3] target-tricore: pretty-print register dump and show more status registers Alex Zuepke
2014-12-19 18:59 ` Bastian Koppelmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).