perf-probe.txt 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. -n::
  49. --dry-run::
  50. Dry run. With this option, --add and --del doesn't execute actual
  51. adding and removal operations.
  52. --max-probes::
  53. Set the maximum number of probe points for an event. Default is 128.
  54. PROBE SYNTAX
  55. ------------
  56. Probe points are defined by following syntax.
  57. 1) Define event based on function name
  58. [EVENT=]FUNC[@SRC][:RLN|+OFFS|%return|;PTN] [ARG ...]
  59. 2) Define event based on source file with line number
  60. [EVENT=]SRC:ALN [ARG ...]
  61. 3) Define event based on source file with lazy pattern
  62. [EVENT=]SRC;PTN [ARG ...]
  63. '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'.
  64. '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.
  65. 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.
  66. 'ARG' specifies the arguments of this probe point, (see PROBE ARGUMENT).
  67. PROBE ARGUMENT
  68. --------------
  69. Each probe argument follows below syntax.
  70. [NAME=]LOCALVAR|$retval|%REG|@SYMBOL[:TYPE]
  71. 'NAME' specifies the name of this argument (optional). You can use the name of local variable, local data structure member (e.g. var->field, var.field2), or kprobe-tracer argument format (e.g. $retval, %ax, etc). Note that the name of this argument will be set as the last member name if you specify a local data structure member (e.g. field2 for 'var->field1.field2'.)
  72. 'TYPE' casts the type of this argument (optional). If omitted, perf probe automatically set the type based on debuginfo.
  73. LINE SYNTAX
  74. -----------
  75. Line range is descripted by following syntax.
  76. "FUNC[:RLN[+NUM|-RLN2]]|SRC:ALN[+NUM|-ALN2]"
  77. FUNC specifies the function name of showing lines. 'RLN' is the start line
  78. number from function entry line, and 'RLN2' is the end line number. As same as
  79. probe syntax, 'SRC' means the source file path, 'ALN' is start line number,
  80. and 'ALN2' is end line number in the file. It is also possible to specify how
  81. many lines to show by using 'NUM'.
  82. 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.
  83. LAZY MATCHING
  84. -------------
  85. 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]).
  86. e.g.
  87. 'a=*' can matches 'a=b', 'a = b', 'a == b' and so on.
  88. 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.)
  89. EXAMPLES
  90. --------
  91. Display which lines in schedule() can be probed:
  92. ./perf probe --line schedule
  93. Add a probe on schedule() function 12th line with recording cpu local variable:
  94. ./perf probe schedule:12 cpu
  95. or
  96. ./perf probe --add='schedule:12 cpu'
  97. this will add one or more probes which has the name start with "schedule".
  98. Add probes on lines in schedule() function which calls update_rq_clock().
  99. ./perf probe 'schedule;update_rq_clock*'
  100. or
  101. ./perf probe --add='schedule;update_rq_clock*'
  102. Delete all probes on schedule().
  103. ./perf probe --del='schedule*'
  104. SEE ALSO
  105. --------
  106. linkperf:perf-trace[1], linkperf:perf-record[1]