Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / powerpc / power4 / wordcopy.c
blob263b44455cd884e5d320697940464d9db0b7ef8c
1 /* _memcopy.c -- subroutines for memory copy functions.
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Torbjorn Granlund (tege@sics.se).
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/>. */
20 /* BE VERY CAREFUL IF YOU CHANGE THIS CODE...! */
22 #include <stddef.h>
23 #include <memcopy.h>
25 /* _wordcopy_fwd_aligned -- Copy block beginning at SRCP to
26 block beginning at DSTP with LEN `op_t' words (not LEN bytes!).
27 Both SRCP and DSTP should be aligned for memory operations on `op_t's. */
29 #ifndef WORDCOPY_FWD_ALIGNED
30 # define WORDCOPY_FWD_ALIGNED _wordcopy_fwd_aligned
31 #endif
33 void
34 WORDCOPY_FWD_ALIGNED (long int dstp, long int srcp, size_t len)
36 op_t a0, a1;
38 if (len & 1)
40 ((op_t *) dstp)[0] = ((op_t *) srcp)[0];
42 if (len == 1)
43 return;
44 srcp += OPSIZ;
45 dstp += OPSIZ;
46 len -= 1;
51 a0 = ((op_t *) srcp)[0];
52 a1 = ((op_t *) srcp)[1];
53 ((op_t *) dstp)[0] = a0;
54 ((op_t *) dstp)[1] = a1;
56 srcp += 2 * OPSIZ;
57 dstp += 2 * OPSIZ;
58 len -= 2;
60 while (len != 0);
63 /* _wordcopy_fwd_dest_aligned -- Copy block beginning at SRCP to
64 block beginning at DSTP with LEN `op_t' words (not LEN bytes!).
65 DSTP should be aligned for memory operations on `op_t's, but SRCP must
66 *not* be aligned. */
68 #ifndef WORDCOPY_FWD_DEST_ALIGNED
69 # define WORDCOPY_FWD_DEST_ALIGNED _wordcopy_fwd_dest_aligned
70 #endif
72 void
73 WORDCOPY_FWD_DEST_ALIGNED (long int dstp, long int srcp, size_t len)
75 op_t a0, a1, a2;
76 int sh_1, sh_2;
78 /* Calculate how to shift a word read at the memory operation
79 aligned srcp to make it aligned for copy. */
81 sh_1 = 8 * (srcp % OPSIZ);
82 sh_2 = 8 * OPSIZ - sh_1;
84 /* Make SRCP aligned by rounding it down to the beginning of the `op_t'
85 it points in the middle of. */
86 srcp &= -OPSIZ;
87 a0 = ((op_t *) srcp)[0];
89 if (len & 1)
91 a1 = ((op_t *) srcp)[1];
92 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2);
94 if (len == 1)
95 return;
97 a0 = a1;
98 srcp += OPSIZ;
99 dstp += OPSIZ;
100 len -= 1;
105 a1 = ((op_t *) srcp)[1];
106 a2 = ((op_t *) srcp)[2];
107 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2);
108 ((op_t *) dstp)[1] = MERGE (a1, sh_1, a2, sh_2);
109 a0 = a2;
111 srcp += 2 * OPSIZ;
112 dstp += 2 * OPSIZ;
113 len -= 2;
115 while (len != 0);
118 /* _wordcopy_bwd_aligned -- Copy block finishing right before
119 SRCP to block finishing right before DSTP with LEN `op_t' words
120 (not LEN bytes!). Both SRCP and DSTP should be aligned for memory
121 operations on `op_t's. */
123 #ifndef WORDCOPY_BWD_ALIGNED
124 # define WORDCOPY_BWD_ALIGNED _wordcopy_bwd_aligned
125 #endif
127 void
128 WORDCOPY_BWD_ALIGNED (long int dstp, long int srcp, size_t len)
130 op_t a0, a1;
132 if (len & 1)
134 srcp -= OPSIZ;
135 dstp -= OPSIZ;
136 ((op_t *) dstp)[0] = ((op_t *) srcp)[0];
138 if (len == 1)
139 return;
140 len -= 1;
145 srcp -= 2 * OPSIZ;
146 dstp -= 2 * OPSIZ;
148 a1 = ((op_t *) srcp)[1];
149 a0 = ((op_t *) srcp)[0];
150 ((op_t *) dstp)[1] = a1;
151 ((op_t *) dstp)[0] = a0;
153 len -= 2;
155 while (len != 0);
158 /* _wordcopy_bwd_dest_aligned -- Copy block finishing right
159 before SRCP to block finishing right before DSTP with LEN `op_t'
160 words (not LEN bytes!). DSTP should be aligned for memory
161 operations on `op_t', but SRCP must *not* be aligned. */
163 #ifndef WORDCOPY_BWD_DEST_ALIGNED
164 # define WORDCOPY_BWD_DEST_ALIGNED _wordcopy_bwd_dest_aligned
165 #endif
167 void
168 WORDCOPY_BWD_DEST_ALIGNED (long int dstp, long int srcp, size_t len)
170 op_t a0, a1, a2;
171 int sh_1, sh_2;
173 /* Calculate how to shift a word read at the memory operation
174 aligned srcp to make it aligned for copy. */
176 sh_1 = 8 * (srcp % OPSIZ);
177 sh_2 = 8 * OPSIZ - sh_1;
179 /* Make srcp aligned by rounding it down to the beginning of the op_t
180 it points in the middle of. */
181 srcp &= -OPSIZ;
182 a2 = ((op_t *) srcp)[0];
184 if (len & 1)
186 srcp -= OPSIZ;
187 dstp -= OPSIZ;
188 a1 = ((op_t *) srcp)[0];
189 ((op_t *) dstp)[0] = MERGE (a1, sh_1, a2, sh_2);
191 if (len == 1)
192 return;
194 a2 = a1;
195 len -= 1;
200 srcp -= 2 * OPSIZ;
201 dstp -= 2 * OPSIZ;
203 a1 = ((op_t *) srcp)[1];
204 a0 = ((op_t *) srcp)[0];
205 ((op_t *) dstp)[1] = MERGE (a1, sh_1, a2, sh_2);
206 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2);
207 a2 = a0;
209 len -= 2;
211 while (len != 0);