memcchr.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  3. *
  4. * Copyright (c) 2012 Ed Schouten <ed@FreeBSD.org>
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. #include <sys/cdefs.h>
  29. __FBSDID("$FreeBSD$");
  30. #include <sys/libkern.h>
  31. #include <sys/limits.h>
  32. #include <sys/param.h>
  33. /*
  34. * memcchr(): find first character in buffer not matching `c'.
  35. *
  36. * This function performs the complement of memchr(). To provide decent
  37. * performance, this function compares data from the buffer one word at
  38. * a time.
  39. *
  40. * This code is inspired by libc's strlen(), written by Xin Li.
  41. */
  42. #if LONG_BIT != 32 && LONG_BIT != 64
  43. #error Unsupported word size
  44. #endif
  45. #define LONGPTR_MASK (sizeof(long) - 1)
  46. #define TESTBYTE \
  47. do { \
  48. if (*p != (unsigned char)c) \
  49. goto done; \
  50. p++; \
  51. } while (0)
  52. void *
  53. memcchr(const void *begin, int c, size_t n)
  54. {
  55. const unsigned long *lp;
  56. const unsigned char *p, *end;
  57. unsigned long word;
  58. /* Four or eight repetitions of `c'. */
  59. word = (unsigned char)c;
  60. word |= word << 8;
  61. word |= word << 16;
  62. #if LONG_BIT >= 64
  63. word |= word << 32;
  64. #endif
  65. /* Don't perform memory I/O when passing a zero-length buffer. */
  66. if (n == 0)
  67. return (NULL);
  68. /*
  69. * First determine whether there is a character unequal to `c'
  70. * in the first word. As this word may contain bytes before
  71. * `begin', we may execute this loop spuriously.
  72. */
  73. lp = (const unsigned long *)((uintptr_t)begin & ~LONGPTR_MASK);
  74. end = (const unsigned char *)begin + n;
  75. if (*lp++ != word)
  76. for (p = begin; p < (const unsigned char *)lp;)
  77. TESTBYTE;
  78. /* Now compare the data one word at a time. */
  79. for (; (const unsigned char *)lp < end; lp++) {
  80. if (*lp != word) {
  81. p = (const unsigned char *)lp;
  82. TESTBYTE;
  83. TESTBYTE;
  84. TESTBYTE;
  85. #if LONG_BIT >= 64
  86. TESTBYTE;
  87. TESTBYTE;
  88. TESTBYTE;
  89. TESTBYTE;
  90. #endif
  91. goto done;
  92. }
  93. }
  94. return (NULL);
  95. done:
  96. /*
  97. * If the end of the buffer is not word aligned, the previous
  98. * loops may obtain an address that's beyond the end of the
  99. * buffer.
  100. */
  101. if (p < end)
  102. return (__DECONST(void *, p));
  103. return (NULL);
  104. }