From: Steven Rostedt <rostedt@goodmis.org>
To: rkrcmar@redhat.com
Cc: linux-mips@linux-mips.org, x86@kernel.org,
linux-doc@vger.kernel.org,
Heiko Carstens <heiko.carstens@de.ibm.com>,
sparclinux@vger.kernel.org, Paul Mackerras <paulus@samba.org>,
"H. Peter Anvin" <hpa@zytor.com>,
Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
linux-s390@vger.kernel.org, Russell King <linux@arm.linux.org.uk>,
Raghavendra K T <raghavendra.kt@linux.vnet.ibm.com>,
Ingo Molnar <mingo@redhat.com>, Andrew Jones <drjones@redhat.com>,
Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
Thomas Gleixner <tglx@linutronix.de>,
linux-arm-kernel@lists.infradead.org,
Richard Henderson <rth@twiddle.net>,
Jiri Kosina <jkosina@suse.cz>,
linux-kernel@vger.kernel.org, Ralf Baechle <ralf@linux-mips.org>,
Rob Landley <rob@landley.net>,
Martin Schwidefsky <schwidefsky@de.ibm.com>,
linux390@de.ibm.com, linuxppc-dev@lists.ozlabs.org,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH 5/7] jump_label: relax branch hinting restrictions
Date: Thu, 17 Oct 2013 13:35:43 -0400 [thread overview]
Message-ID: <20131017133543.7e4e8d45@gandalf.local.home> (raw)
In-Reply-To: <1382004631-25895-6-git-send-email-rkrcmar@redhat.com>
On Thu, 17 Oct 2013 12:10:28 +0200
Radim Kr=C4=8Dm=C3=A1=C5=99 <rkrcmar@redhat.com> wrote:
> We implemented the optimized branch selection in higher levels of api.
> That made static_keys very unintuitive, so this patch introduces another
> element to jump_table, carrying one bit that tells the underlying code
> which branch to optimize.
>=20
> It is now possible to select optimized branch for every jump_entry.
>=20
> Current side effect is 1/3 increase increase in space, we could:
> * use bitmasks and selectors on 2+ aligned code/struct.
> - aligning jump target is easy, but because it is not done by default
> and few bytes in .text are much worse that few kilos in .data,
> I chose not to
> - data is probably aligned by default on all current architectures,
> but programmer can force misalignment of static_key
> * optimize each architecture independently
> - I can't test everything and this patch shouldn't break anything, so
> others can contribute in the future
> * choose something worse, like packing or splitting
> * ignore
>=20
> proof: example & x86_64 disassembly: (F =3D ffffffff)
>=20
> struct static_key flexible_feature;
> noinline void jump_label_experiment(void) {
> if ( static_key_false(&flexible_feature))
> asm ("push 0xa1");
> else asm ("push 0xa0");
> if (!static_key_false(&flexible_feature))
> asm ("push 0xb0");
> else asm ("push 0xb1");
> if ( static_key_true(&flexible_feature))
> asm ("push 0xc1");
> else asm ("push 0xc0");
> if (!static_key_true(&flexible_feature))
> asm ("push 0xd0");
> else asm ("push 0xd1");
> }
>=20
> Disassembly of section .text: (push marked by "->")
>=20
> F81002000 <jump_label_experiment>:
> F81002000: e8 7b 29 75 00 callq F81754980 <__fentry__>
> F81002005: 55 push %rbp
> F81002006: 48 89 e5 mov %rsp,%rbp
> F81002009: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1)
> F8100200e: -> ff 34 25 a0 00 00 00 pushq 0xa0
> F81002015: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1)
> F8100201a: -> ff 34 25 b0 00 00 00 pushq 0xb0
> F81002021: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1)
> F81002026: -> ff 34 25 c1 00 00 00 pushq 0xc1
> F8100202d: 0f 1f 00 nopl (%rax)
> F81002030: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1)
> F81002035: -> ff 34 25 d1 00 00 00 pushq 0xd1
> F8100203c: 5d pop %rbp
> F8100203d: 0f 1f 00 nopl (%rax)
> F81002040: c3 retq
This looks exactly like what we want. I take it this is with your
patch. What was the result before the patch?
-- Steve
> F81002041: 0f 1f 80 00 00 00 00 nopl 0x0(%rax)
> F81002048: -> ff 34 25 d0 00 00 00 pushq 0xd0
> F8100204f: 5d pop %rbp
> F81002050: c3 retq
> F81002051: 0f 1f 80 00 00 00 00 nopl 0x0(%rax)
> F81002058: -> ff 34 25 c0 00 00 00 pushq 0xc0
> F8100205f: 90 nop
> F81002060: eb cb jmp F8100202d <[...]+0x2d>
> F81002062: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1)
> F81002068: -> ff 34 25 b1 00 00 00 pushq 0xb1
> F8100206f: 90 nop
> F81002070: eb af jmp F81002021 <[...]+0x21>
> F81002072: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1)
> F81002078: -> ff 34 25 a1 00 00 00 pushq 0xa1
> F8100207f: 90 nop
> F81002080: eb 93 jmp F81002015 <[...]+0x15>
> F81002082: 66 66 66 66 66 2e 0f [...]
> F81002089: 1f 84 00 00 00 00 00
>=20
> Contents of section .data: (relevant part of embedded __jump_table)
next prev parent reply other threads:[~2013-10-17 17:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1382004631-25895-1-git-send-email-rkrcmar@redhat.com>
2013-10-17 10:10 ` [PATCH 5/7] jump_label: relax branch hinting restrictions Radim Krčmář
2013-10-17 17:35 ` Steven Rostedt [this message]
2013-10-18 7:30 ` Radim Krčmář
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=20131017133543.7e4e8d45@gandalf.local.home \
--to=rostedt@goodmis.org \
--cc=davem@davemloft.net \
--cc=drjones@redhat.com \
--cc=heiko.carstens@de.ibm.com \
--cc=hpa@zytor.com \
--cc=jkosina@suse.cz \
--cc=konrad.wilk@oracle.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=linux-s390@vger.kernel.org \
--cc=linux390@de.ibm.com \
--cc=linux@arm.linux.org.uk \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=mingo@redhat.com \
--cc=paulus@samba.org \
--cc=raghavendra.kt@linux.vnet.ibm.com \
--cc=ralf@linux-mips.org \
--cc=rkrcmar@redhat.com \
--cc=rob@landley.net \
--cc=rth@twiddle.net \
--cc=schwidefsky@de.ibm.com \
--cc=sparclinux@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
/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).