diff mbox series

[v2,09/29] tcg: Manually expand INDEX_op_dup_vec

Message ID 20190501050536.15580-10-richard.henderson@linaro.org
State Superseded
Headers show
Series tcg vector improvements | expand

Commit Message

Richard Henderson May 1, 2019, 5:05 a.m. UTC
This case is similar to INDEX_op_mov_* in that we need to do
different things depending on the current location of the source.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

---
 tcg/aarch64/tcg-target.inc.c |   9 ++--
 tcg/i386/tcg-target.inc.c    |   8 ++-
 tcg/tcg.c                    | 102 +++++++++++++++++++++++++++++++++++
 3 files changed, 109 insertions(+), 10 deletions(-)

-- 
2.17.1

Comments

Alex Bennée May 2, 2019, 9:42 a.m. UTC | #1
Richard Henderson <richard.henderson@linaro.org> writes:

> This case is similar to INDEX_op_mov_* in that we need to do

> different things depending on the current location of the source.

>

> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

> ---

<snip>
>

> +static void tcg_reg_alloc_dup(TCGContext *s, const TCGOp *op)

> +{

> +    const TCGLifeData arg_life = op->life;

> +    TCGRegSet dup_out_regs, dup_in_regs;

> +    TCGTemp *its, *ots;

> +    TCGType itype, vtype;

> +    unsigned vece;

> +    bool ok;

> +

> +    ots = arg_temp(op->args[0]);

> +    its = arg_temp(op->args[1]);

> +

> +    /* There should be no fixed vector registers.  */

> +    tcg_debug_assert(!ots->fixed_reg);


This threw me slightly. I guess you only really duplicate vectors so I'm
wondering if this should be called tcg_vec_reg_alloc_dup? Or maybe just
a bit of verbiage in a block comment above the helper?

> +

> +    itype = its->type;

> +    vece = TCGOP_VECE(op);

> +    vtype = TCGOP_VECL(op) + TCG_TYPE_V64;

> +

> +    if (its->val_type == TEMP_VAL_CONST) {

> +        /* Propagate constant via movi -> dupi.  */

> +        tcg_target_ulong val = its->val;

> +        if (IS_DEAD_ARG(1)) {

> +            temp_dead(s, its);

> +        }

> +        tcg_reg_alloc_do_movi(s, ots, val, arg_life, op->output_pref[0]);

> +        return;

> +    }

> +

> +    dup_out_regs = tcg_op_defs[INDEX_op_dup_vec].args_ct[0].u.regs;

> +    dup_in_regs = tcg_op_defs[INDEX_op_dup_vec].args_ct[1].u.regs;

> +

> +    /* Allocate the output register now.  */

> +    if (ots->val_type != TEMP_VAL_REG) {

> +        TCGRegSet allocated_regs = s->reserved_regs;

> +

> +        if (!IS_DEAD_ARG(1) && its->val_type == TEMP_VAL_REG) {

> +            /* Make sure to not spill the input register. */

> +            tcg_regset_set_reg(allocated_regs, its->reg);

> +        }

> +        ots->reg = tcg_reg_alloc(s, dup_out_regs, allocated_regs,

> +                                 op->output_pref[0], ots->indirect_base);

> +        ots->val_type = TEMP_VAL_REG;

> +        ots->mem_coherent = 0;

> +        s->reg_to_temp[ots->reg] = ots;

> +    }

> +

> +    switch (its->val_type) {

> +    case TEMP_VAL_REG:

> +        /*

> +         * The dup constriaints must be broad, covering all possible VECE.

> +         * However, tcg_op_dup_vec() gets to see the VECE and we allow it

> +         * to fail, indicating that extra moves are required for that case.

> +         */

> +        if (tcg_regset_test_reg(dup_in_regs, its->reg)) {

> +            if (tcg_out_dup_vec(s, vtype, vece, ots->reg, its->reg)) {

> +                goto done;

> +            }

> +            /* Try again from memory or a vector input register.  */

> +        }

> +        if (!its->mem_coherent) {

> +            /*

> +             * The input register is not synced, and so an extra store

> +             * would be required to use memory.  Attempt an integer-vector

> +             * register move first.  We do not have a TCGRegSet for this.

> +             */

> +            if (tcg_out_mov(s, itype, ots->reg, its->reg)) {

> +                break;

> +            }

> +            /* Sync the temp back to its slot and load from there.  */

> +            temp_sync(s, its, s->reserved_regs, 0, 0);

> +        }

> +        /* fall through */

> +

> +    case TEMP_VAL_MEM:

> +        /* TODO: dup from memory */

> +        tcg_out_ld(s, itype, ots->reg, its->mem_base->reg,

> its->mem_offset);


Should we be aborting here? That said it looks like you are loading
something directly from the register memory address here...

> +        break;

> +

> +    default:

> +        g_assert_not_reached();

> +    }

> +

> +    /* We now have a vector input register, so dup must succeed. */

> +    ok = tcg_out_dup_vec(s, vtype, vece, ots->reg, ots->reg);

> +    tcg_debug_assert(ok);

> +

> + done:

> +    if (IS_DEAD_ARG(1)) {

> +        temp_dead(s, its);

> +    }

> +    if (NEED_SYNC_ARG(0)) {

> +        temp_sync(s, ots, s->reserved_regs, 0, 0);

> +    }

> +    if (IS_DEAD_ARG(0)) {

> +        temp_dead(s, ots);

> +    }

> +}

> +

>  static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)

>  {

>      const TCGLifeData arg_life = op->life;

> @@ -3981,6 +4080,9 @@ int tcg_gen_code(TCGContext *s, TranslationBlock *tb)

>          case INDEX_op_dupi_vec:

>              tcg_reg_alloc_movi(s, op);

>              break;

> +        case INDEX_op_dup_vec:

> +            tcg_reg_alloc_dup(s, op);

> +            break;

>          case INDEX_op_insn_start:

>              if (num_insns >= 0) {

>                  size_t off = tcg_current_code_size(s);



--
Alex Bennée
Richard Henderson May 2, 2019, 3:24 p.m. UTC | #2
On 5/2/19 2:42 AM, Alex Bennée wrote:
>> +static void tcg_reg_alloc_dup(TCGContext *s, const TCGOp *op)

>> +{

>> +    const TCGLifeData arg_life = op->life;

>> +    TCGRegSet dup_out_regs, dup_in_regs;

>> +    TCGTemp *its, *ots;

>> +    TCGType itype, vtype;

>> +    unsigned vece;

>> +    bool ok;

>> +

>> +    ots = arg_temp(op->args[0]);

>> +    its = arg_temp(op->args[1]);

>> +

>> +    /* There should be no fixed vector registers.  */

>> +    tcg_debug_assert(!ots->fixed_reg);

> 

> This threw me slightly. I guess you only really duplicate vectors so I'm

> wondering if this should be called tcg_vec_reg_alloc_dup? Or maybe just

> a bit of verbiage in a block comment above the helper?


Perhaps just a bit more verbiage.

The convention so far is "tcg_reg_alloc_<opcode>", where so far mov, movi, and
call have specialized allocators.  Everything else happens in tcg_reg_alloc_op.
 So tcg_reg_alloc_dup is correct for handling dup.


>> +    case TEMP_VAL_MEM:

>> +        /* TODO: dup from memory */

>> +        tcg_out_ld(s, itype, ots->reg, its->mem_base->reg,

>> its->mem_offset);

> 

> Should we be aborting here? That said it looks like you are loading

> something directly from the register memory address here...


No, we should not abort.  We load the scalar value into a register that we have
allocated that matches the input constraint for dup.  We then fall through...

> 

>> +        break;

>> +

>> +    default:

>> +        g_assert_not_reached();

>> +    }

>> +

>> +    /* We now have a vector input register, so dup must succeed. */

>> +    ok = tcg_out_dup_vec(s, vtype, vece, ots->reg, ots->reg);

>> +    tcg_debug_assert(ok);


... to here, where we duplicate the scalar across the vector.
Success.

The TODO comment is about duplicating directly from the memory slot, with a new
dupm primitive, which appears in the next patch.


r~
diff mbox series

Patch

diff --git a/tcg/aarch64/tcg-target.inc.c b/tcg/aarch64/tcg-target.inc.c
index e443b5df23..3cefdd1e43 100644
--- a/tcg/aarch64/tcg-target.inc.c
+++ b/tcg/aarch64/tcg-target.inc.c
@@ -2108,10 +2108,8 @@  static void tcg_out_op(TCGContext *s, TCGOpcode opc,
 
     case INDEX_op_mov_i32:  /* Always emitted via tcg_out_mov.  */
     case INDEX_op_mov_i64:
-    case INDEX_op_mov_vec:
     case INDEX_op_movi_i32: /* Always emitted via tcg_out_movi.  */
     case INDEX_op_movi_i64:
-    case INDEX_op_dupi_vec:
     case INDEX_op_call:     /* Always emitted via tcg_out_call.  */
     default:
         g_assert_not_reached();
@@ -2208,9 +2206,6 @@  static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc,
     case INDEX_op_not_vec:
         tcg_out_insn(s, 3617, NOT, is_q, 0, a0, a1);
         break;
-    case INDEX_op_dup_vec:
-        tcg_out_dup_vec(s, type, vece, a0, a1);
-        break;
     case INDEX_op_shli_vec:
         tcg_out_insn(s, 3614, SHL, is_q, a0, a1, a2 + (8 << vece));
         break;
@@ -2254,6 +2249,10 @@  static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc,
             }
         }
         break;
+
+    case INDEX_op_mov_vec:  /* Always emitted via tcg_out_mov.  */
+    case INDEX_op_dupi_vec: /* Always emitted via tcg_out_movi.  */
+    case INDEX_op_dup_vec:  /* Always emitted via tcg_out_dup_vec.  */
     default:
         g_assert_not_reached();
     }
diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c
index 0d621670c7..3c8229d413 100644
--- a/tcg/i386/tcg-target.inc.c
+++ b/tcg/i386/tcg-target.inc.c
@@ -2603,10 +2603,8 @@  static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
         break;
     case INDEX_op_mov_i32:  /* Always emitted via tcg_out_mov.  */
     case INDEX_op_mov_i64:
-    case INDEX_op_mov_vec:
     case INDEX_op_movi_i32: /* Always emitted via tcg_out_movi.  */
     case INDEX_op_movi_i64:
-    case INDEX_op_dupi_vec:
     case INDEX_op_call:     /* Always emitted via tcg_out_call.  */
     default:
         tcg_abort();
@@ -2795,9 +2793,6 @@  static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc,
     case INDEX_op_st_vec:
         tcg_out_st(s, type, a0, a1, a2);
         break;
-    case INDEX_op_dup_vec:
-        tcg_out_dup_vec(s, type, vece, a0, a1);
-        break;
 
     case INDEX_op_x86_shufps_vec:
         insn = OPC_SHUFPS;
@@ -2839,6 +2834,9 @@  static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc,
         tcg_out8(s, a2);
         break;
 
+    case INDEX_op_mov_vec:  /* Always emitted via tcg_out_mov.  */
+    case INDEX_op_dupi_vec: /* Always emitted via tcg_out_movi.  */
+    case INDEX_op_dup_vec:  /* Always emitted via tcg_out_dup_vec.  */
     default:
         g_assert_not_reached();
     }
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 3ef4d3478d..78fd0e4594 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -3407,6 +3407,105 @@  static void tcg_reg_alloc_mov(TCGContext *s, const TCGOp *op)
     }
 }
 
+static void tcg_reg_alloc_dup(TCGContext *s, const TCGOp *op)
+{
+    const TCGLifeData arg_life = op->life;
+    TCGRegSet dup_out_regs, dup_in_regs;
+    TCGTemp *its, *ots;
+    TCGType itype, vtype;
+    unsigned vece;
+    bool ok;
+
+    ots = arg_temp(op->args[0]);
+    its = arg_temp(op->args[1]);
+
+    /* There should be no fixed vector registers.  */
+    tcg_debug_assert(!ots->fixed_reg);
+
+    itype = its->type;
+    vece = TCGOP_VECE(op);
+    vtype = TCGOP_VECL(op) + TCG_TYPE_V64;
+
+    if (its->val_type == TEMP_VAL_CONST) {
+        /* Propagate constant via movi -> dupi.  */
+        tcg_target_ulong val = its->val;
+        if (IS_DEAD_ARG(1)) {
+            temp_dead(s, its);
+        }
+        tcg_reg_alloc_do_movi(s, ots, val, arg_life, op->output_pref[0]);
+        return;
+    }
+
+    dup_out_regs = tcg_op_defs[INDEX_op_dup_vec].args_ct[0].u.regs;
+    dup_in_regs = tcg_op_defs[INDEX_op_dup_vec].args_ct[1].u.regs;
+
+    /* Allocate the output register now.  */
+    if (ots->val_type != TEMP_VAL_REG) {
+        TCGRegSet allocated_regs = s->reserved_regs;
+
+        if (!IS_DEAD_ARG(1) && its->val_type == TEMP_VAL_REG) {
+            /* Make sure to not spill the input register. */
+            tcg_regset_set_reg(allocated_regs, its->reg);
+        }
+        ots->reg = tcg_reg_alloc(s, dup_out_regs, allocated_regs,
+                                 op->output_pref[0], ots->indirect_base);
+        ots->val_type = TEMP_VAL_REG;
+        ots->mem_coherent = 0;
+        s->reg_to_temp[ots->reg] = ots;
+    }
+
+    switch (its->val_type) {
+    case TEMP_VAL_REG:
+        /*
+         * The dup constriaints must be broad, covering all possible VECE.
+         * However, tcg_op_dup_vec() gets to see the VECE and we allow it
+         * to fail, indicating that extra moves are required for that case.
+         */
+        if (tcg_regset_test_reg(dup_in_regs, its->reg)) {
+            if (tcg_out_dup_vec(s, vtype, vece, ots->reg, its->reg)) {
+                goto done;
+            }
+            /* Try again from memory or a vector input register.  */
+        }
+        if (!its->mem_coherent) {
+            /*
+             * The input register is not synced, and so an extra store
+             * would be required to use memory.  Attempt an integer-vector
+             * register move first.  We do not have a TCGRegSet for this.
+             */
+            if (tcg_out_mov(s, itype, ots->reg, its->reg)) {
+                break;
+            }
+            /* Sync the temp back to its slot and load from there.  */
+            temp_sync(s, its, s->reserved_regs, 0, 0);
+        }
+        /* fall through */
+
+    case TEMP_VAL_MEM:
+        /* TODO: dup from memory */
+        tcg_out_ld(s, itype, ots->reg, its->mem_base->reg, its->mem_offset);
+        break;
+
+    default:
+        g_assert_not_reached();
+    }
+
+    /* We now have a vector input register, so dup must succeed. */
+    ok = tcg_out_dup_vec(s, vtype, vece, ots->reg, ots->reg);
+    tcg_debug_assert(ok);
+
+ done:
+    if (IS_DEAD_ARG(1)) {
+        temp_dead(s, its);
+    }
+    if (NEED_SYNC_ARG(0)) {
+        temp_sync(s, ots, s->reserved_regs, 0, 0);
+    }
+    if (IS_DEAD_ARG(0)) {
+        temp_dead(s, ots);
+    }
+}
+
 static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
 {
     const TCGLifeData arg_life = op->life;
@@ -3981,6 +4080,9 @@  int tcg_gen_code(TCGContext *s, TranslationBlock *tb)
         case INDEX_op_dupi_vec:
             tcg_reg_alloc_movi(s, op);
             break;
+        case INDEX_op_dup_vec:
+            tcg_reg_alloc_dup(s, op);
+            break;
         case INDEX_op_insn_start:
             if (num_insns >= 0) {
                 size_t off = tcg_current_code_size(s);