continue debugging trap pipeline
[soc.git] / src / soc / fu / trap / test / test_pipe_caller.py
1 from nmigen import Module, Signal
2 from nmigen.back.pysim import Simulator, Delay, Settle
3 from nmutil.formaltest import FHDLTestCase
4 from nmigen.cli import rtlil
5 import unittest
6 from soc.decoder.isa.caller import ISACaller, special_sprs
7 from soc.decoder.power_decoder import (create_pdecode)
8 from soc.decoder.power_decoder2 import (PowerDecode2)
9 from soc.decoder.power_enums import (XER_bits, Function, InternalOp, CryIn)
10 from soc.decoder.selectable_int import SelectableInt
11 from soc.simulator.program import Program
12 from soc.decoder.isa.all import ISA
13
14
15 from soc.fu.test.common import (TestCase, ALUHelpers)
16 from soc.fu.trap.pipeline import TrapBasePipe
17 from soc.fu.trap.pipe_data import TrapPipeSpec
18 import random
19
20
21 def get_cu_inputs(dec2, sim):
22 """naming (res) must conform to TrapFunctionUnit input regspec
23 """
24 res = {}
25
26 yield from ALUHelpers.get_sim_int_ra(res, sim, dec2) # RA
27 yield from ALUHelpers.get_sim_int_rb(res, sim, dec2) # RB
28 yield from ALUHelpers.get_sim_fast_spr1(res, sim, dec2) # SPR1
29 ALUHelpers.get_sim_cia(res, sim, dec2) # PC
30 ALUHelpers.get_sim_msr(res, sim, dec2) # MSR
31
32 print ("alu get_cu_inputs", res)
33
34 return res
35
36
37
38 def set_alu_inputs(alu, dec2, sim):
39 # TODO: see https://bugs.libre-soc.org/show_bug.cgi?id=305#c43
40 # detect the immediate here (with m.If(self.i.ctx.op.imm_data.imm_ok))
41 # and place it into data_i.b
42
43 inp = yield from get_cu_inputs(dec2, sim)
44 yield from ALUHelpers.set_int_ra(alu, dec2, inp)
45 yield from ALUHelpers.set_int_rb(alu, dec2, inp)
46
47 yield from ALUHelpers.set_fast_cia(alu, dec2, inp)
48 yield from ALUHelpers.set_fast_msr(alu, dec2, inp)
49
50
51 # This test bench is a bit different than is usual. Initially when I
52 # was writing it, I had all of the tests call a function to create a
53 # device under test and simulator, initialize the dut, run the
54 # simulation for ~2 cycles, and assert that the dut output what it
55 # should have. However, this was really slow, since it needed to
56 # create and tear down the dut and simulator for every test case.
57
58 # Now, instead of doing that, every test case in TrapTestCase puts some
59 # data into the test_data list below, describing the instructions to
60 # be tested and the initial state. Once all the tests have been run,
61 # test_data gets passed to TestRunner which then sets up the DUT and
62 # simulator once, runs all the data through it, and asserts that the
63 # results match the pseudocode sim at every cycle.
64
65 # By doing this, I've reduced the time it takes to run the test suite
66 # massively. Before, it took around 1 minute on my computer, now it
67 # takes around 3 seconds
68
69
70 class TrapTestCase(FHDLTestCase):
71 test_data = []
72
73 def __init__(self, name):
74 super().__init__(name)
75 self.test_name = name
76
77 def run_tst_program(self, prog, initial_regs=None, initial_sprs=None):
78 tc = TestCase(prog, self.test_name, initial_regs, initial_sprs)
79 self.test_data.append(tc)
80
81 def test_trap_eq_imm(self):
82 insns = ["twi", "tdi"]
83 for i in range(2):
84 choice = random.choice(insns)
85 lst = [f"{choice} 4, 1, %d" % i] # TO=4: trap equal
86 initial_regs = [0] * 32
87 initial_regs[1] = 1
88 self.run_tst_program(Program(lst), initial_regs)
89
90 def test_ilang(self):
91 pspec = TrapPipeSpec(id_wid=2)
92 alu = TrapBasePipe(pspec)
93 vl = rtlil.convert(alu, ports=alu.ports())
94 with open("trap_pipeline.il", "w") as f:
95 f.write(vl)
96
97
98 class TestRunner(FHDLTestCase):
99 def __init__(self, test_data):
100 super().__init__("run_all")
101 self.test_data = test_data
102
103 def run_all(self):
104 m = Module()
105 comb = m.d.comb
106 instruction = Signal(32)
107
108 pdecode = create_pdecode()
109
110 m.submodules.pdecode2 = pdecode2 = PowerDecode2(pdecode)
111
112 pspec = TrapPipeSpec(id_wid=2)
113 m.submodules.alu = alu = TrapBasePipe(pspec)
114
115 comb += alu.p.data_i.ctx.op.eq_from_execute1(pdecode2.e)
116 comb += alu.p.valid_i.eq(1)
117 comb += alu.n.ready_i.eq(1)
118 comb += pdecode2.dec.raw_opcode_in.eq(instruction)
119 sim = Simulator(m)
120
121 sim.add_clock(1e-6)
122 def process():
123 for test in self.test_data:
124 print(test.name)
125 program = test.program
126 self.subTest(test.name)
127 sim = ISA(pdecode2, test.regs, test.sprs, test.cr,
128 test.mem, test.msr)
129 gen = program.generate_instructions()
130 instructions = list(zip(gen, program.assembly.splitlines()))
131
132 pc = sim.pc.CIA.value
133 index = pc//4
134 while index < len(instructions):
135 ins, code = instructions[index]
136
137 print("pc %08x instr: %08x" % (pc, ins & 0xffffffff))
138 print(code)
139 if 'XER' in sim.spr:
140 so = 1 if sim.spr['XER'][XER_bits['SO']] else 0
141 ov = 1 if sim.spr['XER'][XER_bits['OV']] else 0
142 ov32 = 1 if sim.spr['XER'][XER_bits['OV32']] else 0
143 print ("before: so/ov/32", so, ov, ov32)
144
145 # ask the decoder to decode this binary data (endian'd)
146 yield pdecode2.dec.bigendian.eq(0) # little / big?
147 yield instruction.eq(ins) # raw binary instr.
148 yield Settle()
149 fn_unit = yield pdecode2.e.fn_unit
150 self.assertEqual(fn_unit, Function.TRAP.value)
151 yield from set_alu_inputs(alu, pdecode2, sim)
152 yield
153 opname = code.split(' ')[0]
154 yield from sim.call(opname)
155 pc = sim.pc.CIA.value
156 index = pc//4
157 print("pc after %08x" % (pc))
158
159 vld = yield alu.n.valid_o
160 while not vld:
161 yield
162 vld = yield alu.n.valid_o
163 yield
164
165 yield from self.check_alu_outputs(alu, pdecode2, sim, code)
166
167 sim.add_sync_process(process)
168 with sim.write_vcd("alu_simulator.vcd", "simulator.gtkw",
169 traces=[]):
170 sim.run()
171
172 def check_alu_outputs(self, alu, dec2, sim, code):
173
174 rc = yield dec2.e.rc.data
175 cridx_ok = yield dec2.e.write_cr.ok
176 cridx = yield dec2.e.write_cr.data
177
178 print ("check extra output", repr(code), cridx_ok, cridx)
179 if rc:
180 self.assertEqual(cridx, 0, code)
181
182 sim_o = {}
183 res = {}
184
185 yield from ALUHelpers.get_int_o(res, alu, dec2)
186 yield from ALUHelpers.get_fast_spr1(res, alu, dec2)
187 yield from ALUHelpers.get_fast_spr2(res, alu, dec2)
188 yield from ALUHelpers.get_fast_nia(res, alu, dec2)
189 yield from ALUHelpers.get_fast_msr(res, alu, dec2)
190
191 print ("output", res)
192
193 yield from ALUHelpers.get_sim_int_o(sim_o, sim, dec2)
194 yield from ALUHelpers.get_wr_sim_cr_a(sim_o, sim, dec2)
195 yield from ALUHelpers.get_sim_xer_ov(sim_o, sim, dec2)
196 yield from ALUHelpers.get_wr_sim_xer_ca(sim_o, sim, dec2)
197 yield from ALUHelpers.get_sim_xer_so(sim_o, sim, dec2)
198
199 ALUHelpers.check_cr_a(self, res, sim_o, "CR%d %s" % (cridx, code))
200 ALUHelpers.check_xer_ov(self, res, sim_o, code)
201 ALUHelpers.check_xer_ca(self, res, sim_o, code)
202 ALUHelpers.check_int_o(self, res, sim_o, code)
203 ALUHelpers.check_xer_so(self, res, sim_o, code)
204
205
206 if __name__ == "__main__":
207 unittest.main(exit=False)
208 suite = unittest.TestSuite()
209 suite.addTest(TestRunner(TrapTestCase.test_data))
210
211 runner = unittest.TextTestRunner()
212 runner.run(suite)