From: Luke Kenneth Casson Leighton Date: Wed, 29 Nov 2023 19:36:17 +0000 (+0000) Subject: bug #672: shorten pospopcount further X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff0e9d1f095c00ad6a36c6b5292b6a9803f900a8;p=openpower-isa.git bug #672: shorten pospopcount further by setting VL=MVL=8 the sv.popcntd/sw=8 will wipe out the unused destinations to zeros, so no need to clear them manually. loses one additional instruction --- diff --git a/src/openpower/decoder/isa/test_caller_svp64_pospopcount.py b/src/openpower/decoder/isa/test_caller_svp64_pospopcount.py index 06b1d764..d13ea570 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_pospopcount.py +++ b/src/openpower/decoder/isa/test_caller_svp64_pospopcount.py @@ -45,12 +45,12 @@ class PosPopCountTestCase(FHDLTestCase): "sv.lbzu/pi/dw=8 *6, 1(4)", # should be /lf here as well # gather performs the transpose (which gets us to positional..) "gbbd 8,6", + # now those bits have been turned around, "setvl 0,0,8,0,1,1", # set MVL=VL=8 - "sv.addi *24, 0, 0", # initialise temp r24-r31 to zero "sv.popcntd/sw=8 *24,*8", # do the (now transposed) popcount "sv.add *16,*16,*24", # branch back if still CTR - "sv.bc/all 16, *0, -0x30", # CTR mode, reduce VL by CTR + "sv.bc/all 16, *0, -0x28", # CTR mode, reduce VL by CTR ] ) lst = list(lst) @@ -61,7 +61,7 @@ class PosPopCountTestCase(FHDLTestCase): #tst_array = [1,2,3,4,5,6,7,8,9,10,11,12,13] #tst_array = [1,2,3,4,5,6,7,8,9,10,11,12,13] #tst_array = [1,2,3,4,5,6,7,8,9] - tst_array = list(range(240)) + #tst_array = list(range(240)) initial_regs = [0] * 64 initial_regs[3] = len(tst_array) initial_regs[4] = 256-8 # load address