itrace.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. e synthesize error events
  7. d create a debug log
  8. g synthesize a call chain (use with i or x)
  9. l synthesize last branch entries (use with i or x)
  10. s skip initial number of events
  11. The default is all events i.e. the same as --itrace=ibxe
  12. In addition, the period (default 100000) for instructions events
  13. can be specified in units of:
  14. i instructions
  15. t ticks
  16. ms milliseconds
  17. us microseconds
  18. ns nanoseconds (default)
  19. Also the call chain size (default 16, max. 1024) for instructions or
  20. transactions events can be specified.
  21. Also the number of last branch entries (default 64, max. 1024) for
  22. instructions or transactions events can be specified.
  23. It is also possible to skip events generated (instructions, branches, transactions)
  24. at the beginning. This is useful to ignore initialization code.
  25. --itrace=i0nss1000000
  26. skips the first million instructions.