strchr.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /* Copyright (C) 1991,1993-1997,1999,2000,2003,2006
  2. Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
  5. with help from Dan Sahlin (dan@sics.se) and
  6. bug fix and commentary by Jim Blandy (jimb@ai.mit.edu);
  7. adaptation to strchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
  8. and implemented by Roland McGrath (roland@ai.mit.edu).
  9. The GNU C Library is free software; you can redistribute it and/or
  10. modify it under the terms of the GNU Lesser General Public
  11. License as published by the Free Software Foundation; either
  12. version 2.1 of the License, or (at your option) any later version.
  13. The GNU C Library is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. Lesser General Public License for more details.
  17. You should have received a copy of the GNU Lesser General Public
  18. License along with the GNU C Library; if not, write to the Free
  19. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  20. 02111-1307 USA. */
  21. #include <api.h>
  22. /* Find the first occurrence of C in S. */
  23. char * strchr (const char *s, int c_in)
  24. {
  25. const unsigned char *char_ptr;
  26. const unsigned long int *longword_ptr;
  27. unsigned long int longword, magic_bits, charmask;
  28. unsigned char c;
  29. c = (unsigned char) c_in;
  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 = (const unsigned char *) s;
  33. ((unsigned long int) char_ptr & (sizeof (longword) - 1)) != 0;
  34. ++char_ptr)
  35. if (*char_ptr == c)
  36. return (void *) char_ptr;
  37. else if (*char_ptr == '\0')
  38. return NULL;
  39. /* All these elucidatory comments refer to 4-byte longwords,
  40. but the theory applies equally well to 8-byte longwords. */
  41. longword_ptr = (unsigned long int *) char_ptr;
  42. /* Bits 31, 24, 16, and 8 of this number are zero. Call these bits
  43. the "holes." Note that there is a hole just to the left of
  44. each byte, with an extra at the end:
  45. bits: 01111110 11111110 11111110 11111111
  46. bytes: AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD
  47. The 1-bits make sure that carries propagate to the next 0-bit.
  48. The 0-bits provide holes for carries to fall into. */
  49. switch (sizeof (longword)) {
  50. case 4: magic_bits = 0x7efefeffL; break;
  51. case 8: magic_bits = ((0x7efefefeL << 16) << 16) | 0xfefefeffL; break;
  52. default:
  53. return NULL;
  54. }
  55. /* Set up a longword, each of whose bytes is C. */
  56. charmask = c | (c << 8);
  57. charmask |= charmask << 16;
  58. if (sizeof (longword) > 4)
  59. /* Do the shift in two steps to avoid a warning if long has 32 bits. */
  60. charmask |= (charmask << 16) << 16;
  61. if (sizeof (longword) > 8)
  62. return NULL;
  63. /* Instead of the traditional loop which tests each character,
  64. we will test a longword at a time. The tricky part is testing
  65. if *any of the four* bytes in the longword in question are zero. */
  66. for (;;) {
  67. /* We tentatively exit the loop if adding MAGIC_BITS to
  68. LONGWORD fails to change any of the hole bits of LONGWORD.
  69. 1) Is this safe? Will it catch all the zero bytes?
  70. Suppose there is a byte with all zeros. Any carry bits
  71. propagating from its left will fall into the hole at its
  72. least significant bit and stop. Since there will be no
  73. carry from its most significant bit, the LSB of the
  74. byte to the left will be unchanged, and the zero will be
  75. detected.
  76. 2) Is this worthwhile? Will it ignore everything except
  77. zero bytes? Suppose every byte of LONGWORD has a bit set
  78. somewhere. There will be a carry into bit 8. If bit 8
  79. is set, this will carry into bit 16. If bit 8 is clear,
  80. one of bits 9-15 must be set, so there will be a carry
  81. into bit 16. Similarly, there will be a carry into bit
  82. 24. If one of bits 24-30 is set, there will be a carry
  83. into bit 31, so all of the hole bits will be changed.
  84. The one misfire occurs when bits 24-30 are clear and bit
  85. 31 is set; in this case, the hole at bit 31 is not
  86. changed. If we had access to the processor carry flag,
  87. we could close this loophole by putting the fourth hole
  88. at bit 32!
  89. So it ignores everything except 128's, when they're aligned
  90. properly.
  91. 3) But wait! Aren't we looking for C as well as zero?
  92. Good point. So what we do is XOR LONGWORD with a longword,
  93. each of whose bytes is C. This turns each byte that is C
  94. into a zero. */
  95. longword = *longword_ptr++;
  96. /* Add MAGIC_BITS to LONGWORD. */
  97. if ((((longword + magic_bits)
  98. /* Set those bits that were unchanged by the addition. */
  99. ^ ~longword)
  100. /* Look at only the hole bits. If any of the hole bits
  101. are unchanged, most likely one of the bytes was a
  102. zero. */
  103. & ~magic_bits) != 0 ||
  104. /* That caught zeroes. Now test for C. */
  105. ((((longword ^ charmask) + magic_bits) ^ ~(longword ^ charmask))
  106. & ~magic_bits) != 0) {
  107. /* Which of the bytes was C or zero?
  108. If none of them were, it was a misfire; continue the search. */
  109. const unsigned char *cp = (const unsigned char *) (longword_ptr - 1);
  110. if (*cp == c)
  111. return (char *) cp;
  112. else if (*cp == '\0')
  113. return NULL;
  114. if (*++cp == c)
  115. return (char *) cp;
  116. else if (*cp == '\0')
  117. return NULL;
  118. if (*++cp == c)
  119. return (char *) cp;
  120. else if (*cp == '\0')
  121. return NULL;
  122. if (*++cp == c)
  123. return (char *) cp;
  124. else if (*cp == '\0')
  125. return NULL;
  126. if (sizeof (longword) > 4) {
  127. if (*++cp == c)
  128. return (char *) cp;
  129. else if (*cp == '\0')
  130. return NULL;
  131. if (*++cp == c)
  132. return (char *) cp;
  133. else if (*cp == '\0')
  134. return NULL;
  135. if (*++cp == c)
  136. return (char *) cp;
  137. else if (*cp == '\0')
  138. return NULL;
  139. if (*++cp == c)
  140. return (char *) cp;
  141. else if (*cp == '\0')
  142. return NULL;
  143. }
  144. }
  145. }
  146. return NULL;
  147. }