From: Linus Torvalds <torvalds@linux-foundation.org>
To: Jan Beulich <JBeulich@novell.com>
Cc: mingo@elte.hu, tglx@linutronix.de, hpa@zytor.com,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Nick Piggin <npiggin@suse.de>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] x86: slightly shorten __ticket_spin_trylock() (v2)
Date: Thu, 3 Dec 2009 13:10:56 -0800 (PST) [thread overview]
Message-ID: <alpine.LFD.2.00.0912031303180.2872@localhost.localdomain> (raw)
In-Reply-To: <4B179A6D0200007800023542@vpn.id2.novell.com>
On Thu, 3 Dec 2009, Jan Beulich wrote:
>
> -static __always_inline int __ticket_spin_trylock(raw_spinlock_t *lock)
> +static __always_inline u8 __ticket_spin_trylock(raw_spinlock_t *lock)
> {
> int tmp, new;
>
> @@ -88,12 +88,11 @@ static __always_inline int __ticket_spin
> LOCK_PREFIX "cmpxchgw %w1,%2\n\t"
> "1:"
> "sete %b1\n\t"
> - "movzbl %b1,%0\n\t"
> : "=&a" (tmp), "=&q" (new), "+m" (lock->slock)
> :
> : "memory", "cc");
>
> - return tmp;
> + return new;
This is fairly pessimal register allocation.
It used to be that we returned the value in 'tmp', which is %eax, which is
also the expected return register. Now that we use 'new', it's some random
other register that is _not_ %eax, which means that while we avoid a
'movzbl', the regular spin_trylock function call case will now have the
compiler emitting a
movb %X,%al
ret
at the end just to get the right return register.
Which seems a bit annoying. It looks like we could have done that last
instruction as just
sete %b0
instead, and then return 'tmp' instead of 'new', keeping the return value
in %al and avoiding the unnecessary movement.
> -static __always_inline int __ticket_spin_trylock(raw_spinlock_t *lock)
> +static __always_inline u8 __ticket_spin_trylock(raw_spinlock_t *lock)
Same thing here, afaik.
NOTE! I haven't actually looked at the generated code, and if we actually
inline it all the way to the caller, it won't matter (and picking another
register may even help). But while these helpers are marked
__always_inline, I _thought_ that the way we actually build the final
'spin_trylock()' function we end up with a real function in the end.
Maybe I'm wrong.
Linus
next prev parent reply other threads:[~2009-12-03 21:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-03 10:01 Jan Beulich
2009-12-03 10:49 ` Ingo Molnar
2009-12-03 11:13 ` Jan Beulich
2009-12-03 21:10 ` Linus Torvalds [this message]
2009-12-11 15:32 ` Jan Beulich
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=alpine.LFD.2.00.0912031303180.2872@localhost.localdomain \
--to=torvalds@linux-foundation.org \
--cc=JBeulich@novell.com \
--cc=a.p.zijlstra@chello.nl \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=npiggin@suse.de \
--cc=tglx@linutronix.de \
/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
all inboxes | Powered by JetHome®