]>
git.saurik.com Git - apple/libc.git/blob - stdlib.subproj/merge.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1992, 1993
24 * The Regents of the University of California. All rights reserved.
26 * This code is derived from software contributed to Berkeley by
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Berkeley and its contributors.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * Hybrid exponential search/linear search merge sort with hybrid
61 * natural/pairwise first pass. Requires about .3% more comparisons
62 * for random data than LSMS with pairwise first pass alone.
63 * It works for objects as small as two bytes.
67 #define THRESHOLD 16 /* Best choice for natural merge cut-off. */
69 /* #define NATURAL to get hybrid natural merge.
70 * (The default is pairwise merging.)
73 #include <sys/types.h>
79 static void setup
__P((u_char
*, u_char
*, size_t, size_t, int (*)()));
80 static void insertionsort
__P((u_char
*, size_t, size_t, int (*)()));
82 #define ISIZE sizeof(int)
83 #define PSIZE sizeof(u_char *)
84 #define ICOPY_LIST(src, dst, last) \
86 *(int*)dst = *(int*)src, src += ISIZE, dst += ISIZE; \
88 #define ICOPY_ELT(src, dst, i) \
90 *(int*) dst = *(int*) src, src += ISIZE, dst += ISIZE; \
93 #define CCOPY_LIST(src, dst, last) \
97 #define CCOPY_ELT(src, dst, i) \
103 * Find the next possible pointer head. (Trickery for forcing an array
104 * to do double duty as a linked list when objects do not align with word
107 /* Assumption: PSIZE is a power of 2. */
108 #define EVAL(p) (u_char **) \
110 (((u_char *)p + PSIZE - 1 - (u_char *) 0) & ~(PSIZE - 1)))
113 * Arguments are as for qsort.
116 mergesort(base
, nmemb
, size
, cmp
)
119 register size_t size
;
120 int (*cmp
) __P((const void *, const void *));
122 register int i
, sense
;
124 register u_char
*f1
, *f2
, *t
, *b
, *tp2
, *q
, *l1
, *l2
;
125 u_char
*list2
, *list1
, *p2
, *p
, *last
, **p1
;
127 if (size
< PSIZE
/ 2) { /* Pointers must fit into 2 * size. */
134 * Stupid subtraction for the Cray.
137 if (!(size
% ISIZE
) && !(((char *)base
- (char *)0) % ISIZE
))
140 if ((list2
= malloc(nmemb
* size
+ PSIZE
)) == NULL
)
144 setup(list1
, list2
, nmemb
, size
, cmp
);
145 last
= list2
+ nmemb
* size
;
147 while (*EVAL(list2
) != last
) {
150 for (tp2
= p2
= list2
; p2
!= last
; p1
= EVAL(l2
)) {
153 f2
= l1
= list1
+ (p2
- list2
);
156 l2
= list1
+ (p2
- list2
);
157 while (f1
< l1
&& f2
< l2
) {
158 if ((*cmp
)(f1
, f2
) <= 0) {
167 if (!big
) { /* here i = 0 */
168 LINEAR
: while ((b
+= size
) < t
&& cmp(q
, b
) >sense
)
174 EXPONENTIAL
: for (i
= size
; ; i
<<= 1)
175 if ((p
= (b
+ i
)) >= t
) {
176 if ((p
= t
- size
) > b
&&
177 (*cmp
)(q
, p
) <= sense
)
182 } else if ((*cmp
)(q
, p
) <= sense
) {
189 SLOWCASE
: while (t
> b
+size
) {
190 i
= (((t
- b
) / size
) >> 1) * size
;
191 if ((*cmp
)(q
, p
= b
+ i
) <= sense
)
197 FASTCASE
: while (i
> size
)
199 p
= b
+ (i
>>= 1)) <= sense
)
208 ICOPY_LIST(f2
, tp2
, b
);
209 ICOPY_ELT(f1
, tp2
, i
);
211 CCOPY_LIST(f2
, tp2
, b
);
212 CCOPY_ELT(f1
, tp2
, i
);
216 ICOPY_LIST(f1
, tp2
, b
);
217 ICOPY_ELT(f2
, tp2
, i
);
219 CCOPY_LIST(f1
, tp2
, b
);
220 CCOPY_ELT(f2
, tp2
, i
);
226 ICOPY_LIST(f2
, tp2
, l2
);
228 CCOPY_LIST(f2
, tp2
, l2
);
229 } else if (f1
< l1
) {
231 ICOPY_LIST(f1
, tp2
, l1
);
233 CCOPY_LIST(f1
, tp2
, l1
);
237 tp2
= list1
; /* swap list1, list2 */
240 last
= list2
+ nmemb
*size
;
243 memmove(list2
, list1
, nmemb
*size
);
250 #define swap(a, b) { \
254 tmp = *a; *a++ = *s; *s++ = tmp; \
258 #define reverse(bot, top) { \
263 tmp = *bot; *bot++ = *s; *s++ = tmp; \
270 * Optional hybrid natural/pairwise first pass. Eats up list1 in runs of
271 * increasing order, list2 in a corresponding linked list. Checks for runs
272 * when THRESHOLD/2 pairs compare with same sense. (Only used when NATURAL
273 * is defined. Otherwise simple pairwise merging is used.)
276 setup(list1
, list2
, n
, size
, cmp
)
278 int (*cmp
) __P((const void *, const void *));
279 u_char
*list1
, *list2
;
281 int i
, length
, size2
, tmp
, sense
;
282 u_char
*f1
, *f2
, *s
, *l2
, *last
, *p2
;
286 insertionsort(list1
, n
, size
, cmp
);
287 *EVAL(list2
) = (u_char
*) list2
+ n
*size
;
291 * Avoid running pointers out of bounds; limit n to evens
295 insertionsort(list1
+ (n
- i
) * size
, i
, size
, cmp
);
296 last
= list1
+ size
* (n
- i
);
297 *EVAL(list2
+ (last
- list1
)) = list2
+ n
* size
;
302 sense
= (cmp(f1
, f1
+ size
) > 0);
303 for (; f1
< last
; sense
= !sense
) {
305 /* Find pairs with same sense. */
306 for (f2
= f1
+ size2
; f2
< last
; f2
+= size2
) {
307 if ((cmp(f2
, f2
+ size
) > 0) != sense
)
311 if (length
< THRESHOLD
) { /* Pairwise merge */
313 p2
= *EVAL(p2
) = f1
+ size2
- list1
+ list2
;
315 swap (f1
, f1
+ size
);
316 } while ((f1
+= size2
) < f2
);
317 } else { /* Natural merge */
319 for (f2
= f1
+ size2
; f2
< l2
; f2
+= size2
) {
320 if ((cmp(f2
-size
, f2
) > 0) != sense
) {
321 p2
= *EVAL(p2
) = f2
- list1
+ list2
;
323 reverse(f1
, f2
-size
);
328 reverse (f1
, f2
-size
);
330 if (f2
< last
|| cmp(f2
- size
, f2
) > 0)
331 p2
= *EVAL(p2
) = f2
- list1
+ list2
;
333 p2
= *EVAL(p2
) = list2
+ n
*size
;
336 #else /* pairwise merge only. */
337 for (f1
= list1
, p2
= list2
; f1
< last
; f1
+= size2
) {
338 p2
= *EVAL(p2
) = p2
+ size2
;
339 if (cmp (f1
, f1
+ size
) > 0)
346 * This is to avoid out-of-bounds addresses in sorting the
350 insertionsort(a
, n
, size
, cmp
)
353 int (*cmp
) __P((const void *, const void *));
355 u_char
*ai
, *s
, *t
, *u
, tmp
;
358 for (ai
= a
+size
; --n
>= 1; ai
+= size
)
359 for (t
= ai
; t
> a
; t
-= size
) {