redox-kprofiling 0.1.0

Conversion tool from Redox kernel profiling data into perf script.
1
2
3
4
5
6
7
8
9
10
11
12
# Usage

```bash

nm -CS /path/to/kernel >/path/to/ksym

# OPTIONS: a combination of o, x, and/or i (see source code)
# FREQ: CPU frequency in GHz (assumes constant_tsc, check lscpu on Linux)

cargo run -- /path/to/redoxfs/root/profiling.txt /path/to/ksym OPTIONS FREQ | inferno-collapse-perf | inferno-flamegraph >/path/to/flamegraph.svg

```