public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/109240] Missed fneg/fsub optimization
Date: Tue, 18 Apr 2023 09:02:33 +0000	[thread overview]
Message-ID: <bug-109240-4-U4kYr5Firj@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-109240-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109240

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:2349e69125335d4c8c5e43cf3643844519d154c3

commit r14-22-g2349e69125335d4c8c5e43cf3643844519d154c3
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Tue Apr 18 11:01:47 2023 +0200

    match.pd: Improve fneg/fadd optimization [PR109240]

    match.pd has mostly for AArch64 an optimization in which it optimizes
    certain forms of __builtin_shuffle of x + y and x - y vectors into
    fneg using twice as wide element type so that every other sign is changed,
    followed by fadd.

    The following patch extends that optimization, so that it can handle
    other forms as well, using the same fneg but fsub instead of fadd.

    As the plus is commutative and minus is not and I want to handle
    vec_perm with plus minus and minus plus order preferrably in one
    pattern, I had to do the matching operand checks by hand.

    2023-04-18  Jakub Jelinek  <jakub@redhat.com>

            PR tree-optimization/109240
            * match.pd (fneg/fadd): Rewrite such that it handles both plus as
            first vec_perm operand and minus as second using fneg/fadd and
            minus as first vec_perm operand and plus as second using fneg/fsub.

            * gcc.target/aarch64/simd/addsub_2.c: New test.
            * gcc.target/aarch64/sve/addsub_2.c: New test.

  parent reply	other threads:[~2023-04-18  9:02 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-21 19:25 [Bug tree-optimization/109240] New: " jakub at gcc dot gnu.org
2023-03-22  7:43 ` [Bug tree-optimization/109240] " rguenth at gcc dot gnu.org
2023-03-22  9:39 ` jakub at gcc dot gnu.org
2023-03-26 18:44 ` jakub at gcc dot gnu.org
2023-04-18  9:02 ` cvs-commit at gcc dot gnu.org [this message]
2023-04-18  9:03 ` jakub at gcc dot gnu.org

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=bug-109240-4-U4kYr5Firj@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.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 read-only IMAP folder(s) and NNTP newsgroup(s).