Skip to content

Commit f72c897

Browse files
committed
allocate before calling T::default in <Arc<T>>::default()
Same rationale as in the previous commit.
1 parent 2f4ef71 commit f72c897

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

library/alloc/src/sync.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -3447,7 +3447,13 @@ impl<T: Default> Default for Arc<T> {
34473447
/// assert_eq!(*x, 0);
34483448
/// ```
34493449
fn default() -> Arc<T> {
3450-
Arc::new(Default::default())
3450+
let x = Box::into_non_null(Box::write(Box::new_uninit(), ArcInner {
3451+
strong: atomic::AtomicUsize::new(1),
3452+
weak: atomic::AtomicUsize::new(1),
3453+
data: T::default(),
3454+
}));
3455+
// SAFETY: `Box::into_non_null` consumes the `Box`
3456+
unsafe { Self::from_inner(x) }
34513457
}
34523458
}
34533459

tests/codegen/placement-new.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ pub fn box_default_inplace() -> Box<(String, String)> {
1919
// CHECK-LABEL: @arc_default_inplace
2020
#[no_mangle]
2121
pub fn arc_default_inplace() -> Arc<(String, String)> {
22-
// CHECK: [[ALLOCA:%.*]] = alloca
22+
// CHECK-NOT: alloca
2323
// CHECK: [[ARC:%.*]] = {{.*}}call {{.*}}__rust_alloc(
24-
// CHECK: call void @llvm.memcpy.p0.p0.i64(
24+
// CHECK-NOT: call void @llvm.memcpy.p0.p0.i64(
2525
// CHECK: ret ptr [[ARC]]
2626
Arc::default()
2727
}

0 commit comments

Comments
 (0)