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