public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/115086] New: bic is not used when the non-not part is a constant
@ 2024-05-14  9:45 pinskia at gcc dot gnu.org
  2024-05-14  9:49 ` [Bug target/115086] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-05-14  9:45 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 115086
           Summary: bic is not used when the non-not part is a constant
           Product: gcc
           Version: 15.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---
            Target: aarch64

Take:
```
int g2(int a,int c)
{
  int b = 4 & ~c;
  return b;
}
```

Currently GCC produces:
```
g2:
        mvn     w0, w1
        and     w0, w0, 4
        ret
```
But producing bic is better for most (if not all) modern cores due to the
instruction that generates the constant would be "free". That is GCC should
produce:
```
g2:
        mov     w8, 4
        bic     w0, w8, w1
        ret
```

Which is what clang/LLVM produces.

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

end of thread, other threads:[~2024-05-15 10:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-14  9:45 [Bug target/115086] New: bic is not used when the non-not part is a constant pinskia at gcc dot gnu.org
2024-05-14  9:49 ` [Bug target/115086] " pinskia at gcc dot gnu.org
2024-05-14  9:50 ` rearnsha at gcc dot gnu.org
2024-05-15  5:11 ` pinskia at gcc dot gnu.org
2024-05-15  7:38 ` pinskia at gcc dot gnu.org
2024-05-15 10:37 ` 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).