memmove实现

转自: http://blog.csdn.net/gxy837/article/details/6144600

 

memmove(

void * memmove ( void * destination, const void * source, size_t num );)是<string.h>的标准函数,其作用是把从source开始的num个字符拷贝到destination。

最简单的方法是直接复制,但是由于它们可能存在内存的重叠区,因此可能覆盖了原有数据。



比如当source+count>=dest&&source<dest时,dest可能覆盖了原有source的数据。

解决办法是从后往前拷贝。

对于其它情况,则从前往后拷贝。



源代码如下:

;***



;memcpy.asm - contains memcpy and memmove routines



;



;        Copyright (c) 1986-1997, Microsoft Corporation. All right reserved.



;



;Purpose:



;        memcpy() copies a source memory buffer to a destination buffer.



;        Overlapping buffers are not treated specially, so propogation may occur.



;        memmove() copies a source memory buffer to a destination buffer.



;        Overlapping buffers are treated specially, to avoid propogation.



;



;*******************************************************************************



;***



;memcpy - Copy source buffer to destination buffer



;



;Purpose:



;        memcpy() copies a source memory buffer to a destination memory buffer.



;        This routine does NOT recognize overlapping buffers, and thus can lead



;        to propogation.



;        For cases where propogation must be avoided, memmove() must be used.



;



;        Algorithm:



       void* memcpy(void* dest, void* source, size_t count)

      {

           void* ret = dest;

          //copy from lower address to higher address

          while (count--)

                  *dest++ = *source;


           return ret;

      }

memmove

memmove - Copy source buffer to destination buffer
;
;Purpose:
;       memmove() copies a source memory buffer to a destination memory buffer.
;       This routine recognize overlapping buffers to avoid propogation.
;       For cases where propogation is not a problem, memcpy() can be used.
;
;   Algorithm:

    void* memmove(void* dest, void* source, size_t count)

   {

       void* ret = dest;


      if (dest <= source || dest >= (source + count))

       {

          //Non-Overlapping Buffers
         //copy from lower addresses to higher addresses

         while (count --)

               *dest++ = *source++;

     }

     else

     {

        //Overlapping Buffers
       //copy from higher addresses to lower addresses


       dest += count - 1;

       source += count - 1;

       while (count--)

                *dest-- = *source--;l

     }

      return ret;

   }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值