Skip to content

Commit 0f15dc0

Browse files
chrisduerrkchibisov
authored andcommitted
Switch to flamegraph-rs script
This cleans up the Alacritty scripts a bit by removing some of them which are not recommended to be used anymore and switching from the official FlameGraph tool to the more specialized Rust FlameGraph implementation.
1 parent 4cc6421 commit 0f15dc0

File tree

4 files changed

+23
-175
lines changed

4 files changed

+23
-175
lines changed

.gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# FlameGraph script
2-
FlameGraph
3-
41
# Rust build directory
52
**/target
63

@@ -33,3 +30,7 @@ alacritty_*_source.tar.bz2
3330
*.msi
3431
*.wixobj
3532
*.wixpdb
33+
34+
# Perf tools
35+
perf.data*
36+
flamegraph.svg

scripts/apply-tilix-colorscheme.py

-112
This file was deleted.

scripts/create-flamegraph.sh

+19-26
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,29 @@
33
# The full path to the script directory, regardless of pwd.
44
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
55

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-
236
# Make sure perf is available.
247
if [ ! -x "$(command -v perf)" ]
258
then
26-
echo "Cannot find perf, please make sure it's installed"
9+
echo "Cannot find perf, please make sure it's installed."
2710
exit 1
2811
fi
2912

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
3620

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

scripts/migrate_ref_tests.rb

-34
This file was deleted.

0 commit comments

Comments
 (0)