strlen.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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, see
  16. <http://www.gnu.org/licenses/>. */
  17. #include <string.h>
  18. #include <stdlib.h>
  19. /* Return the length of the null-terminated string STR. Scan for
  20. the null terminator quickly by testing four bytes at a time. */
  21. size_t strlen (const char *str)
  22. {
  23. const char *char_ptr;
  24. const unsigned long int *longword_ptr;
  25. unsigned long int longword, himagic, lomagic;
  26. /* Handle the first few characters by reading one character at a time.
  27. Do this until CHAR_PTR is aligned on a longword boundary. */
  28. for (char_ptr = str; ((unsigned long int) char_ptr
  29. & (sizeof (longword) - 1)) != 0;
  30. ++char_ptr)
  31. if (*char_ptr == '\0')
  32. return char_ptr - str;
  33. /* All these elucidatory comments refer to 4-byte longwords,
  34. but the theory applies equally well to 8-byte longwords. */
  35. longword_ptr = (unsigned long int *) char_ptr;
  36. /* Bits 31, 24, 16, and 8 of this number are zero. Call these bits
  37. the "holes." Note that there is a hole just to the left of
  38. each byte, with an extra at the end:
  39. bits: 01111110 11111110 11111110 11111111
  40. bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD
  41. The 1-bits make sure that carries propagate to the next 0-bit.
  42. The 0-bits provide holes for carries to fall into. */
  43. himagic = 0x80808080L;
  44. lomagic = 0x01010101L;
  45. if (sizeof (longword) > 4)
  46. {
  47. /* 64-bit version of the magic. */
  48. /* Do the shift in two steps to avoid a warning if long has 32 bits. */
  49. himagic = ((himagic << 16) << 16) | himagic;
  50. lomagic = ((lomagic << 16) << 16) | lomagic;
  51. }
  52. if (sizeof (longword) > 8)
  53. abort ();
  54. /* Instead of the traditional loop which tests each character,
  55. we will test a longword at a time. The tricky part is testing
  56. if *any of the four* bytes in the longword in question are zero. */
  57. for (;;)
  58. {
  59. /* We tentatively exit the loop if adding MAGIC_BITS to
  60. LONGWORD fails to change any of the hole bits of LONGWORD.
  61. 1) Is this safe? Will it catch all the zero bytes?
  62. Suppose there is a byte with all zeros. Any carry bits
  63. propagating from its left will fall into the hole at its
  64. least significant bit and stop. Since there will be no
  65. carry from its most significant bit, the LSB of the
  66. byte to the left will be unchanged, and the zero will be
  67. detected.
  68. 2) Is this worthwhile? Will it ignore everything except
  69. zero bytes? Suppose every byte of LONGWORD has a bit set
  70. somewhere. There will be a carry into bit 8. If bit 8
  71. is set, this will carry into bit 16. If bit 8 is clear,
  72. one of bits 9-15 must be set, so there will be a carry
  73. into bit 16. Similarly, there will be a carry into bit
  74. 24. If one of bits 24-30 is set, there will be a carry
  75. into bit 31, so all of the hole bits will be changed.
  76. The one misfire occurs when bits 24-30 are clear and bit
  77. 31 is set; in this case, the hole at bit 31 is not
  78. changed. If we had access to the processor carry flag,
  79. we could close this loophole by putting the fourth hole
  80. at bit 32!
  81. So it ignores everything except 128's, when they're aligned
  82. properly. */
  83. longword = *longword_ptr++;
  84. if (((longword - lomagic) & himagic) != 0)
  85. {
  86. /* Which of the bytes was the zero? If none of them were, it was
  87. a misfire; continue the search. */
  88. const char *cp = (const char *) (longword_ptr - 1);
  89. if (cp[0] == 0)
  90. return cp - str;
  91. if (cp[1] == 0)
  92. return cp - str + 1;
  93. if (cp[2] == 0)
  94. return cp - str + 2;
  95. if (cp[3] == 0)
  96. return cp - str + 3;
  97. if (sizeof (longword) > 4)
  98. {
  99. if (cp[4] == 0)
  100. return cp - str + 4;
  101. if (cp[5] == 0)
  102. return cp - str + 5;
  103. if (cp[6] == 0)
  104. return cp - str + 6;
  105. if (cp[7] == 0)
  106. return cp - str + 7;
  107. }
  108. }
  109. }
  110. }
  111. libc_hidden_weak(strlen)