Remove dead code from x86-32 SSSE3 strncmp.
[glibc.git] / string / memmove.c
blob8e36e7c5a3f93ad0927afe859afe4a77155fcdb6
1 /* Copy memory to memory until the specified number of bytes
2 has been copied. Overlap is handled correctly.
3 Copyright (C) 1991, 1995, 1996, 1997, 2003 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Torbjorn Granlund (tege@sics.se).
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, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
22 #include <string.h>
23 #include <memcopy.h>
24 #include <pagecopy.h>
26 /* All this is so that bcopy.c can #include
27 this file after defining some things. */
28 #ifndef a1
29 #define a1 dest /* First arg is DEST. */
30 #define a1const
31 #define a2 src /* Second arg is SRC. */
32 #define a2const const
33 #undef memmove
34 #endif
35 #if !defined(RETURN) || !defined(rettype)
36 #define RETURN(s) return (s) /* Return DEST. */
37 #define rettype void *
38 #endif
40 #ifndef MEMMOVE
41 #define MEMMOVE memmove
42 #endif
44 rettype
45 MEMMOVE (a1, a2, len)
46 a1const void *a1;
47 a2const void *a2;
48 size_t len;
50 unsigned long int dstp = (long int) dest;
51 unsigned long int srcp = (long int) src;
53 /* This test makes the forward copying code be used whenever possible.
54 Reduces the working set. */
55 if (dstp - srcp >= len) /* *Unsigned* compare! */
57 /* Copy from the beginning to the end. */
59 /* If there not too few bytes to copy, use word copy. */
60 if (len >= OP_T_THRES)
62 /* Copy just a few bytes to make DSTP aligned. */
63 len -= (-dstp) % OPSIZ;
64 BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ);
66 /* Copy whole pages from SRCP to DSTP by virtual address
67 manipulation, as much as possible. */
69 PAGE_COPY_FWD_MAYBE (dstp, srcp, len, len);
71 /* Copy from SRCP to DSTP taking advantage of the known
72 alignment of DSTP. Number of bytes remaining is put
73 in the third argument, i.e. in LEN. This number may
74 vary from machine to machine. */
76 WORD_COPY_FWD (dstp, srcp, len, len);
78 /* Fall out and copy the tail. */
81 /* There are just a few bytes to copy. Use byte memory operations. */
82 BYTE_COPY_FWD (dstp, srcp, len);
84 else
86 /* Copy from the end to the beginning. */
87 srcp += len;
88 dstp += len;
90 /* If there not too few bytes to copy, use word copy. */
91 if (len >= OP_T_THRES)
93 /* Copy just a few bytes to make DSTP aligned. */
94 len -= dstp % OPSIZ;
95 BYTE_COPY_BWD (dstp, srcp, dstp % OPSIZ);
97 /* Copy from SRCP to DSTP taking advantage of the known
98 alignment of DSTP. Number of bytes remaining is put
99 in the third argument, i.e. in LEN. This number may
100 vary from machine to machine. */
102 WORD_COPY_BWD (dstp, srcp, len, len);
104 /* Fall out and copy the tail. */
107 /* There are just a few bytes to copy. Use byte memory operations. */
108 BYTE_COPY_BWD (dstp, srcp, len);
111 RETURN (dest);
113 #ifndef memmove
114 libc_hidden_builtin_def (memmove)
115 #endif