public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/113677] New: Missing `VEC_PERM_EXPR <{a, CST}, CST, {0, 1, 2, ...}>` optimization
@ 2024-01-31  1:46 pinskia at gcc dot gnu.org
  2024-01-31  1:47 ` [Bug tree-optimization/113677] " 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-01-31  1:46 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113677
           Summary: Missing `VEC_PERM_EXPR <{a, CST}, CST, {0, 1, 2,
                    ...}>` optimization
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

Take:
```
#define vect32 __attribute__((vector_size(4) ))
#define vect64 __attribute__((vector_size(8) ))

vect64 unsigned char f(vect32 unsigned char a)
{
  vect32 unsigned char zero={0,0,0,0};
  return __builtin_shufflevector (a, zero, 0, 1, 2, 3, 4, 5, 6, 7);
}

```
On x86_64 this produces:
```
f:
        movd    xmm0, edi
        pxor    xmm1, xmm1
        punpckldq       xmm0, xmm1
        ret
```

We should just produce:
```
        movd    xmm0, edi
        ret
```

In .optimized we get:
```
  _1 = {a_2(D), { 0, 0, 0, 0 }};
  _3 = VEC_PERM_EXPR <_1, { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 1, 2, 3, 8, 9, 10,
11 }>;
  return _3;
```


But _3 and _1 are the same ...

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

end of thread, other threads:[~2024-03-08  5:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-31  1:46 [Bug tree-optimization/113677] New: Missing `VEC_PERM_EXPR <{a, CST}, CST, {0, 1, 2, ...}>` optimization pinskia at gcc dot gnu.org
2024-01-31  1:47 ` [Bug tree-optimization/113677] " pinskia at gcc dot gnu.org
2024-01-31  2:16 ` pinskia at gcc dot gnu.org
2024-01-31  8:27 ` rguenth at gcc dot gnu.org
2024-02-06 17:05 ` pinskia at gcc dot gnu.org
2024-03-08  5:08 ` 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).