2 * Copyright (C) 2008-2024 Free Software Foundation, Inc.
3 * Written by Eric Blake and Bruno Haible
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program 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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
22 #include "signature.h"
23 SIGNATURE_CHECK (memchr
, void *, (void const *, int, size_t));
27 #include "zerosize-ptr.h"
30 /* Test the library, not the compiler+library. */
32 lib_memchr (void const *s
, int c
, size_t n
)
34 return memchr (s
, c
, n
);
36 static void *(*volatile volatile_memchr
) (void const *, int, size_t)
39 #define memchr volatile_memchr
45 char *input
= malloc (n
);
50 memset (input
+ 2, 'c', 1024);
51 memset (input
+ 1026, 'd', n
- 1028);
55 /* Basic behavior tests. */
56 ASSERT (memchr (input
, 'a', n
) == input
);
58 ASSERT (memchr (input
, 'a', 0) == NULL
);
61 void *page_boundary
= zerosize_ptr ();
63 ASSERT (memchr (page_boundary
, 'a', 0) == NULL
);
66 ASSERT (memchr (input
, 'b', n
) == input
+ 1);
67 ASSERT (memchr (input
, 'c', n
) == input
+ 2);
68 ASSERT (memchr (input
, 'd', n
) == input
+ 1026);
70 ASSERT (memchr (input
+ 1, 'a', n
- 1) == input
+ n
- 1);
71 ASSERT (memchr (input
+ 1, 'e', n
- 1) == input
+ n
- 2);
72 ASSERT (memchr (input
+ 1, 0x789abc00 | 'e', n
- 1) == input
+ n
- 2);
74 ASSERT (memchr (input
, 'f', n
) == NULL
);
75 ASSERT (memchr (input
, '\0', n
) == NULL
);
77 /* Check that a very long haystack is handled quickly if the byte is
78 found near the beginning. */
80 size_t repeat
= 10000;
81 for (; repeat
> 0; repeat
--)
83 ASSERT (memchr (input
, 'c', n
) == input
+ 2);
87 /* Alignment tests. */
90 for (i
= 0; i
< 32; i
++)
92 for (j
= 0; j
< 256; j
++)
94 for (j
= 0; j
< 256; j
++)
96 ASSERT (memchr (input
+ i
, j
, 256) == input
+ i
+ j
);
101 /* Check that memchr() does not read past the first occurrence of the
102 byte being searched. See the Austin Group's clarification
103 <https://www.opengroup.org/austin/docs/austin_454.txt>.
104 Test both '\0' and something else, since some implementations
105 special-case searching for NUL.
108 char *page_boundary
= (char *) zerosize_ptr ();
109 /* Too small, and we miss cache line boundary tests; too large,
110 and the test takes cubically longer to complete. */
113 if (page_boundary
!= NULL
)
115 for (n
= 1; n
<= limit
; n
++)
117 char *mem
= page_boundary
- n
;
118 memset (mem
, 'X', n
);
119 ASSERT (memchr (mem
, 'U', n
) == NULL
);
120 ASSERT (memchr (mem
, 0, n
) == NULL
);
126 for (i
= 0; i
< n
; i
++)
129 for (k
= i
+ 1; k
< n
+ limit
; k
++)
130 ASSERT (memchr (mem
, 'U', k
) == mem
+ i
);
132 for (k
= i
+ 1; k
< n
+ limit
; k
++)
133 ASSERT (memchr (mem
, 0, k
) == mem
+ i
);
143 /* Test zero-length operations on NULL pointers, allowed by
144 <https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3322.pdf>. */
145 ASSERT (memchr (NULL
, '?', 0) == NULL
);
147 return test_exit_status
;