itrace.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. i synthesize instructions events
  2. b synthesize branches events
  3. c synthesize branches events (calls only)
  4. r synthesize branches events (returns only)
  5. x synthesize transactions events
  6. w synthesize ptwrite events
  7. p synthesize power events
  8. e synthesize error events
  9. d create a debug log
  10. g synthesize a call chain (use with i or x)
  11. l synthesize last branch entries (use with i or x)
  12. s skip initial number of events
  13. The default is all events i.e. the same as --itrace=ibxwpe,
  14. except for perf script where it is --itrace=ce
  15. In addition, the period (default 100000, except for perf script where it is 1)
  16. for instructions events can be specified in units of:
  17. i instructions
  18. t ticks
  19. ms milliseconds
  20. us microseconds
  21. ns nanoseconds (default)
  22. Also the call chain size (default 16, max. 1024) for instructions or
  23. transactions events can be specified.
  24. Also the number of last branch entries (default 64, max. 1024) for
  25. instructions or transactions events can be specified.
  26. It is also possible to skip events generated (instructions, branches, transactions,
  27. ptwrite, power) at the beginning. This is useful to ignore initialization code.
  28. --itrace=i0nss1000000
  29. skips the first million instructions.