Re: [Qemu-devel] [PATCH v2 09/20] target-mips: add MSA branch instructions

2014-11-05 Thread Richard Henderson
On 10/29/2014 02:41 AM, Yongbok Kim wrote: > +case OPC_BNZ_B: > +case OPC_BNZ_H: > +case OPC_BNZ_W: > +case OPC_BNZ_D: > +gen_check_zero_element(bcond, df, wt); > +tcg_gen_setcondi_tl(TCG_COND_EQ, bcond, bcond, 0); You know gen_check_zero_element returns a boolean.

Re: [Qemu-devel] [PATCH v2 09/20] target-mips: add MSA branch instructions

2014-10-29 Thread James Hogan
On Wed, Oct 29, 2014 at 01:41:57AM +, Yongbok Kim wrote: > add MSA branch instructions > > Signed-off-by: Yongbok Kim Reviewed-by: James Hogan Cheers James > --- > target-mips/translate.c | 333 > +++ > 1 files changed, 219 insertions(+), 114

[Qemu-devel] [PATCH v2 09/20] target-mips: add MSA branch instructions

2014-10-28 Thread Yongbok Kim
add MSA branch instructions Signed-off-by: Yongbok Kim --- target-mips/translate.c | 333 +++ 1 files changed, 219 insertions(+), 114 deletions(-) diff --git a/target-mips/translate.c b/target-mips/translate.c index f1160aa..0df86cc 100644 --- a/targ