Re: [RFC PATCH] translate-all: include guest address in out_asm output

2020-04-24 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200424173914.2957-1-alex.ben...@linaro.org/ Hi, This series failed the docker-mingw@fedora build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN =

Re: [RFC PATCH] translate-all: include guest address in out_asm output

2020-04-24 Thread Richard Henderson
On 4/24/20 10:39 AM, Alex Bennée wrote: > +/* first dump prologue */ > +insn_start = tcg_ctx->gen_insn_end_off[0]; > +if (insn_start > 0) { > +qemu_log(" prologue: [size=%ld]\n", insn_start); > +log_disas(tb->tc.ptr, insn_start); > +} > + > +

[RFC PATCH] translate-all: include guest address in out_asm output

2020-04-24 Thread Alex Bennée
This is a slightly hackish Friday afternoon attempt to include the guest address in our out_asm output in an effort to make it a little easier to see what is generating what final assembly. Signed-off-by: Alex Bennée --- accel/tcg/translate-all.c | 38 -- 1 fi