perf-probe.txt 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. 1) Define event based on function name
  52. [EVENT=]FUNC[@SRC][:RLN|+OFFS|%return|;PTN] [ARG ...]
  53. 2) Define event based on source file with line number
  54. [EVENT=]SRC:ALN [ARG ...]
  55. 3) Define event based on source file with lazy pattern
  56. [EVENT=]SRC;PTN [ARG ...]
  57. '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'.
  58. '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. And ';PTN' means lazy matching pattern (see LAZY MATCHING). Note that ';PTN' must be the end of the probe point definition. In addition, '@SRC' specifies a source file which has that function.
  59. It is also possible to specify a probe point by the source line number or lazy matching by using 'SRC:ALN' or 'SRC;PTN' syntax, where 'SRC' is the source file path, ':ALN' is the line number and ';PTN' is the lazy matching pattern.
  60. '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).
  61. LINE SYNTAX
  62. -----------
  63. Line range is descripted by following syntax.
  64. "FUNC[:RLN[+NUM|:RLN2]]|SRC:ALN[+NUM|:ALN2]"
  65. FUNC specifies the function name of showing lines. 'RLN' is the start line
  66. number from function entry line, and 'RLN2' is the end line number. As same as
  67. probe syntax, 'SRC' means the source file path, 'ALN' is start line number,
  68. and 'ALN2' is end line number in the file. It is also possible to specify how
  69. many lines to show by using 'NUM'.
  70. 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.
  71. LAZY MATCHING
  72. -------------
  73. The lazy line matching is similar to glob matching but ignoring spaces in both of pattern and target. So this accepts wildcards('*', '?') and character classes(e.g. [a-z], [!A-Z]).
  74. e.g.
  75. 'a=*' can matches 'a=b', 'a = b', 'a == b' and so on.
  76. This provides some sort of flexibility and robustness to probe point definitions against minor code changes. For example, actual 10th line of schedule() can be moved easily by modifying schedule(), but the same line matching 'rq=cpu_rq*' may still exist in the function.)
  77. EXAMPLES
  78. --------
  79. Display which lines in schedule() can be probed:
  80. ./perf probe --line schedule
  81. Add a probe on schedule() function 12th line with recording cpu local variable:
  82. ./perf probe schedule:12 cpu
  83. or
  84. ./perf probe --add='schedule:12 cpu'
  85. this will add one or more probes which has the name start with "schedule".
  86. Add probes on lines in schedule() function which calls update_rq_clock().
  87. ./perf probe 'schedule;update_rq_clock*'
  88. or
  89. ./perf probe --add='schedule;update_rq_clock*'
  90. Delete all probes on schedule().
  91. ./perf probe --del='schedule*'
  92. SEE ALSO
  93. --------
  94. linkperf:perf-trace[1], linkperf:perf-record[1]