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

2014-10-30 Thread Leon Alrae
On 29/10/14 01:42, Yongbok Kim wrote: > +uint8_t wd = (ctx->opcode >> 6) & 0x1f; > + > +if ((dfm & 0x40) == 0x00) { > +m = dfm & 0x3f; > +df = DF_DOUBLE; > +} else if ((dfm & 0x60) == 0x40) { > +m = dfm & 0x1f; > +df = DF_WORD; > +} else if ((dfm & 0x

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

2014-10-28 Thread Yongbok Kim
add MSA BIT format instructions Signed-off-by: Yongbok Kim --- target-mips/helper.h | 13 +++ target-mips/msa_helper.c | 197 ++ target-mips/translate.c | 85 3 files changed, 295 insertions(+), 0 deletions(-) diff --git