diff mbox series

[v3,15/30] Hexagon HVX (target/hexagon) helper overrides - vector assign & cmov

Message ID 1632173065-18522-16-git-send-email-tsimpson@quicinc.com (mailing list archive)
State New, archived
Headers show
Series Hexagon HVX (target/hexagon) patch series | expand

Commit Message

Taylor Simpson Sept. 20, 2021, 9:24 p.m. UTC
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
---
 target/hexagon/gen_tcg_hvx.h | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

Comments

Philippe Mathieu-Daudé Sept. 20, 2021, 9:59 p.m. UTC | #1
On 9/20/21 23:24, Taylor Simpson wrote:
> Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
> ---
>  target/hexagon/gen_tcg_hvx.h | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
> 
> diff --git a/target/hexagon/gen_tcg_hvx.h b/target/hexagon/gen_tcg_hvx.h
> index eb29566..bcd53d4 100644
> --- a/target/hexagon/gen_tcg_hvx.h
> +++ b/target/hexagon/gen_tcg_hvx.h
> @@ -126,4 +126,35 @@ static inline void assert_vhist_tmp(DisasContext *ctx)
>      } while (0)
>  
>  
> +#define fGEN_TCG_V6_vassign(SHORTCODE) \
> +    tcg_gen_gvec_mov(MO_64, VdV_off, VuV_off, \
> +                     sizeof(MMVector), sizeof(MMVector))
> +
> +/* Vector conditional move */
> +#define fGEN_TCG_VEC_CMOV(PRED) \
> +    do { \
> +        TCGv lsb = tcg_temp_new(); \
> +        TCGLabel *false_label = gen_new_label(); \
> +        TCGLabel *end_label = gen_new_label(); \
> +        tcg_gen_andi_tl(lsb, PsV, 1); \
> +        tcg_gen_brcondi_tl(TCG_COND_NE, lsb, PRED, false_label); \
> +        tcg_temp_free(lsb); \
> +        tcg_gen_gvec_mov(MO_64, VdV_off, VuV_off, \
> +                         sizeof(MMVector), sizeof(MMVector)); \
> +        tcg_gen_br(end_label); \
> +        gen_set_label(false_label); \
> +        tcg_gen_ori_tl(hex_slot_cancelled, hex_slot_cancelled, \
> +                       1 << insn->slot); \
> +        gen_set_label(end_label); \
> +    } while (0)

Why a macro and not a (eventually inlined) function?

> +/* Vector conditional move (true) */
> +#define fGEN_TCG_V6_vcmov(SHORTCODE) \
> +    fGEN_TCG_VEC_CMOV(1)
> +
> +/* Vector conditional move (false) */
> +#define fGEN_TCG_V6_vncmov(SHORTCODE) \
> +    fGEN_TCG_VEC_CMOV(0)
> +
>  #endif
>
Taylor Simpson Sept. 20, 2021, 10:11 p.m. UTC | #2
> -----Original Message-----
> From: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com> On
> Behalf Of Philippe Mathieu-Daudé
> Sent: Monday, September 20, 2021 4:59 PM
> To: Taylor Simpson <tsimpson@quicinc.com>; qemu-devel@nongnu.org
> Cc: ale@rev.ng; Brian Cain <bcain@quicinc.com>;
> richard.henderson@linaro.org
> Subject: Re: [PATCH v3 15/30] Hexagon HVX (target/hexagon) helper
> overrides - vector assign & cmov
> 
> On 9/20/21 23:24, Taylor Simpson wrote:
> > Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
> > ---
> >  target/hexagon/gen_tcg_hvx.h | 31
> +++++++++++++++++++++++++++++++
> >  1 file changed, 31 insertions(+)
> >
> > diff --git a/target/hexagon/gen_tcg_hvx.h
> > b/target/hexagon/gen_tcg_hvx.h index eb29566..bcd53d4 100644
> > --- a/target/hexagon/gen_tcg_hvx.h
> > +++ b/target/hexagon/gen_tcg_hvx.h
> > @@ -126,4 +126,35 @@ static inline void assert_vhist_tmp(DisasContext
> *ctx)
> >      } while (0)
> >
> >
> > +#define fGEN_TCG_V6_vassign(SHORTCODE) \
> > +    tcg_gen_gvec_mov(MO_64, VdV_off, VuV_off, \
> > +                     sizeof(MMVector), sizeof(MMVector))
> > +
> > +/* Vector conditional move */
> > +#define fGEN_TCG_VEC_CMOV(PRED) \
> > +    do { \
> > +        TCGv lsb = tcg_temp_new(); \
> > +        TCGLabel *false_label = gen_new_label(); \
> > +        TCGLabel *end_label = gen_new_label(); \
> > +        tcg_gen_andi_tl(lsb, PsV, 1); \
> > +        tcg_gen_brcondi_tl(TCG_COND_NE, lsb, PRED, false_label); \
> > +        tcg_temp_free(lsb); \
> > +        tcg_gen_gvec_mov(MO_64, VdV_off, VuV_off, \
> > +                         sizeof(MMVector), sizeof(MMVector)); \
> > +        tcg_gen_br(end_label); \
> > +        gen_set_label(false_label); \
> > +        tcg_gen_ori_tl(hex_slot_cancelled, hex_slot_cancelled, \
> > +                       1 << insn->slot); \
> > +        gen_set_label(end_label); \
> > +    } while (0)
> 
> Why a macro and not a (eventually inlined) function?

I make these macros to be consistent across the different overrides.  This one could easily be a function, but others cannot.  For example, fGEN_TCG_VEC_CMP_OP can't - see patch 20/30.

Having said that, I can change only the ones that don't need to be macros into functions if that is preferred.


Thanks,
Taylor
Richard Henderson Sept. 20, 2021, 11:19 p.m. UTC | #3
On 9/20/21 2:24 PM, Taylor Simpson wrote:
> Signed-off-by: Taylor Simpson<tsimpson@quicinc.com>
> ---
>   target/hexagon/gen_tcg_hvx.h | 31 +++++++++++++++++++++++++++++++
>   1 file changed, 31 insertions(+)

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

r~
diff mbox series

Patch

diff --git a/target/hexagon/gen_tcg_hvx.h b/target/hexagon/gen_tcg_hvx.h
index eb29566..bcd53d4 100644
--- a/target/hexagon/gen_tcg_hvx.h
+++ b/target/hexagon/gen_tcg_hvx.h
@@ -126,4 +126,35 @@  static inline void assert_vhist_tmp(DisasContext *ctx)
     } while (0)
 
 
+#define fGEN_TCG_V6_vassign(SHORTCODE) \
+    tcg_gen_gvec_mov(MO_64, VdV_off, VuV_off, \
+                     sizeof(MMVector), sizeof(MMVector))
+
+/* Vector conditional move */
+#define fGEN_TCG_VEC_CMOV(PRED) \
+    do { \
+        TCGv lsb = tcg_temp_new(); \
+        TCGLabel *false_label = gen_new_label(); \
+        TCGLabel *end_label = gen_new_label(); \
+        tcg_gen_andi_tl(lsb, PsV, 1); \
+        tcg_gen_brcondi_tl(TCG_COND_NE, lsb, PRED, false_label); \
+        tcg_temp_free(lsb); \
+        tcg_gen_gvec_mov(MO_64, VdV_off, VuV_off, \
+                         sizeof(MMVector), sizeof(MMVector)); \
+        tcg_gen_br(end_label); \
+        gen_set_label(false_label); \
+        tcg_gen_ori_tl(hex_slot_cancelled, hex_slot_cancelled, \
+                       1 << insn->slot); \
+        gen_set_label(end_label); \
+    } while (0)
+
+
+/* Vector conditional move (true) */
+#define fGEN_TCG_V6_vcmov(SHORTCODE) \
+    fGEN_TCG_VEC_CMOV(1)
+
+/* Vector conditional move (false) */
+#define fGEN_TCG_V6_vncmov(SHORTCODE) \
+    fGEN_TCG_VEC_CMOV(0)
+
 #endif