perf annotate browser: Add visual cue for retq instruction
authorArnaldo Carvalho de Melo <[email protected]>
Fri, 20 Apr 2012 18:51:40 +0000 (15:51 -0300)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 20 Apr 2012 18:51:40 +0000 (15:51 -0300)
Just use a left arrow prefixing retqs.

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]>
tools/perf/ui/browsers/annotate.c

index 63206ca4336bc01ff6a340f67f7679e7ca3e3d59..d0c606ecda05af49d290dd2a81429ef4a86297b5 100644 (file)
@@ -127,11 +127,20 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
 
                        dl->ins->ops->scnprintf(dl->ins, bf, sizeof(bf), &dl->ops,
                                                !ab->use_offset);
-                       printed += 2;
-               } else
-                       scnprintf(bf, sizeof(bf), "  %-6.6s %s", dl->name, dl->ops.raw);
+               } else {
+                       if (strcmp(dl->name, "retq")) {
+                               slsmg_write_nstring(" ", 2);
+                       } else {
+                               SLsmg_set_char_set(1);
+                               SLsmg_write_char(SLSMG_LARROW_CHAR);
+                               SLsmg_set_char_set(0);
+                               SLsmg_write_char(' ');
+                       }
+
+                       scnprintf(bf, sizeof(bf), "%-6.6s %s", dl->name, dl->ops.raw);
+               }
 
-               slsmg_write_nstring(bf, width - 10 - printed);
+               slsmg_write_nstring(bf, width - 12 - printed);
        }
 
        if (current_entry)