about summary refs log tree commit diff
path: root/sysdeps/powerpc/memmove.c
Commit message (Collapse)AuthorAgeFilesLines
* PowerPC: Cleanup powerpc memmoveAdhemerval Zanella2014-07-081-22/+0
| | | | | | | 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.
* PowerPC: memmove default implementation cleanupAdhemerval Zanella2014-07-071-97/+2
| | | | | | | | 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.
* Fix -Wundef warning on PAGE_COPY_THRESHOLDSiddhesh Poyarekar2014-07-031-1/+0
| | | | | | | 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.
* Update copyright notices with scripts/update-copyrightsAllan McRae2014-01-011-1/+1
|
* Update copyright notices with scripts/update-copyrights.Joseph Myers2013-01-021-1/+1
|
* Fix warning in powerpc bcopyAndreas Schwab2012-05-121-3/+3
|
* [BZ #13673] Replace FSF snail mail address with URL.Thomas Schwinge2012-05-111-3/+2
|
* Have memmove call __builtin_memcopy on PowerPC if src and dest don't overlap.Will Schmidt2012-04-181-0/+119