linux-s390.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Heiko Carstens <heiko.carstens@de.ibm.com>
To: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: Alexander Kuleshov <kuleshovmail@gmail.com>,
	Martin Schwidefsky <schwidefsky@de.ibm.com>,
	linux390@de.ibm.com, linux-s390@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] [s390]: Use .rept directive to store/load fpu registers
Date: Mon, 7 Sep 2015 16:13:49 +0200	[thread overview]
Message-ID: <20150907141349.GA13774@osiris> (raw)
In-Reply-To: <55E55904.1070606@de.ibm.com>

On Tue, Sep 01, 2015 at 09:51:32AM +0200, Christian Borntraeger wrote:
> Am 28.08.2015 um 15:49 schrieb Alexander Kuleshov:
> >  arch/s390/kernel/swsusp.S | 49 ++++++++++++++++-------------------------------
> >  1 file changed, 17 insertions(+), 32 deletions(-)
> > 
> > diff --git a/arch/s390/kernel/swsusp.S b/arch/s390/kernel/swsusp.S
> > index ca62946..8011e14 100644
> > --- a/arch/s390/kernel/swsusp.S
> > +++ b/arch/s390/kernel/swsusp.S
> > @@ -48,22 +48,15 @@ ENTRY(swsusp_arch_suspend)
> >  	/* Store registers */
> >  	mvc	0x318(4,%r1),__SF_EMPTY(%r15)	/* move prefix to lowcore */
> >  	stfpc	0x31c(%r1)			/* store fpu control */
> > -	std	0,0x200(%r1)			/* store f0 */
> > -	std	1,0x208(%r1)			/* store f1 */
> > -	std	2,0x210(%r1)			/* store f2 */
> > -	std	3,0x218(%r1)			/* store f3 */
> > -	std	4,0x220(%r1)			/* store f4 */
> > -	std	5,0x228(%r1)			/* store f5 */
> > -	std	6,0x230(%r1)			/* store f6 */
> > -	std	7,0x238(%r1)			/* store f7 */
> > -	std	8,0x240(%r1)			/* store f8 */
> > -	std	9,0x248(%r1)			/* store f9 */
> > -	std	10,0x250(%r1)			/* store f10 */
> > -	std	11,0x258(%r1)			/* store f11 */
> > -	std	12,0x260(%r1)			/* store f12 */
> > -	std	13,0x268(%r1)			/* store f13 */
> > -	std	14,0x270(%r1)			/* store f14 */
> > -	std	15,0x278(%r1)			/* store f15 */
> > +
> > +	/* store f0..f15 floating point registers */
> > +	.set i, 0
> > +	.set f, 0x200
> > +	.rept 16
> > +	std i, f(%r1)
> > +	.set i, (i+1)
> > +	.set f, (f+0x8)
> > +	.endr
> 
> I personally find the existing code easier to read, especially as it matches the
> assembler output and I can directly where the slots are, (e.g. f11 is 0x258)

Yes, I agree with Christian. Let's keep the code as it is.

      reply	other threads:[~2015-09-07 14:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-28 13:49 [PATCH] [s390]: Use .rept directive to store/load fpu registers Alexander Kuleshov
2015-09-01  7:51 ` Christian Borntraeger
2015-09-07 14:13   ` Heiko Carstens [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150907141349.GA13774@osiris \
    --to=heiko.carstens@de.ibm.com \
    --cc=borntraeger@de.ibm.com \
    --cc=kuleshovmail@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=linux390@de.ibm.com \
    --cc=schwidefsky@de.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).