Skip to content

Commit db16292

Browse files
committed
Auto merge of #46008 - alexcrichton:update-llvm, r=Mark-Simulacrum
rustbuild: Update LLVM and enable ThinLTO This commit updates LLVM to fix #45511 (https://reviews.llvm.org/D39981) and also reenables ThinLTO for libtest now that we shouldn't hit #45768. This also opportunistically enables ThinLTO for libstd which was previously blocked (#45661) on test failures related to debuginfo with a presumed cause of #45511. Closes #45511
2 parents a550f2d + 95e9609 commit db16292

File tree

7 files changed

+57
-7
lines changed

7 files changed

+57
-7
lines changed

src/bootstrap/builder.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -624,9 +624,7 @@ impl<'a> Builder<'a> {
624624
cargo.arg("--release");
625625
}
626626

627-
if mode != Mode::Libstd && // FIXME(#45320)
628-
mode != Mode::Libtest && // FIXME(#45511)
629-
self.config.rust_codegen_units.is_none() &&
627+
if self.config.rust_codegen_units.is_none() &&
630628
self.build.is_rust_llvm(compiler.host)
631629
{
632630
cargo.env("RUSTC_THINLTO", "1");

src/libstd/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
#![feature(doc_spotlight)]
333333
#![cfg_attr(test, feature(update_panic_count))]
334334
#![cfg_attr(windows, feature(const_atomic_ptr_new))]
335+
#![cfg_attr(windows, feature(used))]
335336

336337
#![default_lib_allocator]
337338

src/libstd/sys/windows/thread_local.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,9 @@ unsafe fn register_dtor(key: Key, dtor: Dtor) {
200200
// the address of the symbol to ensure it sticks around.
201201

202202
#[link_section = ".CRT$XLB"]
203-
#[linkage = "external"]
204203
#[allow(dead_code, unused_variables)]
204+
#[used] // we don't want LLVM eliminating this symbol for any reason, and
205+
// when the symbol makes it to the linker the linker will take over
205206
pub static p_thread_callback: unsafe extern "system" fn(c::LPVOID, c::DWORD,
206207
c::LPVOID) =
207208
on_tls_callback;
+10-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
-include ../tools.mk
22

3+
LOG := $(TMPDIR)/log.txt
4+
5+
# FIXME(#46126) ThinLTO for libstd broke this test
6+
ifeq (1,0)
37
all:
48
ifeq ($(TARGET),x86_64-unknown-linux-gnu)
59
ifdef SANITIZER_SUPPORT
610
$(RUSTC) -C opt-level=1 -g -Z sanitizer=leak -Z print-link-args leak.rs | grep -q librustc_lsan
7-
$(TMPDIR)/leak 2>&1 | grep -q 'detected memory leaks'
11+
$(TMPDIR)/leak 2>&1 | tee $(LOG)
12+
grep -q 'detected memory leaks' $(LOG)
13+
endif
814
endif
15+
16+
else
17+
all:
918
endif
1019

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// compile-flags: -C lto
12+
// no-prefer-dynamic
13+
// ignore-emscripten no threads support
14+
15+
use std::thread;
16+
17+
static mut HIT: usize = 0;
18+
19+
thread_local!(static A: Foo = Foo);
20+
21+
struct Foo;
22+
23+
impl Drop for Foo {
24+
fn drop(&mut self) {
25+
unsafe {
26+
HIT += 1;
27+
}
28+
}
29+
}
30+
31+
fn main() {
32+
unsafe {
33+
assert_eq!(HIT, 0);
34+
thread::spawn(|| {
35+
assert_eq!(HIT, 0);
36+
A.with(|_| ());
37+
assert_eq!(HIT, 0);
38+
}).join().unwrap();
39+
assert_eq!(HIT, 1);
40+
}
41+
}

0 commit comments

Comments
 (0)