public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/107263] New: Memcpy not elided when initializing struct
@ 2022-10-14 13:13 jmuizelaar at mozilla dot com
  2022-10-14 15:45 ` [Bug tree-optimization/107263] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: jmuizelaar at mozilla dot com @ 2022-10-14 13:13 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 107263
           Summary: Memcpy not elided when initializing struct
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jmuizelaar at mozilla dot com
  Target Milestone: ---

With the following code

struct Foo {
    Foo* next;
    char arr[580];
};

void ctx_push(Foo* f) {
    Foo tmp = { f->next };
    *f = tmp;
}

Clang is able to generate code that just memsets `arr`. GCC instead initializes
the entire struct on the stack and then copies it into `f`.

https://gcc.godbolt.org/z/Yzcbs4G71

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

end of thread, other threads:[~2024-03-19 17:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-14 13:13 [Bug tree-optimization/107263] New: Memcpy not elided when initializing struct jmuizelaar at mozilla dot com
2022-10-14 15:45 ` [Bug tree-optimization/107263] " pinskia at gcc dot gnu.org
2022-10-17  7:43 ` rguenth at gcc dot gnu.org
2022-10-17 13:28 ` jmuizelaar at mozilla dot com
2024-03-19 17:27 ` hiraditya at msn dot com

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).