public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/112094] New: `popcnt(a) == n | a != 0` should be simplified to `a!=0 | n == 0`
@ 2023-10-26  4:23 pinskia at gcc dot gnu.org
  2023-11-18 22:00 ` [Bug tree-optimization/112094] " pinskia at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-10-26  4:23 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 112094
           Summary: `popcnt(a) == n | a != 0` should be simplified to
                    `a!=0 | n == 0`
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P3
         Component: tree-optimization
          Assignee: pinskia at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

```
int f(int a, int n)
{
        int t = __builtin_popcount(a);
        int b = a != 0;
        int c = t == n;
        return b | c;
}

int f_(int a, int n)
{
        int b = a != 0;
        int c = n == 0;
        return b | c;
}

int g(int a, int n)
{
        int t = __builtin_popcount(a);
        int b = a == 0;
        int c = t != n;
        return b & c;  // a == 0
}

int g_(int a, int n)
{
        int b = a == 0;
        int c = n != 0;
        return b & c;
}
```

I Noticed that LLVM handles only if n is a constant. We could do this if
__builtin_popcount is single use if n is not a constant or maybe if `n != 0`
simplifies ...

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug tree-optimization/112094] `popcnt(a) == n | a != 0` should be simplified to `a!=0 | n == 0`
  2023-10-26  4:23 [Bug tree-optimization/112094] New: `popcnt(a) == n | a != 0` should be simplified to `a!=0 | n == 0` pinskia at gcc dot gnu.org
@ 2023-11-18 22:00 ` pinskia at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-11-18 22:00 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2023-11-18
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-11-18 22:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-26  4:23 [Bug tree-optimization/112094] New: `popcnt(a) == n | a != 0` should be simplified to `a!=0 | n == 0` pinskia at gcc dot gnu.org
2023-11-18 22:00 ` [Bug tree-optimization/112094] " pinskia at gcc dot gnu.org

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).