aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2014-07-22 09:17:15 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-07-23 10:14:40 -0400
commit8066be5fe755e95ee6a858bbcf4e6b9e933e1866 (patch)
tree4fe49568d13ba4f299102e55980c24121e09495d /tools/perf
parentdeaff8b659cf4d34181c087b8cdf74f1eb17b02b (diff)
perf script: Improve srcline display for BTS
Change the order of the output to put the srcline last. It puts the branch 'from address' and 'to address' on the same line, which is how it would be without the source line reference. So it makes it consistent and much easier to read. E.g. old format: 4028fc main+0x2c (/bin/ls) /build/buildd/coreutils-8.20/src/ls.c:1269 => 40d8a0 set_program_name+0x0 (/bin/ls) new format: 4028fc main+0x2c (/bin/ls) => 40d8a0 set_program_name+0x0 (/bin/ls) /build/buildd/coreutils-8.20/src/ls.c:1269 Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1406035081-14301-7-git-send-email-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/builtin-script.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
index 9e9c91f5b7fa..333b15ebe72b 100644
--- a/tools/perf/builtin-script.c
+++ b/tools/perf/builtin-script.c
@@ -427,15 +427,22 @@ static void print_sample_bts(union perf_event *event,
427 struct addr_location *al) 427 struct addr_location *al)
428{ 428{
429 struct perf_event_attr *attr = &evsel->attr; 429 struct perf_event_attr *attr = &evsel->attr;
430 bool print_srcline_last = false;
430 431
431 /* print branch_from information */ 432 /* print branch_from information */
432 if (PRINT_FIELD(IP)) { 433 if (PRINT_FIELD(IP)) {
433 if (!symbol_conf.use_callchain) 434 unsigned int print_opts = output[attr->type].print_ip_opts;
434 printf(" "); 435
435 else 436 if (symbol_conf.use_callchain && sample->callchain) {
436 printf("\n"); 437 printf("\n");
437 perf_evsel__print_ip(evsel, sample, al, 438 } else {
438 output[attr->type].print_ip_opts, 439 printf(" ");
440 if (print_opts & PRINT_IP_OPT_SRCLINE) {
441 print_srcline_last = true;
442 print_opts &= ~PRINT_IP_OPT_SRCLINE;
443 }
444 }
445 perf_evsel__print_ip(evsel, sample, al, print_opts,
439 PERF_MAX_STACK_DEPTH); 446 PERF_MAX_STACK_DEPTH);
440 } 447 }
441 448
@@ -447,6 +454,9 @@ static void print_sample_bts(union perf_event *event,
447 !output[attr->type].user_set)) 454 !output[attr->type].user_set))
448 print_sample_addr(event, sample, al->machine, thread, attr); 455 print_sample_addr(event, sample, al->machine, thread, attr);
449 456
457 if (print_srcline_last)
458 map__fprintf_srcline(al->map, al->addr, "\n ", stdout);
459
450 printf("\n"); 460 printf("\n");
451} 461}
452 462