Blame view

lib/sort.c 2.47 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  /*
   * A fast, small, non-recursive O(nlog n) sort for the Linux kernel
   *
   * Jan 23 2005  Matt Mackall <mpm@selenic.com>
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
ecec4cb7a   Adrian Bunk   [PATCH] lib/sort....
9
  #include <linux/sort.h>
4e57b6817   Tim Schmielau   [PATCH] fix missi...
10
  #include <linux/slab.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11

ecec4cb7a   Adrian Bunk   [PATCH] lib/sort....
12
  static void u32_swap(void *a, void *b, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
15
16
17
  {
  	u32 t = *(u32 *)a;
  	*(u32 *)a = *(u32 *)b;
  	*(u32 *)b = t;
  }
ecec4cb7a   Adrian Bunk   [PATCH] lib/sort....
18
  static void generic_swap(void *a, void *b, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
23
24
25
26
27
  {
  	char t;
  
  	do {
  		t = *(char *)a;
  		*(char *)a++ = *(char *)b;
  		*(char *)b++ = t;
  	} while (--size > 0);
  }
72fd4a35a   Robert P. J. Day   [PATCH] Numerous ...
28
  /**
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
   * sort - sort an array of elements
   * @base: pointer to data to sort
   * @num: number of elements
   * @size: size of each element
   * @cmp: pointer to comparison function
   * @swap: pointer to swap function or NULL
   *
   * This function does a heapsort on the given array. You may provide a
   * swap function optimized to your element type.
   *
   * 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,
  	  int (*cmp)(const void *, const void *),
  	  void (*swap)(void *, void *, int size))
  {
  	/* pre-scale counters for performance */
d3717bdf8   keios   [PATCH] low perfo...
50
  	int i = (num/2 - 1) * size, n = num * size, c, r;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
52
53
54
55
56
  
  	if (!swap)
  		swap = (size == 4 ? u32_swap : generic_swap);
  
  	/* heapify */
  	for ( ; i >= 0; i -= size) {
d3717bdf8   keios   [PATCH] low perfo...
57
58
  		for (r = i; r * 2 + size < n; r  = c) {
  			c = r * 2 + size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
60
61
62
63
64
65
66
67
  			if (c < n - size && cmp(base + c, base + c + size) < 0)
  				c += size;
  			if (cmp(base + r, base + c) >= 0)
  				break;
  			swap(base + r, base + c, size);
  		}
  	}
  
  	/* sort */
995e4286a   Subbaiah Venkata   lib/sort.c optimi...
68
  	for (i = n - size; i > 0; i -= size) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
  		swap(base, base + i, size);
d3717bdf8   keios   [PATCH] low perfo...
70
71
  		for (r = 0; r * 2 + size < i; r = c) {
  			c = r * 2 + size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  			if (c < i - size && cmp(base + c, base + c + size) < 0)
  				c += size;
  			if (cmp(base + r, base + c) >= 0)
  				break;
  			swap(base + r, base + c, size);
  		}
  	}
  }
  
  EXPORT_SYMBOL(sort);
  
  #if 0
  /* a simple boot-time regression test */
  
  int cmpint(const void *a, const void *b)
  {
  	return *(int *)a - *(int *)b;
  }
  
  static int sort_test(void)
  {
d28c2bc8d   Domen Puncer   [PATCH] fix lib/s...
93
  	int *a, i, r = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
  
  	a = kmalloc(1000 * sizeof(int), GFP_KERNEL);
  	BUG_ON(!a);
  
  	printk("testing sort()
  ");
  
  	for (i = 0; i < 1000; i++) {
  		r = (r * 725861) % 6599;
  		a[i] = r;
  	}
  
  	sort(a, 1000, sizeof(int), cmpint, NULL);
  
  	for (i = 0; i < 999; i++)
  		if (a[i] > a[i+1]) {
  			printk("sort() failed!
  ");
  			break;
  		}
  
  	kfree(a);
  
  	return 0;
  }
  
  module_init(sort_test);
  #endif