memmove.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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).
  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.
  10. The GNU C Library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. Lesser General Public License for more details.
  14. You should have received a copy of the GNU Lesser General Public
  15. License along with the GNU C Library; if not, write to the Free
  16. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  17. 02111-1307 USA. */
  18. #include <string.h>
  19. #include "memcopy.h"
  20. #include "pagecopy.h"
  21. static void _wordcopy_bwd_aligned (long int dstp, long int srcp, size_t len)
  22. {
  23. op_t a0, a1;
  24. switch (len % 8)
  25. {
  26. case 2:
  27. srcp -= 2 * OPSIZ;
  28. dstp -= 1 * OPSIZ;
  29. a0 = ((op_t *) srcp)[1];
  30. len += 6;
  31. goto do1;
  32. case 3:
  33. srcp -= 3 * OPSIZ;
  34. dstp -= 2 * OPSIZ;
  35. a1 = ((op_t *) srcp)[2];
  36. len += 5;
  37. goto do2;
  38. case 4:
  39. srcp -= 4 * OPSIZ;
  40. dstp -= 3 * OPSIZ;
  41. a0 = ((op_t *) srcp)[3];
  42. len += 4;
  43. goto do3;
  44. case 5:
  45. srcp -= 5 * OPSIZ;
  46. dstp -= 4 * OPSIZ;
  47. a1 = ((op_t *) srcp)[4];
  48. len += 3;
  49. goto do4;
  50. case 6:
  51. srcp -= 6 * OPSIZ;
  52. dstp -= 5 * OPSIZ;
  53. a0 = ((op_t *) srcp)[5];
  54. len += 2;
  55. goto do5;
  56. case 7:
  57. srcp -= 7 * OPSIZ;
  58. dstp -= 6 * OPSIZ;
  59. a1 = ((op_t *) srcp)[6];
  60. len += 1;
  61. goto do6;
  62. case 0:
  63. if (OP_T_THRES <= 3 * OPSIZ && len == 0)
  64. return;
  65. srcp -= 8 * OPSIZ;
  66. dstp -= 7 * OPSIZ;
  67. a0 = ((op_t *) srcp)[7];
  68. goto do7;
  69. case 1:
  70. srcp -= 9 * OPSIZ;
  71. dstp -= 8 * OPSIZ;
  72. a1 = ((op_t *) srcp)[8];
  73. len -= 1;
  74. if (OP_T_THRES <= 3 * OPSIZ && len == 0)
  75. goto do0;
  76. goto do8; /* No-op. */
  77. }
  78. do
  79. {
  80. do8:
  81. a0 = ((op_t *) srcp)[7];
  82. ((op_t *) dstp)[7] = a1;
  83. do7:
  84. a1 = ((op_t *) srcp)[6];
  85. ((op_t *) dstp)[6] = a0;
  86. do6:
  87. a0 = ((op_t *) srcp)[5];
  88. ((op_t *) dstp)[5] = a1;
  89. do5:
  90. a1 = ((op_t *) srcp)[4];
  91. ((op_t *) dstp)[4] = a0;
  92. do4:
  93. a0 = ((op_t *) srcp)[3];
  94. ((op_t *) dstp)[3] = a1;
  95. do3:
  96. a1 = ((op_t *) srcp)[2];
  97. ((op_t *) dstp)[2] = a0;
  98. do2:
  99. a0 = ((op_t *) srcp)[1];
  100. ((op_t *) dstp)[1] = a1;
  101. do1:
  102. a1 = ((op_t *) srcp)[0];
  103. ((op_t *) dstp)[0] = a0;
  104. srcp -= 8 * OPSIZ;
  105. dstp -= 8 * OPSIZ;
  106. len -= 8;
  107. }
  108. while (len != 0);
  109. /* This is the right position for do0. Please don't move
  110. it into the loop. */
  111. do0:
  112. ((op_t *) dstp)[7] = a1;
  113. }
  114. /* _wordcopy_bwd_dest_aligned -- Copy block finishing right
  115. before SRCP to block finishing right before DSTP with LEN `op_t'
  116. words (not LEN bytes!). DSTP should be aligned for memory
  117. operations on `op_t', but SRCP must *not* be aligned. */
  118. static void _wordcopy_bwd_dest_aligned (long int dstp, long int srcp, size_t len)
  119. {
  120. op_t a0, a1, a2, a3;
  121. int sh_1, sh_2;
  122. /* Calculate how to shift a word read at the memory operation
  123. aligned srcp to make it aligned for copy. */
  124. sh_1 = 8 * (srcp % OPSIZ);
  125. sh_2 = 8 * OPSIZ - sh_1;
  126. /* Make srcp aligned by rounding it down to the beginning of the op_t
  127. it points in the middle of. */
  128. srcp &= -OPSIZ;
  129. srcp += OPSIZ;
  130. switch (len % 4)
  131. {
  132. case 2:
  133. srcp -= 3 * OPSIZ;
  134. dstp -= 1 * OPSIZ;
  135. a2 = ((op_t *) srcp)[2];
  136. a1 = ((op_t *) srcp)[1];
  137. len += 2;
  138. goto do1;
  139. case 3:
  140. srcp -= 4 * OPSIZ;
  141. dstp -= 2 * OPSIZ;
  142. a3 = ((op_t *) srcp)[3];
  143. a2 = ((op_t *) srcp)[2];
  144. len += 1;
  145. goto do2;
  146. case 0:
  147. if (OP_T_THRES <= 3 * OPSIZ && len == 0)
  148. return;
  149. srcp -= 5 * OPSIZ;
  150. dstp -= 3 * OPSIZ;
  151. a0 = ((op_t *) srcp)[4];
  152. a3 = ((op_t *) srcp)[3];
  153. goto do3;
  154. case 1:
  155. srcp -= 6 * OPSIZ;
  156. dstp -= 4 * OPSIZ;
  157. a1 = ((op_t *) srcp)[5];
  158. a0 = ((op_t *) srcp)[4];
  159. len -= 1;
  160. if (OP_T_THRES <= 3 * OPSIZ && len == 0)
  161. goto do0;
  162. goto do4; /* No-op. */
  163. }
  164. do
  165. {
  166. do4:
  167. a3 = ((op_t *) srcp)[3];
  168. ((op_t *) dstp)[3] = MERGE (a0, sh_1, a1, sh_2);
  169. do3:
  170. a2 = ((op_t *) srcp)[2];
  171. ((op_t *) dstp)[2] = MERGE (a3, sh_1, a0, sh_2);
  172. do2:
  173. a1 = ((op_t *) srcp)[1];
  174. ((op_t *) dstp)[1] = MERGE (a2, sh_1, a3, sh_2);
  175. do1:
  176. a0 = ((op_t *) srcp)[0];
  177. ((op_t *) dstp)[0] = MERGE (a1, sh_1, a2, sh_2);
  178. srcp -= 4 * OPSIZ;
  179. dstp -= 4 * OPSIZ;
  180. len -= 4;
  181. }
  182. while (len != 0);
  183. /* This is the right position for do0. Please don't move
  184. it into the loop. */
  185. do0:
  186. ((op_t *) dstp)[3] = MERGE (a0, sh_1, a1, sh_2);
  187. }
  188. #undef memmove
  189. void attribute_hidden *__memmove (void *dest, const void *src, size_t len)
  190. {
  191. unsigned long int dstp = (long int) dest;
  192. unsigned long int srcp = (long int) src;
  193. /* This test makes the forward copying code be used whenever possible.
  194. Reduces the working set. */
  195. if (dstp - srcp >= len) /* *Unsigned* compare! */
  196. {
  197. #if 1
  198. #warning REMINDER: generic-opt memmove assumes memcpy does forward copying!
  199. memcpy(dest, src, len);
  200. #else
  201. /* Copy from the beginning to the end. */
  202. /* If there not too few bytes to copy, use word copy. */
  203. if (len >= OP_T_THRES)
  204. {
  205. /* Copy just a few bytes to make DSTP aligned. */
  206. len -= (-dstp) % OPSIZ;
  207. BYTE_COPY_FWD (dstp, srcp, (-dstp) % OPSIZ);
  208. /* Copy whole pages from SRCP to DSTP by virtual address
  209. manipulation, as much as possible. */
  210. PAGE_COPY_FWD_MAYBE (dstp, srcp, len, len);
  211. /* Copy from SRCP to DSTP taking advantage of the known
  212. alignment of DSTP. Number of bytes remaining is put
  213. in the third argument, i.e. in LEN. This number may
  214. vary from machine to machine. */
  215. WORD_COPY_FWD (dstp, srcp, len, len);
  216. /* Fall out and copy the tail. */
  217. }
  218. /* There are just a few bytes to copy. Use byte memory operations. */
  219. BYTE_COPY_FWD (dstp, srcp, len);
  220. #endif
  221. }
  222. else
  223. {
  224. /* Copy from the end to the beginning. */
  225. srcp += len;
  226. dstp += len;
  227. /* If there not too few bytes to copy, use word copy. */
  228. if (len >= OP_T_THRES)
  229. {
  230. /* Copy just a few bytes to make DSTP aligned. */
  231. len -= dstp % OPSIZ;
  232. BYTE_COPY_BWD (dstp, srcp, dstp % OPSIZ);
  233. /* Copy from SRCP to DSTP taking advantage of the known
  234. alignment of DSTP. Number of bytes remaining is put
  235. in the third argument, i.e. in LEN. This number may
  236. vary from machine to machine. */
  237. WORD_COPY_BWD (dstp, srcp, len, len);
  238. /* Fall out and copy the tail. */
  239. }
  240. /* There are just a few bytes to copy. Use byte memory operations. */
  241. BYTE_COPY_BWD (dstp, srcp, len);
  242. }
  243. return (dest);
  244. }
  245. strong_alias(__memmove, memmove)