public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Biener <richard.guenther@gmail.com>
To: Abe <abe_skolnik@yahoo.com>
Cc: Alan Lawrence <alan.lawrence@arm.com>,
		"gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>,
	Sebastian Pop <sebpop@gmail.com>
Subject: Re: Another benefit of the new if converter: better performance for half hammocks when running the generated code on a modern high-speed CPU with write-back caching, relative to the code produced by the old if converter given the same source code
Date: Wed, 29 Jul 2015 09:51:00 -0000	[thread overview]
Message-ID: <CAFiYyc2JRt6G0hOdshG0GftQF8+DOdOC-B7Y1hCMKXru4hZDtA@mail.gmail.com> (raw)
In-Reply-To: <55B7C27B.9000406@yahoo.com>

On Tue, Jul 28, 2015 at 7:57 PM, Abe <abe_skolnik@yahoo.com> wrote:
> [Richard wrote:]
>>
>> Note the store to *pointer can be done unconditionally
>
>
> Yes; if I`m mapping things correctly in my mind, this is
> something that Sebastian [and Alan, via email?] and I have
> already discussed and which we plan to fix in good time.
>
> Please note that this is a minor problem at most,
> if/when it it safe to assume that the target can handle
> two vectorized conditional operations in the same loop,
> since anything remotely resembling an expensive
> operation in the [pure] condition should be [is being?]
> computed once per index and stored in a temporary.
> For example: if the source code looks something like:
>
>   if ( condition(index) )  A[index] = foo(index);
>   // important: no else here
>
> ... then the new converter currently converts it to something like:
>
>   /* an appropriate type goes here */ __compiler_temp_1 = condition(index);
>   /* the type of the scalar goes here */ * pointer = __compiler_temp_1 ?
> &A[index] : &scratchpad;
>   /* an appropriate type goes here */ __compiler_temp_2 = foo(index);
>   *pointer = __compiler_temp_1 ? __compiler_temp_2 : scratchpad;
>
> … so "condition(index)" is being evaluated only once
> per {evaluation that exists in the source code}.
>
> The fix for this would/will therefor be a minor optimization IMO;
> the benefit would/will be that in/for iterations/columns
> for which the condition is false, the scratchpad will not be
> needlessly read from in order to derive the value to throw away.
> Always throwing away the unneeded result of evaluating "foo(index)"
> is good enough, and by removing an unneeded conditional expression
> the burden on the vectorizer is reduced: it now only needs:
>   {vectorized decision followed by vectorized store}
> in each such loop, not:
>   {vectorized decision followed by vectorized decision followed by
> vectorized store}.
> [intentionally omitting whatever else it must do
>  in a vectorized manner in the same loop]
>
> This is something we [Sebastian and I] plan on fixing eventually anyway,
> i.e. regardless of whether or not it fixes a test case we already have.
>
>
> [Richard wrote:]
>>
>> and note that another performance issue of if-conversion
>> is  that foo(bar) is executed unconditionally.
>
>
> AFAIK this is a fundamental limitation/necessity of if conversion.
>
> A fundamental assumption/requirement here is that "foo(bar)"/"foo(index)"
> is/are both pure and low-cost.  [I`ve renamed the example to "foo(index)"
> to show that it`s not loop-invariant, since if it were then LICM should
> make multiple evaluations of it unneeded and probably not going to happen
> unless you are targeting a VLIW ISA and have an unused slot in the
> instruction word if you do LICM on the sub-instruction in question.]
>
> If "foo(index)" is not being checked for purity,
> then we have a correctness bug.
>
> If "foo(index)" is not being checked for low evaluation cost,
> then we have a performance bug IMO.  The compiler should use its
> existing estimation mechanism[s] to make an educated guess on
> the cost of "foo(index)" and intentionally not do if conversion
> if/when {the predicted cost of evaluating "foo(index)"
>          for each iteration regardless of the condition bits}
> is too high even in the presence of vectorization.
>
>
> [Richard wrote:]
>>
>> We have a bugreport that
>>    if (C[index]) A[index] = exp (x);
>> massively slows down things if C[index] is almost never true.
>
>
> Quite understandable.  However, unfortunately I cannot think of
> any mechanism that already exists in GCC [or any other compiler
> the internals of which I am even slightly familiar] to estimate
> the probability of the elements of an arbitrary array --
> or [worse yet] of the probability of an arbitrary expression`s
> evaluation result -- being convertible to either particular
> Boolean value.  Perhaps this is feasible if/when "C[...]" is
> truly an array, i.e. not a pointer, and the array`s contents
> are known at compile time.  Otherwise, it seems to require
> pointer analysis at best, and is infeasible at worst
> [e.g. a pointer received from another translation unit].
>
> I think the only thing we can do about this, other than alter our
> plans for defaulting the if conversion, is to endeavor to make profiling
> [e.g. "gprof"] able to "understand" that a certain piece of code has been
> if-converted and able to suggest -- based on profiling -- that the
> conversion should be undone b/c it is "costing" more than it is "saving",
> even with vectorization, which IMO should be an extremely rare occurrence
> if/once we are checking e.g. "exp(x)" [assuming it`s not loop-invariant]
> for low cost of evaluation.
>
> IOW, whatever we have [or will set] the threshold on evaluation cost of
> the RHS expression for if conversion of source code like the above example
> should, IMO, solve most instances of the abovementioned problem.
> The remaining problem cases will likely be something like:
>   {"exp(x)" is _not_ loop-invariant,
>    the probability of C[index] being convertible to true is very low,
>    _and_ the statically-estimated evaluation cost of "exp(x)"
>    is both under the maximum and too close to that maximum}.
> Arguably, barring bugs in the cost estimation,
> if this happens too often in real-world code,
> then we have set the maximum too high and should adjust it.
>
>
>> Dependent on whether the scratchpad is shared for different sized accesses
>> or not the scratchpad may also introduce store hazards in the CPU
>> because if scratchpad-as-int = ...; follows scratchpad-as-short = ...;
>> the latter only partially kills the preceeding store to the scratchpad
>> (usually CPUs can't merge the two requests in the store buffer).
>
>
> It seems to me that the worst that can happen as a result of the preceding
> is that non-{in-order} CPUs will be somewhat restricted in how much they
> can re-order some of the internal operations that result from the decoding
> of the machine-code instructions.  This seems to me to not be a terribly big
> problem since the code in question should be in a vectorized loop anyway.
> If the preceding causes a long stall on a large # of CPUs, then we
> should do something about it, of course.  Otherwise, I propose that
> the preceding may be a largely-theoretical performance problem
> the solving of which doesn`t need to be a high priority
> until/unless it is proven to be a very real-world problem.
>
>
>> Not sure which approach to allocating the scratchpad you are using
>> currently.
>
>
> We are currently using something at least "morally equivalent" to a single:
>
>   char scratchpad[64];
>
> ... for each routine with a conversion that triggers scratchpad generation.
>
>
>> I still have to review the patch itself ... (and so many others)
>
>
> The work of a mother or a GCC maintainer is never done.  ;-)
>
>
>> How do you expect to fix the performance regressions?
>
>
> Mostly by the fruit of my labor with help from Sebastian.  I`d _really_ like
> to get the new converter into trunk ASAP so that there will be many more
> "eyes" on the code.  Also, it is important IMO that this code should not
> languish for months/years [again], since that is what happened approx. 5
> years
> ago when Sebastian wrote it in the first place.  I don`t think a branch is
> the right place for this code, since the branch would allow the code to die.

Well.  We don't generally introduce regressions with changes.  Iff there
are no regressions with --param allow-store-data-races=1 then I guess
it's fine as a wrong-code fix (well, the patch still needs review - I hope
to get to that this week).

Richard.

> Regards,
>
> Abe

  reply	other threads:[~2015-07-29  9:18 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-17 20:33 Abe
2015-07-28 10:27 ` Richard Biener
2015-07-28 18:18   ` Abe
2015-07-29  9:51     ` Richard Biener [this message]
2015-07-29 17:19       ` Abe
2015-07-31 10:24         ` Richard Biener
2015-07-31 18:29           ` Abe

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=CAFiYyc2JRt6G0hOdshG0GftQF8+DOdOC-B7Y1hCMKXru4hZDtA@mail.gmail.com \
    --to=richard.guenther@gmail.com \
    --cc=abe_skolnik@yahoo.com \
    --cc=alan.lawrence@arm.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=sebpop@gmail.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 read-only IMAP folder(s) and NNTP newsgroup(s).