blob: 5ce71d3b72cf9bc16251ba5e7ac81ad0c61560b6 [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"
13#include "bench.h"
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090014#include "mem-memcpy-arch.h"
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090015
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
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090024static 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;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090029static bool only_prefault;
30static bool no_prefault;
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090031
32static const struct option options[] = {
33 OPT_STRING('l', "length", &length_str, "1MB",
34 "Specify length of memory to copy. "
Namhyung Kim08942f62012-06-20 15:08:06 +090035 "Available units: B, KB, MB, GB and TB (upper and lower)"),
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090036 OPT_STRING('r', "routine", &routine, "default",
37 "Specify routine to copy"),
Jan Beuliche3e877e2012-01-18 13:29:59 +000038 OPT_INTEGER('i', "iterations", &iterations,
39 "repeat memcpy() 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"),
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090042 OPT_BOOLEAN('o', "only-prefault", &only_prefault,
43 "Show only the result with page faults before memcpy()"),
44 OPT_BOOLEAN('n', "no-prefault", &no_prefault,
45 "Show only the result without page faults before memcpy()"),
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090046 OPT_END()
47};
48
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090049typedef void *(*memcpy_t)(void *, const void *, size_t);
50
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090051struct routine {
52 const char *name;
53 const char *desc;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090054 memcpy_t fn;
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090055};
56
57struct routine routines[] = {
58 { "default",
59 "Default memcpy() provided by glibc",
60 memcpy },
Ingo Molnar89fe8082013-09-30 12:07:11 +020061#ifdef HAVE_ARCH_X86_64_SUPPORT
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +090062
63#define MEMCPY_FN(fn, name, desc) { name, desc, fn },
64#include "mem-memcpy-x86-64-asm-def.h"
65#undef MEMCPY_FN
66
67#endif
68
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090069 { NULL,
70 NULL,
71 NULL }
72};
73
74static const char * const bench_mem_memcpy_usage[] = {
75 "perf bench mem memcpy <options>",
76 NULL
77};
78
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090079static struct perf_event_attr cycle_attr = {
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090080 .type = PERF_TYPE_HARDWARE,
81 .config = PERF_COUNT_HW_CPU_CYCLES
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090082};
83
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090084static void init_cycle(void)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090085{
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090086 cycle_fd = sys_perf_event_open(&cycle_attr, getpid(), -1, -1, 0);
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090087
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090088 if (cycle_fd < 0 && errno == ENOSYS)
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +090089 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);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090092}
93
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090094static u64 get_cycle(void)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +090095{
96 int ret;
97 u64 clk;
98
Hitoshi Mitake17d7a112012-07-02 22:46:17 +090099 ret = read(cycle_fd, &clk, sizeof(u64));
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900100 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
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900111static void alloc_mem(void **dst, void **src, size_t length)
112{
113 *dst = zalloc(length);
Kirill A. Shutemov13966722013-06-06 14:35:03 +0300114 if (!*dst)
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900115 die("memory allocation failed - maybe length is too large?\n");
116
117 *src = zalloc(length);
Kirill A. Shutemov13966722013-06-06 14:35:03 +0300118 if (!*src)
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900119 die("memory allocation failed - maybe length is too large?\n");
Andi Kleena1989962013-07-18 15:33:46 -0700120 /* Make sure to always replace the zero pages even if MMAP_THRESH is crossed */
121 memset(*src, 0, length);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900122}
123
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900124static u64 do_memcpy_cycle(memcpy_t fn, size_t len, bool prefault)
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900125{
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900126 u64 cycle_start = 0ULL, cycle_end = 0ULL;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900127 void *src = NULL, *dst = NULL;
Jan Beuliche3e877e2012-01-18 13:29:59 +0000128 int i;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900129
130 alloc_mem(&src, &dst, len);
131
132 if (prefault)
133 fn(dst, src, len);
134
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900135 cycle_start = get_cycle();
Jan Beuliche3e877e2012-01-18 13:29:59 +0000136 for (i = 0; i < iterations; ++i)
137 fn(dst, src, len);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900138 cycle_end = get_cycle();
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900139
140 free(src);
141 free(dst);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900142 return cycle_end - cycle_start;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900143}
144
145static double do_memcpy_gettimeofday(memcpy_t fn, size_t len, bool prefault)
146{
147 struct timeval tv_start, tv_end, tv_diff;
148 void *src = NULL, *dst = NULL;
Jan Beuliche3e877e2012-01-18 13:29:59 +0000149 int i;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900150
151 alloc_mem(&src, &dst, len);
152
153 if (prefault)
154 fn(dst, src, len);
155
156 BUG_ON(gettimeofday(&tv_start, NULL));
Jan Beuliche3e877e2012-01-18 13:29:59 +0000157 for (i = 0; i < iterations; ++i)
158 fn(dst, src, len);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900159 BUG_ON(gettimeofday(&tv_end, NULL));
160
161 timersub(&tv_end, &tv_start, &tv_diff);
162
163 free(src);
164 free(dst);
165 return (double)((double)len / timeval2double(&tv_diff));
166}
167
168#define pf (no_prefault ? 0 : 1)
169
170#define print_bps(x) do { \
171 if (x < K) \
172 printf(" %14lf B/Sec", x); \
173 else if (x < K * K) \
174 printf(" %14lfd KB/Sec", x / K); \
175 else if (x < K * K * K) \
176 printf(" %14lf MB/Sec", x / K / K); \
177 else \
178 printf(" %14lf GB/Sec", x / K / K / K); \
179 } while (0)
180
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900181int bench_mem_memcpy(int argc, const char **argv,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300182 const char *prefix __maybe_unused)
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900183{
184 int i;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900185 size_t len;
186 double result_bps[2];
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900187 u64 result_cycle[2];
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900188
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900189 argc = parse_options(argc, argv, options,
190 bench_mem_memcpy_usage, 0);
191
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900192 if (use_cycle)
193 init_cycle();
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900194
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900195 len = (size_t)perf_atoll((char *)length_str);
196
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900197 result_cycle[0] = result_cycle[1] = 0ULL;
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900198 result_bps[0] = result_bps[1] = 0.0;
199
200 if ((s64)len <= 0) {
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900201 fprintf(stderr, "Invalid length:%s\n", length_str);
202 return 1;
203 }
204
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900205 /* same to without specifying either of prefault and no-prefault */
206 if (only_prefault && no_prefault)
207 only_prefault = no_prefault = false;
208
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900209 for (i = 0; routines[i].name; i++) {
210 if (!strcmp(routines[i].name, routine))
211 break;
212 }
213 if (!routines[i].name) {
214 printf("Unknown routine:%s\n", routine);
215 printf("Available routines...\n");
216 for (i = 0; routines[i].name; i++) {
217 printf("\t%s ... %s\n",
218 routines[i].name, routines[i].desc);
219 }
220 return 1;
221 }
222
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900223 if (bench_format == BENCH_FORMAT_DEFAULT)
224 printf("# Copying %s Bytes ...\n\n", length_str);
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900225
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900226 if (!only_prefault && !no_prefault) {
227 /* show both of results */
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900228 if (use_cycle) {
229 result_cycle[0] =
230 do_memcpy_cycle(routines[i].fn, len, false);
231 result_cycle[1] =
232 do_memcpy_cycle(routines[i].fn, len, true);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900233 } else {
234 result_bps[0] =
235 do_memcpy_gettimeofday(routines[i].fn,
236 len, false);
237 result_bps[1] =
238 do_memcpy_gettimeofday(routines[i].fn,
239 len, true);
240 }
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900241 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900242 if (use_cycle) {
243 result_cycle[pf] =
244 do_memcpy_cycle(routines[i].fn,
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900245 len, only_prefault);
246 } else {
247 result_bps[pf] =
248 do_memcpy_gettimeofday(routines[i].fn,
249 len, only_prefault);
250 }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900251 }
252
253 switch (bench_format) {
254 case BENCH_FORMAT_DEFAULT:
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900255 if (!only_prefault && !no_prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900256 if (use_cycle) {
257 printf(" %14lf Cycle/Byte\n",
258 (double)result_cycle[0]
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900259 / (double)len);
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900260 printf(" %14lf Cycle/Byte (with prefault)\n",
261 (double)result_cycle[1]
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900262 / (double)len);
263 } else {
264 print_bps(result_bps[0]);
265 printf("\n");
266 print_bps(result_bps[1]);
267 printf(" (with prefault)\n");
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900268 }
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900269 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900270 if (use_cycle) {
271 printf(" %14lf Cycle/Byte",
272 (double)result_cycle[pf]
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900273 / (double)len);
274 } else
275 print_bps(result_bps[pf]);
276
277 printf("%s\n", only_prefault ? " (with prefault)" : "");
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900278 }
279 break;
280 case BENCH_FORMAT_SIMPLE:
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900281 if (!only_prefault && !no_prefault) {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900282 if (use_cycle) {
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900283 printf("%lf %lf\n",
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900284 (double)result_cycle[0] / (double)len,
285 (double)result_cycle[1] / (double)len);
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900286 } else {
287 printf("%lf %lf\n",
288 result_bps[0], result_bps[1]);
289 }
290 } else {
Hitoshi Mitake17d7a112012-07-02 22:46:17 +0900291 if (use_cycle) {
292 printf("%lf\n", (double)result_cycle[pf]
Hitoshi Mitake49ce8fc2010-11-25 16:04:52 +0900293 / (double)len);
294 } else
295 printf("%lf\n", result_bps[pf]);
296 }
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900297 break;
298 default:
Hitoshi Mitake12eac0b2009-11-20 12:37:17 +0900299 /* reaching this means there's some disaster: */
300 die("unknown format: %d\n", bench_format);
Hitoshi Mitake827f3b42009-11-18 00:20:09 +0900301 break;
302 }
303
304 return 0;
305}