perf annotate: Allow 's' on source code lines
authorRiccardo Mancini <rickyman7@gmail.com>
Thu, 24 Jun 2021 22:34:22 +0000 (00:34 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 1 Jul 2021 19:14:38 +0000 (16:14 -0300)
In perf annotate, when 's' is pressed on a line containing source code,
it shows the message "Only available for assembly lines".

This patch gets rid of the error, moving the cursr to the next available
asm line (or the closest previous one if no asm line is found moving
forwards), before hiding source code lines.

Changes in v2:
 - handle case of no asm line found in
   annotate_browser__find_next_asm_line by returning NULL and
   handling error in caller.

Signed-off-by: Riccardo Mancini <rickyman7@gmail.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Ian Rogers <irogers@google.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Martin Liška <mliska@suse.cz>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/20210624223423.189550-1-rickyman7@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/browsers/annotate.c

index ad0a70f..f5509a9 100644 (file)
@@ -343,6 +343,29 @@ static void annotate_browser__calc_percent(struct annotate_browser *browser,
        browser->curr_hot = rb_last(&browser->entries);
 }
 
+static struct annotation_line *annotate_browser__find_next_asm_line(
+                                       struct annotate_browser *browser,
+                                       struct annotation_line *al)
+{
+       struct annotation_line *it = al;
+
+       /* find next asm line */
+       list_for_each_entry_continue(it, browser->b.top, node) {
+               if (it->idx_asm >= 0)
+                       return it;
+       }
+
+       /* no asm line found forwards, try backwards */
+       it = al;
+       list_for_each_entry_continue_reverse(it, browser->b.top, node) {
+               if (it->idx_asm >= 0)
+                       return it;
+       }
+
+       /* There are no asm lines */
+       return NULL;
+}
+
 static bool annotate_browser__toggle_source(struct annotate_browser *browser)
 {
        struct annotation *notes = browser__annotation(&browser->b);
@@ -363,9 +386,12 @@ static bool annotate_browser__toggle_source(struct annotate_browser *browser)
                browser->b.index = al->idx;
        } else {
                if (al->idx_asm < 0) {
-                       ui_helpline__puts("Only available for assembly lines.");
-                       browser->b.seek(&browser->b, -offset, SEEK_CUR);
-                       return false;
+                       /* move cursor to next asm line */
+                       al = annotate_browser__find_next_asm_line(browser, al);
+                       if (!al) {
+                               browser->b.seek(&browser->b, -offset, SEEK_CUR);
+                               return false;
+                       }
                }
 
                if (al->idx_asm < offset)