]> granicus.if.org Git - postgresql/blob - src/port/qsort.c
$Header: -> $PostgreSQL Changes ...
[postgresql] / src / port / qsort.c
1 /*
2  *      Copied from NetBSD CVS, 2002-07-19, bjm
3  *      Add do ... while() macro fix
4  *      Remove __inline, _DIAGASSERTs, __P
5  *
6  *      $PostgreSQL: pgsql/src/port/qsort.c,v 1.4 2003/11/29 19:52:13 pgsql Exp $
7  */
8
9 /*      $NetBSD: qsort.c,v 1.12 1999/09/20 04:39:40 lukem Exp $ */
10
11 /*-
12  * Copyright (c) 1992, 1993
13  *      The Regents of the University of California.  All rights reserved.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
18  * 1. Redistributions of source code must retain the above copyright
19  *        notice, this list of conditions and the following disclaimer.
20  * 2. Redistributions in binary form must reproduce the above copyright
21  *        notice, this list of conditions and the following disclaimer in the
22  *        documentation and/or other materials provided with the distribution.
23  * 3. All advertising materials mentioning features or use of this software
24  *        must display the following acknowledgement:
25  *      This product includes software developed by the University of
26  *      California, Berkeley and its contributors.
27  * 4. Neither the name of the University nor the names of its contributors
28  *        may be used to endorse or promote products derived from this software
29  *        without specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
32  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34  * ARE DISCLAIMED.      IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
35  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
39  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41  * SUCH DAMAGE.
42  */
43
44 #include <stdlib.h>
45 #include <errno.h>
46 #include <sys/types.h>
47
48
49 static char *med3(char *, char *, char *,
50          int (*) (const void *, const void *));
51 static void swapfunc(char *, char *, size_t, int);
52
53 #define min(a, b)       ((a) < (b) ? (a) : (b))
54
55 /*
56  * Qsort routine from Bentley & McIlroy's "Engineering a Sort Function".
57  */
58 #define swapcode(TYPE, parmi, parmj, n) \
59 do {            \
60         size_t i = (n) / sizeof (TYPE);                 \
61         TYPE *pi = (TYPE *)(void *)(parmi);                     \
62         TYPE *pj = (TYPE *)(void *)(parmj);                     \
63         do {                                            \
64                 TYPE    t = *pi;                        \
65                 *pi++ = *pj;                            \
66                 *pj++ = t;                              \
67                 } while (--i > 0);                              \
68 } while (0)
69
70 #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \
71         es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1;
72
73 static void
74 swapfunc(a, b, n, swaptype)
75 char       *a,
76                    *b;
77 size_t          n;
78 int                     swaptype;
79 {
80         if (swaptype <= 1)
81                 swapcode(long, a, b, n);
82         else
83                 swapcode(char, a, b, n);
84 }
85
86 #define swap(a, b)                                              \
87         if (swaptype == 0) {                                    \
88                 long t = *(long *)(void *)(a);                  \
89                 *(long *)(void *)(a) = *(long *)(void *)(b);    \
90                 *(long *)(void *)(b) = t;                       \
91         } else                                                  \
92                 swapfunc(a, b, es, swaptype)
93
94 #define vecswap(a, b, n) if ((n) > 0) swapfunc((a), (b), (size_t)(n), swaptype)
95
96 static char *
97 med3(a, b, c, cmp)
98 char       *a,
99                    *b,
100                    *c;
101 int                     (*cmp) (const void *, const void *);
102 {
103         return cmp(a, b) < 0 ?
104                 (cmp(b, c) < 0 ? b : (cmp(a, c) < 0 ? c : a))
105                 : (cmp(b, c) > 0 ? b : (cmp(a, c) < 0 ? a : c));
106 }
107
108 void
109 qsort(a, n, es, cmp)
110 void       *a;
111 size_t          n,
112                         es;
113 int                     (*cmp) (const void *, const void *);
114 {
115         char       *pa,
116                            *pb,
117                            *pc,
118                            *pd,
119                            *pl,
120                            *pm,
121                            *pn;
122         int                     d,
123                                 r,
124                                 swaptype,
125                                 swap_cnt;
126
127 loop:SWAPINIT(a, es);
128         swap_cnt = 0;
129         if (n < 7)
130         {
131                 for (pm = (char *) a + es; pm < (char *) a + n * es; pm += es)
132                         for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0;
133                                  pl -= es)
134                                 swap(pl, pl - es);
135                 return;
136         }
137         pm = (char *) a + (n / 2) * es;
138         if (n > 7)
139         {
140                 pl = (char *) a;
141                 pn = (char *) a + (n - 1) * es;
142                 if (n > 40)
143                 {
144                         d = (n / 8) * es;
145                         pl = med3(pl, pl + d, pl + 2 * d, cmp);
146                         pm = med3(pm - d, pm, pm + d, cmp);
147                         pn = med3(pn - 2 * d, pn - d, pn, cmp);
148                 }
149                 pm = med3(pl, pm, pn, cmp);
150         }
151         swap(a, pm);
152         pa = pb = (char *) a + es;
153
154         pc = pd = (char *) a + (n - 1) * es;
155         for (;;)
156         {
157                 while (pb <= pc && (r = cmp(pb, a)) <= 0)
158                 {
159                         if (r == 0)
160                         {
161                                 swap_cnt = 1;
162                                 swap(pa, pb);
163                                 pa += es;
164                         }
165                         pb += es;
166                 }
167                 while (pb <= pc && (r = cmp(pc, a)) >= 0)
168                 {
169                         if (r == 0)
170                         {
171                                 swap_cnt = 1;
172                                 swap(pc, pd);
173                                 pd -= es;
174                         }
175                         pc -= es;
176                 }
177                 if (pb > pc)
178                         break;
179                 swap(pb, pc);
180                 swap_cnt = 1;
181                 pb += es;
182                 pc -= es;
183         }
184         if (swap_cnt == 0)
185         {                                                       /* Switch to insertion sort */
186                 for (pm = (char *) a + es; pm < (char *) a + n * es; pm += es)
187                         for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0;
188                                  pl -= es)
189                                 swap(pl, pl - es);
190                 return;
191         }
192
193         pn = (char *) a + n * es;
194         r = min(pa - (char *) a, pb - pa);
195         vecswap(a, pb - r, r);
196         r = min(pd - pc, pn - pd - es);
197         vecswap(pb, pn - r, r);
198         if ((r = pb - pa) > es)
199                 qsort(a, r / es, es, cmp);
200         if ((r = pd - pc) > es)
201         {
202                 /* Iterate rather than recurse to save stack space */
203                 a = pn - r;
204                 n = r / es;
205                 goto loop;
206         }
207 /*              qsort(pn - r, r / es, es, cmp);*/
208 }