Skip to content

Commit 16329b0

Browse files
committed
Auto merge of #57063 - kennytm:rollup, r=kennytm
Rollup of 25 pull requests Successful merges: - #56802 (Add DoubleEndedIterator::nth_back) - #56909 (static eval: Do not ICE on layout size overflow) - #56914 (Ignore ui/target-feature-gate on sparc, sparc64, powerpc, powerpc64 and powerpc64le) - #56919 (Remove a wrong multiplier on relocation offset computation) - #56933 (Add --progress to git submodule commands in x.py) - #56936 (rename div_euc -> div_euclid, and mod_euc -> rem_euclid) - #56941 (deny intra-doc link resolution failures in libstd) - #56945 (Fix rustdoc-js tests) - #56967 (Replace current crate's searchIndex when regenerating) - #56970 (Mem uninit doc ptr drop) - #56973 (make basic CTFE tracing available on release builds) - #56979 (Adding unwinding support for x86_64_fortanix_unknown_sgx target.) - #56981 (miri: allocation is infallible) - #56984 (A few tweaks to dropck_outlives) - #56989 (Fix compiletest `trim` deprecation warnings) - #56992 (suggest similar lint names for unknown lints) - #57002 (Stabilize Vec(Deque)::resize_with) - #57011 (rustdoc: add new CLI flag to load static files from a different location) - #57027 (Optimize away a move) - #57034 (Inline tweaks) - #57039 (Update migrate warning wording.) - #57040 (Fix feature gate to point to 1.32.0 for `path_from_str`) - #57049 (Stabilize #[repr(packed(N))]) - #57050 (Fixed typo in HashMap documentation) - #57052 (Fix stabilization version numbers (exhaustive_integer_patterns + macro_literal_matcher))
2 parents 2d3e909 + 628c6d8 commit 16329b0

File tree

99 files changed

+869
-450
lines changed

Some content is hidden

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

99 files changed

+869
-450
lines changed

src/bootstrap/bootstrap.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -678,10 +678,10 @@ def update_submodule(self, module, checked_out, recorded_submodules):
678678

679679
print("Updating submodule", module)
680680

681-
run(["git", "submodule", "-q", "sync", module],
681+
run(["git", "submodule", "-q", "sync", "--progress", module],
682682
cwd=self.rust_root, verbose=self.verbose)
683683
run(["git", "submodule", "update",
684-
"--init", "--recursive", module],
684+
"--init", "--recursive", "--progress", module],
685685
cwd=self.rust_root, verbose=self.verbose)
686686
run(["git", "reset", "-q", "--hard"],
687687
cwd=module_path, verbose=self.verbose)

src/doc/rustdoc/src/unstable-features.md

+15
Original file line numberDiff line numberDiff line change
@@ -402,3 +402,18 @@ Using `index-page` option enables `enable-index-page` option as well.
402402
### `--enable-index-page`: generate a default index page for docs
403403

404404
This feature allows the generation of a default index-page which lists the generated crates.
405+
406+
### `--static-root-path`: control how static files are loaded in HTML output
407+
408+
Using this flag looks like this:
409+
410+
```bash
411+
$ rustdoc src/lib.rs -Z unstable-options --static-root-path '/cache/'
412+
```
413+
414+
This flag controls how rustdoc links to its static files on HTML pages. If you're hosting a lot of
415+
crates' docs generated by the same version of rustdoc, you can use this flag to cache rustdoc's CSS,
416+
JavaScript, and font files in a single location, rather than duplicating it once per "doc root"
417+
(grouping of crate docs generated into the same output directory, like with `cargo doc`). Per-crate
418+
files like the search index will still load from the documentation root, but anything that gets
419+
renamed with `--resource-suffix` will load from the given path.

src/doc/unstable-book/src/language-features/repr-packed.md

-8
This file was deleted.

src/liballoc/collections/vec_deque.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1897,8 +1897,6 @@ impl<T> VecDeque<T> {
18971897
/// # Examples
18981898
///
18991899
/// ```
1900-
/// #![feature(vec_resize_with)]
1901-
///
19021900
/// use std::collections::VecDeque;
19031901
///
19041902
/// let mut buf = VecDeque::new();
@@ -1917,7 +1915,7 @@ impl<T> VecDeque<T> {
19171915
/// buf.resize_with(5, || { state += 1; state });
19181916
/// assert_eq!(buf, [5, 10, 101, 102, 103]);
19191917
/// ```
1920-
#[unstable(feature = "vec_resize_with", issue = "41758")]
1918+
#[stable(feature = "vec_resize_with", since = "1.33.0")]
19211919
pub fn resize_with(&mut self, new_len: usize, generator: impl FnMut()->T) {
19221920
let len = self.len();
19231921

src/liballoc/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@
7272
test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
7373
#![no_std]
7474
#![needs_allocator]
75+
76+
#![deny(intra_doc_link_resolution_failure)]
7577
#![deny(missing_debug_implementations)]
7678

7779
#![cfg_attr(not(test), feature(fn_traits))]

src/liballoc/rc.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -843,6 +843,8 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Rc<T> {
843843
/// drop(foo); // Doesn't print anything
844844
/// drop(foo2); // Prints "dropped!"
845845
/// ```
846+
///
847+
/// [`Weak`]: ../../std/rc/struct.Weak.html
846848
fn drop(&mut self) {
847849
unsafe {
848850
self.dec_strong();
@@ -1422,9 +1424,10 @@ impl<T: ?Sized + fmt::Debug> fmt::Debug for Weak<T> {
14221424
#[stable(feature = "downgraded_weak", since = "1.10.0")]
14231425
impl<T> Default for Weak<T> {
14241426
/// Constructs a new `Weak<T>`, allocating memory for `T` without initializing
1425-
/// it. Calling [`upgrade`][Weak::upgrade] on the return value always gives [`None`].
1427+
/// it. Calling [`upgrade`] on the return value always gives [`None`].
14261428
///
14271429
/// [`None`]: ../../std/option/enum.Option.html
1430+
/// [`upgrade`]: ../../std/rc/struct.Weak.html#method.upgrade
14281431
///
14291432
/// # Examples
14301433
///

src/liballoc/sync.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -955,6 +955,8 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Arc<T> {
955955
/// drop(foo); // Doesn't print anything
956956
/// drop(foo2); // Prints "dropped!"
957957
/// ```
958+
///
959+
/// [`Weak`]: ../../std/sync/struct.Weak.html
958960
#[inline]
959961
fn drop(&mut self) {
960962
// Because `fetch_sub` is already atomic, we do not need to synchronize
@@ -1222,10 +1224,11 @@ impl<T: ?Sized> Clone for Weak<T> {
12221224
#[stable(feature = "downgraded_weak", since = "1.10.0")]
12231225
impl<T> Default for Weak<T> {
12241226
/// Constructs a new `Weak<T>`, without allocating memory.
1225-
/// Calling [`upgrade`][Weak::upgrade] on the return value always
1227+
/// Calling [`upgrade`] on the return value always
12261228
/// gives [`None`].
12271229
///
12281230
/// [`None`]: ../../std/option/enum.Option.html#variant.None
1231+
/// [`upgrade`]: ../../std/sync/struct.Weak.html#method.upgrade
12291232
///
12301233
/// # Examples
12311234
///

src/liballoc/vec.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1241,8 +1241,6 @@ impl<T> Vec<T> {
12411241
/// # Examples
12421242
///
12431243
/// ```
1244-
/// #![feature(vec_resize_with)]
1245-
///
12461244
/// let mut vec = vec![1, 2, 3];
12471245
/// vec.resize_with(5, Default::default);
12481246
/// assert_eq!(vec, [1, 2, 3, 0, 0]);
@@ -1255,7 +1253,7 @@ impl<T> Vec<T> {
12551253
///
12561254
/// [`resize`]: #method.resize
12571255
/// [`Clone`]: ../../std/clone/trait.Clone.html
1258-
#[unstable(feature = "vec_resize_with", issue = "41758")]
1256+
#[stable(feature = "vec_resize_with", since = "1.33.0")]
12591257
pub fn resize_with<F>(&mut self, new_len: usize, f: F)
12601258
where F: FnMut() -> T
12611259
{

src/libcore/iter/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,9 @@ impl<I> Iterator for Rev<I> where I: DoubleEndedIterator {
429429
#[inline]
430430
fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
431431

432+
#[inline]
433+
fn nth(&mut self, n: usize) -> Option<<I as Iterator>::Item> { self.iter.nth_back(n) }
434+
432435
fn try_fold<B, F, R>(&mut self, init: B, f: F) -> R where
433436
Self: Sized, F: FnMut(B, Self::Item) -> R, R: Try<Ok=B>
434437
{
@@ -461,6 +464,9 @@ impl<I> DoubleEndedIterator for Rev<I> where I: DoubleEndedIterator {
461464
#[inline]
462465
fn next_back(&mut self) -> Option<<I as Iterator>::Item> { self.iter.next() }
463466

467+
#[inline]
468+
fn nth_back(&mut self, n: usize) -> Option<<I as Iterator>::Item> { self.iter.nth(n) }
469+
464470
fn try_rfold<B, F, R>(&mut self, init: B, f: F) -> R where
465471
Self: Sized, F: FnMut(B, Self::Item) -> R, R: Try<Ok=B>
466472
{

src/libcore/iter/traits.rs

+73-6
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,62 @@ pub trait DoubleEndedIterator: Iterator {
427427
#[stable(feature = "rust1", since = "1.0.0")]
428428
fn next_back(&mut self) -> Option<Self::Item>;
429429

430+
/// Returns the `n`th element from the end of the iterator.
431+
///
432+
/// This is essentially the reversed version of [`nth`]. Although like most indexing
433+
/// operations, the count starts from zero, so `nth_back(0)` returns the first value fro
434+
/// the end, `nth_back(1)` the second, and so on.
435+
///
436+
/// Note that all elements between the end and the returned element will be
437+
/// consumed, including the returned element. This also means that calling
438+
/// `nth_back(0)` multiple times on the same iterator will return different
439+
/// elements.
440+
///
441+
/// `nth_back()` will return [`None`] if `n` is greater than or equal to the length of the
442+
/// iterator.
443+
///
444+
/// [`None`]: ../../std/option/enum.Option.html#variant.None
445+
/// [`nth`]: ../../std/iter/trait.Iterator.html#method.nth
446+
///
447+
/// # Examples
448+
///
449+
/// Basic usage:
450+
///
451+
/// ```
452+
/// #![feature(iter_nth_back)]
453+
/// let a = [1, 2, 3];
454+
/// assert_eq!(a.iter().nth_back(2), Some(&1));
455+
/// ```
456+
///
457+
/// Calling `nth_back()` multiple times doesn't rewind the iterator:
458+
///
459+
/// ```
460+
/// #![feature(iter_nth_back)]
461+
/// let a = [1, 2, 3];
462+
///
463+
/// let mut iter = a.iter();
464+
///
465+
/// assert_eq!(iter.nth_back(1), Some(&2));
466+
/// assert_eq!(iter.nth_back(1), None);
467+
/// ```
468+
///
469+
/// Returning `None` if there are less than `n + 1` elements:
470+
///
471+
/// ```
472+
/// #![feature(iter_nth_back)]
473+
/// let a = [1, 2, 3];
474+
/// assert_eq!(a.iter().nth_back(10), None);
475+
/// ```
476+
#[inline]
477+
#[unstable(feature = "iter_nth_back", issue = "56995")]
478+
fn nth_back(&mut self, mut n: usize) -> Option<Self::Item> {
479+
for x in self.rev() {
480+
if n == 0 { return Some(x) }
481+
n -= 1;
482+
}
483+
None
484+
}
485+
430486
/// This is the reverse version of [`try_fold()`]: it takes elements
431487
/// starting from the back of the iterator.
432488
///
@@ -461,8 +517,11 @@ pub trait DoubleEndedIterator: Iterator {
461517
/// ```
462518
#[inline]
463519
#[stable(feature = "iterator_try_fold", since = "1.27.0")]
464-
fn try_rfold<B, F, R>(&mut self, init: B, mut f: F) -> R where
465-
Self: Sized, F: FnMut(B, Self::Item) -> R, R: Try<Ok=B>
520+
fn try_rfold<B, F, R>(&mut self, init: B, mut f: F) -> R
521+
where
522+
Self: Sized,
523+
F: FnMut(B, Self::Item) -> R,
524+
R: Try<Ok=B>
466525
{
467526
let mut accum = init;
468527
while let Some(x) = self.next_back() {
@@ -524,8 +583,10 @@ pub trait DoubleEndedIterator: Iterator {
524583
/// ```
525584
#[inline]
526585
#[stable(feature = "iter_rfold", since = "1.27.0")]
527-
fn rfold<B, F>(mut self, accum: B, mut f: F) -> B where
528-
Self: Sized, F: FnMut(B, Self::Item) -> B,
586+
fn rfold<B, F>(mut self, accum: B, mut f: F) -> B
587+
where
588+
Self: Sized,
589+
F: FnMut(B, Self::Item) -> B,
529590
{
530591
self.try_rfold(accum, move |acc, x| Ok::<B, !>(f(acc, x))).unwrap()
531592
}
@@ -574,7 +635,8 @@ pub trait DoubleEndedIterator: Iterator {
574635
/// ```
575636
#[inline]
576637
#[stable(feature = "iter_rfind", since = "1.27.0")]
577-
fn rfind<P>(&mut self, mut predicate: P) -> Option<Self::Item> where
638+
fn rfind<P>(&mut self, mut predicate: P) -> Option<Self::Item>
639+
where
578640
Self: Sized,
579641
P: FnMut(&Self::Item) -> bool
580642
{
@@ -587,7 +649,12 @@ pub trait DoubleEndedIterator: Iterator {
587649

588650
#[stable(feature = "rust1", since = "1.0.0")]
589651
impl<'a, I: DoubleEndedIterator + ?Sized> DoubleEndedIterator for &'a mut I {
590-
fn next_back(&mut self) -> Option<I::Item> { (**self).next_back() }
652+
fn next_back(&mut self) -> Option<I::Item> {
653+
(**self).next_back()
654+
}
655+
fn nth_back(&mut self, n: usize) -> Option<I::Item> {
656+
(**self).nth_back(n)
657+
}
591658
}
592659

593660
/// An iterator that knows its exact length.

src/libcore/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171

7272
#![no_core]
7373
#![deny(missing_docs)]
74+
#![deny(intra_doc_link_resolution_failure)]
7475
#![deny(missing_debug_implementations)]
7576

7677
#![feature(allow_internal_unstable)]

src/libcore/mem.rs

+42
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,12 @@ pub unsafe fn zeroed<T>() -> T {
530530
/// it goes out of scope (and therefore would be dropped). Note that this
531531
/// includes a `panic` occurring and unwinding the stack suddenly.
532532
///
533+
/// If you partially initialize an array, you may need to use
534+
/// [`ptr::drop_in_place`][drop_in_place] to remove the elements you have fully
535+
/// initialized followed by [`mem::forget`][mem_forget] to prevent drop running
536+
/// on the array. If a partially allocated array is dropped this will lead to
537+
/// undefined behaviour.
538+
///
533539
/// # Examples
534540
///
535541
/// Here's how to safely initialize an array of [`Vec`]s.
@@ -583,11 +589,44 @@ pub unsafe fn zeroed<T>() -> T {
583589
/// println!("{:?}", &data[0]);
584590
/// ```
585591
///
592+
/// This example shows how to handle partially initialized arrays, which could
593+
/// be found in low-level datastructures.
594+
///
595+
/// ```
596+
/// use std::mem;
597+
/// use std::ptr;
598+
///
599+
/// // Count the number of elements we have assigned.
600+
/// let mut data_len: usize = 0;
601+
/// let mut data: [String; 1000];
602+
///
603+
/// unsafe {
604+
/// data = mem::uninitialized();
605+
///
606+
/// for elem in &mut data[0..500] {
607+
/// ptr::write(elem, String::from("hello"));
608+
/// data_len += 1;
609+
/// }
610+
///
611+
/// // For each item in the array, drop if we allocated it.
612+
/// for i in &mut data[0..data_len] {
613+
/// ptr::drop_in_place(i);
614+
/// }
615+
/// }
616+
/// // Forget the data. If this is allowed to drop, you may see a crash such as:
617+
/// // 'mem_uninit_test(2457,0x7fffb55dd380) malloc: *** error for object
618+
/// // 0x7ff3b8402920: pointer being freed was not allocated'
619+
/// mem::forget(data);
620+
/// ```
621+
///
586622
/// [`Vec`]: ../../std/vec/struct.Vec.html
587623
/// [`vec!`]: ../../std/macro.vec.html
588624
/// [`Clone`]: ../../std/clone/trait.Clone.html
589625
/// [ub]: ../../reference/behavior-considered-undefined.html
590626
/// [write]: ../ptr/fn.write.html
627+
/// [drop_in_place]: ../ptr/fn.drop_in_place.html
628+
/// [mem_zeroed]: fn.zeroed.html
629+
/// [mem_forget]: fn.forget.html
591630
/// [copy]: ../intrinsics/fn.copy.html
592631
/// [copy_no]: ../intrinsics/fn.copy_nonoverlapping.html
593632
/// [`Drop`]: ../ops/trait.Drop.html
@@ -984,6 +1023,9 @@ impl<T> ManuallyDrop<T> {
9841023
///
9851024
/// This function semantically moves out the contained value without preventing further usage.
9861025
/// It is up to the user of this method to ensure that this container is not used again.
1026+
///
1027+
/// [`ManuallyDrop::drop`]: #method.drop
1028+
/// [`ManuallyDrop::into_inner`]: #method.into_inner
9871029
#[must_use = "if you don't need the value, you can use `ManuallyDrop::drop` instead"]
9881030
#[unstable(feature = "manually_drop_take", issue = "55422")]
9891031
#[inline]

0 commit comments

Comments
 (0)