On Fri, May 23, 2014 at 11:57:10AM -0700, Richard Henderson wrote: > No functional change, just reduce a bit of redundancy. > > Signed-off-by: Richard Henderson <r...@twiddle.net> > --- > tcg/optimize.c | 117 > +++++++++++++++++++++++++++------------------------------ > 1 file changed, 56 insertions(+), 61 deletions(-) > > diff --git a/tcg/optimize.c b/tcg/optimize.c > index 3a504a1..83e1387 100644 > --- a/tcg/optimize.c > +++ b/tcg/optimize.c > @@ -83,6 +83,20 @@ static int op_bits(TCGOpcode op) > return def->flags & TCG_OPF_64BIT ? 64 : 32; > } > > +static TCGOpcode op_to_mov(TCGOpcode op) > +{ > + switch (op_bits(op)) { > + case 32: > + return INDEX_op_mov_i32; > + case 64: > + return INDEX_op_mov_i64; > + default: > + fprintf(stderr, "op_to_mov: unexpected return value of " > + "function op_bits.\n"); > + tcg_abort(); > + } > +} > + > static TCGOpcode op_to_movi(TCGOpcode op) > { > switch (op_bits(op)) { > @@ -148,9 +162,13 @@ static bool temps_are_copies(TCGArg arg1, TCGArg arg2) > return false; > } > > -static void tcg_opt_gen_mov(TCGContext *s, TCGArg *gen_args, > - TCGArg dst, TCGArg src) > +static void tcg_opt_gen_mov(TCGContext *s, int op_index, TCGArg *gen_args, > + TCGOpcode old_op, TCGArg dst, TCGArg src) > { > + TCGOpcode new_op = op_to_mov(old_op); > + > + s->gen_opc_buf[op_index] = new_op; > + > reset_temp(dst); > temps[dst].mask = temps[src].mask; > assert(temps[src].state != TCG_TEMP_CONST); > @@ -172,8 +190,13 @@ static void tcg_opt_gen_mov(TCGContext *s, TCGArg > *gen_args, > gen_args[1] = src; > } > > -static void tcg_opt_gen_movi(TCGArg *gen_args, TCGArg dst, TCGArg val) > +static void tcg_opt_gen_movi(TCGContext *s, int op_index, TCGArg *gen_args, > + TCGOpcode old_op, TCGArg dst, TCGArg val) > { > + TCGOpcode new_op = op_to_movi(old_op); > + > + s->gen_opc_buf[op_index] = new_op; > + > reset_temp(dst); > temps[dst].state = TCG_TEMP_CONST; > temps[dst].val = val; > @@ -182,20 +205,6 @@ static void tcg_opt_gen_movi(TCGArg *gen_args, TCGArg > dst, TCGArg val) > gen_args[1] = val; > } > > -static TCGOpcode op_to_mov(TCGOpcode op) > -{ > - switch (op_bits(op)) { > - case 32: > - return INDEX_op_mov_i32; > - case 64: > - return INDEX_op_mov_i64; > - default: > - fprintf(stderr, "op_to_mov: unexpected return value of " > - "function op_bits.\n"); > - tcg_abort(); > - } > -} > - > static TCGArg do_constant_folding_2(TCGOpcode op, TCGArg x, TCGArg y) > { > uint64_t l64, h64; > @@ -619,8 +628,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > CASE_OP_32_64(rotr): > if (temps[args[1]].state == TCG_TEMP_CONST > && temps[args[1]].val == 0) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], 0); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], 0); > args += 3; > gen_args += 2; > continue; > @@ -749,8 +757,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > if (temps_are_copies(args[0], args[1])) { > s->gen_opc_buf[op_index] = INDEX_op_nop; > } else { > - s->gen_opc_buf[op_index] = op_to_mov(op); > - tcg_opt_gen_mov(s, gen_args, args[0], args[1]); > + tcg_opt_gen_mov(s, op_index, gen_args, op, args[0], args[1]); > gen_args += 2; > } > args += 3; > @@ -902,8 +909,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > > if (mask == 0) { > assert(nb_oargs == 1); > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], 0); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], 0); > args += nb_args; > gen_args += 2; > continue; > @@ -913,12 +919,11 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > if (temps_are_copies(args[0], args[1])) { > s->gen_opc_buf[op_index] = INDEX_op_nop; > } else if (temps[args[1]].state != TCG_TEMP_CONST) { > - s->gen_opc_buf[op_index] = op_to_mov(op); > - tcg_opt_gen_mov(s, gen_args, args[0], args[1]); > + tcg_opt_gen_mov(s, op_index, gen_args, op, args[0], args[1]); > gen_args += 2; > } else { > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], temps[args[1]].val); > + tcg_opt_gen_movi(s, op_index, gen_args, op, > + args[0], temps[args[1]].val); > gen_args += 2; > } > args += nb_args; > @@ -933,8 +938,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > CASE_OP_32_64(mulsh): > if ((temps[args[2]].state == TCG_TEMP_CONST > && temps[args[2]].val == 0)) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], 0); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], 0); > args += 3; > gen_args += 2; > continue; > @@ -952,8 +956,8 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > if (temps_are_copies(args[0], args[1])) { > s->gen_opc_buf[op_index] = INDEX_op_nop; > } else { > - s->gen_opc_buf[op_index] = op_to_mov(op); > - tcg_opt_gen_mov(s, gen_args, args[0], args[1]); > + tcg_opt_gen_mov(s, op_index, gen_args, op, > + args[0], args[1]); > gen_args += 2; > } > args += 3; > @@ -970,8 +974,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > CASE_OP_32_64(sub): > CASE_OP_32_64(xor): > if (temps_are_copies(args[1], args[2])) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], 0); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], 0); > gen_args += 2; > args += 3; > continue; > @@ -992,19 +995,17 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > break; > } > if (temps[args[1]].state != TCG_TEMP_CONST) { > - tcg_opt_gen_mov(s, gen_args, args[0], args[1]); > + tcg_opt_gen_mov(s, op_index, gen_args, op, args[0], args[1]); > gen_args += 2; > args += 2; > break; > } > /* Source argument is constant. Rewrite the operation and > let movi case handle it. */ > - op = op_to_movi(op); > - s->gen_opc_buf[op_index] = op; > args[1] = temps[args[1]].val; > /* fallthrough */ > CASE_OP_32_64(movi): > - tcg_opt_gen_movi(gen_args, args[0], args[1]); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], args[1]); > gen_args += 2; > args += 2; > break; > @@ -1018,9 +1019,8 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > case INDEX_op_ext32s_i64: > case INDEX_op_ext32u_i64: > if (temps[args[1]].state == TCG_TEMP_CONST) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > tmp = do_constant_folding(op, temps[args[1]].val, 0); > - tcg_opt_gen_movi(gen_args, args[0], tmp); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], tmp); > gen_args += 2; > args += 2; > break; > @@ -1029,9 +1029,8 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > > case INDEX_op_trunc_shr_i32: > if (temps[args[1]].state == TCG_TEMP_CONST) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > tmp = do_constant_folding(op, temps[args[1]].val, args[2]); > - tcg_opt_gen_movi(gen_args, args[0], tmp); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], tmp); > gen_args += 2; > args += 3; > break; > @@ -1062,10 +1061,9 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > CASE_OP_32_64(remu): > if (temps[args[1]].state == TCG_TEMP_CONST > && temps[args[2]].state == TCG_TEMP_CONST) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > tmp = do_constant_folding(op, temps[args[1]].val, > temps[args[2]].val); > - tcg_opt_gen_movi(gen_args, args[0], tmp); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], tmp); > gen_args += 2; > args += 3; > break; > @@ -1075,10 +1073,9 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > CASE_OP_32_64(deposit): > if (temps[args[1]].state == TCG_TEMP_CONST > && temps[args[2]].state == TCG_TEMP_CONST) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > tmp = deposit64(temps[args[1]].val, args[3], args[4], > temps[args[2]].val); > - tcg_opt_gen_movi(gen_args, args[0], tmp); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], tmp); > gen_args += 2; > args += 5; > break; > @@ -1088,8 +1085,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > CASE_OP_32_64(setcond): > tmp = do_constant_folding_cond(op, args[1], args[2], args[3]); > if (tmp != 2) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], tmp); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], tmp); > gen_args += 2; > args += 4; > break; > @@ -1118,12 +1114,12 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > if (temps_are_copies(args[0], args[4-tmp])) { > s->gen_opc_buf[op_index] = INDEX_op_nop; > } else if (temps[args[4-tmp]].state == TCG_TEMP_CONST) { > - s->gen_opc_buf[op_index] = op_to_movi(op); > - tcg_opt_gen_movi(gen_args, args[0], > temps[args[4-tmp]].val); > + tcg_opt_gen_movi(s, op_index, gen_args, op, > + args[0], temps[args[4-tmp]].val); > gen_args += 2; > } else { > - s->gen_opc_buf[op_index] = op_to_mov(op); > - tcg_opt_gen_mov(s, gen_args, args[0], args[4-tmp]); > + tcg_opt_gen_mov(s, op_index, gen_args, op, > + args[0], args[4-tmp]); > gen_args += 2; > } > args += 6; > @@ -1156,10 +1152,10 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > > rl = args[0]; > rh = args[1]; > - s->gen_opc_buf[op_index] = INDEX_op_movi_i32; > - s->gen_opc_buf[++op_index] = INDEX_op_movi_i32; > - tcg_opt_gen_movi(&gen_args[0], rl, (uint32_t)a); > - tcg_opt_gen_movi(&gen_args[2], rh, (uint32_t)(a >> 32)); > + tcg_opt_gen_movi(s, op_index, &gen_args[0], > + op, rl, (uint32_t)a); > + tcg_opt_gen_movi(s, ++op_index, &gen_args[2], > + op, rh, (uint32_t)(a >> 32)); > gen_args += 4; > args += 6; > break; > @@ -1179,10 +1175,10 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > > rl = args[0]; > rh = args[1]; > - s->gen_opc_buf[op_index] = INDEX_op_movi_i32; > - s->gen_opc_buf[++op_index] = INDEX_op_movi_i32; > - tcg_opt_gen_movi(&gen_args[0], rl, (uint32_t)r); > - tcg_opt_gen_movi(&gen_args[2], rh, (uint32_t)(r >> 32)); > + tcg_opt_gen_movi(s, op_index, &gen_args[0], > + op, rl, (uint32_t)r); > + tcg_opt_gen_movi(s, ++op_index, &gen_args[2], > + op, rh, (uint32_t)(r >> 32)); > gen_args += 4; > args += 4; > break; > @@ -1223,8 +1219,7 @@ static TCGArg *tcg_constant_folding(TCGContext *s, > uint16_t *tcg_opc_ptr, > case INDEX_op_setcond2_i32: > tmp = do_constant_folding_cond2(&args[1], &args[3], args[5]); > if (tmp != 2) { > - s->gen_opc_buf[op_index] = INDEX_op_movi_i32; > - tcg_opt_gen_movi(gen_args, args[0], tmp); > + tcg_opt_gen_movi(s, op_index, gen_args, op, args[0], tmp); > gen_args += 2; > } else if ((args[5] == TCG_COND_LT || args[5] == TCG_COND_GE) > && temps[args[3]].state == TCG_TEMP_CONST
Nice cleanup. Reviewed-by: Aurelien Jarno <aurel...@aurel32.net> -- Aurelien Jarno GPG: 4096R/1DDD8C9B aurel...@aurel32.net http://www.aurel32.net