diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-08-20 12:05:50 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-08-27 09:35:11 -0700 |
commit | 4fadad5ce5208d12fd65538ecbec1b97ae83b440 (patch) | |
tree | 78866f58140f82a6332733a99fc9ab17de32d904 /sysdeps/i386/i586 | |
parent | 377adacbaaa3974408b708a20912474e45cd383b (diff) | |
download | glibc-4fadad5ce5208d12fd65538ecbec1b97ae83b440.tar.gz glibc-4fadad5ce5208d12fd65538ecbec1b97ae83b440.tar.xz glibc-4fadad5ce5208d12fd65538ecbec1b97ae83b440.zip |
Add i386 strcpy family multiarch functions
Diffstat (limited to 'sysdeps/i386/i586')
-rw-r--r-- | sysdeps/i386/i586/multiarch/rtld-stpcpy.S | 19 | ||||
-rw-r--r-- | sysdeps/i386/i586/multiarch/stpcpy-i386.S | 8 | ||||
-rw-r--r-- | sysdeps/i386/i586/multiarch/stpcpy-i586.S | 7 | ||||
-rw-r--r-- | sysdeps/i386/i586/multiarch/stpcpy.c | 1 | ||||
-rw-r--r-- | sysdeps/i386/i586/multiarch/strcpy-i586.S | 7 | ||||
-rw-r--r-- | sysdeps/i386/i586/multiarch/strcpy.c | 1 |
6 files changed, 43 insertions, 0 deletions
diff --git a/sysdeps/i386/i586/multiarch/rtld-stpcpy.S b/sysdeps/i386/i586/multiarch/rtld-stpcpy.S new file mode 100644 index 0000000000..dc0e337fcd --- /dev/null +++ b/sysdeps/i386/i586/multiarch/rtld-stpcpy.S @@ -0,0 +1,19 @@ +/* stpcpy for ld.so + Copyright (C) 2015 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + 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; if not, see + <http://www.gnu.org/licenses/>. */ + +#include <sysdeps/i386/i586/stpcpy.S> diff --git a/sysdeps/i386/i586/multiarch/stpcpy-i386.S b/sysdeps/i386/i586/multiarch/stpcpy-i386.S new file mode 100644 index 0000000000..80d8bea613 --- /dev/null +++ b/sysdeps/i386/i586/multiarch/stpcpy-i386.S @@ -0,0 +1,8 @@ +#define __stpcpy __stpcpy_i386 +#undef libc_hidden_builtin_def +#define libc_hidden_builtin_def(name) +#undef libc_hidden_def +#define libc_hidden_def(name) +#undef weak_alias +#define weak_alias(name, aliasname) +#include <sysdeps/i386/stpcpy.S> diff --git a/sysdeps/i386/i586/multiarch/stpcpy-i586.S b/sysdeps/i386/i586/multiarch/stpcpy-i586.S new file mode 100644 index 0000000000..ad942bf568 --- /dev/null +++ b/sysdeps/i386/i586/multiarch/stpcpy-i586.S @@ -0,0 +1,7 @@ +#include <sysdeps/i386/multiarch/stpcpy-i586.S> + +#ifdef SHARED + .globl __GI_stpcpy + .hidden __GI_stpcpy + __GI_stpcpy = __stpcpy_i586 +#endif diff --git a/sysdeps/i386/i586/multiarch/stpcpy.c b/sysdeps/i386/i586/multiarch/stpcpy.c new file mode 100644 index 0000000000..ab6cc065e1 --- /dev/null +++ b/sysdeps/i386/i586/multiarch/stpcpy.c @@ -0,0 +1 @@ +#include <sysdeps/i386/multiarch/stpcpy.c> diff --git a/sysdeps/i386/i586/multiarch/strcpy-i586.S b/sysdeps/i386/i586/multiarch/strcpy-i586.S new file mode 100644 index 0000000000..b9b15b5424 --- /dev/null +++ b/sysdeps/i386/i586/multiarch/strcpy-i586.S @@ -0,0 +1,7 @@ +#include <sysdeps/i386/multiarch/strcpy-i586.S> + +#ifdef SHARED + .globl __GI_strcpy + .hidden __GI_strcpy + __GI_strcpy = __strcpy_i586 +#endif diff --git a/sysdeps/i386/i586/multiarch/strcpy.c b/sysdeps/i386/i586/multiarch/strcpy.c new file mode 100644 index 0000000000..65f5398e2c --- /dev/null +++ b/sysdeps/i386/i586/multiarch/strcpy.c @@ -0,0 +1 @@ +#include <sysdeps/i386/multiarch/strcpy.c> |