lkml.org 
[lkml]   [2017]   [Jun]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH/RFC 4/4] perf annotate: Support a 'o' key showing addresses on the new source code view
Date
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
---
tools/perf/ui/browsers/annotate.c | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c
index 200ee0c..bb5a933 100644
--- a/tools/perf/ui/browsers/annotate.c
+++ b/tools/perf/ui/browsers/annotate.c
@@ -402,7 +402,17 @@ static int annotate_code_browser__show_matched_dl(struct ui_browser *browser,
} else
ui_browser__set_color(browser, HE_COLORSET_NORMAL);

- ui_browser__printf(browser, " %*s - ", ab->addr_width + 4, " ");
+ if (!annotate_browser__opts.use_offset) {
+ u64 addr = dl->offset + ab->start;
+
+ ui_browser__printf(browser, " - ");
+
+ if (!current_entry)
+ ui_browser__set_color(browser, HE_COLORSET_ADDR);
+ ui_browser__printf(browser, "%" PRIx64 ": ", addr);
+ } else
+ ui_browser__printf(browser, " %*s - ",
+ ab->addr_width + 4, " ");

disasm_line__scnprintf(dl, line, sizeof(line),
!annotate_browser__opts.use_offset);
@@ -938,6 +948,7 @@ static int annotate_code_browser__run(struct annotate_browser *browser,
"PGDN/SPACE Navigate\n"
"q/ESC/CTRL+C Return to dissembly view\n\n"
"ENTER Toggle showing partial disassembly lines\n"
+ "o Toggle showing addresses for disassembly lines\n"
"t Toggle total period view\n");
continue;
case K_ENTER:
@@ -953,6 +964,10 @@ static int annotate_code_browser__run(struct annotate_browser *browser,
annotate_code_browser__update_nr_entries(browser);
}
continue;
+ case 'o':
+ annotate_browser__opts.use_offset =
+ !annotate_browser__opts.use_offset;
+ continue;
case 't':
annotate_browser__opts.show_total_period =
!annotate_browser__opts.show_total_period;
--
2.7.4
\
 
 \ /
  Last update: 2017-06-28 05:15    [W:0.059 / U:0.468 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site