mirror of https://github.com/xemu-project/xemu.git
target/s390x: Disassemble EXECUTEd instructions
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
171ce93981
commit
74e98b9b6f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue