public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/113537] New: ext should be used more for __builtin_shufflevector
@ 2024-01-22  6:06 pinskia at gcc dot gnu.org
  2024-01-22  6:11 ` [Bug target/113537] " 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-01-22  6:06 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113537
           Summary: ext should be used more for __builtin_shufflevector
           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:
```
#define vector4 __attribute__((vector_size(4)))
#define vector8 __attribute__((vector_size(8)))
#define vector16 __attribute__((vector_size(16)))


vector8 char f3(vector16 char a)
{
  return __builtin_shufflevector  (a, a, 1, 2, 3, 4, 5, 6, 7, 8);
}

vector8 char f2(vector16 char a)
{
  return __builtin_shufflevector  (a, a, 1, 2, 3, 4, 5, 6, 7, 0);
}
```

Currently GCC produces:
```
f3:
        adrp    x0, .LC0
        ldr     q31, [x0, #:lo12:.LC0]
        tbl     v0.16b, {v0.16b}, v31.16b
        ret
f2:
        adrp    x0, .LC1
        ldr     q31, [x0, #:lo12:.LC1]
        tbl     v0.16b, {v0.16b}, v31.16b
        ret
```

But these should be optimized to just:
```
f3:
        ext     v0.16b, v0.16b, v0.16b, #1
        ret
f2:
        ext     v0.8b, v0.8b, v0.8b, #1
        ret
```

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

end of thread, other threads:[~2024-02-12  7:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-22  6:06 [Bug target/113537] New: ext should be used more for __builtin_shufflevector pinskia at gcc dot gnu.org
2024-01-22  6:11 ` [Bug target/113537] " pinskia at gcc dot gnu.org
2024-01-22  6:23 ` pinskia at gcc dot gnu.org
2024-01-22  6:51 ` pinskia at gcc dot gnu.org
2024-02-12  7:14 ` 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).