From 61e77b4066b26373b7bbb369f23b07a5705d4141 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 6 Jul 2020 23:28:38 +0100 Subject: [PATCH] use ComMULOpSubset in mul pipeline --- src/soc/fu/mul/mul_input_record.py | 60 ++++++++++++++++++++++++++++++ src/soc/fu/mul/pipe_data.py | 4 +- 2 files changed, 62 insertions(+), 2 deletions(-) create mode 100644 src/soc/fu/mul/mul_input_record.py diff --git a/src/soc/fu/mul/mul_input_record.py b/src/soc/fu/mul/mul_input_record.py new file mode 100644 index 00000000..8554c536 --- /dev/null +++ b/src/soc/fu/mul/mul_input_record.py @@ -0,0 +1,60 @@ +from nmigen.hdl.rec import Record, Layout + +from soc.decoder.power_enums import InternalOp, Function, CryIn + + +class CompMULOpSubset(Record): + """CompMULOpSubset + + a copy of the relevant subset information from Decode2Execute1Type + needed for MUL operations. use with eq_from_execute1 (below) to + grab subsets. + """ + def __init__(self, name=None): + layout = (('insn_type', InternalOp), + ('fn_unit', Function), + ('imm_data', Layout((("imm", 64), ("imm_ok", 1)))), + ('rc', Layout((("rc", 1), ("rc_ok", 1)))), # Data + ('oe', Layout((("oe", 1), ("oe_ok", 1)))), # Data + ('invert_a', 1), + ('zero_a', 1), + ('invert_out', 1), + ('write_cr0', 1), + ('input_carry', CryIn), + ('output_carry', 1), + ('is_32bit', 1), + ('is_signed', 1), + ('insn', 32), + ) + + Record.__init__(self, Layout(layout), name=name) + + # grrr. Record does not have kwargs + self.insn_type.reset_less = True + self.fn_unit.reset_less = True + self.zero_a.reset_less = True + self.invert_a.reset_less = True + self.invert_out.reset_less = True + self.input_carry.reset_less = True + self.output_carry.reset_less = True + self.is_32bit.reset_less = True + self.is_signed.reset_less = True + + def eq_from_execute1(self, other): + """ use this to copy in from Decode2Execute1Type + """ + res = [] + for fname, sig in self.fields.items(): + eqfrom = other.do.fields[fname] + res.append(sig.eq(eqfrom)) + return res + + def ports(self): + return [self.insn_type, + self.invert_a, + self.invert_out, + self.input_carry, + self.output_carry, + self.is_32bit, + self.is_signed, + ] diff --git a/src/soc/fu/mul/pipe_data.py b/src/soc/fu/mul/pipe_data.py index 1b37b484..38741f61 100644 --- a/src/soc/fu/mul/pipe_data.py +++ b/src/soc/fu/mul/pipe_data.py @@ -1,4 +1,4 @@ -from soc.fu.alu.alu_input_record import CompALUOpSubset +from soc.fu.mul.mul_input_record import CompMULOpSubset from soc.fu.pipe_data import IntegerData, CommonPipeSpec from soc.fu.alu.pipe_data import ALUOutputData, ALUInputData from nmigen import Signal @@ -29,4 +29,4 @@ class MulOutputData(IntegerData): class MulPipeSpec(CommonPipeSpec): regspec = (ALUInputData.regspec, ALUOutputData.regspec) - opsubsetkls = CompALUOpSubset + opsubsetkls = CompMULOpSubset -- 2.30.2