diff options
author | Borislav Petkov <bp@suse.de> | 2015-02-26 13:02:43 -0500 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2015-03-03 12:01:58 -0500 |
commit | dfecb95cdfeaf7872d83a96bec3a606e9cd95c8d (patch) | |
tree | 448ac8db071760e84005e5022d14e0482b9f0fb1 /tools | |
parent | 515e23f0193f42dab3b3e89f2c54da16b8bc3481 (diff) |
perf/bench: Add -r all so that you can run all mem* routines
perf bench mem mem{set,cpy} -r all thus runs all available mem
benchmarking routines.
Reviewed-by: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
Signed-off-by: Borislav Petkov <bp@suse.de>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/bench/mem-memcpy.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/perf/bench/mem-memcpy.c b/tools/perf/bench/mem-memcpy.c index 50991c459ee1..eca3d0e49582 100644 --- a/tools/perf/bench/mem-memcpy.c +++ b/tools/perf/bench/mem-memcpy.c | |||
@@ -36,7 +36,7 @@ static const struct option options[] = { | |||
36 | "Specify length of memory to copy. " | 36 | "Specify length of memory to copy. " |
37 | "Available units: B, KB, MB, GB and TB (upper and lower)"), | 37 | "Available units: B, KB, MB, GB and TB (upper and lower)"), |
38 | OPT_STRING('r', "routine", &routine, "default", | 38 | OPT_STRING('r', "routine", &routine, "default", |
39 | "Specify routine to copy"), | 39 | "Specify routine to copy, \"all\" runs all available routines"), |
40 | OPT_INTEGER('i', "iterations", &iterations, | 40 | OPT_INTEGER('i', "iterations", &iterations, |
41 | "repeat memcpy() invocation this number of times"), | 41 | "repeat memcpy() invocation this number of times"), |
42 | OPT_BOOLEAN('c', "cycle", &use_cycle, | 42 | OPT_BOOLEAN('c', "cycle", &use_cycle, |
@@ -144,6 +144,8 @@ static void __bench_mem_routine(struct bench_mem_info *info, int r_idx, size_t l | |||
144 | result_cycle[0] = result_cycle[1] = 0ULL; | 144 | result_cycle[0] = result_cycle[1] = 0ULL; |
145 | result_bps[0] = result_bps[1] = 0.0; | 145 | result_bps[0] = result_bps[1] = 0.0; |
146 | 146 | ||
147 | printf("Routine %s (%s)\n", r->name, r->desc); | ||
148 | |||
147 | if (bench_format == BENCH_FORMAT_DEFAULT) | 149 | if (bench_format == BENCH_FORMAT_DEFAULT) |
148 | printf("# Copying %s Bytes ...\n\n", length_str); | 150 | printf("# Copying %s Bytes ...\n\n", length_str); |
149 | 151 | ||
@@ -246,6 +248,12 @@ static int bench_mem_common(int argc, const char **argv, | |||
246 | if (only_prefault && no_prefault) | 248 | if (only_prefault && no_prefault) |
247 | only_prefault = no_prefault = false; | 249 | only_prefault = no_prefault = false; |
248 | 250 | ||
251 | if (!strncmp(routine, "all", 3)) { | ||
252 | for (i = 0; info->routines[i].name; i++) | ||
253 | __bench_mem_routine(info, i, len, totallen); | ||
254 | return 0; | ||
255 | } | ||
256 | |||
249 | for (i = 0; info->routines[i].name; i++) { | 257 | for (i = 0; info->routines[i].name; i++) { |
250 | if (!strcmp(info->routines[i].name, routine)) | 258 | if (!strcmp(info->routines[i].name, routine)) |
251 | break; | 259 | break; |