Skip to content

Commit 785eb65

Browse files
committed
Auto merge of #125574 - matthiaskrgr:rollup-1oljoup, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #125307 (tidy: stop special-casing tests/ui entry limit) - #125375 (Create a triagebot ping group for Rust for Linux) - #125473 (fix(opt-dist): respect existing config.toml) - #125508 (Stop SRoA'ing `DynMetadata` in MIR) - #125561 (Stabilize `slice_flatten`) - #125571 (f32: use constants instead of reassigning a dummy value as PI) r? `@ghost` `@rustbot` modify labels: rollup
2 parents a6a017d + 27cdb36 commit 785eb65

File tree

11 files changed

+61
-45
lines changed

11 files changed

+61
-45
lines changed

compiler/rustc_mir_transform/src/sroa.rs

+5
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ fn escaping_locals<'tcx>(
7070
// Exclude #[repr(simd)] types so that they are not de-optimized into an array
7171
return true;
7272
}
73+
if Some(def.did()) == tcx.lang_items().dyn_metadata() {
74+
// codegen wants to see the `DynMetadata<T>`,
75+
// not the inner reference-to-opaque-type.
76+
return true;
77+
}
7378
// We already excluded unions and enums, so this ADT must have one variant
7479
let variant = def.variant(FIRST_VARIANT);
7580
if variant.fields.len() > 1 {

library/alloc/src/vec/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2643,15 +2643,13 @@ impl<T, A: Allocator, const N: usize> Vec<[T; N], A> {
26432643
/// # Examples
26442644
///
26452645
/// ```
2646-
/// #![feature(slice_flatten)]
2647-
///
26482646
/// let mut vec = vec![[1, 2, 3], [4, 5, 6], [7, 8, 9]];
26492647
/// assert_eq!(vec.pop(), Some([7, 8, 9]));
26502648
///
26512649
/// let mut flattened = vec.into_flattened();
26522650
/// assert_eq!(flattened.pop(), Some(6));
26532651
/// ```
2654-
#[unstable(feature = "slice_flatten", issue = "95629")]
2652+
#[stable(feature = "slice_flatten", since = "CURRENT_RUSTC_VERSION")]
26552653
pub fn into_flattened(self) -> Vec<T, A> {
26562654
let (ptr, len, cap, alloc) = self.into_raw_parts_with_alloc();
26572655
let (new_len, new_cap) = if T::IS_ZST {

library/alloc/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#![feature(const_str_from_utf8)]
3737
#![feature(panic_update_hook)]
3838
#![feature(pointer_is_aligned_to)]
39-
#![feature(slice_flatten)]
4039
#![feature(thin_box)]
4140
#![feature(strict_provenance)]
4241
#![feature(drain_keep_rest)]

library/core/src/num/f32.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -901,8 +901,8 @@ impl f32 {
901901
#[stable(feature = "f32_deg_rad_conversions", since = "1.7.0")]
902902
#[inline]
903903
pub fn to_radians(self) -> f32 {
904-
let value: f32 = consts::PI;
905-
self * (value / 180.0f32)
904+
const RADS_PER_DEG: f32 = consts::PI / 180.0;
905+
self * RADS_PER_DEG
906906
}
907907

908908
/// Returns the maximum of the two numbers, ignoring NaN.

library/core/src/num/f64.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -912,8 +912,8 @@ impl f64 {
912912
#[stable(feature = "rust1", since = "1.0.0")]
913913
#[inline]
914914
pub fn to_radians(self) -> f64 {
915-
let value: f64 = consts::PI;
916-
self * (value / 180.0)
915+
const RADS_PER_DEG: f64 = consts::PI / 180.0;
916+
self * RADS_PER_DEG
917917
}
918918

919919
/// Returns the maximum of the two numbers, ignoring NaN.

library/core/src/slice/mod.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -4531,8 +4531,6 @@ impl<T, const N: usize> [[T; N]] {
45314531
/// # Examples
45324532
///
45334533
/// ```
4534-
/// #![feature(slice_flatten)]
4535-
///
45364534
/// assert_eq!([[1, 2, 3], [4, 5, 6]].as_flattened(), &[1, 2, 3, 4, 5, 6]);
45374535
///
45384536
/// assert_eq!(
@@ -4546,7 +4544,8 @@ impl<T, const N: usize> [[T; N]] {
45464544
/// let empty_slice_of_arrays: &[[u32; 10]] = &[];
45474545
/// assert!(empty_slice_of_arrays.as_flattened().is_empty());
45484546
/// ```
4549-
#[unstable(feature = "slice_flatten", issue = "95629")]
4547+
#[stable(feature = "slice_flatten", since = "CURRENT_RUSTC_VERSION")]
4548+
#[rustc_const_unstable(feature = "const_slice_flatten", issue = "95629")]
45504549
pub const fn as_flattened(&self) -> &[T] {
45514550
let len = if T::IS_ZST {
45524551
self.len().checked_mul(N).expect("slice len overflow")
@@ -4572,8 +4571,6 @@ impl<T, const N: usize> [[T; N]] {
45724571
/// # Examples
45734572
///
45744573
/// ```
4575-
/// #![feature(slice_flatten)]
4576-
///
45774574
/// fn add_5_to_all(slice: &mut [i32]) {
45784575
/// for i in slice {
45794576
/// *i += 5;
@@ -4584,7 +4581,7 @@ impl<T, const N: usize> [[T; N]] {
45844581
/// add_5_to_all(array.as_flattened_mut());
45854582
/// assert_eq!(array, [[6, 7, 8], [9, 10, 11], [12, 13, 14]]);
45864583
/// ```
4587-
#[unstable(feature = "slice_flatten", issue = "95629")]
4584+
#[stable(feature = "slice_flatten", since = "CURRENT_RUSTC_VERSION")]
45884585
pub fn as_flattened_mut(&mut self) -> &mut [T] {
45894586
let len = if T::IS_ZST {
45904587
self.len().checked_mul(N).expect("slice len overflow")

library/core/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@
110110
#![feature(const_array_from_ref)]
111111
#![feature(const_slice_from_ref)]
112112
#![feature(waker_getters)]
113-
#![feature(slice_flatten)]
114113
#![feature(error_generic_member_access)]
115114
#![feature(error_in_core)]
116115
#![feature(trait_upcasting)]

src/tools/opt-dist/src/tests.rs

+14-17
Original file line numberDiff line numberDiff line change
@@ -59,26 +59,17 @@ pub fn run_tests(env: &Environment) -> anyhow::Result<()> {
5959
.join(format!("llvm-config{}", executable_extension()));
6060
assert!(llvm_config.is_file());
6161

62-
let config_content = format!(
63-
r#"profile = "user"
64-
change-id = 115898
62+
let rustc = format!("build.rustc={}", rustc_path.to_string().replace('\\', "/"));
63+
let cargo = format!("build.cargo={}", cargo_path.to_string().replace('\\', "/"));
64+
let llvm_config =
65+
format!("target.{host_triple}.llvm-config={}", llvm_config.to_string().replace('\\', "/"));
6566

66-
[build]
67-
rustc = "{rustc}"
68-
cargo = "{cargo}"
69-
70-
[target.{host_triple}]
71-
llvm-config = "{llvm_config}"
72-
"#,
73-
rustc = rustc_path.to_string().replace('\\', "/"),
74-
cargo = cargo_path.to_string().replace('\\', "/"),
75-
llvm_config = llvm_config.to_string().replace('\\', "/")
76-
);
77-
log::info!("Using following `config.toml` for running tests:\n{config_content}");
67+
log::info!("Set the following configurations for running tests:");
68+
log::info!("\t{rustc}");
69+
log::info!("\t{cargo}");
70+
log::info!("\t{llvm_config}");
7871

7972
// Simulate a stage 0 compiler with the extracted optimized dist artifacts.
80-
std::fs::write("config.toml", config_content)?;
81-
8273
let x_py = env.checkout_path().join("x.py");
8374
let mut args = vec![
8475
env.python_binary(),
@@ -97,6 +88,12 @@ llvm-config = "{llvm_config}"
9788
"tests/run-pass-valgrind",
9889
"tests/ui",
9990
"tests/crashes",
91+
"--set",
92+
&rustc,
93+
"--set",
94+
&cargo,
95+
"--set",
96+
&llvm_config,
10097
];
10198
for test_path in env.skipped_tests() {
10299
args.extend(["--skip", test_path]);

src/tools/tidy/src/ui_tests.rs

+2-13
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ const ENTRY_LIMIT: usize = 900;
1616
// FIXME: The following limits should be reduced eventually.
1717

1818
const ISSUES_ENTRY_LIMIT: usize = 1676;
19-
const ROOT_ENTRY_LIMIT: usize = 757;
2019

2120
const EXPECTED_TEST_FILE_EXTENSIONS: &[&str] = &[
2221
"rs", // test source files
@@ -63,14 +62,10 @@ fn check_entries(tests_path: &Path, bad: &mut bool) {
6362
}
6463
}
6564

66-
let (mut max, mut max_root, mut max_issues) = (0usize, 0usize, 0usize);
65+
let (mut max, mut max_issues) = (0usize, 0usize);
6766
for (dir_path, count) in directories {
68-
// Use special values for these dirs.
69-
let is_root = tests_path.join("ui") == dir_path;
7067
let is_issues_dir = tests_path.join("ui/issues") == dir_path;
71-
let (limit, maxcnt) = if is_root {
72-
(ROOT_ENTRY_LIMIT, &mut max_root)
73-
} else if is_issues_dir {
68+
let (limit, maxcnt) = if is_issues_dir {
7469
(ISSUES_ENTRY_LIMIT, &mut max_issues)
7570
} else {
7671
(ENTRY_LIMIT, &mut max)
@@ -87,12 +82,6 @@ fn check_entries(tests_path: &Path, bad: &mut bool) {
8782
);
8883
}
8984
}
90-
if ROOT_ENTRY_LIMIT > max_root {
91-
tidy_error!(
92-
bad,
93-
"`ROOT_ENTRY_LIMIT` is too high (is {ROOT_ENTRY_LIMIT}, should be {max_root})"
94-
);
95-
}
9685
if ISSUES_ENTRY_LIMIT > max_issues {
9786
tidy_error!(
9887
bad,

tests/ui/mir/dyn_metadata_sroa.rs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//@ run-pass
2+
//@ compile-flags: -Zmir-opt-level=5 -Zvalidate-mir
3+
4+
#![feature(ptr_metadata)]
5+
6+
// Regression for <https://github.com/rust-lang/rust/issues/125506>,
7+
// which failed because of SRoA would project into `DynMetadata`.
8+
9+
trait Foo {}
10+
11+
struct Bar;
12+
13+
impl Foo for Bar {}
14+
15+
fn main() {
16+
let a: *mut dyn Foo = &mut Bar;
17+
18+
let _d = a.to_raw_parts().0 as usize;
19+
}

triagebot.toml

+13
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,19 @@ issues).
122122
"""
123123
label = "O-apple"
124124

125+
# This ping group is meant for situations where a rustc/stdlib change breaks RfL.
126+
# In that case, we want to notify the RfL group.
127+
[ping.rust-for-linux]
128+
alias = ["rfl"]
129+
message = """\
130+
Hey Rust for Linux group! It looks like something broke the Rust for Linux integration.
131+
Could you try to take a look?
132+
In case it's useful, here are some [instructions] for tackling these sorts of issues.
133+
134+
[instructions]: https://rustc-dev-guide.rust-lang.org/notification-groups/rust-for-linux.html
135+
"""
136+
label = "O-rfl"
137+
125138
[prioritize]
126139
label = "I-prioritize"
127140

0 commit comments

Comments
 (0)