blob: 747ff50284b7c84419cc431996d820485bb069e9 [file] [log] [blame]
Ingo Molnar0bec2532009-05-26 09:17:18 +02001perf-report(1)
Ingo Molnarc1c23652009-05-30 12:38:51 +02002==============
Ingo Molnar0bec2532009-05-26 09:17:18 +02003
4NAME
5----
Ingo Molnar23ac9cb2009-05-27 09:33:18 +02006perf-report - Read perf.data (created by perf record) and display the profile
Ingo Molnar0bec2532009-05-26 09:17:18 +02007
8SYNOPSIS
9--------
10[verse]
11'perf report' [-i <file> | --input=file]
12
13DESCRIPTION
14-----------
15This command displays the performance counter profile information recorded
Ingo Molnarb0a28582009-06-23 16:39:53 +020016via perf record.
Ingo Molnar0bec2532009-05-26 09:17:18 +020017
18OPTIONS
19-------
20-i::
21--input=::
Robert Richterefad1412011-12-07 10:02:54 +010022 Input file name. (default: perf.data unless stdin is a fifo)
Shawn Bohrere04fffc2010-11-30 19:57:17 -060023
24-v::
25--verbose::
26 Be more verbose. (show symbol address, etc)
27
Arnaldo Carvalho de Melo25903402009-06-30 19:01:20 -030028-d::
29--dsos=::
30 Only consider symbols in these dsos. CSV that understands
31 file://filename entries.
Zeev Tarantovca2b9002009-11-09 13:26:13 +020032-n::
33--show-nr-samples::
Arnaldo Carvalho de Meloe3d7e182009-07-11 12:18:37 -030034 Show the number of samples for each symbol
Shawn Bohrere04fffc2010-11-30 19:57:17 -060035
36--showcpuutilization::
37 Show sample percentage for different cpu modes.
38
Zeev Tarantovca2b9002009-11-09 13:26:13 +020039-T::
40--threads::
Brice Goglin8d513272009-08-07 13:55:24 +020041 Show per-thread event counters
David Ahernc8e66722011-11-13 11:30:08 -070042-c::
Arnaldo Carvalho de Melocc8b88b2009-06-30 19:01:21 -030043--comms=::
44 Only consider symbols in these comms. CSV that understands
45 file://filename entries.
Arnaldo Carvalho de Melo7bec7a92009-06-30 19:01:22 -030046-S::
47--symbols=::
48 Only consider these symbols. CSV that understands
49 file://filename entries.
Ingo Molnar0bec2532009-05-26 09:17:18 +020050
Namhyung Kimfde0eea2012-03-19 11:53:48 +090051--symbol-filter=::
52 Only show symbols that match (partially) with this filter.
53
Shawn Bohrere04fffc2010-11-30 19:57:17 -060054-U::
55--hide-unresolved::
56 Only display entries resolved to a symbol.
57
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -020058-s::
59--sort=::
Namhyung Kim98113602012-12-27 18:11:47 +090060 Sort histogram entries by given key(s) - multiple keys can be specified
61 in CSV format. Following sort keys are available:
Andi Kleen05484292013-01-24 16:10:29 +010062 pid, comm, dso, symbol, parent, cpu, srcline, weight, local_weight.
Namhyung Kim98113602012-12-27 18:11:47 +090063
64 Each key has following meaning:
65
66 - comm: command (name) of the task which can be read via /proc/<pid>/comm
67 - pid: command and tid of the task
68 - dso: name of library or module executed at the time of sample
69 - symbol: name of function executed at the time of sample
70 - parent: name of function matched to the parent regex filter. Unmatched
71 entries are displayed as "[other]".
72 - cpu: cpu number the task ran at the time of sample
73 - srcline: filename and line number executed at the time of sample. The
74 DWARF debuggin info must be provided.
75
76 By default, comm, dso and symbol keys are used.
77 (i.e. --sort comm,dso,symbol)
78
79 If --branch-stack option is used, following sort keys are also
80 available:
81 dso_from, dso_to, symbol_from, symbol_to, mispredict.
82
83 - dso_from: name of library or module branched from
84 - dso_to: name of library or module branched to
85 - symbol_from: name of function branched from
86 - symbol_to: name of function branched to
87 - mispredict: "N" for predicted branch, "Y" for mispredicted branch
88
89 And default sort keys are changed to comm, dso_from, symbol_from, dso_to
90 and symbol_to, see '--branch-stack'.
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -020091
Shawn Bohrere04fffc2010-11-30 19:57:17 -060092-p::
93--parent=<regex>::
Namhyung Kim98113602012-12-27 18:11:47 +090094 A regex filter to identify parent. The parent is a caller of this
95 function and searched through the callchain, thus it requires callchain
96 information recorded. The pattern is in the exteneded regex format and
97 defaults to "\^sys_|^do_page_fault", see '--sort parent'.
Shawn Bohrere04fffc2010-11-30 19:57:17 -060098
99-x::
100--exclude-other::
101 Only display entries with parent-match.
102
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300103-w::
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600104--column-widths=<width[,width...]>::
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300105 Force each column width to the provided list, for large terminal
106 readability.
107
108-t::
109--field-separator=::
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300110 Use a special separator character and don't pad with spaces, replacing
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600111 all occurrences of this separator in symbol names (and other output)
Arnaldo Carvalho de Melo52d422d2009-07-10 22:47:28 -0300112 with a '.' character, that thus it's the only non valid separator.
113
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600114-D::
115--dump-raw-trace::
116 Dump raw trace in ASCII.
117
Namhyung Kim6581f6e2011-12-13 00:16:50 +0900118-g [type,min[,limit],order]::
Frederic Weisbeckerec7ba4e2009-08-31 03:32:03 +0200119--call-graph::
Namhyung Kim6581f6e2011-12-13 00:16:50 +0900120 Display call chains using type, min percent threshold, optional print
121 limit and order.
Frederic Weisbeckerec7ba4e2009-08-31 03:32:03 +0200122 type can be either:
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600123 - flat: single column, linear exposure of call chains.
Frederic Weisbeckerec7ba4e2009-08-31 03:32:03 +0200124 - graph: use a graph tree, displaying absolute overhead rates.
125 - fractal: like graph, but displays relative rates. Each branch of
126 the tree is considered as a new profiled object. +
Sam Liaod797fdc2011-06-07 23:49:46 +0800127
128 order can be either:
129 - callee: callee based call graph.
130 - caller: inverted caller based call graph.
131
132 Default: fractal,0.5,callee.
133
134-G::
135--inverted::
136 alias for inverted caller based call graph.
Frederic Weisbeckerec7ba4e2009-08-31 03:32:03 +0200137
Greg Priceb21484f2012-12-06 21:48:05 -0800138--ignore-callees=<regex>::
139 Ignore callees of the function(s) matching the given regex.
140 This has the effect of collecting the callers of each such
141 function into one place in the call-graph tree.
142
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600143--pretty=<key>::
144 Pretty printing style. key: normal, raw
145
Arnaldo Carvalho de Melo8b9e74e2010-08-21 10:38:16 -0300146--stdio:: Use the stdio interface.
147
148--tui:: Use the TUI interface, that is integrated with annotate and allows
149 zooming into DSOs or threads, among other features. Use of --tui
150 requires a tty, if one is not present, as when piping to other
151 commands, the stdio interface is used.
152
Pekka Enbergc31a9452012-03-19 15:13:29 -0300153--gtk:: Use the GTK2 interface.
154
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600155-k::
156--vmlinux=<file>::
157 vmlinux pathname
158
David Ahernb226a5a72010-12-07 19:39:46 -0700159--kallsyms=<file>::
160 kallsyms pathname
161
Shawn Bohrere04fffc2010-11-30 19:57:17 -0600162-m::
163--modules::
164 Load module symbols. WARNING: This should only be used with -k and
165 a LIVE kernel.
166
167-f::
168--force::
169 Don't complain, do it.
170
David Ahernec5761e2010-12-09 13:27:07 -0700171--symfs=<directory>::
172 Look for files with symbols relative to this directory.
173
David Ahernc8e66722011-11-13 11:30:08 -0700174-C::
Anton Blanchard5d67be92011-07-04 21:57:50 +1000175--cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
176 be provided as a comma-separated list with no space: 0,1. Ranges of
177 CPUs are specified with -: 0-2. Default is to report samples on all
178 CPUs.
179
Andi Kleenf69b64f2011-09-15 14:31:41 -0700180-M::
181--disassembler-style=:: Set disassembler style for objdump.
182
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300183--source::
184 Interleave source code with assembly code. Enabled by default,
185 disable with --no-source.
186
187--asm-raw::
188 Show raw instruction encoding of assembly instructions.
189
Arnaldo Carvalho de Melo3f2728b2011-10-05 16:10:06 -0300190--show-total-period:: Show a column with the sum of periods.
191
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200192-I::
193--show-info::
194 Display extended information about the perf.data file. This adds
195 information which may be very large and thus may clutter the display.
196 It currently includes: cpu and numa topology of the host system.
197
Roberto Agostino Vitillob50311d2012-02-09 23:21:03 +0100198-b::
199--branch-stack::
200 Use the addresses of sampled taken branches instead of the instruction
201 address to build the histograms. To generate meaningful output, the
Stephane Eranian993ac882012-03-08 23:47:47 +0100202 perf.data file must have been obtained using perf record -b or
203 perf record --branch-filter xxx where xxx is a branch filter option.
204 perf report is able to auto-detect whether a perf.data file contains
205 branch stacks and it will automatically switch to the branch view mode,
206 unless --no-branch-stack is used.
Roberto Agostino Vitillob50311d2012-02-09 23:21:03 +0100207
Maciek Borzecki7a4ec932012-09-04 12:32:30 +0200208--objdump=<path>::
209 Path to objdump binary.
210
Namhyung Kim01d14f12013-01-22 18:09:45 +0900211--group::
212 Show event group information together.
213
Namhyung Kim328ccda2013-03-25 18:18:18 +0900214--demangle::
215 Demangle symbol names to human readable form. It's enabled by default,
216 disable with --no-demangle.
217
Namhyung Kim064f1982013-05-14 11:09:04 +0900218--percent-limit::
219 Do not show entries which have an overhead under that percent.
220 (Default: 0).
221
Ingo Molnar0bec2532009-05-26 09:17:18 +0200222SEE ALSO
223--------
Arnaldo Carvalho de Melo64c6f0c2011-10-06 12:48:31 -0300224linkperf:perf-stat[1], linkperf:perf-annotate[1]