Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / i386 / i686 / mempcpy.S
blob21ee5b1b5c8a0fa07793cee60f65996dffde69d0
1 /* Copy memory block and return pointer to following byte.
2    For Intel 80x86, x>=6.
3    This file is part of the GNU C Library.
4    Copyright (C) 1998,1999,2000,2002,2004,2005 Free Software Foundation, Inc.
5    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
7    The GNU C Library is free software; you can redistribute it and/or
8    modify it under the terms of the GNU Lesser General Public
9    License as published by the Free Software Foundation; either
10    version 2.1 of the License, or (at your option) any later version.
12    The GNU C Library is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    Lesser General Public License for more details.
17    You should have received a copy of the GNU Lesser General Public
18    License along with the GNU C Library; if not, see
19    <http://www.gnu.org/licenses/>.  */
21 #include <sysdep.h>
22 #include "asm-syntax.h"
23 #include "bp-sym.h"
24 #include "bp-asm.h"
26 #define PARMS   LINKAGE         /* no space for saved regs */
27 #define RTN     PARMS
28 #define DEST    RTN+RTN_SIZE
29 #define SRC     DEST+PTR_SIZE
30 #define LEN     SRC+PTR_SIZE
32         .text
33 #if defined PIC && !defined NOT_IN_libc
34 ENTRY_CHK (__mempcpy_chk)
35         movl    12(%esp), %eax
36         cmpl    %eax, 16(%esp)
37         jb      HIDDEN_JUMPTARGET (__chk_fail)
38 END_CHK (__mempcpy_chk)
39 #endif
40 ENTRY (BP_SYM (__mempcpy))
41         ENTER
43         movl    LEN(%esp), %ecx
44         movl    %edi, %eax
45         cfi_register (edi, eax)
46         movl    DEST(%esp), %edi
47         CHECK_BOUNDS_BOTH_WIDE (%edi, DEST(%esp), %ecx)
48         movl    %esi, %edx
49         cfi_register (esi, edx)
50         movl    SRC(%esp), %esi
51         CHECK_BOUNDS_BOTH_WIDE (%esi, SRC(%esp), %ecx)
52         cld
53         shrl    $1, %ecx
54         jnc     1f
55         movsb
56 1:      shrl    $1, %ecx
57         jnc     2f
58         movsw
59 2:      rep
60         movsl
61         xchgl   %edi, %eax
62         cfi_restore (edi)
63         movl    %edx, %esi
64         cfi_restore (esi)
65         RETURN_BOUNDED_POINTER (DEST(%esp))
67         LEAVE
68         RET_PTR
69 END (BP_SYM (__mempcpy))
70 libc_hidden_def (BP_SYM (__mempcpy))
71 weak_alias (BP_SYM (__mempcpy), BP_SYM (mempcpy))
72 libc_hidden_builtin_def (mempcpy)