target/s390x: Disassemble EXECUTEd instructions

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
master
Richard Henderson 2024-04-03 08:05:09 -10:00
parent 171ce93981
commit 74e98b9b6f
1 changed files with 3 additions and 2 deletions

View File

@ -6525,8 +6525,9 @@ static bool s390x_tr_disas_log(const DisasContextBase *dcbase,
DisasContext *dc = container_of(dcbase, DisasContext, base);
if (unlikely(dc->ex_value)) {
/* ??? Unfortunately target_disas can't use host memory. */
fprintf(logfile, "IN: EXECUTE %016" PRIx64, dc->ex_value);
/* The ex_value has been recorded with translator_fake_ld. */
fprintf(logfile, "IN: EXECUTE\n");
target_disas(logfile, cs, &dc->base);
return true;
}
return false;