public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/110429] New: Redundant vector extract instruction on P9
@ 2023-06-27  9:12 guihaoc at gcc dot gnu.org
  2023-08-16  6:55 ` [Bug target/110429] " cvs-commit at gcc dot gnu.org
  2023-08-17  5:26 ` guihaoc at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: guihaoc at gcc dot gnu.org @ 2023-06-27  9:12 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110429
           Summary: Redundant vector extract instruction on P9
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: guihaoc at gcc dot gnu.org
  Target Milestone: ---

//test.c
#include <altivec.h>
void extract_int_2 (int *p, vector int a) { *p = vec_extract (a, 2); }

On P9 LE, it generates
        xxextractuw 34,34,4
        stxsiwx 34,0,3

The xxextractuw is unnecessary as the extracted int is just at word[1].

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

end of thread, other threads:[~2023-08-17  5:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-27  9:12 [Bug target/110429] New: Redundant vector extract instruction on P9 guihaoc at gcc dot gnu.org
2023-08-16  6:55 ` [Bug target/110429] " cvs-commit at gcc dot gnu.org
2023-08-17  5:26 ` guihaoc 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).