From: Luke Kenneth Casson Leighton Date: Sun, 25 Aug 2019 12:25:17 +0000 (+0100) Subject: remove weirdness X-Git-Tag: ls180-24jan2020~380 X-Git-Url: https://git.libre-soc.org/?p=ieee754fpu.git;a=commitdiff_plain;h=7199a76d8f721780fecc4868d31f9cbce6d3de35 remove weirdness --- diff --git a/src/ieee754/fpadd/specialcases.py b/src/ieee754/fpadd/specialcases.py index e87212d1..106d004b 100644 --- a/src/ieee754/fpadd/specialcases.py +++ b/src/ieee754/fpadd/specialcases.py @@ -69,29 +69,6 @@ class FPAddSpecialCasesMod(PipeModBase): with m.If(abnan): comb += self.o.z.nan(0) - # XXX WEIRDNESS for FP16 non-canonical NaN handling - # under review - - ## if a is zero and b is NaN return -b - #with m.If(a.is_zero & (a.s==0) & b.is_nan): - # comb += self.o.out_do_z.eq(1) - # comb += z.create(b.s, b.e, Cat(b.m[3:-2], ~b.m[0])) - - ## if b is zero and a is NaN return -a - #with m.Elif(b.is_zero & (b.s==0) & a.is_nan): - # comb += self.o.out_do_z.eq(1) - # comb += z.create(a.s, a.e, Cat(a.m[3:-2], ~a.m[0])) - - ## if a is -zero and b is NaN return -b - #with m.Elif(a.is_zero & (a.s==1) & b.is_nan): - # comb += self.o.out_do_z.eq(1) - # comb += z.create(a.s & b.s, b.e, Cat(b.m[3:-2], 1)) - - ## if b is -zero and a is NaN return -a - #with m.Elif(b.is_zero & (b.s==1) & a.is_nan): - # comb += self.o.out_do_z.eq(1) - # comb += z.create(a.s & b.s, a.e, Cat(a.m[3:-2], 1)) - # if a is inf return inf (or NaN) with m.Elif(a1.is_inf): comb += self.o.z.inf(a1.s)