OSDN Git Service

Fix LP64 builds after OpenBSD string changes.
authorElliott Hughes <enh@google.com>
Tue, 25 Feb 2014 23:12:29 +0000 (15:12 -0800)
committerElliott Hughes <enh@google.com>
Tue, 25 Feb 2014 23:12:29 +0000 (15:12 -0800)
Change-Id: I07202f6484e716d153d0387fcfc023e119438251

libc/arch-arm64/arm64.mk
libc/arch-x86_64/x86_64.mk
libc/bionic/__memcmp16.cpp
libc/bionic/memcpy.cpp [moved from libc/bionic/memcpy.c with 82% similarity]

index a0eb954..76c610a 100644 (file)
@@ -5,7 +5,7 @@ libc_common_src_files_arm64 := \
     bionic/memchr.c \
     bionic/__memcmp16.cpp \
     bionic/memcmp.c \
-    bionic/memcpy.c \
+    bionic/memcpy.cpp \
     bionic/memmove.c \
     bionic/memrchr.c \
     bionic/memset.c \
index 9171c50..9bce065 100644 (file)
@@ -4,7 +4,7 @@ libc_common_src_files_x86_64 := \
     bionic/index.cpp \
     bionic/memchr.c \
     bionic/memcmp.c \
-    bionic/memcpy.c \
+    bionic/memcpy.cpp \
     bionic/memmove.c \
     bionic/memrchr.c \
     bionic/memset.c \
index bee0df1..eb3a08b 100644 (file)
@@ -31,14 +31,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #include <stddef.h>
 
 // Unoptimized version of __memcmp16.
-int __memcmp16(const unsigned short *ptr1, const unsigned short *ptr2, size_t n) {
-
+extern "C" int __memcmp16(const unsigned short* lhs, const unsigned short* rhs, size_t n) {
   for (size_t i = 0; i < n; i++) {
-    if (*ptr1 != *ptr2) {
-      return *ptr1 - *ptr2;
+    if (*lhs != *rhs) {
+      return *lhs - *rhs;
     }
-    ptr1++;
-    ptr2++;
+    lhs++;
+    rhs++;
   }
   return 0;
 }
similarity index 82%
rename from libc/bionic/memcpy.c
rename to libc/bionic/memcpy.cpp
index dea78b2..d527e85 100644 (file)
  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  */
-#define MEMCOPY
-#include "bcopy.c"
+
+#undef _FORTIFY_SOURCE
+#include <string.h>
+#include <strings.h>
+
+// Our unoptimized memcpy just calls the best bcopy available.
+// (It's this way round rather than the opposite because we're based on BSD source.)
+void* memcpy(void* dst, const void* src, size_t n) {
+  bcopy(src, dst, n);
+  return dst;
+}