home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / sysdeps / i386 / bzero.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-12  |  2.4 KB  |  91 lines

  1. /* bzero -- set a block of memory to zero.
  2.    For Intel 80x86, x>=3.
  3.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  4.    Contributed by Torbjorn Granlund (tege@sics.se).
  5.  
  6. The GNU C Library is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU Library General Public License as
  8. published by the Free Software Foundation; either version 2 of the
  9. License, or (at your option) any later version.
  10.  
  11. The GNU C Library is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. Library General Public License for more details.
  15.  
  16. You should have received a copy of the GNU Library General Public
  17. License along with the GNU C Library; see the file COPYING.LIB.  If
  18. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  19. Cambridge, MA 02139, USA.  */
  20.  
  21. #include <ansidecl.h>
  22. #include <string.h>
  23. #include <memcopy.h>
  24.  
  25. #undef    bzero
  26.  
  27. #ifdef    __GNUC__
  28.  
  29. #ifdef __linux__
  30. void
  31. DEFUN(bzero, (dstpp, len),
  32.       PTR dstpp AND int len)
  33. #else
  34. DEFUN(bzero, (dstpp, len),
  35.       PTR dstpp AND size_t len)
  36. #endif
  37. {
  38.   /* N.B.: This code is almost verbatim from memset.c.  */
  39.  
  40.   unsigned long int dstp = (unsigned long int) dstpp;
  41.  
  42.   /* This explicit register allocation
  43.      improves code very much indeed.  */
  44.   register op_t x asm("ax");
  45.  
  46. #ifdef __linux__
  47.   if (len <= 0) return;
  48. #endif
  49.  
  50.   x = 0;
  51.  
  52.   /* Clear the direction flag, so filling will move forward.  */
  53.   asm volatile("cld");
  54.  
  55.   /* This threshold value is optimal.  */
  56.   if (len >= 12)
  57.     {
  58.       /* Adjust LEN for the bytes handled in the first loop.  */
  59.       len -= (-dstp) % OPSIZ;
  60.  
  61.       /* There are at least some bytes to set.
  62.      No need to test for LEN == 0 in this alignment loop.  */
  63.  
  64.       /* Fill bytes until DSTP is aligned on a longword boundary.  */
  65.       asm volatile("rep\n"
  66.            "stosb" /* %0, %2, %3 */ :
  67.            "=D" (dstp) :
  68.            "0" (dstp), "c" ((-dstp) % OPSIZ), "a" (x) :
  69.            "cx");
  70.  
  71.       /* Fill longwords.  */
  72.       asm volatile("rep\n"
  73.            "stosl" /* %0, %2, %3 */ :
  74.            "=D" (dstp) :
  75.            "0" (dstp), "c" (len / OPSIZ), "a" (x) :
  76.            "cx");
  77.       len %= OPSIZ;
  78.     }
  79.  
  80.   /* Write the last few bytes.  */
  81.   asm volatile("rep\n"
  82.            "stosb" /* %0, %2, %3 */ :
  83.            "=D" (dstp) :
  84.            "0" (dstp), "c" (len), "a" (x) :
  85.            "cx");
  86. }
  87.  
  88. #else
  89. #include <sysdeps/generic/bzero.c>
  90. #endif
  91.