2016-09-30 20:13:58 +00:00
|
|
|
// Copyright 2014-2015 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.
|
|
|
|
|
|
|
|
|
|
#![cfg(target_thread_local)]
|
|
|
|
|
#![unstable(feature = "thread_local_internals", issue = "0")]
|
|
|
|
|
|
|
|
|
|
// Since what appears to be glibc 2.18 this symbol has been shipped which
|
|
|
|
|
// GCC and clang both use to invoke destructors in thread_local globals, so
|
|
|
|
|
// let's do the same!
|
|
|
|
|
//
|
|
|
|
|
// Note, however, that we run on lots older linuxes, as well as cross
|
|
|
|
|
// compiling from a newer linux to an older linux, so we also have a
|
|
|
|
|
// fallback implementation to use as well.
|
|
|
|
|
//
|
|
|
|
|
// Due to rust-lang/rust#18804, make sure this is not generic!
|
2018-07-11 18:11:53 -07:00
|
|
|
#[cfg(any(target_os = "linux", target_os = "fuchsia"))]
|
2016-02-16 23:07:09 -08:00
|
|
|
pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern fn(*mut u8)) {
|
2016-09-30 20:13:58 +00:00
|
|
|
use libc;
|
2016-02-16 23:07:09 -08:00
|
|
|
use mem;
|
|
|
|
|
use sys_common::thread_local::register_dtor_fallback;
|
2016-09-30 20:13:58 +00:00
|
|
|
|
|
|
|
|
extern {
|
|
|
|
|
#[linkage = "extern_weak"]
|
|
|
|
|
static __dso_handle: *mut u8;
|
|
|
|
|
#[linkage = "extern_weak"]
|
|
|
|
|
static __cxa_thread_atexit_impl: *const libc::c_void;
|
|
|
|
|
}
|
|
|
|
|
if !__cxa_thread_atexit_impl.is_null() {
|
|
|
|
|
type F = unsafe extern fn(dtor: unsafe extern fn(*mut u8),
|
|
|
|
|
arg: *mut u8,
|
|
|
|
|
dso_handle: *mut u8) -> libc::c_int;
|
|
|
|
|
mem::transmute::<*const libc::c_void, F>(__cxa_thread_atexit_impl)
|
|
|
|
|
(dtor, t, &__dso_handle as *const _ as *mut _);
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
register_dtor_fallback(t, dtor);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-12 14:13:35 -04:00
|
|
|
// macOS's analog of the above linux function is this _tlv_atexit function.
|
2016-09-30 20:13:58 +00:00
|
|
|
// The disassembly of thread_local globals in C++ (at least produced by
|
|
|
|
|
// clang) will have this show up in the output.
|
|
|
|
|
#[cfg(target_os = "macos")]
|
2016-02-16 23:07:09 -08:00
|
|
|
pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern fn(*mut u8)) {
|
2016-09-30 20:13:58 +00:00
|
|
|
extern {
|
|
|
|
|
fn _tlv_atexit(dtor: unsafe extern fn(*mut u8),
|
|
|
|
|
arg: *mut u8);
|
|
|
|
|
}
|
|
|
|
|
_tlv_atexit(dtor, t);
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-16 23:07:09 -08:00
|
|
|
pub fn requires_move_before_drop() -> bool {
|
2017-03-12 14:13:35 -04:00
|
|
|
// The macOS implementation of TLS apparently had an odd aspect to it
|
2016-09-30 20:13:58 +00:00
|
|
|
// where the pointer we have may be overwritten while this destructor
|
|
|
|
|
// is running. Specifically if a TLS destructor re-accesses TLS it may
|
|
|
|
|
// trigger a re-initialization of all TLS variables, paving over at
|
|
|
|
|
// least some destroyed ones with initial values.
|
|
|
|
|
//
|
2017-03-12 14:13:35 -04:00
|
|
|
// This means that if we drop a TLS value in place on macOS that we could
|
2016-09-30 20:13:58 +00:00
|
|
|
// revert the value to its original state halfway through the
|
|
|
|
|
// destructor, which would be bad!
|
|
|
|
|
//
|
2017-03-12 14:13:35 -04:00
|
|
|
// Hence, we use `ptr::read` on macOS (to move to a "safe" location)
|
2016-09-30 20:13:58 +00:00
|
|
|
// instead of drop_in_place.
|
2016-02-16 23:07:09 -08:00
|
|
|
cfg!(target_os = "macos")
|
2016-09-30 20:13:58 +00:00
|
|
|
}
|