Update copyright notices with scripts/update-copyrights
[jlayton/glibc.git] / sysdeps / powerpc / memmove.c
1 /* Copy memory to memory until the specified number of bytes
2    has been copied.  Overlap is handled correctly.
3    Copyright (C) 1991-2014 Free Software Foundation, Inc.
4    This file is part of the GNU C Library.
5    Contributed by Torbjorn Granlund (tege@sics.se).
6
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.
11
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.
16
17    You should have received a copy of the GNU Lesser General Public
18    License along with the GNU C Library; see the file COPYING.LIB.  If
19    not, see <http://www.gnu.org/licenses/>.  */
20
21 #include <string.h>
22 #include <memcopy.h>
23 #include <pagecopy.h>
24
25 /* All this is so that bcopy.c can #include
26    this file after defining some things.  */
27 #ifndef        a1
28 #define        a1      dest    /* First arg is DEST.  */
29 #define        a1const
30 #define        a2      src     /* Second arg is SRC.  */
31 #define        a2const const
32 #undef memmove
33 #endif
34 #if    !defined(RETURN) || !defined(rettype)
35 #define        RETURN(s)       return (s)      /* Return DEST.  */
36 #define        rettype         void *
37 #endif
38
39 #ifndef MEMMOVE
40 #define MEMMOVE memmove
41 #endif
42
43 rettype
44 MEMMOVE (a1, a2, len)
45      a1const void *a1;
46      a2const void *a2;
47      size_t len;
48 {
49   unsigned long int dstp = (long int) dest;
50   unsigned long int srcp = (long int) src;
51
52   /* If there is no overlap between ranges, call the builtin memcpy.  */
53   if (dstp >= srcp + len || srcp > dstp + len)
54     __builtin_memcpy (dest, src, len);
55
56   /* This test makes the forward copying code be used whenever possible.
57      Reduces the working set.  */
58   else if (dstp - srcp >= len)      /* *Unsigned* compare!  */
59     {
60       /* Copy from the beginning to the end.  */
61
62       /* If there not too few bytes to copy, use word copy.  */
63       if (len >= OP_T_THRES)
64        {
65          /* Copy just a few bytes to make DSTP aligned.  */
66          len -= (-dstp) % OPSIZ;
67          BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ);
68
69          /* Copy whole pages from SRCP to DSTP by virtual address
70             manipulation, as much as possible.  */
71
72          PAGE_COPY_FWD_MAYBE (dstp, srcp, len, len);
73
74          /* Copy from SRCP to DSTP taking advantage of the known
75             alignment of DSTP.  Number of bytes remaining is put
76             in the third argument, i.e. in LEN.  This number may
77             vary from machine to machine.  */
78
79          WORD_COPY_FWD (dstp, srcp, len, len);
80
81          /* Fall out and copy the tail.  */
82        }
83
84       /* There are just a few bytes to copy.  Use byte memory operations.  */
85       BYTE_COPY_FWD (dstp, srcp, len);
86     }
87   else
88     {
89       /* Copy from the end to the beginning.  */
90       srcp += len;
91       dstp += len;
92
93       /* If there not too few bytes to copy, use word copy.  */
94       if (len >= OP_T_THRES)
95        {
96          /* Copy just a few bytes to make DSTP aligned.  */
97          len -= dstp % OPSIZ;
98          BYTE_COPY_BWD (dstp, srcp, dstp % OPSIZ);
99
100          /* Copy from SRCP to DSTP taking advantage of the known
101             alignment of DSTP.  Number of bytes remaining is put
102             in the third argument, i.e. in LEN.  This number may
103             vary from machine to machine.  */
104
105          WORD_COPY_BWD (dstp, srcp, len, len);
106
107          /* Fall out and copy the tail.  */
108        }
109
110       /* There are just a few bytes to copy.  Use byte memory operations.  */
111       BYTE_COPY_BWD (dstp, srcp, len);
112     }
113
114   RETURN (dest);
115 }
116 #ifndef memmove
117 libc_hidden_builtin_def (memmove)
118 #endif