sort.c 2.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * A fast, small, non-recursive O(nlog n) sort for the Linux kernel
 *
 * Jan 23 2005  Matt Mackall <mpm@selenic.com>
 */

7 8
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

9 10
#include <linux/types.h>
#include <linux/export.h>
A
Adrian Bunk 已提交
11
#include <linux/sort.h>
L
Linus Torvalds 已提交
12

13 14 15 16 17 18
static int alignment_ok(const void *base, int align)
{
	return IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) ||
		((unsigned long)base & (align - 1)) == 0;
}

A
Adrian Bunk 已提交
19
static void u32_swap(void *a, void *b, int size)
L
Linus Torvalds 已提交
20 21 22 23 24 25
{
	u32 t = *(u32 *)a;
	*(u32 *)a = *(u32 *)b;
	*(u32 *)b = t;
}

26 27 28 29 30 31 32
static void u64_swap(void *a, void *b, int size)
{
	u64 t = *(u64 *)a;
	*(u64 *)a = *(u64 *)b;
	*(u64 *)b = t;
}

A
Adrian Bunk 已提交
33
static void generic_swap(void *a, void *b, int size)
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43
{
	char t;

	do {
		t = *(char *)a;
		*(char *)a++ = *(char *)b;
		*(char *)b++ = t;
	} while (--size > 0);
}

44
/**
L
Linus Torvalds 已提交
45 46 47 48
 * sort - sort an array of elements
 * @base: pointer to data to sort
 * @num: number of elements
 * @size: size of each element
49 50
 * @cmp_func: pointer to comparison function
 * @swap_func: pointer to swap function or NULL
L
Linus Torvalds 已提交
51 52
 *
 * This function does a heapsort on the given array. You may provide a
53
 * swap_func function optimized to your element type.
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61
 *
 * Sorting time is O(n log n) both on average and worst-case. While
 * qsort is about 20% faster on average, it suffers from exploitable
 * O(n*n) worst-case behavior and extra memory requirements that make
 * it less suitable for kernel use.
 */

void sort(void *base, size_t num, size_t size,
62 63
	  int (*cmp_func)(const void *, const void *),
	  void (*swap_func)(void *, void *, int size))
L
Linus Torvalds 已提交
64 65
{
	/* pre-scale counters for performance */
K
keios 已提交
66
	int i = (num/2 - 1) * size, n = num * size, c, r;
L
Linus Torvalds 已提交
67

68 69 70 71 72 73 74 75
	if (!swap_func) {
		if (size == 4 && alignment_ok(base, 4))
			swap_func = u32_swap;
		else if (size == 8 && alignment_ok(base, 8))
			swap_func = u64_swap;
		else
			swap_func = generic_swap;
	}
L
Linus Torvalds 已提交
76 77 78

	/* heapify */
	for ( ; i >= 0; i -= size) {
K
keios 已提交
79 80
		for (r = i; r * 2 + size < n; r  = c) {
			c = r * 2 + size;
81 82
			if (c < n - size &&
					cmp_func(base + c, base + c + size) < 0)
L
Linus Torvalds 已提交
83
				c += size;
84
			if (cmp_func(base + r, base + c) >= 0)
L
Linus Torvalds 已提交
85
				break;
86
			swap_func(base + r, base + c, size);
L
Linus Torvalds 已提交
87 88 89 90
		}
	}

	/* sort */
S
Subbaiah Venkata 已提交
91
	for (i = n - size; i > 0; i -= size) {
92
		swap_func(base, base + i, size);
K
keios 已提交
93 94
		for (r = 0; r * 2 + size < i; r = c) {
			c = r * 2 + size;
95 96
			if (c < i - size &&
					cmp_func(base + c, base + c + size) < 0)
L
Linus Torvalds 已提交
97
				c += size;
98
			if (cmp_func(base + r, base + c) >= 0)
L
Linus Torvalds 已提交
99
				break;
100
			swap_func(base + r, base + c, size);
L
Linus Torvalds 已提交
101 102 103 104 105
		}
	}
}

EXPORT_SYMBOL(sort);