bmove.c
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 2k
Category:

MySQL

Development Platform:

Visual C++

  1. /*  File   : bmove.c
  2.     Author : Richard A. O'Keefe.
  3.      Michael Widenius; ifdef MC68000
  4.     Updated: 23 April 1984
  5.     Defines: bmove()
  6.     bmove(dst, src, len) moves exactly "len" bytes from the source "src"
  7.     to the destination "dst".  It does not check for NUL characters as
  8.     strncpy() and strnmov() do.  Thus if your C compiler doesn't support
  9.     structure assignment, you can simulate it with
  10.     bmove(&to, &from, sizeof from);
  11.     The standard 4.2bsd routine for this purpose is bcopy.  But as bcopy
  12.     has its first two arguments the other way around you may find this a
  13.     bit easier to get right.
  14.     No value is returned.
  15.     Note: the "b" routines are there to exploit certain VAX order codes,
  16.     but the MOVC3 instruction will only move 65535 characters.  The asm
  17.     code is presented for your interest and amusement.
  18. */
  19. #include <global.h>
  20. #include "m_string.h"
  21. #if !defined(HAVE_BMOVE) && !defined(bmove)
  22. #if VaxAsm
  23. void bmove(dst, src, len)
  24.     char *dst, *src;
  25.     uint len;
  26.     {
  27.  asm("movc3 12(ap),*8(ap),*4(ap)");
  28.     }
  29. #else
  30. #if defined(MC68000) && defined(DS90)
  31. void bmove(dst, src, len)
  32. char *dst,*src;
  33. uint len; /* 0 <= len <= 65535 */
  34. {
  35. asm(" movl 12(a7),d0 ");
  36. asm(" subql #1,d0 ");
  37. asm(" blt .L5 ");
  38. asm(" movl 4(a7),a1 ");
  39. asm(" movl 8(a7),a0 ");
  40. asm(".L4: movb (a0)+,(a1)+ ");
  41. asm(" dbf d0,.L4 ");
  42. asm(".L5: ");
  43. }
  44. #else
  45. void bmove(dst, src, len)
  46. register char *dst;
  47. register const char *src;
  48. register uint len;
  49. {
  50.   while (len-- != 0) *dst++ = *src++;
  51. }
  52. #endif
  53. #endif
  54. #endif