Re: [Qemu-devel] [PATCH v2 07/20] target-mips: add msa_reset(), global msa register

2014-11-05 Thread Richard Henderson
On 10/29/2014 02:41 AM, Yongbok Kim wrote: > +for (i = 0; i < 32; i++) { > +int off = offsetof(CPUMIPSState, active_fpu.fpr[i].wr.d[0]); > +msa_wr_d[i * 2] = > +tcg_global_mem_new_i64(TCG_AREG0, off, msaregnames[i * 2]); > +off = offsetof(CPUMIPSState, ac

Re: [Qemu-devel] [PATCH v2 07/20] target-mips: add msa_reset(), global msa register

2014-10-29 Thread James Hogan
On Wed, Oct 29, 2014 at 01:41:55AM +, Yongbok Kim wrote: > add msa_reset() and global msa register (d type only) > > Signed-off-by: Yongbok Kim Reviewed-by: James Hogan Cheers James > --- > target-mips/translate.c | 56 > ++ > target-mips/t

[Qemu-devel] [PATCH v2 07/20] target-mips: add msa_reset(), global msa register

2014-10-28 Thread Yongbok Kim
add msa_reset() and global msa register (d type only) Signed-off-by: Yongbok Kim --- target-mips/translate.c | 56 ++ target-mips/translate_init.c | 35 ++ 2 files changed, 91 insertions(+), 0 deletions(-) diff --git a/tar