Re: [Qemu-devel] [PATCH 09/16] tcg: Use per-temp state data in liveness

2017-06-27 Thread Richard Henderson
On 06/27/2017 01:57 AM, Alex Bennée wrote: -/* Note this unsigned test catches TCG_CALL_ARG_DUMMY too. */ -if (arg < nb_globals) { This test is gone but -dir = dir_temps[arg]; -if (dir != 0 && temp_state[arg] == TS_DEAD) { -

Re: [Qemu-devel] [PATCH 09/16] tcg: Use per-temp state data in liveness

2017-06-27 Thread Alex Bennée
Richard Henderson writes: > This avoids having to allocate external memory for each temporary. > > Signed-off-by: Richard Henderson > --- > tcg/tcg.c | 232 > ++ > tcg/tcg.h | 6 ++ > 2 files changed, 120 insertions(+), 118 deletio

[Qemu-devel] [PATCH 09/16] tcg: Use per-temp state data in liveness

2017-06-20 Thread Richard Henderson
This avoids having to allocate external memory for each temporary. Signed-off-by: Richard Henderson --- tcg/tcg.c | 232 ++ tcg/tcg.h | 6 ++ 2 files changed, 120 insertions(+), 118 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c ind