Skip to content

Commit

Permalink
Cache the TLS model in the crate context
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Nov 3, 2017
1 parent b233a6e commit ad1bb2e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/librustc_trans/consts.rs
Expand Up @@ -23,7 +23,6 @@ use monomorphize::Instance;
use type_::Type;
use type_of;
use rustc::ty;
use context::get_tls_model;

use rustc::hir;

Expand Down Expand Up @@ -197,7 +196,7 @@ pub fn get_static(ccx: &CrateContext, def_id: DefId) -> ValueRef {

for attr in attrs {
if attr.check_name("thread_local") {
llvm::set_thread_local_mode(g, get_tls_model(ccx.sess()));
llvm::set_thread_local_mode(g, ccx.tls_model());
}
}

Expand All @@ -216,7 +215,7 @@ pub fn get_static(ccx: &CrateContext, def_id: DefId) -> ValueRef {
// symbol and another one doesn't.
for attr in ccx.tcx().get_attrs(def_id).iter() {
if attr.check_name("thread_local") {
llvm::set_thread_local_mode(g, get_tls_model(ccx.sess()));
llvm::set_thread_local_mode(g, ccx.tls_model());
}
}
if ccx.use_dll_storage_attrs() && !ccx.tcx().is_foreign_item(def_id) {
Expand Down Expand Up @@ -307,7 +306,7 @@ pub fn trans_static<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
debuginfo::create_global_var_metadata(ccx, id, g);

if attr::contains_name(attrs, "thread_local") {
llvm::set_thread_local_mode(g, get_tls_model(ccx.sess()));
llvm::set_thread_local_mode(g, ccx.tls_model());
}

base::set_link_section(ccx, g, attrs);
Expand Down
10 changes: 9 additions & 1 deletion src/librustc_trans/context.rs
Expand Up @@ -52,6 +52,7 @@ pub struct SharedCrateContext<'a, 'tcx: 'a> {
tcx: TyCtxt<'a, 'tcx, 'tcx>,
check_overflow: bool,
use_dll_storage_attrs: bool,
tls_model: llvm::ThreadLocalMode,
}

/// The local portion of a `CrateContext`. There is one `LocalCrateContext`
Expand Down Expand Up @@ -166,7 +167,7 @@ pub fn get_reloc_model(sess: &Session) -> llvm::RelocMode {
}
}

pub fn get_tls_model(sess: &Session) -> llvm::ThreadLocalMode {
fn get_tls_model(sess: &Session) -> llvm::ThreadLocalMode {
let tls_model_arg = match sess.opts.cg.tls_model {
Some(ref s) => &s[..],
None => &sess.target.target.options.tls_model[..],
Expand Down Expand Up @@ -299,10 +300,13 @@ impl<'b, 'tcx> SharedCrateContext<'b, 'tcx> {

let check_overflow = tcx.sess.overflow_checks();

let tls_model = get_tls_model(&tcx.sess);

SharedCrateContext {
tcx,
check_overflow,
use_dll_storage_attrs,
tls_model,
}
}

Expand Down Expand Up @@ -544,6 +548,10 @@ impl<'b, 'tcx> CrateContext<'b, 'tcx> {
self.shared.use_dll_storage_attrs()
}

pub fn tls_model(&self) -> llvm::ThreadLocalMode {
self.shared.tls_model
}

/// Generate a new symbol name with the given prefix. This symbol name must
/// only be used for definitions with `internal` or `private` linkage.
pub fn generate_local_symbol_name(&self, prefix: &str) -> String {
Expand Down

0 comments on commit ad1bb2e

Please sign in to comment.