public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/96271] New: Failure to optimize memcmp of doubles to avoid going through memory
@ 2020-07-21 16:41 gabravier at gmail dot com
  2020-07-21 18:49 ` [Bug target/96271] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gabravier at gmail dot com @ 2020-07-21 16:41 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96271
           Summary: Failure to optimize memcmp of doubles to avoid going
                    through memory
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gabravier at gmail dot com
  Target Milestone: ---

bool f(double a, double b)
{
   return memcmp(&a, &b, sizeof(double)) == 0;
}

With -O3, LLVM outputs this :

f(double, double):
  movq rax, xmm0
  movq rcx, xmm1
  cmp rax, rcx
  sete al
  ret

GCC outputs this:

f(double, double):
  movsd QWORD PTR [rsp-8], xmm0
  movsd QWORD PTR [rsp-16], xmm1
  mov rax, QWORD PTR [rsp-16]
  cmp QWORD PTR [rsp-8], rax
  sete al
  ret

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

end of thread, other threads:[~2021-01-16  8:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-21 16:41 [Bug tree-optimization/96271] New: Failure to optimize memcmp of doubles to avoid going through memory gabravier at gmail dot com
2020-07-21 18:49 ` [Bug target/96271] " pinskia at gcc dot gnu.org
2020-07-21 22:13 ` gabravier at gmail dot com
2020-07-22  7:23 ` crazylht at gmail dot com
2020-07-22  7:59 ` [Bug tree-optimization/96271] " rguenth at gcc dot gnu.org
2021-01-15 14:26 ` jakub at gcc dot gnu.org
2021-01-16  8:20 ` cvs-commit at gcc dot gnu.org
2021-01-16  8:26 ` jakub at gcc dot gnu.org
2021-01-16  8:43 ` 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).