bug #1183: add test function sv_cmpi
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 7 Dec 2023 19:28:29 +0000 (19:28 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 22 Dec 2023 19:26:22 +0000 (19:26 +0000)
based on https://bugs.libre-soc.org/show_bug.cgi?id=1183#c3

src/openpower/decoder/isa/test_caller_svp64_dd_ffirst.py

index 666db4d2c346c7010d3c3ea6a1d82f9e0579c304..1fc44770cc8dd58a44159b210f7ac824f7360979 100644 (file)
@@ -9,7 +9,28 @@ from openpower.simulator.program import Program
 from openpower.insndb.asm import SVP64Asm
 
 
-class DecoderTestCase(FHDLTestCase):
+def cmpd(x, y):
+    class CRfield: object
+    CRf = CRfield()
+    CRf.lt = x < y
+    CRf.gt = x > y
+    CRf.eq = x == y
+    return CRf
+
+
+# example sv.cmpi/ff=lt 0, 1, *10, 5
+# see https://bugs.libre-soc.org/show_bug.cgi?id=1183#c3
+def sv_cmpi(gpr, CR, vl, ra, si):
+    i = 0
+    while i < VL:
+        CR[idx] = cmpd(gpr[rz + i], si)
+        if CR[idx].lt:
+            break
+        i += 1
+    return i # new VL
+
+
+class DDFFirstTestCase(FHDLTestCase):
 
     def _check_regs(self, sim, expected):
         for i in range(32):