From a371b146defc229f2537e09397d410b99acda51a Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 16 Jan 2021 13:09:13 +0000 Subject: [PATCH] restore CR table --- openpower/sv/svp64/appendix.mdwn | 43 +++++++++++++++++--------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/openpower/sv/svp64/appendix.mdwn b/openpower/sv/svp64/appendix.mdwn index 8a0c67d9b..c3e091a59 100644 --- a/openpower/sv/svp64/appendix.mdwn +++ b/openpower/sv/svp64/appendix.mdwn @@ -319,38 +319,41 @@ analysis and research) to be as follows: CR_bit = (CR_reg & (1<> 2)<<6) | # hi 3 bits shifted up - (spec[0:1]<<4) | # to make room for these + if spec[2]: + # vector constructs "BA[2:4] spec[0:1] 0 BA[0:1]" + return ((BA >> 2)<<5) | # hi 3 bits shifted up + (spec[0:1]<<3) | # to make room for these (BA & 0b11) # CR_bit on the end + else: + # scalar constructs "0 spec[0:1] BA[0:4]" + return (spec[0:1] << 5) | BA Thus, for example, to access a given bit for a CR in SV mode, the v3.0B -algorithm to determine CR\_reg is modified to as follows, noting that there are now 16 32 bit CRs, and that the element progression is *not linear*: - - def get_cr_bit(BA, idx): # for idx 0 to VL-1 - CR_index = 7-(BA>>2) # top 3 bits but BE - CR_index = (CR_index<<4) | (spec[0:1] << 2) - # first get one of the 16 32-bit CRs - CR_row = (CR_index>>4) + (idx&0xf) - CR = CRfile[CR_row] - # now get the 4 bit CRn in that 32-bit CR - CR_col = (CR_index + (idx>>4)) & 0x7 - CR_reg = CR{CR_col} # get 4 bit CRn - # same as for v3.0/v3.1 from this point onwards - bit_index = 3-(BA & 0b11) # low 2 bits but BE - # finally get the bit from the CR. - CR_bit = (CR_reg & (1<>2) # top 3 bits but BE + if spec[2]: + # vector mode + CR_index = (CR_index<<3) | (spec[0:1] << 1) + else: + # scalar mode + CR_index = (spec[0:1]<<3) | CR_index + # same as for v3.0/v3.1 from this point onwards + bit_index = 3-(BA & 0b11) # low 2 bits but BE + CR_reg = CR{CR_index} # get the CR + # finally get the bit from the CR. + CR_bit = (CR_reg & (1<