public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/96906] New: Failure to optimize __builtin_ia32_psubusw128 compared to 0 to __builtin_ia32_pminuw128 compared to operand
@ 2020-09-02 20:22 gabravier at gmail dot com
  2020-09-03  3:06 ` [Bug target/96906] " crazylht at gmail dot com
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: gabravier at gmail dot com @ 2020-09-02 20:22 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96906
           Summary: Failure to optimize __builtin_ia32_psubusw128 compared
                    to 0 to __builtin_ia32_pminuw128 compared to operand
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gabravier at gmail dot com
  Target Milestone: ---

typedef int16_t v8i16 __attribute__((vector_size(16)));

v8i16 cmple_epu16(v8i16 x, v8i16 y)
{
        return __builtin_ia32_psubusw128(x, y) == 0;
}

With -msse4.1, this can be optimized to `return __builtin_ia32_pminuw128(x, y)
== x;`. This transformation is done by LLVM, but not by GCC. 

PS: I'm not 100% sure this is faster but it logically should be, since the
`pminuw` version doesn't have to handle zeroing an SSE register.

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

end of thread, other threads:[~2021-01-12 15:21 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-02 20:22 [Bug target/96906] New: Failure to optimize __builtin_ia32_psubusw128 compared to 0 to __builtin_ia32_pminuw128 compared to operand gabravier at gmail dot com
2020-09-03  3:06 ` [Bug target/96906] " crazylht at gmail dot com
2020-09-03  3:29 ` crazylht at gmail dot com
2020-09-03  3:54 ` crazylht at gmail dot com
2020-11-24 17:20 ` jakub at gcc dot gnu.org
2020-11-26  7:48 ` cvs-commit at gcc dot gnu.org
2020-11-26  8:58 ` jakub at gcc dot gnu.org
2020-11-26  9:03 ` crazylht at gmail dot com
2020-12-03  5:45 ` cvs-commit at gcc dot gnu.org
2020-12-03  5:46 ` crazylht at gmail dot com
2021-01-12 15:21 ` jakub 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).