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. */
34 #if defined HAVE_STRING_H || defined _LIBC
45 # if __BYTE_ORDER == __BIG_ENDIAN
46 # define WORDS_BIGENDIAN
49 #else /* Not in the GNU C library. */
51 # include <sys/types.h>
53 /* Type to use for aligned memory operations.
54 This should normally be the biggest type supported by a single load
55 and store. Must be an unsigned type. */
56 # define op_t unsigned long int
57 # define OPSIZ (sizeof(op_t))
59 /* Threshold value for when to enter the unrolled loops. */
60 # define OP_T_THRES 16
62 /* Type to use for unaligned operations. */
63 typedef unsigned char byte;
65 # ifndef WORDS_BIGENDIAN
66 # define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2)))
68 # define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2)))
71 #endif /* In the GNU C library. */
73 #ifdef WORDS_BIGENDIAN
74 # define CMP_LT_OR_GT(a, b) ((a) > (b) ? 1 : -1)
76 # define CMP_LT_OR_GT(a, b) memcmp_bytes ((a), (b))
79 /* BE VERY CAREFUL IF YOU CHANGE THIS CODE! */
81 /* The strategy of this memcmp is:
83 1. Compare bytes until one of the block pointers is aligned.
85 2. Compare using memcmp_common_alignment or
86 memcmp_not_common_alignment, regarding the alignment of the other
87 block after the initial byte operations. The maximum number of
88 full words (of type op_t) are compared in this way.
90 3. Compare the few remaining bytes. */
92 #ifndef WORDS_BIGENDIAN
93 /* memcmp_bytes -- Compare A and B bytewise in the byte order of the machine.
94 A and B are known to be different.
95 This is needed only on little-endian machines. */
97 static int memcmp_bytes (op_t, op_t) __THROW;
106 long int srcp1 = (long int) &a;
107 long int srcp2 = (long int) &b;
112 a0 = ((byte *) srcp1)[0];
113 b0 = ((byte *) srcp2)[0];
122 static int memcmp_common_alignment (long, long, size_t) __THROW;
124 /* memcmp_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN `op_t'
125 objects (not LEN bytes!). Both SRCP1 and SRCP2 should be aligned for
126 memory operations on `op_t's. */
128 memcmp_common_alignment (srcp1, srcp2, len)
138 default: /* Avoid warning about uninitialized local variables. */
140 a0 = ((op_t *) srcp1)[0];
141 b0 = ((op_t *) srcp2)[0];
147 a1 = ((op_t *) srcp1)[0];
148 b1 = ((op_t *) srcp2)[0];
154 if (OP_T_THRES <= 3 * OPSIZ && len == 0)
156 a0 = ((op_t *) srcp1)[0];
157 b0 = ((op_t *) srcp2)[0];
160 a1 = ((op_t *) srcp1)[0];
161 b1 = ((op_t *) srcp2)[0];
165 if (OP_T_THRES <= 3 * OPSIZ && len == 0)
172 a0 = ((op_t *) srcp1)[0];
173 b0 = ((op_t *) srcp2)[0];
175 return CMP_LT_OR_GT (a1, b1);
178 a1 = ((op_t *) srcp1)[1];
179 b1 = ((op_t *) srcp2)[1];
181 return CMP_LT_OR_GT (a0, b0);
184 a0 = ((op_t *) srcp1)[2];
185 b0 = ((op_t *) srcp2)[2];
187 return CMP_LT_OR_GT (a1, b1);
190 a1 = ((op_t *) srcp1)[3];
191 b1 = ((op_t *) srcp2)[3];
193 return CMP_LT_OR_GT (a0, b0);
201 /* This is the right position for do0. Please don't move
205 return CMP_LT_OR_GT (a1, b1);
209 static int memcmp_not_common_alignment (long, long, size_t) __THROW;
211 /* memcmp_not_common_alignment -- Compare blocks at SRCP1 and SRCP2 with LEN
212 `op_t' objects (not LEN bytes!). SRCP2 should be aligned for memory
213 operations on `op_t', but SRCP1 *should be unaligned*. */
215 memcmp_not_common_alignment (srcp1, srcp2, len)
225 /* Calculate how to shift a word read at the memory operation
226 aligned srcp1 to make it aligned for comparison. */
228 shl = 8 * (srcp1 % OPSIZ);
229 shr = 8 * OPSIZ - shl;
231 /* Make SRCP1 aligned by rounding it down to the beginning of the `op_t'
232 it points in the middle of. */
237 default: /* Avoid warning about uninitialized local variables. */
239 a1 = ((op_t *) srcp1)[0];
240 a2 = ((op_t *) srcp1)[1];
241 b2 = ((op_t *) srcp2)[0];
247 a0 = ((op_t *) srcp1)[0];
248 a1 = ((op_t *) srcp1)[1];
249 b1 = ((op_t *) srcp2)[0];
254 if (OP_T_THRES <= 3 * OPSIZ && len == 0)
256 a3 = ((op_t *) srcp1)[0];
257 a0 = ((op_t *) srcp1)[1];
258 b0 = ((op_t *) srcp2)[0];
262 a2 = ((op_t *) srcp1)[0];
263 a3 = ((op_t *) srcp1)[1];
264 b3 = ((op_t *) srcp2)[0];
268 if (OP_T_THRES <= 3 * OPSIZ && len == 0)
275 a0 = ((op_t *) srcp1)[0];
276 b0 = ((op_t *) srcp2)[0];
277 x = MERGE(a2, shl, a3, shr);
279 return CMP_LT_OR_GT (x, b3);
282 a1 = ((op_t *) srcp1)[1];
283 b1 = ((op_t *) srcp2)[1];
284 x = MERGE(a3, shl, a0, shr);
286 return CMP_LT_OR_GT (x, b0);
289 a2 = ((op_t *) srcp1)[2];
290 b2 = ((op_t *) srcp2)[2];
291 x = MERGE(a0, shl, a1, shr);
293 return CMP_LT_OR_GT (x, b1);
296 a3 = ((op_t *) srcp1)[3];
297 b3 = ((op_t *) srcp2)[3];
298 x = MERGE(a1, shl, a2, shr);
300 return CMP_LT_OR_GT (x, b2);
308 /* This is the right position for do0. Please don't move
311 x = MERGE(a2, shl, a3, shr);
313 return CMP_LT_OR_GT (x, b3);
325 long int srcp1 = (long int) s1;
326 long int srcp2 = (long int) s2;
329 if (len >= OP_T_THRES)
331 /* There are at least some bytes to compare. No need to test
332 for LEN == 0 in this alignment loop. */
333 while (srcp2 % OPSIZ != 0)
335 a0 = ((byte *) srcp1)[0];
336 b0 = ((byte *) srcp2)[0];
345 /* SRCP2 is now aligned for memory operations on `op_t'.
346 SRCP1 alignment determines if we can do a simple,
347 aligned compare or need to shuffle bits. */
349 if (srcp1 % OPSIZ == 0)
350 res = memcmp_common_alignment (srcp1, srcp2, len / OPSIZ);
352 res = memcmp_not_common_alignment (srcp1, srcp2, len / OPSIZ);
356 /* Number of bytes remaining in the interval [0..OPSIZ-1]. */
357 srcp1 += len & -OPSIZ;
358 srcp2 += len & -OPSIZ;
362 /* There are just a few bytes to compare. Use byte memory operations. */
365 a0 = ((byte *) srcp1)[0];
366 b0 = ((byte *) srcp2)[0];
377 libc_hidden_builtin_def(memcmp)
380 weak_alias (memcmp, bcmp)