split out Logical Input and Output stages to common code, allows removal
[soc.git] / src / soc / fu / alu / output_stage.py
index 8b95334702bcc2d0969a017e1fab312c165c09a0..e228e8719019a85c80f49cd1fdada045cd9d9a0f 100644 (file)
@@ -2,82 +2,38 @@
 # out, summary overflow generation, and updating the condition
 # register
 from nmigen import (Module, Signal, Cat, Repl)
-from nmutil.pipemodbase import PipeModBase
 from soc.fu.alu.pipe_data import ALUInputData, ALUOutputData
+from soc.fu.common_output_stage import CommonOutputStage
 from ieee754.part.partsig import PartitionedSignal
 from soc.decoder.power_enums import InternalOp
 
 
-class ALUOutputStage(PipeModBase):
-    def __init__(self, pspec):
-        super().__init__(pspec, "output")
+class ALUOutputStage(CommonOutputStage):
 
     def ispec(self):
-        return ALUOutputData(self.pspec) # TODO: ALUIntermediateData
+        return ALUOutputData(self.pspec)
 
     def ospec(self):
         return ALUOutputData(self.pspec)
 
     def elaborate(self, platform):
-        m = Module()
+        m = super().elaborate(platform)
         comb = m.d.comb
         op = self.i.ctx.op
 
-        # op requests inversion of the output
-        o = Signal.like(self.i.o)
-        with m.If(op.invert_out):
-            comb += o.eq(~self.i.o)
-        with m.Else():
-            comb += o.eq(self.i.o)
-
-        # target register if 32-bit is only the 32 LSBs
-        target = Signal(64, reset_less=True)
-        with m.If(op.is_32bit):
-            comb += target.eq(o[:32])
-        with m.Else():
-            comb += target.eq(o)
-
-        # Handle carry_out
-        comb += self.o.xer_ca.data.eq(self.i.xer_ca.data)
-        comb += self.o.xer_ca.ok.eq(op.output_carry)
-
-        # create condition register cr0 and sticky-overflow
-        is_zero = Signal(reset_less=True)
-        is_positive = Signal(reset_less=True)
-        is_negative = Signal(reset_less=True)
-        msb_test = Signal(reset_less=True) # set equal to MSB, invert if OP=CMP
-        is_cmp = Signal(reset_less=True)   # true if OP=CMP
-        so = Signal(1, reset_less=True)
+        # create overflow
         ov = Signal(2, reset_less=True) # OV, OV32
-        cr0 = Signal(4, reset_less=True)
-
-        # TODO: if o[63] is XORed with "operand == OP_CMP"
-        # that can be used as a test
-        # see https://bugs.libre-soc.org/show_bug.cgi?id=305#c60
 
-        comb += is_cmp.eq(op.insn_type == InternalOp.OP_CMP)
-        comb += msb_test.eq(target[-1] ^ is_cmp)
-        comb += is_zero.eq(target == 0)
-        comb += is_positive.eq(~is_zero & ~msb_test)
-        comb += is_negative.eq(~is_zero & msb_test)
         # XXX see https://bugs.libre-soc.org/show_bug.cgi?id=319#c5
         comb += ov[0].eq(self.i.xer_so.data | self.i.xer_ov.data[0]) # OV
         comb += ov[1].eq(self.i.xer_so.data | self.i.xer_ov.data[1]) # OV32 XXX!
-        comb += so.eq(self.i.xer_so.data | self.i.xer_ov.data[0]) # OV
 
-        with m.If(op.insn_type != InternalOp.OP_CMPEQB):
-            comb += cr0.eq(Cat(so, is_zero, is_positive, is_negative))
-        with m.Else():
-            comb += cr0.eq(self.i.cr0)
+        comb += self.so.eq(self.i.xer_so.data | self.i.xer_ov.data[0]) # OV
 
-        # copy [inverted] cr0, output, sticky-overflow and context out
-        comb += self.o.o.eq(o)
-        comb += self.o.cr0.data.eq(cr0)
-        comb += self.o.cr0.ok.eq(op.rc.rc & op.rc.rc_ok) # CR0 to be set
-        comb += self.o.xer_so.data.eq(so)
+        # copy overflow and sticky-overflow
+        comb += self.o.xer_so.data.eq(self.so)
         comb += self.o.xer_so.ok.eq(op.oe.oe & op.oe.oe_ok) # SO is to be set
         comb += self.o.xer_ov.data.eq(ov)
         comb += self.o.xer_ov.ok.eq(op.oe.oe & op.oe.oe_ok) # OV/32 is to be set
-        comb += self.o.ctx.eq(self.i.ctx)
 
         return m