The existed architectures which have supported perf memory profiling,
usually it contains two types of hardware events: load and store, so if
want to profile memory for both load and store operations, the tool will
use these two events at the same time.  But this is not valid for aux
tracing event, the same event can be used with setting different
configurations for memory operation filtering, e.g the event can be used
to only trace memory load, or only memory store, or trace for both memory
load and store.

This patch introduces a new event PERF_MEM_EVENTS__LOAD_STORE, which is
used to support the event which can record both memory load and store
operations.

Signed-off-by: Leo Yan <leo....@linaro.org>
---
 tools/perf/builtin-mem.c     | 11 +++++++++--
 tools/perf/util/mem-events.h |  1 +
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/tools/perf/builtin-mem.c b/tools/perf/builtin-mem.c
index 9a7df8d01296..bd4229ca3685 100644
--- a/tools/perf/builtin-mem.c
+++ b/tools/perf/builtin-mem.c
@@ -19,8 +19,9 @@
 #include "util/symbol.h"
 #include <linux/err.h>
 
-#define MEM_OPERATION_LOAD     0x1
-#define MEM_OPERATION_STORE    0x2
+#define MEM_OPERATION_LOAD             0x1
+#define MEM_OPERATION_STORE            0x2
+#define MEM_OPERATION_LOAD_STORE       0x4
 
 struct perf_mem {
        struct perf_tool        tool;
@@ -97,6 +98,11 @@ static int __cmd_record(int argc, const char **argv, struct 
perf_mem *mem)
                e->record = true;
        }
 
+       if (mem->operation & MEM_OPERATION_LOAD_STORE) {
+               e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD_STORE);
+               e->record = true;
+       }
+
        e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
        if (e->record)
                rec_argv[i++] = "-W";
@@ -326,6 +332,7 @@ struct mem_mode {
 static const struct mem_mode mem_modes[]={
        MEM_OPT("load", MEM_OPERATION_LOAD),
        MEM_OPT("store", MEM_OPERATION_STORE),
+       MEM_OPT("ldst", MEM_OPERATION_LOAD_STORE),
        MEM_END
 };
 
diff --git a/tools/perf/util/mem-events.h b/tools/perf/util/mem-events.h
index 726a9c8103e4..5ef178278909 100644
--- a/tools/perf/util/mem-events.h
+++ b/tools/perf/util/mem-events.h
@@ -28,6 +28,7 @@ struct mem_info {
 enum {
        PERF_MEM_EVENTS__LOAD,
        PERF_MEM_EVENTS__STORE,
+       PERF_MEM_EVENTS__LOAD_STORE,
        PERF_MEM_EVENTS__MAX,
 };
 
-- 
2.17.1

Reply via email to