From: Richard Henderson Date: Wed, 3 Apr 2024 18:05:09 +0000 (-1000) Subject: target/s390x: Disassemble EXECUTEd instructions X-Git-Tag: v9.1.0-rc0~106^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=74e98b9b6f2c914ea61938378956a177b5985773;p=thirdparty%2Fqemu.git target/s390x: Disassemble EXECUTEd instructions Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c index 95d4d6ebc35..bac033c63c3 100644 --- a/target/s390x/tcg/translate.c +++ b/target/s390x/tcg/translate.c @@ -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;