public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/61473] New: register sized memmove not inlined
@ 2014-06-11 12:23 jtaylor.debian at googlemail dot com
  2014-06-11 12:24 ` [Bug c/61473] " jtaylor.debian at googlemail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: jtaylor.debian at googlemail dot com @ 2014-06-11 12:23 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 61473
           Summary: register sized memmove not inlined
           Product: gcc
           Version: 4.10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jtaylor.debian at googlemail dot com

in this example file compiled with gcc-4.10 -O3 inlines the memcpy, but not the
memmove:

#include <string.h>
void a(int *a, int *b)
{
    memcpy(a, b, sizeof(*a));
}

void b(int *a, int *b)
{
    memmove(a, b, sizeof(*a));
}


at least on x86 the integer can be stored in fully in a register and saved back
to arbitrary aligned memory, so it should not matter if the two address overlap
and gcc should be able to replace it with a much faster inline memcpy.
Currently gcc only inlines the memmove for 1 byte types.

I am using a recent svn copy of gcc:
$ gcc-4.10 --version
gcc (GCC) 4.10.0 20140605 (experimental)


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

end of thread, other threads:[~2014-07-11 13:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-11 12:23 [Bug c/61473] New: register sized memmove not inlined jtaylor.debian at googlemail dot com
2014-06-11 12:24 ` [Bug c/61473] " jtaylor.debian at googlemail dot com
2014-06-12  9:26 ` [Bug middle-end/61473] " rguenth at gcc dot gnu.org
2014-07-11 13:43 ` rguenth at gcc dot gnu.org
2014-07-11 13:44 ` rguenth 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).