qsort.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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/cdefs.h>
  32. __FBSDID("$FreeBSD$");
  33. #include <sys/param.h>
  34. #include <sys/libkern.h>
  35. #ifdef I_AM_QSORT_R
  36. typedef int cmp_t(void *, const void *, const void *);
  37. #else
  38. typedef int cmp_t(const void *, const void *);
  39. #endif
  40. static inline char *med3(char *, char *, char *, cmp_t *, void *);
  41. static inline void swapfunc(char *, char *, size_t, int, int);
  42. /*
  43. * Qsort routine from Bentley & McIlroy's "Engineering a Sort Function".
  44. */
  45. #define swapcode(TYPE, parmi, parmj, n) { \
  46. size_t i = (n) / sizeof (TYPE); \
  47. TYPE *pi = (TYPE *) (parmi); \
  48. TYPE *pj = (TYPE *) (parmj); \
  49. do { \
  50. TYPE t = *pi; \
  51. *pi++ = *pj; \
  52. *pj++ = t; \
  53. } while (--i > 0); \
  54. }
  55. #define SWAPINIT(TYPE, a, es) swaptype_ ## TYPE = \
  56. ((char *)a - (char *)0) % sizeof(TYPE) || \
  57. es % sizeof(TYPE) ? 2 : es == sizeof(TYPE) ? 0 : 1;
  58. static inline void
  59. swapfunc(char *a, char *b, size_t n, int swaptype_long, int swaptype_int)
  60. {
  61. if (swaptype_long <= 1)
  62. swapcode(long, a, b, n)
  63. else if (swaptype_int <= 1)
  64. swapcode(int, a, b, n)
  65. else
  66. swapcode(char, a, b, n)
  67. }
  68. #define swap(a, b) \
  69. if (swaptype_long == 0) { \
  70. long t = *(long *)(a); \
  71. *(long *)(a) = *(long *)(b); \
  72. *(long *)(b) = t; \
  73. } else if (swaptype_int == 0) { \
  74. int t = *(int *)(a); \
  75. *(int *)(a) = *(int *)(b); \
  76. *(int *)(b) = t; \
  77. } else \
  78. swapfunc(a, b, es, swaptype_long, swaptype_int)
  79. #define vecswap(a, b, n) \
  80. if ((n) > 0) swapfunc(a, b, n, swaptype_long, swaptype_int)
  81. #ifdef I_AM_QSORT_R
  82. #define CMP(t, x, y) (cmp((t), (x), (y)))
  83. #else
  84. #define CMP(t, x, y) (cmp((x), (y)))
  85. #endif
  86. static inline char *
  87. med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
  88. #ifndef I_AM_QSORT_R
  89. __unused
  90. #endif
  91. )
  92. {
  93. return CMP(thunk, a, b) < 0 ?
  94. (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
  95. :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
  96. }
  97. #ifdef I_AM_QSORT_R
  98. void
  99. qsort_r(void *a, size_t n, size_t es, void *thunk, cmp_t *cmp)
  100. #else
  101. #define thunk NULL
  102. void
  103. qsort(void *a, size_t n, size_t es, cmp_t *cmp)
  104. #endif
  105. {
  106. char *pa, *pb, *pc, *pd, *pl, *pm, *pn;
  107. size_t d1, d2;
  108. int cmp_result;
  109. int swaptype_long, swaptype_int, swap_cnt;
  110. loop: SWAPINIT(long, a, es);
  111. SWAPINIT(int, a, es);
  112. swap_cnt = 0;
  113. if (n < 7) {
  114. for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
  115. for (pl = pm;
  116. pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
  117. pl -= es)
  118. swap(pl, pl - es);
  119. return;
  120. }
  121. pm = (char *)a + (n / 2) * es;
  122. if (n > 7) {
  123. pl = a;
  124. pn = (char *)a + (n - 1) * es;
  125. if (n > 40) {
  126. size_t d = (n / 8) * es;
  127. pl = med3(pl, pl + d, pl + 2 * d, cmp, thunk);
  128. pm = med3(pm - d, pm, pm + d, cmp, thunk);
  129. pn = med3(pn - 2 * d, pn - d, pn, cmp, thunk);
  130. }
  131. pm = med3(pl, pm, pn, cmp, thunk);
  132. }
  133. swap(a, pm);
  134. pa = pb = (char *)a + es;
  135. pc = pd = (char *)a + (n - 1) * es;
  136. for (;;) {
  137. while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
  138. if (cmp_result == 0) {
  139. swap_cnt = 1;
  140. swap(pa, pb);
  141. pa += es;
  142. }
  143. pb += es;
  144. }
  145. while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
  146. if (cmp_result == 0) {
  147. swap_cnt = 1;
  148. swap(pc, pd);
  149. pd -= es;
  150. }
  151. pc -= es;
  152. }
  153. if (pb > pc)
  154. break;
  155. swap(pb, pc);
  156. swap_cnt = 1;
  157. pb += es;
  158. pc -= es;
  159. }
  160. if (swap_cnt == 0) { /* Switch to insertion sort */
  161. for (pm = (char *)a + es; pm < (char *)a + n * es; pm += es)
  162. for (pl = pm;
  163. pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
  164. pl -= es)
  165. swap(pl, pl - es);
  166. return;
  167. }
  168. pn = (char *)a + n * es;
  169. d1 = MIN(pa - (char *)a, pb - pa);
  170. vecswap(a, pb - d1, d1);
  171. d1 = MIN(pd - pc, pn - pd - es);
  172. vecswap(pb, pn - d1, d1);
  173. d1 = pb - pa;
  174. d2 = pd - pc;
  175. if (d1 <= d2) {
  176. /* Recurse on left partition, then iterate on right partition */
  177. if (d1 > es) {
  178. #ifdef I_AM_QSORT_R
  179. qsort_r(a, d1 / es, es, thunk, cmp);
  180. #else
  181. qsort(a, d1 / es, es, cmp);
  182. #endif
  183. }
  184. if (d2 > es) {
  185. /* Iterate rather than recurse to save stack space */
  186. /* qsort(pn - d2, d2 / es, es, cmp); */
  187. a = pn - d2;
  188. n = d2 / es;
  189. goto loop;
  190. }
  191. } else {
  192. /* Recurse on right partition, then iterate on left partition */
  193. if (d2 > es) {
  194. #ifdef I_AM_QSORT_R
  195. qsort_r(pn - d2, d2 / es, es, thunk, cmp);
  196. #else
  197. qsort(pn - d2, d2 / es, es, cmp);
  198. #endif
  199. }
  200. if (d1 > es) {
  201. /* Iterate rather than recurse to save stack space */
  202. /* qsort(a, d1 / es, es, cmp); */
  203. n = d1 / es;
  204. goto loop;
  205. }
  206. }
  207. }