Re: [Qemu-devel] [PATCH v2 10/14] tcg: Introduce temp_load

2016-01-15 Thread Richard Henderson
On 12/31/2015 03:33 AM, Aurelien Jarno wrote: >> -if (ts->val_type == TEMP_VAL_REG) { >> -tcg_out_st(s, ts->type, ts->reg, TCG_REG_CALL_STACK, >> stack_offset); >> -} else if (ts->val_type == TEMP_VAL_MEM) { >> -reg = tcg_reg_alloc(s, tcg_tar

Re: [Qemu-devel] [PATCH v2 10/14] tcg: Introduce temp_load

2015-12-31 Thread Aurelien Jarno
On 2015-12-17 12:00, Richard Henderson wrote: > Unify all of the places that realize a temporary into a register. > > Signed-off-by: Richard Henderson > --- > tcg/tcg.c | 116 > -- > 1 file changed, 52 insertions(+), 64 deletions(-) >

[Qemu-devel] [PATCH v2 10/14] tcg: Introduce temp_load

2015-12-17 Thread Richard Henderson
Unify all of the places that realize a temporary into a register. Signed-off-by: Richard Henderson --- tcg/tcg.c | 116 -- 1 file changed, 52 insertions(+), 64 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index 6f40bf3..c51e0ec 1006