* [PATCH/RFC 4/4] perf annotate: Support a 'o' key showing addresses on the new source code view
@ 2017-06-28 3:14 Taeung Song
0 siblings, 0 replies; only message in thread
From: Taeung Song @ 2017-06-28 3:14 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo; +Cc: linux-kernel, Namhyung Kim, Jiri Olsa
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-06-28 3:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-28 3:14 [PATCH/RFC 4/4] perf annotate: Support a 'o' key showing addresses on the new source code view Taeung Song
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®