From: Luke Kenneth Casson Leighton Date: Wed, 15 Jul 2020 14:59:02 +0000 (+0100) Subject: range of testing overflow was incorrect in mul X-Git-Tag: div_pipeline~20 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d88451ce3c5df1d7ec898182873f6df13dd192c;p=soc.git range of testing overflow was incorrect in mul see https://bugs.libre-soc.org/show_bug.cgi?id=432 --- diff --git a/src/soc/fu/mul/post_stage.py b/src/soc/fu/mul/post_stage.py index 0fc71804..0fe957bd 100644 --- a/src/soc/fu/mul/post_stage.py +++ b/src/soc/fu/mul/post_stage.py @@ -1,4 +1,10 @@ # This stage is intended to do most of the work of analysing the multiply result +""" +bugreports/links: +* https://libre-soc.org/openpower/isa/fixedarith/ +* https://bugs.libre-soc.org/show_bug.cgi?id=432 +* https://bugs.libre-soc.org/show_bug.cgi?id=323 +""" from nmigen import (Module, Signal, Cat, Repl, Mux, signed) from nmutil.pipemodbase import PipeModBase @@ -51,10 +57,10 @@ class MulMainStage3(PipeModBase): # compute overflow mul_ov = Signal(reset_less=True) with m.If(is_32bit): - m32 = mul_o[32:64] + m31 = mul_o[31:64] # yes really bits 31 to 63 (incl) comb += mul_ov.eq(m32.bool() & ~m32.all()) with m.Else(): - m64 = mul_o[64:128] + m64 = mul_o[63:128] # yes really bits 63 to 127 (incl) comb += mul_ov.eq(m64.bool() & ~m64.all()) # 32-bit (ov[1]) and 64-bit (ov[0]) overflow - both same