@@ -124,9 +124,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
124
124
#[ unsafe_no_drop_flag]
125
125
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
126
126
pub struct Arc < T : ?Sized > {
127
- // FIXME #12808: strange name to try to avoid interfering with
128
- // field accesses of the contained type via Deref
129
- _ptr : Shared < ArcInner < T > > ,
127
+ ptr : Shared < ArcInner < T > > ,
130
128
}
131
129
132
130
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -144,9 +142,7 @@ impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Arc<U>> for Arc<T> {}
144
142
#[ unsafe_no_drop_flag]
145
143
#[ stable( feature = "arc_weak" , since = "1.4.0" ) ]
146
144
pub struct Weak < T : ?Sized > {
147
- // FIXME #12808: strange name to try to avoid interfering with
148
- // field accesses of the contained type via Deref
149
- _ptr : Shared < ArcInner < T > > ,
145
+ ptr : Shared < ArcInner < T > > ,
150
146
}
151
147
152
148
#[ stable( feature = "arc_weak" , since = "1.4.0" ) ]
@@ -198,7 +194,7 @@ impl<T> Arc<T> {
198
194
weak : atomic:: AtomicUsize :: new ( 1 ) ,
199
195
data : data,
200
196
} ;
201
- Arc { _ptr : unsafe { Shared :: new ( Box :: into_raw ( x) ) } }
197
+ Arc { ptr : unsafe { Shared :: new ( Box :: into_raw ( x) ) } }
202
198
}
203
199
204
200
/// Unwraps the contained value if the `Arc<T>` has exactly one strong reference.
@@ -230,11 +226,11 @@ impl<T> Arc<T> {
230
226
atomic:: fence ( Acquire ) ;
231
227
232
228
unsafe {
233
- let ptr = * this. _ptr ;
229
+ let ptr = * this. ptr ;
234
230
let elem = ptr:: read ( & ( * ptr) . data ) ;
235
231
236
232
// Make a weak pointer to clean up the implicit strong-weak reference
237
- let _weak = Weak { _ptr : this. _ptr } ;
233
+ let _weak = Weak { ptr : this. ptr } ;
238
234
mem:: forget ( this) ;
239
235
240
236
Ok ( elem)
@@ -275,7 +271,7 @@ impl<T: ?Sized> Arc<T> {
275
271
// synchronize with the write coming from `is_unique`, so that the
276
272
// events prior to that write happen before this read.
277
273
match this. inner ( ) . weak . compare_exchange_weak ( cur, cur + 1 , Acquire , Relaxed ) {
278
- Ok ( _) => return Weak { _ptr : this. _ptr } ,
274
+ Ok ( _) => return Weak { ptr : this. ptr } ,
279
275
Err ( old) => cur = old,
280
276
}
281
277
}
@@ -304,13 +300,13 @@ impl<T: ?Sized> Arc<T> {
304
300
// `ArcInner` structure itself is `Sync` because the inner data is
305
301
// `Sync` as well, so we're ok loaning out an immutable pointer to these
306
302
// contents.
307
- unsafe { & * * self . _ptr }
303
+ unsafe { & * * self . ptr }
308
304
}
309
305
310
306
// Non-inlined part of `drop`.
311
307
#[ inline( never) ]
312
308
unsafe fn drop_slow ( & mut self ) {
313
- let ptr = * self . _ptr ;
309
+ let ptr = * self . ptr ;
314
310
315
311
// Destroy the data at this time, even though we may not free the box
316
312
// allocation itself (there may still be weak pointers lying around).
@@ -368,7 +364,7 @@ impl<T: ?Sized> Clone for Arc<T> {
368
364
}
369
365
}
370
366
371
- Arc { _ptr : self . _ptr }
367
+ Arc { ptr : self . ptr }
372
368
}
373
369
}
374
370
@@ -436,15 +432,15 @@ impl<T: Clone> Arc<T> {
436
432
437
433
// Materialize our own implicit weak pointer, so that it can clean
438
434
// up the ArcInner as needed.
439
- let weak = Weak { _ptr : this. _ptr } ;
435
+ let weak = Weak { ptr : this. ptr } ;
440
436
441
437
// mark the data itself as already deallocated
442
438
unsafe {
443
439
// there is no data race in the implicit write caused by `read`
444
440
// here (due to zeroing) because data is no longer accessed by
445
441
// other threads (due to there being no more strong refs at this
446
442
// point).
447
- let mut swap = Arc :: new ( ptr:: read ( & ( * * weak. _ptr ) . data ) ) ;
443
+ let mut swap = Arc :: new ( ptr:: read ( & ( * * weak. ptr ) . data ) ) ;
448
444
mem:: swap ( this, & mut swap) ;
449
445
mem:: forget ( swap) ;
450
446
}
@@ -457,7 +453,7 @@ impl<T: Clone> Arc<T> {
457
453
// As with `get_mut()`, the unsafety is ok because our reference was
458
454
// either unique to begin with, or became one upon cloning the contents.
459
455
unsafe {
460
- let inner = & mut * * this. _ptr ;
456
+ let inner = & mut * * this. ptr ;
461
457
& mut inner. data
462
458
}
463
459
}
@@ -489,7 +485,7 @@ impl<T: ?Sized> Arc<T> {
489
485
// the Arc itself to be `mut`, so we're returning the only possible
490
486
// reference to the inner data.
491
487
unsafe {
492
- let inner = & mut * * this. _ptr ;
488
+ let inner = & mut * * this. ptr ;
493
489
Some ( & mut inner. data )
494
490
}
495
491
} else {
@@ -558,7 +554,7 @@ impl<T: ?Sized> Drop for Arc<T> {
558
554
// This structure has #[unsafe_no_drop_flag], so this drop glue may run
559
555
// more than once (but it is guaranteed to be zeroed after the first if
560
556
// it's run more than once)
561
- let thin = * self . _ptr as * const ( ) ;
557
+ let thin = * self . ptr as * const ( ) ;
562
558
563
559
if thin as usize == mem:: POST_DROP_USIZE {
564
560
return ;
@@ -639,7 +635,7 @@ impl<T: ?Sized> Weak<T> {
639
635
640
636
// Relaxed is valid for the same reason it is on Arc's Clone impl
641
637
match inner. strong . compare_exchange_weak ( n, n + 1 , Relaxed , Relaxed ) {
642
- Ok ( _) => return Some ( Arc { _ptr : self . _ptr } ) ,
638
+ Ok ( _) => return Some ( Arc { ptr : self . ptr } ) ,
643
639
Err ( old) => n = old,
644
640
}
645
641
}
@@ -648,7 +644,7 @@ impl<T: ?Sized> Weak<T> {
648
644
#[ inline]
649
645
fn inner ( & self ) -> & ArcInner < T > {
650
646
// See comments above for why this is "safe"
651
- unsafe { & * * self . _ptr }
647
+ unsafe { & * * self . ptr }
652
648
}
653
649
}
654
650
@@ -682,7 +678,7 @@ impl<T: ?Sized> Clone for Weak<T> {
682
678
}
683
679
}
684
680
685
- return Weak { _ptr : self . _ptr } ;
681
+ return Weak { ptr : self . ptr } ;
686
682
}
687
683
}
688
684
@@ -714,7 +710,7 @@ impl<T: ?Sized> Drop for Weak<T> {
714
710
/// } // implicit drop
715
711
/// ```
716
712
fn drop ( & mut self ) {
717
- let ptr = * self . _ptr ;
713
+ let ptr = * self . ptr ;
718
714
let thin = ptr as * const ( ) ;
719
715
720
716
// see comments above for why this check is here
@@ -886,7 +882,7 @@ impl<T: ?Sized + fmt::Debug> fmt::Debug for Arc<T> {
886
882
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
887
883
impl < T : ?Sized > fmt:: Pointer for Arc < T > {
888
884
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
889
- fmt:: Pointer :: fmt ( & * self . _ptr , f)
885
+ fmt:: Pointer :: fmt ( & * self . ptr , f)
890
886
}
891
887
}
892
888
@@ -931,7 +927,7 @@ impl<T> Weak<T> {
931
927
issue = "30425" ) ]
932
928
pub fn new ( ) -> Weak < T > {
933
929
unsafe {
934
- Weak { _ptr : Shared :: new ( Box :: into_raw ( box ArcInner {
930
+ Weak { ptr : Shared :: new ( Box :: into_raw ( box ArcInner {
935
931
strong : atomic:: AtomicUsize :: new ( 0 ) ,
936
932
weak : atomic:: AtomicUsize :: new ( 1 ) ,
937
933
data : uninitialized ( ) ,
0 commit comments