Merge tag 'v3.3.7' into 3.3/master
[zen-stable.git] / tools / perf / Documentation / perf-report.txt
blob9b430e98712e9035d26d565b2fdb5a16fb42e471
1 perf-report(1)
2 ==============
4 NAME
5 ----
6 perf-report - Read perf.data (created by perf record) and display the profile
8 SYNOPSIS
9 --------
10 [verse]
11 'perf report' [-i <file> | --input=file]
13 DESCRIPTION
14 -----------
15 This command displays the performance counter profile information recorded
16 via perf record.
18 OPTIONS
19 -------
20 -i::
21 --input=::
22         Input file name. (default: perf.data unless stdin is a fifo)
24 -v::
25 --verbose::
26         Be more verbose. (show symbol address, etc)
28 -d::
29 --dsos=::
30         Only consider symbols in these dsos. CSV that understands
31         file://filename entries.
32 -n::
33 --show-nr-samples::
34         Show the number of samples for each symbol
36 --showcpuutilization::
37         Show sample percentage for different cpu modes.
39 -T::
40 --threads::
41         Show per-thread event counters
42 -c::
43 --comms=::
44         Only consider symbols in these comms. CSV that understands
45         file://filename entries.
46 -S::
47 --symbols=::
48         Only consider these symbols. CSV that understands
49         file://filename entries.
51 -U::
52 --hide-unresolved::
53         Only display entries resolved to a symbol.
55 -s::
56 --sort=::
57         Sort by key(s): pid, comm, dso, symbol, parent.
59 -p::
60 --parent=<regex>::
61         regex filter to identify parent, see: '--sort parent'
63 -x::
64 --exclude-other::
65         Only display entries with parent-match.
67 -w::
68 --column-widths=<width[,width...]>::
69         Force each column width to the provided list, for large terminal
70         readability.
72 -t::
73 --field-separator=::
75         Use a special separator character and don't pad with spaces, replacing
76         all occurrences of this separator in symbol names (and other output)
77         with a '.' character, that thus it's the only non valid separator.
79 -D::
80 --dump-raw-trace::
81         Dump raw trace in ASCII.
83 -g [type,min[,limit],order]::
84 --call-graph::
85         Display call chains using type, min percent threshold, optional print
86         limit and order.
87         type can be either:
88         - flat: single column, linear exposure of call chains.
89         - graph: use a graph tree, displaying absolute overhead rates.
90         - fractal: like graph, but displays relative rates. Each branch of
91                  the tree is considered as a new profiled object. +
93         order can be either:
94         - callee: callee based call graph.
95         - caller: inverted caller based call graph.
97         Default: fractal,0.5,callee.
99 -G::
100 --inverted::
101         alias for inverted caller based call graph.
103 --pretty=<key>::
104         Pretty printing style.  key: normal, raw
106 --stdio:: Use the stdio interface.
108 --tui:: Use the TUI interface, that is integrated with annotate and allows
109         zooming into DSOs or threads, among other features. Use of --tui
110         requires a tty, if one is not present, as when piping to other
111         commands, the stdio interface is used.
113 -k::
114 --vmlinux=<file>::
115         vmlinux pathname
117 --kallsyms=<file>::
118         kallsyms pathname
120 -m::
121 --modules::
122         Load module symbols. WARNING: This should only be used with -k and
123         a LIVE kernel.
125 -f::
126 --force::
127         Don't complain, do it.
129 --symfs=<directory>::
130         Look for files with symbols relative to this directory.
132 -C::
133 --cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
134         be provided as a comma-separated list with no space: 0,1. Ranges of
135         CPUs are specified with -: 0-2. Default is to report samples on all
136         CPUs.
138 -M::
139 --disassembler-style=:: Set disassembler style for objdump.
141 --source::
142         Interleave source code with assembly code. Enabled by default,
143         disable with --no-source.
145 --asm-raw::
146         Show raw instruction encoding of assembly instructions.
148 --show-total-period:: Show a column with the sum of periods.
150 -I::
151 --show-info::
152         Display extended information about the perf.data file. This adds
153         information which may be very large and thus may clutter the display.
154         It currently includes: cpu and numa topology of the host system.
156 SEE ALSO
157 --------
158 linkperf:perf-stat[1], linkperf:perf-annotate[1]