1 /* strcpy/stpcpy implementation for i586.
2 Copyright (C) 1997, 2000, 2003, 2005 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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 #include "asm-syntax.h"
26 #define PARMS LINKAGE+12 /* space for 3 saved regs */
28 #define DEST RTN+RTN_SIZE
29 #define SRC DEST+PTR_SIZE
32 # define STRCPY strcpy
35 #define magic 0xfefefeff
38 ENTRY (BP_SYM (STRCPY))
42 cfi_adjust_cfa_offset (4)
44 cfi_adjust_cfa_offset (4)
46 cfi_adjust_cfa_offset (4)
49 cfi_rel_offset (edi, 8)
51 cfi_rel_offset (esi, 4)
52 CHECK_BOUNDS_LOW (%edi, DEST(%esp))
53 CHECK_BOUNDS_LOW (%esi, SRC(%esp))
59 cfi_rel_offset (ebx, 0)
64 cfi_adjust_cfa_offset (4)
66 cfi_adjust_cfa_offset (-4)
67 /* 0xb is the distance between 2: and 1: but we avoid writing
68 1f-2b because the assembler generates worse code. */
69 leal 0xb(%edx,%ecx,8), %ecx
71 leal 1f(,%ecx,8), %ecx
96 L(1): movl (%esi), %ecx
118 L(3): movl %ecx, %edx
122 L(4): movb %dl, (%edi)
153 L(end): movb %ah, (%edi)
156 /* GKM FIXME: check high bounds */
160 movl DEST(%esp), %eax
162 RETURN_BOUNDED_POINTER (DEST(%esp))
164 cfi_adjust_cfa_offset (-4)
167 cfi_adjust_cfa_offset (-4)
170 cfi_adjust_cfa_offset (-4)
175 END (BP_SYM (STRCPY))
176 #ifndef USE_AS_STPCPY
177 libc_hidden_builtin_def (strcpy)