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

index d2a4445d97cf5715013424db7d282e08b309f99f..265ce4ec8b6274e0d1404bd50cdde960163b93c2 100644 (file)
@@ -13,7 +13,7 @@
 
 # Load Byte and Zero with Post-Update Indexed
 
-Z23-Form
+X-Form
 
 * lbzupsx RT,RA,RB,SH
 
@@ -41,7 +41,7 @@ Special Registers Altered:
 
 # Load Halfword and Zero with Post-Update Indexed
 
-Z23-Form
+X-Form
 
 * lhzupsx RT,RA,RB,SH
 
@@ -53,7 +53,9 @@ Pseudo-code:
 
 Description:
 
-    Let the effective address (EA) be register RA.
+    Let the effective address (EA) be the contents of
+    register RA shifted by (SH+1).
+
     The halfword in storage addressed by EA is loaded into RT[48:63]. 
     RT[0:47] are set to 0.
 
@@ -67,19 +69,20 @@ Special Registers Altered:
 
 # Load Halfword Algebraic with Post-Update Indexed
 
-Z23-Form
+X-Form
 
-* lhaupsx RT,RA,RB
+* lhaupsx RT,RA,RB,SH
 
 Pseudo-code:
 
-    EA <- (RA)
+    EA <- (RA)<<(SH+1)
     RT <- EXTS(MEM(EA, 2))
     RA <- (RA) + (RB)
 
 Description:
 
-    Let the effective address (EA) be the register RA.
+    Let the effective address (EA) be the contents of
+    register RA shifted by (SH+1).
 
     The halfword in storage addressed by EA is loaded into RT[48:63].
     RT[0:47] are filled with a copy of bit 0 of the loaded halfword.
@@ -94,7 +97,7 @@ Special Registers Altered:
 
 # Load Word and Zero with Post-Update Indexed
 
-Z23-Form
+X-Form
 
 * lwzupsx RT,RA,RB
 
@@ -121,7 +124,7 @@ Special Registers Altered:
 
 # Load Word Algebraic with Post-Update Indexed
 
-Z23-Form
+X-Form
 
 * lwaupsx RT,RA,RB
 
@@ -148,7 +151,7 @@ Special Registers Altered:
 
 # Load Doubleword with Post-Update Indexed
 
-Z23-Form
+X-Form
 
 * ldupsx RT,RA,RB