Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/libkern/memcchr.c
34820 views
1
/*-
2
* SPDX-License-Identifier: BSD-2-Clause
3
*
4
* Copyright (c) 2012 Ed Schouten <[email protected]>
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
29
#include <sys/cdefs.h>
30
#include <sys/libkern.h>
31
#include <sys/limits.h>
32
#include <sys/param.h>
33
34
/*
35
* memcchr(): find first character in buffer not matching `c'.
36
*
37
* This function performs the complement of memchr(). To provide decent
38
* performance, this function compares data from the buffer one word at
39
* a time.
40
*
41
* This code is inspired by libc's strlen(), written by Xin Li.
42
*/
43
44
#if LONG_BIT != 32 && LONG_BIT != 64
45
#error Unsupported word size
46
#endif
47
48
#define LONGPTR_MASK (sizeof(long) - 1)
49
50
#define TESTBYTE \
51
do { \
52
if (*p != (unsigned char)c) \
53
goto done; \
54
p++; \
55
} while (0)
56
57
void *
58
memcchr(const void *begin, int c, size_t n)
59
{
60
const unsigned long *lp;
61
const unsigned char *p, *end;
62
unsigned long word;
63
64
/* Four or eight repetitions of `c'. */
65
word = (unsigned char)c;
66
word |= word << 8;
67
word |= word << 16;
68
#if LONG_BIT >= 64
69
word |= word << 32;
70
#endif
71
72
/* Don't perform memory I/O when passing a zero-length buffer. */
73
if (n == 0)
74
return (NULL);
75
76
/*
77
* First determine whether there is a character unequal to `c'
78
* in the first word. As this word may contain bytes before
79
* `begin', we may execute this loop spuriously.
80
*/
81
lp = (const unsigned long *)((uintptr_t)begin & ~LONGPTR_MASK);
82
end = (const unsigned char *)begin + n;
83
if (*lp++ != word)
84
for (p = begin; p < (const unsigned char *)lp;)
85
TESTBYTE;
86
87
/* Now compare the data one word at a time. */
88
for (; (const unsigned char *)lp < end; lp++) {
89
if (*lp != word) {
90
p = (const unsigned char *)lp;
91
TESTBYTE;
92
TESTBYTE;
93
TESTBYTE;
94
#if LONG_BIT >= 64
95
TESTBYTE;
96
TESTBYTE;
97
TESTBYTE;
98
TESTBYTE;
99
#endif
100
goto done;
101
}
102
}
103
104
return (NULL);
105
106
done:
107
/*
108
* If the end of the buffer is not word aligned, the previous
109
* loops may obtain an address that's beyond the end of the
110
* buffer.
111
*/
112
if (p < end)
113
return (__DECONST(void *, p));
114
return (NULL);
115
}
116
117