2023-01-06 21:08:04 +00:00
|
|
|
/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
|
1996-12-20 01:39:50 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1999-10-28 21:38:59 +00:00
|
|
|
/* If you consider tuning this algorithm, you should consult first:
|
|
|
|
Engineering a sort function; Jon Bentley and M. Douglas McIlroy;
|
|
|
|
Software - Practice and Experience; Vol. 23 (11), 1249-1265, 1993. */
|
|
|
|
|
|
|
|
#include <limits.h>
|
2023-10-03 12:22:46 +00:00
|
|
|
#include <memswap.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-10-03 12:22:46 +00:00
|
|
|
#include <stdbool.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-10-03 12:22:46 +00:00
|
|
|
/* Swap SIZE bytes between addresses A and B. These helpers are provided
|
|
|
|
along the generic one as an optimization. */
|
|
|
|
|
|
|
|
enum swap_type_t
|
|
|
|
{
|
|
|
|
SWAP_WORDS_64,
|
|
|
|
SWAP_WORDS_32,
|
|
|
|
SWAP_BYTES
|
|
|
|
};
|
|
|
|
|
|
|
|
/* If this function returns true, elements can be safely copied using word
|
|
|
|
loads and stores. Otherwise, it might not be safe. BASE (as an integer)
|
|
|
|
must be a multiple of the word alignment. SIZE must be a multiple of
|
|
|
|
WORDSIZE. Since WORDSIZE must be a multiple of the word alignment, and
|
|
|
|
WORDSIZE is a power of two on all supported platforms, this function for
|
|
|
|
speed merely checks that BASE and SIZE are both multiples of the word
|
|
|
|
size. */
|
|
|
|
static inline bool
|
|
|
|
is_aligned (const void *base, size_t size, size_t wordsize)
|
|
|
|
{
|
|
|
|
return (((uintptr_t) base | size) & (wordsize - 1)) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
swap_words_64 (void * restrict a, void * restrict b, size_t n)
|
|
|
|
{
|
|
|
|
typedef uint64_t __attribute__ ((__may_alias__)) u64_alias_t;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
n -= 8;
|
|
|
|
u64_alias_t t = *(u64_alias_t *)(a + n);
|
|
|
|
*(u64_alias_t *)(a + n) = *(u64_alias_t *)(b + n);
|
|
|
|
*(u64_alias_t *)(b + n) = t;
|
|
|
|
} while (n);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
swap_words_32 (void * restrict a, void * restrict b, size_t n)
|
|
|
|
{
|
|
|
|
typedef uint32_t __attribute__ ((__may_alias__)) u32_alias_t;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
n -= 4;
|
|
|
|
u32_alias_t t = *(u32_alias_t *)(a + n);
|
|
|
|
*(u32_alias_t *)(a + n) = *(u32_alias_t *)(b + n);
|
|
|
|
*(u32_alias_t *)(b + n) = t;
|
|
|
|
} while (n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Replace the indirect call with a serie of if statements. It should help
|
|
|
|
the branch predictor. */
|
|
|
|
static void
|
|
|
|
do_swap (void * restrict a, void * restrict b, size_t size,
|
|
|
|
enum swap_type_t swap_type)
|
|
|
|
{
|
|
|
|
if (swap_type == SWAP_WORDS_64)
|
|
|
|
swap_words_64 (a, b, size);
|
|
|
|
else if (swap_type == SWAP_WORDS_32)
|
|
|
|
swap_words_32 (a, b, size);
|
|
|
|
else
|
|
|
|
__memswap (a, b, size);
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
/* Discontinue quicksort algorithm when partition gets below this size.
|
|
|
|
This particular magic number was chosen to work best on a Sun 4/260. */
|
|
|
|
#define MAX_THRESH 4
|
|
|
|
|
|
|
|
/* Stack node declarations used to store unfulfilled partition obligations. */
|
1996-12-20 01:39:50 +00:00
|
|
|
typedef struct
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
|
|
|
char *lo;
|
|
|
|
char *hi;
|
2023-10-03 12:22:49 +00:00
|
|
|
size_t depth;
|
1995-02-18 01:27:10 +00:00
|
|
|
} stack_node;
|
|
|
|
|
1999-10-28 21:38:59 +00:00
|
|
|
/* The stack needs log (total_elements) entries (we could even subtract
|
|
|
|
log(MAX_THRESH)). Since total_elements has type size_t, we get as
|
|
|
|
upper bound for log (total_elements):
|
|
|
|
bits per byte (CHAR_BIT) * sizeof(size_t). */
|
2023-10-03 12:22:48 +00:00
|
|
|
enum { STACK_SIZE = CHAR_BIT * sizeof (size_t) };
|
|
|
|
|
|
|
|
static inline stack_node *
|
2023-10-03 12:22:49 +00:00
|
|
|
push (stack_node *top, char *lo, char *hi, size_t depth)
|
2023-10-03 12:22:48 +00:00
|
|
|
{
|
|
|
|
top->lo = lo;
|
|
|
|
top->hi = hi;
|
2023-10-03 12:22:49 +00:00
|
|
|
top->depth = depth;
|
2023-10-03 12:22:48 +00:00
|
|
|
return ++top;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline stack_node *
|
2023-10-03 12:22:49 +00:00
|
|
|
pop (stack_node *top, char **lo, char **hi, size_t *depth)
|
2023-10-03 12:22:48 +00:00
|
|
|
{
|
|
|
|
--top;
|
|
|
|
*lo = top->lo;
|
|
|
|
*hi = top->hi;
|
2023-10-03 12:22:49 +00:00
|
|
|
*depth = top->depth;
|
2023-10-03 12:22:48 +00:00
|
|
|
return top;
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Establish the heap condition at index K, that is, the key at K will
|
|
|
|
not be less than either of its children, at 2 * K + 1 and 2 * K + 2
|
|
|
|
(if they exist). N is the last valid index. */
|
2023-10-03 12:22:49 +00:00
|
|
|
static inline void
|
|
|
|
siftdown (void *base, size_t size, size_t k, size_t n,
|
|
|
|
enum swap_type_t swap_type, __compar_d_fn_t cmp, void *arg)
|
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* There can only be a heap condition violation if there are
|
|
|
|
children. */
|
|
|
|
while (2 * k + 1 <= n)
|
2023-10-03 12:22:49 +00:00
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Left child. */
|
|
|
|
size_t j = 2 * k + 1;
|
|
|
|
/* If the right child is larger, use it. */
|
2023-10-03 12:22:49 +00:00
|
|
|
if (j < n && cmp (base + (j * size), base + ((j + 1) * size), arg) < 0)
|
|
|
|
j++;
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* If k is already >= to its children, we are done. */
|
2023-11-08 14:18:02 +00:00
|
|
|
if (j == k || cmp (base + (k * size), base + (j * size), arg) >= 0)
|
2023-10-03 12:22:49 +00:00
|
|
|
break;
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Heal the violation. */
|
2023-10-03 12:22:49 +00:00
|
|
|
do_swap (base + (size * j), base + (k * size), size, swap_type);
|
2023-11-21 15:45:35 +00:00
|
|
|
|
|
|
|
/* Swapping with j may have introduced a violation at j. Fix
|
|
|
|
it in the next loop iteration. */
|
2023-10-03 12:22:49 +00:00
|
|
|
k = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Establish the heap condition for the indices 0 to N (inclusive). */
|
2023-10-03 12:22:49 +00:00
|
|
|
static inline void
|
|
|
|
heapify (void *base, size_t size, size_t n, enum swap_type_t swap_type,
|
|
|
|
__compar_d_fn_t cmp, void *arg)
|
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* If n is odd, k = n / 2 has a left child at n, so this is the
|
|
|
|
largest index that can have a heap condition violation regarding
|
|
|
|
its children. */
|
2023-10-03 12:22:49 +00:00
|
|
|
size_t k = n / 2;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
siftdown (base, size, k, n, swap_type, cmp, arg);
|
|
|
|
if (k-- == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
/* A non-recursive heapsort, used on introsort implementation as a
|
|
|
|
fallback routine with worst-case performance of O(nlog n) and
|
|
|
|
worst-case space complexity of O(1). It sorts the array starting
|
|
|
|
at BASE and ending at END (inclusive), with each element of SIZE
|
|
|
|
bytes. The SWAP_TYPE is the callback function used to swap
|
|
|
|
elements, and CMP is the function used to compare elements. */
|
2023-10-03 12:22:49 +00:00
|
|
|
static void
|
|
|
|
heapsort_r (void *base, void *end, size_t size, enum swap_type_t swap_type,
|
|
|
|
__compar_d_fn_t cmp, void *arg)
|
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
size_t n = ((uintptr_t) end - (uintptr_t) base) / size;
|
|
|
|
if (n <= 1)
|
|
|
|
/* Handled by insertion sort. */
|
2023-10-03 12:22:49 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Build the binary heap, largest value at the base[0]. */
|
|
|
|
heapify (base, size, n, swap_type, cmp, arg);
|
|
|
|
|
2023-11-21 15:45:35 +00:00
|
|
|
while (true)
|
2023-10-03 12:22:49 +00:00
|
|
|
{
|
2023-11-21 15:45:35 +00:00
|
|
|
/* Indices 0 .. n contain the binary heap. Extract the largest
|
|
|
|
element put it into the final position in the array. */
|
2023-10-03 12:22:49 +00:00
|
|
|
do_swap (base, base + (n * size), size, swap_type);
|
2023-11-21 15:45:35 +00:00
|
|
|
|
|
|
|
/* The heap is now one element shorter. */
|
2023-10-03 12:22:49 +00:00
|
|
|
n--;
|
2023-11-21 15:45:35 +00:00
|
|
|
if (n == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* By swapping in elements 0 and the previous value of n (now at
|
|
|
|
n + 1), we likely introduced a heap condition violation. Fix
|
|
|
|
it for the reduced heap. */
|
2023-10-03 12:22:49 +00:00
|
|
|
siftdown (base, size, 0, n, swap_type, cmp, arg);
|
|
|
|
}
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-10-03 12:22:47 +00:00
|
|
|
static inline void
|
|
|
|
insertion_sort_qsort_partitions (void *const pbase, size_t total_elems,
|
|
|
|
size_t size, enum swap_type_t swap_type,
|
|
|
|
__compar_d_fn_t cmp, void *arg)
|
|
|
|
{
|
|
|
|
char *base_ptr = (char *) pbase;
|
|
|
|
char *const end_ptr = &base_ptr[size * (total_elems - 1)];
|
|
|
|
char *tmp_ptr = base_ptr;
|
|
|
|
#define min(x, y) ((x) < (y) ? (x) : (y))
|
|
|
|
const size_t max_thresh = MAX_THRESH * size;
|
|
|
|
char *thresh = min(end_ptr, base_ptr + max_thresh);
|
|
|
|
char *run_ptr;
|
|
|
|
|
|
|
|
/* Find smallest element in first threshold and place it at the
|
|
|
|
array's beginning. This is the smallest array element,
|
|
|
|
and the operation speeds up insertion sort's inner loop. */
|
|
|
|
|
|
|
|
for (run_ptr = tmp_ptr + size; run_ptr <= thresh; run_ptr += size)
|
|
|
|
if (cmp (run_ptr, tmp_ptr, arg) < 0)
|
|
|
|
tmp_ptr = run_ptr;
|
|
|
|
|
|
|
|
if (tmp_ptr != base_ptr)
|
|
|
|
do_swap (tmp_ptr, base_ptr, size, swap_type);
|
|
|
|
|
|
|
|
/* Insertion sort, running from left-hand-side up to right-hand-side. */
|
|
|
|
|
|
|
|
run_ptr = base_ptr + size;
|
|
|
|
while ((run_ptr += size) <= end_ptr)
|
|
|
|
{
|
|
|
|
tmp_ptr = run_ptr - size;
|
2023-12-04 05:35:56 +00:00
|
|
|
while (tmp_ptr != base_ptr && cmp (run_ptr, tmp_ptr, arg) < 0)
|
2023-10-03 12:22:47 +00:00
|
|
|
tmp_ptr -= size;
|
|
|
|
|
|
|
|
tmp_ptr += size;
|
|
|
|
if (tmp_ptr != run_ptr)
|
|
|
|
{
|
|
|
|
char *trav;
|
|
|
|
|
|
|
|
trav = run_ptr + size;
|
|
|
|
while (--trav >= run_ptr)
|
|
|
|
{
|
|
|
|
char c = *trav;
|
|
|
|
char *hi, *lo;
|
|
|
|
|
|
|
|
for (hi = lo = trav; (lo -= size) >= tmp_ptr; hi = lo)
|
|
|
|
*hi = *lo;
|
|
|
|
*hi = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
/* Order size using quicksort. This implementation incorporates
|
|
|
|
four optimizations discussed in Sedgewick:
|
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
1. Non-recursive, using an explicit stack of pointer that store the
|
|
|
|
next array partition to sort. To save time, this maximum amount
|
1999-10-28 21:38:59 +00:00
|
|
|
of space required to store an array of SIZE_MAX is allocated on the
|
|
|
|
stack. Assuming a 32-bit (64 bit) integer for size_t, this needs
|
|
|
|
only 32 * sizeof(stack_node) == 256 bytes (for 64 bit: 1024 bytes).
|
|
|
|
Pretty cheap, actually.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
2. Chose the pivot element using a median-of-three decision tree.
|
1996-12-20 01:39:50 +00:00
|
|
|
This reduces the probability of selecting a bad pivot value and
|
1995-02-18 01:27:10 +00:00
|
|
|
eliminates certain extraneous comparisons.
|
|
|
|
|
|
|
|
3. Only quicksorts TOTAL_ELEMS / MAX_THRESH partitions, leaving
|
1996-12-20 01:39:50 +00:00
|
|
|
insertion sort to order the MAX_THRESH items within each partition.
|
1995-02-18 01:27:10 +00:00
|
|
|
This is a big win, since insertion sort is faster for small, mostly
|
1996-12-20 01:39:50 +00:00
|
|
|
sorted array segments.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
4. The larger of the two sub-partitions is always pushed onto the
|
|
|
|
stack first, with the algorithm then concentrating on the
|
1999-10-28 21:38:59 +00:00
|
|
|
smaller partition. This *guarantees* no more than log (total_elems)
|
1995-02-18 01:27:10 +00:00
|
|
|
stack size is needed (actually O(1) in this case)! */
|
|
|
|
|
|
|
|
void
|
2023-10-03 12:22:50 +00:00
|
|
|
__qsort_r (void *const pbase, size_t total_elems, size_t size,
|
|
|
|
__compar_d_fn_t cmp, void *arg)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2013-06-07 22:24:35 +00:00
|
|
|
char *base_ptr = (char *) pbase;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-02-10 03:19:57 +00:00
|
|
|
const size_t max_thresh = MAX_THRESH * size;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-10-03 12:22:49 +00:00
|
|
|
if (total_elems <= 1)
|
1995-02-18 01:27:10 +00:00
|
|
|
/* Avoid lossage with unsigned arithmetic below. */
|
|
|
|
return;
|
|
|
|
|
2023-10-03 12:22:46 +00:00
|
|
|
enum swap_type_t swap_type;
|
|
|
|
if (is_aligned (pbase, size, 8))
|
|
|
|
swap_type = SWAP_WORDS_64;
|
|
|
|
else if (is_aligned (pbase, size, 4))
|
|
|
|
swap_type = SWAP_WORDS_32;
|
|
|
|
else
|
|
|
|
swap_type = SWAP_BYTES;
|
|
|
|
|
2023-10-03 12:22:49 +00:00
|
|
|
/* Maximum depth before quicksort switches to heapsort. */
|
|
|
|
size_t depth = 2 * (sizeof (size_t) * CHAR_BIT - 1
|
|
|
|
- __builtin_clzl (total_elems));
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
if (total_elems > MAX_THRESH)
|
|
|
|
{
|
|
|
|
char *lo = base_ptr;
|
|
|
|
char *hi = &lo[size * (total_elems - 1)];
|
|
|
|
stack_node stack[STACK_SIZE];
|
2023-10-03 12:22:49 +00:00
|
|
|
stack_node *top = push (stack, NULL, NULL, depth);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2023-10-03 12:22:48 +00:00
|
|
|
while (stack < top)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2023-10-03 12:22:49 +00:00
|
|
|
if (depth == 0)
|
|
|
|
{
|
|
|
|
heapsort_r (lo, hi, size, swap_type, cmp, arg);
|
|
|
|
top = pop (top, &lo, &hi, &depth);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
char *left_ptr;
|
|
|
|
char *right_ptr;
|
|
|
|
|
|
|
|
/* Select median value from among LO, MID, and HI. Rearrange
|
1996-12-20 01:39:50 +00:00
|
|
|
LO and HI so the three values are sorted. This lowers the
|
|
|
|
probability of picking a pathological pivot value and
|
1999-10-28 21:38:59 +00:00
|
|
|
skips a comparison for both the LEFT_PTR and RIGHT_PTR in
|
|
|
|
the while loops. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
char *mid = lo + size * ((hi - lo) / size >> 1);
|
|
|
|
|
2007-11-13 17:21:43 +00:00
|
|
|
if ((*cmp) ((void *) mid, (void *) lo, arg) < 0)
|
2023-10-03 12:22:46 +00:00
|
|
|
do_swap (mid, lo, size, swap_type);
|
2007-11-13 17:21:43 +00:00
|
|
|
if ((*cmp) ((void *) hi, (void *) mid, arg) < 0)
|
2023-10-03 12:22:46 +00:00
|
|
|
do_swap (mid, hi, size, swap_type);
|
1996-12-20 01:39:50 +00:00
|
|
|
else
|
1995-02-18 01:27:10 +00:00
|
|
|
goto jump_over;
|
2007-11-13 17:21:43 +00:00
|
|
|
if ((*cmp) ((void *) mid, (void *) lo, arg) < 0)
|
2023-10-03 12:22:46 +00:00
|
|
|
do_swap (mid, lo, size, swap_type);
|
1995-02-18 01:27:10 +00:00
|
|
|
jump_over:;
|
|
|
|
|
|
|
|
left_ptr = lo + size;
|
1996-12-20 01:39:50 +00:00
|
|
|
right_ptr = hi - size;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
/* Here's the famous ``collapse the walls'' section of quicksort.
|
|
|
|
Gotta like those tight inner loops! They are the main reason
|
1995-02-18 01:27:10 +00:00
|
|
|
that this algorithm runs much faster than others. */
|
1996-12-20 01:39:50 +00:00
|
|
|
do
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2023-11-08 14:18:02 +00:00
|
|
|
while (left_ptr != mid
|
|
|
|
&& (*cmp) ((void *) left_ptr, (void *) mid, arg) < 0)
|
1995-02-18 01:27:10 +00:00
|
|
|
left_ptr += size;
|
|
|
|
|
2023-11-08 14:18:02 +00:00
|
|
|
while (right_ptr != mid
|
|
|
|
&& (*cmp) ((void *) mid, (void *) right_ptr, arg) < 0)
|
1995-02-18 01:27:10 +00:00
|
|
|
right_ptr -= size;
|
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
if (left_ptr < right_ptr)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
2023-10-03 12:22:46 +00:00
|
|
|
do_swap (left_ptr, right_ptr, size, swap_type);
|
2002-01-29 07:54:51 +00:00
|
|
|
if (mid == left_ptr)
|
|
|
|
mid = right_ptr;
|
|
|
|
else if (mid == right_ptr)
|
|
|
|
mid = left_ptr;
|
1995-02-18 01:27:10 +00:00
|
|
|
left_ptr += size;
|
|
|
|
right_ptr -= size;
|
|
|
|
}
|
1996-12-20 01:39:50 +00:00
|
|
|
else if (left_ptr == right_ptr)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
|
|
|
left_ptr += size;
|
|
|
|
right_ptr -= size;
|
|
|
|
break;
|
|
|
|
}
|
1996-12-20 01:39:50 +00:00
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
while (left_ptr <= right_ptr);
|
|
|
|
|
|
|
|
/* Set up pointers for next iteration. First determine whether
|
1996-12-20 01:39:50 +00:00
|
|
|
left and right partitions are below the threshold size. If so,
|
1995-02-18 01:27:10 +00:00
|
|
|
ignore one or both. Otherwise, push the larger partition's
|
|
|
|
bounds on the stack and continue sorting the smaller one. */
|
|
|
|
|
|
|
|
if ((size_t) (right_ptr - lo) <= max_thresh)
|
|
|
|
{
|
|
|
|
if ((size_t) (hi - left_ptr) <= max_thresh)
|
|
|
|
/* Ignore both small partitions. */
|
2023-11-21 15:45:35 +00:00
|
|
|
{
|
|
|
|
top = pop (top, &lo, &hi, &depth);
|
|
|
|
--depth;
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
else
|
2023-11-21 15:45:35 +00:00
|
|
|
{
|
|
|
|
/* Ignore small left partition. */
|
|
|
|
lo = left_ptr;
|
|
|
|
--depth;
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
|
|
|
else if ((size_t) (hi - left_ptr) <= max_thresh)
|
|
|
|
/* Ignore small right partition. */
|
2023-11-21 15:45:35 +00:00
|
|
|
{
|
|
|
|
hi = right_ptr;
|
|
|
|
--depth;
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
else if ((right_ptr - lo) > (hi - left_ptr))
|
1996-12-20 01:39:50 +00:00
|
|
|
{
|
1995-02-18 01:27:10 +00:00
|
|
|
/* Push larger left partition indices. */
|
2023-10-03 12:22:49 +00:00
|
|
|
top = push (top, lo, right_ptr, depth - 1);
|
1995-02-18 01:27:10 +00:00
|
|
|
lo = left_ptr;
|
|
|
|
}
|
|
|
|
else
|
1996-12-20 01:39:50 +00:00
|
|
|
{
|
1995-02-18 01:27:10 +00:00
|
|
|
/* Push larger right partition indices. */
|
2023-10-03 12:22:49 +00:00
|
|
|
top = push (top, left_ptr, hi, depth - 1);
|
1995-02-18 01:27:10 +00:00
|
|
|
hi = right_ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Once the BASE_PTR array is partially sorted by quicksort the rest
|
1996-12-20 01:39:50 +00:00
|
|
|
is completely sorted using insertion sort, since this is efficient
|
|
|
|
for partitions below MAX_THRESH size. BASE_PTR points to the beginning
|
1995-02-18 01:27:10 +00:00
|
|
|
of the array to sort, and END_PTR points at the very last element in
|
|
|
|
the array (*not* one beyond it!). */
|
2023-10-03 12:22:47 +00:00
|
|
|
insertion_sort_qsort_partitions (pbase, total_elems, size, swap_type, cmp,
|
|
|
|
arg);
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
2023-10-03 12:22:50 +00:00
|
|
|
libc_hidden_def (__qsort_r)
|
|
|
|
weak_alias (__qsort_r, qsort_r)
|
|
|
|
|
|
|
|
void
|
|
|
|
qsort (void *b, size_t n, size_t s, __compar_fn_t cmp)
|
|
|
|
{
|
|
|
|
return __qsort_r (b, n, s, (__compar_d_fn_t) cmp, NULL);
|
|
|
|
}
|
|
|
|
libc_hidden_def (qsort)
|