perf script: Always allow fields 'addr' and 'cpu' for auxtrace
[deliverable/linux.git] / tools / perf / Documentation / perf-report.txt
CommitLineData
0bec253c 1perf-report(1)
c1c2365a 2==============
0bec253c
IM
3
4NAME
5----
23ac9cbe 6perf-report - Read perf.data (created by perf record) and display the profile
0bec253c
IM
7
8SYNOPSIS
9--------
10[verse]
11'perf report' [-i <file> | --input=file]
12
13DESCRIPTION
14-----------
15This command displays the performance counter profile information recorded
b0a28589 16via perf record.
0bec253c
IM
17
18OPTIONS
19-------
20-i::
21--input=::
efad1415 22 Input file name. (default: perf.data unless stdin is a fifo)
e04fffc3
SB
23
24-v::
25--verbose::
26 Be more verbose. (show symbol address, etc)
27
ca2b900f
ZT
28-n::
29--show-nr-samples::
e3d7e183 30 Show the number of samples for each symbol
e04fffc3
SB
31
32--showcpuutilization::
33 Show sample percentage for different cpu modes.
34
ca2b900f
ZT
35-T::
36--threads::
8d513270 37 Show per-thread event counters
c8e66720 38-c::
cc8b88b1
ACM
39--comms=::
40 Only consider symbols in these comms. CSV that understands
f2148330
NK
41 file://filename entries. This option will affect the percentage of
42 the overhead column. See --percentage for more info.
e03eaa40
DA
43--pid=::
44 Only show events for given process ID (comma separated list).
45
46--tid=::
47 Only show events for given thread ID (comma separated list).
f2148330
NK
48-d::
49--dsos=::
50 Only consider symbols in these dsos. CSV that understands
51 file://filename entries. This option will affect the percentage of
52 the overhead column. See --percentage for more info.
7bec7a91
ACM
53-S::
54--symbols=::
55 Only consider these symbols. CSV that understands
f2148330
NK
56 file://filename entries. This option will affect the percentage of
57 the overhead column. See --percentage for more info.
0bec253c 58
fde0eeab
NK
59--symbol-filter=::
60 Only show symbols that match (partially) with this filter.
61
e04fffc3
SB
62-U::
63--hide-unresolved::
64 Only display entries resolved to a symbol.
65
c351c281
ACM
66-s::
67--sort=::
9811360e
NK
68 Sort histogram entries by given key(s) - multiple keys can be specified
69 in CSV format. Following sort keys are available:
05484298 70 pid, comm, dso, symbol, parent, cpu, srcline, weight, local_weight.
9811360e
NK
71
72 Each key has following meaning:
73
74 - comm: command (name) of the task which can be read via /proc/<pid>/comm
75 - pid: command and tid of the task
76 - dso: name of library or module executed at the time of sample
77 - symbol: name of function executed at the time of sample
78 - parent: name of function matched to the parent regex filter. Unmatched
79 entries are displayed as "[other]".
80 - cpu: cpu number the task ran at the time of sample
81 - srcline: filename and line number executed at the time of sample. The
f5d05bce 82 DWARF debugging info must be provided.
475eeab9
AK
83 - weight: Event specific weight, e.g. memory latency or transaction
84 abort cost. This is the global weight.
85 - local_weight: Local weight version of the weight above.
86 - transaction: Transaction abort flags.
a2ce067e
NK
87 - overhead: Overhead percentage of sample
88 - overhead_sys: Overhead percentage of sample running in system mode
89 - overhead_us: Overhead percentage of sample running in user mode
90 - overhead_guest_sys: Overhead percentage of sample running in system mode
91 on guest machine
92 - overhead_guest_us: Overhead percentage of sample running in user mode on
93 guest machine
94 - sample: Number of sample
95 - period: Raw number of event count of sample
9811360e
NK
96
97 By default, comm, dso and symbol keys are used.
98 (i.e. --sort comm,dso,symbol)
99
100 If --branch-stack option is used, following sort keys are also
101 available:
102 dso_from, dso_to, symbol_from, symbol_to, mispredict.
103
104 - dso_from: name of library or module branched from
105 - dso_to: name of library or module branched to
106 - symbol_from: name of function branched from
107 - symbol_to: name of function branched to
108 - mispredict: "N" for predicted branch, "Y" for mispredicted branch
f5d05bce
AK
109 - in_tx: branch in TSX transaction
110 - abort: TSX transaction abort.
9811360e
NK
111
112 And default sort keys are changed to comm, dso_from, symbol_from, dso_to
113 and symbol_to, see '--branch-stack'.
c351c281 114
a7d945bc
NK
115-F::
116--fields=::
117 Specify output field - multiple keys can be specified in CSV format.
118 Following fields are available:
793aaaab 119 overhead, overhead_sys, overhead_us, overhead_children, sample and period.
a7d945bc
NK
120 Also it can contain any sort key(s).
121
122 By default, every sort keys not specified in -F will be appended
123 automatically.
124
75e906c9
DZ
125 If --mem-mode option is used, following sort keys are also available
126 (incompatible with --branch-stack):
9b32ba71 127 symbol_daddr, dso_daddr, locked, tlb, mem, snoop, dcacheline.
75e906c9
DZ
128
129 - symbol_daddr: name of data symbol being executed on at the time of sample
130 - dso_daddr: name of library or module containing the data being executed
131 on at the time of sample
132 - locked: whether the bus was locked at the time of sample
133 - tlb: type of tlb access for the data at the time of sample
134 - mem: type of memory access for the data at the time of sample
135 - snoop: type of snoop (if any) for the data at the time of sample
9b32ba71 136 - dcacheline: the cacheline the data address is on at the time of sample
75e906c9
DZ
137
138 And default sort keys are changed to local_weight, mem, sym, dso,
139 symbol_daddr, dso_daddr, snoop, tlb, locked, see '--mem-mode'.
140
e04fffc3
SB
141-p::
142--parent=<regex>::
9811360e
NK
143 A regex filter to identify parent. The parent is a caller of this
144 function and searched through the callchain, thus it requires callchain
145 information recorded. The pattern is in the exteneded regex format and
146 defaults to "\^sys_|^do_page_fault", see '--sort parent'.
e04fffc3
SB
147
148-x::
149--exclude-other::
150 Only display entries with parent-match.
151
52d422de 152-w::
e04fffc3 153--column-widths=<width[,width...]>::
52d422de 154 Force each column width to the provided list, for large terminal
cf59002f 155 readability. 0 means no limit (default behavior).
52d422de
ACM
156
157-t::
158--field-separator=::
52d422de 159 Use a special separator character and don't pad with spaces, replacing
e04fffc3 160 all occurrences of this separator in symbol names (and other output)
52d422de
ACM
161 with a '.' character, that thus it's the only non valid separator.
162
e04fffc3
SB
163-D::
164--dump-raw-trace::
165 Dump raw trace in ASCII.
166
8b7bad58 167-g [type,min[,limit],order[,key][,branch]]::
ec7ba4ea 168--call-graph::
6581f6e3
NK
169 Display call chains using type, min percent threshold, optional print
170 limit and order.
ec7ba4ea 171 type can be either:
e04fffc3 172 - flat: single column, linear exposure of call chains.
ec7ba4ea
FW
173 - graph: use a graph tree, displaying absolute overhead rates.
174 - fractal: like graph, but displays relative rates. Each branch of
175 the tree is considered as a new profiled object. +
d797fdc5
SL
176
177 order can be either:
178 - callee: callee based call graph.
179 - caller: inverted caller based call graph.
180
99571ab3
AK
181 key can be:
182 - function: compare on functions
183 - address: compare on individual code addresses
184
8b7bad58
AK
185 branch can be:
186 - branch: include last branch information in callgraph
187 when available. Usually more convenient to use --branch-history
188 for this.
189
99571ab3 190 Default: fractal,0.5,callee,function.
d797fdc5 191
793aaaab
NK
192--children::
193 Accumulate callchain of children to parent entry so that then can
194 show up in the output. The output will have a new "Children" column
195 and will be sorted on the data. It requires callchains are recorded.
dd309207 196 See the `overhead calculation' section for more details.
793aaaab 197
91e95617
WL
198--max-stack::
199 Set the stack depth limit when parsing the callchain, anything
200 beyond the specified depth will be ignored. This is a trade-off
201 between information loss and faster processing especially for
202 workloads that can have a very long callchain stack.
203
204 Default: 127
205
d797fdc5
SL
206-G::
207--inverted::
208 alias for inverted caller based call graph.
ec7ba4ea 209
b21484f1
GP
210--ignore-callees=<regex>::
211 Ignore callees of the function(s) matching the given regex.
212 This has the effect of collecting the callers of each such
213 function into one place in the call-graph tree.
214
e04fffc3
SB
215--pretty=<key>::
216 Pretty printing style. key: normal, raw
217
8b9e74eb
ACM
218--stdio:: Use the stdio interface.
219
220--tui:: Use the TUI interface, that is integrated with annotate and allows
221 zooming into DSOs or threads, among other features. Use of --tui
222 requires a tty, if one is not present, as when piping to other
223 commands, the stdio interface is used.
224
c31a9457
PE
225--gtk:: Use the GTK2 interface.
226
e04fffc3
SB
227-k::
228--vmlinux=<file>::
229 vmlinux pathname
230
b226a5a7
DA
231--kallsyms=<file>::
232 kallsyms pathname
233
e04fffc3
SB
234-m::
235--modules::
236 Load module symbols. WARNING: This should only be used with -k and
237 a LIVE kernel.
238
239-f::
240--force::
241 Don't complain, do it.
242
ec5761ea
DA
243--symfs=<directory>::
244 Look for files with symbols relative to this directory.
245
c8e66720 246-C::
5d67be97
AB
247--cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
248 be provided as a comma-separated list with no space: 0,1. Ranges of
249 CPUs are specified with -: 0-2. Default is to report samples on all
250 CPUs.
251
f69b64f7
AK
252-M::
253--disassembler-style=:: Set disassembler style for objdump.
254
64c6f0c7
ACM
255--source::
256 Interleave source code with assembly code. Enabled by default,
257 disable with --no-source.
258
259--asm-raw::
260 Show raw instruction encoding of assembly instructions.
261
3f2728bd
ACM
262--show-total-period:: Show a column with the sum of periods.
263
fbe96f29
SE
264-I::
265--show-info::
266 Display extended information about the perf.data file. This adds
267 information which may be very large and thus may clutter the display.
268 It currently includes: cpu and numa topology of the host system.
269
b50311dc
RAV
270-b::
271--branch-stack::
272 Use the addresses of sampled taken branches instead of the instruction
273 address to build the histograms. To generate meaningful output, the
993ac88d
SE
274 perf.data file must have been obtained using perf record -b or
275 perf record --branch-filter xxx where xxx is a branch filter option.
276 perf report is able to auto-detect whether a perf.data file contains
277 branch stacks and it will automatically switch to the branch view mode,
278 unless --no-branch-stack is used.
b50311dc 279
fa94c36c
AK
280--branch-history::
281 Add the addresses of sampled taken branches to the callstack.
282 This allows to examine the path the program took to each sample.
283 The data collection must have used -b (or -j) and -g.
284
7a4ec938
MB
285--objdump=<path>::
286 Path to objdump binary.
287
01d14f16
NK
288--group::
289 Show event group information together.
290
328ccdac
NK
291--demangle::
292 Demangle symbol names to human readable form. It's enabled by default,
293 disable with --no-demangle.
294
763122ad
AK
295--demangle-kernel::
296 Demangle kernel symbol names to human readable form (for C++ kernels).
297
75e906c9
DZ
298--mem-mode::
299 Use the data addresses of samples in addition to instruction addresses
300 to build the histograms. To generate meaningful output, the perf.data
301 file must have been obtained using perf record -d -W and using a
302 special event -e cpu/mem-loads/ or -e cpu/mem-stores/. See
303 'perf mem' for simpler access.
304
064f1981
NK
305--percent-limit::
306 Do not show entries which have an overhead under that percent.
307 (Default: 0).
308
f2148330
NK
309--percentage::
310 Determine how to display the overhead percentage of filtered entries.
311 Filters can be applied by --comms, --dsos and/or --symbols options and
312 Zoom operations on the TUI (thread, dso, etc).
313
314 "relative" means it's relative to filtered entries only so that the
315 sum of shown entries will be always 100%. "absolute" means it retains
316 the original value before and after the filter is applied.
317
5cfe2c82
JO
318--header::
319 Show header information in the perf.data file. This includes
320 various information like hostname, OS and perf version, cpu/mem
321 info, perf command line, event list and so on. Currently only
322 --stdio output supports this feature.
323
324--header-only::
325 Show only perf.data header (forces --stdio).
326
dd309207
NK
327
328include::callchain-overhead-calculation.txt[]
329
0bec253c
IM
330SEE ALSO
331--------
64c6f0c7 332linkperf:perf-stat[1], linkperf:perf-annotate[1]
This page took 0.224039 seconds and 5 git commands to generate.