(no commit message)
authorlkcl <lkcl@web>
Wed, 20 Apr 2022 19:27:31 +0000 (20:27 +0100)
committerIkiWiki <ikiwiki.info>
Wed, 20 Apr 2022 19:27:31 +0000 (20:27 +0100)
openpower/sv/biginteger.mdwn

index 9c083c5707e7affdb2db62a81cc4b9aae55be0d9..3799f22d866645e9c6e9378a5449313cb3776ee9 100644 (file)
@@ -213,7 +213,7 @@ Note that RC is not sign-extended to 64-bit.  In a Vector Loop
 it contains the top half of the previous multiply-with-subtract,
 and the current product must be subtracted from it.
 
-The pseudocode for `maddx RT, RA, RB, RC` is:
+The pseudocode for `madded RT, RA, RB, RC` is:
 
     prod[0:127] = (RA) * (RB)
     sum[0:127] = EXTZ(RC) + prod
@@ -224,6 +224,10 @@ Again RC is zero-extended (not shifted), the 128-bit product added
 to it; the lower half of the result stored in RT and the upper half
 in RS.
 
+The differences here to `maddhdu` are that `maddhdu` stores the upper
+half in RT, where `madded` stores the upper half in RS. There is no
+equivalent to `maddld` because `maddld` performs sign-extension on RC.
+
 # Appendix
 
 see [[appendix]]