Skip to content

Commit 237bf32

Browse files
committed
Auto merge of #59478 - Centril:rollup, r=Centril
Rollup of 12 pull requests Successful merges: - #57987 (Fix some AArch64 typos) - #58581 (Refactor generic parameter encoder functions) - #58803 (fs::copy() unix: set file mode early) - #58848 (Prevent cache issues on version updates) - #59198 (Do not complain about unmentioned fields in recovered patterns) - #59351 (Include llvm-ar with llvm-tools component) - #59413 (HirIdify hir::ItemId) - #59441 (Remove the block on natvis for lld-link.) - #59448 (Use consistent phrasing for all macro summaries) - #59456 (Add documentation about `for` used as higher ranked trait bounds) - #59472 (Document that `std::io::BufReader` discards contents on drop) - #59474 (Fix link capitalization in documentation of std::io::BufWriter.) Failed merges: r? @ghost
2 parents 6bfe4b7 + d403cd7 commit 237bf32

File tree

35 files changed

+341
-298
lines changed

35 files changed

+341
-298
lines changed

src/bootstrap/bin/rustdoc.rs

+11
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,17 @@ fn main() {
6969
.arg("unstable-options");
7070
}
7171
cmd.arg("--generate-redirect-pages");
72+
has_unstable = true;
73+
}
74+
75+
// Needed to be able to run all rustdoc tests.
76+
if let Some(ref x) = env::var_os("RUSTDOC_RESOURCE_SUFFIX") {
77+
// This "unstable-options" can be removed when `--resource-suffix` is stabilized
78+
if !has_unstable {
79+
cmd.arg("-Z")
80+
.arg("unstable-options");
81+
}
82+
cmd.arg("--resource-suffix").arg(x);
7283
}
7384

7485
if verbose > 1 {

src/bootstrap/doc.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -343,12 +343,9 @@ fn invoke_rustdoc(
343343
.arg("--html-before-content").arg(&version_info)
344344
.arg("--html-in-header").arg(&header)
345345
.arg("--markdown-no-toc")
346-
.arg("--markdown-playground-url")
347-
.arg("https://play.rust-lang.org/")
348-
.arg("-o").arg(&out)
349-
.arg(&path)
350-
.arg("--markdown-css")
351-
.arg("../rust.css");
346+
.arg("--markdown-playground-url").arg("https://play.rust-lang.org/")
347+
.arg("-o").arg(&out).arg(&path)
348+
.arg("--markdown-css").arg("../rust.css");
352349

353350
builder.run(&mut cmd);
354351
}
@@ -431,8 +428,7 @@ impl Step for Standalone {
431428
.arg("--html-in-header").arg(&favicon)
432429
.arg("--markdown-no-toc")
433430
.arg("--index-page").arg(&builder.src.join("src/doc/index.md"))
434-
.arg("--markdown-playground-url")
435-
.arg("https://play.rust-lang.org/")
431+
.arg("--markdown-playground-url").arg("https://play.rust-lang.org/")
436432
.arg("-o").arg(&out)
437433
.arg(&path);
438434

@@ -523,6 +519,7 @@ impl Step for Std {
523519
.arg("--markdown-css").arg("rust.css")
524520
.arg("--markdown-no-toc")
525521
.arg("--generate-redirect-pages")
522+
.arg("--resource-suffix").arg(crate::channel::CFG_RELEASE_NUM)
526523
.arg("--index-page").arg(&builder.src.join("src/doc/index.md"));
527524

528525
builder.run(&mut cargo);
@@ -589,6 +586,7 @@ impl Step for Test {
589586

590587
cargo.arg("--no-deps")
591588
.arg("-p").arg("test")
589+
.env("RUSTDOC_RESOURCE_SUFFIX", crate::channel::CFG_RELEASE_NUM)
592590
.env("RUSTDOC_GENERATE_REDIRECT_PAGES", "1");
593591

594592
builder.run(&mut cargo);
@@ -660,6 +658,7 @@ impl Step for WhitelistedRustc {
660658
// for which docs must be built.
661659
for krate in &["proc_macro"] {
662660
cargo.arg("-p").arg(krate)
661+
.env("RUSTDOC_RESOURCE_SUFFIX", crate::channel::CFG_RELEASE_NUM)
663662
.env("RUSTDOC_GENERATE_REDIRECT_PAGES", "1");
664663
}
665664

@@ -890,6 +889,7 @@ impl Step for ErrorIndex {
890889
);
891890
index.arg("html");
892891
index.arg(out.join("error-index.html"));
892+
index.arg(crate::channel::CFG_RELEASE_NUM);
893893

894894
// FIXME: shouldn't have to pass this env var
895895
index.env("CFG_BUILD", &builder.config.build)

src/bootstrap/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ const LLVM_TOOLS: &[&str] = &[
190190
"llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide
191191
"llvm-size", // used to prints the size of the linker sections of a program
192192
"llvm-strip", // used to discard symbols from binary files to reduce their size
193+
"llvm-ar" // used for creating and modifying archive files
193194
];
194195

195196
/// A structure representing a Rust compiler.

src/libcore/ffi.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ impl fmt::Debug for c_void {
4747
/// Basic implementation of a `va_list`.
4848
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),
4949
not(target_arch = "x86_64")),
50-
all(target_arch = "aarch4", target_os = "ios"),
50+
all(target_arch = "aarch64", target_os = "ios"),
5151
windows))]
5252
#[unstable(feature = "c_variadic",
5353
reason = "the `c_variadic` feature has not been properly tested on \
@@ -59,6 +59,7 @@ extern {
5959

6060
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),
6161
not(target_arch = "x86_64")),
62+
all(target_arch = "aarch64", target_os = "ios"),
6263
windows))]
6364
impl fmt::Debug for VaListImpl {
6465
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
@@ -67,11 +68,11 @@ impl fmt::Debug for VaListImpl {
6768
}
6869

6970
/// AArch64 ABI implementation of a `va_list`. See the
70-
/// [Aarch64 Procedure Call Standard] for more details.
71+
/// [AArch64 Procedure Call Standard] for more details.
7172
///
7273
/// [AArch64 Procedure Call Standard]:
7374
/// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0055b/IHI0055B_aapcs64.pdf
74-
#[cfg(all(target_arch = "aarch64", not(windows)))]
75+
#[cfg(all(target_arch = "aarch64", not(target_os = "ios"), not(windows)))]
7576
#[repr(C)]
7677
#[derive(Debug)]
7778
#[unstable(feature = "c_variadic",
@@ -193,14 +194,14 @@ impl<'a> VaList<'a> {
193194
where F: for<'copy> FnOnce(VaList<'copy>) -> R {
194195
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),
195196
not(target_arch = "x86_64")),
196-
all(target_arch = "aarch4", target_os = "ios"),
197+
all(target_arch = "aarch64", target_os = "ios"),
197198
windows))]
198199
let mut ap = va_copy(self);
199200
#[cfg(all(any(target_arch = "aarch64", target_arch = "powerpc", target_arch = "x86_64"),
200-
not(windows)))]
201+
not(windows), not(all(target_arch = "aarch64", target_os = "ios"))))]
201202
let mut ap_inner = va_copy(self);
202203
#[cfg(all(any(target_arch = "aarch64", target_arch = "powerpc", target_arch = "x86_64"),
203-
not(windows)))]
204+
not(windows), not(all(target_arch = "aarch64", target_os = "ios"))))]
204205
let mut ap = VaList(&mut ap_inner);
205206
let ret = f(VaList(ap.0));
206207
va_end(&mut ap);
@@ -216,10 +217,11 @@ extern "rust-intrinsic" {
216217
/// Copies the current location of arglist `src` to the arglist `dst`.
217218
#[cfg(any(all(not(target_arch = "aarch64"), not(target_arch = "powerpc"),
218219
not(target_arch = "x86_64")),
220+
all(target_arch = "aarch64", target_os = "ios"),
219221
windows))]
220222
fn va_copy<'a>(src: &VaList<'a>) -> VaList<'a>;
221223
#[cfg(all(any(target_arch = "aarch64", target_arch = "powerpc", target_arch = "x86_64"),
222-
not(windows)))]
224+
not(windows), not(all(target_arch = "aarch64", target_os = "ios"))))]
223225
fn va_copy(src: &VaList) -> VaListImpl;
224226

225227
/// Loads an argument of type `T` from the `va_list` `ap` and increment the

src/libcore/macros.rs

+23-22
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
/// Entry point of thread panic. For details, see `std::macros`.
1+
/// Panics the current thread.
2+
///
3+
/// For details, see `std::macros`.
24
#[macro_export]
35
#[allow_internal_unstable(core_panic, __rust_unstable_column)]
46
#[stable(feature = "core", since = "1.6.0")]
@@ -132,7 +134,7 @@ macro_rules! assert_ne {
132134
});
133135
}
134136

135-
/// Ensure that a boolean expression is `true` at runtime.
137+
/// Asserts that a boolean expression is `true` at runtime.
136138
///
137139
/// This will invoke the [`panic!`] macro if the provided expression cannot be
138140
/// evaluated to `true` at runtime.
@@ -236,8 +238,7 @@ macro_rules! debug_assert_ne {
236238
($($arg:tt)*) => (if cfg!(debug_assertions) { assert_ne!($($arg)*); })
237239
}
238240

239-
/// Helper macro for reducing boilerplate code for matching `Result` together
240-
/// with converting downstream errors.
241+
/// Unwraps a result or propagates its error.
241242
///
242243
/// The `?` operator was added to replace `try!` and should be used instead.
243244
/// Furthermore, `try` is a reserved word in Rust 2018, so if you must use
@@ -312,7 +313,7 @@ macro_rules! r#try {
312313
($expr:expr,) => (r#try!($expr));
313314
}
314315

315-
/// Write formatted data into a buffer.
316+
/// Writes formatted data into a buffer.
316317
///
317318
/// This macro accepts a format string, a list of arguments, and a 'writer'. Arguments will be
318319
/// formatted according to the specified format string and the result will be passed to the writer.
@@ -434,7 +435,7 @@ macro_rules! writeln {
434435
);
435436
}
436437

437-
/// A utility macro for indicating unreachable code.
438+
/// Indicates unreachable code.
438439
///
439440
/// This is useful any time that the compiler can't determine that some code is unreachable. For
440441
/// example:
@@ -502,7 +503,7 @@ macro_rules! unreachable {
502503
});
503504
}
504505

505-
/// A standardized placeholder for marking unfinished code.
506+
/// Indicates unfinished code.
506507
///
507508
/// This can be useful if you are prototyping and are just looking to have your
508509
/// code type-check, or if you're implementing a trait that requires multiple
@@ -559,10 +560,10 @@ macro_rules! unimplemented {
559560
($($arg:tt)+) => (panic!("not yet implemented: {}", format_args!($($arg)*)));
560561
}
561562

562-
/// A standardized placeholder for marking unfinished code.
563+
/// Indicates unfinished code.
563564
///
564565
/// This can be useful if you are prototyping and are just looking to have your
565-
/// code typecheck. `todo!` works exactly like `unimplemented!`, there only
566+
/// code typecheck. `todo!` works exactly like `unimplemented!`. The only
566567
/// difference between the two macros is the name.
567568
///
568569
/// # Panics
@@ -618,7 +619,7 @@ macro_rules! todo {
618619
($($arg:tt)+) => (panic!("not yet implemented: {}", format_args!($($arg)*)));
619620
}
620621

621-
/// A macro to create an array of [`MaybeUninit`]
622+
/// Creates an array of [`MaybeUninit`].
622623
///
623624
/// This macro constructs an uninitialized array of the type `[MaybeUninit<K>; N]`.
624625
///
@@ -645,7 +646,7 @@ macro_rules! uninitialized_array {
645646
#[cfg(rustdoc)]
646647
mod builtin {
647648

648-
/// Unconditionally causes compilation to fail with the given error message when encountered.
649+
/// Causes compilation to fail with the given error message when encountered.
649650
///
650651
/// For more information, see the documentation for [`std::compile_error!`].
651652
///
@@ -657,7 +658,7 @@ mod builtin {
657658
($msg:expr,) => ({ /* compiler built-in */ });
658659
}
659660

660-
/// The core macro for formatted string creation & output.
661+
/// Constructs parameters for the other string-formatting macros.
661662
///
662663
/// For more information, see the documentation for [`std::format_args!`].
663664
///
@@ -669,7 +670,7 @@ mod builtin {
669670
($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ });
670671
}
671672

672-
/// Inspect an environment variable at compile time.
673+
/// Inspects an environment variable at compile time.
673674
///
674675
/// For more information, see the documentation for [`std::env!`].
675676
///
@@ -681,7 +682,7 @@ mod builtin {
681682
($name:expr,) => ({ /* compiler built-in */ });
682683
}
683684

684-
/// Optionally inspect an environment variable at compile time.
685+
/// Optionally inspects an environment variable at compile time.
685686
///
686687
/// For more information, see the documentation for [`std::option_env!`].
687688
///
@@ -693,7 +694,7 @@ mod builtin {
693694
($name:expr,) => ({ /* compiler built-in */ });
694695
}
695696

696-
/// Concatenate identifiers into one identifier.
697+
/// Concatenates identifiers into one identifier.
697698
///
698699
/// For more information, see the documentation for [`std::concat_idents!`].
699700
///
@@ -717,7 +718,7 @@ mod builtin {
717718
($($e:expr,)*) => ({ /* compiler built-in */ });
718719
}
719720

720-
/// A macro which expands to the line number on which it was invoked.
721+
/// Expands to the line number on which it was invoked.
721722
///
722723
/// For more information, see the documentation for [`std::line!`].
723724
///
@@ -726,7 +727,7 @@ mod builtin {
726727
#[rustc_doc_only_macro]
727728
macro_rules! line { () => ({ /* compiler built-in */ }) }
728729

729-
/// A macro which expands to the column number on which it was invoked.
730+
/// Expands to the column number on which it was invoked.
730731
///
731732
/// For more information, see the documentation for [`std::column!`].
732733
///
@@ -735,7 +736,7 @@ mod builtin {
735736
#[rustc_doc_only_macro]
736737
macro_rules! column { () => ({ /* compiler built-in */ }) }
737738

738-
/// A macro which expands to the file name from which it was invoked.
739+
/// Expands to the file name from which it was invoked.
739740
///
740741
/// For more information, see the documentation for [`std::file!`].
741742
///
@@ -744,7 +745,7 @@ mod builtin {
744745
#[rustc_doc_only_macro]
745746
macro_rules! file { () => ({ /* compiler built-in */ }) }
746747

747-
/// A macro which stringifies its arguments.
748+
/// Stringifies its arguments.
748749
///
749750
/// For more information, see the documentation for [`std::stringify!`].
750751
///
@@ -786,7 +787,7 @@ mod builtin {
786787
#[rustc_doc_only_macro]
787788
macro_rules! module_path { () => ({ /* compiler built-in */ }) }
788789

789-
/// Boolean evaluation of configuration flags, at compile-time.
790+
/// Evaluates boolean combinations of configuration flags, at compile-time.
790791
///
791792
/// For more information, see the documentation for [`std::cfg!`].
792793
///
@@ -795,7 +796,7 @@ mod builtin {
795796
#[rustc_doc_only_macro]
796797
macro_rules! cfg { ($($cfg:tt)*) => ({ /* compiler built-in */ }) }
797798

798-
/// Parse a file as an expression or an item according to the context.
799+
/// Parses a file as an expression or an item according to the context.
799800
///
800801
/// For more information, see the documentation for [`std::include!`].
801802
///
@@ -807,7 +808,7 @@ mod builtin {
807808
($file:expr,) => ({ /* compiler built-in */ });
808809
}
809810

810-
/// Ensure that a boolean expression is `true` at runtime.
811+
/// Asserts that a boolean expression is `true` at runtime.
811812
///
812813
/// For more information, see the documentation for [`std::assert!`].
813814
///

src/librustc/hir/intravisit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ pub trait Visitor<'v> : Sized {
163163
/// but cannot supply a `Map`; see `nested_visit_map` for advice.
164164
#[allow(unused_variables)]
165165
fn visit_nested_item(&mut self, id: ItemId) {
166-
let opt_item = self.nested_visit_map().inter().map(|map| map.expect_item(id.id));
166+
let opt_item = self.nested_visit_map().inter().map(|map| map.expect_item_by_hir_id(id.id));
167167
if let Some(item) = opt_item {
168168
self.visit_item(item);
169169
}

0 commit comments

Comments
 (0)