public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/113859] New: popcount HI can be vectorized for non-SVE
@ 2024-02-10  2:15 pinskia at gcc dot gnu.org
  2024-02-10  3:41 ` [Bug target/113859] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-02-10  2:15 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113859
           Summary: popcount HI can be vectorized for non-SVE
           Product: gcc
           Version: 14.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:
```
void f(unsigned short *  __restrict b, unsigned short * __restrict d)
{
  for(int i = 0; i < 1024; i++)
    d[i]  = __builtin_popcount(b[i]);
}

```

This can be vectorized to:
```
        ldr     q0, [x9]
        cnt     v0.16b, v0.16b
        uaddlp  v0.8h, v0.16b
        stp     q0, [x9]
```

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

end of thread, other threads:[~2024-06-16  0:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-10  2:15 [Bug target/113859] New: popcount HI can be vectorized for non-SVE pinskia at gcc dot gnu.org
2024-02-10  3:41 ` [Bug target/113859] " pinskia at gcc dot gnu.org
2024-03-05  0:58 ` pinskia at gcc dot gnu.org
2024-05-09 18:05 ` pinskia at gcc dot gnu.org
2024-06-16  0:10 ` 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).