qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
To: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>,
	qemu-devel@nongnu.org
Cc: Aleksandar Markovic <amarkovic@wavecomp.com>
Subject: Re: [PATCH v7 11/14] target/mips: msa: Split helpers for HSUB_<S|U>.<H|W|D>
Date: Fri, 25 Oct 2019 18:00:44 +0200	[thread overview]
Message-ID: <6aaeae87-af3b-cb86-fc41-26d0f2f2a93a@rt-rk.com> (raw)
In-Reply-To: <1571826227-10583-12-git-send-email-aleksandar.markovic@rt-rk.com>

 > From: Aleksandar Markovic <amarkovic@wavecomp.com>
 >
 > Achieves clearer code and slightly better performance.
 >
 > Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
 > ---
 >  target/mips/helper.h     |  10 ++++-
 >  target/mips/msa_helper.c | 108 
+++++++++++++++++++++++++++++++++++++++++------
 >  target/mips/translate.c  |  32 +++++++++++---
 >  3 files changed, 129 insertions(+), 21 deletions(-)
 >
 > diff --git a/target/mips/helper.h b/target/mips/helper.h
 > index 7bb13d5..d7c4bbf 100644
 > --- a/target/mips/helper.h
 > +++ b/target/mips/helper.h
 > @@ -945,6 +945,14 @@ DEF_HELPER_4(msa_mod_s_h, void, env, i32, i32, i32)
 >  DEF_HELPER_4(msa_mod_s_w, void, env, i32, i32, i32)
 >  DEF_HELPER_4(msa_mod_s_d, void, env, i32, i32, i32)
 >
 > +DEF_HELPER_4(msa_hsub_s_h, void, env, i32, i32, i32)
 > +DEF_HELPER_4(msa_hsub_s_w, void, env, i32, i32, i32)
 > +DEF_HELPER_4(msa_hsub_s_d, void, env, i32, i32, i32)
 > +
 > +DEF_HELPER_4(msa_hsub_u_h, void, env, i32, i32, i32)
 > +DEF_HELPER_4(msa_hsub_u_w, void, env, i32, i32, i32)
 > +DEF_HELPER_4(msa_hsub_u_d, void, env, i32, i32, i32)
 > +
 >  DEF_HELPER_4(msa_ilvev_b, void, env, i32, i32, i32)
 >  DEF_HELPER_4(msa_ilvev_h, void, env, i32, i32, i32)
 >  DEF_HELPER_4(msa_ilvev_w, void, env, i32, i32, i32)
 > @@ -1059,8 +1067,6 @@ DEF_HELPER_5(msa_dpsub_u_df, void, env, i32, 
i32, i32, i32)
 >  DEF_HELPER_5(msa_sld_df, void, env, i32, i32, i32, i32)
 >  DEF_HELPER_5(msa_splat_df, void, env, i32, i32, i32, i32)
 >  DEF_HELPER_5(msa_vshf_df, void, env, i32, i32, i32, i32)
 > -DEF_HELPER_5(msa_hsub_s_df, void, env, i32, i32, i32, i32)
 > -DEF_HELPER_5(msa_hsub_u_df, void, env, i32, i32, i32, i32)
 >
 >  DEF_HELPER_5(msa_sldi_df, void, env, i32, i32, i32, i32)
 >  DEF_HELPER_5(msa_splati_df, void, env, i32, i32, i32, i32)
 > diff --git a/target/mips/msa_helper.c b/target/mips/msa_helper.c
 > index 2400632..ae9e8e0 100644
 > --- a/target/mips/msa_helper.c
 > +++ b/target/mips/msa_helper.c
 > @@ -2888,7 +2888,101 @@ void helper_msa_mod_u_d(CPUMIPSState *env,
 >   * 
+---------------+----------------------------------------------------------+
 >   */
 >
 > -/* TODO: insert Int Subtract group helpers here */
 > +/* TODO: insert the rest of Int Subtract group helpers here */
 > +
 > +
 > +static inline int64_t msa_hsub_s_df(uint32_t df, int64_t arg1, 
int64_t arg2)
 > +{
 > +    return SIGNED_ODD(arg1, df) - SIGNED_EVEN(arg2, df);
 > +}
 > +
 > +void helper_msa_hsub_s_h(CPUMIPSState *env,
 > +                         uint32_t wd, uint32_t ws, uint32_t wt)
 > +{
 > +    wr_t *pwd = &(env->active_fpu.fpr[wd].wr);
 > +    wr_t *pws = &(env->active_fpu.fpr[ws].wr);
 > +    wr_t *pwt = &(env->active_fpu.fpr[wt].wr);
 > +
 > +    pwd->h[0]  = msa_hsub_s_df(DF_HALF, pws->h[0], pwt->h[0]);
 > +    pwd->h[1]  = msa_hsub_s_df(DF_HALF, pws->h[1], pwt->h[1]);
 > +    pwd->h[2]  = msa_hsub_s_df(DF_HALF, pws->h[2], pwt->h[2]);
 > +    pwd->h[3]  = msa_hsub_s_df(DF_HALF, pws->h[3], pwt->h[3]);
 > +    pwd->h[4]  = msa_hsub_s_df(DF_HALF, pws->h[4], pwt->h[4]);
 > +    pwd->h[5]  = msa_hsub_s_df(DF_HALF, pws->h[5], pwt->h[5]);
 > +    pwd->h[6]  = msa_hsub_s_df(DF_HALF, pws->h[6], pwt->h[6]);
 > +    pwd->h[7]  = msa_hsub_s_df(DF_HALF, pws->h[7], pwt->h[7]);
 > +}
 > +
 > +void helper_msa_hsub_s_w(CPUMIPSState *env,
 > +                         uint32_t wd, uint32_t ws, uint32_t wt)
 > +{
 > +    wr_t *pwd = &(env->active_fpu.fpr[wd].wr);
 > +    wr_t *pws = &(env->active_fpu.fpr[ws].wr);
 > +    wr_t *pwt = &(env->active_fpu.fpr[wt].wr);
 > +
 > +    pwd->w[0]  = msa_hsub_s_df(DF_WORD, pws->w[0], pwt->w[0]);
 > +    pwd->w[1]  = msa_hsub_s_df(DF_WORD, pws->w[1], pwt->w[1]);
 > +    pwd->w[2]  = msa_hsub_s_df(DF_WORD, pws->w[2], pwt->w[2]);
 > +    pwd->w[3]  = msa_hsub_s_df(DF_WORD, pws->w[3], pwt->w[3]);
 > +}
 > +
 > +void helper_msa_hsub_s_d(CPUMIPSState *env,
 > +                         uint32_t wd, uint32_t ws, uint32_t wt)
 > +{
 > +    wr_t *pwd = &(env->active_fpu.fpr[wd].wr);
 > +    wr_t *pws = &(env->active_fpu.fpr[ws].wr);
 > +    wr_t *pwt = &(env->active_fpu.fpr[wt].wr);
 > +
 > +    pwd->d[0]  = msa_hsub_s_df(DF_DOUBLE, pws->d[0], pwt->d[0]);
 > +    pwd->d[1]  = msa_hsub_s_df(DF_DOUBLE, pws->d[1], pwt->d[1]);
 > +}
 > +
 > +
 > +static inline int64_t msa_hsub_u_df(uint32_t df, int64_t arg1, 
int64_t arg2)
 > +{
 > +    return UNSIGNED_ODD(arg1, df) - UNSIGNED_EVEN(arg2, df);
 > +}
 > +
 > +void helper_msa_hsub_u_h(CPUMIPSState *env,
 > +                         uint32_t wd, uint32_t ws, uint32_t wt)
 > +{
 > +    wr_t *pwd = &(env->active_fpu.fpr[wd].wr);
 > +    wr_t *pws = &(env->active_fpu.fpr[ws].wr);
 > +    wr_t *pwt = &(env->active_fpu.fpr[wt].wr);
 > +
 > +    pwd->h[0]  = msa_hsub_u_df(DF_HALF, pws->h[0], pwt->h[0]);
 > +    pwd->h[1]  = msa_hsub_u_df(DF_HALF, pws->h[1], pwt->h[1]);
 > +    pwd->h[2]  = msa_hsub_u_df(DF_HALF, pws->h[2], pwt->h[2]);
 > +    pwd->h[3]  = msa_hsub_u_df(DF_HALF, pws->h[3], pwt->h[3]);
 > +    pwd->h[4]  = msa_hsub_u_df(DF_HALF, pws->h[4], pwt->h[4]);
 > +    pwd->h[5]  = msa_hsub_u_df(DF_HALF, pws->h[5], pwt->h[5]);
 > +    pwd->h[6]  = msa_hsub_u_df(DF_HALF, pws->h[6], pwt->h[6]);
 > +    pwd->h[7]  = msa_hsub_u_df(DF_HALF, pws->h[7], pwt->h[7]);
 > +}
 > +
 > +void helper_msa_hsub_u_w(CPUMIPSState *env,
 > +                         uint32_t wd, uint32_t ws, uint32_t wt)
 > +{
 > +    wr_t *pwd = &(env->active_fpu.fpr[wd].wr);
 > +    wr_t *pws = &(env->active_fpu.fpr[ws].wr);
 > +    wr_t *pwt = &(env->active_fpu.fpr[wt].wr);
 > +
 > +    pwd->w[0]  = msa_hsub_u_df(DF_WORD, pws->w[0], pwt->w[0]);
 > +    pwd->w[1]  = msa_hsub_u_df(DF_WORD, pws->w[1], pwt->w[1]);
 > +    pwd->w[2]  = msa_hsub_u_df(DF_WORD, pws->w[2], pwt->w[2]);
 > +    pwd->w[3]  = msa_hsub_u_df(DF_WORD, pws->w[3], pwt->w[3]);
 > +}
 > +
 > +void helper_msa_hsub_u_d(CPUMIPSState *env,
 > +                         uint32_t wd, uint32_t ws, uint32_t wt)
 > +{
 > +    wr_t *pwd = &(env->active_fpu.fpr[wd].wr);
 > +    wr_t *pws = &(env->active_fpu.fpr[ws].wr);
 > +    wr_t *pwt = &(env->active_fpu.fpr[wt].wr);
 > +
 > +    pwd->d[0]  = msa_hsub_u_df(DF_DOUBLE, pws->d[0], pwt->d[0]);
 > +    pwd->d[1]  = msa_hsub_u_df(DF_DOUBLE, pws->d[1], pwt->d[1]);
 > +}
 >
 >
 >  /*
 > @@ -4450,16 +4544,6 @@ static inline void msa_sld_df(uint32_t df, 
wr_t *pwd,
 >      }
 >  }
 >
 > -static inline int64_t msa_hsub_s_df(uint32_t df, int64_t arg1, 
int64_t arg2)
 > -{
 > -    return SIGNED_ODD(arg1, df) - SIGNED_EVEN(arg2, df);
 > -}
 > -
 > -static inline int64_t msa_hsub_u_df(uint32_t df, int64_t arg1, 
int64_t arg2)
 > -{
 > -    return UNSIGNED_ODD(arg1, df) - UNSIGNED_EVEN(arg2, df);
 > -}
 > -
 >  static inline int64_t msa_mul_q_df(uint32_t df, int64_t arg1, 
int64_t arg2)
 >  {
 >      int64_t q_min = DF_MIN_INT(df);
 > @@ -4545,8 +4629,6 @@ MSA_BINOP_DF(asub_u)
 >  MSA_BINOP_DF(mulv)
 >  MSA_BINOP_DF(dotp_s)
 >  MSA_BINOP_DF(dotp_u)
 > -MSA_BINOP_DF(hsub_s)
 > -MSA_BINOP_DF(hsub_u)
 >
 >  MSA_BINOP_DF(mul_q)
 >  MSA_BINOP_DF(mulr_q)
 > diff --git a/target/mips/translate.c b/target/mips/translate.c
 > index a57e0da..4c68c5b 100644
 > --- a/target/mips/translate.c
 > +++ b/target/mips/translate.c
 > @@ -29107,6 +29107,32 @@ static void gen_msa_3r(CPUMIPSState *env, 
DisasContext *ctx)
 >                  break;
 >              }
 >              break;
 > +        case OPC_HSUB_S_df:
 > +            switch (df) {
 > +            case DF_HALF:
 > +                gen_helper_msa_hsub_s_h(cpu_env, twd, tws, twt);
 > +                break;
 > +            case DF_WORD:
 > +                gen_helper_msa_hsub_s_w(cpu_env, twd, tws, twt);
 > +                break;
 > +            case DF_DOUBLE:
 > +                gen_helper_msa_hsub_s_d(cpu_env, twd, tws, twt);
 > +                break;
 > +            }
 > +            break;
 > +        case OPC_HSUB_U_df:
 > +            switch (df) {
 > +            case DF_HALF:
 > +                gen_helper_msa_hsub_u_h(cpu_env, twd, tws, twt);
 > +                break;
 > +            case DF_WORD:
 > +                gen_helper_msa_hsub_u_w(cpu_env, twd, tws, twt);
 > +                break;
 > +            case DF_DOUBLE:
 > +                gen_helper_msa_hsub_u_d(cpu_env, twd, tws, twt);
 > +                break;
 > +            }
 > +            break;
 >          case OPC_DOTP_S_df:
 >              gen_helper_msa_dotp_s_df(cpu_env, tdf, twd, tws, twt);
 >              break;
 > @@ -29125,12 +29151,6 @@ static void gen_msa_3r(CPUMIPSState *env, 
DisasContext *ctx)
 >          case OPC_DPSUB_U_df:
 >              gen_helper_msa_dpsub_u_df(cpu_env, tdf, twd, tws, twt);
 >              break;
 > -        case OPC_HSUB_S_df:
 > -            gen_helper_msa_hsub_s_df(cpu_env, tdf, twd, tws, twt);
 > -            break;
 > -        case OPC_HSUB_U_df:
 > -            gen_helper_msa_hsub_u_df(cpu_env, tdf, twd, tws, twt);
 > -            break;
 >          }
 >          break;
 >      default:


Reviewed-by: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>



  reply	other threads:[~2019-10-25 16:08 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-23 10:23 [PATCH v7 00/14] target/mips: Misc cleanups for September/October 2019 Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 01/14] target/mips: Clean up helper.c Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 02/14] target/mips: Clean up op_helper.c Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 03/14] MAINTAINERS: Update mail address of Aleksandar Rikalo Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 04/14] target/mips: msa: Split helpers for <MAX|MIN>_A.<B|H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 05/14] target/mips: msa: Split helpers for <MAX|MIN>_<S|U>.<B|H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 06/14] target/mips: msa: Split helpers for ILV<EV|OD|L|R>.<B|H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 07/14] target/mips: msa: Split helpers for ADD<_A|S_A|S_S|S_U|V>.<B|H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 08/14] target/mips: msa: Split helpers for HADD_<S|U>.<H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 09/14] target/mips: msa: Split helpers for S<LL|RA|RAR|RL|RLR>.<B|H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 10/14] target/mips: msa: Split helpers for PCK<EV|OD>.<B|H|W|D> Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 11/14] target/mips: msa: Split helpers for HSUB_<S|U>.<H|W|D> Aleksandar Markovic
2019-10-25 16:00   ` Aleksandar Rikalo [this message]
2019-10-23 10:23 ` [PATCH v7 12/14] target/mips: msa: Split helpers for ASUB_<S|U>.<B|H|W|D> Aleksandar Markovic
2019-10-25 16:01   ` Aleksandar Rikalo
2019-10-23 10:23 ` [PATCH v7 13/14] target/mips: Add support for emulation of CRC32 group of instructions Aleksandar Markovic
2019-10-23 10:23 ` [PATCH v7 14/14] target/mips: Demacro LMI decoder Aleksandar Markovic
2019-10-25 16:02   ` Aleksandar Rikalo
2019-10-23 21:22 ` [PATCH v7 00/14] target/mips: Misc cleanups for September/October 2019 no-reply

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=6aaeae87-af3b-cb86-fc41-26d0f2f2a93a@rt-rk.com \
    --to=aleksandar.rikalo@rt-rk.com \
    --cc=aleksandar.markovic@rt-rk.com \
    --cc=amarkovic@wavecomp.com \
    --cc=qemu-devel@nongnu.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).