On Apr 2, 2019 3:44 PM, "Mateja Marjanovic" <mateja.marjano...@rt-rk.com> wrote: > > From: Mateja Marjanovic <mateja.marjano...@rt-rk.com> > > The old version of the helper for the COPY_S.<B|H|W|D> MSA instructions > has been replaced with four helpers that don't use switch, and change > the endianness of the given index, when executed on a big endian host. > > Signed-off-by: Mateja Marjanovic <mateja.marjano...@rt-rk.com> > ---
Reviewed-by: Aleksandar Markovic <amarko...@wavecomp.com> > target/mips/helper.h | 7 +++++- > target/mips/msa_helper.c | 62 +++++++++++++++++++++++++++++++++--------------- > target/mips/translate.c | 19 ++++++++++++++- > 3 files changed, 67 insertions(+), 21 deletions(-) > > diff --git a/target/mips/helper.h b/target/mips/helper.h > index 2f23b0d..4e49618 100644 > --- a/target/mips/helper.h > +++ b/target/mips/helper.h > @@ -874,7 +874,7 @@ 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) > -DEF_HELPER_5(msa_copy_s_df, void, env, i32, i32, i32, i32) > + > DEF_HELPER_5(msa_copy_u_df, void, env, i32, i32, i32, i32) > DEF_HELPER_5(msa_insert_df, void, env, i32, i32, i32, i32) > DEF_HELPER_5(msa_insve_df, void, env, i32, i32, i32, i32) > @@ -936,6 +936,11 @@ DEF_HELPER_4(msa_pcnt_df, void, env, i32, i32, i32) > DEF_HELPER_4(msa_nloc_df, void, env, i32, i32, i32) > DEF_HELPER_4(msa_nlzc_df, void, env, i32, i32, i32) > > +DEF_HELPER_4(msa_copy_s_b, void, env, i32, i32, i32) > +DEF_HELPER_4(msa_copy_s_h, void, env, i32, i32, i32) > +DEF_HELPER_4(msa_copy_s_w, void, env, i32, i32, i32) > +DEF_HELPER_4(msa_copy_s_d, void, env, i32, i32, i32) > + > DEF_HELPER_4(msa_fclass_df, void, env, i32, i32, i32) > DEF_HELPER_4(msa_ftrunc_s_df, void, env, i32, i32, i32) > DEF_HELPER_4(msa_ftrunc_u_df, void, env, i32, i32, i32) > diff --git a/target/mips/msa_helper.c b/target/mips/msa_helper.c > index a500c59..5a06579 100644 > --- a/target/mips/msa_helper.c > +++ b/target/mips/msa_helper.c > @@ -1232,29 +1232,53 @@ void helper_msa_splati_df(CPUMIPSState *env, uint32_t df, uint32_t wd, > msa_splat_df(df, pwd, pws, n); > } > > -void helper_msa_copy_s_df(CPUMIPSState *env, uint32_t df, uint32_t rd, > - uint32_t ws, uint32_t n) > +void helper_msa_copy_s_b(CPUMIPSState *env, uint32_t rd, > + uint32_t ws, uint32_t n) > { > - n %= DF_ELEMENTS(df); > + n %= 16; > +#if defined(HOST_WORDS_BIGENDIAN) > + if (n < 8) { > + n = 8 - n - 1; > + } else { > + n = 24 - n - 1; > + } > +#endif > + env->active_tc.gpr[rd] = (int8_t)env->active_fpu.fpr[ws].wr.b[n]; > +} > > - switch (df) { > - case DF_BYTE: > - env->active_tc.gpr[rd] = (int8_t)env->active_fpu.fpr[ws].wr.b[n]; > - break; > - case DF_HALF: > - env->active_tc.gpr[rd] = (int16_t)env->active_fpu.fpr[ws].wr.h[n]; > - break; > - case DF_WORD: > - env->active_tc.gpr[rd] = (int32_t)env->active_fpu.fpr[ws].wr.w[n]; > - break; > -#ifdef TARGET_MIPS64 > - case DF_DOUBLE: > - env->active_tc.gpr[rd] = (int64_t)env->active_fpu.fpr[ws].wr.d[n]; > - break; > +void helper_msa_copy_s_h(CPUMIPSState *env, uint32_t rd, > + uint32_t ws, uint32_t n) > +{ > + n %= 8; > +#if defined(HOST_WORDS_BIGENDIAN) > + if (n < 4) { > + n = 4 - n - 1; > + } else { > + n = 12 - n - 1; > + } > #endif > - default: > - assert(0); > + env->active_tc.gpr[rd] = (int16_t)env->active_fpu.fpr[ws].wr.h[n]; > +} > + > +void helper_msa_copy_s_w(CPUMIPSState *env, uint32_t rd, > + uint32_t ws, uint32_t n) > +{ > + n %= 4; > +#if defined(HOST_WORDS_BIGENDIAN) > + if (n < 2) { > + n = 2 - n - 1; > + } else { > + n = 6 - n - 1; > } > +#endif > + env->active_tc.gpr[rd] = (int32_t)env->active_fpu.fpr[ws].wr.w[n]; > +} > + > +void helper_msa_copy_s_d(CPUMIPSState *env, uint32_t rd, > + uint32_t ws, uint32_t n) > +{ > + n %= 2; > + env->active_tc.gpr[rd] = (int64_t)env->active_fpu.fpr[ws].wr.d[n]; > } > > void helper_msa_copy_u_df(CPUMIPSState *env, uint32_t df, uint32_t rd, > diff --git a/target/mips/translate.c b/target/mips/translate.c > index 189bbc4..f2ea378 100644 > --- a/target/mips/translate.c > +++ b/target/mips/translate.c > @@ -29401,7 +29401,24 @@ static void gen_msa_elm_df(CPUMIPSState *env, DisasContext *ctx, uint32_t df, > switch (MASK_MSA_ELM(ctx->opcode)) { > case OPC_COPY_S_df: > if (likely(wd != 0)) { > - gen_helper_msa_copy_s_df(cpu_env, tdf, twd, tws, tn); > + switch (df) { > + case DF_BYTE: > + gen_helper_msa_copy_s_b(cpu_env, twd, tws, tn); > + break; > + case DF_HALF: > + gen_helper_msa_copy_s_h(cpu_env, twd, tws, tn); > + break; > + case DF_WORD: > + gen_helper_msa_copy_s_w(cpu_env, twd, tws, tn); > + break; > +#if defined(TARGET_MIPS64) > + case DF_DOUBLE: > + gen_helper_msa_copy_s_d(cpu_env, twd, tws, tn); > + break; > +#endif > + default: > + assert(0); > + } > } > break; > case OPC_COPY_U_df: > -- > 2.7.4 > >