Skip to content

Commit 9027f82

Browse files
committed
introduce PGO on the dist-x86_64-msvc builder
This adds windows-specific behavior into the PGO script, and enables it on CI.
1 parent 736dbef commit 9027f82

File tree

3 files changed

+48
-14
lines changed

3 files changed

+48
-14
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ jobs:
410410
- name: dist-x86_64-msvc
411411
env:
412412
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --host=x86_64-pc-windows-msvc --target=x86_64-pc-windows-msvc --enable-full-tools --enable-profiler"
413-
SCRIPT: python x.py dist
413+
SCRIPT: PGO_HOST=x86_64-pc-windows-msvc src/ci/pgo.sh python x.py dist
414414
DIST_REQUIRE_ALL_TOOLS: 1
415415
os: windows-latest-xl
416416
- name: dist-i686-msvc

src/ci/github-actions/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ jobs:
625625
--target=x86_64-pc-windows-msvc
626626
--enable-full-tools
627627
--enable-profiler
628-
SCRIPT: python x.py dist
628+
SCRIPT: PGO_HOST=x86_64-pc-windows-msvc src/ci/pgo.sh python x.py dist
629629
DIST_REQUIRE_ALL_TOOLS: 1
630630
<<: *job-windows-xl
631631

src/ci/pgo.sh

+46-12
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,26 @@ DOWNLOADED_LLVM=/rustroot
1414
# The main directory where the build occurs, which can be different between linux and windows
1515
BUILD_ROOT=$CHECKOUT/obj
1616

17+
if isWindows; then
18+
CHECKOUT=$(pwd)
19+
DOWNLOADED_LLVM=$CHECKOUT/citools/clang-rust
20+
BUILD_ROOT=$CHECKOUT
21+
fi
22+
1723
# The various build artifacts used in other commands: to launch rustc builds, build the perf
1824
# collector, and run benchmarks to gather profiling data
1925
BUILD_ARTIFACTS=$BUILD_ROOT/build/$PGO_HOST
2026
RUSTC_STAGE_0=$BUILD_ARTIFACTS/stage0/bin/rustc
2127
CARGO_STAGE_0=$BUILD_ARTIFACTS/stage0/bin/cargo
2228
RUSTC_STAGE_2=$BUILD_ARTIFACTS/stage2/bin/rustc
2329

30+
# Windows needs these to have the .exe extension
31+
if isWindows; then
32+
RUSTC_STAGE_0="${RUSTC_STAGE_0}.exe"
33+
CARGO_STAGE_0="${CARGO_STAGE_0}.exe"
34+
RUSTC_STAGE_2="${RUSTC_STAGE_2}.exe"
35+
fi
36+
2437
# Make sure we have a temporary PGO work folder
2538
PGO_TMP=/tmp/tmp-pgo
2639
mkdir -p $PGO_TMP
@@ -80,13 +93,26 @@ LLVM_PROFILE_DIR=${LLVM_PROFILE_DIRECTORY_ROOT}/prof-%p python3 $CHECKOUT/x.py b
8093
--stage 2 library/std \
8194
--llvm-profile-generate
8295

83-
# Compile rustc perf
84-
cp -r /tmp/rustc-perf $RUSTC_PERF
85-
chown -R $(whoami): $RUSTC_PERF
96+
# Compile rustc-perf:
97+
# - get the expected commit source code: on linux, the Dockerfile downloads a source archive before
98+
# running this script. On Windows, we do that here.
99+
if isLinux; then
100+
cp -r /tmp/rustc-perf $RUSTC_PERF
101+
chown -R $(whoami): $RUSTC_PERF
102+
else
103+
# rustc-perf version from 2022-05-18
104+
PERF_COMMIT=f66cc8f3e04392b0e2fd811f21fd1ece6ebaded3
105+
retry curl -LS -o $PGO_TMP/perf.zip \
106+
https://github.com/rust-lang/rustc-perf/archive/$PERF_COMMIT.zip && \
107+
cd $PGO_TMP && unzip -q perf.zip && \
108+
mv rustc-perf-$PERF_COMMIT $RUSTC_PERF && \
109+
rm perf.zip
110+
fi
111+
112+
# - build rustc-perf's collector ahead of time, which is needed to make sure the rustc-fake binary
113+
# used by the collector is present.
86114
cd $RUSTC_PERF
87115

88-
# Build rustc-perf's collector ahead of time, which is needed to make sure the rustc-fake
89-
# binary used by the collector is present.
90116
RUSTC=$RUSTC_STAGE_0 \
91117
RUSTC_BOOTSTRAP=1 \
92118
$CARGO_STAGE_0 build -p collector
@@ -128,13 +154,21 @@ python3 $CHECKOUT/x.py build --target=$PGO_HOST --host=$PGO_HOST \
128154

129155
# Here we're profiling the `rustc` frontend, so we also include `Check`.
130156
# The benchmark set includes various stress tests that put the frontend under pressure.
131-
# The profile data is written into a single filepath that is being repeatedly merged when each
132-
# rustc invocation ends. Empirically, this can result in some profiling data being lost.
133-
# That's why we override the profile path to include the PID. This will produce many more profiling
134-
# files, but the resulting profile will produce a slightly faster rustc binary.
135-
LLVM_PROFILE_FILE=${RUSTC_PROFILE_DIRECTORY_ROOT}/default_%m_%p.profraw gather_profiles \
136-
"Check,Debug,Opt" "All" \
137-
"externs,ctfe-stress-5,cargo-0.60.0,token-stream-stress,match-stress,tuple-stress,diesel-1.4.8,bitmaps-3.1.0"
157+
if isLinux; then
158+
# The profile data is written into a single filepath that is being repeatedly merged when each
159+
# rustc invocation ends. Empirically, this can result in some profiling data being lost. That's
160+
# why we override the profile path to include the PID. This will produce many more profiling
161+
# files, but the resulting profile will produce a slightly faster rustc binary.
162+
LLVM_PROFILE_FILE=${RUSTC_PROFILE_DIRECTORY_ROOT}/default_%m_%p.profraw gather_profiles \
163+
"Check,Debug,Opt" "All" \
164+
"externs,ctfe-stress-5,cargo-0.60.0,token-stream-stress,match-stress,tuple-stress,diesel-1.4.8,bitmaps-3.1.0"
165+
else
166+
# On windows, we don't do that yet (because it generates a lot of data, hitting disk space
167+
# limits on the builder), and use the default profraw merging behavior.
168+
gather_profiles \
169+
"Check,Debug,Opt" "All" \
170+
"externs,ctfe-stress-5,cargo-0.60.0,token-stream-stress,match-stress,tuple-stress,diesel-1.4.8,bitmaps-3.1.0"
171+
fi
138172

139173
RUSTC_PROFILE_MERGED_FILE=$PGO_TMP/rustc-pgo.profdata
140174

0 commit comments

Comments
 (0)