Skip to content

Commit 88072f2

Browse files
committed
Fix macos tests
1 parent b36208b commit 88072f2

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

mallockit/macros/src/lib.rs

+11
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ pub fn plan(_attr: TokenStream, item: TokenStream) -> TokenStream {
4848
#[cfg(any(feature = "malloc", feature = "mallockit/malloc"))]
4949
#[::mallockit::ctor]
5050
unsafe fn ctor() {
51+
<<Plan as ::mallockit::Plan>::Mutator as ::mallockit::mutator::TLS>::current();
5152
::mallockit::util::sys::hooks::process_start(&*PLAN);
5253
}
5354

@@ -92,20 +93,30 @@ pub fn mutator(_attr: TokenStream, item: TokenStream) -> TokenStream {
9293

9394

9495
mod __mallockit_mutator {
96+
#[cfg(not(target_os = "macos"))]
9597
fn init() -> super::#name {
9698
::mallockit::mutator::init_pthread_specific();
9799
<super::#name as ::mallockit::Mutator>::new()
98100
}
99101

102+
#[cfg(not(target_os = "macos"))]
100103
#[thread_local]
101104
pub(super) static mut MUTATOR: ::mallockit::util::Lazy<super::#name, ::mallockit::util::Local> = ::mallockit::util::Lazy::new(init);
102105

103106
#[no_mangle]
107+
#[cfg(not(target_os = "macos"))]
104108
extern "C" fn mallockit_pthread_destructor() {
105109
unsafe {
106110
MUTATOR.reset(init);
107111
}
108112
}
113+
114+
#[no_mangle]
115+
#[cfg(target_os = "macos")]
116+
extern "C" fn mallockit_pthread_destructor() {
117+
use crate::mallockit::mutator::TLS;
118+
<super::#name as ::mallockit::mutator::TLS>::current().reset();
119+
}
109120
}
110121

111122
impl ::mallockit::mutator::TLS for #name {

mallockit/src/mutator.rs

+10-4
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ pub trait TLS: Sized {
100100
fn current() -> &'static mut Self {
101101
unsafe { &mut *macos_tls::get_tls::<Self>() }
102102
}
103+
104+
fn reset(&mut self) {
105+
*self = Self::new();
106+
}
103107
}
104108

105109
impl TLS for u8 {
@@ -211,8 +215,7 @@ mod macos_tls {
211215
fn init_tls<T: TLS>() -> *mut (InternalTLS, T) {
212216
let ptr = alloc_tls::<(InternalTLS, T)>();
213217
unsafe {
214-
(*ptr).0 = InternalTLS::new();
215-
(*ptr).1 = T::new();
218+
std::ptr::write(&mut (*ptr).0, InternalTLS::new());
216219
unsafe {
217220
let mut tcb: *mut *mut T;
218221
asm! {
@@ -224,6 +227,8 @@ mod macos_tls {
224227
}
225228
tcb.add(SLOT).write(ptr as *mut T)
226229
}
230+
std::ptr::write(&mut (*ptr).1, T::new());
231+
crate::mutator::init_pthread_specific();
227232
}
228233
ptr
229234
}
@@ -234,9 +239,10 @@ mod macos_tls {
234239
fn init_tls<T: TLS>() -> *mut (InternalTLS, T) {
235240
let ptr = alloc_tls::<(InternalTLS, T)>();
236241
unsafe {
237-
(*ptr).0 = InternalTLS::new();
238-
(*ptr).1 = T::new();
242+
std::ptr::write(&mut (*ptr).0, InternalTLS::new());
239243
asm!("mov gs:{offset}, {0}", in(reg) ptr, offset = const OFFSET);
244+
std::ptr::write(&mut (*ptr).1, T::new());
245+
crate::mutator::init_pthread_specific();
240246
}
241247
ptr
242248
}

0 commit comments

Comments
 (0)