Skip to content

Commit dde35e7

Browse files
committed
Auto merge of #32800 - Manishearth:rollup, r=Manishearth
Rollup of 7 pull requests - Successful merges: #32687, #32729, #32731, #32732, #32734, #32737, #32741 - Failed merges:
2 parents 7979dd6 + 1d59b91 commit dde35e7

File tree

22 files changed

+222
-136
lines changed

22 files changed

+222
-136
lines changed

configure

-12
Original file line numberDiff line numberDiff line change
@@ -717,18 +717,6 @@ if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; f
717717

718718
if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT; fi
719719

720-
# A magic value that allows the compiler to use unstable features
721-
# during the bootstrap even when doing so would normally be an error
722-
# because of feature staging or because the build turns on
723-
# warnings-as-errors and unstable features default to warnings. The
724-
# build has to match this key in an env var. Meant to be a mild
725-
# deterrent from users just turning on unstable features on the stable
726-
# channel.
727-
# Basing CFG_BOOTSTRAP_KEY on CFG_BOOTSTRAP_KEY lets it get picked up
728-
# during a Makefile reconfig.
729-
CFG_BOOTSTRAP_KEY="${CFG_BOOTSTRAP_KEY-`date +%H:%M:%S`}"
730-
putvar CFG_BOOTSTRAP_KEY
731-
732720
step_msg "looking for build programs"
733721

734722
probe_need CFG_CURLORWGET curl wget

mk/main.mk

+11
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,17 @@ CFG_PRERELEASE_VERSION=.1
2424
# versions in the same place
2525
CFG_FILENAME_EXTRA=$(shell printf '%s' $(CFG_RELEASE)$(CFG_EXTRA_FILENAME) | $(CFG_HASH_COMMAND))
2626

27+
# A magic value that allows the compiler to use unstable features during the
28+
# bootstrap even when doing so would normally be an error because of feature
29+
# staging or because the build turns on warnings-as-errors and unstable features
30+
# default to warnings. The build has to match this key in an env var.
31+
#
32+
# This value is keyed off the release to ensure that all compilers for one
33+
# particular release have the same bootstrap key. Note that this is
34+
# intentionally not "secure" by any definition, this is largely just a deterrent
35+
# from users enabling unstable features on the stable compiler.
36+
CFG_BOOTSTRAP_KEY=$(CFG_FILENAME_EXTRA)
37+
2738
ifeq ($(CFG_RELEASE_CHANNEL),stable)
2839
# This is the normal semver version string, e.g. "0.12.0", "0.12.0-nightly"
2940
CFG_RELEASE=$(CFG_RELEASE_NUM)

src/build_helper/lib.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,16 @@ pub fn cc2ar(cc: &Path, target: &str) -> PathBuf {
4343
if target.contains("musl") || target.contains("msvc") {
4444
PathBuf::from("ar")
4545
} else {
46+
let parent = cc.parent().unwrap();
4647
let file = cc.file_name().unwrap().to_str().unwrap();
47-
cc.parent().unwrap().join(file.replace("gcc", "ar")
48-
.replace("cc", "ar")
49-
.replace("clang", "ar"))
48+
for suffix in &["gcc", "cc", "clang"] {
49+
if let Some(idx) = file.rfind(suffix) {
50+
let mut file = file[..idx].to_owned();
51+
file.push_str("ar");
52+
return parent.join(&file);
53+
}
54+
}
55+
parent.join(file)
5056
}
5157
}
5258

src/liballoc/arc.rs

+20-24
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
124124
#[unsafe_no_drop_flag]
125125
#[stable(feature = "rust1", since = "1.0.0")]
126126
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>>,
130128
}
131129

132130
#[stable(feature = "rust1", since = "1.0.0")]
@@ -144,9 +142,7 @@ impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<Arc<U>> for Arc<T> {}
144142
#[unsafe_no_drop_flag]
145143
#[stable(feature = "arc_weak", since = "1.4.0")]
146144
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>>,
150146
}
151147

152148
#[stable(feature = "arc_weak", since = "1.4.0")]
@@ -198,7 +194,7 @@ impl<T> Arc<T> {
198194
weak: atomic::AtomicUsize::new(1),
199195
data: data,
200196
};
201-
Arc { _ptr: unsafe { Shared::new(Box::into_raw(x)) } }
197+
Arc { ptr: unsafe { Shared::new(Box::into_raw(x)) } }
202198
}
203199

204200
/// Unwraps the contained value if the `Arc<T>` has exactly one strong reference.
@@ -230,11 +226,11 @@ impl<T> Arc<T> {
230226
atomic::fence(Acquire);
231227

232228
unsafe {
233-
let ptr = *this._ptr;
229+
let ptr = *this.ptr;
234230
let elem = ptr::read(&(*ptr).data);
235231

236232
// 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 };
238234
mem::forget(this);
239235

240236
Ok(elem)
@@ -275,7 +271,7 @@ impl<T: ?Sized> Arc<T> {
275271
// synchronize with the write coming from `is_unique`, so that the
276272
// events prior to that write happen before this read.
277273
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 },
279275
Err(old) => cur = old,
280276
}
281277
}
@@ -304,13 +300,13 @@ impl<T: ?Sized> Arc<T> {
304300
// `ArcInner` structure itself is `Sync` because the inner data is
305301
// `Sync` as well, so we're ok loaning out an immutable pointer to these
306302
// contents.
307-
unsafe { &**self._ptr }
303+
unsafe { &**self.ptr }
308304
}
309305

310306
// Non-inlined part of `drop`.
311307
#[inline(never)]
312308
unsafe fn drop_slow(&mut self) {
313-
let ptr = *self._ptr;
309+
let ptr = *self.ptr;
314310

315311
// Destroy the data at this time, even though we may not free the box
316312
// allocation itself (there may still be weak pointers lying around).
@@ -368,7 +364,7 @@ impl<T: ?Sized> Clone for Arc<T> {
368364
}
369365
}
370366

371-
Arc { _ptr: self._ptr }
367+
Arc { ptr: self.ptr }
372368
}
373369
}
374370

@@ -436,15 +432,15 @@ impl<T: Clone> Arc<T> {
436432

437433
// Materialize our own implicit weak pointer, so that it can clean
438434
// up the ArcInner as needed.
439-
let weak = Weak { _ptr: this._ptr };
435+
let weak = Weak { ptr: this.ptr };
440436

441437
// mark the data itself as already deallocated
442438
unsafe {
443439
// there is no data race in the implicit write caused by `read`
444440
// here (due to zeroing) because data is no longer accessed by
445441
// other threads (due to there being no more strong refs at this
446442
// point).
447-
let mut swap = Arc::new(ptr::read(&(**weak._ptr).data));
443+
let mut swap = Arc::new(ptr::read(&(**weak.ptr).data));
448444
mem::swap(this, &mut swap);
449445
mem::forget(swap);
450446
}
@@ -457,7 +453,7 @@ impl<T: Clone> Arc<T> {
457453
// As with `get_mut()`, the unsafety is ok because our reference was
458454
// either unique to begin with, or became one upon cloning the contents.
459455
unsafe {
460-
let inner = &mut **this._ptr;
456+
let inner = &mut **this.ptr;
461457
&mut inner.data
462458
}
463459
}
@@ -489,7 +485,7 @@ impl<T: ?Sized> Arc<T> {
489485
// the Arc itself to be `mut`, so we're returning the only possible
490486
// reference to the inner data.
491487
unsafe {
492-
let inner = &mut **this._ptr;
488+
let inner = &mut **this.ptr;
493489
Some(&mut inner.data)
494490
}
495491
} else {
@@ -558,7 +554,7 @@ impl<T: ?Sized> Drop for Arc<T> {
558554
// This structure has #[unsafe_no_drop_flag], so this drop glue may run
559555
// more than once (but it is guaranteed to be zeroed after the first if
560556
// it's run more than once)
561-
let thin = *self._ptr as *const ();
557+
let thin = *self.ptr as *const ();
562558

563559
if thin as usize == mem::POST_DROP_USIZE {
564560
return;
@@ -639,7 +635,7 @@ impl<T: ?Sized> Weak<T> {
639635

640636
// Relaxed is valid for the same reason it is on Arc's Clone impl
641637
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 }),
643639
Err(old) => n = old,
644640
}
645641
}
@@ -648,7 +644,7 @@ impl<T: ?Sized> Weak<T> {
648644
#[inline]
649645
fn inner(&self) -> &ArcInner<T> {
650646
// See comments above for why this is "safe"
651-
unsafe { &**self._ptr }
647+
unsafe { &**self.ptr }
652648
}
653649
}
654650

@@ -682,7 +678,7 @@ impl<T: ?Sized> Clone for Weak<T> {
682678
}
683679
}
684680

685-
return Weak { _ptr: self._ptr };
681+
return Weak { ptr: self.ptr };
686682
}
687683
}
688684

@@ -714,7 +710,7 @@ impl<T: ?Sized> Drop for Weak<T> {
714710
/// } // implicit drop
715711
/// ```
716712
fn drop(&mut self) {
717-
let ptr = *self._ptr;
713+
let ptr = *self.ptr;
718714
let thin = ptr as *const ();
719715

720716
// see comments above for why this check is here
@@ -886,7 +882,7 @@ impl<T: ?Sized + fmt::Debug> fmt::Debug for Arc<T> {
886882
#[stable(feature = "rust1", since = "1.0.0")]
887883
impl<T: ?Sized> fmt::Pointer for Arc<T> {
888884
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
889-
fmt::Pointer::fmt(&*self._ptr, f)
885+
fmt::Pointer::fmt(&*self.ptr, f)
890886
}
891887
}
892888

@@ -931,7 +927,7 @@ impl<T> Weak<T> {
931927
issue = "30425")]
932928
pub fn new() -> Weak<T> {
933929
unsafe {
934-
Weak { _ptr: Shared::new(Box::into_raw(box ArcInner {
930+
Weak { ptr: Shared::new(Box::into_raw(box ArcInner {
935931
strong: atomic::AtomicUsize::new(0),
936932
weak: atomic::AtomicUsize::new(1),
937933
data: uninitialized(),

src/liballoc/rc.rs

+19-23
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,7 @@ struct RcBox<T: ?Sized> {
184184
#[unsafe_no_drop_flag]
185185
#[stable(feature = "rust1", since = "1.0.0")]
186186
pub struct Rc<T: ?Sized> {
187-
// FIXME #12808: strange names to try to avoid interfering with field
188-
// accesses of the contained type via Deref
189-
_ptr: Shared<RcBox<T>>,
187+
ptr: Shared<RcBox<T>>,
190188
}
191189

192190
#[stable(feature = "rust1", since = "1.0.0")]
@@ -215,7 +213,7 @@ impl<T> Rc<T> {
215213
// pointers, which ensures that the weak destructor never frees
216214
// the allocation while the strong destructor is running, even
217215
// if the weak pointer is stored inside the strong one.
218-
_ptr: Shared::new(Box::into_raw(box RcBox {
216+
ptr: Shared::new(Box::into_raw(box RcBox {
219217
strong: Cell::new(1),
220218
weak: Cell::new(1),
221219
value: value,
@@ -254,7 +252,7 @@ impl<T> Rc<T> {
254252
// pointer while also handling drop logic by just crafting a
255253
// fake Weak.
256254
this.dec_strong();
257-
let _weak = Weak { _ptr: this._ptr };
255+
let _weak = Weak { ptr: this.ptr };
258256
forget(this);
259257
Ok(val)
260258
}
@@ -287,7 +285,7 @@ impl<T: ?Sized> Rc<T> {
287285
#[stable(feature = "rc_weak", since = "1.4.0")]
288286
pub fn downgrade(this: &Self) -> Weak<T> {
289287
this.inc_weak();
290-
Weak { _ptr: this._ptr }
288+
Weak { ptr: this.ptr }
291289
}
292290

293291
/// Get the number of weak references to this value.
@@ -348,7 +346,7 @@ impl<T: ?Sized> Rc<T> {
348346
#[stable(feature = "rc_unique", since = "1.4.0")]
349347
pub fn get_mut(this: &mut Self) -> Option<&mut T> {
350348
if Rc::is_unique(this) {
351-
let inner = unsafe { &mut **this._ptr };
349+
let inner = unsafe { &mut **this.ptr };
352350
Some(&mut inner.value)
353351
} else {
354352
None
@@ -390,7 +388,7 @@ impl<T: Clone> Rc<T> {
390388
} else if Rc::weak_count(this) != 0 {
391389
// Can just steal the data, all that's left is Weaks
392390
unsafe {
393-
let mut swap = Rc::new(ptr::read(&(**this._ptr).value));
391+
let mut swap = Rc::new(ptr::read(&(**this.ptr).value));
394392
mem::swap(this, &mut swap);
395393
swap.dec_strong();
396394
// Remove implicit strong-weak ref (no need to craft a fake
@@ -404,7 +402,7 @@ impl<T: Clone> Rc<T> {
404402
// reference count is guaranteed to be 1 at this point, and we required
405403
// the `Rc<T>` itself to be `mut`, so we're returning the only possible
406404
// reference to the inner value.
407-
let inner = unsafe { &mut **this._ptr };
405+
let inner = unsafe { &mut **this.ptr };
408406
&mut inner.value
409407
}
410408
}
@@ -449,7 +447,7 @@ impl<T: ?Sized> Drop for Rc<T> {
449447
#[unsafe_destructor_blind_to_params]
450448
fn drop(&mut self) {
451449
unsafe {
452-
let ptr = *self._ptr;
450+
let ptr = *self.ptr;
453451
let thin = ptr as *const ();
454452

455453
if thin as usize != mem::POST_DROP_USIZE {
@@ -490,7 +488,7 @@ impl<T: ?Sized> Clone for Rc<T> {
490488
#[inline]
491489
fn clone(&self) -> Rc<T> {
492490
self.inc_strong();
493-
Rc { _ptr: self._ptr }
491+
Rc { ptr: self.ptr }
494492
}
495493
}
496494

@@ -691,7 +689,7 @@ impl<T: ?Sized + fmt::Debug> fmt::Debug for Rc<T> {
691689
#[stable(feature = "rust1", since = "1.0.0")]
692690
impl<T: ?Sized> fmt::Pointer for Rc<T> {
693691
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
694-
fmt::Pointer::fmt(&*self._ptr, f)
692+
fmt::Pointer::fmt(&*self.ptr, f)
695693
}
696694
}
697695

@@ -711,9 +709,7 @@ impl<T> From<T> for Rc<T> {
711709
#[unsafe_no_drop_flag]
712710
#[stable(feature = "rc_weak", since = "1.4.0")]
713711
pub struct Weak<T: ?Sized> {
714-
// FIXME #12808: strange names to try to avoid interfering with
715-
// field accesses of the contained type via Deref
716-
_ptr: Shared<RcBox<T>>,
712+
ptr: Shared<RcBox<T>>,
717713
}
718714

719715
#[stable(feature = "rc_weak", since = "1.4.0")]
@@ -749,7 +745,7 @@ impl<T: ?Sized> Weak<T> {
749745
None
750746
} else {
751747
self.inc_strong();
752-
Some(Rc { _ptr: self._ptr })
748+
Some(Rc { ptr: self.ptr })
753749
}
754750
}
755751
}
@@ -783,7 +779,7 @@ impl<T: ?Sized> Drop for Weak<T> {
783779
/// ```
784780
fn drop(&mut self) {
785781
unsafe {
786-
let ptr = *self._ptr;
782+
let ptr = *self.ptr;
787783
let thin = ptr as *const ();
788784

789785
if thin as usize != mem::POST_DROP_USIZE {
@@ -816,7 +812,7 @@ impl<T: ?Sized> Clone for Weak<T> {
816812
#[inline]
817813
fn clone(&self) -> Weak<T> {
818814
self.inc_weak();
819-
Weak { _ptr: self._ptr }
815+
Weak { ptr: self.ptr }
820816
}
821817
}
822818

@@ -848,7 +844,7 @@ impl<T> Weak<T> {
848844
pub fn new() -> Weak<T> {
849845
unsafe {
850846
Weak {
851-
_ptr: Shared::new(Box::into_raw(box RcBox {
847+
ptr: Shared::new(Box::into_raw(box RcBox {
852848
strong: Cell::new(0),
853849
weak: Cell::new(1),
854850
value: uninitialized(),
@@ -910,8 +906,8 @@ impl<T: ?Sized> RcBoxPtr<T> for Rc<T> {
910906
// the contract anyway.
911907
// This allows the null check to be elided in the destructor if we
912908
// manipulated the reference count in the same function.
913-
assume(!(*(&self._ptr as *const _ as *const *const ())).is_null());
914-
&(**self._ptr)
909+
assume(!(*(&self.ptr as *const _ as *const *const ())).is_null());
910+
&(**self.ptr)
915911
}
916912
}
917913
}
@@ -924,8 +920,8 @@ impl<T: ?Sized> RcBoxPtr<T> for Weak<T> {
924920
// the contract anyway.
925921
// This allows the null check to be elided in the destructor if we
926922
// manipulated the reference count in the same function.
927-
assume(!(*(&self._ptr as *const _ as *const *const ())).is_null());
928-
&(**self._ptr)
923+
assume(!(*(&self.ptr as *const _ as *const *const ())).is_null());
924+
&(**self.ptr)
929925
}
930926
}
931927
}

0 commit comments

Comments
 (0)