Skip to content

Commit 0328e69

Browse files
Compile tools and internal libraries with the initial-exec TLS model
This should produce more efficient code, with fewer calls to __tls_get_addr. The tradeoff is that libraries using it won't work with dlopen, but that shouldn't be a problem for tools or for our own internal libraries. Co-authored-by: Mark Rousskov <[email protected]>
1 parent 9d78d1d commit 0328e69

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/bootstrap/builder.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,14 @@ impl<'a> Builder<'a> {
11401140
}
11411141
}
11421142

1143+
// Compile everything except libraries and proc macros with the more
1144+
// efficient initial-exec TLS model. This doesn't work with `dlopen`,
1145+
// so we can't use it by default in general, but we can use it for tools
1146+
// and our own internal libraries.
1147+
if !mode.must_support_dlopen() {
1148+
rustflags.arg("-Ztls-model=initial-exec");
1149+
}
1150+
11431151
if self.config.incremental {
11441152
cargo.env("CARGO_INCREMENTAL", "1");
11451153
} else {

src/bootstrap/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,10 @@ impl Mode {
332332
pub fn is_tool(&self) -> bool {
333333
matches!(self, Mode::ToolBootstrap | Mode::ToolRustc | Mode::ToolStd)
334334
}
335+
336+
pub fn must_support_dlopen(&self) -> bool {
337+
matches!(self, Mode::Std | Mode::Codegen)
338+
}
335339
}
336340

337341
impl Build {

0 commit comments

Comments
 (0)