blob: c6e4bc52349279bcf7d1aef2fcc1430e1f03e74a [file] [log] [blame]
Jan Beulichbe3de802012-01-24 10:03:22 -02001/*
2 * mem-memset.c
3 *
4 * memset: Simple memory set in various ways
5 *
6 * Trivial clone of mem-memcpy.c.
7 */
Jan Beulichbe3de802012-01-24 10:03:22 -02008
9#include "../perf.h"
10#include "../util/util.h"
11#include "../util/parse-options.h"
12#include "../util/header.h"
13#include "bench.h"
14#include "mem-memset-arch.h"
15
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <sys/time.h>
20#include <errno.h>
21
22#define K 1024
23
24static const char *length_str = "1MB";
25static const char *routine = "default";
Jan Beuliche3e877e2012-01-18 13:29:59 +000026static int iterations = 1;
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090027static bool use_cycle;
28static int cycle_fd;
Jan Beulichbe3de802012-01-24 10:03:22 -020029static bool only_prefault;
30static bool no_prefault;
31
32static const struct option options[] = {
33 OPT_STRING('l', "length", &length_str, "1MB",
Namhyung Kim08942f62012-06-20 15:08:06 +090034 "Specify length of memory to set. "
35 "Available units: B, KB, MB, GB and TB (upper and lower)"),
Jan Beulichbe3de802012-01-24 10:03:22 -020036 OPT_STRING('r', "routine", &routine, "default",
Namhyung Kim08942f62012-06-20 15:08:06 +090037 "Specify routine to set"),
Jan Beuliche3e877e2012-01-18 13:29:59 +000038 OPT_INTEGER('i', "iterations", &iterations,
39 "repeat memset() invocation this number of times"),
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090040 OPT_BOOLEAN('c', "cycle", &use_cycle,
Namhyung Kim08942f62012-06-20 15:08:06 +090041 "Use cycles event instead of gettimeofday() for measuring"),
Jan Beulichbe3de802012-01-24 10:03:22 -020042 OPT_BOOLEAN('o', "only-prefault", &only_prefault,
43 "Show only the result with page faults before memset()"),
44 OPT_BOOLEAN('n', "no-prefault", &no_prefault,
45 "Show only the result without page faults before memset()"),
46 OPT_END()
47};
48
49typedef void *(*memset_t)(void *, int, size_t);
50
51struct routine {
52 const char *name;
53 const char *desc;
54 memset_t fn;
55};
56
57static const struct routine routines[] = {
58 { "default",
59 "Default memset() provided by glibc",
60 memset },
61#ifdef ARCH_X86_64
62
63#define MEMSET_FN(fn, name, desc) { name, desc, fn },
64#include "mem-memset-x86-64-asm-def.h"
65#undef MEMSET_FN
66
67#endif
68
69 { NULL,
70 NULL,
71 NULL }
72};
73
74static const char * const bench_mem_memset_usage[] = {
75 "perf bench mem memset <options>",
76 NULL
77};
78
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090079static struct perf_event_attr cycle_attr = {
Jan Beulichbe3de802012-01-24 10:03:22 -020080 .type = PERF_TYPE_HARDWARE,
81 .config = PERF_COUNT_HW_CPU_CYCLES
82};
83
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090084static void init_cycle(void)
Jan Beulichbe3de802012-01-24 10:03:22 -020085{
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090086 cycle_fd = sys_perf_event_open(&cycle_attr, getpid(), -1, -1, 0);
Jan Beulichbe3de802012-01-24 10:03:22 -020087
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090088 if (cycle_fd < 0 && errno == ENOSYS)
Jan Beulichbe3de802012-01-24 10:03:22 -020089 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
90 else
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090091 BUG_ON(cycle_fd < 0);
Jan Beulichbe3de802012-01-24 10:03:22 -020092}
93
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090094static u64 get_cycle(void)
Jan Beulichbe3de802012-01-24 10:03:22 -020095{
96 int ret;
97 u64 clk;
98
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090099 ret = read(cycle_fd, &clk, sizeof(u64));
Jan Beulichbe3de802012-01-24 10:03:22 -0200100 BUG_ON(ret != sizeof(u64));
101
102 return clk;
103}
104
105static double timeval2double(struct timeval *ts)
106{
107 return (double)ts->tv_sec +
108 (double)ts->tv_usec / (double)1000000;
109}
110
111static void alloc_mem(void **dst, size_t length)
112{
113 *dst = zalloc(length);
114 if (!dst)
115 die("memory allocation failed - maybe length is too large?\n");
116}
117
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900118static u64 do_memset_cycle(memset_t fn, size_t len, bool prefault)
Jan Beulichbe3de802012-01-24 10:03:22 -0200119{
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900120 u64 cycle_start = 0ULL, cycle_end = 0ULL;
Jan Beulichbe3de802012-01-24 10:03:22 -0200121 void *dst = NULL;
Jan Beuliche3e877e2012-01-18 13:29:59 +0000122 int i;
Jan Beulichbe3de802012-01-24 10:03:22 -0200123
124 alloc_mem(&dst, len);
125
126 if (prefault)
127 fn(dst, -1, len);
128
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900129 cycle_start = get_cycle();
Jan Beuliche3e877e2012-01-18 13:29:59 +0000130 for (i = 0; i < iterations; ++i)
131 fn(dst, i, len);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900132 cycle_end = get_cycle();
Jan Beulichbe3de802012-01-24 10:03:22 -0200133
134 free(dst);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900135 return cycle_end - cycle_start;
Jan Beulichbe3de802012-01-24 10:03:22 -0200136}
137
138static double do_memset_gettimeofday(memset_t fn, size_t len, bool prefault)
139{
140 struct timeval tv_start, tv_end, tv_diff;
141 void *dst = NULL;
Jan Beuliche3e877e2012-01-18 13:29:59 +0000142 int i;
Jan Beulichbe3de802012-01-24 10:03:22 -0200143
144 alloc_mem(&dst, len);
145
146 if (prefault)
147 fn(dst, -1, len);
148
149 BUG_ON(gettimeofday(&tv_start, NULL));
Jan Beuliche3e877e2012-01-18 13:29:59 +0000150 for (i = 0; i < iterations; ++i)
151 fn(dst, i, len);
Jan Beulichbe3de802012-01-24 10:03:22 -0200152 BUG_ON(gettimeofday(&tv_end, NULL));
153
154 timersub(&tv_end, &tv_start, &tv_diff);
155
156 free(dst);
157 return (double)((double)len / timeval2double(&tv_diff));
158}
159
160#define pf (no_prefault ? 0 : 1)
161
162#define print_bps(x) do { \
163 if (x < K) \
164 printf(" %14lf B/Sec", x); \
165 else if (x < K * K) \
166 printf(" %14lfd KB/Sec", x / K); \
167 else if (x < K * K * K) \
168 printf(" %14lf MB/Sec", x / K / K); \
169 else \
170 printf(" %14lf GB/Sec", x / K / K / K); \
171 } while (0)
172
173int bench_mem_memset(int argc, const char **argv,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300174 const char *prefix __maybe_unused)
Jan Beulichbe3de802012-01-24 10:03:22 -0200175{
176 int i;
177 size_t len;
178 double result_bps[2];
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900179 u64 result_cycle[2];
Jan Beulichbe3de802012-01-24 10:03:22 -0200180
181 argc = parse_options(argc, argv, options,
182 bench_mem_memset_usage, 0);
183
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900184 if (use_cycle)
185 init_cycle();
Jan Beulichbe3de802012-01-24 10:03:22 -0200186
187 len = (size_t)perf_atoll((char *)length_str);
188
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900189 result_cycle[0] = result_cycle[1] = 0ULL;
Jan Beulichbe3de802012-01-24 10:03:22 -0200190 result_bps[0] = result_bps[1] = 0.0;
191
192 if ((s64)len <= 0) {
193 fprintf(stderr, "Invalid length:%s\n", length_str);
194 return 1;
195 }
196
197 /* same to without specifying either of prefault and no-prefault */
198 if (only_prefault && no_prefault)
199 only_prefault = no_prefault = false;
200
201 for (i = 0; routines[i].name; i++) {
202 if (!strcmp(routines[i].name, routine))
203 break;
204 }
205 if (!routines[i].name) {
206 printf("Unknown routine:%s\n", routine);
207 printf("Available routines...\n");
208 for (i = 0; routines[i].name; i++) {
209 printf("\t%s ... %s\n",
210 routines[i].name, routines[i].desc);
211 }
212 return 1;
213 }
214
215 if (bench_format == BENCH_FORMAT_DEFAULT)
216 printf("# Copying %s Bytes ...\n\n", length_str);
217
218 if (!only_prefault && !no_prefault) {
219 /* show both of results */
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900220 if (use_cycle) {
221 result_cycle[0] =
222 do_memset_cycle(routines[i].fn, len, false);
223 result_cycle[1] =
224 do_memset_cycle(routines[i].fn, len, true);
Jan Beulichbe3de802012-01-24 10:03:22 -0200225 } else {
226 result_bps[0] =
227 do_memset_gettimeofday(routines[i].fn,
228 len, false);
229 result_bps[1] =
230 do_memset_gettimeofday(routines[i].fn,
231 len, true);
232 }
233 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900234 if (use_cycle) {
235 result_cycle[pf] =
236 do_memset_cycle(routines[i].fn,
Jan Beulichbe3de802012-01-24 10:03:22 -0200237 len, only_prefault);
238 } else {
239 result_bps[pf] =
240 do_memset_gettimeofday(routines[i].fn,
241 len, only_prefault);
242 }
243 }
244
245 switch (bench_format) {
246 case BENCH_FORMAT_DEFAULT:
247 if (!only_prefault && !no_prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900248 if (use_cycle) {
249 printf(" %14lf Cycle/Byte\n",
250 (double)result_cycle[0]
Jan Beulichbe3de802012-01-24 10:03:22 -0200251 / (double)len);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900252 printf(" %14lf Cycle/Byte (with prefault)\n ",
253 (double)result_cycle[1]
Jan Beulichbe3de802012-01-24 10:03:22 -0200254 / (double)len);
255 } else {
256 print_bps(result_bps[0]);
257 printf("\n");
258 print_bps(result_bps[1]);
259 printf(" (with prefault)\n");
260 }
261 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900262 if (use_cycle) {
263 printf(" %14lf Cycle/Byte",
264 (double)result_cycle[pf]
Jan Beulichbe3de802012-01-24 10:03:22 -0200265 / (double)len);
266 } else
267 print_bps(result_bps[pf]);
268
269 printf("%s\n", only_prefault ? " (with prefault)" : "");
270 }
271 break;
272 case BENCH_FORMAT_SIMPLE:
273 if (!only_prefault && !no_prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900274 if (use_cycle) {
Jan Beulichbe3de802012-01-24 10:03:22 -0200275 printf("%lf %lf\n",
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900276 (double)result_cycle[0] / (double)len,
277 (double)result_cycle[1] / (double)len);
Jan Beulichbe3de802012-01-24 10:03:22 -0200278 } else {
279 printf("%lf %lf\n",
280 result_bps[0], result_bps[1]);
281 }
282 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900283 if (use_cycle) {
284 printf("%lf\n", (double)result_cycle[pf]
Jan Beulichbe3de802012-01-24 10:03:22 -0200285 / (double)len);
286 } else
287 printf("%lf\n", result_bps[pf]);
288 }
289 break;
290 default:
291 /* reaching this means there's some disaster: */
292 die("unknown format: %d\n", bench_format);
293 break;
294 }
295
296 return 0;
297}