Expand description
Support for jitdump files which can be used by perf for profiling jitted code. Spec definitions for the output format is as described here: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/tools/perf/Documentation/jitdump-specification.txt
Usage Example: Record sudo perf record -k 1 -e instructions:u target/debug/wasmtime -g –profile=jitdump test.wasm Combine sudo perf inject -v -j -i perf.data -o perf.jit.data Report sudo perf report -i perf.jit.data -F+period,srcline
Structs§
- Code
Load Record - The CodeLoadRecord is used for describing jitted functions
- Debug
Entry - Describes source line information for a jitted function
- Debug
Info Record - Describes debug information for a jitted function. An array of debug entries are appended to this record during writing. Note, this record must precede the code load record that describes the same jitted function.
- File
Header - Fixed-sized header for each jitdump file
- JitDump
File - Interface for driving the creation of jitdump files
- Record
Header - Each record starts with this fixed size record header which describes the record that follows
Enums§
- Record
Id - Defines jitdump record types