memmove.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. /*
  8.  * Copyright (c) 1990, 1993
  9.  * The Regents of the University of California.  All rights reserved.
  10.  *
  11.  * Redistribution and use in source and binary forms, with or without
  12.  * modification, are permitted provided that the following conditions
  13.  * are met:
  14.  * 1. Redistributions of source code must retain the above copyright
  15.  *    notice, this list of conditions and the following disclaimer.
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in the
  18.  *    documentation and/or other materials provided with the distribution.
  19.  * 3. Neither the name of the University nor the names of its contributors
  20.  *    may be used to endorse or promote products derived from this software
  21.  *    without specific prior written permission.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  */
  35. #include "db_config.h"
  36. #ifndef lint
  37. static const char revid[] = "$Id: memmove.c,v 11.6 2002/01/11 15:51:28 bostic Exp $";
  38. #endif /* not lint */
  39. #ifndef NO_SYSTEM_INCLUDES
  40. #include <sys/types.h>
  41. #endif
  42. /*
  43.  * sizeof(word) MUST BE A POWER OF TWO
  44.  * SO THAT wmask BELOW IS ALL ONES
  45.  */
  46. typedef int word; /* "word" used for optimal copy speed */
  47. #undef wsize
  48. #define wsize sizeof(word)
  49. #undef wmask
  50. #define wmask (wsize - 1)
  51. /*
  52.  * Copy a block of memory, handling overlap.
  53.  * This is the routine that actually implements
  54.  * (the portable versions of) bcopy, memcpy, and memmove.
  55.  */
  56. #ifdef MEMCOPY
  57. /*
  58.  * PUBLIC: #ifndef HAVE_MEMCPY
  59.  * PUBLIC: void *memcpy __P((void *, const void *, size_t));
  60.  * PUBLIC: #endif
  61.  */
  62. void *
  63. memcpy(dst0, src0, length)
  64. #else
  65. #ifdef MEMMOVE
  66. /*
  67.  * PUBLIC: #ifndef HAVE_MEMMOVE
  68.  * PUBLIC: void *memmove __P((void *, const void *, size_t));
  69.  * PUBLIC: #endif
  70.  */
  71. void *
  72. memmove(dst0, src0, length)
  73. #else
  74. void
  75. bcopy(src0, dst0, length)
  76. #endif
  77. #endif
  78. void *dst0;
  79. const void *src0;
  80. register size_t length;
  81. {
  82. register char *dst = dst0;
  83. register const char *src = src0;
  84. register size_t t;
  85. if (length == 0 || dst == src) /* nothing to do */
  86. goto done;
  87. /*
  88.  * Macros: loop-t-times; and loop-t-times, t>0
  89.  */
  90. #undef TLOOP
  91. #define TLOOP(s) if (t) TLOOP1(s)
  92. #undef TLOOP1
  93. #define TLOOP1(s) do { s; } while (--t)
  94. if ((unsigned long)dst < (unsigned long)src) {
  95. /*
  96.  * Copy forward.
  97.  */
  98. t = (int)src; /* only need low bits */
  99. if ((t | (int)dst) & wmask) {
  100. /*
  101.  * Try to align operands.  This cannot be done
  102.  * unless the low bits match.
  103.  */
  104. if ((t ^ (int)dst) & wmask || length < wsize)
  105. t = length;
  106. else
  107. t = wsize - (t & wmask);
  108. length -= t;
  109. TLOOP1(*dst++ = *src++);
  110. }
  111. /*
  112.  * Copy whole words, then mop up any trailing bytes.
  113.  */
  114. t = length / wsize;
  115. TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
  116. t = length & wmask;
  117. TLOOP(*dst++ = *src++);
  118. } else {
  119. /*
  120.  * Copy backwards.  Otherwise essentially the same.
  121.  * Alignment works as before, except that it takes
  122.  * (t&wmask) bytes to align, not wsize-(t&wmask).
  123.  */
  124. src += length;
  125. dst += length;
  126. t = (int)src;
  127. if ((t | (int)dst) & wmask) {
  128. if ((t ^ (int)dst) & wmask || length <= wsize)
  129. t = length;
  130. else
  131. t &= wmask;
  132. length -= t;
  133. TLOOP1(*--dst = *--src);
  134. }
  135. t = length / wsize;
  136. TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
  137. t = length & wmask;
  138. TLOOP(*--dst = *--src);
  139. }
  140. done:
  141. #if defined(MEMCOPY) || defined(MEMMOVE)
  142. return (dst0);
  143. #else
  144. return;
  145. #endif
  146. }