Added English language description for sthupsx instruction
authorShriya Sharma <shriya@redsemiconductor.com>
Fri, 17 Nov 2023 15:38:13 +0000 (15:38 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 17 Nov 2023 15:43:12 +0000 (15:43 +0000)
openpower/isa/pifixedstoreshift.mdwn

index b8543c4814eb50deb9234cb83ff00af8a37f0cef..b1984e91ef67244d07ac35d29aff5def3120365b 100644 (file)
@@ -66,18 +66,19 @@ Special Registers Altered:
 
 Z23-Form
 
-* stwupsx RS,RA,RB
+* stwupsx RS,RA,RB,SH
 
 Pseudo-code:
 
-    EA <- (RA) + (RB)
+    EA <- (RA) + (RB)<<(SH+1)
     ea <- (RA)
     MEM(ea, 4) <- (RS)[XLEN-32:XLEN-1]
     RA <- EA
 
 Description:
 
-    Let the effective address (EA) be the sum (RA)+ (RB).
+    Let the effective address (EA) be the sum of the contents of
+    register RB shifted by (SH+1), and the contents of register RA.
 
     (RS)[32:63] are stored into the word in storage addressed by RA.