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 target/108840] Aarch64 doesn't optimize away shift counter masking
Date: Wed, 19 Apr 2023 08:35:50 +0000	[thread overview]
Message-ID: <bug-108840-4-c1AOSyP3GL@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-108840-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #4 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Kyrylo Tkachov <ktkachov@gcc.gnu.org>:

https://gcc.gnu.org/g:136330bf637b50a4f10ace017a4316541386b9c0

commit r14-62-g136330bf637b50a4f10ace017a4316541386b9c0
Author: Kyrylo Tkachov <kyrylo.tkachov@arm.com>
Date:   Wed Apr 19 09:34:40 2023 +0100

    aarch64: PR target/108840 Simplify register shift RTX costs and eliminate
shift amount masking

    In this PR we fail to eliminate explicit &31 operations for variable shifts
such as in:
    void
    bar (int x[3], int y)
    {
      x[0] <<= (y & 31);
      x[1] <<= (y & 31);
      x[2] <<= (y & 31);
    }

    This is rejected by RTX costs that end up giving too high a cost for:
    (set (reg:SI 96)
        (ashift:SI (reg:SI 98)
            (subreg:QI (and:SI (reg:SI 99)
                    (const_int 31 [0x1f])) 0)))

    There is code to handle the AND-31 case in rtx costs, but it gets confused
by the subreg.
    It's easy enough to fix by looking inside the subreg when costing the
expression.
    While doing that I noticed that the ASHIFT case and the other shift-like
cases are almost identical
    and we should just merge them. This code will only be used for valid insns
anyway, so the code after this
    patch should do the Right Thing (TM) for all such shift cases.

    With this patch there are no more "and wn, wn, 31" instructions left in the
testcase.

    Bootstrapped and tested on aarch64-none-linux-gnu.

            PR target/108840

    gcc/ChangeLog:

            * config/aarch64/aarch64.cc (aarch64_rtx_costs): Merge ASHIFT and
            ROTATE, ROTATERT, LSHIFTRT, ASHIFTRT cases.  Handle subregs in op1.

    gcc/testsuite/ChangeLog:

            * gcc.target/aarch64/pr108840.c: New test.

  parent reply	other threads:[~2023-04-19  8:35 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-17 17:59 [Bug target/108840] New: " jakub at gcc dot gnu.org
2023-02-17 18:08 ` [Bug target/108840] " pinskia at gcc dot gnu.org
2023-02-21 12:24 ` ktkachov at gcc dot gnu.org
2023-02-24 15:37 ` ktkachov at gcc dot gnu.org
2023-04-19  8:35 ` cvs-commit at gcc dot gnu.org [this message]
2023-04-19  8:37 ` ktkachov 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-108840-4-c1AOSyP3GL@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).