[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20190509142902.08a32f20@gandalf.local.home>
Date: Thu, 9 May 2019 14:29:02 -0400
From: Steven Rostedt <rostedt@...dmis.org>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: David Laight <David.Laight@...lab.com>,
Peter Zijlstra <peterz@...radead.org>,
"tglx@...utronix.de" <tglx@...utronix.de>,
"hpa@...or.com" <hpa@...or.com>,
"julien.thierry@....com" <julien.thierry@....com>,
"will.deacon@....com" <will.deacon@....com>,
"luto@...capital.net" <luto@...capital.net>,
"mingo@...nel.org" <mingo@...nel.org>,
"catalin.marinas@....com" <catalin.marinas@....com>,
"james.morse@....com" <james.morse@....com>,
"valentin.schneider@....com" <valentin.schneider@....com>,
"brgerst@...il.com" <brgerst@...il.com>,
"jpoimboe@...hat.com" <jpoimboe@...hat.com>,
"luto@...nel.org" <luto@...nel.org>, "bp@...en8.de" <bp@...en8.de>,
"dvlasenk@...hat.com" <dvlasenk@...hat.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"dvyukov@...gle.com" <dvyukov@...gle.com>
Subject: Re: [PATCH 02/25] tracing: Improve "if" macro code generation
On Thu, 9 May 2019 09:51:59 -0700
Linus Torvalds <torvalds@...ux-foundation.org> wrote:
> On Thu, May 9, 2019 at 6:01 AM Steven Rostedt <rostedt@...dmis.org> wrote:
> >
> > This patch works. Can I get your Signed-off-by for it?
>
> Yes. Please write some kind of comprehensible commit log for it, but
How's this:
"Peter Zijlstra noticed that with CONFIG_PROFILE_ALL_BRANCHES, the "if"
macro converts the conditional to an array index. This can cause GCC
to create horrible code. When there are nested ifs, the generated code
uses register values to encode branching decisions.
Josh Poimboeuf found that replacing the define "if" macro from using
the condition as an array index and incrementing the branch statics
with an if statement itself, reduced the asm complexity and shrinks the
generated code quite a bit.
But this can be simplified even further by replacing the internal if
statement with a ternary operator.
Reported-by: Peter Zijlstra (Intel) <peterz@...radead.org>
Reported-by: Josh Poimboeuf <jpoimboe@...hat.com>
"
>
> Signed-off-by: Linus Torvalds <torvalds@...ux-foundation.org>
Thanks,
-- Steve
>
> for the patch itself.
>
Powered by blists - more mailing lists