forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core-sort.c
160 lines (143 loc) · 4.04 KB
/
core-sort.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* Copyright (C) 2022-2023 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#include "core-sort.h"
#include "core-pragma.h"
static uint64_t stress_sort_compares ALIGN64;
void stress_sort_compare_reset(void)
{
stress_sort_compares = 0;
}
uint64_t stress_sort_compare_get(void)
{
return stress_sort_compares;
}
void OPTIMIZE3 stress_sort_data_int32_mangle(int32_t *data, const size_t n)
{
const int32_t *end = data + n;
PRAGMA_UNROLL_N(8)
while (data < end) {
*(data++) ^= 0x80008000;
}
}
/*
* Monotonically increasing values
*/
#define SORT_SETDATA(d, i, v, prev) \
do { \
d[i] = 1 + prev + (v & 0x7); \
v >>= 2; \
prev = d[i]; \
i++; \
} while (0)
void stress_sort_data_int32_init(int32_t *data, const size_t n)
{
register int32_t prev = 0;
register size_t i;
for (i = 0; i < n;) {
register int32_t v = (int32_t)stress_mwc32();
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
SORT_SETDATA(data, i, v, prev);
}
}
void stress_sort_data_int32_shuffle(int32_t *data, const size_t n)
{
register uint32_t const a = 16843009;
register uint32_t const c = 826366247;
register uint32_t seed = stress_mwc32();
register uint32_t *data32 = (uint32_t *)data;
register size_t i;
PRAGMA_UNROLL_N(8)
for (i = 0; i < n; i++) {
register uint32_t tmp;
register uint32_t j = seed % n;
seed = (a * seed + c);
tmp = data32[i];
data32[i] = data32[j];
data32[j] = tmp;
}
}
#if 1
#define STRESS_SORT_CMP_FWD(name, type) \
int OPTIMIZE3 stress_sort_cmp_fwd_ ## name(const void *p1, const void *p2) \
{ \
register const type v1 = *(const type *)p1; \
register const type v2 = *(const type *)p2; \
\
stress_sort_compares++; \
if (v1 > v2) \
return 1; \
else if (v1 < v2) \
return -1; \
else \
return 0; \
}
#else
#define STRESS_SORT_CMP_FWD(name, type) \
int OPTIMIZE3 stress_sort_cmp_fwd_ ## name(const void *p1, const void *p2) \
{ \
register const type v1 = *(const type *)p1; \
register const type v2 = *(const type *)p2; \
\
stress_sort_compares++; \
return (v1 < v2) ? -(v1 != v2) : (v1 != v2); \
}
#endif
#if 1
#define STRESS_SORT_CMP_REV(name, type) \
int OPTIMIZE3 stress_sort_cmp_rev_ ## name(const void *p1, const void *p2)\
{ \
register const type v1 = *(const type *)p1; \
register const type v2 = *(const type *)p2; \
\
stress_sort_compares++; \
if (v1 < v2) \
return 1; \
else if (v1 > v2) \
return -1; \
else \
return 0; \
}
#else
#define STRESS_SORT_CMP_REV(name, type) \
int OPTIMIZE3 stress_sort_cmp_rev_ ## name(const void *p1, const void *p2)\
{ \
register const type v1 = *(const type *)p1; \
register const type v2 = *(const type *)p2; \
\
stress_sort_compares++; \
return (v1 > v2) ? -(v1 != v2) : (v1 != v2); \
}
#endif
STRESS_SORT_CMP_FWD(int8, int8_t)
STRESS_SORT_CMP_FWD(int16, int16_t)
STRESS_SORT_CMP_FWD(int32, int32_t)
STRESS_SORT_CMP_FWD(int64, int64_t)
STRESS_SORT_CMP_REV(int8, int8_t)
STRESS_SORT_CMP_REV(int16, int16_t)
STRESS_SORT_CMP_REV(int32, int32_t)
STRESS_SORT_CMP_REV(int64, int64_t)
STRESS_SORT_CMP_FWD(int, int)
STRESS_SORT_CMP_REV(int, int)