Skip to content

Commit

Permalink
Auto merge of #46008 - alexcrichton:update-llvm, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bors committed Nov 25, 2017
2 parents a550f2d + 95e9609 commit db16292
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 7 deletions.
4 changes: 1 addition & 3 deletions src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -624,9 +624,7 @@ impl<'a> Builder<'a> {
cargo.arg("--release");
}

if mode != Mode::Libstd && // FIXME(#45320)
mode != Mode::Libtest && // FIXME(#45511)
self.config.rust_codegen_units.is_none() &&
if self.config.rust_codegen_units.is_none() &&
self.build.is_rust_llvm(compiler.host)
{
cargo.env("RUSTC_THINLTO", "1");
Expand Down
2 changes: 1 addition & 1 deletion src/libcompiler_builtins
1 change: 1 addition & 0 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@
#![feature(doc_spotlight)]
#![cfg_attr(test, feature(update_panic_count))]
#![cfg_attr(windows, feature(const_atomic_ptr_new))]
#![cfg_attr(windows, feature(used))]

#![default_lib_allocator]

Expand Down
3 changes: 2 additions & 1 deletion src/libstd/sys/windows/thread_local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,9 @@ unsafe fn register_dtor(key: Key, dtor: Dtor) {
// the address of the symbol to ensure it sticks around.

#[link_section = ".CRT$XLB"]
#[linkage = "external"]
#[allow(dead_code, unused_variables)]
#[used] // we don't want LLVM eliminating this symbol for any reason, and
// when the symbol makes it to the linker the linker will take over
pub static p_thread_callback: unsafe extern "system" fn(c::LPVOID, c::DWORD,
c::LPVOID) =
on_tls_callback;
Expand Down
11 changes: 10 additions & 1 deletion src/test/run-make/sanitizer-leak/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
-include ../tools.mk

LOG := $(TMPDIR)/log.txt

# FIXME(#46126) ThinLTO for libstd broke this test
ifeq (1,0)
all:
ifeq ($(TARGET),x86_64-unknown-linux-gnu)
ifdef SANITIZER_SUPPORT
$(RUSTC) -C opt-level=1 -g -Z sanitizer=leak -Z print-link-args leak.rs | grep -q librustc_lsan
$(TMPDIR)/leak 2>&1 | grep -q 'detected memory leaks'
$(TMPDIR)/leak 2>&1 | tee $(LOG)
grep -q 'detected memory leaks' $(LOG)
endif
endif

else
all:
endif

41 changes: 41 additions & 0 deletions src/test/run-pass/lto-still-runs-thread-dtors.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// compile-flags: -C lto
// no-prefer-dynamic
// ignore-emscripten no threads support

use std::thread;

static mut HIT: usize = 0;

thread_local!(static A: Foo = Foo);

struct Foo;

impl Drop for Foo {
fn drop(&mut self) {
unsafe {
HIT += 1;
}
}
}

fn main() {
unsafe {
assert_eq!(HIT, 0);
thread::spawn(|| {
assert_eq!(HIT, 0);
A.with(|_| ());
assert_eq!(HIT, 0);
}).join().unwrap();
assert_eq!(HIT, 1);
}
}

0 comments on commit db16292

Please sign in to comment.