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
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
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