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/109959] `(a > 1) ? 0 : (a == 1)` is not optimized when spelled out at -O2+
Date: Mon, 07 Aug 2023 14:47:38 +0000	[thread overview]
Message-ID: <bug-109959-4-pP7i4OeKwl@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-109959-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #12 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The trunk branch has been updated by Andrew Pinski <pinskia@gcc.gnu.org>:

https://gcc.gnu.org/g:b57bd27cb68fdbe5d9dcd571b1cb66f72b841290

commit r14-3036-gb57bd27cb68fdbe5d9dcd571b1cb66f72b841290
Author: Andrew Pinski <apinski@marvell.com>
Date:   Sun Aug 6 13:57:35 2023 -0700

    MATCH: [PR109959] `(uns <= 1) & uns` could be optimized to `uns == 1`

    I noticed while looking into some code generation of
bitmap_single_bit_set_p,
    that sometimes:
    ```
      if (uns > 1)
        return 0;
      return uns == 1;
    ```
    Would not optimize down to just:
    ```
    return uns == 1;
    ```

    In this case, VRP likes to change `a == 1` into `(bool)a` if
    a has a range of [0,1] due to `a <= 1` side of the branch.
    We might end up with this similar code even without VRP,
    in the case of builtin-sprintf-warn-23.c (and Wrestrict.c), we had:
    ```
    if (s < 0 || 1 < s)
      s = 0;
    ```
    Which is the same as `s = ((unsigned)s) <= 1 ? s : 0`;
    So we should be able to catch that also.

    This adds 2 patterns to catch `(uns <= 1) & uns` and
    `(uns > 1) ? 0 : uns` and convert those into:
    `(convert) uns == 1`.

    OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions.

            PR tree-optimization/109959

    gcc/ChangeLog:

            * match.pd (`(a > 1) ? 0 : (cast)a`, `(a <= 1) & (cast)a`):
            New patterns.

    gcc/testsuite/ChangeLog:

            * gcc.dg/tree-ssa/builtin-sprintf-warn-23.c: Remove xfail.
            * c-c++-common/Wrestrict.c: Update test and remove some xfail.
            * gcc.dg/tree-ssa/cmpeq-1.c: New test.
            * gcc.dg/tree-ssa/cmpeq-2.c: New test.
            * gcc.dg/tree-ssa/cmpeq-3.c: New test.

  parent reply	other threads:[~2023-08-07 14:47 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-24 22:10 [Bug tree-optimization/109959] New: `(a > 1) ? 0 : (a == 1)` is not optimized when spelled out pinskia at gcc dot gnu.org
2023-05-24 22:16 ` [Bug tree-optimization/109959] `(a > 1) ? 0 : (a == 1)` is not optimized when spelled out at -O2+ pinskia at gcc dot gnu.org
2023-05-24 22:17 ` pinskia at gcc dot gnu.org
2023-05-24 22:21 ` pinskia at gcc dot gnu.org
2023-05-25  3:39 ` pinskia at gcc dot gnu.org
2023-05-25  7:57 ` rguenth at gcc dot gnu.org
2023-06-07 22:36 ` pinskia at gcc dot gnu.org
2023-06-07 22:48 ` pinskia at gcc dot gnu.org
2023-08-06 18:19 ` pinskia at gcc dot gnu.org
2023-08-06 21:12 ` pinskia at gcc dot gnu.org
2023-08-07  0:26 ` pinskia at gcc dot gnu.org
2023-08-07  1:52 ` pinskia at gcc dot gnu.org
2023-08-07  5:09 ` pinskia at gcc dot gnu.org
2023-08-07 14:47 ` cvs-commit at gcc dot gnu.org [this message]
2023-08-07 14:48 ` pinskia 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-109959-4-pP7i4OeKwl@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).