├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── jitdumpdump.rs └── perfdatainfo.rs └── src ├── build_id_event.rs ├── constants.rs ├── dso_info.rs ├── dso_key.rs ├── error.rs ├── feature_sections.rs ├── features.rs ├── file_reader.rs ├── header.rs ├── jitdump ├── buffered_reader.rs ├── error.rs ├── header.rs ├── jitdump_reader.rs ├── mod.rs ├── read_exact.rs ├── record.rs └── records.rs ├── lib.rs ├── perf_file.rs ├── record.rs ├── section.rs ├── simpleperf.rs ├── sorter.rs └── thread_map.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /fixtures 3 | .DS_Store 4 | /Cargo.lock 5 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/README.md -------------------------------------------------------------------------------- /examples/jitdumpdump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/examples/jitdumpdump.rs -------------------------------------------------------------------------------- /examples/perfdatainfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/examples/perfdatainfo.rs -------------------------------------------------------------------------------- /src/build_id_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/build_id_event.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/dso_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/dso_info.rs -------------------------------------------------------------------------------- /src/dso_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/dso_key.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/feature_sections.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/feature_sections.rs -------------------------------------------------------------------------------- /src/features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/features.rs -------------------------------------------------------------------------------- /src/file_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/file_reader.rs -------------------------------------------------------------------------------- /src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/header.rs -------------------------------------------------------------------------------- /src/jitdump/buffered_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/buffered_reader.rs -------------------------------------------------------------------------------- /src/jitdump/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/error.rs -------------------------------------------------------------------------------- /src/jitdump/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/header.rs -------------------------------------------------------------------------------- /src/jitdump/jitdump_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/jitdump_reader.rs -------------------------------------------------------------------------------- /src/jitdump/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/mod.rs -------------------------------------------------------------------------------- /src/jitdump/read_exact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/read_exact.rs -------------------------------------------------------------------------------- /src/jitdump/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/record.rs -------------------------------------------------------------------------------- /src/jitdump/records.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/jitdump/records.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/perf_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/perf_file.rs -------------------------------------------------------------------------------- /src/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/record.rs -------------------------------------------------------------------------------- /src/section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/section.rs -------------------------------------------------------------------------------- /src/simpleperf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/simpleperf.rs -------------------------------------------------------------------------------- /src/sorter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/sorter.rs -------------------------------------------------------------------------------- /src/thread_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstange/linux-perf-data/HEAD/src/thread_map.rs --------------------------------------------------------------------------------