perf-probe.txt 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. perf-probe(1)
  2. =============
  3. NAME
  4. ----
  5. perf-probe - Define new dynamic tracepoints
  6. SYNOPSIS
  7. --------
  8. [verse]
  9. 'perf probe' [options] --add='PROBE' [...]
  10. or
  11. 'perf probe' [options] PROBE
  12. or
  13. 'perf probe' [options] --del='[GROUP:]EVENT' [...]
  14. or
  15. 'perf probe' --list
  16. or
  17. 'perf probe' --line='FUNC[:RLN[+NUM|:RLN2]]|SRC:ALN[+NUM|:ALN2]'
  18. DESCRIPTION
  19. -----------
  20. This command defines dynamic tracepoint events, by symbol and registers
  21. without debuginfo, or by C expressions (C line numbers, C function names,
  22. and C local variables) with debuginfo.
  23. OPTIONS
  24. -------
  25. -k::
  26. --vmlinux=PATH::
  27. Specify vmlinux path which has debuginfo (Dwarf binary).
  28. -v::
  29. --verbose::
  30. Be more verbose (show parsed arguments, etc).
  31. -a::
  32. --add=::
  33. Define a probe event (see PROBE SYNTAX for detail).
  34. -d::
  35. --del=::
  36. Delete probe events. This accepts glob wildcards('*', '?') and character
  37. classes(e.g. [a-z], [!A-Z]).
  38. -l::
  39. --list::
  40. List up current probe events.
  41. -L::
  42. --line=::
  43. Show source code lines which can be probed. This needs an argument
  44. which specifies a range of the source code. (see LINE SYNTAX for detail)
  45. -f::
  46. --force::
  47. Forcibly add events with existing name.
  48. PROBE SYNTAX
  49. ------------
  50. Probe points are defined by following syntax.
  51. "[EVENT=]FUNC[+OFFS|:RLN|%return][@SRC]|SRC:ALN [ARG ...]"
  52. 'EVENT' specifies the name of new event, if omitted, it will be set the name of the probed function. Currently, event group name is set as 'probe'.
  53. 'FUNC' specifies a probed function name, and it may have one of the following options; '+OFFS' is the offset from function entry address in bytes, 'RLN' is the relative-line number from function entry line, and '%return' means that it probes function return. In addition, 'SRC' specifies a source file which has that function.
  54. It is also possible to specify a probe point by the source line number by using 'SRC:ALN' syntax, where 'SRC' is the source file path and 'ALN' is the line number.
  55. 'ARG' specifies the arguments of this probe point. You can use the name of local variable, or kprobe-tracer argument format (e.g. $retval, %ax, etc).
  56. LINE SYNTAX
  57. -----------
  58. Line range is descripted by following syntax.
  59. "FUNC[:RLN[+NUM|:RLN2]]|SRC:ALN[+NUM|:ALN2]"
  60. FUNC specifies the function name of showing lines. 'RLN' is the start line
  61. number from function entry line, and 'RLN2' is the end line number. As same as
  62. probe syntax, 'SRC' means the source file path, 'ALN' is start line number,
  63. and 'ALN2' is end line number in the file. It is also possible to specify how
  64. many lines to show by using 'NUM'.
  65. So, "source.c:100-120" shows lines between 100th to l20th in source.c file. And "func:10+20" shows 20 lines from 10th line of func function.
  66. EXAMPLES
  67. --------
  68. Display which lines in schedule() can be probed:
  69. ./perf probe --line schedule
  70. Add a probe on schedule() function 12th line with recording cpu local variable:
  71. ./perf probe schedule:12 cpu
  72. or
  73. ./perf probe --add='schedule:12 cpu'
  74. this will add one or more probes which has the name start with "schedule".
  75. Delete all probes on schedule().
  76. ./perf probe --del='schedule*'
  77. SEE ALSO
  78. --------
  79. linkperf:perf-trace[1], linkperf:perf-record[1]