source: mainline/src/lib/sort.c@ 01e48c1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 01e48c1 was 01e48c1, checked in by Jakub Jermar <jakub@…>, 20 years ago

Optimize sorting functions so that malloc() and free() is called only for e_size > EBUFSIZE.
Smaller buffers are allocated directly on the stack.

Some copyright holder fixes on some files written by Ondrej Palkovsky.

  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*
2 * Copyright (C) 2005 Sergey Bondari
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <mm/heap.h>
30#include <memstr.h>
31#include <sort.h>
32#include <panic.h>
33
34#define EBUFSIZE 32
35
36static void _qsort(void * data, count_t n, size_t e_size, int (* cmp) (void * a, void * b), void * pivot, void * tmp);
37
38/*
39 * Wrapper method for quicksort algorithm to decrease amount of allocations
40 */
41void qsort(void * data, count_t n, size_t e_size, int (* cmp) (void * a, void * b)) {
42 __u8 buf_tmp[EBUFSIZE];
43 __u8 buf_pivot[EBUFSIZE];
44 void * tmp = buf_tmp;
45 void * pivot = buf_pivot;
46
47 if (e_size > EBUFSIZE) {
48 pivot = (void *) malloc(e_size);
49 tmp = (void *) malloc(e_size);
50
51 if (!tmp || !pivot) {
52 panic("Cannot allocate memory\n");
53 }
54 }
55
56 _qsort(data, n, e_size, cmp, pivot, tmp);
57
58 if (e_size > EBUFSIZE) {
59 free(tmp);
60 free(pivot);
61 }
62}
63
64
65void bubblesort(void * data, count_t n, size_t e_size, int (* cmp) (void * a, void * b)) {
66 __u8 buf_slot[EBUFSIZE];
67 bool done = false;
68 void * p;
69 void * slot = buf_slot;
70
71 if (e_size > EBUFSIZE) {
72 slot = (void *) malloc(e_size);
73
74 if (!slot) {
75 panic("Cannot allocate memory\n");
76 }
77 }
78
79 while (!done) {
80 done = true;
81 for (p = data; p < data + e_size * (n - 1); p = p + e_size) {
82 if (cmp(p, p + e_size) == 1) {
83 memcpy(slot, p, e_size);
84 memcpy(p, p + e_size, e_size);
85 memcpy(p + e_size, slot, e_size);
86 done = false;
87 }
88 }
89 }
90
91 if (e_size > EBUFSIZE) {
92 free(slot);
93 }
94}
95
96static void _qsort(void * data, count_t n, size_t e_size, int (* cmp) (void * a, void * b), void * pivot, void * tmp) {
97 if (n > 4) {
98 int i = 0, j = n - 1;
99
100 memcpy(pivot, data, e_size);
101
102 while (1) {
103 while ((cmp(data + i * e_size, pivot) < 0) && i < n) i++;
104 while ((cmp(data + j * e_size, pivot) >=0) && j > 0) j--;
105 if (i<j) {
106 memcpy(tmp, data + i * e_size, e_size);
107 memcpy(data + i * e_size, data + j * e_size, e_size);
108 memcpy(data + j * e_size, tmp, e_size);
109 } else {
110 break;
111 }
112 }
113
114 qsort(data, j + 1, e_size, cmp);
115 qsort(data + (j + 1) * e_size, n - j - 1, e_size, cmp);
116 } else {
117 bubblesort(data, n, e_size, cmp);
118 }
119}
120
121
122
123/*
124 * Comparator returns 1 if a > b, 0 if a == b, -1 if a < b
125 */
126int int_cmp(void * a, void * b) {
127 return (* (int *) a > * (int*)b) ? 1 : (*(int *)a < * (int *)b) ? -1 : 0;
128}
129
130int __u8_cmp(void * a, void * b) {
131 return (* (__u8 *) a > * (__u8 *)b) ? 1 : (*(__u8 *)a < * (__u8 *)b) ? -1 : 0;
132}
133
134int __u16_cmp(void * a, void * b) {
135 return (* (__u16 *) a > * (__u16 *)b) ? 1 : (*(__u16 *)a < * (__u16 *)b) ? -1 : 0;
136}
137
138int __u32_cmp(void * a, void * b) {
139 return (* (__u32 *) a > * (__u32 *)b) ? 1 : (*(__u32 *)a < * (__u32 *)b) ? -1 : 0;
140}
141
Note: See TracBrowser for help on using the repository browser.