Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

std: Run TLS destructors in a statically linked binary #28130

Merged
merged 1 commit into from
Sep 1, 2015

Conversation

alexcrichton
Copy link
Member

Running TLS destructors for a MSVC Windows binary requires the linker doesn't
elide the _tls_used or __tls_used symbols (depending on the architecture).
This is currently achieved via a #[link_args] hack but this only works for
dynamically linked binaries because the link arguments aren't propagated to
statically linked binaries.

This commit alters the strategy to instead emit a volatile load from those
symbols so LLVM can't elide it, forcing the reference to the symbol to stay
alive as long as the callback function stays alive (which we've made sure of
with the #[linkage] attribute).

Closes #28111

@rust-highfive
Copy link
Contributor

r? @huonw

(rust_highfive has picked a reviewer for you, use r? to override)

@alexcrichton
Copy link
Member Author

r? @brson

@rust-highfive rust-highfive assigned brson and unassigned huonw Aug 31, 2015
@alexcrichton alexcrichton force-pushed the fix-msvc-static-tls-dtor branch from 2a30798 to 0a4d162 Compare August 31, 2015 18:44
@brson
Copy link
Contributor

brson commented Aug 31, 2015

r=me w/ comment addressed

@alexcrichton alexcrichton force-pushed the fix-msvc-static-tls-dtor branch from 0a4d162 to 15820f0 Compare August 31, 2015 21:49
@alexcrichton
Copy link
Member Author

@bors: r=brson 15820f0f6d317992329c6e0a138b4870ca548992

@bors
Copy link
Collaborator

bors commented Sep 1, 2015

⌛ Testing commit 15820f0 with merge 407d811...

@bors
Copy link
Collaborator

bors commented Sep 1, 2015

💔 Test failed - auto-win-msvc-32-opt

Running TLS destructors for a MSVC Windows binary requires the linker doesn't
elide the `_tls_used` or `__tls_used` symbols (depending on the architecture).
This is currently achieved via a `#[link_args]` hack but this only works for
dynamically linked binaries because the link arguments aren't propagated to
statically linked binaries.

This commit alters the strategy to instead emit a volatile load from those
symbols so LLVM can't elide it, forcing the reference to the symbol to stay
alive as long as the callback function stays alive (which we've made sure of
with the `#[linkage]` attribute).

Closes rust-lang#28111
@alexcrichton alexcrichton force-pushed the fix-msvc-static-tls-dtor branch from 15820f0 to 9a3acec Compare September 1, 2015 18:05
@alexcrichton
Copy link
Member Author

@bors: r=brson 9a3acec

@bors
Copy link
Collaborator

bors commented Sep 1, 2015

⌛ Testing commit 9a3acec with merge cb9323e...

bors added a commit that referenced this pull request Sep 1, 2015
Running TLS destructors for a MSVC Windows binary requires the linker doesn't
elide the `_tls_used` or `__tls_used` symbols (depending on the architecture).
This is currently achieved via a `#[link_args]` hack but this only works for
dynamically linked binaries because the link arguments aren't propagated to
statically linked binaries.

This commit alters the strategy to instead emit a volatile load from those
symbols so LLVM can't elide it, forcing the reference to the symbol to stay
alive as long as the callback function stays alive (which we've made sure of
with the `#[linkage]` attribute).

Closes #28111
@bors bors merged commit 9a3acec into rust-lang:master Sep 1, 2015
@alexcrichton alexcrichton deleted the fix-msvc-static-tls-dtor branch September 2, 2015 17:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants