home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / glibc-1.06 / sysdeps / generic / strlen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-20  |  4.2 KB  |  126 lines

  1. /* Copyright (C) 1991 Free Software Foundation, Inc.
  2.    Written by Torbjorn Granlund (tege@sics.se),
  3.    with help from Dan Sahlin (dan@sics.se);
  4.    commentary by Jim Blandy (jimb@ai.mit.edu).
  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.  
  24.  
  25. /* Return the length of the null-terminated string STR.  Scan for
  26.    the null terminator quickly by testing four bytes at a time.  */
  27.  
  28. size_t
  29. DEFUN(strlen, (str), CONST char *str)
  30. {
  31.   CONST char *char_ptr;
  32.   CONST unsigned long int *longword_ptr;
  33.   unsigned long int longword, magic_bits, himagic, lomagic;
  34.  
  35.   /* Handle the first few characters by reading one character at a time.
  36.      Do this until STR is aligned on a 4-byte border.  */
  37.   for (char_ptr = str; ((unsigned long int) char_ptr & 3) != 0; ++char_ptr)
  38.     if (*char_ptr == 0)
  39.       return char_ptr - str;
  40.  
  41.   longword_ptr = (unsigned long int *) char_ptr;
  42.  
  43.   /* Bits 31, 24, 16, and 8 of this number are zero.  Call these bits
  44.      the "holes."  Note that there is a hole just to the left of
  45.      each byte, with an extra at the end:
  46.  
  47.      bits:  01111110 11111110 11111110 11111111
  48.      bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD 
  49.  
  50.      The 1-bits make sure that carries propagate to the next 0-bit.
  51.      The 0-bits provide holes for carries to fall into.  */
  52.   magic_bits = 0x7efefeff;
  53.  
  54.   himagic = 0x80808080;
  55.   lomagic = 0x01010101;
  56.  
  57.   /* Instead of the traditional loop which tests each character,
  58.      we will test a longword at a time.  The tricky part is testing
  59.      if *any of the four* bytes in the longword in question are zero.  */
  60.   for (;;)
  61.     {
  62.       /* We tentatively exit the loop if adding MAGIC_BITS to
  63.      LONGWORD fails to change any of the hole bits of LONGWORD.
  64.  
  65.      1) Is this safe?  Will it catch all the zero bytes?
  66.      Suppose there is a byte with all zeros.  Any carry bits
  67.      propagating from its left will fall into the hole at its
  68.      least significant bit and stop.  Since there will be no
  69.      carry from its most significant bit, the LSB of the
  70.      byte to the left will be unchanged, and the zero will be
  71.      detected.
  72.  
  73.      2) Is this worthwhile?  Will it ignore everything except
  74.      zero bytes?  Suppose every byte of LONGWORD has a bit set
  75.      somewhere.  There will be a carry into bit 8.  If bit 8
  76.      is set, this will carry into bit 16.  If bit 8 is clear,
  77.      one of bits 9-15 must be set, so there will be a carry
  78.      into bit 16.  Similarly, there will be a carry into bit
  79.      24.  If one of bits 24-30 is set, there will be a carry
  80.      into bit 31, so all of the hole bits will be changed.
  81.  
  82.      The one misfire occurs when bits 24-30 are clear and bit
  83.      31 is set; in this case, the hole at bit 31 is not
  84.      changed.  If we had access to the processor carry flag,
  85.      we could close this loophole by putting the fourth hole
  86.      at bit 32!
  87.  
  88.      So it ignores everything except 128's, when they're aligned
  89.      properly.  */
  90.  
  91.       longword = *longword_ptr++;
  92.  
  93.       if (
  94. #if 0
  95.       /* Add MAGIC_BITS to LONGWORD.  */
  96.       (((longword + magic_bits)
  97.  
  98.         /* Set those bits that were unchanged by the addition.  */
  99.         ^ ~longword)
  100.  
  101.        /* Look at only the hole bits.  If any of the hole bits
  102.           are unchanged, most likely one of the bytes was a
  103.           zero.  */
  104.        & ~magic_bits)
  105. #else
  106.       ((longword - lomagic) & himagic)
  107. #endif
  108.       != 0)
  109.     {
  110.       /* Which of the bytes was the zero?  If none of them were, it was
  111.          a misfire; continue the search.  */
  112.  
  113.       CONST char *cp = (CONST char *) (longword_ptr - 1);
  114.  
  115.       if (cp[0] == 0)
  116.         return cp - str;
  117.       if (cp[1] == 0)
  118.         return cp - str + 1;
  119.       if (cp[2] == 0)
  120.         return cp - str + 2;
  121.       if (cp[3] == 0)
  122.         return cp - str + 3;
  123.     }
  124.     }
  125. }
  126.