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 rtl-optimization/66552] Missed optimization when shift amount is result of signed modulus
Date: Mon, 19 Oct 2020 09:27:31 +0000	[thread overview]
Message-ID: <bug-66552-4-1mq3fiEiB7@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-66552-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #15 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jiu Fu Guo <guojiufu@gcc.gnu.org>:

https://gcc.gnu.org/g:222f312a773157f53396ba4cb287deb07f84cc34

commit r11-4033-g222f312a773157f53396ba4cb287deb07f84cc34
Author: guojiufu <guojiufu@linux.ibm.com>
Date:   Mon Oct 19 13:48:19 2020 +0800

    [PATCH] fold x << (n % C) to x << (n & C-1) if C meets power2

    This patch fixes PR66552 which is also as:
    https://gcc.gnu.org/pipermail/gcc-patches/2020-February/540930.html
    which requests to optimizes (x shift (n mod C)) to
    (x shift (n bit_and (C - 1))) when C is a constant and power of two.

    gcc/ChangeLog
    2020-10-19  Li Jia He  <helijia@gcc.gnu.org>

            PR tree-optimization/66552
            * match.pd (x << (n % C) -> x << (n & C-1)): New simplification.

    gcc/testsuite/ChangeLog
    2020-10-19  Li Jia He  <helijia@gcc.gnu.org>

            PR tree-optimization/66552
            * gcc.dg/pr66552.c: New testcase.

  parent reply	other threads:[~2020-10-19  9:27 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <bug-66552-4@http.gcc.gnu.org/bugzilla/>
2015-06-17 19:33 ` [Bug c/66552] " msebor at gcc dot gnu.org
2015-06-30  4:34 ` [Bug rtl-optimization/66552] " segher at gcc dot gnu.org
2015-06-30 15:52 ` msebor at gcc dot gnu.org
2020-10-19  9:27 ` cvs-commit at gcc dot gnu.org [this message]
2020-10-21  3:15 ` guojiufu 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-66552-4-1mq3fiEiB7@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).