aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/powerpc/memmove.c
AgeCommit message (Collapse)Author
2014-07-08PowerPC: Cleanup powerpc memmoveAdhemerval Zanella
Now that MEMCPY_OK_FOR_FWD_MEMMOVE should be define on memcopy.h there is no need to specialized powerpc memmove implementation. This patch moves the define set to powerpc memcopy and cleanup its definition on powerpc code.
2014-07-07PowerPC: memmove default implementation cleanupAdhemerval Zanella
This patch removes the powerpc specific logic in memmove and instead include default implementation with MEMCPY_OK_FOR_FWD_MEMMOVE defined. This lead in a increase performance, since the constraints to use memcpy in powerpc code are too restrictive and memcpy can be used for any forward memmove.
2014-07-03Fix -Wundef warning on PAGE_COPY_THRESHOLDSiddhesh Poyarekar
The PAGE_COPY_THRESHOLD macro is meant to be overridden by architecture-specific pagecopy.h, but it is currently done only by mach; all other architectures use the default. Check to see if the macro is defined in addition to whether it is set to a non-zero value.
2014-01-01Update copyright notices with scripts/update-copyrightsAllan McRae
2013-01-02Update copyright notices with scripts/update-copyrights.Joseph Myers
2012-05-12Fix warning in powerpc bcopyAndreas Schwab
2012-05-11[BZ #13673] Replace FSF snail mail address with URL.Thomas Schwinge
2012-04-18Have memmove call __builtin_memcopy on PowerPC if src and dest don't overlap.Will Schmidt