diff --git a/unoptimized_lr/simple_lr_automaton.py b/unoptimized_lr/simple_lr_automaton.py index 574af2b9693bb54967b1420ae3ee020bdcb0b02c..6c764a36479ea310eb7e38aea2a7dea8363bd33a 100644 --- a/unoptimized_lr/simple_lr_automaton.py +++ b/unoptimized_lr/simple_lr_automaton.py @@ -1,10 +1,14 @@ from nmigen import * +from nmigen.hdl.rec import * from nmigen.cli import main from functools import reduce + + + # We know this is not really likely to synthesize well, but we implement here so # we can get a gold-standard/reference implementation, against which we can test # our further optimizations, including compression and non-standard representations. @@ -14,6 +18,10 @@ from functools import reduce # 2) make it synthesizable (so it can use FPGA block RAM with reasonable bit-width) # 3) make it optimized + + + + class LRAutomaton(Elaboratable): def __init__(self): diff --git a/unoptimized_lr/simple_lr_stack.py b/unoptimized_lr/simple_lr_stack.py index 2a8d50dad7c7df255c9a099520b04d7179e6c63a..372a3d7f44d6128a100999a9bec111dedb871e3f 100644 --- a/unoptimized_lr/simple_lr_stack.py +++ b/unoptimized_lr/simple_lr_stack.py @@ -1,4 +1,5 @@ from nmigen import * +from nmigen.hdl.rec import * from nmigen.cli import main diff --git a/unoptimized_lr/simple_lr_table.py b/unoptimized_lr/simple_lr_table.py index 186f94e18f2764beae5f031fdd6dab75c98e05eb..df6e3160d01f96fe411b28eb0141b04fcf30f667 100644 --- a/unoptimized_lr/simple_lr_table.py +++ b/unoptimized_lr/simple_lr_table.py @@ -1,4 +1,5 @@ from nmigen import * +from nmigen.hdl.rec import * from nmigen.cli import main @@ -14,6 +15,26 @@ from functools import reduce # 2) make it synthesizable (so it can use FPGA block RAM with reasonable bit-width) # 3) make it optimized + + + +class TableBusLayout(Layout): + def __init__(self, *, row_input_width, column_input_width, output_width): + super().__init__([ + ("row_idx", unsigned(row_input_width)), + ("col_idx", unsigned(column_input_width)), + ("output_data", unsigned(output_width)), + ("valid_in", 1), + ("valid_out", 1), + ("ready_out", 1), + ]) + +class TableBus(Record): + def __init__(self, *, row_input_width, column_input_width, output_width): + super().__init__(TableBusLayout(row_input_width=row_input_width, column_input_width=column_input_width, output_width=output_width)) + + + class LRTable(Elaboratable): def __init__(self, number_of_states, number_of_terminals, number_of_reduce_rules, input_array): # Parameters @@ -76,6 +97,7 @@ class LRTable(Elaboratable): self.mem = Memory(width=self.table_width, depth=self.table_depth, init=rasterized) + def elaborate(self, platform): m = Module() m.submodules.rport = rport = (self.mem).read_port() @@ -167,6 +189,7 @@ class GOTOtable(Elaboratable): rasterized.extend(row) # Memory + self.bus = TableBus(row_input_width=4, column_input_width=5, output_width=42) self.mem = Memory(width=self.table_width, depth=self.table_depth, init=rasterized)