Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | // SPDX-License-Identifier: GPL-2.0 /* * mem-memcpy.c * * Simple memcpy() and memset() benchmarks * * Written by Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp> */ #include "debug.h" #include "../perf-sys.h" #include <subcmd/parse-options.h> #include "../util/header.h" #include "../util/cloexec.h" #include "../util/string2.h" #include "bench.h" #include "mem-memcpy-arch.h" #include "mem-memset-arch.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/time.h> #include <errno.h> #include <linux/time64.h> #include <linux/zalloc.h> #define K 1024 static const char *size_str = "1MB"; static const char *function_str = "all"; static int nr_loops = 1; static bool use_cycles; static int cycles_fd; static const struct option options[] = { OPT_STRING('s', "size", &size_str, "1MB", "Specify the size of the memory buffers. " "Available units: B, KB, MB, GB and TB (case insensitive)"), OPT_STRING('f', "function", &function_str, "all", "Specify the function to run, \"all\" runs all available functions, \"help\" lists them"), OPT_INTEGER('l', "nr_loops", &nr_loops, "Specify the number of loops to run. (default: 1)"), OPT_BOOLEAN('c', "cycles", &use_cycles, "Use a cycles event instead of gettimeofday() to measure performance"), OPT_END() }; typedef void *(*memcpy_t)(void *, const void *, size_t); typedef void *(*memset_t)(void *, int, size_t); struct function { const char *name; const char *desc; union { memcpy_t memcpy; memset_t memset; } fn; }; static struct perf_event_attr cycle_attr = { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES }; static int init_cycles(void) { cycles_fd = sys_perf_event_open(&cycle_attr, getpid(), -1, -1, perf_event_open_cloexec_flag()); if (cycles_fd < 0 && errno == ENOSYS) { pr_debug("No CONFIG_PERF_EVENTS=y kernel support configured?\n"); return -1; } return cycles_fd; } static u64 get_cycles(void) { int ret; u64 clk; ret = read(cycles_fd, &clk, sizeof(u64)); BUG_ON(ret != sizeof(u64)); return clk; } static double timeval2double(struct timeval *ts) { return (double)ts->tv_sec + (double)ts->tv_usec / (double)USEC_PER_SEC; } #define print_bps(x) do { \ if (x < K) \ printf(" %14lf bytes/sec\n", x); \ else if (x < K * K) \ printf(" %14lfd KB/sec\n", x / K); \ else if (x < K * K * K) \ printf(" %14lf MB/sec\n", x / K / K); \ else \ printf(" %14lf GB/sec\n", x / K / K / K); \ } while (0) struct bench_mem_info { const struct function *functions; u64 (*do_cycles)(const struct function *r, size_t size, void *src, void *dst); double (*do_gettimeofday)(const struct function *r, size_t size, void *src, void *dst); const char *const *usage; bool alloc_src; }; static void __bench_mem_function(struct bench_mem_info *info, int r_idx, size_t size, double size_total) { const struct function *r = &info->functions[r_idx]; double result_bps = 0.0; u64 result_cycles = 0; void *src = NULL, *dst = zalloc(size); printf("# function '%s' (%s)\n", r->name, r->desc); if (dst == NULL) goto out_alloc_failed; if (info->alloc_src) { src = zalloc(size); if (src == NULL) goto out_alloc_failed; } if (bench_format == BENCH_FORMAT_DEFAULT) printf("# Copying %s bytes ...\n\n", size_str); if (use_cycles) { result_cycles = info->do_cycles(r, size, src, dst); } else { result_bps = info->do_gettimeofday(r, size, src, dst); } switch (bench_format) { case BENCH_FORMAT_DEFAULT: if (use_cycles) { printf(" %14lf cycles/byte\n", (double)result_cycles/size_total); } else { print_bps(result_bps); } break; case BENCH_FORMAT_SIMPLE: if (use_cycles) { printf("%lf\n", (double)result_cycles/size_total); } else { printf("%lf\n", result_bps); } break; default: BUG_ON(1); break; } out_free: free(src); free(dst); return; out_alloc_failed: printf("# Memory allocation failed - maybe size (%s) is too large?\n", size_str); goto out_free; } static int bench_mem_common(int argc, const char **argv, struct bench_mem_info *info) { int i; size_t size; double size_total; argc = parse_options(argc, argv, options, info->usage, 0); if (use_cycles) { i = init_cycles(); if (i < 0) { fprintf(stderr, "Failed to open cycles counter\n"); return i; } } size = (size_t)perf_atoll((char *)size_str); size_total = (double)size * nr_loops; if ((s64)size <= 0) { fprintf(stderr, "Invalid size:%s\n", size_str); return 1; } if (!strncmp(function_str, "all", 3)) { for (i = 0; info->functions[i].name; i++) __bench_mem_function(info, i, size, size_total); return 0; } for (i = 0; info->functions[i].name; i++) { if (!strcmp(info->functions[i].name, function_str)) break; } if (!info->functions[i].name) { if (strcmp(function_str, "help") && strcmp(function_str, "h")) printf("Unknown function: %s\n", function_str); printf("Available functions:\n"); for (i = 0; info->functions[i].name; i++) { printf("\t%s ... %s\n", info->functions[i].name, info->functions[i].desc); } return 1; } __bench_mem_function(info, i, size, size_total); return 0; } static void memcpy_prefault(memcpy_t fn, size_t size, void *src, void *dst) { /* Make sure to always prefault zero pages even if MMAP_THRESH is crossed: */ memset(src, 0, size); /* * We prefault the freshly allocated memory range here, * to not measure page fault overhead: */ fn(dst, src, size); } static u64 do_memcpy_cycles(const struct function *r, size_t size, void *src, void *dst) { u64 cycle_start = 0ULL, cycle_end = 0ULL; memcpy_t fn = r->fn.memcpy; int i; memcpy_prefault(fn, size, src, dst); cycle_start = get_cycles(); for (i = 0; i < nr_loops; ++i) fn(dst, src, size); cycle_end = get_cycles(); return cycle_end - cycle_start; } static double do_memcpy_gettimeofday(const struct function *r, size_t size, void *src, void *dst) { struct timeval tv_start, tv_end, tv_diff; memcpy_t fn = r->fn.memcpy; int i; memcpy_prefault(fn, size, src, dst); BUG_ON(gettimeofday(&tv_start, NULL)); for (i = 0; i < nr_loops; ++i) fn(dst, src, size); BUG_ON(gettimeofday(&tv_end, NULL)); timersub(&tv_end, &tv_start, &tv_diff); return (double)(((double)size * nr_loops) / timeval2double(&tv_diff)); } struct function memcpy_functions[] = { { .name = "default", .desc = "Default memcpy() provided by glibc", .fn.memcpy = memcpy }, #ifdef HAVE_ARCH_X86_64_SUPPORT # define MEMCPY_FN(_fn, _name, _desc) {.name = _name, .desc = _desc, .fn.memcpy = _fn}, # include "mem-memcpy-x86-64-asm-def.h" # undef MEMCPY_FN #endif { .name = NULL, } }; static const char * const bench_mem_memcpy_usage[] = { "perf bench mem memcpy <options>", NULL }; int bench_mem_memcpy(int argc, const char **argv) { struct bench_mem_info info = { .functions = memcpy_functions, .do_cycles = do_memcpy_cycles, .do_gettimeofday = do_memcpy_gettimeofday, .usage = bench_mem_memcpy_usage, .alloc_src = true, }; return bench_mem_common(argc, argv, &info); } static u64 do_memset_cycles(const struct function *r, size_t size, void *src __maybe_unused, void *dst) { u64 cycle_start = 0ULL, cycle_end = 0ULL; memset_t fn = r->fn.memset; int i; /* * We prefault the freshly allocated memory range here, * to not measure page fault overhead: */ fn(dst, -1, size); cycle_start = get_cycles(); for (i = 0; i < nr_loops; ++i) fn(dst, i, size); cycle_end = get_cycles(); return cycle_end - cycle_start; } static double do_memset_gettimeofday(const struct function *r, size_t size, void *src __maybe_unused, void *dst) { struct timeval tv_start, tv_end, tv_diff; memset_t fn = r->fn.memset; int i; /* * We prefault the freshly allocated memory range here, * to not measure page fault overhead: */ fn(dst, -1, size); BUG_ON(gettimeofday(&tv_start, NULL)); for (i = 0; i < nr_loops; ++i) fn(dst, i, size); BUG_ON(gettimeofday(&tv_end, NULL)); timersub(&tv_end, &tv_start, &tv_diff); return (double)(((double)size * nr_loops) / timeval2double(&tv_diff)); } static const char * const bench_mem_memset_usage[] = { "perf bench mem memset <options>", NULL }; static const struct function memset_functions[] = { { .name = "default", .desc = "Default memset() provided by glibc", .fn.memset = memset }, #ifdef HAVE_ARCH_X86_64_SUPPORT # define MEMSET_FN(_fn, _name, _desc) { .name = _name, .desc = _desc, .fn.memset = _fn }, # include "mem-memset-x86-64-asm-def.h" # undef MEMSET_FN #endif { .name = NULL, } }; int bench_mem_memset(int argc, const char **argv) { struct bench_mem_info info = { .functions = memset_functions, .do_cycles = do_memset_cycles, .do_gettimeofday = do_memset_gettimeofday, .usage = bench_mem_memset_usage, }; return bench_mem_common(argc, argv, &info); } |