blob: 7acb9b83382c3be5a30655169c7b22f3ab0cdc7c [file] [log] [blame]
Hitoshi Mitake827f3b42009-11-18 00:20:09 +09001/*
2 * mem-memcpy.c
3 *
Ingo Molnar13839ec2015-10-19 10:04:17 +02004 * Simple memcpy() and memset() benchmarks
Hitoshi Mitake827f3b42009-11-18 00:20:09 +09005 *
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";
Ingo Molnar27619742015-10-19 10:04:18 +020027static const char *routine = "all";
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)"),
Ingo Molnar27619742015-10-19 10:04:18 +020038 OPT_STRING('r', "routine", &routine, "all",
Borislav Petkovdfecb952015-02-26 19:02:43 +010039 "Specify routine to copy, \"all\" runs all available routines"),
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[] = {
Ingo Molnar13839ec2015-10-19 10:04:17 +020064 { .name = "default",
65 .desc = "Default memcpy() provided by glibc",
66 .fn.memcpy = memcpy },
67
Ingo Molnar89fe8082013-09-30 12:07:11 +020068#ifdef HAVE_ARCH_X86_64_SUPPORT
Ingo Molnar13839ec2015-10-19 10:04:17 +020069# define MEMCPY_FN(_fn, _name, _desc) {.name = _name, .desc = _desc, .fn.memcpy = _fn},
70# include "mem-memcpy-x86-64-asm-def.h"
71# undef MEMCPY_FN
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090072#endif
73
Ingo Molnar13839ec2015-10-19 10:04:17 +020074 { NULL, }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090075};
76
77static const char * const bench_mem_memcpy_usage[] = {
78 "perf bench mem memcpy <options>",
79 NULL
80};
81
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090082static struct perf_event_attr cycle_attr = {
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090083 .type = PERF_TYPE_HARDWARE,
84 .config = PERF_COUNT_HW_CPU_CYCLES
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090085};
86
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090087static void init_cycle(void)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090088{
Ingo Molnar13839ec2015-10-19 10:04:17 +020089 cycle_fd = sys_perf_event_open(&cycle_attr, getpid(), -1, -1, perf_event_open_cloexec_flag());
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090090
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090091 if (cycle_fd < 0 && errno == ENOSYS)
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090092 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
93 else
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090094 BUG_ON(cycle_fd < 0);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090095}
96
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090097static u64 get_cycle(void)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090098{
99 int ret;
100 u64 clk;
101
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900102 ret = read(cycle_fd, &clk, sizeof(u64));
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900103 BUG_ON(ret != sizeof(u64));
104
105 return clk;
106}
107
108static double timeval2double(struct timeval *ts)
109{
Ingo Molnar13839ec2015-10-19 10:04:17 +0200110 return (double)ts->tv_sec + (double)ts->tv_usec / (double)1000000;
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900111}
112
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900113#define print_bps(x) do { \
114 if (x < K) \
115 printf(" %14lf B/Sec", x); \
116 else if (x < K * K) \
117 printf(" %14lfd KB/Sec", x / K); \
118 else if (x < K * K * K) \
119 printf(" %14lf MB/Sec", x / K / K); \
120 else \
121 printf(" %14lf GB/Sec", x / K / K / K); \
122 } while (0)
123
Rabin Vincent308197b2014-12-02 16:50:39 +0100124struct bench_mem_info {
125 const struct routine *routines;
126 u64 (*do_cycle)(const struct routine *r, size_t len, bool prefault);
127 double (*do_gettimeofday)(const struct routine *r, size_t len, bool prefault);
128 const char *const *usage;
129};
130
Borislav Petkov515e23f2015-02-26 18:51:37 +0100131static void __bench_mem_routine(struct bench_mem_info *info, int r_idx, size_t len, double totallen)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900132{
Borislav Petkov515e23f2015-02-26 18:51:37 +0100133 const struct routine *r = &info->routines[r_idx];
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900134 double result_bps[2];
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900135 u64 result_cycle[2];
Ingo Molnar13839ec2015-10-19 10:04:17 +0200136 int prefault = no_prefault ? 0 : 1;
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900137
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900138 result_cycle[0] = result_cycle[1] = 0ULL;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900139 result_bps[0] = result_bps[1] = 0.0;
140
Borislav Petkovdfecb952015-02-26 19:02:43 +0100141 printf("Routine %s (%s)\n", r->name, r->desc);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900142
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900143 if (bench_format == BENCH_FORMAT_DEFAULT)
144 printf("# Copying %s Bytes ...\n\n", length_str);
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900145
Ingo Molnar13839ec2015-10-19 10:04:17 +0200146 if (!only_prefault && prefault) {
147 /* Show both results: */
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900148 if (use_cycle) {
Borislav Petkov515e23f2015-02-26 18:51:37 +0100149 result_cycle[0] = info->do_cycle(r, len, false);
150 result_cycle[1] = info->do_cycle(r, len, true);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900151 } else {
Borislav Petkov515e23f2015-02-26 18:51:37 +0100152 result_bps[0] = info->do_gettimeofday(r, len, false);
153 result_bps[1] = info->do_gettimeofday(r, len, true);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900154 }
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900155 } else {
Borislav Petkov515e23f2015-02-26 18:51:37 +0100156 if (use_cycle)
Ingo Molnar13839ec2015-10-19 10:04:17 +0200157 result_cycle[prefault] = info->do_cycle(r, len, only_prefault);
Borislav Petkov515e23f2015-02-26 18:51:37 +0100158 else
Ingo Molnar13839ec2015-10-19 10:04:17 +0200159 result_bps[prefault] = info->do_gettimeofday(r, len, only_prefault);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900160 }
161
162 switch (bench_format) {
163 case BENCH_FORMAT_DEFAULT:
Ingo Molnar13839ec2015-10-19 10:04:17 +0200164 if (!only_prefault && prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900165 if (use_cycle) {
166 printf(" %14lf Cycle/Byte\n",
167 (double)result_cycle[0]
Rabin Vincent1182f882014-12-02 16:50:41 +0100168 / totallen);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900169 printf(" %14lf Cycle/Byte (with prefault)\n",
170 (double)result_cycle[1]
Rabin Vincent1182f882014-12-02 16:50:41 +0100171 / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900172 } else {
173 print_bps(result_bps[0]);
174 printf("\n");
175 print_bps(result_bps[1]);
176 printf(" (with prefault)\n");
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900177 }
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900178 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900179 if (use_cycle) {
180 printf(" %14lf Cycle/Byte",
Ingo Molnar13839ec2015-10-19 10:04:17 +0200181 (double)result_cycle[prefault]
Rabin Vincent1182f882014-12-02 16:50:41 +0100182 / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900183 } else
Ingo Molnar13839ec2015-10-19 10:04:17 +0200184 print_bps(result_bps[prefault]);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900185
186 printf("%s\n", only_prefault ? " (with prefault)" : "");
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900187 }
188 break;
189 case BENCH_FORMAT_SIMPLE:
Ingo Molnar13839ec2015-10-19 10:04:17 +0200190 if (!only_prefault && prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900191 if (use_cycle) {
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900192 printf("%lf %lf\n",
Rabin Vincent1182f882014-12-02 16:50:41 +0100193 (double)result_cycle[0] / totallen,
194 (double)result_cycle[1] / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900195 } else {
196 printf("%lf %lf\n",
197 result_bps[0], result_bps[1]);
198 }
199 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900200 if (use_cycle) {
Ingo Molnar13839ec2015-10-19 10:04:17 +0200201 printf("%lf\n", (double)result_cycle[prefault]
Rabin Vincent1182f882014-12-02 16:50:41 +0100202 / totallen);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900203 } else
Ingo Molnar13839ec2015-10-19 10:04:17 +0200204 printf("%lf\n", result_bps[prefault]);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900205 }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900206 break;
207 default:
Ingo Molnar13839ec2015-10-19 10:04:17 +0200208 /* Reaching this means there's some disaster: */
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900209 die("unknown format: %d\n", bench_format);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900210 break;
211 }
Borislav Petkov515e23f2015-02-26 18:51:37 +0100212}
213
Ingo Molnar2946f592015-10-19 10:04:19 +0200214static int bench_mem_common(int argc, const char **argv, struct bench_mem_info *info)
Borislav Petkov515e23f2015-02-26 18:51:37 +0100215{
216 int i;
217 size_t len;
218 double totallen;
219
Ingo Molnar13839ec2015-10-19 10:04:17 +0200220 argc = parse_options(argc, argv, options, info->usage, 0);
Borislav Petkov515e23f2015-02-26 18:51:37 +0100221
222 if (no_prefault && only_prefault) {
223 fprintf(stderr, "Invalid options: -o and -n are mutually exclusive\n");
224 return 1;
225 }
226
227 if (use_cycle)
228 init_cycle();
229
230 len = (size_t)perf_atoll((char *)length_str);
231 totallen = (double)len * iterations;
232
233 if ((s64)len <= 0) {
234 fprintf(stderr, "Invalid length:%s\n", length_str);
235 return 1;
236 }
237
Ingo Molnar13839ec2015-10-19 10:04:17 +0200238 /* Same as without specifying either of prefault and no-prefault: */
Borislav Petkov515e23f2015-02-26 18:51:37 +0100239 if (only_prefault && no_prefault)
240 only_prefault = no_prefault = false;
241
Borislav Petkovdfecb952015-02-26 19:02:43 +0100242 if (!strncmp(routine, "all", 3)) {
243 for (i = 0; info->routines[i].name; i++)
244 __bench_mem_routine(info, i, len, totallen);
245 return 0;
246 }
247
Borislav Petkov515e23f2015-02-26 18:51:37 +0100248 for (i = 0; info->routines[i].name; i++) {
249 if (!strcmp(info->routines[i].name, routine))
250 break;
251 }
252 if (!info->routines[i].name) {
253 printf("Unknown routine:%s\n", routine);
254 printf("Available routines...\n");
255 for (i = 0; info->routines[i].name; i++) {
256 printf("\t%s ... %s\n",
257 info->routines[i].name, info->routines[i].desc);
258 }
259 return 1;
260 }
261
262 __bench_mem_routine(info, i, len, totallen);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900263
264 return 0;
265}
Rabin Vincent308197b2014-12-02 16:50:39 +0100266
267static void memcpy_alloc_mem(void **dst, void **src, size_t length)
268{
269 *dst = zalloc(length);
270 if (!*dst)
271 die("memory allocation failed - maybe length is too large?\n");
272
273 *src = zalloc(length);
274 if (!*src)
275 die("memory allocation failed - maybe length is too large?\n");
Ingo Molnar13839ec2015-10-19 10:04:17 +0200276
277 /* Make sure to always prefault zero pages even if MMAP_THRESH is crossed: */
Rabin Vincent308197b2014-12-02 16:50:39 +0100278 memset(*src, 0, length);
279}
280
281static u64 do_memcpy_cycle(const struct routine *r, size_t len, bool prefault)
282{
283 u64 cycle_start = 0ULL, cycle_end = 0ULL;
284 void *src = NULL, *dst = NULL;
285 memcpy_t fn = r->fn.memcpy;
286 int i;
287
Bruce Merrye17fdae2015-01-15 11:20:22 +0200288 memcpy_alloc_mem(&dst, &src, len);
Rabin Vincent308197b2014-12-02 16:50:39 +0100289
290 if (prefault)
291 fn(dst, src, len);
292
293 cycle_start = get_cycle();
294 for (i = 0; i < iterations; ++i)
295 fn(dst, src, len);
296 cycle_end = get_cycle();
297
298 free(src);
299 free(dst);
300 return cycle_end - cycle_start;
301}
302
Ingo Molnar13839ec2015-10-19 10:04:17 +0200303static double do_memcpy_gettimeofday(const struct routine *r, size_t len, bool prefault)
Rabin Vincent308197b2014-12-02 16:50:39 +0100304{
305 struct timeval tv_start, tv_end, tv_diff;
306 memcpy_t fn = r->fn.memcpy;
307 void *src = NULL, *dst = NULL;
308 int i;
309
Bruce Merrye17fdae2015-01-15 11:20:22 +0200310 memcpy_alloc_mem(&dst, &src, len);
Rabin Vincent308197b2014-12-02 16:50:39 +0100311
312 if (prefault)
313 fn(dst, src, len);
314
315 BUG_ON(gettimeofday(&tv_start, NULL));
316 for (i = 0; i < iterations; ++i)
317 fn(dst, src, len);
318 BUG_ON(gettimeofday(&tv_end, NULL));
319
320 timersub(&tv_end, &tv_start, &tv_diff);
321
322 free(src);
323 free(dst);
Rabin Vincent1182f882014-12-02 16:50:41 +0100324 return (double)(((double)len * iterations) / timeval2double(&tv_diff));
Rabin Vincent308197b2014-12-02 16:50:39 +0100325}
326
Ingo Molnar2946f592015-10-19 10:04:19 +0200327int bench_mem_memcpy(int argc, const char **argv, const char *prefix __maybe_unused)
Rabin Vincent308197b2014-12-02 16:50:39 +0100328{
329 struct bench_mem_info info = {
Ingo Molnar13839ec2015-10-19 10:04:17 +0200330 .routines = memcpy_routines,
331 .do_cycle = do_memcpy_cycle,
332 .do_gettimeofday = do_memcpy_gettimeofday,
333 .usage = bench_mem_memcpy_usage,
Rabin Vincent308197b2014-12-02 16:50:39 +0100334 };
335
Ingo Molnar2946f592015-10-19 10:04:19 +0200336 return bench_mem_common(argc, argv, &info);
Rabin Vincent308197b2014-12-02 16:50:39 +0100337}
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100338
339static void memset_alloc_mem(void **dst, size_t length)
340{
341 *dst = zalloc(length);
342 if (!*dst)
343 die("memory allocation failed - maybe length is too large?\n");
344}
345
346static u64 do_memset_cycle(const struct routine *r, size_t len, bool prefault)
347{
348 u64 cycle_start = 0ULL, cycle_end = 0ULL;
349 memset_t fn = r->fn.memset;
350 void *dst = NULL;
351 int i;
352
353 memset_alloc_mem(&dst, len);
354
355 if (prefault)
356 fn(dst, -1, len);
357
358 cycle_start = get_cycle();
359 for (i = 0; i < iterations; ++i)
360 fn(dst, i, len);
361 cycle_end = get_cycle();
362
363 free(dst);
364 return cycle_end - cycle_start;
365}
366
367static double do_memset_gettimeofday(const struct routine *r, size_t len,
368 bool prefault)
369{
370 struct timeval tv_start, tv_end, tv_diff;
371 memset_t fn = r->fn.memset;
372 void *dst = NULL;
373 int i;
374
375 memset_alloc_mem(&dst, len);
376
377 if (prefault)
378 fn(dst, -1, len);
379
380 BUG_ON(gettimeofday(&tv_start, NULL));
381 for (i = 0; i < iterations; ++i)
382 fn(dst, i, len);
383 BUG_ON(gettimeofday(&tv_end, NULL));
384
385 timersub(&tv_end, &tv_start, &tv_diff);
386
387 free(dst);
Rabin Vincent1182f882014-12-02 16:50:41 +0100388 return (double)(((double)len * iterations) / timeval2double(&tv_diff));
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100389}
390
391static const char * const bench_mem_memset_usage[] = {
392 "perf bench mem memset <options>",
393 NULL
394};
395
396static const struct routine memset_routines[] = {
Ingo Molnar13839ec2015-10-19 10:04:17 +0200397 { .name = "default",
398 .desc = "Default memset() provided by glibc",
399 .fn.memset = memset },
400
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100401#ifdef HAVE_ARCH_X86_64_SUPPORT
Ingo Molnar13839ec2015-10-19 10:04:17 +0200402# define MEMSET_FN(_fn, _name, _desc) { .name = _name, .desc = _desc, .fn.memset = _fn },
403# include "mem-memset-x86-64-asm-def.h"
404# undef MEMSET_FN
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100405#endif
406
Ingo Molnar13839ec2015-10-19 10:04:17 +0200407 { NULL, }
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100408};
409
Ingo Molnar13839ec2015-10-19 10:04:17 +0200410int bench_mem_memset(int argc, const char **argv, const char *prefix __maybe_unused)
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100411{
412 struct bench_mem_info info = {
Ingo Molnar13839ec2015-10-19 10:04:17 +0200413 .routines = memset_routines,
414 .do_cycle = do_memset_cycle,
415 .do_gettimeofday = do_memset_gettimeofday,
416 .usage = bench_mem_memset_usage,
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100417 };
418
Ingo Molnar2946f592015-10-19 10:04:19 +0200419 return bench_mem_common(argc, argv, &info);
Rabin Vincent5bce1a52014-12-02 16:50:40 +0100420}