perf-annotate.txt 617 B

1234567891011121314151617181920212223242526272829
  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. SEE ALSO
  22. --------
  23. linkperf:perf-record[1]