strlen.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* Copyright (C) 1991, 1993, 1997, 2000, 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Written by Torbjorn Granlund (tege@sics.se),
  4. with help from Dan Sahlin (dan@sics.se);
  5. commentary by Jim Blandy (jimb@ai.mit.edu).
  6. The GNU C Library is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU Lesser General Public
  8. License as published by the Free Software Foundation; either
  9. version 2.1 of the License, or (at your option) any later version.
  10. The GNU C Library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. Lesser General Public License for more details.
  14. You should have received a copy of the GNU Lesser General Public
  15. License along with the GNU C Library; if not, write to the Free
  16. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  17. 02111-1307 USA. */
  18. #include <string.h>
  19. #include <stdlib.h>
  20. #undef strlen
  21. /* Return the length of the null-terminated string STR. Scan for
  22. the null terminator quickly by testing four bytes at a time. */
  23. size_t
  24. strlen (str)
  25. const char *str;
  26. {
  27. const char *char_ptr;
  28. const unsigned long int *longword_ptr;
  29. unsigned long int longword, magic_bits, himagic, lomagic;
  30. /* Handle the first few characters by reading one character at a time.
  31. Do this until CHAR_PTR is aligned on a longword boundary. */
  32. for (char_ptr = str; ((unsigned long int) char_ptr
  33. & (sizeof (longword) - 1)) != 0;
  34. ++char_ptr)
  35. if (*char_ptr == '\0')
  36. return char_ptr - str;
  37. /* All these elucidatory comments refer to 4-byte longwords,
  38. but the theory applies equally well to 8-byte longwords. */
  39. longword_ptr = (unsigned long int *) char_ptr;
  40. /* Bits 31, 24, 16, and 8 of this number are zero. Call these bits
  41. the "holes." Note that there is a hole just to the left of
  42. each byte, with an extra at the end:
  43. bits: 01111110 11111110 11111110 11111111
  44. bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD
  45. The 1-bits make sure that carries propagate to the next 0-bit.
  46. The 0-bits provide holes for carries to fall into. */
  47. magic_bits = 0x7efefeffL;
  48. himagic = 0x80808080L;
  49. lomagic = 0x01010101L;
  50. if (sizeof (longword) > 4)
  51. {
  52. /* 64-bit version of the magic. */
  53. /* Do the shift in two steps to avoid a warning if long has 32 bits. */
  54. magic_bits = ((0x7efefefeL << 16) << 16) | 0xfefefeffL;
  55. himagic = ((himagic << 16) << 16) | himagic;
  56. lomagic = ((lomagic << 16) << 16) | lomagic;
  57. }
  58. if (sizeof (longword) > 8)
  59. abort ();
  60. /* Instead of the traditional loop which tests each character,
  61. we will test a longword at a time. The tricky part is testing
  62. if *any of the four* bytes in the longword in question are zero. */
  63. for (;;)
  64. {
  65. /* We tentatively exit the loop if adding MAGIC_BITS to
  66. LONGWORD fails to change any of the hole bits of LONGWORD.
  67. 1) Is this safe? Will it catch all the zero bytes?
  68. Suppose there is a byte with all zeros. Any carry bits
  69. propagating from its left will fall into the hole at its
  70. least significant bit and stop. Since there will be no
  71. carry from its most significant bit, the LSB of the
  72. byte to the left will be unchanged, and the zero will be
  73. detected.
  74. 2) Is this worthwhile? Will it ignore everything except
  75. zero bytes? Suppose every byte of LONGWORD has a bit set
  76. somewhere. There will be a carry into bit 8. If bit 8
  77. is set, this will carry into bit 16. If bit 8 is clear,
  78. one of bits 9-15 must be set, so there will be a carry
  79. into bit 16. Similarly, there will be a carry into bit
  80. 24. If one of bits 24-30 is set, there will be a carry
  81. into bit 31, so all of the hole bits will be changed.
  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. So it ignores everything except 128's, when they're aligned
  88. properly. */
  89. longword = *longword_ptr++;
  90. if (
  91. #if 0
  92. /* Add MAGIC_BITS to LONGWORD. */
  93. (((longword + magic_bits)
  94. /* Set those bits that were unchanged by the addition. */
  95. ^ ~longword)
  96. /* Look at only the hole bits. If any of the hole bits
  97. are unchanged, most likely one of the bytes was a
  98. zero. */
  99. & ~magic_bits)
  100. #else
  101. ((longword - lomagic) & himagic)
  102. #endif
  103. != 0)
  104. {
  105. /* Which of the bytes was the zero? If none of them were, it was
  106. a misfire; continue the search. */
  107. const char *cp = (const char *) (longword_ptr - 1);
  108. if (cp[0] == 0)
  109. return cp - str;
  110. if (cp[1] == 0)
  111. return cp - str + 1;
  112. if (cp[2] == 0)
  113. return cp - str + 2;
  114. if (cp[3] == 0)
  115. return cp - str + 3;
  116. if (sizeof (longword) > 4)
  117. {
  118. if (cp[4] == 0)
  119. return cp - str + 4;
  120. if (cp[5] == 0)
  121. return cp - str + 5;
  122. if (cp[6] == 0)
  123. return cp - str + 6;
  124. if (cp[7] == 0)
  125. return cp - str + 7;
  126. }
  127. }
  128. }
  129. }