PowerPC: Cleanup powerpc memmove
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Tue, 8 Jul 2014 13:54:09 +0000 (08:54 -0500)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Tue, 8 Jul 2014 14:16:15 +0000 (09:16 -0500)
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.

ChangeLog
sysdeps/powerpc/memmove.c [deleted file]
sysdeps/powerpc/powerpc32/power4/memcopy.h
sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c
sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c

index 39fce07ce352b66c208b54e04abd7e7b2768a1e4..1c7e41de8ddba1a29ef766e835057a166a78caf4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2014-07-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
+       * sysdeps/powerpc/memmove.c: Remove file.
+       * sysdeps/powerpc/powerpc32/power4/memcopy.h
+       [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
+       * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
+       [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
+       * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
+       [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
+       * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
+       string memmove instead of removed powerpc one.
+
        * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
        [weak_alias]: Fix compiler warning due trailing data.
        * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
diff --git a/sysdeps/powerpc/memmove.c b/sysdeps/powerpc/memmove.c
deleted file mode 100644 (file)
index 9c62ecb..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copy memory to memory until the specified number of bytes
-   has been copied.  Overlap is handled correctly.
-   Copyright (C) 1991-2014 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-   Contributed by Torbjorn Granlund (tege@sics.se).
-
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 of the License, or (at your option) any later version.
-
-   The GNU C Library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Lesser General Public License for more details.
-
-   You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, see <http://www.gnu.org/licenses/>.  */
-
-#define MEMCPY_OK_FOR_FWD_MEMMOVE 1
-#include <string/memmove.c>
index d3752dcc1c82338a1855a01aaa8796fc63db9d18..34310844496a284cc67209b803f43ed5c023c534 100644 (file)
          ((byte *) dst_ep)[0] = __x;                                         \
        }                                                                     \
     } while (0)
+
+/* The powerpc memcpy implementation is safe to use for memmove.  */
+#undef MEMCPY_OK_FOR_FWD_MEMMOVE
+#define MEMCPY_OK_FOR_FWD_MEMMOVE 1
index 2861071bad715acf823b7de662cbe2d08c137f1b..b14c3b193cc4fa0da1649f4314923123465cef2c 100644 (file)
@@ -27,5 +27,4 @@ extern __typeof (memmove) __memmove_power7;
 #undef libc_hidden_builtin_def
 #define libc_hidden_builtin_def(name)
 
-#define MEMCPY_OK_FOR_FWD_MEMMOVE 1
 #include <string/memmove.c>
index e323a4d73635628d6c494ed51e95a3113f7c0906..d56b77a1db9909f1d8a8b86a303e97fd2bfae5f7 100644 (file)
@@ -30,5 +30,4 @@ extern __typeof (memmove) __memmove_ppc;
   __hidden_ver1 (__memmove_ppc, __GI_memmove, __memmove_ppc);
 #endif
 
-#define MEMCPY_OK_FOR_FWD_MEMMOVE 1
 #include <string/memmove.c>
index b39348f9a63731cf9134de821c7929da62efcf23..ff78fe6257e4e5db646fedf5a3bd9fafefee2607 100644 (file)
@@ -25,4 +25,4 @@
 
 extern __typeof (memmove) __memmove_ppc attribute_hidden;
 
-#include <sysdeps/powerpc/memmove.c>
+#include <string/memmove.c>