Skip to content

Commit 0f12bad

Browse files
committed
Auto merge of rust-lang#66156 - Mark-Simulacrum:stage0-step, r=pietroalbini
Stage0 step r? @pietroalbini
2 parents a333eed + 994d836 commit 0f12bad

File tree

21 files changed

+51
-193
lines changed

21 files changed

+51
-193
lines changed

src/bootstrap/builder.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,18 @@ impl<'a> Builder<'a> {
886886
// things still build right, please do!
887887
match mode {
888888
Mode::Std => metadata.push_str("std"),
889-
_ => {},
889+
// When we're building rustc tools, they're built with a search path
890+
// that contains things built during the rustc build. For example,
891+
// bitflags is built during the rustc build, and is a dependency of
892+
// rustdoc as well. We're building rustdoc in a different target
893+
// directory, though, which means that Cargo will rebuild the
894+
// dependency. When we go on to build rustdoc, we'll look for
895+
// bitflags, and find two different copies: one built during the
896+
// rustc step and one that we just built. This isn't always a
897+
// problem, somehow -- not really clear why -- but we know that this
898+
// fixes things.
899+
Mode::ToolRustc => metadata.push_str("tool-rustc"),
900+
_ => {}
890901
}
891902
cargo.env("__CARGO_DEFAULT_LIB_METADATA", &metadata);
892903

src/bootstrap/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use build_helper::output;
1313
use crate::Build;
1414

1515
// The version number
16-
pub const CFG_RELEASE_NUM: &str = "1.40.0";
16+
pub const CFG_RELEASE_NUM: &str = "1.41.0";
1717

1818
pub struct GitInfo {
1919
inner: Option<Info>,

src/libcore/array/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ use crate::hash::{Hash, self};
1414
use crate::marker::Unsize;
1515
use crate::slice::{Iter, IterMut};
1616

17-
#[cfg(not(bootstrap))]
1817
mod iter;
1918

20-
#[cfg(not(bootstrap))]
2119
#[unstable(feature = "array_value_iter", issue = "65798")]
2220
pub use iter::IntoIter;
2321

src/libcore/convert.rs

-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,6 @@ impl<T> From<T> for T {
557557
///
558558
/// [#64715]: https://github.com/rust-lang/rust/issues/64715
559559
#[stable(feature = "convert_infallible", since = "1.34.0")]
560-
#[cfg(not(bootstrap))]
561560
#[rustc_reservation_impl="permitting this impl would forbid us from adding \
562561
`impl<T> From<!> for T` later; see rust-lang/rust#64715 for details"]
563562
impl<T> From<!> for T {

src/libcore/intrinsics.rs

-2
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,6 @@ extern "rust-intrinsic" {
697697
pub fn panic_if_uninhabited<T>();
698698

699699
/// Gets a reference to a static `Location` indicating where it was called.
700-
#[cfg(not(bootstrap))]
701700
pub fn caller_location() -> &'static crate::panic::Location<'static>;
702701

703702
/// Creates a value initialized to zero.
@@ -1346,7 +1345,6 @@ extern "rust-intrinsic" {
13461345
pub fn nontemporal_store<T>(ptr: *mut T, val: T);
13471346

13481347
/// See documentation of `<*const T>::offset_from` for details.
1349-
#[cfg(not(bootstrap))]
13501348
pub fn ptr_offset_from<T>(ptr: *const T, base: *const T) -> isize;
13511349

13521350
/// Internal hook used by Miri to implement unwinding.

src/libcore/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@
121121
#![feature(hexagon_target_feature)]
122122
#![feature(const_int_conversion)]
123123
#![feature(const_transmute)]
124-
#![cfg_attr(bootstrap, feature(non_exhaustive))]
125124
#![feature(structural_match)]
126125
#![feature(abi_unadjusted)]
127126
#![feature(adx_target_feature)]

src/libcore/macros.rs

-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
11
/// Panics the current thread.
22
///
33
/// For details, see `std::macros`.
4-
#[cfg(bootstrap)]
5-
#[macro_export]
6-
#[allow_internal_unstable(core_panic, panic_internals)]
7-
#[stable(feature = "core", since = "1.6.0")]
8-
macro_rules! panic {
9-
() => (
10-
$crate::panic!("explicit panic")
11-
);
12-
($msg:expr) => ({
13-
$crate::panicking::panic(&($msg, $crate::file!(), $crate::line!(), $crate::column!()))
14-
});
15-
($msg:expr,) => (
16-
$crate::panic!($msg)
17-
);
18-
($fmt:expr, $($arg:tt)+) => ({
19-
$crate::panicking::panic_fmt($crate::format_args!($fmt, $($arg)+),
20-
&($crate::file!(), $crate::line!(), $crate::column!()))
21-
});
22-
}
23-
24-
/// Panics the current thread.
25-
///
26-
/// For details, see `std::macros`.
27-
#[cfg(not(bootstrap))]
284
#[macro_export]
295
#[allow_internal_unstable(core_panic,
306
// FIXME(anp, eddyb) `core_intrinsics` is used here to allow calling

src/libcore/marker.rs

-4
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ pub trait Unsize<T: ?Sized> {
146146
///
147147
/// [RFC1445]: https://github.com/rust-lang/rfcs/blob/master/text/1445-restrict-constants-in-patterns.md
148148
/// [issue 63438]: https://github.com/rust-lang/rust/issues/63438
149-
#[cfg(not(bootstrap))]
150149
#[unstable(feature = "structural_match", issue = "31434")]
151150
#[rustc_on_unimplemented(message="the type `{Self}` does not `#[derive(PartialEq)]`")]
152151
#[lang = "structural_peq"]
@@ -197,7 +196,6 @@ pub trait StructuralPartialEq {
197196
/// As a hack to work around this, we use two separate traits injected by each
198197
/// of the two derives (`#[derive(PartialEq)]` and `#[derive(Eq)]`) and check
199198
/// that both of them are present as part of structural-match checking.
200-
#[cfg(not(bootstrap))]
201199
#[unstable(feature = "structural_match", issue = "31434")]
202200
#[rustc_on_unimplemented(message="the type `{Self}` does not `#[derive(Eq)]`")]
203201
#[lang = "structural_teq"]
@@ -517,11 +515,9 @@ macro_rules! impls{
517515
}
518516
}
519517

520-
#[cfg(not(bootstrap))]
521518
#[unstable(feature = "structural_match", issue = "31434")]
522519
impl<T: ?Sized> StructuralPartialEq for $t<T> { }
523520

524-
#[cfg(not(bootstrap))]
525521
#[unstable(feature = "structural_match", issue = "31434")]
526522
impl<T: ?Sized> StructuralEq for $t<T> { }
527523
)

src/libcore/ops/try.rs

+2-15
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,7 @@
55
/// extracting those success or failure values from an existing instance and
66
/// creating a new instance from a success or failure value.
77
#[unstable(feature = "try_trait", issue = "42327")]
8-
#[cfg_attr(bootstrap, rustc_on_unimplemented(
9-
on(all(
10-
any(from_method="from_error", from_method="from_ok"),
11-
from_desugaring="QuestionMark"),
12-
message="the `?` operator can only be used in a \
13-
function that returns `Result` or `Option` \
14-
(or another type that implements `{Try}`)",
15-
label="cannot use the `?` operator in a function that returns `{Self}`"),
16-
on(all(from_method="into_result", from_desugaring="QuestionMark"),
17-
message="the `?` operator can only be applied to values \
18-
that implement `{Try}`",
19-
label="the `?` operator cannot be applied to type `{Self}`")
20-
))]
21-
#[cfg_attr(not(bootstrap), rustc_on_unimplemented(
8+
#[rustc_on_unimplemented(
229
on(all(
2310
any(from_method="from_error", from_method="from_ok"),
2411
from_desugaring="QuestionMark"),
@@ -30,7 +17,7 @@ on(all(from_method="into_result", from_desugaring="QuestionMark"),
3017
message="the `?` operator can only be applied to values \
3118
that implement `{Try}`",
3219
label="the `?` operator cannot be applied to type `{Self}`")
33-
))]
20+
)]
3421
#[doc(alias = "?")]
3522
pub trait Try {
3623
/// The type of this value when viewed as successful.

src/libcore/panic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ impl fmt::Display for PanicInfo<'_> {
167167
///
168168
/// panic!("Normal panic");
169169
/// ```
170-
#[cfg_attr(not(bootstrap), lang = "panic_location")]
170+
#[lang = "panic_location"]
171171
#[derive(Debug)]
172172
#[stable(feature = "panic_hooks", since = "1.10.0")]
173173
pub struct Location<'a> {

src/libcore/panicking.rs

-59
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131
use crate::fmt;
3232
use crate::panic::{Location, PanicInfo};
3333

34-
#[cfg(bootstrap)]
35-
#[cold]
36-
// never inline unless panic_immediate_abort to avoid code
37-
// bloat at the call sites as much as possible
38-
#[cfg_attr(not(feature="panic_immediate_abort"),inline(never))]
39-
#[lang = "panic"]
40-
pub fn panic(expr_file_line_col: &(&'static str, &'static str, u32, u32)) -> ! {
41-
if cfg!(feature = "panic_immediate_abort") {
42-
unsafe { super::intrinsics::abort() }
43-
}
44-
45-
// Use Arguments::new_v1 instead of format_args!("{}", expr) to potentially
46-
// reduce size overhead. The format_args! macro uses str's Display trait to
47-
// write expr, which calls Formatter::pad, which must accommodate string
48-
// truncation and padding (even though none is used here). Using
49-
// Arguments::new_v1 may allow the compiler to omit Formatter::pad from the
50-
// output binary, saving up to a few kilobytes.
51-
let (expr, file, line, col) = *expr_file_line_col;
52-
panic_fmt(fmt::Arguments::new_v1(&[expr], &[]), &(file, line, col))
53-
}
54-
55-
#[cfg(not(bootstrap))]
5634
#[cold]
5735
// never inline unless panic_immediate_abort to avoid code
5836
// bloat at the call sites as much as possible
@@ -72,21 +50,6 @@ pub fn panic(expr: &str, location: &Location<'_>) -> ! {
7250
panic_fmt(fmt::Arguments::new_v1(&[expr], &[]), location)
7351
}
7452

75-
#[cfg(bootstrap)]
76-
#[cold]
77-
#[cfg_attr(not(feature="panic_immediate_abort"),inline(never))]
78-
#[lang = "panic_bounds_check"]
79-
fn panic_bounds_check(file_line_col: &(&'static str, u32, u32),
80-
index: usize, len: usize) -> ! {
81-
if cfg!(feature = "panic_immediate_abort") {
82-
unsafe { super::intrinsics::abort() }
83-
}
84-
85-
panic_fmt(format_args!("index out of bounds: the len is {} but the index is {}",
86-
len, index), file_line_col)
87-
}
88-
89-
#[cfg(not(bootstrap))]
9053
#[cold]
9154
#[cfg_attr(not(feature="panic_immediate_abort"),inline(never))]
9255
#[lang = "panic_bounds_check"]
@@ -101,28 +64,6 @@ fn panic_bounds_check(location: &Location<'_>, index: usize, len: usize) -> ! {
10164
)
10265
}
10366

104-
#[cfg(bootstrap)]
105-
#[cold]
106-
#[cfg_attr(not(feature="panic_immediate_abort"),inline(never))]
107-
#[cfg_attr( feature="panic_immediate_abort" ,inline)]
108-
pub fn panic_fmt(fmt: fmt::Arguments<'_>, file_line_col: &(&'static str, u32, u32)) -> ! {
109-
if cfg!(feature = "panic_immediate_abort") {
110-
unsafe { super::intrinsics::abort() }
111-
}
112-
113-
// NOTE This function never crosses the FFI boundary; it's a Rust-to-Rust call
114-
extern "Rust" {
115-
#[lang = "panic_impl"]
116-
fn panic_impl(pi: &PanicInfo<'_>) -> !;
117-
}
118-
119-
let (file, line, col) = *file_line_col;
120-
let location = Location::internal_constructor(file, line, col);
121-
let pi = PanicInfo::internal_constructor(Some(&fmt), &location);
122-
unsafe { panic_impl(&pi) }
123-
}
124-
125-
#[cfg(not(bootstrap))]
12667
#[cold]
12768
#[cfg_attr(not(feature="panic_immediate_abort"),inline(never))]
12869
#[cfg_attr( feature="panic_immediate_abort" ,inline)]

src/libcore/ptr/mod.rs

-16
Original file line numberDiff line numberDiff line change
@@ -1301,7 +1301,6 @@ impl<T: ?Sized> *const T {
13011301
/// }
13021302
/// ```
13031303
#[unstable(feature = "ptr_offset_from", issue = "41079")]
1304-
#[cfg(not(bootstrap))]
13051304
#[rustc_const_unstable(feature = "const_ptr_offset_from")]
13061305
#[inline]
13071306
pub const unsafe fn offset_from(self, origin: *const T) -> isize where T: Sized {
@@ -1313,21 +1312,6 @@ impl<T: ?Sized> *const T {
13131312
intrinsics::ptr_offset_from(self, origin)
13141313
}
13151314

1316-
#[unstable(feature = "ptr_offset_from", issue = "41079")]
1317-
#[inline]
1318-
#[cfg(bootstrap)]
1319-
/// bootstrap
1320-
pub unsafe fn offset_from(self, origin: *const T) -> isize where T: Sized {
1321-
let pointee_size = mem::size_of::<T>();
1322-
assert!(0 < pointee_size && pointee_size <= isize::max_value() as usize);
1323-
1324-
// This is the same sequence that Clang emits for pointer subtraction.
1325-
// It can be neither `nsw` nor `nuw` because the input is treated as
1326-
// unsigned but then the output is treated as signed, so neither works.
1327-
let d = isize::wrapping_sub(self as _, origin as _);
1328-
intrinsics::exact_div(d, pointee_size as _)
1329-
}
1330-
13311315
/// Calculates the distance between two pointers. The returned value is in
13321316
/// units of T: the distance in bytes is divided by `mem::size_of::<T>()`.
13331317
///

0 commit comments

Comments
 (0)