Re: [Qemu-devel] [PATCH v2] target-mips: Implement Loongson Multimedia Instructions

2012-09-17 Thread Aurelien Jarno
On Mon, Sep 17, 2012 at 11:54:59AM -0700, Richard Henderson wrote: > On 09/07/2012 05:32 PM, Aurelien Jarno wrote: > >> +do_shift: > >> +switch (opc) { > >> +case OPC_SLL_CP2: > >> +case OPC_DSLL_CP2: > >> +tcg_gen_shl_i64(t0, t0, t1); > >> +break

Re: [Qemu-devel] [PATCH v2] target-mips: Implement Loongson Multimedia Instructions

2012-09-17 Thread Richard Henderson
On 09/07/2012 05:32 PM, Aurelien Jarno wrote: >> +do_shift: >> +switch (opc) { >> +case OPC_SLL_CP2: >> +case OPC_DSLL_CP2: >> +tcg_gen_shl_i64(t0, t0, t1); >> +break; >> +case OPC_SRA_CP2: >> +case OPC_DSRA_CP2: >> +/*

Re: [Qemu-devel] [PATCH v2] target-mips: Implement Loongson Multimedia Instructions

2012-09-07 Thread Aurelien Jarno
On Fri, Mar 30, 2012 at 01:13:13PM -0400, Richard Henderson wrote: > Implements all of the COP2 instructions except for the S > family of comparisons. The documentation is unclear for those. > > Signed-off-by: Richard Henderson > --- > > v2: Rebased vs master. > > Makefile.target |

Re: [Qemu-devel] [PATCH v2] target-mips: Implement Loongson Multimedia Instructions

2012-04-18 Thread Richard Henderson
On 03/30/2012 12:13 PM, Richard Henderson wrote: > Implements all of the COP2 instructions except for the S > family of comparisons. The documentation is unclear for those. > > Signed-off-by: Richard Henderson Ping. r~

[Qemu-devel] [PATCH v2] target-mips: Implement Loongson Multimedia Instructions

2012-03-30 Thread Richard Henderson
Implements all of the COP2 instructions except for the S family of comparisons. The documentation is unclear for those. Signed-off-by: Richard Henderson --- v2: Rebased vs master. Makefile.target |3 + target-mips/helper.h | 59 target-mips/lmi_helper.c | 744