aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <[email protected]>2012-04-19 15:07:46 -0300
committerArnaldo Carvalho de Melo <[email protected]>2012-04-19 17:08:24 -0300
commit8bf39cb81bdad01ad0d830e8c3639b9e8f552d57 (patch)
tree8da1afa5baa7ec6f87e7b593a4ffc09a918e48e3
parent61e04b332e9417720c331eb39c96a4ccb1aa0460 (diff)
perf annotate browser: Make lines more compact
But now we have a lot of space on the right... Perhaps we should add a "Trending on G+" gizmo... ;-) Requested-by: Linus Torvalds <[email protected]> Cc: David Ahern <[email protected]> Cc: Frederic Weisbecker <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Stephane Eranian <[email protected]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r--tools/perf/ui/browsers/annotate.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c
index c5ab21c50a74..34b86ea3e54d 100644
--- a/tools/perf/ui/browsers/annotate.c
+++ b/tools/perf/ui/browsers/annotate.c
@@ -82,11 +82,11 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
ui_browser__set_color(self, HE_COLORSET_CODE);
if (!*dl->line)
- slsmg_write_nstring(" ", width - 18);
+ slsmg_write_nstring(" ", width - 10);
else if (dl->offset == -1)
- slsmg_write_nstring(dl->line, width - 18);
+ slsmg_write_nstring(dl->line, width - 10);
else {
- char bf[256], *line = dl->line;
+ char bf[256];
u64 addr = dl->offset;
int printed, color = -1;
@@ -114,12 +114,12 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
dl->ins->ops->scnprintf(dl->ins, bf, sizeof(bf),
!ab->use_offset ? dl->operands : NULL,
dl->target);
- line = bf;
- slsmg_write_nstring(" ", 7);
- printed += 7;
- }
+ slsmg_write_nstring(" ", 2);
+ printed += 2;
+ } else
+ scnprintf(bf, sizeof(bf), " %-6.6s %s", dl->name, dl->operands);
- slsmg_write_nstring(line, width - 18 - printed);
+ slsmg_write_nstring(bf, width - 10 - printed);
}
if (current_entry)
@@ -653,6 +653,7 @@ int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx,
.priv = &ms,
.use_navkeypressed = true,
},
+ .use_offset = true,
};
int ret = -1;