1 /* Copyright (C) 1991, 1993, 1995, 1997, 1998 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 Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
25 #if defined __cplusplus || (defined __STDC__ && __STDC__)
26 # define __ptr_t void *
27 #else /* Not C++ or ANSI C. */
30 # define __ptr_t char *
31 #endif /* C++ or ANSI C. */
34 # if defined __GNUC__ || (defined __STDC__ && __STDC__)
35 # define __P(args) args
41 #if defined HAVE_STRING_H || defined _LIBC
52 # if __BYTE_ORDER == __BIG_ENDIAN
53 # define WORDS_BIGENDIAN
56 #else /* Not in the GNU C library. */
58 # include <sys/types.h>
60 /* Type to use for aligned memory operations.
61 This should normally be the biggest type supported by a single load
62 and store. Must be an unsigned type. */
63 # define op_t unsigned long int
64 # define OPSIZ (sizeof(op_t))
66 /* Threshold value for when to enter the unrolled loops. */
67 # define OP_T_THRES 16
69 /* Type to use for unaligned operations. */
70 typedef unsigned char byte
;
72 # ifndef WORDS_BIGENDIAN
73 # define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2)))
75 # define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2)))
78 #endif /* In the GNU C library. */
80 #ifdef WORDS_BIGENDIAN
81 # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1)
83 # define CMP_LT_OR_GT(a, b) memcmp_bytes ((a), (b))
86 /* BE VERY CAREFUL IF YOU CHANGE THIS CODE! */
88 /* The strategy of this memcmp is:
90 1. Compare bytes until one of the block pointers is aligned.
92 2. Compare using memcmp_common_alignment or
93 memcmp_not_common_alignment, regarding the alignment of the other
94 block after the initial byte operations. The maximum number of
95 full words (of type op_t) are compared in this way.
97 3. Compare the few remaining bytes. */
99 #ifndef WORDS_BIGENDIAN
100 /* memcmp_bytes -- Compare A and B bytewise in the byte order of the machine.
101 A and B are known to be different.
102 This is needed only on little-endian machines. */
104 static int memcmp_bytes
__P((op_t
, op_t
));
113 long int srcp1
= (long int) &a
;
114 long int srcp2
= (long int) &b
;
119 a0
= ((byte
*) srcp1
)[0];
120 b0
= ((byte
*) srcp2
)[0];
129 static int memcmp_common_alignment
__P((long, long, size_t));
131 /* memcmp_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN `op_t'
132 objects (not LEN bytes!). Both SRCP1 and SRCP2 should be aligned for
133 memory operations on `op_t's. */
138 memcmp_common_alignment (srcp1
, srcp2
, len
)
148 default: /* Avoid warning about uninitialized local variables. */
150 a0
= ((op_t
*) srcp1
)[0];
151 b0
= ((op_t
*) srcp2
)[0];
157 a1
= ((op_t
*) srcp1
)[0];
158 b1
= ((op_t
*) srcp2
)[0];
164 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
166 a0
= ((op_t
*) srcp1
)[0];
167 b0
= ((op_t
*) srcp2
)[0];
170 a1
= ((op_t
*) srcp1
)[0];
171 b1
= ((op_t
*) srcp2
)[0];
175 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
182 a0
= ((op_t
*) srcp1
)[0];
183 b0
= ((op_t
*) srcp2
)[0];
185 return CMP_LT_OR_GT (a1
, b1
);
188 a1
= ((op_t
*) srcp1
)[1];
189 b1
= ((op_t
*) srcp2
)[1];
191 return CMP_LT_OR_GT (a0
, b0
);
194 a0
= ((op_t
*) srcp1
)[2];
195 b0
= ((op_t
*) srcp2
)[2];
197 return CMP_LT_OR_GT (a1
, b1
);
200 a1
= ((op_t
*) srcp1
)[3];
201 b1
= ((op_t
*) srcp2
)[3];
203 return CMP_LT_OR_GT (a0
, b0
);
211 /* This is the right position for do0. Please don't move
215 return CMP_LT_OR_GT (a1
, b1
);
219 static int memcmp_not_common_alignment
__P((long, long, size_t));
221 /* memcmp_not_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN
222 `op_t' objects (not LEN bytes!). SRCP2 should be aligned for memory
223 operations on `op_t', but SRCP1 *should be unaligned*. */
228 memcmp_not_common_alignment (srcp1
, srcp2
, len
)
238 /* Calculate how to shift a word read at the memory operation
239 aligned srcp1 to make it aligned for comparison. */
241 shl
= 8 * (srcp1
% OPSIZ
);
242 shr
= 8 * OPSIZ
- shl
;
244 /* Make SRCP1 aligned by rounding it down to the beginning of the `op_t'
245 it points in the middle of. */
250 default: /* Avoid warning about uninitialized local variables. */
252 a1
= ((op_t
*) srcp1
)[0];
253 a2
= ((op_t
*) srcp1
)[1];
254 b2
= ((op_t
*) srcp2
)[0];
260 a0
= ((op_t
*) srcp1
)[0];
261 a1
= ((op_t
*) srcp1
)[1];
262 b1
= ((op_t
*) srcp2
)[0];
267 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
269 a3
= ((op_t
*) srcp1
)[0];
270 a0
= ((op_t
*) srcp1
)[1];
271 b0
= ((op_t
*) srcp2
)[0];
275 a2
= ((op_t
*) srcp1
)[0];
276 a3
= ((op_t
*) srcp1
)[1];
277 b3
= ((op_t
*) srcp2
)[0];
281 if (OP_T_THRES
<= 3 * OPSIZ
&& len
== 0)
288 a0
= ((op_t
*) srcp1
)[0];
289 b0
= ((op_t
*) srcp2
)[0];
290 x
= MERGE(a2
, shl
, a3
, shr
);
292 return CMP_LT_OR_GT (x
, b3
);
295 a1
= ((op_t
*) srcp1
)[1];
296 b1
= ((op_t
*) srcp2
)[1];
297 x
= MERGE(a3
, shl
, a0
, shr
);
299 return CMP_LT_OR_GT (x
, b0
);
302 a2
= ((op_t
*) srcp1
)[2];
303 b2
= ((op_t
*) srcp2
)[2];
304 x
= MERGE(a0
, shl
, a1
, shr
);
306 return CMP_LT_OR_GT (x
, b1
);
309 a3
= ((op_t
*) srcp1
)[3];
310 b3
= ((op_t
*) srcp2
)[3];
311 x
= MERGE(a1
, shl
, a2
, shr
);
313 return CMP_LT_OR_GT (x
, b2
);
321 /* This is the right position for do0. Please don't move
324 x
= MERGE(a2
, shl
, a3
, shr
);
326 return CMP_LT_OR_GT (x
, b3
);
338 long int srcp1
= (long int) s1
;
339 long int srcp2
= (long int) s2
;
342 if (len
>= OP_T_THRES
)
344 /* There are at least some bytes to compare. No need to test
345 for LEN == 0 in this alignment loop. */
346 while (srcp2
% OPSIZ
!= 0)
348 a0
= ((byte
*) srcp1
)[0];
349 b0
= ((byte
*) srcp2
)[0];
358 /* SRCP2 is now aligned for memory operations on `op_t'.
359 SRCP1 alignment determines if we can do a simple,
360 aligned compare or need to shuffle bits. */
362 if (srcp1
% OPSIZ
== 0)
363 res
= memcmp_common_alignment (srcp1
, srcp2
, len
/ OPSIZ
);
365 res
= memcmp_not_common_alignment (srcp1
, srcp2
, len
/ OPSIZ
);
369 /* Number of bytes remaining in the interval [0..OPSIZ-1]. */
370 srcp1
+= len
& -OPSIZ
;
371 srcp2
+= len
& -OPSIZ
;
375 /* There are just a few bytes to compare. Use byte memory operations. */
378 a0
= ((byte
*) srcp1
)[0];
379 b0
= ((byte
*) srcp2
)[0];
393 weak_alias (memcmp
, bcmp
)