Re: [Qemu-devel] [PATCH 3/7] target-ppc: Implement bcds. instruction

2016-12-04 Thread David Gibson
On Mon, Dec 05, 2016 at 02:12:29PM +1100, David Gibson wrote: > On Sat, Dec 03, 2016 at 03:00:02AM -0200, Jose Ricardo Ziviani wrote: > > bcds.: Decimal shift. Given two registers vra and vrb, this instruction > > shift the vrb value by vra bits into the result register. > > > > Signed-off-by: Jos

Re: [Qemu-devel] [PATCH 3/7] target-ppc: Implement bcds. instruction

2016-12-04 Thread David Gibson
On Sat, Dec 03, 2016 at 03:00:02AM -0200, Jose Ricardo Ziviani wrote: > bcds.: Decimal shift. Given two registers vra and vrb, this instruction > shift the vrb value by vra bits into the result register. > > Signed-off-by: Jose Ricardo Ziviani Reviewed-by: David Gibson > --- > target-ppc/help

[Qemu-devel] [PATCH 3/7] target-ppc: Implement bcds. instruction

2016-12-02 Thread Jose Ricardo Ziviani
bcds.: Decimal shift. Given two registers vra and vrb, this instruction shift the vrb value by vra bits into the result register. Signed-off-by: Jose Ricardo Ziviani --- target-ppc/helper.h | 1 + target-ppc/int_helper.c | 38 + ta