perf callchain: Save previous cursor nodes for LBR stitching approach
authorKan Liang <kan.liang@linux.intel.com>
Thu, 19 Mar 2020 20:25:11 +0000 (13:25 -0700)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sat, 18 Apr 2020 12:05:01 +0000 (09:05 -0300)
The cursor nodes which generates from sample are eventually added into
callchain. To avoid generating cursor nodes from previous samples again,
the previous cursor nodes are also saved for LBR stitching approach.

Some option, e.g. hide-unresolved, may hide some LBRs.  Add a variable
'valid' in struct callchain_cursor_node to indicate this case. The LBR
stitching approach will only append the valid cursor nodes from previous
samples later.

Signed-off-by: Kan Liang <kan.liang@linux.intel.com>
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Pavel Gerasimov <pavel.gerasimov@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Cc: Stephane Eranian <eranian@google.com>
Cc: Vitaly Slobodskoy <vitaly.slobodskoy@intel.com>
Link: http://lore.kernel.org/lkml/20200319202517.23423-12-kan.liang@linux.intel.com
[ Use zfree() instead of open coded equivalent, and use it when freeing members of structs ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/callchain.h
tools/perf/util/machine.c
tools/perf/util/thread.h

index 706bb7bbe1e189382d5a87baef82f93bd447e2fc..cb33cd42ff4329001f21d6096d3dc3b4d9e7bd88 100644 (file)
@@ -143,6 +143,9 @@ struct callchain_cursor_node {
        u64                             ip;
        struct map_symbol               ms;
        const char                      *srcline;
+       /* Indicate valid cursor node for LBR stitch */
+       bool                            valid;
+
        bool                            branch;
        struct branch_flags             branch_flags;
        u64                             branch_from;
index a54ca09a1d000018773d8ee2b3bc39befb7775e1..737dee723a57ad2915f4618383da233607ff3ba1 100644 (file)
@@ -2224,6 +2224,31 @@ static int lbr_callchain_add_kernel_ip(struct thread *thread,
        return 0;
 }
 
+static void save_lbr_cursor_node(struct thread *thread,
+                                struct callchain_cursor *cursor,
+                                int idx)
+{
+       struct lbr_stitch *lbr_stitch = thread->lbr_stitch;
+
+       if (!lbr_stitch)
+               return;
+
+       if (cursor->pos == cursor->nr) {
+               lbr_stitch->prev_lbr_cursor[idx].valid = false;
+               return;
+       }
+
+       if (!cursor->curr)
+               cursor->curr = cursor->first;
+       else
+               cursor->curr = cursor->curr->next;
+       memcpy(&lbr_stitch->prev_lbr_cursor[idx], cursor->curr,
+              sizeof(struct callchain_cursor_node));
+
+       lbr_stitch->prev_lbr_cursor[idx].valid = true;
+       cursor->pos++;
+}
+
 static int lbr_callchain_add_lbr_ip(struct thread *thread,
                                    struct callchain_cursor *cursor,
                                    struct perf_sample *sample,
@@ -2240,6 +2265,21 @@ static int lbr_callchain_add_lbr_ip(struct thread *thread,
        int err, i;
        u64 ip;
 
+       /*
+        * The curr and pos are not used in writing session. They are cleared
+        * in callchain_cursor_commit() when the writing session is closed.
+        * Using curr and pos to track the current cursor node.
+        */
+       if (thread->lbr_stitch) {
+               cursor->curr = NULL;
+               cursor->pos = cursor->nr;
+               if (cursor->nr) {
+                       cursor->curr = cursor->first;
+                       for (i = 0; i < (int)(cursor->nr - 1); i++)
+                               cursor->curr = cursor->curr->next;
+               }
+       }
+
        if (callee) {
                /* Add LBR ip from first entries.to */
                ip = entries[0].to;
@@ -2252,6 +2292,20 @@ static int lbr_callchain_add_lbr_ip(struct thread *thread,
                if (err)
                        return err;
 
+               /*
+                * The number of cursor node increases.
+                * Move the current cursor node.
+                * But does not need to save current cursor node for entry 0.
+                * It's impossible to stitch the whole LBRs of previous sample.
+                */
+               if (thread->lbr_stitch && (cursor->pos != cursor->nr)) {
+                       if (!cursor->curr)
+                               cursor->curr = cursor->first;
+                       else
+                               cursor->curr = cursor->curr->next;
+                       cursor->pos++;
+               }
+
                /* Add LBR ip from entries.from one by one. */
                for (i = 0; i < lbr_nr; i++) {
                        ip = entries[i].from;
@@ -2262,6 +2316,7 @@ static int lbr_callchain_add_lbr_ip(struct thread *thread,
                                               *branch_from);
                        if (err)
                                return err;
+                       save_lbr_cursor_node(thread, cursor, i);
                }
                return 0;
        }
@@ -2276,6 +2331,7 @@ static int lbr_callchain_add_lbr_ip(struct thread *thread,
                                       *branch_from);
                if (err)
                        return err;
+               save_lbr_cursor_node(thread, cursor, i);
        }
 
        /* Add LBR ip from first entries.to */
@@ -2292,7 +2348,7 @@ static int lbr_callchain_add_lbr_ip(struct thread *thread,
        return 0;
 }
 
-static bool alloc_lbr_stitch(struct thread *thread)
+static bool alloc_lbr_stitch(struct thread *thread, unsigned int max_lbr)
 {
        if (thread->lbr_stitch)
                return true;
@@ -2301,6 +2357,14 @@ static bool alloc_lbr_stitch(struct thread *thread)
        if (!thread->lbr_stitch)
                goto err;
 
+       thread->lbr_stitch->prev_lbr_cursor = calloc(max_lbr + 1, sizeof(struct callchain_cursor_node));
+       if (!thread->lbr_stitch->prev_lbr_cursor)
+               goto free_lbr_stitch;
+
+       return true;
+
+free_lbr_stitch:
+       zfree(&thread->lbr_stitch);
 err:
        pr_warning("Failed to allocate space for stitched LBRs. Disable LBR stitch\n");
        thread->lbr_stitch_enable = false;
@@ -2319,7 +2383,8 @@ static int resolve_lbr_callchain_sample(struct thread *thread,
                                        struct perf_sample *sample,
                                        struct symbol **parent,
                                        struct addr_location *root_al,
-                                       int max_stack)
+                                       int max_stack,
+                                       unsigned int max_lbr)
 {
        struct ip_callchain *chain = sample->callchain;
        int chain_nr = min(max_stack, (int)chain->nr), i;
@@ -2337,7 +2402,7 @@ static int resolve_lbr_callchain_sample(struct thread *thread,
                return 0;
 
        if (thread->lbr_stitch_enable && !sample->no_hw_idx &&
-           alloc_lbr_stitch(thread)) {
+           (max_lbr > 0) && alloc_lbr_stitch(thread, max_lbr)) {
                lbr_stitch = thread->lbr_stitch;
 
                memcpy(&lbr_stitch->prev_sample, sample, sizeof(*sample));
@@ -2417,8 +2482,11 @@ static int thread__resolve_callchain_sample(struct thread *thread,
                chain_nr = chain->nr;
 
        if (perf_evsel__has_branch_callstack(evsel)) {
+               struct perf_env *env = perf_evsel__env(evsel);
+
                err = resolve_lbr_callchain_sample(thread, cursor, sample, parent,
-                                                  root_al, max_stack);
+                                                  root_al, max_stack,
+                                                  !env ? 0 : env->max_branches);
                if (err)
                        return (err < 0) ? err : 0;
        }
index 34eb61cee6a46d8289296ed97757aef3befcab0b..8456174a52c579ebc4cd68660cdb02ea74e38991 100644 (file)
@@ -15,6 +15,7 @@
 #include <intlist.h>
 #include "rwsem.h"
 #include "event.h"
+#include "callchain.h"
 
 struct addr_location;
 struct map;
@@ -24,6 +25,7 @@ struct unwind_libunwind_ops;
 
 struct lbr_stitch {
        struct perf_sample              prev_sample;
+       struct callchain_cursor_node    *prev_lbr_cursor;
 };
 
 struct thread {
@@ -154,6 +156,12 @@ static inline bool thread__is_filtered(struct thread *thread)
 
 static inline void thread__free_stitch_list(struct thread *thread)
 {
+       struct lbr_stitch *lbr_stitch = thread->lbr_stitch;
+
+       if (!lbr_stitch)
+               return;
+
+       zfree(&lbr_stitch->prev_lbr_cursor);
        zfree(&thread->lbr_stitch);
 }