Skip to content

Commit 9318ae3

Browse files
author
Lukas Markeffsky
committed
Rc destructor: tweak inlining
1 parent 28223bd commit 9318ae3

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

alloc/src/rc.rs

+17-8
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,21 @@ impl<T: ?Sized, A: Allocator> Rc<T, A> {
376376
unsafe fn from_ptr_in(ptr: *mut RcInner<T>, alloc: A) -> Self {
377377
unsafe { Self::from_inner_in(NonNull::new_unchecked(ptr), alloc) }
378378
}
379+
380+
// Non-inlined part of `drop`.
381+
#[inline(never)]
382+
unsafe fn drop_slow(&mut self) {
383+
// Reconstruct the "strong weak" pointer and drop it when this
384+
// variable goes out of scope. This ensures that the memory is
385+
// deallocated even if the destructor of `T` panics.
386+
let _weak = Weak { ptr: self.ptr, alloc: &self.alloc };
387+
388+
// Destroy the contained object.
389+
// We cannot use `get_mut_unchecked` here, because `self.alloc` is borrowed.
390+
unsafe {
391+
ptr::drop_in_place(&mut (*self.ptr.as_ptr()).value);
392+
}
393+
}
379394
}
380395

381396
impl<T> Rc<T> {
@@ -2252,18 +2267,12 @@ unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Rc<T, A> {
22522267
/// drop(foo); // Doesn't print anything
22532268
/// drop(foo2); // Prints "dropped!"
22542269
/// ```
2270+
#[inline]
22552271
fn drop(&mut self) {
22562272
unsafe {
22572273
self.inner().dec_strong();
22582274
if self.inner().strong() == 0 {
2259-
// Reconstruct the "strong weak" pointer and drop it when this
2260-
// variable goes out of scope. This ensures that the memory is
2261-
// deallocated even if the destructor of `T` panics.
2262-
let _weak = Weak { ptr: self.ptr, alloc: &self.alloc };
2263-
2264-
// Destroy the contained object.
2265-
// We cannot use `get_mut_unchecked` here, because `self.alloc` is borrowed.
2266-
ptr::drop_in_place(&mut (*self.ptr.as_ptr()).value);
2275+
self.drop_slow();
22672276
}
22682277
}
22692278
}

0 commit comments

Comments
 (0)