(no commit message)
authorlkcl <lkcl@web>
Thu, 21 Apr 2022 11:49:38 +0000 (12:49 +0100)
committerIkiWiki <ikiwiki.info>
Thu, 21 Apr 2022 11:49:38 +0000 (12:49 +0100)
openpower/sv/biginteger/analysis.mdwn

index cbb061ab802a0eea836051337d7f38ffb18cc69b..c98cdb8a31b927adcb67d4f44850f402953c3166 100644 (file)
@@ -20,15 +20,15 @@ big-integer add due to the rules set in SVP64 that all Vector Operations
 are directly equivalent to the strict Program Order Execution of
 their element-level operations.
 
-    R0,CA = A0+B0+CA
+    R0,CA = A0+B0+CA  adde r0,a0,b0
         |
         +----------+
                    |
-    R1,CA = A1+B1+CA
+    R1,CA = A1+B1+CA  adde r1,a1,b1
         |
         +----------+
                    |
-    R2,CA = A2+B2+CA
+    R2,CA = A2+B2+CA  adde r2,a2,b2
 
 Thus, due to sequential execution of `adde` both consuming and producing
 a CA Flag, `sv.adde` is in effect an alias for Vectorised add.  As such,