Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1503488
| From | Jin Yao <yao.jin@linux.intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/6] perf report: Create a symbol_conf flag for showing branch flag counting |
| Date | 2016-10-19 03:30 +0200 |
| Message-ID | <stNRE-220-21@gated-at.bofh.it> (permalink) |
| References | <stNRD-220-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Create a new flag show_branchflag_count in symbol_conf. The flag is used
to control if showing the branch information. The flag depends on if the
perf.data has branch data and if user chooses the "branch-history" option
in perf report command line.
Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
---
tools/perf/builtin-report.c | 3 +++
tools/perf/util/symbol.h | 1 +
2 files changed, 4 insertions(+)
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 6e88460..c406393 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -905,6 +905,9 @@ repeat:
if (itrace_synth_opts.last_branch)
has_br_stack = true;
+ if (has_br_stack && branch_call_mode)
+ symbol_conf.show_branchflag_count = true;
+
/*
* Branch mode is a tristate:
* -1 means default, so decide based on the file having branch data.
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h
index d964844..2d0a905 100644
--- a/tools/perf/util/symbol.h
+++ b/tools/perf/util/symbol.h
@@ -100,6 +100,7 @@ struct symbol_conf {
show_total_period,
use_callchain,
cumulate_callchain,
+ show_branchflag_count,
exclude_other,
show_cpu_utilization,
initialized,
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/6] Show branch flags/cycles in perf report --branch-history callgraph view Jin Yao <yao.jin@linux.intel.com> - 2016-10-19 03:30 +0200
[PATCH 3/6] perf report: Create a symbol_conf flag for showing branch flag counting Jin Yao <yao.jin@linux.intel.com> - 2016-10-19 03:30 +0200
Re: [PATCH 0/6] Show branch flags/cycles in perf report --branch-history callgraph view Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-10-19 16:30 +0200
Re: [PATCH 0/6] Show branch flags/cycles in perf report --branch-history callgraph view Jiri Olsa <jolsa@redhat.com> - 2016-10-19 17:00 +0200
Re: [PATCH 0/6] Show branch flags/cycles in perf report --branch-history callgraph view Jiri Olsa <jolsa@redhat.com> - 2016-10-19 18:10 +0200
Re: [PATCH 0/6] Show branch flags/cycles in perf report --branch-history callgraph view "Jin, Yao" <yao.jin@linux.intel.com> - 2016-10-19 18:30 +0200
csiph-web