]> git.lizzy.rs Git - rust.git/blob - library/alloc/src/sync.rs
Rollup merge of #96714 - RalfJung:scalar-pair-debug, r=oli-obk
[rust.git] / library / alloc / src / sync.rs
1 #![stable(feature = "rust1", since = "1.0.0")]
2
3 //! Thread-safe reference-counting pointers.
4 //!
5 //! See the [`Arc<T>`][Arc] documentation for more details.
6
7 use core::any::Any;
8 use core::borrow;
9 use core::cmp::Ordering;
10 use core::convert::{From, TryFrom};
11 use core::fmt;
12 use core::hash::{Hash, Hasher};
13 use core::hint;
14 use core::intrinsics::abort;
15 #[cfg(not(no_global_oom_handling))]
16 use core::iter;
17 use core::marker::{PhantomData, Unpin, Unsize};
18 #[cfg(not(no_global_oom_handling))]
19 use core::mem::size_of_val;
20 use core::mem::{self, align_of_val_raw};
21 use core::ops::{CoerceUnsized, Deref, DispatchFromDyn, Receiver};
22 use core::panic::{RefUnwindSafe, UnwindSafe};
23 use core::pin::Pin;
24 use core::ptr::{self, NonNull};
25 #[cfg(not(no_global_oom_handling))]
26 use core::slice::from_raw_parts_mut;
27 use core::sync::atomic;
28 use core::sync::atomic::Ordering::{Acquire, Relaxed, Release, SeqCst};
29
30 #[cfg(not(no_global_oom_handling))]
31 use crate::alloc::handle_alloc_error;
32 #[cfg(not(no_global_oom_handling))]
33 use crate::alloc::{box_free, WriteCloneIntoRaw};
34 use crate::alloc::{AllocError, Allocator, Global, Layout};
35 use crate::borrow::{Cow, ToOwned};
36 use crate::boxed::Box;
37 use crate::rc::is_dangling;
38 #[cfg(not(no_global_oom_handling))]
39 use crate::string::String;
40 #[cfg(not(no_global_oom_handling))]
41 use crate::vec::Vec;
42
43 #[cfg(test)]
44 mod tests;
45
46 /// A soft limit on the amount of references that may be made to an `Arc`.
47 ///
48 /// Going above this limit will abort your program (although not
49 /// necessarily) at _exactly_ `MAX_REFCOUNT + 1` references.
50 const MAX_REFCOUNT: usize = (isize::MAX) as usize;
51
52 #[cfg(not(sanitize = "thread"))]
53 macro_rules! acquire {
54     ($x:expr) => {
55         atomic::fence(Acquire)
56     };
57 }
58
59 // ThreadSanitizer does not support memory fences. To avoid false positive
60 // reports in Arc / Weak implementation use atomic loads for synchronization
61 // instead.
62 #[cfg(sanitize = "thread")]
63 macro_rules! acquire {
64     ($x:expr) => {
65         $x.load(Acquire)
66     };
67 }
68
69 /// A thread-safe reference-counting pointer. 'Arc' stands for 'Atomically
70 /// Reference Counted'.
71 ///
72 /// The type `Arc<T>` provides shared ownership of a value of type `T`,
73 /// allocated in the heap. Invoking [`clone`][clone] on `Arc` produces
74 /// a new `Arc` instance, which points to the same allocation on the heap as the
75 /// source `Arc`, while increasing a reference count. When the last `Arc`
76 /// pointer to a given allocation is destroyed, the value stored in that allocation (often
77 /// referred to as "inner value") is also dropped.
78 ///
79 /// Shared references in Rust disallow mutation by default, and `Arc` is no
80 /// exception: you cannot generally obtain a mutable reference to something
81 /// inside an `Arc`. If you need to mutate through an `Arc`, use
82 /// [`Mutex`][mutex], [`RwLock`][rwlock], or one of the [`Atomic`][atomic]
83 /// types.
84 ///
85 /// ## Thread Safety
86 ///
87 /// Unlike [`Rc<T>`], `Arc<T>` uses atomic operations for its reference
88 /// counting. This means that it is thread-safe. The disadvantage is that
89 /// atomic operations are more expensive than ordinary memory accesses. If you
90 /// are not sharing reference-counted allocations between threads, consider using
91 /// [`Rc<T>`] for lower overhead. [`Rc<T>`] is a safe default, because the
92 /// compiler will catch any attempt to send an [`Rc<T>`] between threads.
93 /// However, a library might choose `Arc<T>` in order to give library consumers
94 /// more flexibility.
95 ///
96 /// `Arc<T>` will implement [`Send`] and [`Sync`] as long as the `T` implements
97 /// [`Send`] and [`Sync`]. Why can't you put a non-thread-safe type `T` in an
98 /// `Arc<T>` to make it thread-safe? This may be a bit counter-intuitive at
99 /// first: after all, isn't the point of `Arc<T>` thread safety? The key is
100 /// this: `Arc<T>` makes it thread safe to have multiple ownership of the same
101 /// data, but it  doesn't add thread safety to its data. Consider
102 /// <code>Arc<[RefCell\<T>]></code>. [`RefCell<T>`] isn't [`Sync`], and if `Arc<T>` was always
103 /// [`Send`], <code>Arc<[RefCell\<T>]></code> would be as well. But then we'd have a problem:
104 /// [`RefCell<T>`] is not thread safe; it keeps track of the borrowing count using
105 /// non-atomic operations.
106 ///
107 /// In the end, this means that you may need to pair `Arc<T>` with some sort of
108 /// [`std::sync`] type, usually [`Mutex<T>`][mutex].
109 ///
110 /// ## Breaking cycles with `Weak`
111 ///
112 /// The [`downgrade`][downgrade] method can be used to create a non-owning
113 /// [`Weak`] pointer. A [`Weak`] pointer can be [`upgrade`][upgrade]d
114 /// to an `Arc`, but this will return [`None`] if the value stored in the allocation has
115 /// already been dropped. In other words, `Weak` pointers do not keep the value
116 /// inside the allocation alive; however, they *do* keep the allocation
117 /// (the backing store for the value) alive.
118 ///
119 /// A cycle between `Arc` pointers will never be deallocated. For this reason,
120 /// [`Weak`] is used to break cycles. For example, a tree could have
121 /// strong `Arc` pointers from parent nodes to children, and [`Weak`]
122 /// pointers from children back to their parents.
123 ///
124 /// # Cloning references
125 ///
126 /// Creating a new reference from an existing reference-counted pointer is done using the
127 /// `Clone` trait implemented for [`Arc<T>`][Arc] and [`Weak<T>`][Weak].
128 ///
129 /// ```
130 /// use std::sync::Arc;
131 /// let foo = Arc::new(vec![1.0, 2.0, 3.0]);
132 /// // The two syntaxes below are equivalent.
133 /// let a = foo.clone();
134 /// let b = Arc::clone(&foo);
135 /// // a, b, and foo are all Arcs that point to the same memory location
136 /// ```
137 ///
138 /// ## `Deref` behavior
139 ///
140 /// `Arc<T>` automatically dereferences to `T` (via the [`Deref`][deref] trait),
141 /// so you can call `T`'s methods on a value of type `Arc<T>`. To avoid name
142 /// clashes with `T`'s methods, the methods of `Arc<T>` itself are associated
143 /// functions, called using [fully qualified syntax]:
144 ///
145 /// ```
146 /// use std::sync::Arc;
147 ///
148 /// let my_arc = Arc::new(());
149 /// let my_weak = Arc::downgrade(&my_arc);
150 /// ```
151 ///
152 /// `Arc<T>`'s implementations of traits like `Clone` may also be called using
153 /// fully qualified syntax. Some people prefer to use fully qualified syntax,
154 /// while others prefer using method-call syntax.
155 ///
156 /// ```
157 /// use std::sync::Arc;
158 ///
159 /// let arc = Arc::new(());
160 /// // Method-call syntax
161 /// let arc2 = arc.clone();
162 /// // Fully qualified syntax
163 /// let arc3 = Arc::clone(&arc);
164 /// ```
165 ///
166 /// [`Weak<T>`][Weak] does not auto-dereference to `T`, because the inner value may have
167 /// already been dropped.
168 ///
169 /// [`Rc<T>`]: crate::rc::Rc
170 /// [clone]: Clone::clone
171 /// [mutex]: ../../std/sync/struct.Mutex.html
172 /// [rwlock]: ../../std/sync/struct.RwLock.html
173 /// [atomic]: core::sync::atomic
174 /// [`Send`]: core::marker::Send
175 /// [`Sync`]: core::marker::Sync
176 /// [deref]: core::ops::Deref
177 /// [downgrade]: Arc::downgrade
178 /// [upgrade]: Weak::upgrade
179 /// [RefCell\<T>]: core::cell::RefCell
180 /// [`RefCell<T>`]: core::cell::RefCell
181 /// [`std::sync`]: ../../std/sync/index.html
182 /// [`Arc::clone(&from)`]: Arc::clone
183 /// [fully qualified syntax]: https://doc.rust-lang.org/book/ch19-03-advanced-traits.html#fully-qualified-syntax-for-disambiguation-calling-methods-with-the-same-name
184 ///
185 /// # Examples
186 ///
187 /// Sharing some immutable data between threads:
188 ///
189 // Note that we **do not** run these tests here. The windows builders get super
190 // unhappy if a thread outlives the main thread and then exits at the same time
191 // (something deadlocks) so we just avoid this entirely by not running these
192 // tests.
193 /// ```no_run
194 /// use std::sync::Arc;
195 /// use std::thread;
196 ///
197 /// let five = Arc::new(5);
198 ///
199 /// for _ in 0..10 {
200 ///     let five = Arc::clone(&five);
201 ///
202 ///     thread::spawn(move || {
203 ///         println!("{five:?}");
204 ///     });
205 /// }
206 /// ```
207 ///
208 /// Sharing a mutable [`AtomicUsize`]:
209 ///
210 /// [`AtomicUsize`]: core::sync::atomic::AtomicUsize "sync::atomic::AtomicUsize"
211 ///
212 /// ```no_run
213 /// use std::sync::Arc;
214 /// use std::sync::atomic::{AtomicUsize, Ordering};
215 /// use std::thread;
216 ///
217 /// let val = Arc::new(AtomicUsize::new(5));
218 ///
219 /// for _ in 0..10 {
220 ///     let val = Arc::clone(&val);
221 ///
222 ///     thread::spawn(move || {
223 ///         let v = val.fetch_add(1, Ordering::SeqCst);
224 ///         println!("{v:?}");
225 ///     });
226 /// }
227 /// ```
228 ///
229 /// See the [`rc` documentation][rc_examples] for more examples of reference
230 /// counting in general.
231 ///
232 /// [rc_examples]: crate::rc#examples
233 #[cfg_attr(not(test), rustc_diagnostic_item = "Arc")]
234 #[stable(feature = "rust1", since = "1.0.0")]
235 pub struct Arc<T: ?Sized> {
236     ptr: NonNull<ArcInner<T>>,
237     phantom: PhantomData<ArcInner<T>>,
238 }
239
240 #[stable(feature = "rust1", since = "1.0.0")]
241 unsafe impl<T: ?Sized + Sync + Send> Send for Arc<T> {}
242 #[stable(feature = "rust1", since = "1.0.0")]
243 unsafe impl<T: ?Sized + Sync + Send> Sync for Arc<T> {}
244
245 #[stable(feature = "catch_unwind", since = "1.9.0")]
246 impl<T: RefUnwindSafe + ?Sized> UnwindSafe for Arc<T> {}
247
248 #[unstable(feature = "coerce_unsized", issue = "27732")]
249 impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Arc<U>> for Arc<T> {}
250
251 #[unstable(feature = "dispatch_from_dyn", issue = "none")]
252 impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Arc<U>> for Arc<T> {}
253
254 impl<T: ?Sized> Arc<T> {
255     unsafe fn from_inner(ptr: NonNull<ArcInner<T>>) -> Self {
256         Self { ptr, phantom: PhantomData }
257     }
258
259     unsafe fn from_ptr(ptr: *mut ArcInner<T>) -> Self {
260         unsafe { Self::from_inner(NonNull::new_unchecked(ptr)) }
261     }
262 }
263
264 /// `Weak` is a version of [`Arc`] that holds a non-owning reference to the
265 /// managed allocation. The allocation is accessed by calling [`upgrade`] on the `Weak`
266 /// pointer, which returns an <code>[Option]<[Arc]\<T>></code>.
267 ///
268 /// Since a `Weak` reference does not count towards ownership, it will not
269 /// prevent the value stored in the allocation from being dropped, and `Weak` itself makes no
270 /// guarantees about the value still being present. Thus it may return [`None`]
271 /// when [`upgrade`]d. Note however that a `Weak` reference *does* prevent the allocation
272 /// itself (the backing store) from being deallocated.
273 ///
274 /// A `Weak` pointer is useful for keeping a temporary reference to the allocation
275 /// managed by [`Arc`] without preventing its inner value from being dropped. It is also used to
276 /// prevent circular references between [`Arc`] pointers, since mutual owning references
277 /// would never allow either [`Arc`] to be dropped. For example, a tree could
278 /// have strong [`Arc`] pointers from parent nodes to children, and `Weak`
279 /// pointers from children back to their parents.
280 ///
281 /// The typical way to obtain a `Weak` pointer is to call [`Arc::downgrade`].
282 ///
283 /// [`upgrade`]: Weak::upgrade
284 #[stable(feature = "arc_weak", since = "1.4.0")]
285 pub struct Weak<T: ?Sized> {
286     // This is a `NonNull` to allow optimizing the size of this type in enums,
287     // but it is not necessarily a valid pointer.
288     // `Weak::new` sets this to `usize::MAX` so that it doesn’t need
289     // to allocate space on the heap.  That's not a value a real pointer
290     // will ever have because RcBox has alignment at least 2.
291     // This is only possible when `T: Sized`; unsized `T` never dangle.
292     ptr: NonNull<ArcInner<T>>,
293 }
294
295 #[stable(feature = "arc_weak", since = "1.4.0")]
296 unsafe impl<T: ?Sized + Sync + Send> Send for Weak<T> {}
297 #[stable(feature = "arc_weak", since = "1.4.0")]
298 unsafe impl<T: ?Sized + Sync + Send> Sync for Weak<T> {}
299
300 #[unstable(feature = "coerce_unsized", issue = "27732")]
301 impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Weak<U>> for Weak<T> {}
302 #[unstable(feature = "dispatch_from_dyn", issue = "none")]
303 impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Weak<U>> for Weak<T> {}
304
305 #[stable(feature = "arc_weak", since = "1.4.0")]
306 impl<T: ?Sized + fmt::Debug> fmt::Debug for Weak<T> {
307     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
308         write!(f, "(Weak)")
309     }
310 }
311
312 // This is repr(C) to future-proof against possible field-reordering, which
313 // would interfere with otherwise safe [into|from]_raw() of transmutable
314 // inner types.
315 #[repr(C)]
316 struct ArcInner<T: ?Sized> {
317     strong: atomic::AtomicUsize,
318
319     // the value usize::MAX acts as a sentinel for temporarily "locking" the
320     // ability to upgrade weak pointers or downgrade strong ones; this is used
321     // to avoid races in `make_mut` and `get_mut`.
322     weak: atomic::AtomicUsize,
323
324     data: T,
325 }
326
327 unsafe impl<T: ?Sized + Sync + Send> Send for ArcInner<T> {}
328 unsafe impl<T: ?Sized + Sync + Send> Sync for ArcInner<T> {}
329
330 impl<T> Arc<T> {
331     /// Constructs a new `Arc<T>`.
332     ///
333     /// # Examples
334     ///
335     /// ```
336     /// use std::sync::Arc;
337     ///
338     /// let five = Arc::new(5);
339     /// ```
340     #[cfg(not(no_global_oom_handling))]
341     #[inline]
342     #[stable(feature = "rust1", since = "1.0.0")]
343     pub fn new(data: T) -> Arc<T> {
344         // Start the weak pointer count as 1 which is the weak pointer that's
345         // held by all the strong pointers (kinda), see std/rc.rs for more info
346         let x: Box<_> = box ArcInner {
347             strong: atomic::AtomicUsize::new(1),
348             weak: atomic::AtomicUsize::new(1),
349             data,
350         };
351         unsafe { Self::from_inner(Box::leak(x).into()) }
352     }
353
354     /// Constructs a new `Arc<T>` while giving you a `Weak<T>` to the allocation,
355     /// to allow you to construct a `T` which holds a weak pointer to itself.
356     ///
357     /// Generally, a structure circularly referencing itself, either directly or
358     /// indirectly, should not hold a strong reference to itself to prevent a memory leak.
359     /// Using this function, you get access to the weak pointer during the
360     /// initialization of `T`, before the `Arc<T>` is created, such that you can
361     /// clone and store it inside the `T`.
362     ///
363     /// `new_cyclic` first allocates the managed allocation for the `Arc<T>`,
364     /// then calls your closure, giving it a `Weak<T>` to this allocation,
365     /// and only afterwards completes the construction of the `Arc<T>` by placing
366     /// the `T` returned from your closure into the allocation.
367     ///
368     /// Since the new `Arc<T>` is not fully-constructed until `Arc<T>::new_cyclic`
369     /// returns, calling [`upgrade`] on the weak reference inside your closure will
370     /// fail and result in a `None` value.
371     ///
372     /// # Panics
373     ///
374     /// If `data_fn` panics, the panic is propagated to the caller, and the
375     /// temporary [`Weak<T>`] is dropped normally.
376     ///
377     /// # Example
378     ///
379     /// ```
380     /// # #![allow(dead_code)]
381     /// use std::sync::{Arc, Weak};
382     ///
383     /// struct Gadget {
384     ///     me: Weak<Gadget>,
385     /// }
386     ///
387     /// impl Gadget {
388     ///     /// Construct a reference counted Gadget.
389     ///     fn new() -> Arc<Self> {
390     ///         // `me` is a `Weak<Gadget>` pointing at the new allocation of the
391     ///         // `Arc` we're constructing.
392     ///         Arc::new_cyclic(|me| {
393     ///             // Create the actual struct here.
394     ///             Gadget { me: me.clone() }
395     ///         })
396     ///     }
397     ///
398     ///     /// Return a reference counted pointer to Self.
399     ///     fn me(&self) -> Arc<Self> {
400     ///         self.me.upgrade().unwrap()
401     ///     }
402     /// }
403     /// ```
404     /// [`upgrade`]: Weak::upgrade
405     #[cfg(not(no_global_oom_handling))]
406     #[inline]
407     #[stable(feature = "arc_new_cyclic", since = "1.60.0")]
408     pub fn new_cyclic<F>(data_fn: F) -> Arc<T>
409     where
410         F: FnOnce(&Weak<T>) -> T,
411     {
412         // Construct the inner in the "uninitialized" state with a single
413         // weak reference.
414         let uninit_ptr: NonNull<_> = Box::leak(box ArcInner {
415             strong: atomic::AtomicUsize::new(0),
416             weak: atomic::AtomicUsize::new(1),
417             data: mem::MaybeUninit::<T>::uninit(),
418         })
419         .into();
420         let init_ptr: NonNull<ArcInner<T>> = uninit_ptr.cast();
421
422         let weak = Weak { ptr: init_ptr };
423
424         // It's important we don't give up ownership of the weak pointer, or
425         // else the memory might be freed by the time `data_fn` returns. If
426         // we really wanted to pass ownership, we could create an additional
427         // weak pointer for ourselves, but this would result in additional
428         // updates to the weak reference count which might not be necessary
429         // otherwise.
430         let data = data_fn(&weak);
431
432         // Now we can properly initialize the inner value and turn our weak
433         // reference into a strong reference.
434         let strong = unsafe {
435             let inner = init_ptr.as_ptr();
436             ptr::write(ptr::addr_of_mut!((*inner).data), data);
437
438             // The above write to the data field must be visible to any threads which
439             // observe a non-zero strong count. Therefore we need at least "Release" ordering
440             // in order to synchronize with the `compare_exchange_weak` in `Weak::upgrade`.
441             //
442             // "Acquire" ordering is not required. When considering the possible behaviours
443             // of `data_fn` we only need to look at what it could do with a reference to a
444             // non-upgradeable `Weak`:
445             // - It can *clone* the `Weak`, increasing the weak reference count.
446             // - It can drop those clones, decreasing the weak reference count (but never to zero).
447             //
448             // These side effects do not impact us in any way, and no other side effects are
449             // possible with safe code alone.
450             let prev_value = (*inner).strong.fetch_add(1, Release);
451             debug_assert_eq!(prev_value, 0, "No prior strong references should exist");
452
453             Arc::from_inner(init_ptr)
454         };
455
456         // Strong references should collectively own a shared weak reference,
457         // so don't run the destructor for our old weak reference.
458         mem::forget(weak);
459         strong
460     }
461
462     /// Constructs a new `Arc` with uninitialized contents.
463     ///
464     /// # Examples
465     ///
466     /// ```
467     /// #![feature(new_uninit)]
468     /// #![feature(get_mut_unchecked)]
469     ///
470     /// use std::sync::Arc;
471     ///
472     /// let mut five = Arc::<u32>::new_uninit();
473     ///
474     /// // Deferred initialization:
475     /// Arc::get_mut(&mut five).unwrap().write(5);
476     ///
477     /// let five = unsafe { five.assume_init() };
478     ///
479     /// assert_eq!(*five, 5)
480     /// ```
481     #[cfg(not(no_global_oom_handling))]
482     #[unstable(feature = "new_uninit", issue = "63291")]
483     #[must_use]
484     pub fn new_uninit() -> Arc<mem::MaybeUninit<T>> {
485         unsafe {
486             Arc::from_ptr(Arc::allocate_for_layout(
487                 Layout::new::<T>(),
488                 |layout| Global.allocate(layout),
489                 |mem| mem as *mut ArcInner<mem::MaybeUninit<T>>,
490             ))
491         }
492     }
493
494     /// Constructs a new `Arc` with uninitialized contents, with the memory
495     /// being filled with `0` bytes.
496     ///
497     /// See [`MaybeUninit::zeroed`][zeroed] for examples of correct and incorrect usage
498     /// of this method.
499     ///
500     /// # Examples
501     ///
502     /// ```
503     /// #![feature(new_uninit)]
504     ///
505     /// use std::sync::Arc;
506     ///
507     /// let zero = Arc::<u32>::new_zeroed();
508     /// let zero = unsafe { zero.assume_init() };
509     ///
510     /// assert_eq!(*zero, 0)
511     /// ```
512     ///
513     /// [zeroed]: mem::MaybeUninit::zeroed
514     #[cfg(not(no_global_oom_handling))]
515     #[unstable(feature = "new_uninit", issue = "63291")]
516     #[must_use]
517     pub fn new_zeroed() -> Arc<mem::MaybeUninit<T>> {
518         unsafe {
519             Arc::from_ptr(Arc::allocate_for_layout(
520                 Layout::new::<T>(),
521                 |layout| Global.allocate_zeroed(layout),
522                 |mem| mem as *mut ArcInner<mem::MaybeUninit<T>>,
523             ))
524         }
525     }
526
527     /// Constructs a new `Pin<Arc<T>>`. If `T` does not implement `Unpin`, then
528     /// `data` will be pinned in memory and unable to be moved.
529     #[cfg(not(no_global_oom_handling))]
530     #[stable(feature = "pin", since = "1.33.0")]
531     #[must_use]
532     pub fn pin(data: T) -> Pin<Arc<T>> {
533         unsafe { Pin::new_unchecked(Arc::new(data)) }
534     }
535
536     /// Constructs a new `Pin<Arc<T>>`, return an error if allocation fails.
537     #[unstable(feature = "allocator_api", issue = "32838")]
538     #[inline]
539     pub fn try_pin(data: T) -> Result<Pin<Arc<T>>, AllocError> {
540         unsafe { Ok(Pin::new_unchecked(Arc::try_new(data)?)) }
541     }
542
543     /// Constructs a new `Arc<T>`, returning an error if allocation fails.
544     ///
545     /// # Examples
546     ///
547     /// ```
548     /// #![feature(allocator_api)]
549     /// use std::sync::Arc;
550     ///
551     /// let five = Arc::try_new(5)?;
552     /// # Ok::<(), std::alloc::AllocError>(())
553     /// ```
554     #[unstable(feature = "allocator_api", issue = "32838")]
555     #[inline]
556     pub fn try_new(data: T) -> Result<Arc<T>, AllocError> {
557         // Start the weak pointer count as 1 which is the weak pointer that's
558         // held by all the strong pointers (kinda), see std/rc.rs for more info
559         let x: Box<_> = Box::try_new(ArcInner {
560             strong: atomic::AtomicUsize::new(1),
561             weak: atomic::AtomicUsize::new(1),
562             data,
563         })?;
564         unsafe { Ok(Self::from_inner(Box::leak(x).into())) }
565     }
566
567     /// Constructs a new `Arc` with uninitialized contents, returning an error
568     /// if allocation fails.
569     ///
570     /// # Examples
571     ///
572     /// ```
573     /// #![feature(new_uninit, allocator_api)]
574     /// #![feature(get_mut_unchecked)]
575     ///
576     /// use std::sync::Arc;
577     ///
578     /// let mut five = Arc::<u32>::try_new_uninit()?;
579     ///
580     /// // Deferred initialization:
581     /// Arc::get_mut(&mut five).unwrap().write(5);
582     ///
583     /// let five = unsafe { five.assume_init() };
584     ///
585     /// assert_eq!(*five, 5);
586     /// # Ok::<(), std::alloc::AllocError>(())
587     /// ```
588     #[unstable(feature = "allocator_api", issue = "32838")]
589     // #[unstable(feature = "new_uninit", issue = "63291")]
590     pub fn try_new_uninit() -> Result<Arc<mem::MaybeUninit<T>>, AllocError> {
591         unsafe {
592             Ok(Arc::from_ptr(Arc::try_allocate_for_layout(
593                 Layout::new::<T>(),
594                 |layout| Global.allocate(layout),
595                 |mem| mem as *mut ArcInner<mem::MaybeUninit<T>>,
596             )?))
597         }
598     }
599
600     /// Constructs a new `Arc` with uninitialized contents, with the memory
601     /// being filled with `0` bytes, returning an error if allocation fails.
602     ///
603     /// See [`MaybeUninit::zeroed`][zeroed] for examples of correct and incorrect usage
604     /// of this method.
605     ///
606     /// # Examples
607     ///
608     /// ```
609     /// #![feature(new_uninit, allocator_api)]
610     ///
611     /// use std::sync::Arc;
612     ///
613     /// let zero = Arc::<u32>::try_new_zeroed()?;
614     /// let zero = unsafe { zero.assume_init() };
615     ///
616     /// assert_eq!(*zero, 0);
617     /// # Ok::<(), std::alloc::AllocError>(())
618     /// ```
619     ///
620     /// [zeroed]: mem::MaybeUninit::zeroed
621     #[unstable(feature = "allocator_api", issue = "32838")]
622     // #[unstable(feature = "new_uninit", issue = "63291")]
623     pub fn try_new_zeroed() -> Result<Arc<mem::MaybeUninit<T>>, AllocError> {
624         unsafe {
625             Ok(Arc::from_ptr(Arc::try_allocate_for_layout(
626                 Layout::new::<T>(),
627                 |layout| Global.allocate_zeroed(layout),
628                 |mem| mem as *mut ArcInner<mem::MaybeUninit<T>>,
629             )?))
630         }
631     }
632     /// Returns the inner value, if the `Arc` has exactly one strong reference.
633     ///
634     /// Otherwise, an [`Err`] is returned with the same `Arc` that was
635     /// passed in.
636     ///
637     /// This will succeed even if there are outstanding weak references.
638     ///
639     /// # Examples
640     ///
641     /// ```
642     /// use std::sync::Arc;
643     ///
644     /// let x = Arc::new(3);
645     /// assert_eq!(Arc::try_unwrap(x), Ok(3));
646     ///
647     /// let x = Arc::new(4);
648     /// let _y = Arc::clone(&x);
649     /// assert_eq!(*Arc::try_unwrap(x).unwrap_err(), 4);
650     /// ```
651     #[inline]
652     #[stable(feature = "arc_unique", since = "1.4.0")]
653     pub fn try_unwrap(this: Self) -> Result<T, Self> {
654         if this.inner().strong.compare_exchange(1, 0, Relaxed, Relaxed).is_err() {
655             return Err(this);
656         }
657
658         acquire!(this.inner().strong);
659
660         unsafe {
661             let elem = ptr::read(&this.ptr.as_ref().data);
662
663             // Make a weak pointer to clean up the implicit strong-weak reference
664             let _weak = Weak { ptr: this.ptr };
665             mem::forget(this);
666
667             Ok(elem)
668         }
669     }
670 }
671
672 impl<T> Arc<[T]> {
673     /// Constructs a new atomically reference-counted slice with uninitialized contents.
674     ///
675     /// # Examples
676     ///
677     /// ```
678     /// #![feature(new_uninit)]
679     /// #![feature(get_mut_unchecked)]
680     ///
681     /// use std::sync::Arc;
682     ///
683     /// let mut values = Arc::<[u32]>::new_uninit_slice(3);
684     ///
685     /// // Deferred initialization:
686     /// let data = Arc::get_mut(&mut values).unwrap();
687     /// data[0].write(1);
688     /// data[1].write(2);
689     /// data[2].write(3);
690     ///
691     /// let values = unsafe { values.assume_init() };
692     ///
693     /// assert_eq!(*values, [1, 2, 3])
694     /// ```
695     #[cfg(not(no_global_oom_handling))]
696     #[unstable(feature = "new_uninit", issue = "63291")]
697     #[must_use]
698     pub fn new_uninit_slice(len: usize) -> Arc<[mem::MaybeUninit<T>]> {
699         unsafe { Arc::from_ptr(Arc::allocate_for_slice(len)) }
700     }
701
702     /// Constructs a new atomically reference-counted slice with uninitialized contents, with the memory being
703     /// filled with `0` bytes.
704     ///
705     /// See [`MaybeUninit::zeroed`][zeroed] for examples of correct and
706     /// incorrect usage of this method.
707     ///
708     /// # Examples
709     ///
710     /// ```
711     /// #![feature(new_uninit)]
712     ///
713     /// use std::sync::Arc;
714     ///
715     /// let values = Arc::<[u32]>::new_zeroed_slice(3);
716     /// let values = unsafe { values.assume_init() };
717     ///
718     /// assert_eq!(*values, [0, 0, 0])
719     /// ```
720     ///
721     /// [zeroed]: mem::MaybeUninit::zeroed
722     #[cfg(not(no_global_oom_handling))]
723     #[unstable(feature = "new_uninit", issue = "63291")]
724     #[must_use]
725     pub fn new_zeroed_slice(len: usize) -> Arc<[mem::MaybeUninit<T>]> {
726         unsafe {
727             Arc::from_ptr(Arc::allocate_for_layout(
728                 Layout::array::<T>(len).unwrap(),
729                 |layout| Global.allocate_zeroed(layout),
730                 |mem| {
731                     ptr::slice_from_raw_parts_mut(mem as *mut T, len)
732                         as *mut ArcInner<[mem::MaybeUninit<T>]>
733                 },
734             ))
735         }
736     }
737 }
738
739 impl<T> Arc<mem::MaybeUninit<T>> {
740     /// Converts to `Arc<T>`.
741     ///
742     /// # Safety
743     ///
744     /// As with [`MaybeUninit::assume_init`],
745     /// it is up to the caller to guarantee that the inner value
746     /// really is in an initialized state.
747     /// Calling this when the content is not yet fully initialized
748     /// causes immediate undefined behavior.
749     ///
750     /// [`MaybeUninit::assume_init`]: mem::MaybeUninit::assume_init
751     ///
752     /// # Examples
753     ///
754     /// ```
755     /// #![feature(new_uninit)]
756     /// #![feature(get_mut_unchecked)]
757     ///
758     /// use std::sync::Arc;
759     ///
760     /// let mut five = Arc::<u32>::new_uninit();
761     ///
762     /// // Deferred initialization:
763     /// Arc::get_mut(&mut five).unwrap().write(5);
764     ///
765     /// let five = unsafe { five.assume_init() };
766     ///
767     /// assert_eq!(*five, 5)
768     /// ```
769     #[unstable(feature = "new_uninit", issue = "63291")]
770     #[must_use = "`self` will be dropped if the result is not used"]
771     #[inline]
772     pub unsafe fn assume_init(self) -> Arc<T> {
773         unsafe { Arc::from_inner(mem::ManuallyDrop::new(self).ptr.cast()) }
774     }
775 }
776
777 impl<T> Arc<[mem::MaybeUninit<T>]> {
778     /// Converts to `Arc<[T]>`.
779     ///
780     /// # Safety
781     ///
782     /// As with [`MaybeUninit::assume_init`],
783     /// it is up to the caller to guarantee that the inner value
784     /// really is in an initialized state.
785     /// Calling this when the content is not yet fully initialized
786     /// causes immediate undefined behavior.
787     ///
788     /// [`MaybeUninit::assume_init`]: mem::MaybeUninit::assume_init
789     ///
790     /// # Examples
791     ///
792     /// ```
793     /// #![feature(new_uninit)]
794     /// #![feature(get_mut_unchecked)]
795     ///
796     /// use std::sync::Arc;
797     ///
798     /// let mut values = Arc::<[u32]>::new_uninit_slice(3);
799     ///
800     /// // Deferred initialization:
801     /// let data = Arc::get_mut(&mut values).unwrap();
802     /// data[0].write(1);
803     /// data[1].write(2);
804     /// data[2].write(3);
805     ///
806     /// let values = unsafe { values.assume_init() };
807     ///
808     /// assert_eq!(*values, [1, 2, 3])
809     /// ```
810     #[unstable(feature = "new_uninit", issue = "63291")]
811     #[must_use = "`self` will be dropped if the result is not used"]
812     #[inline]
813     pub unsafe fn assume_init(self) -> Arc<[T]> {
814         unsafe { Arc::from_ptr(mem::ManuallyDrop::new(self).ptr.as_ptr() as _) }
815     }
816 }
817
818 impl<T: ?Sized> Arc<T> {
819     /// Consumes the `Arc`, returning the wrapped pointer.
820     ///
821     /// To avoid a memory leak the pointer must be converted back to an `Arc` using
822     /// [`Arc::from_raw`].
823     ///
824     /// # Examples
825     ///
826     /// ```
827     /// use std::sync::Arc;
828     ///
829     /// let x = Arc::new("hello".to_owned());
830     /// let x_ptr = Arc::into_raw(x);
831     /// assert_eq!(unsafe { &*x_ptr }, "hello");
832     /// ```
833     #[must_use = "losing the pointer will leak memory"]
834     #[stable(feature = "rc_raw", since = "1.17.0")]
835     pub fn into_raw(this: Self) -> *const T {
836         let ptr = Self::as_ptr(&this);
837         mem::forget(this);
838         ptr
839     }
840
841     /// Provides a raw pointer to the data.
842     ///
843     /// The counts are not affected in any way and the `Arc` is not consumed. The pointer is valid for
844     /// as long as there are strong counts in the `Arc`.
845     ///
846     /// # Examples
847     ///
848     /// ```
849     /// use std::sync::Arc;
850     ///
851     /// let x = Arc::new("hello".to_owned());
852     /// let y = Arc::clone(&x);
853     /// let x_ptr = Arc::as_ptr(&x);
854     /// assert_eq!(x_ptr, Arc::as_ptr(&y));
855     /// assert_eq!(unsafe { &*x_ptr }, "hello");
856     /// ```
857     #[must_use]
858     #[stable(feature = "rc_as_ptr", since = "1.45.0")]
859     pub fn as_ptr(this: &Self) -> *const T {
860         let ptr: *mut ArcInner<T> = NonNull::as_ptr(this.ptr);
861
862         // SAFETY: This cannot go through Deref::deref or RcBoxPtr::inner because
863         // this is required to retain raw/mut provenance such that e.g. `get_mut` can
864         // write through the pointer after the Rc is recovered through `from_raw`.
865         unsafe { ptr::addr_of_mut!((*ptr).data) }
866     }
867
868     /// Constructs an `Arc<T>` from a raw pointer.
869     ///
870     /// The raw pointer must have been previously returned by a call to
871     /// [`Arc<U>::into_raw`][into_raw] where `U` must have the same size and
872     /// alignment as `T`. This is trivially true if `U` is `T`.
873     /// Note that if `U` is not `T` but has the same size and alignment, this is
874     /// basically like transmuting references of different types. See
875     /// [`mem::transmute`][transmute] for more information on what
876     /// restrictions apply in this case.
877     ///
878     /// The user of `from_raw` has to make sure a specific value of `T` is only
879     /// dropped once.
880     ///
881     /// This function is unsafe because improper use may lead to memory unsafety,
882     /// even if the returned `Arc<T>` is never accessed.
883     ///
884     /// [into_raw]: Arc::into_raw
885     /// [transmute]: core::mem::transmute
886     ///
887     /// # Examples
888     ///
889     /// ```
890     /// use std::sync::Arc;
891     ///
892     /// let x = Arc::new("hello".to_owned());
893     /// let x_ptr = Arc::into_raw(x);
894     ///
895     /// unsafe {
896     ///     // Convert back to an `Arc` to prevent leak.
897     ///     let x = Arc::from_raw(x_ptr);
898     ///     assert_eq!(&*x, "hello");
899     ///
900     ///     // Further calls to `Arc::from_raw(x_ptr)` would be memory-unsafe.
901     /// }
902     ///
903     /// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
904     /// ```
905     #[stable(feature = "rc_raw", since = "1.17.0")]
906     pub unsafe fn from_raw(ptr: *const T) -> Self {
907         unsafe {
908             let offset = data_offset(ptr);
909
910             // Reverse the offset to find the original ArcInner.
911             let arc_ptr =
912                 (ptr as *mut u8).offset(-offset).with_metadata_of(ptr as *mut ArcInner<T>);
913
914             Self::from_ptr(arc_ptr)
915         }
916     }
917
918     /// Creates a new [`Weak`] pointer to this allocation.
919     ///
920     /// # Examples
921     ///
922     /// ```
923     /// use std::sync::Arc;
924     ///
925     /// let five = Arc::new(5);
926     ///
927     /// let weak_five = Arc::downgrade(&five);
928     /// ```
929     #[must_use = "this returns a new `Weak` pointer, \
930                   without modifying the original `Arc`"]
931     #[stable(feature = "arc_weak", since = "1.4.0")]
932     pub fn downgrade(this: &Self) -> Weak<T> {
933         // This Relaxed is OK because we're checking the value in the CAS
934         // below.
935         let mut cur = this.inner().weak.load(Relaxed);
936
937         loop {
938             // check if the weak counter is currently "locked"; if so, spin.
939             if cur == usize::MAX {
940                 hint::spin_loop();
941                 cur = this.inner().weak.load(Relaxed);
942                 continue;
943             }
944
945             // NOTE: this code currently ignores the possibility of overflow
946             // into usize::MAX; in general both Rc and Arc need to be adjusted
947             // to deal with overflow.
948
949             // Unlike with Clone(), we need this to be an Acquire read to
950             // synchronize with the write coming from `is_unique`, so that the
951             // events prior to that write happen before this read.
952             match this.inner().weak.compare_exchange_weak(cur, cur + 1, Acquire, Relaxed) {
953                 Ok(_) => {
954                     // Make sure we do not create a dangling Weak
955                     debug_assert!(!is_dangling(this.ptr.as_ptr()));
956                     return Weak { ptr: this.ptr };
957                 }
958                 Err(old) => cur = old,
959             }
960         }
961     }
962
963     /// Gets the number of [`Weak`] pointers to this allocation.
964     ///
965     /// # Safety
966     ///
967     /// This method by itself is safe, but using it correctly requires extra care.
968     /// Another thread can change the weak count at any time,
969     /// including potentially between calling this method and acting on the result.
970     ///
971     /// # Examples
972     ///
973     /// ```
974     /// use std::sync::Arc;
975     ///
976     /// let five = Arc::new(5);
977     /// let _weak_five = Arc::downgrade(&five);
978     ///
979     /// // This assertion is deterministic because we haven't shared
980     /// // the `Arc` or `Weak` between threads.
981     /// assert_eq!(1, Arc::weak_count(&five));
982     /// ```
983     #[inline]
984     #[must_use]
985     #[stable(feature = "arc_counts", since = "1.15.0")]
986     pub fn weak_count(this: &Self) -> usize {
987         let cnt = this.inner().weak.load(SeqCst);
988         // If the weak count is currently locked, the value of the
989         // count was 0 just before taking the lock.
990         if cnt == usize::MAX { 0 } else { cnt - 1 }
991     }
992
993     /// Gets the number of strong (`Arc`) pointers to this allocation.
994     ///
995     /// # Safety
996     ///
997     /// This method by itself is safe, but using it correctly requires extra care.
998     /// Another thread can change the strong count at any time,
999     /// including potentially between calling this method and acting on the result.
1000     ///
1001     /// # Examples
1002     ///
1003     /// ```
1004     /// use std::sync::Arc;
1005     ///
1006     /// let five = Arc::new(5);
1007     /// let _also_five = Arc::clone(&five);
1008     ///
1009     /// // This assertion is deterministic because we haven't shared
1010     /// // the `Arc` between threads.
1011     /// assert_eq!(2, Arc::strong_count(&five));
1012     /// ```
1013     #[inline]
1014     #[must_use]
1015     #[stable(feature = "arc_counts", since = "1.15.0")]
1016     pub fn strong_count(this: &Self) -> usize {
1017         this.inner().strong.load(SeqCst)
1018     }
1019
1020     /// Increments the strong reference count on the `Arc<T>` associated with the
1021     /// provided pointer by one.
1022     ///
1023     /// # Safety
1024     ///
1025     /// The pointer must have been obtained through `Arc::into_raw`, and the
1026     /// associated `Arc` instance must be valid (i.e. the strong count must be at
1027     /// least 1) for the duration of this method.
1028     ///
1029     /// # Examples
1030     ///
1031     /// ```
1032     /// use std::sync::Arc;
1033     ///
1034     /// let five = Arc::new(5);
1035     ///
1036     /// unsafe {
1037     ///     let ptr = Arc::into_raw(five);
1038     ///     Arc::increment_strong_count(ptr);
1039     ///
1040     ///     // This assertion is deterministic because we haven't shared
1041     ///     // the `Arc` between threads.
1042     ///     let five = Arc::from_raw(ptr);
1043     ///     assert_eq!(2, Arc::strong_count(&five));
1044     /// }
1045     /// ```
1046     #[inline]
1047     #[stable(feature = "arc_mutate_strong_count", since = "1.51.0")]
1048     pub unsafe fn increment_strong_count(ptr: *const T) {
1049         // Retain Arc, but don't touch refcount by wrapping in ManuallyDrop
1050         let arc = unsafe { mem::ManuallyDrop::new(Arc::<T>::from_raw(ptr)) };
1051         // Now increase refcount, but don't drop new refcount either
1052         let _arc_clone: mem::ManuallyDrop<_> = arc.clone();
1053     }
1054
1055     /// Decrements the strong reference count on the `Arc<T>` associated with the
1056     /// provided pointer by one.
1057     ///
1058     /// # Safety
1059     ///
1060     /// The pointer must have been obtained through `Arc::into_raw`, and the
1061     /// associated `Arc` instance must be valid (i.e. the strong count must be at
1062     /// least 1) when invoking this method. This method can be used to release the final
1063     /// `Arc` and backing storage, but **should not** be called after the final `Arc` has been
1064     /// released.
1065     ///
1066     /// # Examples
1067     ///
1068     /// ```
1069     /// use std::sync::Arc;
1070     ///
1071     /// let five = Arc::new(5);
1072     ///
1073     /// unsafe {
1074     ///     let ptr = Arc::into_raw(five);
1075     ///     Arc::increment_strong_count(ptr);
1076     ///
1077     ///     // Those assertions are deterministic because we haven't shared
1078     ///     // the `Arc` between threads.
1079     ///     let five = Arc::from_raw(ptr);
1080     ///     assert_eq!(2, Arc::strong_count(&five));
1081     ///     Arc::decrement_strong_count(ptr);
1082     ///     assert_eq!(1, Arc::strong_count(&five));
1083     /// }
1084     /// ```
1085     #[inline]
1086     #[stable(feature = "arc_mutate_strong_count", since = "1.51.0")]
1087     pub unsafe fn decrement_strong_count(ptr: *const T) {
1088         unsafe { mem::drop(Arc::from_raw(ptr)) };
1089     }
1090
1091     #[inline]
1092     fn inner(&self) -> &ArcInner<T> {
1093         // This unsafety is ok because while this arc is alive we're guaranteed
1094         // that the inner pointer is valid. Furthermore, we know that the
1095         // `ArcInner` structure itself is `Sync` because the inner data is
1096         // `Sync` as well, so we're ok loaning out an immutable pointer to these
1097         // contents.
1098         unsafe { self.ptr.as_ref() }
1099     }
1100
1101     // Non-inlined part of `drop`.
1102     #[inline(never)]
1103     unsafe fn drop_slow(&mut self) {
1104         // Destroy the data at this time, even though we must not free the box
1105         // allocation itself (there might still be weak pointers lying around).
1106         unsafe { ptr::drop_in_place(Self::get_mut_unchecked(self)) };
1107
1108         // Drop the weak ref collectively held by all strong references
1109         drop(Weak { ptr: self.ptr });
1110     }
1111
1112     /// Returns `true` if the two `Arc`s point to the same allocation
1113     /// (in a vein similar to [`ptr::eq`]).
1114     ///
1115     /// # Examples
1116     ///
1117     /// ```
1118     /// use std::sync::Arc;
1119     ///
1120     /// let five = Arc::new(5);
1121     /// let same_five = Arc::clone(&five);
1122     /// let other_five = Arc::new(5);
1123     ///
1124     /// assert!(Arc::ptr_eq(&five, &same_five));
1125     /// assert!(!Arc::ptr_eq(&five, &other_five));
1126     /// ```
1127     ///
1128     /// [`ptr::eq`]: core::ptr::eq "ptr::eq"
1129     #[inline]
1130     #[must_use]
1131     #[stable(feature = "ptr_eq", since = "1.17.0")]
1132     pub fn ptr_eq(this: &Self, other: &Self) -> bool {
1133         this.ptr.as_ptr() == other.ptr.as_ptr()
1134     }
1135 }
1136
1137 impl<T: ?Sized> Arc<T> {
1138     /// Allocates an `ArcInner<T>` with sufficient space for
1139     /// a possibly-unsized inner value where the value has the layout provided.
1140     ///
1141     /// The function `mem_to_arcinner` is called with the data pointer
1142     /// and must return back a (potentially fat)-pointer for the `ArcInner<T>`.
1143     #[cfg(not(no_global_oom_handling))]
1144     unsafe fn allocate_for_layout(
1145         value_layout: Layout,
1146         allocate: impl FnOnce(Layout) -> Result<NonNull<[u8]>, AllocError>,
1147         mem_to_arcinner: impl FnOnce(*mut u8) -> *mut ArcInner<T>,
1148     ) -> *mut ArcInner<T> {
1149         // Calculate layout using the given value layout.
1150         // Previously, layout was calculated on the expression
1151         // `&*(ptr as *const ArcInner<T>)`, but this created a misaligned
1152         // reference (see #54908).
1153         let layout = Layout::new::<ArcInner<()>>().extend(value_layout).unwrap().0.pad_to_align();
1154         unsafe {
1155             Arc::try_allocate_for_layout(value_layout, allocate, mem_to_arcinner)
1156                 .unwrap_or_else(|_| handle_alloc_error(layout))
1157         }
1158     }
1159
1160     /// Allocates an `ArcInner<T>` with sufficient space for
1161     /// a possibly-unsized inner value where the value has the layout provided,
1162     /// returning an error if allocation fails.
1163     ///
1164     /// The function `mem_to_arcinner` is called with the data pointer
1165     /// and must return back a (potentially fat)-pointer for the `ArcInner<T>`.
1166     unsafe fn try_allocate_for_layout(
1167         value_layout: Layout,
1168         allocate: impl FnOnce(Layout) -> Result<NonNull<[u8]>, AllocError>,
1169         mem_to_arcinner: impl FnOnce(*mut u8) -> *mut ArcInner<T>,
1170     ) -> Result<*mut ArcInner<T>, AllocError> {
1171         // Calculate layout using the given value layout.
1172         // Previously, layout was calculated on the expression
1173         // `&*(ptr as *const ArcInner<T>)`, but this created a misaligned
1174         // reference (see #54908).
1175         let layout = Layout::new::<ArcInner<()>>().extend(value_layout).unwrap().0.pad_to_align();
1176
1177         let ptr = allocate(layout)?;
1178
1179         // Initialize the ArcInner
1180         let inner = mem_to_arcinner(ptr.as_non_null_ptr().as_ptr());
1181         debug_assert_eq!(unsafe { Layout::for_value(&*inner) }, layout);
1182
1183         unsafe {
1184             ptr::write(&mut (*inner).strong, atomic::AtomicUsize::new(1));
1185             ptr::write(&mut (*inner).weak, atomic::AtomicUsize::new(1));
1186         }
1187
1188         Ok(inner)
1189     }
1190
1191     /// Allocates an `ArcInner<T>` with sufficient space for an unsized inner value.
1192     #[cfg(not(no_global_oom_handling))]
1193     unsafe fn allocate_for_ptr(ptr: *const T) -> *mut ArcInner<T> {
1194         // Allocate for the `ArcInner<T>` using the given value.
1195         unsafe {
1196             Self::allocate_for_layout(
1197                 Layout::for_value(&*ptr),
1198                 |layout| Global.allocate(layout),
1199                 |mem| mem.with_metadata_of(ptr as *mut ArcInner<T>),
1200             )
1201         }
1202     }
1203
1204     #[cfg(not(no_global_oom_handling))]
1205     fn from_box(v: Box<T>) -> Arc<T> {
1206         unsafe {
1207             let (box_unique, alloc) = Box::into_unique(v);
1208             let bptr = box_unique.as_ptr();
1209
1210             let value_size = size_of_val(&*bptr);
1211             let ptr = Self::allocate_for_ptr(bptr);
1212
1213             // Copy value as bytes
1214             ptr::copy_nonoverlapping(
1215                 bptr as *const T as *const u8,
1216                 &mut (*ptr).data as *mut _ as *mut u8,
1217                 value_size,
1218             );
1219
1220             // Free the allocation without dropping its contents
1221             box_free(box_unique, alloc);
1222
1223             Self::from_ptr(ptr)
1224         }
1225     }
1226 }
1227
1228 impl<T> Arc<[T]> {
1229     /// Allocates an `ArcInner<[T]>` with the given length.
1230     #[cfg(not(no_global_oom_handling))]
1231     unsafe fn allocate_for_slice(len: usize) -> *mut ArcInner<[T]> {
1232         unsafe {
1233             Self::allocate_for_layout(
1234                 Layout::array::<T>(len).unwrap(),
1235                 |layout| Global.allocate(layout),
1236                 |mem| ptr::slice_from_raw_parts_mut(mem as *mut T, len) as *mut ArcInner<[T]>,
1237             )
1238         }
1239     }
1240
1241     /// Copy elements from slice into newly allocated Arc<\[T\]>
1242     ///
1243     /// Unsafe because the caller must either take ownership or bind `T: Copy`.
1244     #[cfg(not(no_global_oom_handling))]
1245     unsafe fn copy_from_slice(v: &[T]) -> Arc<[T]> {
1246         unsafe {
1247             let ptr = Self::allocate_for_slice(v.len());
1248
1249             ptr::copy_nonoverlapping(v.as_ptr(), &mut (*ptr).data as *mut [T] as *mut T, v.len());
1250
1251             Self::from_ptr(ptr)
1252         }
1253     }
1254
1255     /// Constructs an `Arc<[T]>` from an iterator known to be of a certain size.
1256     ///
1257     /// Behavior is undefined should the size be wrong.
1258     #[cfg(not(no_global_oom_handling))]
1259     unsafe fn from_iter_exact(iter: impl iter::Iterator<Item = T>, len: usize) -> Arc<[T]> {
1260         // Panic guard while cloning T elements.
1261         // In the event of a panic, elements that have been written
1262         // into the new ArcInner will be dropped, then the memory freed.
1263         struct Guard<T> {
1264             mem: NonNull<u8>,
1265             elems: *mut T,
1266             layout: Layout,
1267             n_elems: usize,
1268         }
1269
1270         impl<T> Drop for Guard<T> {
1271             fn drop(&mut self) {
1272                 unsafe {
1273                     let slice = from_raw_parts_mut(self.elems, self.n_elems);
1274                     ptr::drop_in_place(slice);
1275
1276                     Global.deallocate(self.mem, self.layout);
1277                 }
1278             }
1279         }
1280
1281         unsafe {
1282             let ptr = Self::allocate_for_slice(len);
1283
1284             let mem = ptr as *mut _ as *mut u8;
1285             let layout = Layout::for_value(&*ptr);
1286
1287             // Pointer to first element
1288             let elems = &mut (*ptr).data as *mut [T] as *mut T;
1289
1290             let mut guard = Guard { mem: NonNull::new_unchecked(mem), elems, layout, n_elems: 0 };
1291
1292             for (i, item) in iter.enumerate() {
1293                 ptr::write(elems.add(i), item);
1294                 guard.n_elems += 1;
1295             }
1296
1297             // All clear. Forget the guard so it doesn't free the new ArcInner.
1298             mem::forget(guard);
1299
1300             Self::from_ptr(ptr)
1301         }
1302     }
1303 }
1304
1305 /// Specialization trait used for `From<&[T]>`.
1306 #[cfg(not(no_global_oom_handling))]
1307 trait ArcFromSlice<T> {
1308     fn from_slice(slice: &[T]) -> Self;
1309 }
1310
1311 #[cfg(not(no_global_oom_handling))]
1312 impl<T: Clone> ArcFromSlice<T> for Arc<[T]> {
1313     #[inline]
1314     default fn from_slice(v: &[T]) -> Self {
1315         unsafe { Self::from_iter_exact(v.iter().cloned(), v.len()) }
1316     }
1317 }
1318
1319 #[cfg(not(no_global_oom_handling))]
1320 impl<T: Copy> ArcFromSlice<T> for Arc<[T]> {
1321     #[inline]
1322     fn from_slice(v: &[T]) -> Self {
1323         unsafe { Arc::copy_from_slice(v) }
1324     }
1325 }
1326
1327 #[stable(feature = "rust1", since = "1.0.0")]
1328 impl<T: ?Sized> Clone for Arc<T> {
1329     /// Makes a clone of the `Arc` pointer.
1330     ///
1331     /// This creates another pointer to the same allocation, increasing the
1332     /// strong reference count.
1333     ///
1334     /// # Examples
1335     ///
1336     /// ```
1337     /// use std::sync::Arc;
1338     ///
1339     /// let five = Arc::new(5);
1340     ///
1341     /// let _ = Arc::clone(&five);
1342     /// ```
1343     #[inline]
1344     fn clone(&self) -> Arc<T> {
1345         // Using a relaxed ordering is alright here, as knowledge of the
1346         // original reference prevents other threads from erroneously deleting
1347         // the object.
1348         //
1349         // As explained in the [Boost documentation][1], Increasing the
1350         // reference counter can always be done with memory_order_relaxed: New
1351         // references to an object can only be formed from an existing
1352         // reference, and passing an existing reference from one thread to
1353         // another must already provide any required synchronization.
1354         //
1355         // [1]: (www.boost.org/doc/libs/1_55_0/doc/html/atomic/usage_examples.html)
1356         let old_size = self.inner().strong.fetch_add(1, Relaxed);
1357
1358         // However we need to guard against massive refcounts in case someone
1359         // is `mem::forget`ing Arcs. If we don't do this the count can overflow
1360         // and users will use-after free. We racily saturate to `isize::MAX` on
1361         // the assumption that there aren't ~2 billion threads incrementing
1362         // the reference count at once. This branch will never be taken in
1363         // any realistic program.
1364         //
1365         // We abort because such a program is incredibly degenerate, and we
1366         // don't care to support it.
1367         if old_size > MAX_REFCOUNT {
1368             abort();
1369         }
1370
1371         unsafe { Self::from_inner(self.ptr) }
1372     }
1373 }
1374
1375 #[stable(feature = "rust1", since = "1.0.0")]
1376 impl<T: ?Sized> Deref for Arc<T> {
1377     type Target = T;
1378
1379     #[inline]
1380     fn deref(&self) -> &T {
1381         &self.inner().data
1382     }
1383 }
1384
1385 #[unstable(feature = "receiver_trait", issue = "none")]
1386 impl<T: ?Sized> Receiver for Arc<T> {}
1387
1388 impl<T: Clone> Arc<T> {
1389     /// Makes a mutable reference into the given `Arc`.
1390     ///
1391     /// If there are other `Arc` pointers to the same allocation, then `make_mut` will
1392     /// [`clone`] the inner value to a new allocation to ensure unique ownership.  This is also
1393     /// referred to as clone-on-write.
1394     ///
1395     /// However, if there are no other `Arc` pointers to this allocation, but some [`Weak`]
1396     /// pointers, then the [`Weak`] pointers will be disassociated and the inner value will not
1397     /// be cloned.
1398     ///
1399     /// See also [`get_mut`], which will fail rather than cloning the inner value
1400     /// or diassociating [`Weak`] pointers.
1401     ///
1402     /// [`clone`]: Clone::clone
1403     /// [`get_mut`]: Arc::get_mut
1404     ///
1405     /// # Examples
1406     ///
1407     /// ```
1408     /// use std::sync::Arc;
1409     ///
1410     /// let mut data = Arc::new(5);
1411     ///
1412     /// *Arc::make_mut(&mut data) += 1;         // Won't clone anything
1413     /// let mut other_data = Arc::clone(&data); // Won't clone inner data
1414     /// *Arc::make_mut(&mut data) += 1;         // Clones inner data
1415     /// *Arc::make_mut(&mut data) += 1;         // Won't clone anything
1416     /// *Arc::make_mut(&mut other_data) *= 2;   // Won't clone anything
1417     ///
1418     /// // Now `data` and `other_data` point to different allocations.
1419     /// assert_eq!(*data, 8);
1420     /// assert_eq!(*other_data, 12);
1421     /// ```
1422     ///
1423     /// [`Weak`] pointers will be disassociated:
1424     ///
1425     /// ```
1426     /// use std::sync::Arc;
1427     ///
1428     /// let mut data = Arc::new(75);
1429     /// let weak = Arc::downgrade(&data);
1430     ///
1431     /// assert!(75 == *data);
1432     /// assert!(75 == *weak.upgrade().unwrap());
1433     ///
1434     /// *Arc::make_mut(&mut data) += 1;
1435     ///
1436     /// assert!(76 == *data);
1437     /// assert!(weak.upgrade().is_none());
1438     /// ```
1439     #[cfg(not(no_global_oom_handling))]
1440     #[inline]
1441     #[stable(feature = "arc_unique", since = "1.4.0")]
1442     pub fn make_mut(this: &mut Self) -> &mut T {
1443         // Note that we hold both a strong reference and a weak reference.
1444         // Thus, releasing our strong reference only will not, by itself, cause
1445         // the memory to be deallocated.
1446         //
1447         // Use Acquire to ensure that we see any writes to `weak` that happen
1448         // before release writes (i.e., decrements) to `strong`. Since we hold a
1449         // weak count, there's no chance the ArcInner itself could be
1450         // deallocated.
1451         if this.inner().strong.compare_exchange(1, 0, Acquire, Relaxed).is_err() {
1452             // Another strong pointer exists, so we must clone.
1453             // Pre-allocate memory to allow writing the cloned value directly.
1454             let mut arc = Self::new_uninit();
1455             unsafe {
1456                 let data = Arc::get_mut_unchecked(&mut arc);
1457                 (**this).write_clone_into_raw(data.as_mut_ptr());
1458                 *this = arc.assume_init();
1459             }
1460         } else if this.inner().weak.load(Relaxed) != 1 {
1461             // Relaxed suffices in the above because this is fundamentally an
1462             // optimization: we are always racing with weak pointers being
1463             // dropped. Worst case, we end up allocated a new Arc unnecessarily.
1464
1465             // We removed the last strong ref, but there are additional weak
1466             // refs remaining. We'll move the contents to a new Arc, and
1467             // invalidate the other weak refs.
1468
1469             // Note that it is not possible for the read of `weak` to yield
1470             // usize::MAX (i.e., locked), since the weak count can only be
1471             // locked by a thread with a strong reference.
1472
1473             // Materialize our own implicit weak pointer, so that it can clean
1474             // up the ArcInner as needed.
1475             let _weak = Weak { ptr: this.ptr };
1476
1477             // Can just steal the data, all that's left is Weaks
1478             let mut arc = Self::new_uninit();
1479             unsafe {
1480                 let data = Arc::get_mut_unchecked(&mut arc);
1481                 data.as_mut_ptr().copy_from_nonoverlapping(&**this, 1);
1482                 ptr::write(this, arc.assume_init());
1483             }
1484         } else {
1485             // We were the sole reference of either kind; bump back up the
1486             // strong ref count.
1487             this.inner().strong.store(1, Release);
1488         }
1489
1490         // As with `get_mut()`, the unsafety is ok because our reference was
1491         // either unique to begin with, or became one upon cloning the contents.
1492         unsafe { Self::get_mut_unchecked(this) }
1493     }
1494
1495     /// If we have the only reference to `T` then unwrap it. Otherwise, clone `T` and return the
1496     /// clone.
1497     ///
1498     /// Assuming `arc_t` is of type `Arc<T>`, this function is functionally equivalent to
1499     /// `(*arc_t).clone()`, but will avoid cloning the inner value where possible.
1500     ///
1501     /// # Examples
1502     ///
1503     /// ```
1504     /// #![feature(arc_unwrap_or_clone)]
1505     /// # use std::{ptr, sync::Arc};
1506     /// let inner = String::from("test");
1507     /// let ptr = inner.as_ptr();
1508     ///
1509     /// let arc = Arc::new(inner);
1510     /// let inner = Arc::unwrap_or_clone(arc);
1511     /// // The inner value was not cloned
1512     /// assert!(ptr::eq(ptr, inner.as_ptr()));
1513     ///
1514     /// let arc = Arc::new(inner);
1515     /// let arc2 = arc.clone();
1516     /// let inner = Arc::unwrap_or_clone(arc);
1517     /// // Because there were 2 references, we had to clone the inner value.
1518     /// assert!(!ptr::eq(ptr, inner.as_ptr()));
1519     /// // `arc2` is the last reference, so when we unwrap it we get back
1520     /// // the original `String`.
1521     /// let inner = Arc::unwrap_or_clone(arc2);
1522     /// assert!(ptr::eq(ptr, inner.as_ptr()));
1523     /// ```
1524     #[inline]
1525     #[unstable(feature = "arc_unwrap_or_clone", issue = "93610")]
1526     pub fn unwrap_or_clone(this: Self) -> T {
1527         Arc::try_unwrap(this).unwrap_or_else(|arc| (*arc).clone())
1528     }
1529 }
1530
1531 impl<T: ?Sized> Arc<T> {
1532     /// Returns a mutable reference into the given `Arc`, if there are
1533     /// no other `Arc` or [`Weak`] pointers to the same allocation.
1534     ///
1535     /// Returns [`None`] otherwise, because it is not safe to
1536     /// mutate a shared value.
1537     ///
1538     /// See also [`make_mut`][make_mut], which will [`clone`][clone]
1539     /// the inner value when there are other `Arc` pointers.
1540     ///
1541     /// [make_mut]: Arc::make_mut
1542     /// [clone]: Clone::clone
1543     ///
1544     /// # Examples
1545     ///
1546     /// ```
1547     /// use std::sync::Arc;
1548     ///
1549     /// let mut x = Arc::new(3);
1550     /// *Arc::get_mut(&mut x).unwrap() = 4;
1551     /// assert_eq!(*x, 4);
1552     ///
1553     /// let _y = Arc::clone(&x);
1554     /// assert!(Arc::get_mut(&mut x).is_none());
1555     /// ```
1556     #[inline]
1557     #[stable(feature = "arc_unique", since = "1.4.0")]
1558     pub fn get_mut(this: &mut Self) -> Option<&mut T> {
1559         if this.is_unique() {
1560             // This unsafety is ok because we're guaranteed that the pointer
1561             // returned is the *only* pointer that will ever be returned to T. Our
1562             // reference count is guaranteed to be 1 at this point, and we required
1563             // the Arc itself to be `mut`, so we're returning the only possible
1564             // reference to the inner data.
1565             unsafe { Some(Arc::get_mut_unchecked(this)) }
1566         } else {
1567             None
1568         }
1569     }
1570
1571     /// Returns a mutable reference into the given `Arc`,
1572     /// without any check.
1573     ///
1574     /// See also [`get_mut`], which is safe and does appropriate checks.
1575     ///
1576     /// [`get_mut`]: Arc::get_mut
1577     ///
1578     /// # Safety
1579     ///
1580     /// Any other `Arc` or [`Weak`] pointers to the same allocation must not be dereferenced
1581     /// for the duration of the returned borrow.
1582     /// This is trivially the case if no such pointers exist,
1583     /// for example immediately after `Arc::new`.
1584     ///
1585     /// # Examples
1586     ///
1587     /// ```
1588     /// #![feature(get_mut_unchecked)]
1589     ///
1590     /// use std::sync::Arc;
1591     ///
1592     /// let mut x = Arc::new(String::new());
1593     /// unsafe {
1594     ///     Arc::get_mut_unchecked(&mut x).push_str("foo")
1595     /// }
1596     /// assert_eq!(*x, "foo");
1597     /// ```
1598     #[inline]
1599     #[unstable(feature = "get_mut_unchecked", issue = "63292")]
1600     pub unsafe fn get_mut_unchecked(this: &mut Self) -> &mut T {
1601         // We are careful to *not* create a reference covering the "count" fields, as
1602         // this would alias with concurrent access to the reference counts (e.g. by `Weak`).
1603         unsafe { &mut (*this.ptr.as_ptr()).data }
1604     }
1605
1606     /// Determine whether this is the unique reference (including weak refs) to
1607     /// the underlying data.
1608     ///
1609     /// Note that this requires locking the weak ref count.
1610     fn is_unique(&mut self) -> bool {
1611         // lock the weak pointer count if we appear to be the sole weak pointer
1612         // holder.
1613         //
1614         // The acquire label here ensures a happens-before relationship with any
1615         // writes to `strong` (in particular in `Weak::upgrade`) prior to decrements
1616         // of the `weak` count (via `Weak::drop`, which uses release).  If the upgraded
1617         // weak ref was never dropped, the CAS here will fail so we do not care to synchronize.
1618         if self.inner().weak.compare_exchange(1, usize::MAX, Acquire, Relaxed).is_ok() {
1619             // This needs to be an `Acquire` to synchronize with the decrement of the `strong`
1620             // counter in `drop` -- the only access that happens when any but the last reference
1621             // is being dropped.
1622             let unique = self.inner().strong.load(Acquire) == 1;
1623
1624             // The release write here synchronizes with a read in `downgrade`,
1625             // effectively preventing the above read of `strong` from happening
1626             // after the write.
1627             self.inner().weak.store(1, Release); // release the lock
1628             unique
1629         } else {
1630             false
1631         }
1632     }
1633 }
1634
1635 #[stable(feature = "rust1", since = "1.0.0")]
1636 unsafe impl<#[may_dangle] T: ?Sized> Drop for Arc<T> {
1637     /// Drops the `Arc`.
1638     ///
1639     /// This will decrement the strong reference count. If the strong reference
1640     /// count reaches zero then the only other references (if any) are
1641     /// [`Weak`], so we `drop` the inner value.
1642     ///
1643     /// # Examples
1644     ///
1645     /// ```
1646     /// use std::sync::Arc;
1647     ///
1648     /// struct Foo;
1649     ///
1650     /// impl Drop for Foo {
1651     ///     fn drop(&mut self) {
1652     ///         println!("dropped!");
1653     ///     }
1654     /// }
1655     ///
1656     /// let foo  = Arc::new(Foo);
1657     /// let foo2 = Arc::clone(&foo);
1658     ///
1659     /// drop(foo);    // Doesn't print anything
1660     /// drop(foo2);   // Prints "dropped!"
1661     /// ```
1662     #[inline]
1663     fn drop(&mut self) {
1664         // Because `fetch_sub` is already atomic, we do not need to synchronize
1665         // with other threads unless we are going to delete the object. This
1666         // same logic applies to the below `fetch_sub` to the `weak` count.
1667         if self.inner().strong.fetch_sub(1, Release) != 1 {
1668             return;
1669         }
1670
1671         // This fence is needed to prevent reordering of use of the data and
1672         // deletion of the data.  Because it is marked `Release`, the decreasing
1673         // of the reference count synchronizes with this `Acquire` fence. This
1674         // means that use of the data happens before decreasing the reference
1675         // count, which happens before this fence, which happens before the
1676         // deletion of the data.
1677         //
1678         // As explained in the [Boost documentation][1],
1679         //
1680         // > It is important to enforce any possible access to the object in one
1681         // > thread (through an existing reference) to *happen before* deleting
1682         // > the object in a different thread. This is achieved by a "release"
1683         // > operation after dropping a reference (any access to the object
1684         // > through this reference must obviously happened before), and an
1685         // > "acquire" operation before deleting the object.
1686         //
1687         // In particular, while the contents of an Arc are usually immutable, it's
1688         // possible to have interior writes to something like a Mutex<T>. Since a
1689         // Mutex is not acquired when it is deleted, we can't rely on its
1690         // synchronization logic to make writes in thread A visible to a destructor
1691         // running in thread B.
1692         //
1693         // Also note that the Acquire fence here could probably be replaced with an
1694         // Acquire load, which could improve performance in highly-contended
1695         // situations. See [2].
1696         //
1697         // [1]: (www.boost.org/doc/libs/1_55_0/doc/html/atomic/usage_examples.html)
1698         // [2]: (https://github.com/rust-lang/rust/pull/41714)
1699         acquire!(self.inner().strong);
1700
1701         unsafe {
1702             self.drop_slow();
1703         }
1704     }
1705 }
1706
1707 impl Arc<dyn Any + Send + Sync> {
1708     #[inline]
1709     #[stable(feature = "rc_downcast", since = "1.29.0")]
1710     /// Attempt to downcast the `Arc<dyn Any + Send + Sync>` to a concrete type.
1711     ///
1712     /// # Examples
1713     ///
1714     /// ```
1715     /// use std::any::Any;
1716     /// use std::sync::Arc;
1717     ///
1718     /// fn print_if_string(value: Arc<dyn Any + Send + Sync>) {
1719     ///     if let Ok(string) = value.downcast::<String>() {
1720     ///         println!("String ({}): {}", string.len(), string);
1721     ///     }
1722     /// }
1723     ///
1724     /// let my_string = "Hello World".to_string();
1725     /// print_if_string(Arc::new(my_string));
1726     /// print_if_string(Arc::new(0i8));
1727     /// ```
1728     pub fn downcast<T>(self) -> Result<Arc<T>, Self>
1729     where
1730         T: Any + Send + Sync + 'static,
1731     {
1732         if (*self).is::<T>() {
1733             unsafe {
1734                 let ptr = self.ptr.cast::<ArcInner<T>>();
1735                 mem::forget(self);
1736                 Ok(Arc::from_inner(ptr))
1737             }
1738         } else {
1739             Err(self)
1740         }
1741     }
1742 }
1743
1744 impl<T> Weak<T> {
1745     /// Constructs a new `Weak<T>`, without allocating any memory.
1746     /// Calling [`upgrade`] on the return value always gives [`None`].
1747     ///
1748     /// [`upgrade`]: Weak::upgrade
1749     ///
1750     /// # Examples
1751     ///
1752     /// ```
1753     /// use std::sync::Weak;
1754     ///
1755     /// let empty: Weak<i64> = Weak::new();
1756     /// assert!(empty.upgrade().is_none());
1757     /// ```
1758     #[stable(feature = "downgraded_weak", since = "1.10.0")]
1759     #[rustc_const_unstable(feature = "const_weak_new", issue = "95091", reason = "recently added")]
1760     #[must_use]
1761     pub const fn new() -> Weak<T> {
1762         Weak { ptr: unsafe { NonNull::new_unchecked(ptr::invalid_mut::<ArcInner<T>>(usize::MAX)) } }
1763     }
1764 }
1765
1766 /// Helper type to allow accessing the reference counts without
1767 /// making any assertions about the data field.
1768 struct WeakInner<'a> {
1769     weak: &'a atomic::AtomicUsize,
1770     strong: &'a atomic::AtomicUsize,
1771 }
1772
1773 impl<T: ?Sized> Weak<T> {
1774     /// Returns a raw pointer to the object `T` pointed to by this `Weak<T>`.
1775     ///
1776     /// The pointer is valid only if there are some strong references. The pointer may be dangling,
1777     /// unaligned or even [`null`] otherwise.
1778     ///
1779     /// # Examples
1780     ///
1781     /// ```
1782     /// use std::sync::Arc;
1783     /// use std::ptr;
1784     ///
1785     /// let strong = Arc::new("hello".to_owned());
1786     /// let weak = Arc::downgrade(&strong);
1787     /// // Both point to the same object
1788     /// assert!(ptr::eq(&*strong, weak.as_ptr()));
1789     /// // The strong here keeps it alive, so we can still access the object.
1790     /// assert_eq!("hello", unsafe { &*weak.as_ptr() });
1791     ///
1792     /// drop(strong);
1793     /// // But not any more. We can do weak.as_ptr(), but accessing the pointer would lead to
1794     /// // undefined behaviour.
1795     /// // assert_eq!("hello", unsafe { &*weak.as_ptr() });
1796     /// ```
1797     ///
1798     /// [`null`]: core::ptr::null "ptr::null"
1799     #[must_use]
1800     #[stable(feature = "weak_into_raw", since = "1.45.0")]
1801     pub fn as_ptr(&self) -> *const T {
1802         let ptr: *mut ArcInner<T> = NonNull::as_ptr(self.ptr);
1803
1804         if is_dangling(ptr) {
1805             // If the pointer is dangling, we return the sentinel directly. This cannot be
1806             // a valid payload address, as the payload is at least as aligned as ArcInner (usize).
1807             ptr as *const T
1808         } else {
1809             // SAFETY: if is_dangling returns false, then the pointer is dereferenceable.
1810             // The payload may be dropped at this point, and we have to maintain provenance,
1811             // so use raw pointer manipulation.
1812             unsafe { ptr::addr_of_mut!((*ptr).data) }
1813         }
1814     }
1815
1816     /// Consumes the `Weak<T>` and turns it into a raw pointer.
1817     ///
1818     /// This converts the weak pointer into a raw pointer, while still preserving the ownership of
1819     /// one weak reference (the weak count is not modified by this operation). It can be turned
1820     /// back into the `Weak<T>` with [`from_raw`].
1821     ///
1822     /// The same restrictions of accessing the target of the pointer as with
1823     /// [`as_ptr`] apply.
1824     ///
1825     /// # Examples
1826     ///
1827     /// ```
1828     /// use std::sync::{Arc, Weak};
1829     ///
1830     /// let strong = Arc::new("hello".to_owned());
1831     /// let weak = Arc::downgrade(&strong);
1832     /// let raw = weak.into_raw();
1833     ///
1834     /// assert_eq!(1, Arc::weak_count(&strong));
1835     /// assert_eq!("hello", unsafe { &*raw });
1836     ///
1837     /// drop(unsafe { Weak::from_raw(raw) });
1838     /// assert_eq!(0, Arc::weak_count(&strong));
1839     /// ```
1840     ///
1841     /// [`from_raw`]: Weak::from_raw
1842     /// [`as_ptr`]: Weak::as_ptr
1843     #[must_use = "`self` will be dropped if the result is not used"]
1844     #[stable(feature = "weak_into_raw", since = "1.45.0")]
1845     pub fn into_raw(self) -> *const T {
1846         let result = self.as_ptr();
1847         mem::forget(self);
1848         result
1849     }
1850
1851     /// Converts a raw pointer previously created by [`into_raw`] back into `Weak<T>`.
1852     ///
1853     /// This can be used to safely get a strong reference (by calling [`upgrade`]
1854     /// later) or to deallocate the weak count by dropping the `Weak<T>`.
1855     ///
1856     /// It takes ownership of one weak reference (with the exception of pointers created by [`new`],
1857     /// as these don't own anything; the method still works on them).
1858     ///
1859     /// # Safety
1860     ///
1861     /// The pointer must have originated from the [`into_raw`] and must still own its potential
1862     /// weak reference.
1863     ///
1864     /// It is allowed for the strong count to be 0 at the time of calling this. Nevertheless, this
1865     /// takes ownership of one weak reference currently represented as a raw pointer (the weak
1866     /// count is not modified by this operation) and therefore it must be paired with a previous
1867     /// call to [`into_raw`].
1868     /// # Examples
1869     ///
1870     /// ```
1871     /// use std::sync::{Arc, Weak};
1872     ///
1873     /// let strong = Arc::new("hello".to_owned());
1874     ///
1875     /// let raw_1 = Arc::downgrade(&strong).into_raw();
1876     /// let raw_2 = Arc::downgrade(&strong).into_raw();
1877     ///
1878     /// assert_eq!(2, Arc::weak_count(&strong));
1879     ///
1880     /// assert_eq!("hello", &*unsafe { Weak::from_raw(raw_1) }.upgrade().unwrap());
1881     /// assert_eq!(1, Arc::weak_count(&strong));
1882     ///
1883     /// drop(strong);
1884     ///
1885     /// // Decrement the last weak count.
1886     /// assert!(unsafe { Weak::from_raw(raw_2) }.upgrade().is_none());
1887     /// ```
1888     ///
1889     /// [`new`]: Weak::new
1890     /// [`into_raw`]: Weak::into_raw
1891     /// [`upgrade`]: Weak::upgrade
1892     #[stable(feature = "weak_into_raw", since = "1.45.0")]
1893     pub unsafe fn from_raw(ptr: *const T) -> Self {
1894         // See Weak::as_ptr for context on how the input pointer is derived.
1895
1896         let ptr = if is_dangling(ptr as *mut T) {
1897             // This is a dangling Weak.
1898             ptr as *mut ArcInner<T>
1899         } else {
1900             // Otherwise, we're guaranteed the pointer came from a nondangling Weak.
1901             // SAFETY: data_offset is safe to call, as ptr references a real (potentially dropped) T.
1902             let offset = unsafe { data_offset(ptr) };
1903             // Thus, we reverse the offset to get the whole RcBox.
1904             // SAFETY: the pointer originated from a Weak, so this offset is safe.
1905             unsafe { (ptr as *mut u8).offset(-offset).with_metadata_of(ptr as *mut ArcInner<T>) }
1906         };
1907
1908         // SAFETY: we now have recovered the original Weak pointer, so can create the Weak.
1909         Weak { ptr: unsafe { NonNull::new_unchecked(ptr) } }
1910     }
1911 }
1912
1913 impl<T: ?Sized> Weak<T> {
1914     /// Attempts to upgrade the `Weak` pointer to an [`Arc`], delaying
1915     /// dropping of the inner value if successful.
1916     ///
1917     /// Returns [`None`] if the inner value has since been dropped.
1918     ///
1919     /// # Examples
1920     ///
1921     /// ```
1922     /// use std::sync::Arc;
1923     ///
1924     /// let five = Arc::new(5);
1925     ///
1926     /// let weak_five = Arc::downgrade(&five);
1927     ///
1928     /// let strong_five: Option<Arc<_>> = weak_five.upgrade();
1929     /// assert!(strong_five.is_some());
1930     ///
1931     /// // Destroy all strong pointers.
1932     /// drop(strong_five);
1933     /// drop(five);
1934     ///
1935     /// assert!(weak_five.upgrade().is_none());
1936     /// ```
1937     #[must_use = "this returns a new `Arc`, \
1938                   without modifying the original weak pointer"]
1939     #[stable(feature = "arc_weak", since = "1.4.0")]
1940     pub fn upgrade(&self) -> Option<Arc<T>> {
1941         // We use a CAS loop to increment the strong count instead of a
1942         // fetch_add as this function should never take the reference count
1943         // from zero to one.
1944         let inner = self.inner()?;
1945
1946         // Relaxed load because any write of 0 that we can observe
1947         // leaves the field in a permanently zero state (so a
1948         // "stale" read of 0 is fine), and any other value is
1949         // confirmed via the CAS below.
1950         let mut n = inner.strong.load(Relaxed);
1951
1952         loop {
1953             if n == 0 {
1954                 return None;
1955             }
1956
1957             // See comments in `Arc::clone` for why we do this (for `mem::forget`).
1958             if n > MAX_REFCOUNT {
1959                 abort();
1960             }
1961
1962             // Relaxed is fine for the failure case because we don't have any expectations about the new state.
1963             // Acquire is necessary for the success case to synchronise with `Arc::new_cyclic`, when the inner
1964             // value can be initialized after `Weak` references have already been created. In that case, we
1965             // expect to observe the fully initialized value.
1966             match inner.strong.compare_exchange_weak(n, n + 1, Acquire, Relaxed) {
1967                 Ok(_) => return Some(unsafe { Arc::from_inner(self.ptr) }), // null checked above
1968                 Err(old) => n = old,
1969             }
1970         }
1971     }
1972
1973     /// Gets the number of strong (`Arc`) pointers pointing to this allocation.
1974     ///
1975     /// If `self` was created using [`Weak::new`], this will return 0.
1976     #[must_use]
1977     #[stable(feature = "weak_counts", since = "1.41.0")]
1978     pub fn strong_count(&self) -> usize {
1979         if let Some(inner) = self.inner() { inner.strong.load(SeqCst) } else { 0 }
1980     }
1981
1982     /// Gets an approximation of the number of `Weak` pointers pointing to this
1983     /// allocation.
1984     ///
1985     /// If `self` was created using [`Weak::new`], or if there are no remaining
1986     /// strong pointers, this will return 0.
1987     ///
1988     /// # Accuracy
1989     ///
1990     /// Due to implementation details, the returned value can be off by 1 in
1991     /// either direction when other threads are manipulating any `Arc`s or
1992     /// `Weak`s pointing to the same allocation.
1993     #[must_use]
1994     #[stable(feature = "weak_counts", since = "1.41.0")]
1995     pub fn weak_count(&self) -> usize {
1996         self.inner()
1997             .map(|inner| {
1998                 let weak = inner.weak.load(SeqCst);
1999                 let strong = inner.strong.load(SeqCst);
2000                 if strong == 0 {
2001                     0
2002                 } else {
2003                     // Since we observed that there was at least one strong pointer
2004                     // after reading the weak count, we know that the implicit weak
2005                     // reference (present whenever any strong references are alive)
2006                     // was still around when we observed the weak count, and can
2007                     // therefore safely subtract it.
2008                     weak - 1
2009                 }
2010             })
2011             .unwrap_or(0)
2012     }
2013
2014     /// Returns `None` when the pointer is dangling and there is no allocated `ArcInner`,
2015     /// (i.e., when this `Weak` was created by `Weak::new`).
2016     #[inline]
2017     fn inner(&self) -> Option<WeakInner<'_>> {
2018         if is_dangling(self.ptr.as_ptr()) {
2019             None
2020         } else {
2021             // We are careful to *not* create a reference covering the "data" field, as
2022             // the field may be mutated concurrently (for example, if the last `Arc`
2023             // is dropped, the data field will be dropped in-place).
2024             Some(unsafe {
2025                 let ptr = self.ptr.as_ptr();
2026                 WeakInner { strong: &(*ptr).strong, weak: &(*ptr).weak }
2027             })
2028         }
2029     }
2030
2031     /// Returns `true` if the two `Weak`s point to the same allocation (similar to
2032     /// [`ptr::eq`]), or if both don't point to any allocation
2033     /// (because they were created with `Weak::new()`).
2034     ///
2035     /// # Notes
2036     ///
2037     /// Since this compares pointers it means that `Weak::new()` will equal each
2038     /// other, even though they don't point to any allocation.
2039     ///
2040     /// # Examples
2041     ///
2042     /// ```
2043     /// use std::sync::Arc;
2044     ///
2045     /// let first_rc = Arc::new(5);
2046     /// let first = Arc::downgrade(&first_rc);
2047     /// let second = Arc::downgrade(&first_rc);
2048     ///
2049     /// assert!(first.ptr_eq(&second));
2050     ///
2051     /// let third_rc = Arc::new(5);
2052     /// let third = Arc::downgrade(&third_rc);
2053     ///
2054     /// assert!(!first.ptr_eq(&third));
2055     /// ```
2056     ///
2057     /// Comparing `Weak::new`.
2058     ///
2059     /// ```
2060     /// use std::sync::{Arc, Weak};
2061     ///
2062     /// let first = Weak::new();
2063     /// let second = Weak::new();
2064     /// assert!(first.ptr_eq(&second));
2065     ///
2066     /// let third_rc = Arc::new(());
2067     /// let third = Arc::downgrade(&third_rc);
2068     /// assert!(!first.ptr_eq(&third));
2069     /// ```
2070     ///
2071     /// [`ptr::eq`]: core::ptr::eq "ptr::eq"
2072     #[inline]
2073     #[must_use]
2074     #[stable(feature = "weak_ptr_eq", since = "1.39.0")]
2075     pub fn ptr_eq(&self, other: &Self) -> bool {
2076         self.ptr.as_ptr() == other.ptr.as_ptr()
2077     }
2078 }
2079
2080 #[stable(feature = "arc_weak", since = "1.4.0")]
2081 impl<T: ?Sized> Clone for Weak<T> {
2082     /// Makes a clone of the `Weak` pointer that points to the same allocation.
2083     ///
2084     /// # Examples
2085     ///
2086     /// ```
2087     /// use std::sync::{Arc, Weak};
2088     ///
2089     /// let weak_five = Arc::downgrade(&Arc::new(5));
2090     ///
2091     /// let _ = Weak::clone(&weak_five);
2092     /// ```
2093     #[inline]
2094     fn clone(&self) -> Weak<T> {
2095         let inner = if let Some(inner) = self.inner() {
2096             inner
2097         } else {
2098             return Weak { ptr: self.ptr };
2099         };
2100         // See comments in Arc::clone() for why this is relaxed.  This can use a
2101         // fetch_add (ignoring the lock) because the weak count is only locked
2102         // where are *no other* weak pointers in existence. (So we can't be
2103         // running this code in that case).
2104         let old_size = inner.weak.fetch_add(1, Relaxed);
2105
2106         // See comments in Arc::clone() for why we do this (for mem::forget).
2107         if old_size > MAX_REFCOUNT {
2108             abort();
2109         }
2110
2111         Weak { ptr: self.ptr }
2112     }
2113 }
2114
2115 #[stable(feature = "downgraded_weak", since = "1.10.0")]
2116 impl<T> Default for Weak<T> {
2117     /// Constructs a new `Weak<T>`, without allocating memory.
2118     /// Calling [`upgrade`] on the return value always
2119     /// gives [`None`].
2120     ///
2121     /// [`upgrade`]: Weak::upgrade
2122     ///
2123     /// # Examples
2124     ///
2125     /// ```
2126     /// use std::sync::Weak;
2127     ///
2128     /// let empty: Weak<i64> = Default::default();
2129     /// assert!(empty.upgrade().is_none());
2130     /// ```
2131     fn default() -> Weak<T> {
2132         Weak::new()
2133     }
2134 }
2135
2136 #[stable(feature = "arc_weak", since = "1.4.0")]
2137 unsafe impl<#[may_dangle] T: ?Sized> Drop for Weak<T> {
2138     /// Drops the `Weak` pointer.
2139     ///
2140     /// # Examples
2141     ///
2142     /// ```
2143     /// use std::sync::{Arc, Weak};
2144     ///
2145     /// struct Foo;
2146     ///
2147     /// impl Drop for Foo {
2148     ///     fn drop(&mut self) {
2149     ///         println!("dropped!");
2150     ///     }
2151     /// }
2152     ///
2153     /// let foo = Arc::new(Foo);
2154     /// let weak_foo = Arc::downgrade(&foo);
2155     /// let other_weak_foo = Weak::clone(&weak_foo);
2156     ///
2157     /// drop(weak_foo);   // Doesn't print anything
2158     /// drop(foo);        // Prints "dropped!"
2159     ///
2160     /// assert!(other_weak_foo.upgrade().is_none());
2161     /// ```
2162     fn drop(&mut self) {
2163         // If we find out that we were the last weak pointer, then its time to
2164         // deallocate the data entirely. See the discussion in Arc::drop() about
2165         // the memory orderings
2166         //
2167         // It's not necessary to check for the locked state here, because the
2168         // weak count can only be locked if there was precisely one weak ref,
2169         // meaning that drop could only subsequently run ON that remaining weak
2170         // ref, which can only happen after the lock is released.
2171         let inner = if let Some(inner) = self.inner() { inner } else { return };
2172
2173         if inner.weak.fetch_sub(1, Release) == 1 {
2174             acquire!(inner.weak);
2175             unsafe { Global.deallocate(self.ptr.cast(), Layout::for_value_raw(self.ptr.as_ptr())) }
2176         }
2177     }
2178 }
2179
2180 #[stable(feature = "rust1", since = "1.0.0")]
2181 trait ArcEqIdent<T: ?Sized + PartialEq> {
2182     fn eq(&self, other: &Arc<T>) -> bool;
2183     fn ne(&self, other: &Arc<T>) -> bool;
2184 }
2185
2186 #[stable(feature = "rust1", since = "1.0.0")]
2187 impl<T: ?Sized + PartialEq> ArcEqIdent<T> for Arc<T> {
2188     #[inline]
2189     default fn eq(&self, other: &Arc<T>) -> bool {
2190         **self == **other
2191     }
2192     #[inline]
2193     default fn ne(&self, other: &Arc<T>) -> bool {
2194         **self != **other
2195     }
2196 }
2197
2198 /// We're doing this specialization here, and not as a more general optimization on `&T`, because it
2199 /// would otherwise add a cost to all equality checks on refs. We assume that `Arc`s are used to
2200 /// store large values, that are slow to clone, but also heavy to check for equality, causing this
2201 /// cost to pay off more easily. It's also more likely to have two `Arc` clones, that point to
2202 /// the same value, than two `&T`s.
2203 ///
2204 /// We can only do this when `T: Eq` as a `PartialEq` might be deliberately irreflexive.
2205 #[stable(feature = "rust1", since = "1.0.0")]
2206 impl<T: ?Sized + crate::rc::MarkerEq> ArcEqIdent<T> for Arc<T> {
2207     #[inline]
2208     fn eq(&self, other: &Arc<T>) -> bool {
2209         Arc::ptr_eq(self, other) || **self == **other
2210     }
2211
2212     #[inline]
2213     fn ne(&self, other: &Arc<T>) -> bool {
2214         !Arc::ptr_eq(self, other) && **self != **other
2215     }
2216 }
2217
2218 #[stable(feature = "rust1", since = "1.0.0")]
2219 impl<T: ?Sized + PartialEq> PartialEq for Arc<T> {
2220     /// Equality for two `Arc`s.
2221     ///
2222     /// Two `Arc`s are equal if their inner values are equal, even if they are
2223     /// stored in different allocation.
2224     ///
2225     /// If `T` also implements `Eq` (implying reflexivity of equality),
2226     /// two `Arc`s that point to the same allocation are always equal.
2227     ///
2228     /// # Examples
2229     ///
2230     /// ```
2231     /// use std::sync::Arc;
2232     ///
2233     /// let five = Arc::new(5);
2234     ///
2235     /// assert!(five == Arc::new(5));
2236     /// ```
2237     #[inline]
2238     fn eq(&self, other: &Arc<T>) -> bool {
2239         ArcEqIdent::eq(self, other)
2240     }
2241
2242     /// Inequality for two `Arc`s.
2243     ///
2244     /// Two `Arc`s are unequal if their inner values are unequal.
2245     ///
2246     /// If `T` also implements `Eq` (implying reflexivity of equality),
2247     /// two `Arc`s that point to the same value are never unequal.
2248     ///
2249     /// # Examples
2250     ///
2251     /// ```
2252     /// use std::sync::Arc;
2253     ///
2254     /// let five = Arc::new(5);
2255     ///
2256     /// assert!(five != Arc::new(6));
2257     /// ```
2258     #[inline]
2259     fn ne(&self, other: &Arc<T>) -> bool {
2260         ArcEqIdent::ne(self, other)
2261     }
2262 }
2263
2264 #[stable(feature = "rust1", since = "1.0.0")]
2265 impl<T: ?Sized + PartialOrd> PartialOrd for Arc<T> {
2266     /// Partial comparison for two `Arc`s.
2267     ///
2268     /// The two are compared by calling `partial_cmp()` on their inner values.
2269     ///
2270     /// # Examples
2271     ///
2272     /// ```
2273     /// use std::sync::Arc;
2274     /// use std::cmp::Ordering;
2275     ///
2276     /// let five = Arc::new(5);
2277     ///
2278     /// assert_eq!(Some(Ordering::Less), five.partial_cmp(&Arc::new(6)));
2279     /// ```
2280     fn partial_cmp(&self, other: &Arc<T>) -> Option<Ordering> {
2281         (**self).partial_cmp(&**other)
2282     }
2283
2284     /// Less-than comparison for two `Arc`s.
2285     ///
2286     /// The two are compared by calling `<` on their inner values.
2287     ///
2288     /// # Examples
2289     ///
2290     /// ```
2291     /// use std::sync::Arc;
2292     ///
2293     /// let five = Arc::new(5);
2294     ///
2295     /// assert!(five < Arc::new(6));
2296     /// ```
2297     fn lt(&self, other: &Arc<T>) -> bool {
2298         *(*self) < *(*other)
2299     }
2300
2301     /// 'Less than or equal to' comparison for two `Arc`s.
2302     ///
2303     /// The two are compared by calling `<=` on their inner values.
2304     ///
2305     /// # Examples
2306     ///
2307     /// ```
2308     /// use std::sync::Arc;
2309     ///
2310     /// let five = Arc::new(5);
2311     ///
2312     /// assert!(five <= Arc::new(5));
2313     /// ```
2314     fn le(&self, other: &Arc<T>) -> bool {
2315         *(*self) <= *(*other)
2316     }
2317
2318     /// Greater-than comparison for two `Arc`s.
2319     ///
2320     /// The two are compared by calling `>` on their inner values.
2321     ///
2322     /// # Examples
2323     ///
2324     /// ```
2325     /// use std::sync::Arc;
2326     ///
2327     /// let five = Arc::new(5);
2328     ///
2329     /// assert!(five > Arc::new(4));
2330     /// ```
2331     fn gt(&self, other: &Arc<T>) -> bool {
2332         *(*self) > *(*other)
2333     }
2334
2335     /// 'Greater than or equal to' comparison for two `Arc`s.
2336     ///
2337     /// The two are compared by calling `>=` on their inner values.
2338     ///
2339     /// # Examples
2340     ///
2341     /// ```
2342     /// use std::sync::Arc;
2343     ///
2344     /// let five = Arc::new(5);
2345     ///
2346     /// assert!(five >= Arc::new(5));
2347     /// ```
2348     fn ge(&self, other: &Arc<T>) -> bool {
2349         *(*self) >= *(*other)
2350     }
2351 }
2352 #[stable(feature = "rust1", since = "1.0.0")]
2353 impl<T: ?Sized + Ord> Ord for Arc<T> {
2354     /// Comparison for two `Arc`s.
2355     ///
2356     /// The two are compared by calling `cmp()` on their inner values.
2357     ///
2358     /// # Examples
2359     ///
2360     /// ```
2361     /// use std::sync::Arc;
2362     /// use std::cmp::Ordering;
2363     ///
2364     /// let five = Arc::new(5);
2365     ///
2366     /// assert_eq!(Ordering::Less, five.cmp(&Arc::new(6)));
2367     /// ```
2368     fn cmp(&self, other: &Arc<T>) -> Ordering {
2369         (**self).cmp(&**other)
2370     }
2371 }
2372 #[stable(feature = "rust1", since = "1.0.0")]
2373 impl<T: ?Sized + Eq> Eq for Arc<T> {}
2374
2375 #[stable(feature = "rust1", since = "1.0.0")]
2376 impl<T: ?Sized + fmt::Display> fmt::Display for Arc<T> {
2377     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2378         fmt::Display::fmt(&**self, f)
2379     }
2380 }
2381
2382 #[stable(feature = "rust1", since = "1.0.0")]
2383 impl<T: ?Sized + fmt::Debug> fmt::Debug for Arc<T> {
2384     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2385         fmt::Debug::fmt(&**self, f)
2386     }
2387 }
2388
2389 #[stable(feature = "rust1", since = "1.0.0")]
2390 impl<T: ?Sized> fmt::Pointer for Arc<T> {
2391     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2392         fmt::Pointer::fmt(&(&**self as *const T), f)
2393     }
2394 }
2395
2396 #[cfg(not(no_global_oom_handling))]
2397 #[stable(feature = "rust1", since = "1.0.0")]
2398 impl<T: Default> Default for Arc<T> {
2399     /// Creates a new `Arc<T>`, with the `Default` value for `T`.
2400     ///
2401     /// # Examples
2402     ///
2403     /// ```
2404     /// use std::sync::Arc;
2405     ///
2406     /// let x: Arc<i32> = Default::default();
2407     /// assert_eq!(*x, 0);
2408     /// ```
2409     fn default() -> Arc<T> {
2410         Arc::new(Default::default())
2411     }
2412 }
2413
2414 #[stable(feature = "rust1", since = "1.0.0")]
2415 impl<T: ?Sized + Hash> Hash for Arc<T> {
2416     fn hash<H: Hasher>(&self, state: &mut H) {
2417         (**self).hash(state)
2418     }
2419 }
2420
2421 #[cfg(not(no_global_oom_handling))]
2422 #[stable(feature = "from_for_ptrs", since = "1.6.0")]
2423 impl<T> From<T> for Arc<T> {
2424     /// Converts a `T` into an `Arc<T>`
2425     ///
2426     /// The conversion moves the value into a
2427     /// newly allocated `Arc`. It is equivalent to
2428     /// calling `Arc::new(t)`.
2429     ///
2430     /// # Example
2431     /// ```rust
2432     /// # use std::sync::Arc;
2433     /// let x = 5;
2434     /// let arc = Arc::new(5);
2435     ///
2436     /// assert_eq!(Arc::from(x), arc);
2437     /// ```
2438     fn from(t: T) -> Self {
2439         Arc::new(t)
2440     }
2441 }
2442
2443 #[cfg(not(no_global_oom_handling))]
2444 #[stable(feature = "shared_from_slice", since = "1.21.0")]
2445 impl<T: Clone> From<&[T]> for Arc<[T]> {
2446     /// Allocate a reference-counted slice and fill it by cloning `v`'s items.
2447     ///
2448     /// # Example
2449     ///
2450     /// ```
2451     /// # use std::sync::Arc;
2452     /// let original: &[i32] = &[1, 2, 3];
2453     /// let shared: Arc<[i32]> = Arc::from(original);
2454     /// assert_eq!(&[1, 2, 3], &shared[..]);
2455     /// ```
2456     #[inline]
2457     fn from(v: &[T]) -> Arc<[T]> {
2458         <Self as ArcFromSlice<T>>::from_slice(v)
2459     }
2460 }
2461
2462 #[cfg(not(no_global_oom_handling))]
2463 #[stable(feature = "shared_from_slice", since = "1.21.0")]
2464 impl From<&str> for Arc<str> {
2465     /// Allocate a reference-counted `str` and copy `v` into it.
2466     ///
2467     /// # Example
2468     ///
2469     /// ```
2470     /// # use std::sync::Arc;
2471     /// let shared: Arc<str> = Arc::from("eggplant");
2472     /// assert_eq!("eggplant", &shared[..]);
2473     /// ```
2474     #[inline]
2475     fn from(v: &str) -> Arc<str> {
2476         let arc = Arc::<[u8]>::from(v.as_bytes());
2477         unsafe { Arc::from_raw(Arc::into_raw(arc) as *const str) }
2478     }
2479 }
2480
2481 #[cfg(not(no_global_oom_handling))]
2482 #[stable(feature = "shared_from_slice", since = "1.21.0")]
2483 impl From<String> for Arc<str> {
2484     /// Allocate a reference-counted `str` and copy `v` into it.
2485     ///
2486     /// # Example
2487     ///
2488     /// ```
2489     /// # use std::sync::Arc;
2490     /// let unique: String = "eggplant".to_owned();
2491     /// let shared: Arc<str> = Arc::from(unique);
2492     /// assert_eq!("eggplant", &shared[..]);
2493     /// ```
2494     #[inline]
2495     fn from(v: String) -> Arc<str> {
2496         Arc::from(&v[..])
2497     }
2498 }
2499
2500 #[cfg(not(no_global_oom_handling))]
2501 #[stable(feature = "shared_from_slice", since = "1.21.0")]
2502 impl<T: ?Sized> From<Box<T>> for Arc<T> {
2503     /// Move a boxed object to a new, reference-counted allocation.
2504     ///
2505     /// # Example
2506     ///
2507     /// ```
2508     /// # use std::sync::Arc;
2509     /// let unique: Box<str> = Box::from("eggplant");
2510     /// let shared: Arc<str> = Arc::from(unique);
2511     /// assert_eq!("eggplant", &shared[..]);
2512     /// ```
2513     #[inline]
2514     fn from(v: Box<T>) -> Arc<T> {
2515         Arc::from_box(v)
2516     }
2517 }
2518
2519 #[cfg(not(no_global_oom_handling))]
2520 #[stable(feature = "shared_from_slice", since = "1.21.0")]
2521 impl<T> From<Vec<T>> for Arc<[T]> {
2522     /// Allocate a reference-counted slice and move `v`'s items into it.
2523     ///
2524     /// # Example
2525     ///
2526     /// ```
2527     /// # use std::sync::Arc;
2528     /// let unique: Vec<i32> = vec![1, 2, 3];
2529     /// let shared: Arc<[i32]> = Arc::from(unique);
2530     /// assert_eq!(&[1, 2, 3], &shared[..]);
2531     /// ```
2532     #[inline]
2533     fn from(mut v: Vec<T>) -> Arc<[T]> {
2534         unsafe {
2535             let arc = Arc::copy_from_slice(&v);
2536
2537             // Allow the Vec to free its memory, but not destroy its contents
2538             v.set_len(0);
2539
2540             arc
2541         }
2542     }
2543 }
2544
2545 #[stable(feature = "shared_from_cow", since = "1.45.0")]
2546 impl<'a, B> From<Cow<'a, B>> for Arc<B>
2547 where
2548     B: ToOwned + ?Sized,
2549     Arc<B>: From<&'a B> + From<B::Owned>,
2550 {
2551     /// Create an atomically reference-counted pointer from
2552     /// a clone-on-write pointer by copying its content.
2553     ///
2554     /// # Example
2555     ///
2556     /// ```rust
2557     /// # use std::sync::Arc;
2558     /// # use std::borrow::Cow;
2559     /// let cow: Cow<str> = Cow::Borrowed("eggplant");
2560     /// let shared: Arc<str> = Arc::from(cow);
2561     /// assert_eq!("eggplant", &shared[..]);
2562     /// ```
2563     #[inline]
2564     fn from(cow: Cow<'a, B>) -> Arc<B> {
2565         match cow {
2566             Cow::Borrowed(s) => Arc::from(s),
2567             Cow::Owned(s) => Arc::from(s),
2568         }
2569     }
2570 }
2571
2572 #[stable(feature = "shared_from_str", since = "1.62.0")]
2573 impl From<Arc<str>> for Arc<[u8]> {
2574     /// Converts an atomically reference-counted string slice into a byte slice.
2575     ///
2576     /// # Example
2577     ///
2578     /// ```
2579     /// # use std::sync::Arc;
2580     /// let string: Arc<str> = Arc::from("eggplant");
2581     /// let bytes: Arc<[u8]> = Arc::from(string);
2582     /// assert_eq!("eggplant".as_bytes(), bytes.as_ref());
2583     /// ```
2584     #[inline]
2585     fn from(rc: Arc<str>) -> Self {
2586         // SAFETY: `str` has the same layout as `[u8]`.
2587         unsafe { Arc::from_raw(Arc::into_raw(rc) as *const [u8]) }
2588     }
2589 }
2590
2591 #[stable(feature = "boxed_slice_try_from", since = "1.43.0")]
2592 impl<T, const N: usize> TryFrom<Arc<[T]>> for Arc<[T; N]> {
2593     type Error = Arc<[T]>;
2594
2595     fn try_from(boxed_slice: Arc<[T]>) -> Result<Self, Self::Error> {
2596         if boxed_slice.len() == N {
2597             Ok(unsafe { Arc::from_raw(Arc::into_raw(boxed_slice) as *mut [T; N]) })
2598         } else {
2599             Err(boxed_slice)
2600         }
2601     }
2602 }
2603
2604 #[cfg(not(no_global_oom_handling))]
2605 #[stable(feature = "shared_from_iter", since = "1.37.0")]
2606 impl<T> iter::FromIterator<T> for Arc<[T]> {
2607     /// Takes each element in the `Iterator` and collects it into an `Arc<[T]>`.
2608     ///
2609     /// # Performance characteristics
2610     ///
2611     /// ## The general case
2612     ///
2613     /// In the general case, collecting into `Arc<[T]>` is done by first
2614     /// collecting into a `Vec<T>`. That is, when writing the following:
2615     ///
2616     /// ```rust
2617     /// # use std::sync::Arc;
2618     /// let evens: Arc<[u8]> = (0..10).filter(|&x| x % 2 == 0).collect();
2619     /// # assert_eq!(&*evens, &[0, 2, 4, 6, 8]);
2620     /// ```
2621     ///
2622     /// this behaves as if we wrote:
2623     ///
2624     /// ```rust
2625     /// # use std::sync::Arc;
2626     /// let evens: Arc<[u8]> = (0..10).filter(|&x| x % 2 == 0)
2627     ///     .collect::<Vec<_>>() // The first set of allocations happens here.
2628     ///     .into(); // A second allocation for `Arc<[T]>` happens here.
2629     /// # assert_eq!(&*evens, &[0, 2, 4, 6, 8]);
2630     /// ```
2631     ///
2632     /// This will allocate as many times as needed for constructing the `Vec<T>`
2633     /// and then it will allocate once for turning the `Vec<T>` into the `Arc<[T]>`.
2634     ///
2635     /// ## Iterators of known length
2636     ///
2637     /// When your `Iterator` implements `TrustedLen` and is of an exact size,
2638     /// a single allocation will be made for the `Arc<[T]>`. For example:
2639     ///
2640     /// ```rust
2641     /// # use std::sync::Arc;
2642     /// let evens: Arc<[u8]> = (0..10).collect(); // Just a single allocation happens here.
2643     /// # assert_eq!(&*evens, &*(0..10).collect::<Vec<_>>());
2644     /// ```
2645     fn from_iter<I: iter::IntoIterator<Item = T>>(iter: I) -> Self {
2646         ToArcSlice::to_arc_slice(iter.into_iter())
2647     }
2648 }
2649
2650 /// Specialization trait used for collecting into `Arc<[T]>`.
2651 trait ToArcSlice<T>: Iterator<Item = T> + Sized {
2652     fn to_arc_slice(self) -> Arc<[T]>;
2653 }
2654
2655 #[cfg(not(no_global_oom_handling))]
2656 impl<T, I: Iterator<Item = T>> ToArcSlice<T> for I {
2657     default fn to_arc_slice(self) -> Arc<[T]> {
2658         self.collect::<Vec<T>>().into()
2659     }
2660 }
2661
2662 #[cfg(not(no_global_oom_handling))]
2663 impl<T, I: iter::TrustedLen<Item = T>> ToArcSlice<T> for I {
2664     fn to_arc_slice(self) -> Arc<[T]> {
2665         // This is the case for a `TrustedLen` iterator.
2666         let (low, high) = self.size_hint();
2667         if let Some(high) = high {
2668             debug_assert_eq!(
2669                 low,
2670                 high,
2671                 "TrustedLen iterator's size hint is not exact: {:?}",
2672                 (low, high)
2673             );
2674
2675             unsafe {
2676                 // SAFETY: We need to ensure that the iterator has an exact length and we have.
2677                 Arc::from_iter_exact(self, low)
2678             }
2679         } else {
2680             // TrustedLen contract guarantees that `upper_bound == `None` implies an iterator
2681             // length exceeding `usize::MAX`.
2682             // The default implementation would collect into a vec which would panic.
2683             // Thus we panic here immediately without invoking `Vec` code.
2684             panic!("capacity overflow");
2685         }
2686     }
2687 }
2688
2689 #[stable(feature = "rust1", since = "1.0.0")]
2690 impl<T: ?Sized> borrow::Borrow<T> for Arc<T> {
2691     fn borrow(&self) -> &T {
2692         &**self
2693     }
2694 }
2695
2696 #[stable(since = "1.5.0", feature = "smart_ptr_as_ref")]
2697 impl<T: ?Sized> AsRef<T> for Arc<T> {
2698     fn as_ref(&self) -> &T {
2699         &**self
2700     }
2701 }
2702
2703 #[stable(feature = "pin", since = "1.33.0")]
2704 impl<T: ?Sized> Unpin for Arc<T> {}
2705
2706 /// Get the offset within an `ArcInner` for the payload behind a pointer.
2707 ///
2708 /// # Safety
2709 ///
2710 /// The pointer must point to (and have valid metadata for) a previously
2711 /// valid instance of T, but the T is allowed to be dropped.
2712 unsafe fn data_offset<T: ?Sized>(ptr: *const T) -> isize {
2713     // Align the unsized value to the end of the ArcInner.
2714     // Because RcBox is repr(C), it will always be the last field in memory.
2715     // SAFETY: since the only unsized types possible are slices, trait objects,
2716     // and extern types, the input safety requirement is currently enough to
2717     // satisfy the requirements of align_of_val_raw; this is an implementation
2718     // detail of the language that must not be relied upon outside of std.
2719     unsafe { data_offset_align(align_of_val_raw(ptr)) }
2720 }
2721
2722 #[inline]
2723 fn data_offset_align(align: usize) -> isize {
2724     let layout = Layout::new::<ArcInner<()>>();
2725     (layout.size() + layout.padding_needed_for(align)) as isize
2726 }