Re: [Qemu-devel] [PATCH v2 10/20] target-mips: add MSA I8 format instructions

2014-11-06 Thread Yongbok Kim
On 05/11/2014 17:43, Richard Henderson wrote: On 10/29/2014 02:41 AM, Yongbok Kim wrote: +void helper_msa_shf_df(CPUMIPSState *env, uint32_t df, uint32_t wd, + uint32_t ws, uint32_t imm) +{ +wr_t *pwd = &(env->active_fpu.fpr[wd].wr); +wr_t *pws = &(env->active_fpu.f

Re: [Qemu-devel] [PATCH v2 10/20] target-mips: add MSA I8 format instructions

2014-11-05 Thread Richard Henderson
On 10/29/2014 02:41 AM, Yongbok Kim wrote: > +void helper_msa_shf_df(CPUMIPSState *env, uint32_t df, uint32_t wd, > + uint32_t ws, uint32_t imm) > +{ > +wr_t *pwd = &(env->active_fpu.fpr[wd].wr); > +wr_t *pws = &(env->active_fpu.fpr[ws].wr); > +wr_t wx, *pwx = &wx;

Re: [Qemu-devel] [PATCH v2 10/20] target-mips: add MSA I8 format instructions

2014-10-29 Thread James Hogan
On Wed, Oct 29, 2014 at 01:41:58AM +, Yongbok Kim wrote: > add MSA I8 format instructions > > Reviewed-by: James Hogan The patch has changed quite a lot, so probably worth dropping Reviewed-by in those cases in future. > Signed-off-by: Yongbok Kim > +#define MSA_FN_IMM8(FUNC, DEST, OPERA

[Qemu-devel] [PATCH v2 10/20] target-mips: add MSA I8 format instructions

2014-10-28 Thread Yongbok Kim
add MSA I8 format instructions Reviewed-by: James Hogan Signed-off-by: Yongbok Kim --- target-mips/helper.h | 10 + target-mips/msa_helper.c | 67 +++ target-mips/translate.c | 86 - 3 files changed, 161