1 /* strcpy/stpcpy implementation for i586.
2 Copyright (C) 1997-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
21 #include "asm-syntax.h"
23 #define PARMS 4+12 /* space for 3 saved regs */
29 # define STRCPY strcpy
32 #define magic 0xfefefeff
38 cfi_adjust_cfa_offset (4)
40 cfi_adjust_cfa_offset (4)
42 cfi_adjust_cfa_offset (4)
45 cfi_rel_offset (edi, 8)
47 cfi_rel_offset (esi, 4)
53 cfi_rel_offset (ebx, 0)
58 cfi_adjust_cfa_offset (4)
60 cfi_adjust_cfa_offset (-4)
61 /* 0xb is the distance between 2: and 1: but we avoid writing
62 1f-2b because the assembler generates worse code. */
63 leal 0xb(%edx,%ecx,8), %ecx
65 leal 1f(,%ecx,8), %ecx
90 L(1): movl (%esi), %ecx
112 L(3): movl %ecx, %edx
116 L(4): movb %dl, (%edi)
147 L(end): movb %ah, (%edi)
153 movl DEST(%esp), %eax
156 cfi_adjust_cfa_offset (-4)
159 cfi_adjust_cfa_offset (-4)
162 cfi_adjust_cfa_offset (-4)
167 #ifndef USE_AS_STPCPY
168 libc_hidden_builtin_def (strcpy)