Ingo Molnar | 0bec253 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 1 | perf-report(1) |
Ingo Molnar | c1c2365 | 2009-05-30 12:38:51 +0200 | [diff] [blame] | 2 | ============== |
Ingo Molnar | 0bec253 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 3 | |
| 4 | NAME |
| 5 | ---- |
Ingo Molnar | 23ac9cb | 2009-05-27 09:33:18 +0200 | [diff] [blame] | 6 | perf-report - Read perf.data (created by perf record) and display the profile |
Ingo Molnar | 0bec253 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
| 11 | 'perf report' [-i <file> | --input=file] |
| 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| 15 | This command displays the performance counter profile information recorded |
Ingo Molnar | b0a2858 | 2009-06-23 16:39:53 +0200 | [diff] [blame] | 16 | via perf record. |
Ingo Molnar | 0bec253 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 17 | |
| 18 | OPTIONS |
| 19 | ------- |
| 20 | -i:: |
| 21 | --input=:: |
Robert Richter | efad141 | 2011-12-07 10:02:54 +0100 | [diff] [blame] | 22 | Input file name. (default: perf.data unless stdin is a fifo) |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 23 | |
| 24 | -v:: |
| 25 | --verbose:: |
| 26 | Be more verbose. (show symbol address, etc) |
| 27 | |
Zeev Tarantov | ca2b900 | 2009-11-09 13:26:13 +0200 | [diff] [blame] | 28 | -n:: |
| 29 | --show-nr-samples:: |
Arnaldo Carvalho de Melo | e3d7e18 | 2009-07-11 12:18:37 -0300 | [diff] [blame] | 30 | Show the number of samples for each symbol |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 31 | |
| 32 | --showcpuutilization:: |
| 33 | Show sample percentage for different cpu modes. |
| 34 | |
Zeev Tarantov | ca2b900 | 2009-11-09 13:26:13 +0200 | [diff] [blame] | 35 | -T:: |
| 36 | --threads:: |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 37 | Show per-thread event counters |
David Ahern | c8e6672 | 2011-11-13 11:30:08 -0700 | [diff] [blame] | 38 | -c:: |
Arnaldo Carvalho de Melo | cc8b88b | 2009-06-30 19:01:21 -0300 | [diff] [blame] | 39 | --comms=:: |
| 40 | Only consider symbols in these comms. CSV that understands |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame^] | 41 | file://filename entries. This option will affect the percentage of |
| 42 | the overhead column. See --percentage for more info. |
| 43 | -d:: |
| 44 | --dsos=:: |
| 45 | Only consider symbols in these dsos. CSV that understands |
| 46 | file://filename entries. This option will affect the percentage of |
| 47 | the overhead column. See --percentage for more info. |
Arnaldo Carvalho de Melo | 7bec7a9 | 2009-06-30 19:01:22 -0300 | [diff] [blame] | 48 | -S:: |
| 49 | --symbols=:: |
| 50 | Only consider these symbols. CSV that understands |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame^] | 51 | file://filename entries. This option will affect the percentage of |
| 52 | the overhead column. See --percentage for more info. |
Ingo Molnar | 0bec253 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 53 | |
Namhyung Kim | fde0eea | 2012-03-19 11:53:48 +0900 | [diff] [blame] | 54 | --symbol-filter=:: |
| 55 | Only show symbols that match (partially) with this filter. |
| 56 | |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 57 | -U:: |
| 58 | --hide-unresolved:: |
| 59 | Only display entries resolved to a symbol. |
| 60 | |
Arnaldo Carvalho de Melo | c351c28 | 2009-12-16 13:49:27 -0200 | [diff] [blame] | 61 | -s:: |
| 62 | --sort=:: |
Namhyung Kim | 9811360 | 2012-12-27 18:11:47 +0900 | [diff] [blame] | 63 | Sort histogram entries by given key(s) - multiple keys can be specified |
| 64 | in CSV format. Following sort keys are available: |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 65 | pid, comm, dso, symbol, parent, cpu, srcline, weight, local_weight. |
Namhyung Kim | 9811360 | 2012-12-27 18:11:47 +0900 | [diff] [blame] | 66 | |
| 67 | Each key has following meaning: |
| 68 | |
| 69 | - comm: command (name) of the task which can be read via /proc/<pid>/comm |
| 70 | - pid: command and tid of the task |
| 71 | - dso: name of library or module executed at the time of sample |
| 72 | - symbol: name of function executed at the time of sample |
| 73 | - parent: name of function matched to the parent regex filter. Unmatched |
| 74 | entries are displayed as "[other]". |
| 75 | - cpu: cpu number the task ran at the time of sample |
| 76 | - srcline: filename and line number executed at the time of sample. The |
Andi Kleen | f5d05bc | 2013-09-20 07:40:41 -0700 | [diff] [blame] | 77 | DWARF debugging info must be provided. |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 78 | - weight: Event specific weight, e.g. memory latency or transaction |
| 79 | abort cost. This is the global weight. |
| 80 | - local_weight: Local weight version of the weight above. |
| 81 | - transaction: Transaction abort flags. |
Namhyung Kim | 9811360 | 2012-12-27 18:11:47 +0900 | [diff] [blame] | 82 | |
| 83 | By default, comm, dso and symbol keys are used. |
| 84 | (i.e. --sort comm,dso,symbol) |
| 85 | |
| 86 | If --branch-stack option is used, following sort keys are also |
| 87 | available: |
| 88 | dso_from, dso_to, symbol_from, symbol_to, mispredict. |
| 89 | |
| 90 | - dso_from: name of library or module branched from |
| 91 | - dso_to: name of library or module branched to |
| 92 | - symbol_from: name of function branched from |
| 93 | - symbol_to: name of function branched to |
| 94 | - mispredict: "N" for predicted branch, "Y" for mispredicted branch |
Andi Kleen | f5d05bc | 2013-09-20 07:40:41 -0700 | [diff] [blame] | 95 | - in_tx: branch in TSX transaction |
| 96 | - abort: TSX transaction abort. |
Namhyung Kim | 9811360 | 2012-12-27 18:11:47 +0900 | [diff] [blame] | 97 | |
| 98 | And default sort keys are changed to comm, dso_from, symbol_from, dso_to |
| 99 | and symbol_to, see '--branch-stack'. |
Arnaldo Carvalho de Melo | c351c28 | 2009-12-16 13:49:27 -0200 | [diff] [blame] | 100 | |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 101 | -p:: |
| 102 | --parent=<regex>:: |
Namhyung Kim | 9811360 | 2012-12-27 18:11:47 +0900 | [diff] [blame] | 103 | A regex filter to identify parent. The parent is a caller of this |
| 104 | function and searched through the callchain, thus it requires callchain |
| 105 | information recorded. The pattern is in the exteneded regex format and |
| 106 | defaults to "\^sys_|^do_page_fault", see '--sort parent'. |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 107 | |
| 108 | -x:: |
| 109 | --exclude-other:: |
| 110 | Only display entries with parent-match. |
| 111 | |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 112 | -w:: |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 113 | --column-widths=<width[,width...]>:: |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 114 | Force each column width to the provided list, for large terminal |
| 115 | readability. |
| 116 | |
| 117 | -t:: |
| 118 | --field-separator=:: |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 119 | Use a special separator character and don't pad with spaces, replacing |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 120 | all occurrences of this separator in symbol names (and other output) |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 121 | with a '.' character, that thus it's the only non valid separator. |
| 122 | |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 123 | -D:: |
| 124 | --dump-raw-trace:: |
| 125 | Dump raw trace in ASCII. |
| 126 | |
Andi Kleen | 99571ab | 2013-07-18 15:33:57 -0700 | [diff] [blame] | 127 | -g [type,min[,limit],order[,key]]:: |
Frederic Weisbecker | ec7ba4e | 2009-08-31 03:32:03 +0200 | [diff] [blame] | 128 | --call-graph:: |
Namhyung Kim | 6581f6e | 2011-12-13 00:16:50 +0900 | [diff] [blame] | 129 | Display call chains using type, min percent threshold, optional print |
| 130 | limit and order. |
Frederic Weisbecker | ec7ba4e | 2009-08-31 03:32:03 +0200 | [diff] [blame] | 131 | type can be either: |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 132 | - flat: single column, linear exposure of call chains. |
Frederic Weisbecker | ec7ba4e | 2009-08-31 03:32:03 +0200 | [diff] [blame] | 133 | - graph: use a graph tree, displaying absolute overhead rates. |
| 134 | - fractal: like graph, but displays relative rates. Each branch of |
| 135 | the tree is considered as a new profiled object. + |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 136 | |
| 137 | order can be either: |
| 138 | - callee: callee based call graph. |
| 139 | - caller: inverted caller based call graph. |
| 140 | |
Andi Kleen | 99571ab | 2013-07-18 15:33:57 -0700 | [diff] [blame] | 141 | key can be: |
| 142 | - function: compare on functions |
| 143 | - address: compare on individual code addresses |
| 144 | |
| 145 | Default: fractal,0.5,callee,function. |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 146 | |
Waiman Long | 91e9561 | 2013-10-18 10:38:48 -0400 | [diff] [blame] | 147 | --max-stack:: |
| 148 | Set the stack depth limit when parsing the callchain, anything |
| 149 | beyond the specified depth will be ignored. This is a trade-off |
| 150 | between information loss and faster processing especially for |
| 151 | workloads that can have a very long callchain stack. |
| 152 | |
| 153 | Default: 127 |
| 154 | |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 155 | -G:: |
| 156 | --inverted:: |
| 157 | alias for inverted caller based call graph. |
Frederic Weisbecker | ec7ba4e | 2009-08-31 03:32:03 +0200 | [diff] [blame] | 158 | |
Greg Price | b21484f | 2012-12-06 21:48:05 -0800 | [diff] [blame] | 159 | --ignore-callees=<regex>:: |
| 160 | Ignore callees of the function(s) matching the given regex. |
| 161 | This has the effect of collecting the callers of each such |
| 162 | function into one place in the call-graph tree. |
| 163 | |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 164 | --pretty=<key>:: |
| 165 | Pretty printing style. key: normal, raw |
| 166 | |
Arnaldo Carvalho de Melo | 8b9e74e | 2010-08-21 10:38:16 -0300 | [diff] [blame] | 167 | --stdio:: Use the stdio interface. |
| 168 | |
| 169 | --tui:: Use the TUI interface, that is integrated with annotate and allows |
| 170 | zooming into DSOs or threads, among other features. Use of --tui |
| 171 | requires a tty, if one is not present, as when piping to other |
| 172 | commands, the stdio interface is used. |
| 173 | |
Pekka Enberg | c31a945 | 2012-03-19 15:13:29 -0300 | [diff] [blame] | 174 | --gtk:: Use the GTK2 interface. |
| 175 | |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 176 | -k:: |
| 177 | --vmlinux=<file>:: |
| 178 | vmlinux pathname |
| 179 | |
David Ahern | b226a5a7 | 2010-12-07 19:39:46 -0700 | [diff] [blame] | 180 | --kallsyms=<file>:: |
| 181 | kallsyms pathname |
| 182 | |
Shawn Bohrer | e04fffc | 2010-11-30 19:57:17 -0600 | [diff] [blame] | 183 | -m:: |
| 184 | --modules:: |
| 185 | Load module symbols. WARNING: This should only be used with -k and |
| 186 | a LIVE kernel. |
| 187 | |
| 188 | -f:: |
| 189 | --force:: |
| 190 | Don't complain, do it. |
| 191 | |
David Ahern | ec5761e | 2010-12-09 13:27:07 -0700 | [diff] [blame] | 192 | --symfs=<directory>:: |
| 193 | Look for files with symbols relative to this directory. |
| 194 | |
David Ahern | c8e6672 | 2011-11-13 11:30:08 -0700 | [diff] [blame] | 195 | -C:: |
Anton Blanchard | 5d67be9 | 2011-07-04 21:57:50 +1000 | [diff] [blame] | 196 | --cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can |
| 197 | be provided as a comma-separated list with no space: 0,1. Ranges of |
| 198 | CPUs are specified with -: 0-2. Default is to report samples on all |
| 199 | CPUs. |
| 200 | |
Andi Kleen | f69b64f | 2011-09-15 14:31:41 -0700 | [diff] [blame] | 201 | -M:: |
| 202 | --disassembler-style=:: Set disassembler style for objdump. |
| 203 | |
Arnaldo Carvalho de Melo | 64c6f0c | 2011-10-06 12:48:31 -0300 | [diff] [blame] | 204 | --source:: |
| 205 | Interleave source code with assembly code. Enabled by default, |
| 206 | disable with --no-source. |
| 207 | |
| 208 | --asm-raw:: |
| 209 | Show raw instruction encoding of assembly instructions. |
| 210 | |
Arnaldo Carvalho de Melo | 3f2728b | 2011-10-05 16:10:06 -0300 | [diff] [blame] | 211 | --show-total-period:: Show a column with the sum of periods. |
| 212 | |
Stephane Eranian | fbe96f2 | 2011-09-30 15:40:40 +0200 | [diff] [blame] | 213 | -I:: |
| 214 | --show-info:: |
| 215 | Display extended information about the perf.data file. This adds |
| 216 | information which may be very large and thus may clutter the display. |
| 217 | It currently includes: cpu and numa topology of the host system. |
| 218 | |
Roberto Agostino Vitillo | b50311d | 2012-02-09 23:21:03 +0100 | [diff] [blame] | 219 | -b:: |
| 220 | --branch-stack:: |
| 221 | Use the addresses of sampled taken branches instead of the instruction |
| 222 | address to build the histograms. To generate meaningful output, the |
Stephane Eranian | 993ac88 | 2012-03-08 23:47:47 +0100 | [diff] [blame] | 223 | perf.data file must have been obtained using perf record -b or |
| 224 | perf record --branch-filter xxx where xxx is a branch filter option. |
| 225 | perf report is able to auto-detect whether a perf.data file contains |
| 226 | branch stacks and it will automatically switch to the branch view mode, |
| 227 | unless --no-branch-stack is used. |
Roberto Agostino Vitillo | b50311d | 2012-02-09 23:21:03 +0100 | [diff] [blame] | 228 | |
Maciek Borzecki | 7a4ec93 | 2012-09-04 12:32:30 +0200 | [diff] [blame] | 229 | --objdump=<path>:: |
| 230 | Path to objdump binary. |
| 231 | |
Namhyung Kim | 01d14f1 | 2013-01-22 18:09:45 +0900 | [diff] [blame] | 232 | --group:: |
| 233 | Show event group information together. |
| 234 | |
Namhyung Kim | 328ccda | 2013-03-25 18:18:18 +0900 | [diff] [blame] | 235 | --demangle:: |
| 236 | Demangle symbol names to human readable form. It's enabled by default, |
| 237 | disable with --no-demangle. |
| 238 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 239 | --percent-limit:: |
| 240 | Do not show entries which have an overhead under that percent. |
| 241 | (Default: 0). |
| 242 | |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame^] | 243 | --percentage:: |
| 244 | Determine how to display the overhead percentage of filtered entries. |
| 245 | Filters can be applied by --comms, --dsos and/or --symbols options and |
| 246 | Zoom operations on the TUI (thread, dso, etc). |
| 247 | |
| 248 | "relative" means it's relative to filtered entries only so that the |
| 249 | sum of shown entries will be always 100%. "absolute" means it retains |
| 250 | the original value before and after the filter is applied. |
| 251 | |
Jiri Olsa | 5cfe2c8 | 2013-12-09 11:02:49 +0100 | [diff] [blame] | 252 | --header:: |
| 253 | Show header information in the perf.data file. This includes |
| 254 | various information like hostname, OS and perf version, cpu/mem |
| 255 | info, perf command line, event list and so on. Currently only |
| 256 | --stdio output supports this feature. |
| 257 | |
| 258 | --header-only:: |
| 259 | Show only perf.data header (forces --stdio). |
| 260 | |
Ingo Molnar | 0bec253 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 261 | SEE ALSO |
| 262 | -------- |
Arnaldo Carvalho de Melo | 64c6f0c | 2011-10-06 12:48:31 -0300 | [diff] [blame] | 263 | linkperf:perf-stat[1], linkperf:perf-annotate[1] |