writeback: Do data formatting and condition recording in writeback
authorPaul Mackerras <paulus@ozlabs.org>
Mon, 14 Oct 2019 01:56:01 +0000 (12:56 +1100)
committerPaul Mackerras <paulus@ozlabs.org>
Tue, 15 Oct 2019 04:23:28 +0000 (15:23 +1100)
commit374f4c536d3c4dd8051a139b8e25691ba82e35b7
tree0f3cf25b13302170ca588ad00213f73338b7f5ba
parent45271acb35e854d62900c76ff0f5de9d6e142774
writeback: Do data formatting and condition recording in writeback

This adds code to writeback to format data and test the result
against zero for the purpose of setting CR0.  The data formatter
is able to shift and mask by bytes and do byte reversal and sign
extension.  It can also put together bytes from two input
doublewords to support unaligned loads (including unaligned
byte-reversed loads).

The data formatter starts with an 8:1 multiplexer that is able
to direct any byte of the input to any byte of the output.  This
lets us rotate the data and simultaneously byte-reverse it.
The rotated/reversed data goes to a register for the unaligned
cases that overlap two doublewords.  Then there is per-byte logic
that does trimming, sign extension, and splicing together bytes
from a previous input doubleword (stored in data_latched) and the
current doubleword.  Finally the 64-bit result is tested to set
CR0 if rc = 1.

This removes the RC logic from the execute2, multiply and divide
units, and the shift/mask/byte-reverse/sign-extend logic from
loadstore2.

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Makefile
common.vhdl
divider.vhdl
divider_tb.vhdl
execute2.vhdl
loadstore2.vhdl
multiply.vhdl
multiply_tb.vhdl
writeback.vhdl