Right now, there is a latency test for each functional unit, in every test only one instruction is tested. It would be interesting to test all instructions, this should be easy (a simple loop for every instruction of a functional unit). For example, for the FU Integer Sum, only the instruction ADDI is tested, it should be also tested ADD, AND, OR, etc.
Right now, there is a latency test for each functional unit, in every test only one instruction is tested. It would be interesting to test all instructions, this should be easy (a simple loop for every instruction of a functional unit). For example, for the FU Integer Sum, only the instruction
ADDI
is tested, it should be also testedADD
,AND
,OR
, etc.