blob: db1d3a29d97fec67c47a4dd84eca2f7779ec1865 [file] [log] [blame]
Hitoshi Mitake827f3b42009-11-18 00:20:09 +09001/*
2 * mem-memcpy.c
3 *
4 * memcpy: Simple memory copy in various ways
5 *
6 * Written by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
7 */
Hitoshi Mitake827f3b42009-11-18 00:20:09 +09008
9#include "../perf.h"
10#include "../util/util.h"
11#include "../util/parse-options.h"
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090012#include "../util/header.h"
Yann Droneaud57480d22014-06-30 22:28:47 +020013#include "../util/cloexec.h"
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090014#include "bench.h"
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090015#include "mem-memcpy-arch.h"
Rabin Vincent5bce1a52014-12-02 16:50:40 +010016#include "mem-memset-arch.h"
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090017
18#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21#include <sys/time.h>
22#include <errno.h>
23
24#define K 1024
25
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090026static const char *length_str = "1MB";
27static const char *routine = "default";
Jan Beuliche3e877e2012-01-18 13:29:59 +000028static int iterations = 1;
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090029static bool use_cycle;
30static int cycle_fd;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090031static bool only_prefault;
32static bool no_prefault;
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090033
34static const struct option options[] = {
35 OPT_STRING('l', "length", &length_str, "1MB",
36 "Specify length of memory to copy. "
Namhyung Kim08942f62012-06-20 15:08:06 +090037 "Available units: B, KB, MB, GB and TB (upper and lower)"),
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090038 OPT_STRING('r', "routine", &routine, "default",
39 "Specify routine to copy"),
Jan Beuliche3e877e2012-01-18 13:29:59 +000040 OPT_INTEGER('i', "iterations", &iterations,
41 "repeat memcpy() invocation this number of times"),
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090042 OPT_BOOLEAN('c', "cycle", &use_cycle,
Namhyung Kim08942f62012-06-20 15:08:06 +090043 "Use cycles event instead of gettimeofday() for measuring"),
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090044 OPT_BOOLEAN('o', "only-prefault", &only_prefault,
45 "Show only the result with page faults before memcpy()"),
46 OPT_BOOLEAN('n', "no-prefault", &no_prefault,
47 "Show only the result without page faults before memcpy()"),
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090048 OPT_END()
49};
50
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090051typedef void *(*memcpy_t)(void *, const void *, size_t);
Rabin Vincent5bce1a52014-12-02 16:50:40 +010052typedef void *(*memset_t)(void *, int, size_t);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090053
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090054struct routine {
55 const char *name;
56 const char *desc;
Rabin Vincent308197b2014-12-02 16:50:39 +010057 union {
58 memcpy_t memcpy;
Rabin Vincent5bce1a52014-12-02 16:50:40 +010059 memset_t memset;
Rabin Vincent308197b2014-12-02 16:50:39 +010060 } fn;
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090061};
62
Rabin Vincent308197b2014-12-02 16:50:39 +010063struct routine memcpy_routines[] = {
64 { .name = "default",
65 .desc = "Default memcpy() provided by glibc",
66 .fn.memcpy = memcpy },
Ingo Molnar89fe8082013-09-30 12:07:11 +020067#ifdef HAVE_ARCH_X86_64_SUPPORT
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090068
Rabin Vincent308197b2014-12-02 16:50:39 +010069#define MEMCPY_FN(_fn, _name, _desc) {.name = _name, .desc = _desc, .fn.memcpy = _fn},
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090070#include "mem-memcpy-x86-64-asm-def.h"
71#undef MEMCPY_FN
72
73#endif
74
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090075 { NULL,
76 NULL,
Rabin Vincent308197b2014-12-02 16:50:39 +010077 {NULL} }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090078};
79
80static const char * const bench_mem_memcpy_usage[] = {
81 "perf bench mem memcpy <options>",
82 NULL
83};
84
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090085static struct perf_event_attr cycle_attr = {
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090086 .type = PERF_TYPE_HARDWARE,
87 .config = PERF_COUNT_HW_CPU_CYCLES
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090088};
89
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090090static void init_cycle(void)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090091{
Yann Droneaud57480d22014-06-30 22:28:47 +020092 cycle_fd = sys_perf_event_open(&cycle_attr, getpid(), -1, -1,
93 perf_event_open_cloexec_flag());
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090094
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090095 if (cycle_fd < 0 && errno == ENOSYS)
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090096 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
97 else
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090098 BUG_ON(cycle_fd < 0);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090099}
100
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900101static u64 get_cycle(void)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900102{
103 int ret;
104 u64 clk;
105
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900106 ret = read(cycle_fd, &clk, sizeof(u64));
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900107 BUG_ON(ret != sizeof(u64));
108
109 return clk;
110}
111
112static double timeval2double(struct timeval *ts)
113{
114 return (double)ts->tv_sec +
115 (double)ts->tv_usec / (double)1000000;
116}
117
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900118#define pf (no_prefault ? 0 : 1)
119
120#define print_bps(x) do { \
121 if (x < K) \
122 printf(" %14lf B/Sec", x); \
123 else if (x < K * K) \
124 printf(" %14lfd KB/Sec", x / K); \
125 else if (x < K * K * K) \
126 printf(" %14lf MB/Sec", x / K / K); \
127 else \
128 printf(" %14lf GB/Sec", x / K / K / K); \
129 } while (0)
130
Rabin Vincent308197b2014-12-02 16:50:39 +0100131struct bench_mem_info {
132 const struct routine *routines;
133 u64 (*do_cycle)(const struct routine *r, size_t len, bool prefault);
134 double (*do_gettimeofday)(const struct routine *r, size_t len, bool prefault);
135 const char *const *usage;
136};
137
138static int bench_mem_common(int argc, const char **argv,
139 const char *prefix __maybe_unused,
140 struct bench_mem_info *info)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900141{
142 int i;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900143 size_t len;
Rabin Vincent1182f882014-12-02 16:50:41 +0100144 double totallen;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900145 double result_bps[2];
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900146 u64 result_cycle[2];
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900147
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900148 argc = parse_options(argc, argv, options,
Rabin Vincent308197b2014-12-02 16:50:39 +0100149 info->usage, 0);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900150
Davidlohr Bueso424e9632014-06-16 11:14:25 -0700151 if (no_prefault && only_prefault) {
152 fprintf(stderr, "Invalid options: -o and -n are mutually exclusive\n");
153 return 1;
154 }
155
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900156 if (use_cycle)
157 init_cycle();
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900158
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900159 len = (size_t)perf_atoll((char *)length_str);
Rabin Vincent1182f882014-12-02 16:50:41 +0100160 totallen = (double)len * iterations;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900161
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900162 result_cycle[0] = result_cycle[1] = 0ULL;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900163 result_bps[0] = result_bps[1] = 0.0;
164
165 if ((s64)len <= 0) {
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900166 fprintf(stderr, "Invalid length:%s\n", length_str);
167 return 1;
168 }
169
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900170 /* same to without specifying either of prefault and no-prefault */
171 if (only_prefault && no_prefault)
172 only_prefault = no_prefault = false;
173
Rabin Vincent308197b2014-12-02 16:50:39 +0100174 for (i = 0; info->routines[i].name; i++) {
175 if (!strcmp(info->routines[i].name, routine))
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900176 break;
177 }
Rabin Vincent308197b2014-12-02 16:50:39 +0100178 if (!info->routines[i].name) {
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900179 printf("Unknown routine:%s\n", routine);
180 printf("Available routines...\n");
Rabin Vincent308197b2014-12-02 16:50:39 +0100181 for (i = 0; info->routines[i].name; i++) {
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900182 printf("\t%s ... %s\n",
Rabin Vincent308197b2014-12-02 16:50:39 +0100183 info->routines[i].name, info->routines[i].desc);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900184 }
185 return 1;
186 }
187
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900188 if (bench_format == BENCH_FORMAT_DEFAULT)
189 printf("# Copying %s Bytes ...\n\n", length_str);
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900190
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900191 if (!only_prefault && !no_prefault) {
192 /* show both of results */
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900193 if (use_cycle) {
194 result_cycle[0] =
Rabin Vincent308197b2014-12-02 16:50:39 +0100195 info->do_cycle(&info->routines[i], len, false);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900196 result_cycle[1] =
Rabin Vincent308197b2014-12-02 16:50:39 +0100197 info->do_cycle(&info->routines[i], len, true);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900198 } else {
199 result_bps[0] =
Rabin Vincent308197b2014-12-02 16:50:39 +0100200 info->do_gettimeofday(&info->routines[i],
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900201 len, false);
202 result_bps[1] =
Rabin Vincent308197b2014-12-02 16:50:39 +0100203 info->do_gettimeofday(&info->routines[i],
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900204 len, true);
205 }
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900206 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900207 if (use_cycle) {
208 result_cycle[pf] =
Rabin Vincent308197b2014-12-02 16:50:39 +0100209 info->do_cycle(&info->routines[i],
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900210 len, only_prefault);
211 } else {
212 result_bps[pf] =
Rabin Vincent308197b2014-12-02 16:50:39 +0100213 info->do_gettimeofday(&info->routines[i],
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900214 len, only_prefault);
215 }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900216 }
217
218 switch (bench_format) {
219 case BENCH_FORMAT_DEFAULT:
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900220 if (!only_prefault && !no_prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900221 if (use_cycle) {
222 printf(" %14lf Cycle/Byte\n",
223 (double)result_cycle[0]
Rabin Vincent1182f882014-12-02 16:50:41 +0100224 / totallen);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900225 printf(" %14lf Cycle/Byte (with prefault)\n",
226 (double)result_cycle[1]
Rabin Vincent1182f882014-12-02 16:50:41 +0100227 / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900228 } else {
229 print_bps(result_bps[0]);
230 printf("\n");
231 print_bps(result_bps[1]);
232 printf(" (with prefault)\n");
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900233 }
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900234 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900235 if (use_cycle) {
236 printf(" %14lf Cycle/Byte",
237 (double)result_cycle[pf]
Rabin Vincent1182f882014-12-02 16:50:41 +0100238 / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900239 } else
240 print_bps(result_bps[pf]);
241
242 printf("%s\n", only_prefault ? " (with prefault)" : "");
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900243 }
244 break;
245 case BENCH_FORMAT_SIMPLE:
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900246 if (!only_prefault && !no_prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900247 if (use_cycle) {
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900248 printf("%lf %lf\n",
Rabin Vincent1182f882014-12-02 16:50:41 +0100249 (double)result_cycle[0] / totallen,
250 (double)result_cycle[1] / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900251 } else {
252 printf("%lf %lf\n",
253 result_bps[0], result_bps[1]);
254 }
255 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900256 if (use_cycle) {
257 printf("%lf\n", (double)result_cycle[pf]
Rabin Vincent1182f882014-12-02 16:50:41 +0100258 / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900259 } else
260 printf("%lf\n", result_bps[pf]);
261 }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900262 break;
263 default:
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900264 /* reaching this means there's some disaster: */
265 die("unknown format: %d\n", bench_format);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900266 break;
267 }
268
269 return 0;
270}
Rabin Vincent308197b2014-12-02 16:50:39 +0100271
272static void memcpy_alloc_mem(void **dst, void **src, size_t length)
273{
274 *dst = zalloc(length);
275 if (!*dst)
276 die("memory allocation failed - maybe length is too large?\n");
277
278 *src = zalloc(length);
279 if (!*src)
280 die("memory allocation failed - maybe length is too large?\n");
281 /* Make sure to always replace the zero pages even if MMAP_THRESH is crossed */
282 memset(*src, 0, length);
283}
284
285static u64 do_memcpy_cycle(const struct routine *r, size_t len, bool prefault)
286{
287 u64 cycle_start = 0ULL, cycle_end = 0ULL;
288 void *src = NULL, *dst = NULL;
289 memcpy_t fn = r->fn.memcpy;
290 int i;
291
Bruce Merrye17fdae2015-01-15 11:20:22 +0200292 memcpy_alloc_mem(&dst, &src, len);
Rabin Vincent308197b2014-12-02 16:50:39 +0100293
294 if (prefault)
295 fn(dst, src, len);
296
297 cycle_start = get_cycle();
298 for (i = 0; i < iterations; ++i)
299 fn(dst, src, len);
300 cycle_end = get_cycle();
301
302 free(src);
303 free(dst);
304 return cycle_end - cycle_start;
305}
306
307static double do_memcpy_gettimeofday(const struct routine *r, size_t len,
308 bool prefault)
309{
310 struct timeval tv_start, tv_end, tv_diff;
311 memcpy_t fn = r->fn.memcpy;
312 void *src = NULL, *dst = NULL;
313 int i;
314
Bruce Merrye17fdae2015-01-15 11:20:22 +0200315 memcpy_alloc_mem(&dst, &src, len);
Rabin Vincent308197b2014-12-02 16:50:39 +0100316
317 if (prefault)
318 fn(dst, src, len);
319
320 BUG_ON(gettimeofday(&tv_start, NULL));
321 for (i = 0; i < iterations; ++i)
322 fn(dst, src, len);
323 BUG_ON(gettimeofday(&tv_end, NULL));
324
325 timersub(&tv_end, &tv_start, &tv_diff);
326
327 free(src);
328 free(dst);
Rabin Vincent1182f882014-12-02 16:50:41 +0100329 return (double)(((double)len * iterations) / timeval2double(&tv_diff));
Rabin Vincent308197b2014-12-02 16:50:39 +0100330}
331
332int bench_mem_memcpy(int argc, const char **argv,
333 const char *prefix __maybe_unused)
334{
335 struct bench_mem_info info = {
336 .routines = memcpy_routines,
337 .do_cycle = do_memcpy_cycle,
338 .do_gettimeofday = do_memcpy_gettimeofday,
339 .usage = bench_mem_memcpy_usage,
340 };
341
342 return bench_mem_common(argc, argv, prefix, &info);
343}
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100344
345static void memset_alloc_mem(void **dst, size_t length)
346{
347 *dst = zalloc(length);
348 if (!*dst)
349 die("memory allocation failed - maybe length is too large?\n");
350}
351
352static u64 do_memset_cycle(const struct routine *r, size_t len, bool prefault)
353{
354 u64 cycle_start = 0ULL, cycle_end = 0ULL;
355 memset_t fn = r->fn.memset;
356 void *dst = NULL;
357 int i;
358
359 memset_alloc_mem(&dst, len);
360
361 if (prefault)
362 fn(dst, -1, len);
363
364 cycle_start = get_cycle();
365 for (i = 0; i < iterations; ++i)
366 fn(dst, i, len);
367 cycle_end = get_cycle();
368
369 free(dst);
370 return cycle_end - cycle_start;
371}
372
373static double do_memset_gettimeofday(const struct routine *r, size_t len,
374 bool prefault)
375{
376 struct timeval tv_start, tv_end, tv_diff;
377 memset_t fn = r->fn.memset;
378 void *dst = NULL;
379 int i;
380
381 memset_alloc_mem(&dst, len);
382
383 if (prefault)
384 fn(dst, -1, len);
385
386 BUG_ON(gettimeofday(&tv_start, NULL));
387 for (i = 0; i < iterations; ++i)
388 fn(dst, i, len);
389 BUG_ON(gettimeofday(&tv_end, NULL));
390
391 timersub(&tv_end, &tv_start, &tv_diff);
392
393 free(dst);
Rabin Vincent1182f882014-12-02 16:50:41 +0100394 return (double)(((double)len * iterations) / timeval2double(&tv_diff));
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100395}
396
397static const char * const bench_mem_memset_usage[] = {
398 "perf bench mem memset <options>",
399 NULL
400};
401
402static const struct routine memset_routines[] = {
403 { .name ="default",
404 .desc = "Default memset() provided by glibc",
405 .fn.memset = memset },
406#ifdef HAVE_ARCH_X86_64_SUPPORT
407
408#define MEMSET_FN(_fn, _name, _desc) { .name = _name, .desc = _desc, .fn.memset = _fn },
409#include "mem-memset-x86-64-asm-def.h"
410#undef MEMSET_FN
411
412#endif
413
414 { .name = NULL,
415 .desc = NULL,
416 .fn.memset = NULL }
417};
418
419int bench_mem_memset(int argc, const char **argv,
420 const char *prefix __maybe_unused)
421{
422 struct bench_mem_info info = {
423 .routines = memset_routines,
424 .do_cycle = do_memset_cycle,
425 .do_gettimeofday = do_memset_gettimeofday,
426 .usage = bench_mem_memset_usage,
427 };
428
429 return bench_mem_common(argc, argv, prefix, &info);
430}