1 /* Copyright (C) 1991,1993,1995,1997,1998,2003,2004
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Torbjorn Granlund (tege@sics.se).
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 #if defined __cplusplus || (defined __STDC__ && __STDC__)
27 # define __ptr_t void *
28 #else /* Not C++ or ANSI C. */
31 # define __ptr_t char *
32 #endif /* C++ or ANSI C. */
35 # if defined __GNUC__ || (defined __STDC__ && __STDC__)
36 # define __P(args) args
42 #if defined HAVE_STRING_H || defined _LIBC
53 # if __BYTE_ORDER == __BIG_ENDIAN
54 # define WORDS_BIGENDIAN
57 #else /* Not in the GNU C library. */
59 # include <sys/types.h>
61 /* Type to use for aligned memory operations.
62 This should normally be the biggest type supported by a single load
63 and store. Must be an unsigned type. */
64 # define op_t unsigned long int
65 # define OPSIZ (sizeof(op_t))
67 /* Threshold value for when to enter the unrolled loops. */
68 # define OP_T_THRES 16
70 /* Type to use for unaligned operations. */
71 typedef unsigned char byte
;
73 # ifndef WORDS_BIGENDIAN
74 # define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2)))
76 # define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2)))
79 #endif /* In the GNU C library. */
81 #ifdef WORDS_BIGENDIAN
82 # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1)
84 # define CMP_LT_OR_GT(a, b) memcmp_bytes ((a), (b))
87 /* BE VERY CAREFUL IF YOU CHANGE THIS CODE! */
89 /* The strategy of this memcmp is:
91 1. Compare bytes until one of the block pointers is aligned.
93 2. Compare using memcmp_common_alignment or
94 memcmp_not_common_alignment, regarding the alignment of the other
95 block after the initial byte operations. The maximum number of
96 full words (of type op_t) are compared in this way.
98 3. Compare the few remaining bytes. */
100 #ifndef WORDS_BIGENDIAN
101 /* memcmp_bytes -- Compare A and B bytewise in the byte order of the machine.
102 A and B are known to be different.
103 This is needed only on little-endian machines. */
105 static int memcmp_bytes
__P((op_t
, op_t
));
114 long int srcp1
= (long int) &a
;
115 long int srcp2
= (long int) &b
;
120 a0
= ((byte
*) srcp1
)[0];
121 b0
= ((byte
*) srcp2
)[0];
130 static int memcmp_common_alignment
__P((long, long, size_t));
132 /* memcmp_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN `op_t'
133 objects (not LEN bytes!). Both SRCP1 and SRCP2 should be aligned for
134 memory operations on `op_t's. */
136 memcmp_common_alignment (srcp1
, srcp2
, len
)
146 default: /* Avoid warning about uninitialized local variables. */
148 a0
= ((op_t
*) srcp1
)[0];
149 b0
= ((op_t
*) srcp2
)[0];
155 a1
= ((op_t
*) srcp1
)[0];
156 b1
= ((op_t
*) srcp2
)[0];
162 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
164 a0
= ((op_t
*) srcp1
)[0];
165 b0
= ((op_t
*) srcp2
)[0];
168 a1
= ((op_t
*) srcp1
)[0];
169 b1
= ((op_t
*) srcp2
)[0];
173 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
180 a0
= ((op_t
*) srcp1
)[0];
181 b0
= ((op_t
*) srcp2
)[0];
183 return CMP_LT_OR_GT (a1
, b1
);
186 a1
= ((op_t
*) srcp1
)[1];
187 b1
= ((op_t
*) srcp2
)[1];
189 return CMP_LT_OR_GT (a0
, b0
);
192 a0
= ((op_t
*) srcp1
)[2];
193 b0
= ((op_t
*) srcp2
)[2];
195 return CMP_LT_OR_GT (a1
, b1
);
198 a1
= ((op_t
*) srcp1
)[3];
199 b1
= ((op_t
*) srcp2
)[3];
201 return CMP_LT_OR_GT (a0
, b0
);
209 /* This is the right position for do0. Please don't move
213 return CMP_LT_OR_GT (a1
, b1
);
217 static int memcmp_not_common_alignment
__P((long, long, size_t));
219 /* memcmp_not_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN
220 `op_t' objects (not LEN bytes!). SRCP2 should be aligned for memory
221 operations on `op_t', but SRCP1 *should be unaligned*. */
223 memcmp_not_common_alignment (srcp1
, srcp2
, len
)
233 /* Calculate how to shift a word read at the memory operation
234 aligned srcp1 to make it aligned for comparison. */
236 shl
= 8 * (srcp1
% OPSIZ
);
237 shr
= 8 * OPSIZ
- shl
;
239 /* Make SRCP1 aligned by rounding it down to the beginning of the `op_t'
240 it points in the middle of. */
245 default: /* Avoid warning about uninitialized local variables. */
247 a1
= ((op_t
*) srcp1
)[0];
248 a2
= ((op_t
*) srcp1
)[1];
249 b2
= ((op_t
*) srcp2
)[0];
255 a0
= ((op_t
*) srcp1
)[0];
256 a1
= ((op_t
*) srcp1
)[1];
257 b1
= ((op_t
*) srcp2
)[0];
262 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
264 a3
= ((op_t
*) srcp1
)[0];
265 a0
= ((op_t
*) srcp1
)[1];
266 b0
= ((op_t
*) srcp2
)[0];
270 a2
= ((op_t
*) srcp1
)[0];
271 a3
= ((op_t
*) srcp1
)[1];
272 b3
= ((op_t
*) srcp2
)[0];
276 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
283 a0
= ((op_t
*) srcp1
)[0];
284 b0
= ((op_t
*) srcp2
)[0];
285 x
= MERGE(a2
, shl
, a3
, shr
);
287 return CMP_LT_OR_GT (x
, b3
);
290 a1
= ((op_t
*) srcp1
)[1];
291 b1
= ((op_t
*) srcp2
)[1];
292 x
= MERGE(a3
, shl
, a0
, shr
);
294 return CMP_LT_OR_GT (x
, b0
);
297 a2
= ((op_t
*) srcp1
)[2];
298 b2
= ((op_t
*) srcp2
)[2];
299 x
= MERGE(a0
, shl
, a1
, shr
);
301 return CMP_LT_OR_GT (x
, b1
);
304 a3
= ((op_t
*) srcp1
)[3];
305 b3
= ((op_t
*) srcp2
)[3];
306 x
= MERGE(a1
, shl
, a2
, shr
);
308 return CMP_LT_OR_GT (x
, b2
);
316 /* This is the right position for do0. Please don't move
319 x
= MERGE(a2
, shl
, a3
, shr
);
321 return CMP_LT_OR_GT (x
, b3
);
333 long int srcp1
= (long int) s1
;
334 long int srcp2
= (long int) s2
;
337 if (len
>= OP_T_THRES
)
339 /* There are at least some bytes to compare. No need to test
340 for LEN == 0 in this alignment loop. */
341 while (srcp2
% OPSIZ
!= 0)
343 a0
= ((byte
*) srcp1
)[0];
344 b0
= ((byte
*) srcp2
)[0];
353 /* SRCP2 is now aligned for memory operations on `op_t'.
354 SRCP1 alignment determines if we can do a simple,
355 aligned compare or need to shuffle bits. */
357 if (srcp1
% OPSIZ
== 0)
358 res
= memcmp_common_alignment (srcp1
, srcp2
, len
/ OPSIZ
);
360 res
= memcmp_not_common_alignment (srcp1
, srcp2
, len
/ OPSIZ
);
364 /* Number of bytes remaining in the interval [0..OPSIZ-1]. */
365 srcp1
+= len
& -OPSIZ
;
366 srcp2
+= len
& -OPSIZ
;
370 /* There are just a few bytes to compare. Use byte memory operations. */
373 a0
= ((byte
*) srcp1
)[0];
374 b0
= ((byte
*) srcp2
)[0];
385 libc_hidden_builtin_def(memcmp
)
388 weak_alias (memcmp
, bcmp
)