public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Marc Glisse <marc.glisse@inria.fr>
To: Andrew Pinski <pinskia@gmail.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH] fold a * (a > 0 ? 1 : -1) to abs(a) and related optimizations
Date: Sat, 24 Jun 2017 06:50:00 -0000	[thread overview]
Message-ID: <alpine.DEB.2.20.1706240811460.2551@stedding.saclay.inria.fr> (raw)
In-Reply-To: <CA+=Sn1mWYuz8h5zBcNqwT2LG9N4B3DueNdoZHmyb4DRREFhwQQ@mail.gmail.com>

On Fri, 23 Jun 2017, Andrew Pinski wrote:

> Hi,
>  I saw this on llvm's review site (https://reviews.llvm.org/D34579)
> and I thought why not add it to GCC.  I expanded more than what was
> done on the LLVM patch.
>
> I added the following optimizations:
> Transform X * (X > 0 ? 1 : -1) into ABS(X).
> Transform X * (X >= 0 ? 1 : -1) into ABS(X).
> Transform X * (X > 0.0 ? 1.0 : -1.0) into ABS(X).
> Transform X * (X >= 0.0 ? 1.0 : -1.0) into ABS(X).
> Transform X * (X > 0 ? -1 : 1) into -ABS(X).
> Transform X * (X >= 0 ? -1 : 1) into -ABS(X).
> Transform X * (X > 0.0 ? -1.0 : 1.0) into -ABS(X).
> Transform X * (X >= 0.0 ? -1.0 : 1.0) into -ABS(X).
> Transform X * (X < 0 ? 1 : -1) into -ABS(X).
> Transform X * (X <= 0 ? 1 : -1) into -ABS(X).
> Transform X * (X < 0.0 ? 1.0 : -1.0) into -ABS(X).
> Transform X * (X <= 0.0 ? 1.0 : -1.0) into -ABS(X).
> Transform X * (X < 0 ? -1 : 1) into ABS(X).
> Transform X * (X <= 0 ? -1 : 1) into ABS(X).
> Transform X * (X < 0.0 ? -1.0 : 1.0) into ABS(X).
> Transform X * (X <= 0.0 ? -1.0 : 1.0) into ABS(X).
>
> The floating points ones only happen when not honoring SNANS and not
> honoring signed zeros.

Some random comments (not a review):

* if X is NaN, we may get a qNaN with the wrong sign bit. We probably 
don't care much though...

* I am surprised (X<0.?-1.:1.) and copysign(1., X) remain different for 
the whole optimization pipeline with -ffast-math. X*copysign(1., X) is 
another candidate to become fabs(X).

* Whenever you get -ABS(X) for integers, what about the case where X is 
INT_MIN?

* I guess we can't get there with an unsigned type because X>0 would have 
become X!=0 .

* I wonder if we could use something like

(for cmp (gt ge lt le)
      outp (convert convert negate negate)
      outn (negate negate convert convert)
[...]
   (outp (abs @0))

to reduce duplication or if that would be less readable.

* Some of the cases are handled by PRE turning

   # iftmp.0_1 = PHI <1.0e+0(5), -1.0e+0(3)>
   _3 = iftmp.0_1 * a_2(D);

into

   _5 = -a_2(D);
[...]
   # iftmp.0_1 = PHI <1.0e+0(2), -1.0e+0(3)>
   # prephitmp_6 = PHI <a_2(D)(2), _5(3)>

which phiopt3 can handle (quite late).

* With cond, this currently (?) only affects generic, so I am not sure it 
will hit very often... But it will be there if someone later writes a 
match.pd->phiopt generator ;-)

-- 
Marc Glisse

  parent reply	other threads:[~2017-06-24  6:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-24  3:59 Andrew Pinski
2017-06-24  3:59 ` Andrew Pinski
2017-06-24  6:50 ` Marc Glisse [this message]
2017-06-24 18:51   ` Andrew Pinski
2017-06-24 19:47     ` Marc Glisse
2017-06-24 20:53       ` Andrew Pinski
2017-06-26 15:02   ` Joseph Myers

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.DEB.2.20.1706240811460.2551@stedding.saclay.inria.fr \
    --to=marc.glisse@inria.fr \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=pinskia@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).