|
3 | 3 | # The full path to the script directory, regardless of pwd.
|
4 | 4 | DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
5 | 5 |
|
6 |
| -# Current UNIX time. |
7 |
| -TIME=$(date +%s) |
8 |
| - |
9 |
| -# Make sure FlameGraph scripts are available. |
10 |
| -if [ ! -e $DIR/FlameGraph ] |
11 |
| -then |
12 |
| - git clone https://github.com/BrendanGregg/FlameGraph \ |
13 |
| - $DIR/create-flamegraph/FlameGraph |
14 |
| -fi |
15 |
| - |
16 |
| -# Make sure a release build of Alacritty is available. |
17 |
| -if [ ! -e $DIR/../target/release/alacritty ] |
18 |
| -then |
19 |
| - echo "Must build alacritty first: cargo build --release" |
20 |
| - exit 1 |
21 |
| -fi |
22 |
| - |
23 | 6 | # Make sure perf is available.
|
24 | 7 | if [ ! -x "$(command -v perf)" ]
|
25 | 8 | then
|
26 |
| - echo "Cannot find perf, please make sure it's installed" |
| 9 | + echo "Cannot find perf, please make sure it's installed." |
27 | 10 | exit 1
|
28 | 11 | fi
|
29 | 12 |
|
30 |
| -# Run perf, this will block while alacritty runs. |
31 |
| -perf record -g -F 99 $DIR/../target/release/alacritty |
32 |
| -perf script \ |
33 |
| - | $DIR/create-flamegraph/FlameGraph/stackcollapse-perf.pl \ |
34 |
| - | $DIR/create-flamegraph/FlameGraph/flamegraph.pl --width 1920 \ |
35 |
| - > flame-$TIME.svg |
| 13 | +# Install cargo-flamegraph |
| 14 | +installed_flamegraph=0 |
| 15 | +if [ ! -x "$(command -v cargo-flamegraph)" ]; then |
| 16 | + echo "cargo-flamegraph not installed; installing ..." |
| 17 | + cargo install flamegraph |
| 18 | + installed_flamegraph=1 |
| 19 | +fi |
36 | 20 |
|
37 |
| -# Tell users where the file is. |
38 |
| -echo "Flame graph created at: file://$(pwd)/flame-$TIME.svg" |
| 21 | +# Create flamegraph |
| 22 | +cargo flamegraph --bin=alacritty -- $@ |
| 23 | + |
| 24 | +# Unintall cargo-flamegraph if it has been installed with this script |
| 25 | +if [ $installed_flamegraph == 1 ]; then |
| 26 | + read -p "Would you like to uninstall cargo-flamegraph? [Y/n] " -n 1 -r |
| 27 | + echo |
| 28 | + if [[ "$REPLY" =~ ^[^Nn]*$ ]]; then |
| 29 | + cargo uninstall flamegraph |
| 30 | + fi |
| 31 | +fi |
0 commit comments