perf-annotate.txt 949 B

123456789101112131415161718192021222324252627282930313233343536
  1. perf-annotate(1)
  2. ================
  3. NAME
  4. ----
  5. perf-annotate - Read perf.data (created by perf record) and display annotated code
  6. SYNOPSIS
  7. --------
  8. [verse]
  9. 'perf annotate' [-i <file> | --input=file] [symbol_name]
  10. DESCRIPTION
  11. -----------
  12. This command reads the input file and displays an annotated version of the
  13. code. If the object file has debug symbols then the source code will be
  14. displayed alongside assembly code.
  15. If there is no debug info in the object, then annotated assembly is displayed.
  16. OPTIONS
  17. -------
  18. -i::
  19. --input=::
  20. Input file name. (default: perf.data)
  21. --stdio:: Use the stdio interface.
  22. --tui:: Use the TUI interface Use of --tui requires a tty, if one is not
  23. present, as when piping to other commands, the stdio interface is
  24. used. This interfaces starts by centering on the line with more
  25. samples, TAB/UNTAB cycles thru the lines with more samples.
  26. SEE ALSO
  27. --------
  28. linkperf:perf-record[1], linkperf:perf-report[1]