mem-memcpy.c 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * mem-memcpy.c
 *
 * memcpy: Simple memory copy in various ways
 *
 * Written by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
 */

#include "../perf.h"
#include "../util/util.h"
#include "../util/parse-options.h"
#include "../util/header.h"
#include "bench.h"
14
#include "mem-memcpy-arch.h"
15 16 17 18 19 20 21 22 23

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <errno.h>

#define K 1024

24 25
static const char	*length_str	= "1MB";
static const char	*routine	= "default";
26
static int		iterations	= 1;
27 28
static bool		use_cycle;
static int		cycle_fd;
29 30
static bool		only_prefault;
static bool		no_prefault;
31 32 33 34

static const struct option options[] = {
	OPT_STRING('l', "length", &length_str, "1MB",
		    "Specify length of memory to copy. "
N
Namhyung Kim 已提交
35
		    "Available units: B, KB, MB, GB and TB (upper and lower)"),
36 37
	OPT_STRING('r', "routine", &routine, "default",
		    "Specify routine to copy"),
38 39
	OPT_INTEGER('i', "iterations", &iterations,
		    "repeat memcpy() invocation this number of times"),
40
	OPT_BOOLEAN('c', "cycle", &use_cycle,
N
Namhyung Kim 已提交
41
		    "Use cycles event instead of gettimeofday() for measuring"),
42 43 44 45
	OPT_BOOLEAN('o', "only-prefault", &only_prefault,
		    "Show only the result with page faults before memcpy()"),
	OPT_BOOLEAN('n', "no-prefault", &no_prefault,
		    "Show only the result without page faults before memcpy()"),
46 47 48
	OPT_END()
};

49 50
typedef void *(*memcpy_t)(void *, const void *, size_t);

51 52 53
struct routine {
	const char *name;
	const char *desc;
54
	memcpy_t fn;
55 56 57 58 59 60
};

struct routine routines[] = {
	{ "default",
	  "Default memcpy() provided by glibc",
	  memcpy },
61
#ifdef HAVE_ARCH_X86_64_SUPPORT
62 63 64 65 66 67 68

#define MEMCPY_FN(fn, name, desc) { name, desc, fn },
#include "mem-memcpy-x86-64-asm-def.h"
#undef MEMCPY_FN

#endif

69 70 71 72 73 74 75 76 77 78
	{ NULL,
	  NULL,
	  NULL   }
};

static const char * const bench_mem_memcpy_usage[] = {
	"perf bench mem memcpy <options>",
	NULL
};

79
static struct perf_event_attr cycle_attr = {
80 81
	.type		= PERF_TYPE_HARDWARE,
	.config		= PERF_COUNT_HW_CPU_CYCLES
82 83
};

84
static void init_cycle(void)
85
{
86
	cycle_fd = sys_perf_event_open(&cycle_attr, getpid(), -1, -1, 0);
87

88
	if (cycle_fd < 0 && errno == ENOSYS)
89 90
		die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
	else
91
		BUG_ON(cycle_fd < 0);
92 93
}

94
static u64 get_cycle(void)
95 96 97 98
{
	int ret;
	u64 clk;

99
	ret = read(cycle_fd, &clk, sizeof(u64));
100 101 102 103 104 105 106 107 108 109 110
	BUG_ON(ret != sizeof(u64));

	return clk;
}

static double timeval2double(struct timeval *ts)
{
	return (double)ts->tv_sec +
		(double)ts->tv_usec / (double)1000000;
}

111 112 113
static void alloc_mem(void **dst, void **src, size_t length)
{
	*dst = zalloc(length);
114
	if (!*dst)
115 116 117
		die("memory allocation failed - maybe length is too large?\n");

	*src = zalloc(length);
118
	if (!*src)
119
		die("memory allocation failed - maybe length is too large?\n");
120 121
	/* Make sure to always replace the zero pages even if MMAP_THRESH is crossed */
	memset(*src, 0, length);
122 123
}

124
static u64 do_memcpy_cycle(memcpy_t fn, size_t len, bool prefault)
125
{
126
	u64 cycle_start = 0ULL, cycle_end = 0ULL;
127
	void *src = NULL, *dst = NULL;
128
	int i;
129 130 131 132 133 134

	alloc_mem(&src, &dst, len);

	if (prefault)
		fn(dst, src, len);

135
	cycle_start = get_cycle();
136 137
	for (i = 0; i < iterations; ++i)
		fn(dst, src, len);
138
	cycle_end = get_cycle();
139 140 141

	free(src);
	free(dst);
142
	return cycle_end - cycle_start;
143 144 145 146 147 148
}

static double do_memcpy_gettimeofday(memcpy_t fn, size_t len, bool prefault)
{
	struct timeval tv_start, tv_end, tv_diff;
	void *src = NULL, *dst = NULL;
149
	int i;
150 151 152 153 154 155 156

	alloc_mem(&src, &dst, len);

	if (prefault)
		fn(dst, src, len);

	BUG_ON(gettimeofday(&tv_start, NULL));
157 158
	for (i = 0; i < iterations; ++i)
		fn(dst, src, len);
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
	BUG_ON(gettimeofday(&tv_end, NULL));

	timersub(&tv_end, &tv_start, &tv_diff);

	free(src);
	free(dst);
	return (double)((double)len / timeval2double(&tv_diff));
}

#define pf (no_prefault ? 0 : 1)

#define print_bps(x) do {					\
		if (x < K)					\
			printf(" %14lf B/Sec", x);		\
		else if (x < K * K)				\
			printf(" %14lfd KB/Sec", x / K);	\
		else if (x < K * K * K)				\
			printf(" %14lf MB/Sec", x / K / K);	\
		else						\
			printf(" %14lf GB/Sec", x / K / K / K); \
	} while (0)

181
int bench_mem_memcpy(int argc, const char **argv,
182
		     const char *prefix __maybe_unused)
183 184
{
	int i;
185 186
	size_t len;
	double result_bps[2];
187
	u64 result_cycle[2];
188 189 190 191

	argc = parse_options(argc, argv, options,
			     bench_mem_memcpy_usage, 0);

192 193
	if (use_cycle)
		init_cycle();
194 195

	len = (size_t)perf_atoll((char *)length_str);
196

197
	result_cycle[0] = result_cycle[1] = 0ULL;
198 199 200
	result_bps[0] = result_bps[1] = 0.0;

	if ((s64)len <= 0) {
201 202 203 204
		fprintf(stderr, "Invalid length:%s\n", length_str);
		return 1;
	}

205 206 207 208
	/* same to without specifying either of prefault and no-prefault */
	if (only_prefault && no_prefault)
		only_prefault = no_prefault = false;

209 210 211 212 213 214 215 216 217 218 219 220 221 222
	for (i = 0; routines[i].name; i++) {
		if (!strcmp(routines[i].name, routine))
			break;
	}
	if (!routines[i].name) {
		printf("Unknown routine:%s\n", routine);
		printf("Available routines...\n");
		for (i = 0; routines[i].name; i++) {
			printf("\t%s ... %s\n",
			       routines[i].name, routines[i].desc);
		}
		return 1;
	}

223 224
	if (bench_format == BENCH_FORMAT_DEFAULT)
		printf("# Copying %s Bytes ...\n\n", length_str);
225

226 227
	if (!only_prefault && !no_prefault) {
		/* show both of results */
228 229 230 231 232
		if (use_cycle) {
			result_cycle[0] =
				do_memcpy_cycle(routines[i].fn, len, false);
			result_cycle[1] =
				do_memcpy_cycle(routines[i].fn, len, true);
233 234 235 236 237 238 239 240
		} else {
			result_bps[0] =
				do_memcpy_gettimeofday(routines[i].fn,
						len, false);
			result_bps[1] =
				do_memcpy_gettimeofday(routines[i].fn,
						len, true);
		}
241
	} else {
242 243 244
		if (use_cycle) {
			result_cycle[pf] =
				do_memcpy_cycle(routines[i].fn,
245 246 247 248 249 250
						len, only_prefault);
		} else {
			result_bps[pf] =
				do_memcpy_gettimeofday(routines[i].fn,
						len, only_prefault);
		}
251 252 253 254
	}

	switch (bench_format) {
	case BENCH_FORMAT_DEFAULT:
255
		if (!only_prefault && !no_prefault) {
256 257 258
			if (use_cycle) {
				printf(" %14lf Cycle/Byte\n",
					(double)result_cycle[0]
259
					/ (double)len);
260 261
				printf(" %14lf Cycle/Byte (with prefault)\n",
					(double)result_cycle[1]
262 263 264 265 266 267
					/ (double)len);
			} else {
				print_bps(result_bps[0]);
				printf("\n");
				print_bps(result_bps[1]);
				printf(" (with prefault)\n");
268
			}
269
		} else {
270 271 272
			if (use_cycle) {
				printf(" %14lf Cycle/Byte",
					(double)result_cycle[pf]
273 274 275 276 277
					/ (double)len);
			} else
				print_bps(result_bps[pf]);

			printf("%s\n", only_prefault ? " (with prefault)" : "");
278 279 280
		}
		break;
	case BENCH_FORMAT_SIMPLE:
281
		if (!only_prefault && !no_prefault) {
282
			if (use_cycle) {
283
				printf("%lf %lf\n",
284 285
					(double)result_cycle[0] / (double)len,
					(double)result_cycle[1] / (double)len);
286 287 288 289 290
			} else {
				printf("%lf %lf\n",
					result_bps[0], result_bps[1]);
			}
		} else {
291 292
			if (use_cycle) {
				printf("%lf\n", (double)result_cycle[pf]
293 294 295 296
					/ (double)len);
			} else
				printf("%lf\n", result_bps[pf]);
		}
297 298
		break;
	default:
299 300
		/* reaching this means there's some disaster: */
		die("unknown format: %d\n", bench_format);
301 302 303 304 305
		break;
	}

	return 0;
}