qsort.c 5.9 KB

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