Re: [Qemu-devel] [PATCH v3 10/19] target-mips: add MSA I5 format instruction
Hi Yongbok, On 01/11/14 05:28, Yongbok Kim wrote: > +TCGv_i32 timm = tcg_temp_new_i32(); > +tcg_gen_movi_i32(timm, u5); > + > +switch (MASK_MSA_I5(ctx->opcode)) { > +case OPC_ADDVI_df: > +gen_helper_msa_addvi_df(cpu_env, tdf, twd, tws, timm); > +break; > +case O
[Qemu-devel] [PATCH v3 10/19] target-mips: add MSA I5 format instruction
add MSA I5 format instructions Signed-off-by: Yongbok Kim --- target-mips/helper.h | 14 + target-mips/msa_helper.c | 141 ++ target-mips/translate.c | 77 + 3 files changed, 232 insertions(+), 0 deletions(-) diff