xref: /linux/tools/perf/Documentation/perf-annotate.txt (revision 606b2f490fb80e55d05cf0e6cec0b6c0ff0fc18f)
1perf-annotate(1)
2================
3
4NAME
5----
6perf-annotate - Read perf.data (created by perf record) and display annotated code
7
8SYNOPSIS
9--------
10[verse]
11'perf annotate' [-i <file> | --input=file] symbol_name
12
13DESCRIPTION
14-----------
15This command reads the input file and displays an annotated version of the
16code. If the object file has debug symbols then the source code will be
17displayed alongside assembly code.
18
19If there is no debug info in the object, then annotated assembly is displayed.
20
21OPTIONS
22-------
23-i::
24--input=::
25        Input file name. (default: perf.data)
26
27SEE ALSO
28--------
29linkperf:perf-record[1]
30