Skip to content

Commit 3d54764

Browse files
committed
ci: Enable opt-dist for dist-aarch64-linux builds
Enable optimised AArch64 dist builds with the opt-dist pipeline. For the time being, disable bolt on aarch64 due to upstream bolt bugs.
1 parent a2016aa commit 3d54764

File tree

3 files changed

+36
-10
lines changed

3 files changed

+36
-10
lines changed

src/ci/docker/host-aarch64/dist-aarch64-linux/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,12 @@ ENV RUST_CONFIGURE_ARGS \
9191
--set rust.debug-assertions=false \
9292
--set rust.jemalloc \
9393
--set rust.use-lld=true \
94+
--set rust.lto=thin \
9495
--set rust.codegen-units=1
9596

96-
ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS
97+
ENV SCRIPT python3 ../x.py build --set rust.debug=true opt-dist && \
98+
./build/$HOSTS/stage0-tools-bin/opt-dist linux-ci -- python3 ../x.py dist \
99+
--host $HOSTS --target $HOSTS --include-default-paths build-manifest bootstrap
97100

98101
ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=clang
99102
ENV LIBCURL_NO_PKG_CONFIG 1

src/tools/opt-dist/src/bolt.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use anyhow::Context;
22
use camino::{Utf8Path, Utf8PathBuf};
33

4+
use crate::environment::Environment;
45
use crate::exec::cmd;
56
use crate::training::BoltProfile;
67
use crate::utils::io::copy_file;
@@ -45,13 +46,21 @@ pub fn with_bolt_instrumented<F: FnOnce(&Utf8Path) -> anyhow::Result<R>, R>(
4546
}
4647

4748
/// Optimizes the file at `path` with BOLT in-place using the given `profile`.
48-
pub fn bolt_optimize(path: &Utf8Path, profile: &BoltProfile) -> anyhow::Result<()> {
49+
pub fn bolt_optimize(
50+
path: &Utf8Path,
51+
profile: &BoltProfile,
52+
env: &Environment,
53+
) -> anyhow::Result<()> {
4954
// Copy the artifact to a new location, so that we do not use the same input and output file.
5055
// BOLT cannot handle optimizing when the input and output is the same file, because it performs
5156
// in-place patching.
5257
let temp_path = tempfile::NamedTempFile::new()?.into_temp_path();
5358
copy_file(path, &temp_path)?;
5459

60+
// FIXME: cdsplit in llvm-bolt is currently broken on AArch64, drop this once it's fixed upstream
61+
let split_strategy =
62+
if env.host_tuple().starts_with("aarch64") { "profile2" } else { "cdsplit" };
63+
5564
cmd(&["llvm-bolt"])
5665
.arg(temp_path.display())
5766
.arg("-data")
@@ -65,7 +74,7 @@ pub fn bolt_optimize(path: &Utf8Path, profile: &BoltProfile) -> anyhow::Result<(
6574
// Split function code into hot and code regions
6675
.arg("-split-functions")
6776
// Split using best available strategy (three-way splitting, Cache-Directed Sort)
68-
.arg("-split-strategy=cdsplit")
77+
.arg(format!("-split-strategy={split_strategy}"))
6978
// Split as many basic blocks as possible
7079
.arg("-split-all-cold")
7180
// Move jump tables to a separate section

src/tools/opt-dist/src/main.rs

+21-7
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,21 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
146146
let target_triple =
147147
std::env::var("PGO_HOST").expect("PGO_HOST environment variable missing");
148148

149+
let is_aarch64 = target_triple.starts_with("aarch64");
150+
151+
let mut skip_tests = vec![
152+
// Fails because of linker errors, as of June 2023.
153+
"tests/ui/process/nofile-limit.rs".to_string(),
154+
];
155+
156+
if is_aarch64 {
157+
skip_tests.extend([
158+
// Those tests fail only inside of Docker on aarch64, as of December 2024
159+
"tests/ui/consts/promoted_running_out_of_memory_issue-130687.rs".to_string(),
160+
"tests/ui/consts/large_const_alloc.rs".to_string(),
161+
]);
162+
}
163+
149164
let checkout_dir = Utf8PathBuf::from("/checkout");
150165
let env = EnvironmentBuilder::default()
151166
.host_tuple(target_triple)
@@ -155,11 +170,9 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
155170
.artifact_dir(Utf8PathBuf::from("/tmp/tmp-multistage/opt-artifacts"))
156171
.build_dir(checkout_dir.join("obj"))
157172
.shared_llvm(true)
158-
.use_bolt(true)
159-
.skipped_tests(vec![
160-
// Fails because of linker errors, as of June 2023.
161-
"tests/ui/process/nofile-limit.rs".to_string(),
162-
])
173+
// FIXME: Enable bolt for aarch64 once it's fixed upstream. Broken as of December 2024.
174+
.use_bolt(!is_aarch64)
175+
.skipped_tests(skip_tests)
163176
.build()?;
164177

165178
(env, shared.build_args)
@@ -304,7 +317,8 @@ fn execute_pipeline(
304317
// the final dist build. However, when BOLT optimizes an artifact, it does so *in-place*,
305318
// therefore it will actually optimize all the hard links, which means that the final
306319
// packaged `libLLVM.so` file *will* be BOLT optimized.
307-
bolt_optimize(&llvm_lib, &llvm_profile).context("Could not optimize LLVM with BOLT")?;
320+
bolt_optimize(&llvm_lib, &llvm_profile, env)
321+
.context("Could not optimize LLVM with BOLT")?;
308322

309323
let rustc_lib = io::find_file_in_dir(&libdir, "librustc_driver", ".so")?;
310324

@@ -319,7 +333,7 @@ fn execute_pipeline(
319333
print_free_disk_space()?;
320334

321335
// Now optimize the library with BOLT.
322-
bolt_optimize(&rustc_lib, &rustc_profile)
336+
bolt_optimize(&rustc_lib, &rustc_profile, env)
323337
.context("Could not optimize rustc with BOLT")?;
324338

325339
// LLVM is not being cleared here, we want to use the BOLT-optimized LLVM

0 commit comments

Comments
 (0)