]>
git.saurik.com Git - apple/libc.git/blob - stdlib/FreeBSD/merge.c
6a93bc1486ec4a6654a2fafbd310f0584dce0839
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #pragma clang diagnostic push
34 #pragma clang diagnostic ignored "-Wcomma"
36 #if defined(LIBC_SCCS) && !defined(lint)
37 static char sccsid
[] = "@(#)merge.c 8.2 (Berkeley) 2/14/94";
38 #endif /* LIBC_SCCS and not lint */
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD: src/lib/libc/stdlib/merge.c,v 1.8 2007/01/09 00:28:10 imp Exp $");
43 * Hybrid exponential search/linear search merge sort with hybrid
44 * natural/pairwise first pass. Requires about .3% more comparisons
45 * for random data than LSMS with pairwise first pass alone.
46 * It works for objects as small as two bytes.
50 #define THRESHOLD 16 /* Best choice for natural merge cut-off. */
52 /* #define NATURAL to get hybrid natural merge.
53 * (The default is pairwise merging.)
56 #include <sys/types.h>
62 static void setup(u_char
*, u_char
*, size_t, size_t,
63 int (*)(const void *, const void *));
64 static void insertionsort(u_char
*, size_t, size_t,
65 int (*)(const void *, const void *));
67 #define ISIZE sizeof(int)
68 #define PSIZE sizeof(u_char *)
69 #define ICOPY_LIST(src, dst, last) \
71 *(int*)dst = *(int*)src, src += ISIZE, dst += ISIZE; \
73 #define ICOPY_ELT(src, dst, i) \
75 *(int*) dst = *(int*) src, src += ISIZE, dst += ISIZE; \
78 #define CCOPY_LIST(src, dst, last) \
82 #define CCOPY_ELT(src, dst, i) \
88 * Find the next possible pointer head. (Trickery for forcing an array
89 * to do double duty as a linked list when objects do not align with word
92 /* Assumption: PSIZE is a power of 2. */
93 #define EVAL(p) (u_char **) \
95 (((u_char *)p + PSIZE - 1 - (u_char *) 0) & ~(PSIZE - 1)))
98 * Arguments are as for qsort.
101 mergesort(base
, nmemb
, size
, cmp
)
105 int (*cmp
)(const void *, const void *);
110 u_char
*f1
, *f2
, *t
, *b
, *tp2
, *q
, *l1
, *l2
;
111 u_char
*list2
, *list1
, *p2
, *p
, *last
, **p1
;
113 if (size
< PSIZE
/ 2) { /* Pointers must fit into 2 * size. */
123 * Stupid subtraction for the Cray.
126 if (!(size
% ISIZE
) && !(((char *)base
- (char *)0) % ISIZE
))
129 if ((list2
= malloc(nmemb
* size
+ PSIZE
)) == NULL
)
133 setup(list1
, list2
, nmemb
, size
, cmp
);
134 last
= list2
+ nmemb
* size
;
136 while (*EVAL(list2
) != last
) {
139 for (tp2
= p2
= list2
; p2
!= last
; p1
= EVAL(l2
)) {
142 f2
= l1
= list1
+ (p2
- list2
);
145 l2
= list1
+ (p2
- list2
);
146 while (f1
< l1
&& f2
< l2
) {
147 if ((*cmp
)(f1
, f2
) <= 0) {
156 if (!big
) { /* here i = 0 */
157 while ((b
+= size
) < t
&& cmp(q
, b
) >sense
)
163 EXPONENTIAL
: for (i
= size
; ; i
<<= 1)
164 if ((p
= (b
+ i
)) >= t
) {
165 if ((p
= t
- size
) > b
&&
166 (*cmp
)(q
, p
) <= sense
)
171 } else if ((*cmp
)(q
, p
) <= sense
) {
179 i
= (((t
- b
) / size
) >> 1) * size
;
180 if ((*cmp
)(q
, p
= b
+ i
) <= sense
)
186 FASTCASE
: while (i
> size
)
188 p
= b
+ (i
>>= 1)) <= sense
)
197 ICOPY_LIST(f2
, tp2
, b
);
198 ICOPY_ELT(f1
, tp2
, i
);
200 CCOPY_LIST(f2
, tp2
, b
);
201 CCOPY_ELT(f1
, tp2
, i
);
205 ICOPY_LIST(f1
, tp2
, b
);
206 ICOPY_ELT(f2
, tp2
, i
);
208 CCOPY_LIST(f1
, tp2
, b
);
209 CCOPY_ELT(f2
, tp2
, i
);
215 ICOPY_LIST(f2
, tp2
, l2
);
217 CCOPY_LIST(f2
, tp2
, l2
);
218 } else if (f1
< l1
) {
220 ICOPY_LIST(f1
, tp2
, l1
);
222 CCOPY_LIST(f1
, tp2
, l1
);
226 tp2
= list1
; /* swap list1, list2 */
229 last
= list2
+ nmemb
*size
;
232 memmove(list2
, list1
, nmemb
*size
);
239 #define swap(a, b) { \
243 tmp = *a; *a++ = *s; *s++ = tmp; \
247 #define reverse(bot, top) { \
252 tmp = *bot; *bot++ = *s; *s++ = tmp; \
259 * Optional hybrid natural/pairwise first pass. Eats up list1 in runs of
260 * increasing order, list2 in a corresponding linked list. Checks for runs
261 * when THRESHOLD/2 pairs compare with same sense. (Only used when NATURAL
262 * is defined. Otherwise simple pairwise merging is used.)
265 setup(list1
, list2
, n
, size
, cmp
)
267 int (*cmp
)(const void *, const void *);
268 u_char
*list1
, *list2
;
271 int length
, tmp
, sense
;
272 u_char
*f1
, *f2
, *s
, *l2
, *last
, *p2
;
276 insertionsort(list1
, n
, size
, cmp
);
277 *EVAL(list2
) = (u_char
*) list2
+ n
*size
;
281 * Avoid running pointers out of bounds; limit n to evens
285 insertionsort(list1
+ (n
- i
) * size
, i
, size
, cmp
);
286 last
= list1
+ size
* (n
- i
);
287 *EVAL(list2
+ (last
- list1
)) = list2
+ n
* size
;
292 sense
= (cmp(f1
, f1
+ size
) > 0);
293 for (; f1
< last
; sense
= !sense
) {
295 /* Find pairs with same sense. */
296 for (f2
= f1
+ size2
; f2
< last
; f2
+= size2
) {
297 if ((cmp(f2
, f2
+ size
) > 0) != sense
)
301 if (length
< THRESHOLD
) { /* Pairwise merge */
303 p2
= *EVAL(p2
) = f1
+ size2
- list1
+ list2
;
305 swap (f1
, f1
+ size
);
306 } while ((f1
+= size2
) < f2
);
307 } else { /* Natural merge */
309 for (f2
= f1
+ size2
; f2
< l2
; f2
+= size2
) {
310 if ((cmp(f2
-size
, f2
) > 0) != sense
) {
311 p2
= *EVAL(p2
) = f2
- list1
+ list2
;
313 reverse(f1
, f2
-size
);
318 reverse (f1
, f2
-size
);
320 if (f2
< last
|| cmp(f2
- size
, f2
) > 0)
321 p2
= *EVAL(p2
) = f2
- list1
+ list2
;
323 p2
= *EVAL(p2
) = list2
+ n
*size
;
326 #else /* pairwise merge only. */
327 for (f1
= list1
, p2
= list2
; f1
< last
; f1
+= size2
) {
328 p2
= *EVAL(p2
) = p2
+ size2
;
329 if (cmp (f1
, f1
+ size
) > 0)
336 * This is to avoid out-of-bounds addresses in sorting the
340 insertionsort(a
, n
, size
, cmp
)
343 int (*cmp
)(const void *, const void *);
345 u_char
*ai
, *s
, *t
, *u
, tmp
;
348 for (ai
= a
+size
; --n
>= 1; ai
+= size
)
349 for (t
= ai
; t
> a
; t
-= size
) {
356 #pragma clang diagnostic pop