OSDN Git Service

Switch to FreeBSD for wcsstr and wmemcpy.
authorElliott Hughes <enh@google.com>
Thu, 13 Jul 2017 16:45:00 +0000 (09:45 -0700)
committerElliott Hughes <enh@google.com>
Thu, 13 Jul 2017 16:45:00 +0000 (09:45 -0700)
Almost all of our w* functions come from FreeBSD already. The one downside is
that we can't take all our w* functions from FreeBSD because FreeBSD handles
locales very differently from us.

Bug: N/A
Test: ran tests
Change-Id: I177b4332499992babd5d5afe5b3f469f8c4345a5

libc/Android.bp
libc/upstream-freebsd/lib/libc/string/wcsstr.c [moved from libc/upstream-openbsd/lib/libc/string/wcsstr.c with 52% similarity]
libc/upstream-freebsd/lib/libc/string/wmemcpy.c [moved from libc/upstream-openbsd/lib/libc/string/wmemcpy.c with 84% similarity]

index cd2a727..231f762 100644 (file)
@@ -237,9 +237,11 @@ cc_library_static {
         "upstream-freebsd/lib/libc/string/wcspbrk.c",
         "upstream-freebsd/lib/libc/string/wcsrchr.c",
         "upstream-freebsd/lib/libc/string/wcsspn.c",
+        "upstream-freebsd/lib/libc/string/wcsstr.c",
         "upstream-freebsd/lib/libc/string/wcstok.c",
         "upstream-freebsd/lib/libc/string/wmemchr.c",
         "upstream-freebsd/lib/libc/string/wmemcmp.c",
+        "upstream-freebsd/lib/libc/string/wmemcpy.c",
         "upstream-freebsd/lib/libc/string/wmemmove.c",
         "upstream-freebsd/lib/libc/string/wmemset.c",
     ],
@@ -501,9 +503,7 @@ cc_library_static {
         "upstream-openbsd/lib/libc/string/strspn.c",
         "upstream-openbsd/lib/libc/string/strstr.c",
         "upstream-openbsd/lib/libc/string/strtok.c",
-        "upstream-openbsd/lib/libc/string/wmemcpy.c",
         "upstream-openbsd/lib/libc/string/wcslcpy.c",
-        "upstream-openbsd/lib/libc/string/wcsstr.c",
         "upstream-openbsd/lib/libc/string/wcswidth.c",
     ],
 
@@ -1,9 +1,9 @@
-/*     $OpenBSD: wcsstr.c,v 1.5 2015/10/01 02:32:07 guenther Exp $     */
-/*     $NetBSD: wcsstr.c,v 1.3 2003/03/05 20:18:17 tshiozak Exp $      */
-
 /*-
- * Copyright (c)1999 Citrus Project,
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Chris Torek.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
  *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
- *
- *     citrus Id: wcsstr.c,v 1.2 2000/12/21 05:07:25 itojun Exp
  */
 
+#if 0
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)strstr.c   8.1 (Berkeley) 6/4/93";
+#endif /* LIBC_SCCS and not lint */
+#endif
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
 #include <wchar.h>
 
+/*
+ * Find the first occurrence of find in s.
+ */
 wchar_t *
-#ifdef WCSWCS
-wcswcs(const wchar_t *big, const wchar_t *little)
-#else
-wcsstr(const wchar_t *big, const wchar_t *little)
-#endif
+wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find)
 {
-       const wchar_t *p;
-       const wchar_t *q;
-       const wchar_t *r;
+       wchar_t c, sc;
+       size_t len;
 
-       if (!*little) {
-               return (wchar_t *)big;
+       if ((c = *find++) != L'\0') {
+               len = wcslen(find);
+               do {
+                       do {
+                               if ((sc = *s++) == L'\0')
+                                       return (NULL);
+                       } while (sc != c);
+               } while (wcsncmp(s, find, len) != 0);
+               s--;
        }
-       if (wcslen(big) < wcslen(little))
-               return NULL;
-
-       p = big;
-       q = little;
-       while (*p) {
-               q = little;
-               r = p;
-               while (*q) {
-                       if (*r != *q)
-                               break;
-                       q++;
-                       r++;
-               }
-               if (!*q) {
-                       return (wchar_t *)p;
-               }
-               p++;
-       }
-       return NULL;
+       return ((wchar_t *)s);
 }
-#ifndef WCSWCS
-DEF_STRONG(wcsstr);
-#endif
@@ -1,6 +1,3 @@
-/*     $OpenBSD: wmemcpy.c,v 1.4 2015/09/12 16:23:14 guenther Exp $    */
-/*     $NetBSD: wmemcpy.c,v 1.2 2001/01/03 14:29:37 lukem Exp $        */
-
 /*-
  * Copyright (c)1999 Citrus Project,
  * All rights reserved.
  *     citrus Id: wmemcpy.c,v 1.2 2000/12/20 14:08:31 itojun Exp
  */
 
+#include <sys/cdefs.h>
+#if 0
+#if defined(LIBC_SCCS) && !defined(lint)
+__RCSID("$NetBSD: wmemcpy.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
+#endif /* LIBC_SCCS and not lint */
+#endif
+__FBSDID("$FreeBSD$");
+
 #include <string.h>
 #include <wchar.h>
 
 wchar_t *
-wmemcpy(wchar_t *d, const wchar_t *s, size_t n)
+wmemcpy(wchar_t * __restrict d, const wchar_t * __restrict s, size_t n)
 {
-
        return (wchar_t *)memcpy(d, s, n * sizeof(wchar_t));
 }
-DEF_STRONG(wmemcpy);