perf-script.txt 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. perf-script(1)
  2. =============
  3. NAME
  4. ----
  5. perf-script - Read perf.data (created by perf record) and display trace output
  6. SYNOPSIS
  7. --------
  8. [verse]
  9. 'perf script' [<options>]
  10. 'perf script' [<options>] record <script> [<record-options>] <command>
  11. 'perf script' [<options>] report <script> [script-args]
  12. 'perf script' [<options>] <script> <required-script-args> [<record-options>] <command>
  13. 'perf script' [<options>] <top-script> [script-args]
  14. DESCRIPTION
  15. -----------
  16. This command reads the input file and displays the trace recorded.
  17. There are several variants of perf script:
  18. 'perf script' to see a detailed trace of the workload that was
  19. recorded.
  20. You can also run a set of pre-canned scripts that aggregate and
  21. summarize the raw trace data in various ways (the list of scripts is
  22. available via 'perf script -l'). The following variants allow you to
  23. record and run those scripts:
  24. 'perf script record <script> <command>' to record the events required
  25. for 'perf script report'. <script> is the name displayed in the
  26. output of 'perf script --list' i.e. the actual script name minus any
  27. language extension. If <command> is not specified, the events are
  28. recorded using the -a (system-wide) 'perf record' option.
  29. 'perf script report <script> [args]' to run and display the results
  30. of <script>. <script> is the name displayed in the output of 'perf
  31. script --list' i.e. the actual script name minus any language
  32. extension. The perf.data output from a previous run of 'perf script
  33. record <script>' is used and should be present for this command to
  34. succeed. [args] refers to the (mainly optional) args expected by
  35. the script.
  36. 'perf script <script> <required-script-args> <command>' to both
  37. record the events required for <script> and to run the <script>
  38. using 'live-mode' i.e. without writing anything to disk. <script>
  39. is the name displayed in the output of 'perf script --list' i.e. the
  40. actual script name minus any language extension. If <command> is
  41. not specified, the events are recorded using the -a (system-wide)
  42. 'perf record' option. If <script> has any required args, they
  43. should be specified before <command>. This mode doesn't allow for
  44. optional script args to be specified; if optional script args are
  45. desired, they can be specified using separate 'perf script record'
  46. and 'perf script report' commands, with the stdout of the record step
  47. piped to the stdin of the report script, using the '-o -' and '-i -'
  48. options of the corresponding commands.
  49. 'perf script <top-script>' to both record the events required for
  50. <top-script> and to run the <top-script> using 'live-mode'
  51. i.e. without writing anything to disk. <top-script> is the name
  52. displayed in the output of 'perf script --list' i.e. the actual
  53. script name minus any language extension; a <top-script> is defined
  54. as any script name ending with the string 'top'.
  55. [<record-options>] can be passed to the record steps of 'perf script
  56. record' and 'live-mode' variants; this isn't possible however for
  57. <top-script> 'live-mode' or 'perf script report' variants.
  58. See the 'SEE ALSO' section for links to language-specific
  59. information on how to write and run your own trace scripts.
  60. OPTIONS
  61. -------
  62. <command>...::
  63. Any command you can specify in a shell.
  64. -D::
  65. --dump-raw-trace=::
  66. Display verbose dump of the trace data.
  67. --dump-unsorted-raw-trace=::
  68. Same as --dump-raw-trace but not sorted in time order.
  69. -L::
  70. --Latency=::
  71. Show latency attributes (irqs/preemption disabled, etc).
  72. -l::
  73. --list=::
  74. Display a list of available trace scripts.
  75. -s ['lang']::
  76. --script=::
  77. Process trace data with the given script ([lang]:script[.ext]).
  78. If the string 'lang' is specified in place of a script name, a
  79. list of supported languages will be displayed instead.
  80. -g::
  81. --gen-script=::
  82. Generate perf-script.[ext] starter script for given language,
  83. using current perf.data.
  84. --dlfilter=<file>::
  85. Filter sample events using the given shared object file.
  86. Refer linkperf:perf-dlfilter[1]
  87. --dlarg=<arg>::
  88. Pass 'arg' as an argument to the dlfilter. --dlarg may be repeated
  89. to add more arguments.
  90. --list-dlfilters::
  91. Display a list of available dlfilters. Use with option -v (must come
  92. before option --list-dlfilters) to show long descriptions.
  93. -a::
  94. Force system-wide collection. Scripts run without a <command>
  95. normally use -a by default, while scripts run with a <command>
  96. normally don't - this option allows the latter to be run in
  97. system-wide mode.
  98. -i::
  99. --input=::
  100. Input file name. (default: perf.data unless stdin is a fifo)
  101. -d::
  102. --debug-mode::
  103. Do various checks like samples ordering and lost events.
  104. -F::
  105. --fields::
  106. Comma separated list of fields to print. Options are:
  107. comm, tid, pid, time, cpu, event, trace, ip, sym, dso, addr, symoff,
  108. srcline, period, iregs, uregs, brstack, brstacksym, flags, bpf-output,
  109. brstackinsn, brstackinsnlen, brstackoff, callindent, insn, insnlen, synth,
  110. phys_addr, metric, misc, srccode, ipc, data_page_size, code_page_size, ins_lat,
  111. machine_pid, vcpu.
  112. Field list can be prepended with the type, trace, sw or hw,
  113. to indicate to which event type the field list applies.
  114. e.g., -F sw:comm,tid,time,ip,sym and -F trace:time,cpu,trace
  115. perf script -F <fields>
  116. is equivalent to:
  117. perf script -F trace:<fields> -F sw:<fields> -F hw:<fields>
  118. i.e., the specified fields apply to all event types if the type string
  119. is not given.
  120. In addition to overriding fields, it is also possible to add or remove
  121. fields from the defaults. For example
  122. -F -cpu,+insn
  123. removes the cpu field and adds the insn field. Adding/removing fields
  124. cannot be mixed with normal overriding.
  125. The arguments are processed in the order received. A later usage can
  126. reset a prior request. e.g.:
  127. -F trace: -F comm,tid,time,ip,sym
  128. The first -F suppresses trace events (field list is ""), but then the
  129. second invocation sets the fields to comm,tid,time,ip,sym. In this case a
  130. warning is given to the user:
  131. "Overriding previous field request for all events."
  132. Alternatively, consider the order:
  133. -F comm,tid,time,ip,sym -F trace:
  134. The first -F sets the fields for all events and the second -F
  135. suppresses trace events. The user is given a warning message about
  136. the override, and the result of the above is that only S/W and H/W
  137. events are displayed with the given fields.
  138. It's possible tp add/remove fields only for specific event type:
  139. -Fsw:-cpu,-period
  140. removes cpu and period from software events.
  141. For the 'wildcard' option if a user selected field is invalid for an
  142. event type, a message is displayed to the user that the option is
  143. ignored for that type. For example:
  144. $ perf script -F comm,tid,trace
  145. 'trace' not valid for hardware events. Ignoring.
  146. 'trace' not valid for software events. Ignoring.
  147. Alternatively, if the type is given an invalid field is specified it
  148. is an error. For example:
  149. perf script -v -F sw:comm,tid,trace
  150. 'trace' not valid for software events.
  151. At this point usage is displayed, and perf-script exits.
  152. The flags field is synthesized and may have a value when Instruction
  153. Trace decoding. The flags are "bcrosyiABExghDt" which stand for branch,
  154. call, return, conditional, system, asynchronous, interrupt,
  155. transaction abort, trace begin, trace end, in transaction, VM-Entry,
  156. VM-Exit, interrupt disabled and interrupt disable toggle respectively.
  157. Known combinations of flags are printed more nicely e.g.
  158. "call" for "bc", "return" for "br", "jcc" for "bo", "jmp" for "b",
  159. "int" for "bci", "iret" for "bri", "syscall" for "bcs", "sysret" for "brs",
  160. "async" for "by", "hw int" for "bcyi", "tx abrt" for "bA", "tr strt" for "bB",
  161. "tr end" for "bE", "vmentry" for "bcg", "vmexit" for "bch".
  162. However the "x", "D" and "t" flags will be displayed separately in those
  163. cases e.g. "jcc (xD)" for a condition branch within a transaction
  164. with interrupts disabled. Note, interrupts becoming disabled is "t",
  165. whereas interrupts becoming enabled is "Dt".
  166. The callindent field is synthesized and may have a value when
  167. Instruction Trace decoding. For calls and returns, it will display the
  168. name of the symbol indented with spaces to reflect the stack depth.
  169. When doing instruction trace decoding insn and insnlen give the
  170. instruction bytes and the instruction length of the current
  171. instruction.
  172. The synth field is used by synthesized events which may be created when
  173. Instruction Trace decoding.
  174. The ipc (instructions per cycle) field is synthesized and may have a value when
  175. Instruction Trace decoding.
  176. The machine_pid and vcpu fields are derived from data resulting from using
  177. perf inject to insert a perf.data file recorded inside a virtual machine into
  178. a perf.data file recorded on the host at the same time.
  179. Finally, a user may not set fields to none for all event types.
  180. i.e., -F "" is not allowed.
  181. The brstack output includes branch related information with raw addresses using the
  182. /v/v/v/v/cycles syntax in the following order:
  183. FROM: branch source instruction
  184. TO : branch target instruction
  185. M/P/-: M=branch target mispredicted or branch direction was mispredicted, P=target predicted or direction predicted, -=not supported
  186. X/- : X=branch inside a transactional region, -=not in transaction region or not supported
  187. A/- : A=TSX abort entry, -=not aborted region or not supported
  188. cycles
  189. The brstacksym is identical to brstack, except that the FROM and TO addresses are printed in a symbolic form if possible.
  190. When brstackinsn is specified the full assembler sequences of branch sequences for each sample
  191. is printed. This is the full execution path leading to the sample. This is only supported when the
  192. sample was recorded with perf record -b or -j any.
  193. Use brstackinsnlen to print the brstackinsn lenght. For example, you
  194. can’t know the next sequential instruction after an unconditional branch unless
  195. you calculate that based on its length.
  196. The brstackoff field will print an offset into a specific dso/binary.
  197. With the metric option perf script can compute metrics for
  198. sampling periods, similar to perf stat. This requires
  199. specifying a group with multiple events defining metrics with the :S option
  200. for perf record. perf will sample on the first event, and
  201. print computed metrics for all the events in the group. Please note
  202. that the metric computed is averaged over the whole sampling
  203. period (since the last sample), not just for the sample point.
  204. For sample events it's possible to display misc field with -F +misc option,
  205. following letters are displayed for each bit:
  206. PERF_RECORD_MISC_KERNEL K
  207. PERF_RECORD_MISC_USER U
  208. PERF_RECORD_MISC_HYPERVISOR H
  209. PERF_RECORD_MISC_GUEST_KERNEL G
  210. PERF_RECORD_MISC_GUEST_USER g
  211. PERF_RECORD_MISC_MMAP_DATA* M
  212. PERF_RECORD_MISC_COMM_EXEC E
  213. PERF_RECORD_MISC_SWITCH_OUT S
  214. PERF_RECORD_MISC_SWITCH_OUT_PREEMPT Sp
  215. $ perf script -F +misc ...
  216. sched-messaging 1414 K 28690.636582: 4590 cycles ...
  217. sched-messaging 1407 U 28690.636600: 325620 cycles ...
  218. sched-messaging 1414 K 28690.636608: 19473 cycles ...
  219. misc field ___________/
  220. -k::
  221. --vmlinux=<file>::
  222. vmlinux pathname
  223. --kallsyms=<file>::
  224. kallsyms pathname
  225. --symfs=<directory>::
  226. Look for files with symbols relative to this directory.
  227. -G::
  228. --hide-call-graph::
  229. When printing symbols do not display call chain.
  230. --stop-bt::
  231. Stop display of callgraph at these symbols
  232. -C::
  233. --cpu:: Only report samples for the list of CPUs provided. Multiple CPUs can
  234. be provided as a comma-separated list with no space: 0,1. Ranges of
  235. CPUs are specified with -: 0-2. Default is to report samples on all
  236. CPUs.
  237. -c::
  238. --comms=::
  239. Only display events for these comms. CSV that understands
  240. file://filename entries.
  241. --pid=::
  242. Only show events for given process ID (comma separated list).
  243. --tid=::
  244. Only show events for given thread ID (comma separated list).
  245. -I::
  246. --show-info::
  247. Display extended information about the perf.data file. This adds
  248. information which may be very large and thus may clutter the display.
  249. It currently includes: cpu and numa topology of the host system.
  250. It can only be used with the perf script report mode.
  251. --show-kernel-path::
  252. Try to resolve the path of [kernel.kallsyms]
  253. --show-task-events
  254. Display task related events (e.g. FORK, COMM, EXIT).
  255. --show-mmap-events
  256. Display mmap related events (e.g. MMAP, MMAP2).
  257. --show-namespace-events
  258. Display namespace events i.e. events of type PERF_RECORD_NAMESPACES.
  259. --show-switch-events
  260. Display context switch events i.e. events of type PERF_RECORD_SWITCH or
  261. PERF_RECORD_SWITCH_CPU_WIDE.
  262. --show-lost-events
  263. Display lost events i.e. events of type PERF_RECORD_LOST.
  264. --show-round-events
  265. Display finished round events i.e. events of type PERF_RECORD_FINISHED_ROUND.
  266. --show-bpf-events
  267. Display bpf events i.e. events of type PERF_RECORD_KSYMBOL and PERF_RECORD_BPF_EVENT.
  268. --show-cgroup-events
  269. Display cgroup events i.e. events of type PERF_RECORD_CGROUP.
  270. --show-text-poke-events
  271. Display text poke events i.e. events of type PERF_RECORD_TEXT_POKE and
  272. PERF_RECORD_KSYMBOL.
  273. --demangle::
  274. Demangle symbol names to human readable form. It's enabled by default,
  275. disable with --no-demangle.
  276. --demangle-kernel::
  277. Demangle kernel symbol names to human readable form (for C++ kernels).
  278. --header
  279. Show perf.data header.
  280. --header-only
  281. Show only perf.data header.
  282. --itrace::
  283. Options for decoding instruction tracing data. The options are:
  284. include::itrace.txt[]
  285. To disable decoding entirely, use --no-itrace.
  286. --full-source-path::
  287. Show the full path for source files for srcline output.
  288. --max-stack::
  289. Set the stack depth limit when parsing the callchain, anything
  290. beyond the specified depth will be ignored. This is a trade-off
  291. between information loss and faster processing especially for
  292. workloads that can have a very long callchain stack.
  293. Note that when using the --itrace option the synthesized callchain size
  294. will override this value if the synthesized callchain size is bigger.
  295. Default: 127
  296. --ns::
  297. Use 9 decimal places when displaying time (i.e. show the nanoseconds)
  298. -f::
  299. --force::
  300. Don't do ownership validation.
  301. --time::
  302. Only analyze samples within given time window: <start>,<stop>. Times
  303. have the format seconds.nanoseconds. If start is not given (i.e. time
  304. string is ',x.y') then analysis starts at the beginning of the file. If
  305. stop time is not given (i.e. time string is 'x.y,') then analysis goes
  306. to end of file. Multiple ranges can be separated by spaces, which
  307. requires the argument to be quoted e.g. --time "1234.567,1234.789 1235,"
  308. Also support time percent with multiple time ranges. Time string is
  309. 'a%/n,b%/m,...' or 'a%-b%,c%-%d,...'.
  310. For example:
  311. Select the second 10% time slice:
  312. perf script --time 10%/2
  313. Select from 0% to 10% time slice:
  314. perf script --time 0%-10%
  315. Select the first and second 10% time slices:
  316. perf script --time 10%/1,10%/2
  317. Select from 0% to 10% and 30% to 40% slices:
  318. perf script --time 0%-10%,30%-40%
  319. --max-blocks::
  320. Set the maximum number of program blocks to print with brstackinsn for
  321. each sample.
  322. --reltime::
  323. Print time stamps relative to trace start.
  324. --deltatime::
  325. Print time stamps relative to previous event.
  326. --per-event-dump::
  327. Create per event files with a "perf.data.EVENT.dump" name instead of
  328. printing to stdout, useful, for instance, for generating flamegraphs.
  329. --inline::
  330. If a callgraph address belongs to an inlined function, the inline stack
  331. will be printed. Each entry has function name and file/line. Enabled by
  332. default, disable with --no-inline.
  333. --insn-trace::
  334. Show instruction stream for intel_pt traces. Combine with --xed to
  335. show disassembly.
  336. --xed::
  337. Run xed disassembler on output. Requires installing the xed disassembler.
  338. -S::
  339. --symbols=symbol[,symbol...]::
  340. Only consider the listed symbols. Symbols are typically a name
  341. but they may also be hexadecimal address.
  342. The hexadecimal address may be the start address of a symbol or
  343. any other address to filter the trace records
  344. For example, to select the symbol noploop or the address 0x4007a0:
  345. perf script --symbols=noploop,0x4007a0
  346. Support filtering trace records by symbol name, start address of
  347. symbol, any hexadecimal address and address range.
  348. The comparison order is:
  349. 1. symbol name comparison
  350. 2. symbol start address comparison.
  351. 3. any hexadecimal address comparison.
  352. 4. address range comparison (see --addr-range).
  353. --addr-range::
  354. Use with -S or --symbols to list traced records within address range.
  355. For example, to list the traced records within the address range
  356. [0x4007a0, 0x0x4007a9]:
  357. perf script -S 0x4007a0 --addr-range 10
  358. --dsos=::
  359. Only consider symbols in these DSOs.
  360. --call-trace::
  361. Show call stream for intel_pt traces. The CPUs are interleaved, but
  362. can be filtered with -C.
  363. --call-ret-trace::
  364. Show call and return stream for intel_pt traces.
  365. --graph-function::
  366. For itrace only show specified functions and their callees for
  367. itrace. Multiple functions can be separated by comma.
  368. --switch-on EVENT_NAME::
  369. Only consider events after this event is found.
  370. --switch-off EVENT_NAME::
  371. Stop considering events after this event is found.
  372. --show-on-off-events::
  373. Show the --switch-on/off events too.
  374. --stitch-lbr::
  375. Show callgraph with stitched LBRs, which may have more complete
  376. callgraph. The perf.data file must have been obtained using
  377. perf record --call-graph lbr.
  378. Disabled by default. In common cases with call stack overflows,
  379. it can recreate better call stacks than the default lbr call stack
  380. output. But this approach is not full proof. There can be cases
  381. where it creates incorrect call stacks from incorrect matches.
  382. The known limitations include exception handing such as
  383. setjmp/longjmp will have calls/returns not match.
  384. :GMEXAMPLECMD: script
  385. :GMEXAMPLESUBCMD:
  386. include::guest-files.txt[]
  387. SEE ALSO
  388. --------
  389. linkperf:perf-record[1], linkperf:perf-script-perl[1],
  390. linkperf:perf-script-python[1], linkperf:perf-intel-pt[1],
  391. linkperf:perf-dlfilter[1]