1 /* Copyright (C) 1991-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Torbjorn Granlund (tege@sics.se).
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
23 #if defined HAVE_STRING_H || defined _LIBC
30 # define MEMCMP memcmp
38 # if __BYTE_ORDER == __BIG_ENDIAN
39 # define WORDS_BIGENDIAN
42 #else /* Not in the GNU C library. */
44 # include <sys/types.h>
46 /* Type to use for aligned memory operations.
47 This should normally be the biggest type supported by a single load
48 and store. Must be an unsigned type. */
49 # define op_t unsigned long int
50 # define OPSIZ (sizeof(op_t))
52 /* Threshold value for when to enter the unrolled loops. */
53 # define OP_T_THRES 16
55 /* Type to use for unaligned operations. */
56 typedef unsigned char byte
;
58 # ifndef WORDS_BIGENDIAN
59 # define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2)))
61 # define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2)))
64 #endif /* In the GNU C library. */
66 #ifdef WORDS_BIGENDIAN
67 # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1)
69 # define CMP_LT_OR_GT(a, b) memcmp_bytes ((a), (b))
72 /* BE VERY CAREFUL IF YOU CHANGE THIS CODE! */
74 /* The strategy of this memcmp is:
76 1. Compare bytes until one of the block pointers is aligned.
78 2. Compare using memcmp_common_alignment or
79 memcmp_not_common_alignment, regarding the alignment of the other
80 block after the initial byte operations. The maximum number of
81 full words (of type op_t) are compared in this way.
83 3. Compare the few remaining bytes. */
85 #ifndef WORDS_BIGENDIAN
86 /* memcmp_bytes -- Compare A and B bytewise in the byte order of the machine.
87 A and B are known to be different.
88 This is needed only on little-endian machines. */
90 static int memcmp_bytes (op_t
, op_t
) __THROW
;
93 memcmp_bytes (op_t a
, op_t b
)
95 long int srcp1
= (long int) &a
;
96 long int srcp2
= (long int) &b
;
101 a0
= ((byte
*) srcp1
)[0];
102 b0
= ((byte
*) srcp2
)[0];
111 static int memcmp_common_alignment (long, long, size_t) __THROW
;
113 /* memcmp_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN `op_t'
114 objects (not LEN bytes!). Both SRCP1 and SRCP2 should be aligned for
115 memory operations on `op_t's. */
117 memcmp_common_alignment (long int srcp1
, long int srcp2
, size_t len
)
124 default: /* Avoid warning about uninitialized local variables. */
126 a0
= ((op_t
*) srcp1
)[0];
127 b0
= ((op_t
*) srcp2
)[0];
133 a1
= ((op_t
*) srcp1
)[0];
134 b1
= ((op_t
*) srcp2
)[0];
140 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
142 a0
= ((op_t
*) srcp1
)[0];
143 b0
= ((op_t
*) srcp2
)[0];
146 a1
= ((op_t
*) srcp1
)[0];
147 b1
= ((op_t
*) srcp2
)[0];
151 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
158 a0
= ((op_t
*) srcp1
)[0];
159 b0
= ((op_t
*) srcp2
)[0];
161 return CMP_LT_OR_GT (a1
, b1
);
164 a1
= ((op_t
*) srcp1
)[1];
165 b1
= ((op_t
*) srcp2
)[1];
167 return CMP_LT_OR_GT (a0
, b0
);
170 a0
= ((op_t
*) srcp1
)[2];
171 b0
= ((op_t
*) srcp2
)[2];
173 return CMP_LT_OR_GT (a1
, b1
);
176 a1
= ((op_t
*) srcp1
)[3];
177 b1
= ((op_t
*) srcp2
)[3];
179 return CMP_LT_OR_GT (a0
, b0
);
187 /* This is the right position for do0. Please don't move
191 return CMP_LT_OR_GT (a1
, b1
);
195 static int memcmp_not_common_alignment (long, long, size_t) __THROW
;
197 /* memcmp_not_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN
198 `op_t' objects (not LEN bytes!). SRCP2 should be aligned for memory
199 operations on `op_t', but SRCP1 *should be unaligned*. */
201 memcmp_not_common_alignment (long int srcp1
, long int srcp2
, size_t len
)
208 /* Calculate how to shift a word read at the memory operation
209 aligned srcp1 to make it aligned for comparison. */
211 shl
= 8 * (srcp1
% OPSIZ
);
212 shr
= 8 * OPSIZ
- shl
;
214 /* Make SRCP1 aligned by rounding it down to the beginning of the `op_t'
215 it points in the middle of. */
220 default: /* Avoid warning about uninitialized local variables. */
222 a1
= ((op_t
*) srcp1
)[0];
223 a2
= ((op_t
*) srcp1
)[1];
224 b2
= ((op_t
*) srcp2
)[0];
230 a0
= ((op_t
*) srcp1
)[0];
231 a1
= ((op_t
*) srcp1
)[1];
232 b1
= ((op_t
*) srcp2
)[0];
237 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
239 a3
= ((op_t
*) srcp1
)[0];
240 a0
= ((op_t
*) srcp1
)[1];
241 b0
= ((op_t
*) srcp2
)[0];
245 a2
= ((op_t
*) srcp1
)[0];
246 a3
= ((op_t
*) srcp1
)[1];
247 b3
= ((op_t
*) srcp2
)[0];
251 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
258 a0
= ((op_t
*) srcp1
)[0];
259 b0
= ((op_t
*) srcp2
)[0];
260 x
= MERGE(a2
, shl
, a3
, shr
);
262 return CMP_LT_OR_GT (x
, b3
);
265 a1
= ((op_t
*) srcp1
)[1];
266 b1
= ((op_t
*) srcp2
)[1];
267 x
= MERGE(a3
, shl
, a0
, shr
);
269 return CMP_LT_OR_GT (x
, b0
);
272 a2
= ((op_t
*) srcp1
)[2];
273 b2
= ((op_t
*) srcp2
)[2];
274 x
= MERGE(a0
, shl
, a1
, shr
);
276 return CMP_LT_OR_GT (x
, b1
);
279 a3
= ((op_t
*) srcp1
)[3];
280 b3
= ((op_t
*) srcp2
)[3];
281 x
= MERGE(a1
, shl
, a2
, shr
);
283 return CMP_LT_OR_GT (x
, b2
);
291 /* This is the right position for do0. Please don't move
294 x
= MERGE(a2
, shl
, a3
, shr
);
296 return CMP_LT_OR_GT (x
, b3
);
301 MEMCMP (const void *s1
, const void *s2
, size_t len
)
305 long int srcp1
= (long int) s1
;
306 long int srcp2
= (long int) s2
;
309 if (len
>= OP_T_THRES
)
311 /* There are at least some bytes to compare. No need to test
312 for LEN == 0 in this alignment loop. */
313 while (srcp2
% OPSIZ
!= 0)
315 a0
= ((byte
*) srcp1
)[0];
316 b0
= ((byte
*) srcp2
)[0];
325 /* SRCP2 is now aligned for memory operations on `op_t'.
326 SRCP1 alignment determines if we can do a simple,
327 aligned compare or need to shuffle bits. */
329 if (srcp1
% OPSIZ
== 0)
330 res
= memcmp_common_alignment (srcp1
, srcp2
, len
/ OPSIZ
);
332 res
= memcmp_not_common_alignment (srcp1
, srcp2
, len
/ OPSIZ
);
336 /* Number of bytes remaining in the interval [0..OPSIZ-1]. */
337 srcp1
+= len
& -OPSIZ
;
338 srcp2
+= len
& -OPSIZ
;
342 /* There are just a few bytes to compare. Use byte memory operations. */
345 a0
= ((byte
*) srcp1
)[0];
346 b0
= ((byte
*) srcp2
)[0];
357 libc_hidden_builtin_def(memcmp
)
360 weak_alias (memcmp
, bcmp
)