Re: [Qemu-devel] [PATCH 11/13] target-ppc: implement xsnegqp instruction

2016-12-06 Thread Nikunj A Dadhania
Richard Henderson writes: > On 12/05/2016 03:25 AM, Nikunj A Dadhania wrote: >> +case OP_NEG: \ >> +tcg_gen_xor_i64(xbh, xbh, sgm); \ >> +tcg_gen_xori_i64(xbl, xbl, 0);\ >> +

Re: [Qemu-devel] [PATCH 11/13] target-ppc: implement xsnegqp instruction

2016-12-05 Thread Richard Henderson
On 12/05/2016 03:25 AM, Nikunj A Dadhania wrote: > +case OP_NEG: \ > +tcg_gen_xor_i64(xbh, xbh, sgm); \ > +tcg_gen_xori_i64(xbl, xbl, 0);\ > +break;

[Qemu-devel] [PATCH 11/13] target-ppc: implement xsnegqp instruction

2016-12-05 Thread Nikunj A Dadhania
xsnegqp: VSX Scalar Negate Quad-Precision Signed-off-by: Nikunj A Dadhania --- target-ppc/translate/vsx-impl.inc.c | 5 + target-ppc/translate/vsx-ops.inc.c | 1 + 2 files changed, 6 insertions(+) diff --git a/target-ppc/translate/vsx-impl.inc.c b/target-ppc/translate/vsx-impl.inc.c index