1 /* Platform-independent deterministic sort function.
2 Copyright (C) 2018-2021 Free Software Foundation, Inc.
3 Contributed by Alexander Monakov.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This implements a sort function suitable for GCC use cases:
22 - signature-compatible to C qsort, but relaxed contract:
23 - may apply the comparator to elements in a temporary buffer
24 - may abort on allocation failure
25 - deterministic (but not necessarily stable)
26 - fast, especially for common cases (0-5 elements of size 8 or 4)
28 The implementation uses a network sort for up to 5 elements and
29 a merge sort on top of that. Neither stage has branches depending on
30 comparator result, trading extra arithmetic for branch mispredictions. */
40 #define likely(cond) __builtin_expect ((cond), 1)
43 #define noinline __attribute__ ((__noinline__))
48 /* C-style qsort comparator function type. */
49 typedef int cmp_fn (const void *, const void *);
51 /* Structure holding read-mostly (read-only in netsort) context. */
54 cmp_fn
*cmp
; // pointer to comparator
55 char *out
; // output buffer
56 size_t n
; // number of elements
57 size_t size
; // element size
58 size_t nlim
; // limit for network sort
61 /* Like sort_ctx, but for use with qsort_r-style comparators. Several
62 functions in this file are templates that work with either context type. */
71 int cmp (const void *a
, const void *b
)
73 return cmp_ (a
, b
, data
);
77 /* Helper for netsort. Permute, possibly in-place, 2 or 3 elements,
78 placing E0 to C->OUT, E1 to C->OUT + C->SIZE, and so on. */
79 template<typename sort_ctx
>
81 reorder23 (sort_ctx
*c
, char *e0
, char *e1
, char *e2
)
83 #define REORDER_23(TYPE, STRIDE, OFFSET) \
86 memcpy (&t0, e0 + OFFSET, sizeof (TYPE)); \
87 memcpy (&t1, e1 + OFFSET, sizeof (TYPE)); \
88 char *out = c->out + OFFSET; \
89 if (likely (c->n == 3)) \
90 memmove (out + 2*STRIDE, e2 + OFFSET, sizeof (TYPE));\
91 memcpy (out, &t0, sizeof (TYPE)); out += STRIDE; \
92 memcpy (out, &t1, sizeof (TYPE)); \
95 if (likely (c
->size
== sizeof (size_t)))
96 REORDER_23 (size_t, sizeof (size_t), 0);
97 else if (likely (c
->size
== sizeof (int)))
98 REORDER_23 (int, sizeof (int), 0);
101 size_t offset
= 0, step
= sizeof (size_t);
102 for (; offset
+ step
<= c
->size
; offset
+= step
)
103 REORDER_23 (size_t, c
->size
, offset
);
104 for (; offset
< c
->size
; offset
++)
105 REORDER_23 (char, c
->size
, offset
);
109 /* Like reorder23, but permute 4 or 5 elements. */
110 template<typename sort_ctx
>
112 reorder45 (sort_ctx
*c
, char *e0
, char *e1
, char *e2
, char *e3
, char *e4
)
114 #define REORDER_45(TYPE, STRIDE, OFFSET) \
116 TYPE t0, t1, t2, t3; \
117 memcpy (&t0, e0 + OFFSET, sizeof (TYPE)); \
118 memcpy (&t1, e1 + OFFSET, sizeof (TYPE)); \
119 memcpy (&t2, e2 + OFFSET, sizeof (TYPE)); \
120 memcpy (&t3, e3 + OFFSET, sizeof (TYPE)); \
121 char *out = c->out + OFFSET; \
122 if (likely (c->n == 5)) \
123 memmove (out + 4*STRIDE, e4 + OFFSET, sizeof (TYPE));\
124 memcpy (out, &t0, sizeof (TYPE)); out += STRIDE; \
125 memcpy (out, &t1, sizeof (TYPE)); out += STRIDE; \
126 memcpy (out, &t2, sizeof (TYPE)); out += STRIDE; \
127 memcpy (out, &t3, sizeof (TYPE)); \
130 if (likely (c
->size
== sizeof (size_t)))
131 REORDER_45 (size_t, sizeof (size_t), 0);
132 else if (likely(c
->size
== sizeof (int)))
133 REORDER_45 (int, sizeof (int), 0);
136 size_t offset
= 0, step
= sizeof (size_t);
137 for (; offset
+ step
<= c
->size
; offset
+= step
)
138 REORDER_45 (size_t, c
->size
, offset
);
139 for (; offset
< c
->size
; offset
++)
140 REORDER_45 (char, c
->size
, offset
);
144 /* Helper for netsort. Invoke comparator CMP on E0 and E1.
145 Return E0^E1 if E0 compares less than E1, zero otherwise.
146 This is noinline to avoid code growth and confine invocation
147 to a single call site, assisting indirect branch prediction. */
148 template<typename sort_ctx
>
149 noinline
static intptr_t
150 cmp1 (char *e0
, char *e1
, sort_ctx
*c
)
152 intptr_t x
= (intptr_t)e0
^ (intptr_t)e1
;
153 return x
& (c
->cmp (e0
, e1
) >> 31);
156 /* Execute network sort on 2 to 5 elements from IN, placing them into C->OUT.
157 IN may be equal to C->OUT, in which case elements are sorted in place. */
158 template<typename sort_ctx
>
160 netsort (char *in
, sort_ctx
*c
)
162 #define CMP(e0, e1) \
164 intptr_t x = cmp1 (e1, e0, c); \
165 e0 = (char *)((intptr_t)e0 ^ x); \
166 e1 = (char *)((intptr_t)e1 ^ x); \
169 char *e0
= in
, *e1
= e0
+ c
->size
, *e2
= e1
+ c
->size
;
171 if (likely (c
->n
== 3))
177 return reorder23 (c
, e0
, e1
, e2
);
178 char *e3
= e2
+ c
->size
, *e4
= e3
+ c
->size
;
179 if (likely (c
->n
== 5))
185 if (likely (c
->n
== 5))
193 reorder45 (c
, e0
, e1
, e2
, e3
, e4
);
196 /* Execute merge sort on N elements from IN, placing them into OUT,
197 using TMP as temporary storage if IN is equal to OUT.
198 This is a stable sort if netsort is used only for 2 or 3 elements. */
199 template<typename sort_ctx
>
201 mergesort (char *in
, sort_ctx
*c
, size_t n
, char *out
, char *tmp
)
203 if (likely (n
<= c
->nlim
))
207 return netsort (in
, c
);
209 size_t nl
= n
/ 2, nr
= n
- nl
, sz
= nl
* c
->size
;
210 char *mid
= in
+ sz
, *r
= out
+ sz
, *l
= in
== out
? tmp
: in
;
211 /* Sort the right half, outputting to right half of OUT. */
212 mergesort (mid
, c
, nr
, r
, tmp
);
213 /* Sort the left half, leaving left half of OUT free. */
214 mergesort (in
, c
, nl
, l
, mid
);
215 /* Merge sorted halves given by L, R to [OUT, END). */
216 #define MERGE_ELTSIZE(SIZE) \
218 intptr_t mr = c->cmp (r, l) >> 31; \
219 intptr_t lr = (intptr_t)l ^ (intptr_t)r; \
220 lr = (intptr_t)l ^ (lr & mr); \
221 out = (char *)memcpy (out, (char *)lr, SIZE); \
224 if (r == out) return; \
228 if (likely (c
->cmp(r
, l
+ (r
- out
) - c
->size
) < 0))
230 char *end
= out
+ n
* c
->size
;
231 if (sizeof (size_t) == 8 && likely (c
->size
== 8))
233 else if (likely (c
->size
== 4))
236 MERGE_ELTSIZE (c
->size
);
238 memcpy (out
, l
, r
- out
);
242 /* Adapter for using two-argument comparators in functions expecting the
243 three-argument sort_r_cmp_fn type. */
245 cmp2to3 (const void *a
, const void *b
, void *c
)
247 return ((cmp_fn
*)c
) (a
, b
);
251 /* Replacement for C qsort. */
253 gcc_qsort (void *vbase
, size_t n
, size_t size
, cmp_fn
*cmp
)
258 bool stable
= (ssize_t
) size
< 0;
260 nlim
= 3, size
= ~size
;
261 char *base
= (char *)vbase
;
262 sort_ctx c
= {cmp
, base
, n
, size
, nlim
};
263 long long scratch
[32];
264 size_t bufsz
= (n
/ 2) * size
;
265 void *buf
= bufsz
<= sizeof scratch
? scratch
: xmalloc (bufsz
);
266 mergesort (base
, &c
, n
, base
, (char *)buf
);
270 qsort_chk (vbase
, n
, size
, cmp2to3
, (void*)cmp
);
274 /* Substitute for Glibc qsort_r. */
276 gcc_sort_r (void *vbase
, size_t n
, size_t size
, sort_r_cmp_fn
*cmp
, void *data
)
281 bool stable
= (ssize_t
) size
< 0;
283 nlim
= 3, size
= ~size
;
284 char *base
= (char *)vbase
;
285 sort_r_ctx c
= {data
, cmp
, base
, n
, size
, nlim
};
286 long long scratch
[32];
287 size_t bufsz
= (n
/ 2) * size
;
288 void *buf
= bufsz
<= sizeof scratch
? scratch
: xmalloc (bufsz
);
289 mergesort (base
, &c
, n
, base
, (char *)buf
);
293 qsort_chk (vbase
, n
, size
, cmp
, data
);
297 /* Stable sort, signature-compatible to C qsort. */
299 gcc_stablesort (void *vbase
, size_t n
, size_t size
, cmp_fn
*cmp
)
301 gcc_qsort (vbase
, n
, ~size
, cmp
);
304 /* Stable sort, signature-compatible to Glibc qsort_r. */
306 gcc_stablesort_r (void *vbase
, size_t n
, size_t size
, sort_r_cmp_fn
*cmp
,
309 gcc_sort_r (vbase
, n
, ~size
, cmp
, data
);