]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf c2c report: Add loads related dimension keys
authorJiri Olsa <jolsa@kernel.org>
Wed, 4 May 2016 08:18:24 +0000 (10:18 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 19 Oct 2016 16:18:31 +0000 (13:18 -0300)
Add 3 loads related dimension key wrappers.

They are to be displayed in the main cachelines overall output:

  ld_fbhit, ld_l1hit, ld_l2hit

They all display bare numbers of loads for
FB (Fill Buffer), L1 and L2 cache.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Joe Mario <jmario@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/n/tip-wxrzhy74zl8fvkvgjae3w1ju@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-c2c.c

index bfa0be398d5df835bcc45a727d7172915698b02a..2b9d24fdcaeeb32d58c2a7e04fc14bf563b10507 100644 (file)
@@ -415,6 +415,9 @@ STAT_FN(lcl_hitm)
 STAT_FN(store)
 STAT_FN(st_l1hit)
 STAT_FN(st_l1miss)
+STAT_FN(ld_fbhit)
+STAT_FN(ld_l1hit)
+STAT_FN(ld_l2hit)
 
 #define HEADER_LOW(__h)                        \
        {                               \
@@ -555,6 +558,30 @@ static struct c2c_dimension dim_cl_stores_l1miss = {
        .width          = 7,
 };
 
+static struct c2c_dimension dim_ld_fbhit = {
+       .header         = HEADER_SPAN("----- Core Load Hit -----", "FB", 2),
+       .name           = "ld_fbhit",
+       .cmp            = ld_fbhit_cmp,
+       .entry          = ld_fbhit_entry,
+       .width          = 7,
+};
+
+static struct c2c_dimension dim_ld_l1hit = {
+       .header         = HEADER_SPAN_LOW("L1"),
+       .name           = "ld_l1hit",
+       .cmp            = ld_l1hit_cmp,
+       .entry          = ld_l1hit_entry,
+       .width          = 7,
+};
+
+static struct c2c_dimension dim_ld_l2hit = {
+       .header         = HEADER_SPAN_LOW("L2"),
+       .name           = "ld_l2hit",
+       .cmp            = ld_l2hit_cmp,
+       .entry          = ld_l2hit_entry,
+       .width          = 7,
+};
+
 static struct c2c_dimension *dimensions[] = {
        &dim_dcacheline,
        &dim_offset,
@@ -569,6 +596,9 @@ static struct c2c_dimension *dimensions[] = {
        &dim_stores_l1miss,
        &dim_cl_stores_l1hit,
        &dim_cl_stores_l1miss,
+       &dim_ld_fbhit,
+       &dim_ld_l1hit,
+       &dim_ld_l2hit,
        NULL,
 };