1 /* Highly optimized version for i586.
2 Copyright (C) 1997-2014 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 /* BEWARE: `#ifdef memcpy' means that memcpy is redefined as `mempcpy',
24 and the return value is the byte after the last one copied in
26 #define MEMPCPY_P (defined memcpy)
28 #define PARMS 4+8 /* space for 2 saved regs */
35 #if defined PIC && !defined NOT_IN_libc
39 jb HIDDEN_JUMPTARGET (__chk_fail)
45 cfi_adjust_cfa_offset (4)
47 cfi_adjust_cfa_offset (4)
50 cfi_rel_offset (edi, 4)
52 cfi_rel_offset (esi, 0)
56 /* We need this in any case. */
59 /* Cutoff for the big loop is a size of 32 bytes since otherwise
60 the loop will never be entered. */
75 /* Read ahead to make sure we write in the cache since the stupid
76 i586 designers haven't implemented read-on-write-miss. */
78 L(3): movl 28(%edi), %edx
80 /* Now correct the loop counter. Please note that in the following
81 code the flags are not changed anymore. */
106 /* Correct extra loop counter modification. */
109 movl DEST(%esp), %eax
119 cfi_adjust_cfa_offset (-4)
122 cfi_adjust_cfa_offset (-4)
128 libc_hidden_builtin_def (memcpy)