Skip to content

Commit 1d565ef

Browse files
committed
Auto merge of #40644 - arielb1:rollup, r=arielb1
Rollup of 22 pull requests - Successful merges: #40241, #40346, #40348, #40377, #40398, #40409, #40441, #40445, #40509, #40521, #40523, #40532, #40538, #40564, #40581, #40583, #40588, #40589, #40590, #40603, #40611, #40621 - Failed merges: #40501, #40541
2 parents 4853584 + 337cbc1 commit 1d565ef

File tree

139 files changed

+2012
-868
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+2012
-868
lines changed

src/doc/unstable-book/src/SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
- [repr_simd](repr-simd.md)
7272
- [rustc_attrs](rustc-attrs.md)
7373
- [rustc_diagnostic_macros](rustc-diagnostic-macros.md)
74+
- [rvalue_static_promotion](rvalue-static-promotion.md)
7475
- [sanitizer_runtime](sanitizer-runtime.md)
7576
- [simd](simd.md)
7677
- [simd_ffi](simd-ffi.md)

src/doc/unstable-book/src/allocator.md

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ pub extern fn __rust_allocate(size: usize, _align: usize) -> *mut u8 {
5151
unsafe { libc::malloc(size as libc::size_t) as *mut u8 }
5252
}
5353
54+
#[no_mangle]
55+
pub extern fn __rust_allocate_zeroed(size: usize, _align: usize) -> *mut u8 {
56+
unsafe { libc::calloc(size as libc::size_t, 1) as *mut u8 }
57+
}
58+
5459
#[no_mangle]
5560
pub extern fn __rust_deallocate(ptr: *mut u8, _old_size: usize, _align: usize) {
5661
unsafe { libc::free(ptr as *mut libc::c_void) }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# `rvalue_static_promotion`
2+
3+
The tracking issue for this feature is: [#38865]
4+
5+
[#38865]: https://github.com/rust-lang/rust/issues/38865
6+
7+
------------------------
8+
9+
The `rvalue_static_promotion` feature allows directly creating `'static` references to
10+
constant `rvalue`s, which in particular allowing for more concise code in the common case
11+
in which a `'static` reference is all that's needed.
12+
13+
14+
## Examples
15+
16+
```rust
17+
#![feature(rvalue_static_promotion)]
18+
19+
fn main() {
20+
let DEFAULT_VALUE: &'static u32 = &42;
21+
assert_eq!(*DEFAULT_VALUE, 42);
22+
}
23+
```

src/liballoc/arc.rs

+13-18
Original file line numberDiff line numberDiff line change
@@ -287,17 +287,15 @@ impl<T> Arc<T> {
287287
/// # Examples
288288
///
289289
/// ```
290-
/// #![feature(rc_raw)]
291-
///
292290
/// use std::sync::Arc;
293291
///
294292
/// let x = Arc::new(10);
295293
/// let x_ptr = Arc::into_raw(x);
296294
/// assert_eq!(unsafe { *x_ptr }, 10);
297295
/// ```
298-
#[unstable(feature = "rc_raw", issue = "37197")]
299-
pub fn into_raw(this: Self) -> *mut T {
300-
let ptr = unsafe { &mut (**this.ptr).data as *mut _ };
296+
#[stable(feature = "rc_raw", since = "1.17.0")]
297+
pub fn into_raw(this: Self) -> *const T {
298+
let ptr = unsafe { &(**this.ptr).data as *const _ };
301299
mem::forget(this);
302300
ptr
303301
}
@@ -315,8 +313,6 @@ impl<T> Arc<T> {
315313
/// # Examples
316314
///
317315
/// ```
318-
/// #![feature(rc_raw)]
319-
///
320316
/// use std::sync::Arc;
321317
///
322318
/// let x = Arc::new(10);
@@ -332,11 +328,14 @@ impl<T> Arc<T> {
332328
///
333329
/// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
334330
/// ```
335-
#[unstable(feature = "rc_raw", issue = "37197")]
336-
pub unsafe fn from_raw(ptr: *mut T) -> Self {
331+
#[stable(feature = "rc_raw", since = "1.17.0")]
332+
pub unsafe fn from_raw(ptr: *const T) -> Self {
337333
// To find the corresponding pointer to the `ArcInner` we need to subtract the offset of the
338334
// `data` field from the pointer.
339-
Arc { ptr: Shared::new((ptr as *mut u8).offset(-offset_of!(ArcInner<T>, data)) as *mut _) }
335+
let ptr = (ptr as *const u8).offset(-offset_of!(ArcInner<T>, data));
336+
Arc {
337+
ptr: Shared::new(ptr as *const _),
338+
}
340339
}
341340
}
342341

@@ -448,7 +447,7 @@ impl<T: ?Sized> Arc<T> {
448447
// Non-inlined part of `drop`.
449448
#[inline(never)]
450449
unsafe fn drop_slow(&mut self) {
451-
let ptr = *self.ptr;
450+
let ptr = self.ptr.as_mut_ptr();
452451

453452
// Destroy the data at this time, even though we may not free the box
454453
// allocation itself (there may still be weak pointers lying around).
@@ -461,17 +460,13 @@ impl<T: ?Sized> Arc<T> {
461460
}
462461

463462
#[inline]
464-
#[unstable(feature = "ptr_eq",
465-
reason = "newly added",
466-
issue = "36497")]
463+
#[stable(feature = "ptr_eq", since = "1.17.0")]
467464
/// Returns true if the two `Arc`s point to the same value (not
468465
/// just values that compare as equal).
469466
///
470467
/// # Examples
471468
///
472469
/// ```
473-
/// #![feature(ptr_eq)]
474-
///
475470
/// use std::sync::Arc;
476471
///
477472
/// let five = Arc::new(5);
@@ -628,7 +623,7 @@ impl<T: Clone> Arc<T> {
628623
// As with `get_mut()`, the unsafety is ok because our reference was
629624
// either unique to begin with, or became one upon cloning the contents.
630625
unsafe {
631-
let inner = &mut **this.ptr;
626+
let inner = &mut *this.ptr.as_mut_ptr();
632627
&mut inner.data
633628
}
634629
}
@@ -671,7 +666,7 @@ impl<T: ?Sized> Arc<T> {
671666
// the Arc itself to be `mut`, so we're returning the only possible
672667
// reference to the inner data.
673668
unsafe {
674-
let inner = &mut **this.ptr;
669+
let inner = &mut *this.ptr.as_mut_ptr();
675670
Some(&mut inner.data)
676671
}
677672
} else {

src/liballoc/heap.rs

+32
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ use core::intrinsics::{min_align_of_val, size_of_val};
2323
extern "C" {
2424
#[allocator]
2525
fn __rust_allocate(size: usize, align: usize) -> *mut u8;
26+
fn __rust_allocate_zeroed(size: usize, align: usize) -> *mut u8;
2627
fn __rust_deallocate(ptr: *mut u8, old_size: usize, align: usize);
2728
fn __rust_reallocate(ptr: *mut u8, old_size: usize, size: usize, align: usize) -> *mut u8;
2829
fn __rust_reallocate_inplace(ptr: *mut u8,
@@ -59,6 +60,20 @@ pub unsafe fn allocate(size: usize, align: usize) -> *mut u8 {
5960
__rust_allocate(size, align)
6061
}
6162

63+
/// Return a pointer to `size` bytes of memory aligned to `align` and
64+
/// initialized to zeroes.
65+
///
66+
/// On failure, return a null pointer.
67+
///
68+
/// Behavior is undefined if the requested size is 0 or the alignment is not a
69+
/// power of 2. The alignment must be no larger than the largest supported page
70+
/// size on the platform.
71+
#[inline]
72+
pub unsafe fn allocate_zeroed(size: usize, align: usize) -> *mut u8 {
73+
check_size_and_alignment(size, align);
74+
__rust_allocate_zeroed(size, align)
75+
}
76+
6277
/// Resize the allocation referenced by `ptr` to `size` bytes.
6378
///
6479
/// On failure, return a null pointer and leave the original allocation intact.
@@ -162,6 +177,23 @@ mod tests {
162177
use boxed::Box;
163178
use heap;
164179

180+
#[test]
181+
fn allocate_zeroed() {
182+
unsafe {
183+
let size = 1024;
184+
let mut ptr = heap::allocate_zeroed(size, 1);
185+
if ptr.is_null() {
186+
::oom()
187+
}
188+
let end = ptr.offset(size as isize);
189+
while ptr < end {
190+
assert_eq!(*ptr, 0);
191+
ptr = ptr.offset(1);
192+
}
193+
heap::deallocate(ptr, size, 1);
194+
}
195+
}
196+
165197
#[test]
166198
fn basic_reallocate_inplace_noop() {
167199
unsafe {

src/liballoc/raw_vec.rs

+15-1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,16 @@ impl<T> RawVec<T> {
8282
///
8383
/// Aborts on OOM
8484
pub fn with_capacity(cap: usize) -> Self {
85+
RawVec::allocate(cap, false)
86+
}
87+
88+
/// Like `with_capacity` but guarantees the buffer is zeroed.
89+
pub fn with_capacity_zeroed(cap: usize) -> Self {
90+
RawVec::allocate(cap, true)
91+
}
92+
93+
#[inline]
94+
fn allocate(cap: usize, zeroed: bool) -> Self {
8595
unsafe {
8696
let elem_size = mem::size_of::<T>();
8797

@@ -93,7 +103,11 @@ impl<T> RawVec<T> {
93103
heap::EMPTY as *mut u8
94104
} else {
95105
let align = mem::align_of::<T>();
96-
let ptr = heap::allocate(alloc_size, align);
106+
let ptr = if zeroed {
107+
heap::allocate_zeroed(alloc_size, align)
108+
} else {
109+
heap::allocate(alloc_size, align)
110+
};
97111
if ptr.is_null() {
98112
oom()
99113
}

src/liballoc/rc.rs

+10-18
Original file line numberDiff line numberDiff line change
@@ -364,17 +364,15 @@ impl<T> Rc<T> {
364364
/// # Examples
365365
///
366366
/// ```
367-
/// #![feature(rc_raw)]
368-
///
369367
/// use std::rc::Rc;
370368
///
371369
/// let x = Rc::new(10);
372370
/// let x_ptr = Rc::into_raw(x);
373371
/// assert_eq!(unsafe { *x_ptr }, 10);
374372
/// ```
375-
#[unstable(feature = "rc_raw", issue = "37197")]
376-
pub fn into_raw(this: Self) -> *mut T {
377-
let ptr = unsafe { &mut (**this.ptr).value as *mut _ };
373+
#[stable(feature = "rc_raw", since = "1.17.0")]
374+
pub fn into_raw(this: Self) -> *const T {
375+
let ptr = unsafe { &mut (*this.ptr.as_mut_ptr()).value as *const _ };
378376
mem::forget(this);
379377
ptr
380378
}
@@ -392,8 +390,6 @@ impl<T> Rc<T> {
392390
/// # Examples
393391
///
394392
/// ```
395-
/// #![feature(rc_raw)]
396-
///
397393
/// use std::rc::Rc;
398394
///
399395
/// let x = Rc::new(10);
@@ -409,11 +405,11 @@ impl<T> Rc<T> {
409405
///
410406
/// // The memory was freed when `x` went out of scope above, so `x_ptr` is now dangling!
411407
/// ```
412-
#[unstable(feature = "rc_raw", issue = "37197")]
413-
pub unsafe fn from_raw(ptr: *mut T) -> Self {
408+
#[stable(feature = "rc_raw", since = "1.17.0")]
409+
pub unsafe fn from_raw(ptr: *const T) -> Self {
414410
// To find the corresponding pointer to the `RcBox` we need to subtract the offset of the
415411
// `value` field from the pointer.
416-
Rc { ptr: Shared::new((ptr as *mut u8).offset(-offset_of!(RcBox<T>, value)) as *mut _) }
412+
Rc { ptr: Shared::new((ptr as *const u8).offset(-offset_of!(RcBox<T>, value)) as *const _) }
417413
}
418414
}
419415

@@ -543,25 +539,21 @@ impl<T: ?Sized> Rc<T> {
543539
#[stable(feature = "rc_unique", since = "1.4.0")]
544540
pub fn get_mut(this: &mut Self) -> Option<&mut T> {
545541
if Rc::is_unique(this) {
546-
let inner = unsafe { &mut **this.ptr };
542+
let inner = unsafe { &mut *this.ptr.as_mut_ptr() };
547543
Some(&mut inner.value)
548544
} else {
549545
None
550546
}
551547
}
552548

553549
#[inline]
554-
#[unstable(feature = "ptr_eq",
555-
reason = "newly added",
556-
issue = "36497")]
550+
#[stable(feature = "ptr_eq", since = "1.17.0")]
557551
/// Returns true if the two `Rc`s point to the same value (not
558552
/// just values that compare as equal).
559553
///
560554
/// # Examples
561555
///
562556
/// ```
563-
/// #![feature(ptr_eq)]
564-
///
565557
/// use std::rc::Rc;
566558
///
567559
/// let five = Rc::new(5);
@@ -631,7 +623,7 @@ impl<T: Clone> Rc<T> {
631623
// reference count is guaranteed to be 1 at this point, and we required
632624
// the `Rc<T>` itself to be `mut`, so we're returning the only possible
633625
// reference to the inner value.
634-
let inner = unsafe { &mut **this.ptr };
626+
let inner = unsafe { &mut *this.ptr.as_mut_ptr() };
635627
&mut inner.value
636628
}
637629
}
@@ -677,7 +669,7 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Rc<T> {
677669
/// ```
678670
fn drop(&mut self) {
679671
unsafe {
680-
let ptr = *self.ptr;
672+
let ptr = self.ptr.as_mut_ptr();
681673

682674
self.dec_strong();
683675
if self.strong() == 0 {

src/liballoc_jemalloc/lib.rs

+21
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ mod imp {
3838
target_os = "dragonfly", target_os = "windows"),
3939
link_name = "je_mallocx")]
4040
fn mallocx(size: size_t, flags: c_int) -> *mut c_void;
41+
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
42+
target_os = "dragonfly", target_os = "windows"),
43+
link_name = "je_calloc")]
44+
fn calloc(size: size_t, flags: c_int) -> *mut c_void;
4145
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
4246
target_os = "dragonfly", target_os = "windows"),
4347
link_name = "je_rallocx")]
@@ -56,6 +60,8 @@ mod imp {
5660
fn nallocx(size: size_t, flags: c_int) -> size_t;
5761
}
5862

63+
const MALLOCX_ZERO: c_int = 0x40;
64+
5965
// The minimum alignment guaranteed by the architecture. This value is used to
6066
// add fast paths for low alignment values. In practice, the alignment is a
6167
// constant at the call site and the branch will be optimized out.
@@ -91,6 +97,16 @@ mod imp {
9197
unsafe { mallocx(size as size_t, flags) as *mut u8 }
9298
}
9399

100+
#[no_mangle]
101+
pub extern "C" fn __rust_allocate_zeroed(size: usize, align: usize) -> *mut u8 {
102+
if align <= MIN_ALIGN {
103+
unsafe { calloc(size as size_t, 1) as *mut u8 }
104+
} else {
105+
let flags = align_to_flags(align) | MALLOCX_ZERO;
106+
unsafe { mallocx(size as size_t, flags) as *mut u8 }
107+
}
108+
}
109+
94110
#[no_mangle]
95111
pub extern "C" fn __rust_reallocate(ptr: *mut u8,
96112
_old_size: usize,
@@ -135,6 +151,11 @@ mod imp {
135151
bogus()
136152
}
137153

154+
#[no_mangle]
155+
pub extern "C" fn __rust_allocate_zeroed(_size: usize, _align: usize) -> *mut u8 {
156+
bogus()
157+
}
158+
138159
#[no_mangle]
139160
pub extern "C" fn __rust_reallocate(_ptr: *mut u8,
140161
_old_size: usize,

0 commit comments

Comments
 (0)