All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Richard Henderson <rth@twiddle.net>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v4 21/64] tcg: Transition flat op_defs array to a target callback
Date: Tue, 06 Dec 2016 16:38:33 +0000	[thread overview]
Message-ID: <87eg1lypva.fsf@linaro.org> (raw)
In-Reply-To: <1479906121-12211-22-git-send-email-rth@twiddle.net>


Richard Henderson <rth@twiddle.net> writes:

> This will allow the target to tailor the constraints to the
> auto-detected ISA extensions.

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

>
> Signed-off-by: Richard Henderson <rth@twiddle.net>
> ---
>  tcg/aarch64/tcg-target.inc.c | 14 ++++++--
>  tcg/arm/tcg-target.inc.c     | 14 ++++++--
>  tcg/i386/tcg-target.inc.c    | 14 ++++++--
>  tcg/ia64/tcg-target.inc.c    | 14 ++++++--
>  tcg/mips/tcg-target.inc.c    | 14 ++++++--
>  tcg/ppc/tcg-target.inc.c     | 14 ++++++--
>  tcg/s390/tcg-target.inc.c    | 14 ++++++--
>  tcg/sparc/tcg-target.inc.c   | 14 ++++++--
>  tcg/tcg.c                    | 86 +++++++++++++++-----------------------------
>  tcg/tcg.h                    |  2 --
>  tcg/tci/tcg-target.inc.c     | 13 ++++++-
>  11 files changed, 136 insertions(+), 77 deletions(-)
>
> diff --git a/tcg/aarch64/tcg-target.inc.c b/tcg/aarch64/tcg-target.inc.c
> index c0e9890..416db45 100644
> --- a/tcg/aarch64/tcg-target.inc.c
> +++ b/tcg/aarch64/tcg-target.inc.c
> @@ -1812,6 +1812,18 @@ static const TCGTargetOpDef aarch64_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(aarch64_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (aarch64_op_defs[i].op == op) {
> +            return &aarch64_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static void tcg_target_init(TCGContext *s)
>  {
>      tcg_regset_set32(tcg_target_available_regs[TCG_TYPE_I32], 0, 0xffffffff);
> @@ -1834,8 +1846,6 @@ static void tcg_target_init(TCGContext *s)
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_FP);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_X18); /* platform register */
> -
> -    tcg_add_target_add_op_defs(aarch64_op_defs);
>  }
>
>  /* Saving pairs: (X19, X20) .. (X27, X28), (X29(fp), X30(lr)).  */
> diff --git a/tcg/arm/tcg-target.inc.c b/tcg/arm/tcg-target.inc.c
> index 6765a9d..4500ca7 100644
> --- a/tcg/arm/tcg-target.inc.c
> +++ b/tcg/arm/tcg-target.inc.c
> @@ -2006,6 +2006,18 @@ static const TCGTargetOpDef arm_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(arm_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (arm_op_defs[i].op == op) {
> +            return &arm_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static void tcg_target_init(TCGContext *s)
>  {
>      /* Only probe for the platform and capabilities if we havn't already
> @@ -2036,8 +2048,6 @@ static void tcg_target_init(TCGContext *s)
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_PC);
> -
> -    tcg_add_target_add_op_defs(arm_op_defs);
>  }
>
>  static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
> diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c
> index 39f62bd..595c399 100644
> --- a/tcg/i386/tcg-target.inc.c
> +++ b/tcg/i386/tcg-target.inc.c
> @@ -2330,6 +2330,18 @@ static const TCGTargetOpDef x86_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(x86_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (x86_op_defs[i].op == op) {
> +            return &x86_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static int tcg_target_callee_save_regs[] = {
>  #if TCG_TARGET_REG_BITS == 64
>      TCG_REG_RBP,
> @@ -2471,8 +2483,6 @@ static void tcg_target_init(TCGContext *s)
>
>      tcg_regset_clear(s->reserved_regs);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK);
> -
> -    tcg_add_target_add_op_defs(x86_op_defs);
>  }
>
>  typedef struct {
> diff --git a/tcg/ia64/tcg-target.inc.c b/tcg/ia64/tcg-target.inc.c
> index b04d716..e4d419d 100644
> --- a/tcg/ia64/tcg-target.inc.c
> +++ b/tcg/ia64/tcg-target.inc.c
> @@ -2352,6 +2352,18 @@ static const TCGTargetOpDef ia64_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(ia64_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (ia64_op_defs[i].op == op) {
> +            return &ia64_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  /* Generate global QEMU prologue and epilogue code */
>  static void tcg_target_qemu_prologue(TCGContext *s)
>  {
> @@ -2471,6 +2483,4 @@ static void tcg_target_init(TCGContext *s)
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_R5);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_R6);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_R7);
> -
> -    tcg_add_target_add_op_defs(ia64_op_defs);
>  }
> diff --git a/tcg/mips/tcg-target.inc.c b/tcg/mips/tcg-target.inc.c
> index 1ecae08..7758b6d 100644
> --- a/tcg/mips/tcg-target.inc.c
> +++ b/tcg/mips/tcg-target.inc.c
> @@ -1770,6 +1770,18 @@ static const TCGTargetOpDef mips_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(mips_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (mips_op_defs[i].op == op) {
> +            return &mips_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static int tcg_target_callee_save_regs[] = {
>      TCG_REG_S0,       /* used for the global env (TCG_AREG0) */
>      TCG_REG_S1,
> @@ -1930,8 +1942,6 @@ static void tcg_target_init(TCGContext *s)
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_RA);   /* return address */
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_SP);   /* stack pointer */
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_GP);   /* global pointer */
> -
> -    tcg_add_target_add_op_defs(mips_op_defs);
>  }
>
>  void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
> diff --git a/tcg/ppc/tcg-target.inc.c b/tcg/ppc/tcg-target.inc.c
> index 7ec54a2..a1b7412 100644
> --- a/tcg/ppc/tcg-target.inc.c
> +++ b/tcg/ppc/tcg-target.inc.c
> @@ -2634,6 +2634,18 @@ static const TCGTargetOpDef ppc_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(ppc_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (ppc_op_defs[i].op == op) {
> +            return &ppc_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static void tcg_target_init(TCGContext *s)
>  {
>      unsigned long hwcap = qemu_getauxval(AT_HWCAP);
> @@ -2670,8 +2682,6 @@ static void tcg_target_init(TCGContext *s)
>      if (USE_REG_RA) {
>          tcg_regset_set_reg(s->reserved_regs, TCG_REG_RA);  /* return addr */
>      }
> -
> -    tcg_add_target_add_op_defs(ppc_op_defs);
>  }
>
>  #ifdef __ELF__
> diff --git a/tcg/s390/tcg-target.inc.c b/tcg/s390/tcg-target.inc.c
> index f4c510e..3cb34eb 100644
> --- a/tcg/s390/tcg-target.inc.c
> +++ b/tcg/s390/tcg-target.inc.c
> @@ -2321,6 +2321,18 @@ static const TCGTargetOpDef s390_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(s390_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (s390_op_defs[i].op == op) {
> +            return &s390_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static void query_s390_facilities(void)
>  {
>      unsigned long hwcap = qemu_getauxval(AT_HWCAP);
> @@ -2363,8 +2375,6 @@ static void tcg_target_init(TCGContext *s)
>      /* XXX many insns can't be used with R0, so we better avoid it for now */
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_R0);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK);
> -
> -    tcg_add_target_add_op_defs(s390_op_defs);
>  }
>
>  #define FRAME_SIZE  ((int)(TCG_TARGET_CALL_STACK_OFFSET          \
> diff --git a/tcg/sparc/tcg-target.inc.c b/tcg/sparc/tcg-target.inc.c
> index 700c434..f2cbf50 100644
> --- a/tcg/sparc/tcg-target.inc.c
> +++ b/tcg/sparc/tcg-target.inc.c
> @@ -1583,6 +1583,18 @@ static const TCGTargetOpDef sparc_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(sparc_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (sparc_op_defs[i].op == op) {
> +            return &sparc_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static void tcg_target_init(TCGContext *s)
>  {
>      /* Only probe for the platform and capabilities if we havn't already
> @@ -1622,8 +1634,6 @@ static void tcg_target_init(TCGContext *s)
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_O6); /* stack pointer */
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_T1); /* for internal use */
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_T2); /* for internal use */
> -
> -    tcg_add_target_add_op_defs(sparc_op_defs);
>  }
>
>  #if SPARC64
> diff --git a/tcg/tcg.c b/tcg/tcg.c
> index 27913f0..5792c1e 100644
> --- a/tcg/tcg.c
> +++ b/tcg/tcg.c
> @@ -62,6 +62,7 @@
>  /* Forward declarations for functions declared in tcg-target.inc.c and
>     used here. */
>  static void tcg_target_init(TCGContext *s);
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode);
>  static void tcg_target_qemu_prologue(TCGContext *s);
>  static void patch_reloc(tcg_insn_unit *code_ptr, int type,
>                          intptr_t value, intptr_t addend);
> @@ -319,6 +320,7 @@ static const TCGHelperInfo all_helpers[] = {
>  };
>
>  static int indirect_reg_alloc_order[ARRAY_SIZE(tcg_target_reg_alloc_order)];
> +static void process_op_defs(TCGContext *s);
>
>  void tcg_context_init(TCGContext *s)
>  {
> @@ -362,6 +364,7 @@ void tcg_context_init(TCGContext *s)
>      }
>
>      tcg_target_init(s);
> +    process_op_defs(s);
>
>      /* Reverse the order of the saved registers, assuming they're all at
>         the start of tcg_target_reg_alloc_order.  */
> @@ -1221,29 +1224,33 @@ static void sort_constraints(TCGOpDef *def, int start, int n)
>      }
>  }
>
> -void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
> +static void process_op_defs(TCGContext *s)
>  {
>      TCGOpcode op;
> -    TCGOpDef *def;
> -    const char *ct_str;
> -    int i, nb_args;
>
> -    for(;;) {
> -        if (tdefs->op == (TCGOpcode)-1)
> -            break;
> -        op = tdefs->op;
> -        tcg_debug_assert((unsigned)op < NB_OPS);
> -        def = &tcg_op_defs[op];
> -#if defined(CONFIG_DEBUG_TCG)
> -        /* Duplicate entry in op definitions? */
> -        tcg_debug_assert(!def->used);
> -        def->used = 1;
> -#endif
> +    for (op = 0; op < NB_OPS; op++) {
> +        TCGOpDef *def = &tcg_op_defs[op];
> +        const TCGTargetOpDef *tdefs;
> +        int i, nb_args, ok;
> +
> +        if (def->flags & TCG_OPF_NOT_PRESENT) {
> +            continue;
> +        }
> +
>          nb_args = def->nb_iargs + def->nb_oargs;
> -        for(i = 0; i < nb_args; i++) {
> -            ct_str = tdefs->args_ct_str[i];
> -            /* Incomplete TCGTargetOpDef entry? */
> +        if (nb_args == 0) {
> +            continue;
> +        }
> +
> +        tdefs = tcg_target_op_def(op);
> +        /* Missing TCGTargetOpDef entry. */
> +        tcg_debug_assert(tdefs != NULL);
> +
> +        for (i = 0; i < nb_args; i++) {
> +            const char *ct_str = tdefs->args_ct_str[i];
> +            /* Incomplete TCGTargetOpDef entry. */
>              tcg_debug_assert(ct_str != NULL);
> +
>              tcg_regset_clear(def->args_ct[i].u.regs);
>              def->args_ct[i].ct = 0;
>              if (ct_str[0] >= '0' && ct_str[0] <= '9') {
> @@ -1272,11 +1279,9 @@ void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
>                          ct_str++;
>                          break;
>                      default:
> -                        if (target_parse_constraint(&def->args_ct[i], &ct_str) < 0) {
> -                            fprintf(stderr, "Invalid constraint '%s' for arg %d of operation '%s'\n",
> -                                    ct_str, i, def->name);
> -                            exit(1);
> -                        }
> +                        ok = target_parse_constraint(&def->args_ct[i], &ct_str);
> +                        /* Typo in TCGTargetOpDef constraint. */
> +                        tcg_debug_assert(ok == 0);
>                      }
>                  }
>              }
> @@ -1288,42 +1293,7 @@ void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
>          /* sort the constraints (XXX: this is just an heuristic) */
>          sort_constraints(def, 0, def->nb_oargs);
>          sort_constraints(def, def->nb_oargs, def->nb_iargs);
> -
> -#if 0
> -        {
> -            int i;
> -
> -            printf("%s: sorted=", def->name);
> -            for(i = 0; i < def->nb_oargs + def->nb_iargs; i++)
> -                printf(" %d", def->sorted_args[i]);
> -            printf("\n");
> -        }
> -#endif
> -        tdefs++;
> -    }
> -
> -#if defined(CONFIG_DEBUG_TCG)
> -    i = 0;
> -    for (op = 0; op < tcg_op_defs_max; op++) {
> -        const TCGOpDef *def = &tcg_op_defs[op];
> -        if (def->flags & TCG_OPF_NOT_PRESENT) {
> -            /* Wrong entry in op definitions? */
> -            if (def->used) {
> -                fprintf(stderr, "Invalid op definition for %s\n", def->name);
> -                i = 1;
> -            }
> -        } else {
> -            /* Missing entry in op definitions? */
> -            if (!def->used) {
> -                fprintf(stderr, "Missing op definition for %s\n", def->name);
> -                i = 1;
> -            }
> -        }
> -    }
> -    if (i == 1) {
> -        tcg_abort();
>      }
> -#endif
>  }
>
>  void tcg_op_remove(TCGContext *s, TCGOp *op)
> diff --git a/tcg/tcg.h b/tcg/tcg.h
> index ebfcefd..144bdab 100644
> --- a/tcg/tcg.h
> +++ b/tcg/tcg.h
> @@ -906,8 +906,6 @@ do {\
>      abort();\
>  } while (0)
>
> -void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs);
> -
>  #if UINTPTR_MAX == UINT32_MAX
>  #define TCGV_NAT_TO_PTR(n) MAKE_TCGV_PTR(GET_TCGV_I32(n))
>  #define TCGV_PTR_TO_NAT(n) MAKE_TCGV_I32(GET_TCGV_PTR(n))
> diff --git a/tcg/tci/tcg-target.inc.c b/tcg/tci/tcg-target.inc.c
> index 9dbf4d5..42d4bd6 100644
> --- a/tcg/tci/tcg-target.inc.c
> +++ b/tcg/tci/tcg-target.inc.c
> @@ -259,6 +259,18 @@ static const TCGTargetOpDef tcg_target_op_defs[] = {
>      { -1 },
>  };
>
> +static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode op)
> +{
> +    int i, n = ARRAY_SIZE(tcg_target_op_defs);
> +
> +    for (i = 0; i < n; ++i) {
> +        if (tcg_target_op_defs[i].op == op) {
> +            return &tcg_target_op_defs[i];
> +        }
> +    }
> +    return NULL;
> +}
> +
>  static const int tcg_target_reg_alloc_order[] = {
>      TCG_REG_R0,
>      TCG_REG_R1,
> @@ -875,7 +887,6 @@ static void tcg_target_init(TCGContext *s)
>
>      tcg_regset_clear(s->reserved_regs);
>      tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK);
> -    tcg_add_target_add_op_defs(tcg_target_op_defs);
>
>      /* We use negative offsets from "sp" so that we can distinguish
>         stores that might pretend to be call arguments.  */


--
Alex Bennée

  reply	other threads:[~2016-12-06 16:39 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-23 13:00 [Qemu-devel] [PATCH v4 00/64] tcg 2.9 patch queue Richard Henderson
2016-11-23 13:00 ` [Qemu-devel] [PATCH v4 01/64] tcg: Add field extraction primitives Richard Henderson
2016-12-05 13:17   ` Alex Bennée
2016-12-05 15:14     ` Richard Henderson
2016-11-23 13:00 ` [Qemu-devel] [PATCH v4 02/64] tcg: Minor adjustments to deposit expanders Richard Henderson
2016-12-05 13:18   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 03/64] tcg: Add deposit_z expander Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 04/64] tcg/aarch64: Implement field extraction opcodes Richard Henderson
2016-12-06 12:24   ` Alex Bennée
2016-12-06 16:36     ` Richard Henderson
2016-12-09 15:41       ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 05/64] tcg/arm: Move isa detection to tcg-target.h Richard Henderson
2016-12-06 12:34   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 06/64] tcg/arm: Implement field extraction opcodes Richard Henderson
2016-12-06 16:16   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 07/64] tcg/i386: " Richard Henderson
2016-11-25 11:16   ` Paolo Bonzini
2016-11-25 11:21     ` Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 08/64] tcg/mips: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 09/64] tcg/ppc: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 10/64] tcg/s390: Expose host facilities to tcg-target.h Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 11/64] tcg/s390: Implement field extraction opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 12/64] tcg/s390: Support deposit into zero Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 13/64] target-alpha: Use deposit and extract ops Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 14/64] target-arm: Use new " Richard Henderson
2016-12-01 17:19   ` Alex Bennée
2016-12-03 21:01     ` Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 15/64] target-i386: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 16/64] target-mips: Use the new extract op Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 17/64] target-ppc: Use the new deposit and extract ops Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 18/64] target-s390x: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 19/64] tcg/optimize: Fold movcond 0/1 into setcond Richard Henderson
2016-12-06 16:22   ` Alex Bennée
2016-12-06 16:33     ` Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 20/64] tcg: Add markup for output requires new register Richard Henderson
2016-12-06 16:34   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 21/64] tcg: Transition flat op_defs array to a target callback Richard Henderson
2016-12-06 16:38   ` Alex Bennée [this message]
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 22/64] tcg: Pass the opcode width to target_parse_constraint Richard Henderson
2016-12-06 16:43   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 23/64] tcg: Allow an operand to be matching or a constant Richard Henderson
2016-12-08 17:19   ` Alex Bennée
2016-12-08 17:49     ` Richard Henderson
2016-12-08 20:38       ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 24/64] tcg: Add clz and ctz opcodes Richard Henderson
2016-12-08 17:44   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 25/64] disas/i386.c: Handle tzcnt Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 26/64] disas/ppc: Handle popcnt and cnttz Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 27/64] target-alpha: Use the ctz and clz opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 28/64] target-cris: Use clz opcode Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 29/64] target-microblaze: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 30/64] target-mips: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 31/64] target-openrisc: Use clz and ctz opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 32/64] target-ppc: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 33/64] target-s390x: Use clz opcode Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 34/64] target-tilegx: Use clz and ctz opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 35/64] target-tricore: Use clz opcode Richard Henderson
2016-11-23 14:58   ` Bastian Koppelmann
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 36/64] target-unicore32: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 37/64] target-xtensa: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 38/64] target-arm: " Richard Henderson
2016-12-08 17:47   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 39/64] target-i386: Use clz and ctz opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 40/64] tcg/ppc: Handle ctz and clz opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 41/64] tcg/aarch64: " Richard Henderson
2016-12-01 18:36   ` Alex Bennée
2016-12-01 18:44     ` Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 42/64] tcg/arm: " Richard Henderson
2016-12-08 17:56   ` Alex Bennée
2016-12-08 18:13     ` Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 43/64] tcg/mips: Handle clz opcode Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 44/64] tcg/s390: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 45/64] tcg/i386: Fuly convert tcg_target_op_def Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 46/64] tcg/i386: Hoist common arguments in tcg_out_op Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 47/64] tcg/i386: Allow bmi2 shiftx to have non-matching operands Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 48/64] tcg/i386: Handle ctz and clz opcodes Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 49/64] tcg/i386: Rely on undefined/undocumented behaviour of BSF/BSR Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 50/64] tcg: Add helpers for clrsb Richard Henderson
2016-12-09  9:51   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 51/64] target-arm: Use clrsb helper Richard Henderson
2016-12-09  9:52   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 52/64] target-tricore: " Richard Henderson
2016-11-23 14:58   ` Bastian Koppelmann
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 53/64] target-xtensa: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 54/64] tcg: Add opcode for ctpop Richard Henderson
2016-12-09  9:57   ` Alex Bennée
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 55/64] target-alpha: Use ctpop helper Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 56/64] target-ppc: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 57/64] target-s390x: Avoid a loop for popcnt Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 58/64] target-sparc: Use ctpop helper Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 59/64] target-tilegx: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 60/64] target-i386: " Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 61/64] qemu/host-utils.h: Reduce the operation count in the fallback ctpop Richard Henderson
2016-12-09 14:41   ` Alex Bennée
2016-12-09 17:18     ` Richard Henderson
2016-11-23 13:01 ` [Qemu-devel] [PATCH v4 62/64] tcg: Use ctpop to generate ctz if needed Richard Henderson
2016-12-09 16:07   ` Alex Bennée
2016-12-09 16:48     ` Richard Henderson
2016-11-23 13:02 ` [Qemu-devel] [PATCH v4 63/64] tcg/ppc: Handle ctpop opcode Richard Henderson
2016-11-23 13:02 ` [Qemu-devel] [PATCH v4 64/64] tcg/i386: " Richard Henderson
2016-11-29 13:33 ` [Qemu-devel] [PATCH v4 00/64] tcg 2.9 patch queue no-reply
2016-12-09 16:08 ` Alex Bennée

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87eg1lypva.fsf@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.