aboutsummaryrefslogtreecommitdiff
path: root/accel
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-06-30 08:31:46 -0700
committerRichard Henderson <richard.henderson@linaro.org>2021-07-09 20:23:35 -0700
commit7eabad361979bbf76dff4d91bc7af35e309c8c26 (patch)
tree4254543e251e6e8b6f91807bbfbed0fbbdfd9ad4 /accel
parentabb0cd9349453d6a45af2ab9317e8f08408485f4 (diff)
downloadqemu-7eabad361979bbf76dff4d91bc7af35e309c8c26.zip
qemu-7eabad361979bbf76dff4d91bc7af35e309c8c26.tar.gz
qemu-7eabad361979bbf76dff4d91bc7af35e309c8c26.tar.bz2
accel/tcg: Log tb->cflags with -d exec
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r--accel/tcg/cpu-exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c
index 67ed25b..e22bcb9 100644
--- a/accel/tcg/cpu-exec.c
+++ b/accel/tcg/cpu-exec.c
@@ -183,9 +183,9 @@ static inline void log_cpu_exec(target_ulong pc, CPUState *cpu,
qemu_log_mask(CPU_LOG_EXEC,
"Trace %d: %p [" TARGET_FMT_lx
- "/" TARGET_FMT_lx "/%#x] %s\n",
- cpu->cpu_index, tb->tc.ptr, tb->cs_base, pc, tb->flags,
- lookup_symbol(pc));
+ "/" TARGET_FMT_lx "/%08x/%08x] %s\n",
+ cpu->cpu_index, tb->tc.ptr, tb->cs_base, pc,
+ tb->flags, tb->cflags, lookup_symbol(pc));
#if defined(DEBUG_DISAS)
if (qemu_loglevel_mask(CPU_LOG_TB_CPU)) {