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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2002 MySQL AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*  File   : bmove.c
  18.     Author : Richard A. O'Keefe.
  19.      Michael Widenius; ifdef MC68000
  20.     Updated: 23 April 1984
  21.     Defines: bmove()
  22.     bmove(dst, src, len) moves exactly "len" bytes from the source "src"
  23.     to the destination "dst".  It does not check for NUL characters as
  24.     strncpy() and strnmov() do.  Thus if your C compiler doesn't support
  25.     structure assignment, you can simulate it with
  26.     bmove(&to, &from, sizeof from);
  27.     The standard 4.2bsd routine for this purpose is bcopy.  But as bcopy
  28.     has its first two arguments the other way around you may find this a
  29.     bit easier to get right.
  30.     No value is returned.
  31.     Note: the "b" routines are there to exploit certain VAX order codes,
  32.     but the MOVC3 instruction will only move 65535 characters.  The asm
  33.     code is presented for your interest and amusement.
  34. */
  35. #include <my_global.h>
  36. #include "m_string.h"
  37. #if !defined(HAVE_BMOVE) && !defined(bmove)
  38. #if VaxAsm
  39. void bmove(dst, src, len)
  40.     char *dst, *src;
  41.     uint len;
  42.     {
  43.  asm("movc3 12(ap),*8(ap),*4(ap)");
  44.     }
  45. #else
  46. #if defined(MC68000) && defined(DS90)
  47. void bmove(dst, src, len)
  48. char *dst,*src;
  49. uint len; /* 0 <= len <= 65535 */
  50. {
  51. asm(" movl 12(a7),d0 ");
  52. asm(" subql #1,d0 ");
  53. asm(" blt .L5 ");
  54. asm(" movl 4(a7),a1 ");
  55. asm(" movl 8(a7),a0 ");
  56. asm(".L4: movb (a0)+,(a1)+ ");
  57. asm(" dbf d0,.L4 ");
  58. asm(".L5: ");
  59. }
  60. #else
  61. void bmove(dst, src, len)
  62. register char *dst;
  63. register const char *src;
  64. register uint len;
  65. {
  66.   while (len-- != 0) *dst++ = *src++;
  67. }
  68. #endif
  69. #endif
  70. #endif