Re: [Qemu-devel] [PATCH 03/18] target-ppc: Add ISA2.06 divdeu[o] Instructions

2013-12-09 Thread Richard Henderson
On 12/09/2013 07:47 AM, Tom Musta wrote: > This patch adds the Divide Doubleword Extended Unsigned > instructions. This instruction requires dividing a 128-bit > value by a 64 bit value. Since 128 bit integer division is > not supported in TCG, a helper is used, providing a > repeated difference

[Qemu-devel] [PATCH 03/18] target-ppc: Add ISA2.06 divdeu[o] Instructions

2013-12-09 Thread Tom Musta
This patch adds the Divide Doubleword Extended Unsigned instructions. This instruction requires dividing a 128-bit value by a 64 bit value. Since 128 bit integer division is not supported in TCG, a helper is used, providing a repeated difference algorithm. Signed-off-by: Tom Musta --- target-p