memmove.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
  3. ** Distributed under the terms of the NewOS License.
  4. */
  5. /*
  6. * Copyright (c) 2008 Travis Geiselbrecht
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining
  9. * a copy of this software and associated documentation files
  10. * (the "Software"), to deal in the Software without restriction,
  11. * including without limitation the rights to use, copy, modify, merge,
  12. * publish, distribute, sublicense, and/or sell copies of the Software,
  13. * and to permit persons to whom the Software is furnished to do so,
  14. * subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be
  17. * included in all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  21. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  22. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  23. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  24. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  25. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  26. */
  27. #include <string.h>
  28. #include <sys/types.h>
  29. #if !_ASM_MEMMOVE
  30. typedef long word;
  31. #define lsize sizeof(word)
  32. #define lmask (lsize - 1)
  33. void *
  34. memmove(void *dest, void const *src, size_t count)
  35. {
  36. char *d = (char *)dest;
  37. const char *s = (const char *)src;
  38. int len;
  39. if(count == 0 || dest == src)
  40. return dest;
  41. if((long)d < (long)s) {
  42. if(((long)d | (long)s) & lmask) {
  43. // src and/or dest do not align on word boundary
  44. if((((long)d ^ (long)s) & lmask) || (count < lsize))
  45. len = count; // copy the rest of the buffer with the byte mover
  46. else
  47. len = lsize - ((long)d & lmask); // move the ptrs up to a word boundary
  48. count -= len;
  49. for(; len > 0; len--)
  50. *d++ = *s++;
  51. }
  52. for(len = count / lsize; len > 0; len--) {
  53. *(word *)d = *(word *)s;
  54. d += lsize;
  55. s += lsize;
  56. }
  57. for(len = count & lmask; len > 0; len--)
  58. *d++ = *s++;
  59. } else {
  60. d += count;
  61. s += count;
  62. if(((long)d | (long)s) & lmask) {
  63. // src and/or dest do not align on word boundary
  64. if((((long)d ^ (long)s) & lmask) || (count <= lsize))
  65. len = count;
  66. else
  67. len = ((long)d & lmask);
  68. count -= len;
  69. for(; len > 0; len--)
  70. *--d = *--s;
  71. }
  72. for(len = count / lsize; len > 0; len--) {
  73. d -= lsize;
  74. s -= lsize;
  75. *(word *)d = *(word *)s;
  76. }
  77. for(len = count & lmask; len > 0; len--)
  78. *--d = *--s;
  79. }
  80. return dest;
  81. }
  82. #endif