forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core-mmap.c
201 lines (186 loc) · 4.62 KB
/
core-mmap.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* Copyright (C) 2017-2021 Canonical, Ltd.
* Copyright (C) 2022-2024 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-pragma.h"
#include "core-cpu-cache.h"
#include "core-mmap.h"
#if defined(HAVE_ASM_X86_REP_STOSQ) && \
!defined(__ILP32__)
#define USE_ASM_X86_REP_STOSQ
#endif
/*
* stress_mmap_set()
* set mmap'd data, touching pages in
* a specific pattern - check with
* stress_mmap_check().
*/
void OPTIMIZE3 stress_mmap_set(
uint8_t *buf,
const size_t sz,
const size_t page_size)
{
register uint64_t val = stress_mwc64();
register uint64_t *ptr = (uint64_t *)buf;
register const uint64_t *end = (uint64_t *)(buf + sz);
#if defined(USE_ASM_X86_REP_STOSQ)
register const uint32_t loops = page_size / sizeof(uint64_t);
#endif
while (ptr < end) {
#if !defined(USE_ASM_X86_REP_STOSQ)
register const uint64_t *page_end = (uint64_t *)((uintptr_t)ptr + page_size);
#endif
if (!stress_continue_flag())
break;
/*
* ..and fill a page with uint64_t values
*/
#if defined(USE_ASM_X86_REP_STOSQ)
__asm__ __volatile__(
"mov %0,%%rax\n;"
"mov %1,%%rdi\n;"
"mov %2,%%ecx\n;"
"rep stosq %%rax,%%es:(%%rdi);\n"
:
: "r" (val),
"r" (ptr),
"r" (loops)
: "ecx","rdi","rax");
ptr += loops;
#else
page_end = (const uint64_t *)STRESS_MINIMUM(end, page_end);
while (ptr < page_end) {
ptr[0x00] = val;
ptr[0x01] = val;
ptr[0x02] = val;
ptr[0x03] = val;
ptr[0x04] = val;
ptr[0x05] = val;
ptr[0x06] = val;
ptr[0x07] = val;
ptr[0x08] = val;
ptr[0x09] = val;
ptr[0x0a] = val;
ptr[0x0b] = val;
ptr[0x0c] = val;
ptr[0x0d] = val;
ptr[0x0e] = val;
ptr[0x0f] = val;
ptr += 16;
}
#endif
val++;
}
}
/*
* stress_mmap_check()
* check if mmap'd data is sane
*/
int OPTIMIZE3 stress_mmap_check(
uint8_t *buf,
const size_t sz,
const size_t page_size)
{
register uint64_t *ptr = (uint64_t *)buf;
register const uint64_t *end = (uint64_t *)(buf + sz);
while ((ptr < end) && stress_continue_flag()) {
register const uint64_t *page_end = (uint64_t *)((uintptr_t)ptr + page_size);
while (ptr < page_end) {
register uint64_t sum;
sum = ptr[0x00];
sum ^= ptr[0x01];
sum ^= ptr[0x02];
sum ^= ptr[0x03];
sum ^= ptr[0x04];
sum ^= ptr[0x05];
sum ^= ptr[0x06];
sum ^= ptr[0x07];
sum ^= ptr[0x08];
sum ^= ptr[0x09];
sum ^= ptr[0x0a];
sum ^= ptr[0x0b];
sum ^= ptr[0x0c];
sum ^= ptr[0x0d];
sum ^= ptr[0x0e];
sum ^= ptr[0x0f];
sum ^= ptr[0x10];
sum ^= ptr[0x11];
sum ^= ptr[0x12];
sum ^= ptr[0x13];
sum ^= ptr[0x14];
sum ^= ptr[0x15];
sum ^= ptr[0x16];
sum ^= ptr[0x17];
sum ^= ptr[0x18];
sum ^= ptr[0x19];
sum ^= ptr[0x1a];
sum ^= ptr[0x1b];
sum ^= ptr[0x1c];
sum ^= ptr[0x1d];
sum ^= ptr[0x1e];
sum ^= ptr[0x1f];
ptr += 32;
if (sum)
return -1;
}
}
return 0;
}
/*
* stress_mmap_set_light()
* set mmap'd data, touching pages in
* a specific pattern at start of each page - check with
* stress_mmap_check_light().
*/
void OPTIMIZE3 stress_mmap_set_light(
uint8_t *buf,
const size_t sz,
const size_t page_size)
{
register uint64_t *ptr = (uint64_t *)buf;
register uint64_t val = stress_mwc64();
register const uint64_t *end = (uint64_t *)(buf + sz);
register const size_t ptr_inc = page_size / sizeof(*ptr);
while (LIKELY(ptr < end)) {
*ptr = val;
ptr += ptr_inc;
val++;
}
}
/*
* stress_mmap_check_light()
* check if mmap'd data is sane
*/
int OPTIMIZE3 stress_mmap_check_light(
uint8_t *buf,
const size_t sz,
const size_t page_size)
{
register uint64_t *ptr = (uint64_t *)buf;
register uint64_t val = *ptr;
register const uint64_t *end = (uint64_t *)(buf + sz);
register const size_t ptr_inc = page_size / sizeof(*ptr);
while (LIKELY(ptr < end)) {
if (*ptr != val)
return -1;
ptr += ptr_inc;
val++;
}
return 0;
}