aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/bench/mem-memset-arch.h
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2012-01-24 10:03:22 -0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-01-24 20:25:32 -0200
commitbe3de80dc2e671d9ee15e69fe9cd84d2b71e2225 (patch)
tree8c9519ac9c6235ad8469d3f8d7ef2da660840bc5 /tools/perf/bench/mem-memset-arch.h
parentperf bench: Also allow measuring alternative memcpy implementations (diff)
downloadwireguard-linux-be3de80dc2e671d9ee15e69fe9cd84d2b71e2225.tar.xz
wireguard-linux-be3de80dc2e671d9ee15e69fe9cd84d2b71e2225.zip
perf bench: Also allow measuring memset()
This simply clones the respective memcpy() implementation. Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/4F16D743020000780006D735@nat28.tlf.novell.com Signed-off-by: Jan Beulich <jbeulich@suse.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/bench/mem-memset-arch.h')
-rw-r--r--tools/perf/bench/mem-memset-arch.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/perf/bench/mem-memset-arch.h b/tools/perf/bench/mem-memset-arch.h
new file mode 100644
index 000000000000..a040fa77665b
--- /dev/null
+++ b/tools/perf/bench/mem-memset-arch.h
@@ -0,0 +1,12 @@
+
+#ifdef ARCH_X86_64
+
+#define MEMSET_FN(fn, name, desc) \
+ extern void *fn(void *, int, size_t);
+
+#include "mem-memset-x86-64-asm-def.h"
+
+#undef MEMSET_FN
+
+#endif
+