From: Shriya Sharma Date: Fri, 17 Nov 2023 15:38:47 +0000 (+0000) Subject: Added English language description for stdupsx instruction X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4fff279dd4833874db264f0d85a695e500214c3e;p=openpower-isa.git Added English language description for stdupsx instruction --- diff --git a/openpower/isa/pifixedstoreshift.mdwn b/openpower/isa/pifixedstoreshift.mdwn index b1984e91..43239d0c 100644 --- a/openpower/isa/pifixedstoreshift.mdwn +++ b/openpower/isa/pifixedstoreshift.mdwn @@ -94,18 +94,19 @@ Special Registers Altered: Z23-Form -* stdupsx RS,RA,RB +* stdupsx RS,RA,RB,SH Pseudo-code: - EA <- (RA) + (RB) + EA <- (RA) + (RB)<<(SH+1) ea <- (RA) MEM(ea, 8) <- (RS) 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) is stored into the doubleword in storage addressed by RA.