diff options
author | Andreas Färber <afaerber@suse.de> | 2013-06-16 07:49:48 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-07-09 21:33:04 +0200 |
commit | 91b1df8cf9e1ecaa8679c9ea8713d1e25c28e6c4 (patch) | |
tree | a90bbd5d2d2d8a226cbd50c669c304745b6bd8a6 /qom | |
parent | 77710e7aec1e5ae0195cf6ebae6864e3ccb5693a (diff) | |
download | qemu-91b1df8cf9e1ecaa8679c9ea8713d1e25c28e6c4.tar.gz qemu-91b1df8cf9e1ecaa8679c9ea8713d1e25c28e6c4.tar.bz2 qemu-91b1df8cf9e1ecaa8679c9ea8713d1e25c28e6c4.zip |
cpu: Move reset logging to CPUState
x86 was using additional CPU_DUMP_* flags, so make that configurable in
CPUClass::reset_dump_flags.
This adds reset logging for alpha, unicore32 and xtensa.
Acked-by: Michael Walle <michael@walle.cc> (for lm32)
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'qom')
-rw-r--r-- | qom/cpu.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -22,6 +22,7 @@ #include "qom/cpu.h" #include "sysemu/kvm.h" #include "qemu/notify.h" +#include "qemu/log.h" #include "sysemu/sysemu.h" typedef struct CPUExistsArgs { @@ -187,6 +188,13 @@ void cpu_reset(CPUState *cpu) static void cpu_common_reset(CPUState *cpu) { + CPUClass *cc = CPU_GET_CLASS(cpu); + + if (qemu_loglevel_mask(CPU_LOG_RESET)) { + qemu_log("CPU Reset (CPU %d)\n", cpu->cpu_index); + log_cpu_state(cpu, cc->reset_dump_flags); + } + cpu->exit_request = 0; cpu->interrupt_request = 0; cpu->current_tb = NULL; |