Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 6 pull requests #139169

Merged
merged 15 commits into from
Mar 31, 2025
Merged

Rollup of 6 pull requests #139169

merged 15 commits into from
Mar 31, 2025

Conversation

matthiaskrgr
Copy link
Member

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

compiler-errors and others added 15 commits March 13, 2025 21:12
I saw someone post a code sample that contained these two attributes,
which immediately made me suspicious.
My suspicions were confirmed when I did a small test and checked the
compiler source code to confirm that in these cases, `#[inline]` is
indeed ignored (because you can't exactly `LocalCopy`an unmangled symbol
since that would lead to duplicate symbols, and doing a mix of an
unmangled `GloballyShared` and mangled `LocalCopy` instantiation is too
complicated for our current instatiation mode logic, which I don't want
to change right now).

So instead, emit the usual unused attribute lint with a message saying
that the attribute is ignored in this position.

I think this is not 100% true, since I expect LLVM `inlinehint` to still
be applied to such a function, but that's not why people use this
attribute, they use it for the `LocalCopy` instantiation mode, where it
doesn't work.
…=lcnr

Prefer built-in sized impls (and only sized impls) for rigid types always

This PR changes the confirmation of `Sized` obligations to unconditionally prefer the built-in impl, even if it has nested obligations. This also changes all other built-in impls (namely, `Copy`/`Clone`/`DiscriminantKind`/`Pointee`) to *not* prefer built-in impls over param-env impls. This aligns the old solver with the behavior of the new solver.

---

In the old solver, we register many builtin candidates with the `BuiltinCandidate { has_nested: bool }` candidate kind. The precedence this candidate takes over other candidates is based on the `has_nested` field. We only prefer builtin impls over param-env candidates if `has_nested` is `false`

https://github.com/rust-lang/rust/blob/2b4694a69804f89ff9d47d1a427f72c876f7f44c/compiler/rustc_trait_selection/src/traits/select/mod.rs#L1804-L1866

Preferring param-env candidates when the builtin candidate has nested obligations *still* ends up leading to detrimental inference guidance, like:

```rust
fn hello<T>() where (T,): Sized {
    let x: (_,) = Default::default();
    // ^^ The `Sized` obligation on the variable infers `_ = T`.
    let x: (i32,) = x;
    // We error here, both a type mismatch and also b/c `T: Default` doesn't hold.
}
```

Therefore this PR adjusts the candidate precedence of `Sized` obligations by making them a distinct candidate kind and unconditionally preferring them over all other candidate kinds.

Special-casing `Sized` this way is necessary as there are a lot of traits with a `Sized` super-trait bound, so a `&'a str: From<T>` where-bound results in an elaborated `&'a str: Sized` bound. People tend to not add explicit where-clauses which overlap with builtin impls, so this tends to not be an issue for other traits.

We don't know of any tests/crates which need preference for other builtin traits. As this causes builtin impls to diverge from user-written impls we would like to minimize the affected traits. Otherwise e.g. moving impls for tuples to std by using variadic generics would be a breaking change. For other builtin impls it's also easier for the preference of builtin impls over where-bounds to result in issues.

---

There are two ways preferring builtin impls over where-bounds can be incorrect and undesirable:
- applying the builtin impl results in undesirable region constraints. E.g. if only `MyType<'static>` implements `Copy` then a goal like `(MyType<'a>,): Copy` would require `'a == 'static` so we must not prefer it over a `(MyType<'a>,): Copy` where-bound
   - this is mostly not an issue for `Sized` as all `Sized` impls are builtin and don't add any region constraints not already required for the type to be well-formed
   - however, even with `Sized` this is still an issue if a nested goal also gets proven via a where-bound: [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&gist=30377da5b8a88f654884ab4ebc72f52b)
- if the builtin impl has associated types, we should not prefer it over where-bounds when normalizing that associated type. This can result in normalization adding more region constraints than just proving trait bounds. rust-lang#133044
  - not an issue for `Sized` as it doesn't have associated types.

r? lcnr
…r=fmease

Fix closure recovery for missing block when return type is specified

Firstly, fix the `is_array_like_block` condition to make sure we're actually recovering a mistyped *block* rather than some other delimited expression. This fixes rust-lang#138748.

Secondly, split out the recovery of missing braces on a closure body into a separate recovery. Right now, the suggestion `"you might have meant to write this as part of a block"` originates from `suggest_fixes_misparsed_for_loop_head`, which feels kinda brittle and coincidental since AFAICT that recovery wasn't ever really intended to fix this.

We also can make this `MachineApplicable` in this case.

Fixes rust-lang#138748

r? `@fmease` or reassign if you're busy/don't wanna review this
…ethlin

Emit `unused_attributes` for `#[inline]` on exported functions

I saw someone post a code sample that contained these two attributes, which immediately made me suspicious.
My suspicions were confirmed when I did a small test and checked the compiler source code to confirm that in these cases, `#[inline]` is indeed ignored (because you can't exactly `LocalCopy`an unmangled symbol since that would lead to duplicate symbols, and doing a mix of an unmangled `GloballyShared` and mangled `LocalCopy` instantiation is too complicated for our current instatiation mode logic, which I don't want to change right now).

So instead, emit the usual unused attribute lint with a message saying that the attribute is ignored in this position.

I think this is not 100% true, since I expect LLVM `inlinehint` to still be applied to such a function, but that's not why people use this attribute, they use it for the `LocalCopy` instantiation mode, where it doesn't work.

r? saethlin as the instantiation guy

Procedurally, I think this should be fine to merge without any lang involvement, as this only does a very minor extension to an existing lint.
… r=oli-obk

Encode synthetic by-move coroutine body with a different `DefPathData`

See the included test. In the first revision rpass1, we have an async closure `{closure#0}` which has a coroutine as a child `{closure#0}::{closure#0}`. We synthesize a by-move coroutine body, which is `{closure#0}::{closure#1}` which depends on the mir_built query, which depends on the typeck query.

In the second revision rpass2, we've replaced the coroutine-closure by a closure with two children closure. Notably, the def path of the second child closure is the same as the synthetic def id from the last revision: `{closure#0}::{closure#1}`. When type-checking this closure, we end up trying to compute its def_span, which tries to fetch it from the incremental cache; this will try to force the dependencies from the last run, which ends up forcing the mir_built query, which ends up forcing the typeck query, which ends up with a query cycle.

The problem here is that we really should never have used the same `DefPathData` for the synthetic by-move coroutine body, since it's not a closure. Changing the `DefPathData` will mean that we can see that the def ids are distinct, which means we won't try to look up the closure's def span from the incremental cache, which will properly skip replaying the node's dependencies and avoid a query cycle.

Fixes rust-lang#139142
Remove mention of `exhaustive_patterns` from `never` docs

The example shows an exhaustive match:
```rust
#![feature(exhaustive_patterns)]
use std::str::FromStr;
let Ok(s) = String::from_str("hello");
```
But rust-lang#119612 moved this functionality to `#![feature(min_exhaustive_patterns)` and then stabilized it.
…ulacrum

Remove Amanieu from the libs review rotation

Unfortunately I've accumulated a large backlog of PRs to review, both in rust-lang and my own repos. Until I've cleared the backlog, I will remove myself from the review rotation for rust-lang/rust.
@rustbot rustbot added A-attributes Area: Attributes (`#[…]`, `#![…]`) A-meta Area: Issues & PRs about the rust-lang/rust repository itself A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) PG-exploit-mitigations Project group: Exploit mitigations S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Mar 31, 2025
@matthiaskrgr
Copy link
Member Author

matthiaskrgr commented Mar 31, 2025

@bprs r+ rollup=never p=5
edit: sorry, typo

@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Mar 31, 2025

📌 Commit 70a1bbc has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Mar 31, 2025
@bors
Copy link
Collaborator

bors commented Mar 31, 2025

⌛ Testing commit 70a1bbc with merge 0b45675...

@bors
Copy link
Collaborator

bors commented Mar 31, 2025

☀️ Test successful - checks-actions
Approved by: matthiaskrgr
Pushing 0b45675 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Mar 31, 2025
@bors bors merged commit 0b45675 into rust-lang:master Mar 31, 2025
7 checks passed
@rustbot rustbot added this to the 1.88.0 milestone Mar 31, 2025
@rust-timer
Copy link
Collaborator

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#138176 Prefer built-in sized impls (and only sized impls) for rigi… 0f5f5844016669fd2d8f787904da246f61144411 (link)
#138749 Fix closure recovery for missing block when return type is … a0bd8169bebdc6abdda453d44612594d079bf149 (link)
#138842 Emit unused_attributes for #[inline] on exported functi… adb6cfa1ef4fd21013706347be6375f7dd1ca684 (link)
#139153 Encode synthetic by-move coroutine body with a different `D… 74e890af2e2dddbe90e2105151ae6dae67701ec9 (link)
#139157 Remove mention of exhaustive_patterns from never docs c8798b83b9fcbd42563ac1fcd4b32faade978614 (link)
#139167 Remove Amanieu from the libs review rotation 58b4c863d017fef5cfbca0e6d623e48761335d62 (link)

previous master: ab5b1be771

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

Copy link

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing ab5b1be (parent) -> 0b45675 (this PR)

Test differences

Show 531 test diffs

Stage 1

  • errors::verify_passes_attr_application_enum_145: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_enum_146: [missing] -> pass (J0)
  • errors::verify_passes_attr_application_struct_146: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_struct_147: [missing] -> pass (J0)
  • errors::verify_passes_attr_application_struct_enum_function_method_union_149: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_struct_enum_function_method_union_150: [missing] -> pass (J0)
  • errors::verify_passes_attr_application_struct_enum_union_148: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_struct_enum_union_149: [missing] -> pass (J0)
  • errors::verify_passes_attr_application_struct_union_147: pass -> [missing] (J0)
  • errors::verify_passes_attr_application_struct_union_148: [missing] -> pass (J0)
  • errors::verify_passes_cannot_stabilize_deprecated_153: pass -> [missing] (J0)
  • errors::verify_passes_cannot_stabilize_deprecated_154: [missing] -> pass (J0)
  • errors::verify_passes_const_stable_not_stable_162: pass -> [missing] (J0)
  • errors::verify_passes_const_stable_not_stable_163: [missing] -> pass (J0)
  • errors::verify_passes_deprecated_attribute_151: pass -> [missing] (J0)
  • errors::verify_passes_deprecated_attribute_152: [missing] -> pass (J0)
  • errors::verify_passes_duplicate_feature_err_160: pass -> [missing] (J0)
  • errors::verify_passes_duplicate_feature_err_161: [missing] -> pass (J0)
  • errors::verify_passes_implied_feature_not_exist_159: pass -> [missing] (J0)
  • errors::verify_passes_implied_feature_not_exist_160: [missing] -> pass (J0)
  • errors::verify_passes_ineffective_unstable_impl_170: pass -> [missing] (J0)
  • errors::verify_passes_ineffective_unstable_impl_171: [missing] -> pass (J0)
  • errors::verify_passes_inline_ignored_for_exported_144: [missing] -> pass (J0)
  • errors::verify_passes_missing_const_err_161: pass -> [missing] (J0)
  • errors::verify_passes_missing_const_err_162: [missing] -> pass (J0)
  • errors::verify_passes_missing_const_stab_attr_156: pass -> [missing] (J0)
  • errors::verify_passes_missing_const_stab_attr_157: [missing] -> pass (J0)
  • errors::verify_passes_missing_stability_attr_155: pass -> [missing] (J0)
  • errors::verify_passes_missing_stability_attr_156: [missing] -> pass (J0)
  • errors::verify_passes_no_sanitize_172: pass -> [missing] (J0)
  • errors::verify_passes_no_sanitize_173: [missing] -> pass (J0)
  • errors::verify_passes_object_lifetime_err_144: pass -> [missing] (J0)
  • errors::verify_passes_object_lifetime_err_145: [missing] -> pass (J0)
  • errors::verify_passes_proc_macro_bad_sig_163: pass -> [missing] (J0)
  • errors::verify_passes_proc_macro_bad_sig_164: [missing] -> pass (J0)
  • errors::verify_passes_rustc_const_stable_indirect_pairing_173: pass -> [missing] (J0)
  • errors::verify_passes_rustc_const_stable_indirect_pairing_174: [missing] -> pass (J0)
  • errors::verify_passes_trait_impl_const_stable_157: pass -> [missing] (J0)
  • errors::verify_passes_trait_impl_const_stable_158: [missing] -> pass (J0)
  • errors::verify_passes_transparent_incompatible_150: pass -> [missing] (J0)
  • errors::verify_passes_transparent_incompatible_151: [missing] -> pass (J0)
  • errors::verify_passes_unknown_feature_158: pass -> [missing] (J0)
  • errors::verify_passes_unknown_feature_159: [missing] -> pass (J0)
  • errors::verify_passes_unnecessary_partial_stable_feature_169: pass -> [missing] (J0)
  • errors::verify_passes_unnecessary_partial_stable_feature_170: [missing] -> pass (J0)
  • errors::verify_passes_unnecessary_stable_feature_168: pass -> [missing] (J0)
  • errors::verify_passes_unnecessary_stable_feature_169: [missing] -> pass (J0)
  • errors::verify_passes_unreachable_due_to_uninhabited_164: pass -> [missing] (J0)
  • errors::verify_passes_unreachable_due_to_uninhabited_165: [missing] -> pass (J0)
  • errors::verify_passes_unstable_attr_for_already_stable_feature_154: pass -> [missing] (J0)
  • errors::verify_passes_unstable_attr_for_already_stable_feature_155: [missing] -> pass (J0)
  • errors::verify_passes_unsupported_attributes_in_where_174: pass -> [missing] (J0)
  • errors::verify_passes_unsupported_attributes_in_where_175: [missing] -> pass (J0)
  • errors::verify_passes_unused_assign_passed_171: pass -> [missing] (J0)
  • errors::verify_passes_unused_assign_passed_172: [missing] -> pass (J0)
  • errors::verify_passes_unused_capture_maybe_capture_ref_166: pass -> [missing] (J0)
  • errors::verify_passes_unused_capture_maybe_capture_ref_167: [missing] -> pass (J0)
  • errors::verify_passes_unused_var_assigned_only_167: pass -> [missing] (J0)
  • errors::verify_passes_unused_var_assigned_only_168: [missing] -> pass (J0)
  • errors::verify_passes_unused_var_maybe_capture_ref_165: pass -> [missing] (J0)
  • errors::verify_passes_unused_var_maybe_capture_ref_166: [missing] -> pass (J0)
  • errors::verify_passes_useless_stability_152: pass -> [missing] (J0)
  • errors::verify_passes_useless_stability_153: [missing] -> pass (J0)
  • [incremental] tests/incremental/user-written-closure-synthetic-closure-conflict.rs: [missing] -> pass (J2)
  • [ui] tests/ui/lint/inline-exported.rs: [missing] -> pass (J2)
  • [ui] tests/ui/sized/dont-incompletely-prefer-built-in.rs#current: [missing] -> pass (J2)
  • [ui] tests/ui/sized/dont-incompletely-prefer-built-in.rs#next: [missing] -> pass (J2)
  • [ui] tests/ui/traits/incomplete-infer-via-sized-wc.rs#current: [missing] -> pass (J2)
  • [ui] tests/ui/traits/incomplete-infer-via-sized-wc.rs#next: [missing] -> pass (J2)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc-2.rs#current: [missing] -> pass (J2)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc-2.rs#next: [missing] -> pass (J2)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc.rs#current: [missing] -> pass (J2)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc.rs#next: [missing] -> pass (J2)

Stage 2

  • [ui] tests/ui/lint/inline-exported.rs: [missing] -> pass (J1)
  • [ui] tests/ui/sized/dont-incompletely-prefer-built-in.rs#current: [missing] -> pass (J1)
  • [ui] tests/ui/sized/dont-incompletely-prefer-built-in.rs#next: [missing] -> pass (J1)
  • [ui] tests/ui/traits/incomplete-infer-via-sized-wc.rs#current: [missing] -> pass (J1)
  • [ui] tests/ui/traits/incomplete-infer-via-sized-wc.rs#next: [missing] -> pass (J1)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc-2.rs#current: [missing] -> pass (J1)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc-2.rs#next: [missing] -> pass (J1)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc.rs#current: [missing] -> pass (J1)
  • [ui] tests/ui/traits/lifetime-incomplete-prefer-sized-builtin-over-wc.rs#next: [missing] -> pass (J1)
  • [incremental] tests/incremental/user-written-closure-synthetic-closure-conflict.rs: [missing] -> pass (J3)

Additionally, 448 doctest diffs were found. These are ignored, as they are noisy.

Job group index

  • J0: aarch64-apple, aarch64-gnu, i686-gnu-2, i686-gnu-nopt-2, i686-mingw-2, i686-mingw-3, i686-msvc-2, x86_64-apple-1, x86_64-gnu, x86_64-gnu-llvm-18-3, x86_64-gnu-llvm-19-3, x86_64-gnu-nopt, x86_64-gnu-stable, x86_64-mingw-2, x86_64-msvc-2
  • J1: aarch64-apple, aarch64-gnu, arm-android, armhf-gnu, dist-i586-gnu-i586-i686-musl, i686-gnu-1, i686-gnu-nopt-1, i686-msvc-1, test-various, x86_64-apple-2, x86_64-gnu, x86_64-gnu-llvm-18-1, x86_64-gnu-llvm-18-2, x86_64-gnu-llvm-19-1, x86_64-gnu-llvm-19-2, x86_64-gnu-nopt, x86_64-gnu-stable, x86_64-mingw-1, x86_64-msvc-1
  • J2: x86_64-gnu-llvm-18-3, x86_64-gnu-llvm-19-3
  • J3: aarch64-apple, aarch64-gnu, arm-android, armhf-gnu, dist-i586-gnu-i586-i686-musl, i686-gnu-1, i686-gnu-nopt-1, i686-msvc-1, test-various, x86_64-apple-1, x86_64-gnu, x86_64-gnu-llvm-18-1, x86_64-gnu-llvm-18-2, x86_64-gnu-llvm-19-1, x86_64-gnu-llvm-19-2, x86_64-gnu-nopt, x86_64-gnu-stable, x86_64-mingw-1, x86_64-msvc-1

Job duration changes

  1. dist-x86_64-apple: 8492.4s -> 11951.5s (40.7%)
  2. x86_64-apple-2: 3894.5s -> 4885.6s (25.4%)
  3. dist-aarch64-linux: 7749.2s -> 8511.1s (9.8%)
  4. x86_64-apple-1: 9449.6s -> 10289.4s (8.9%)
  5. dist-i686-msvc: 6891.7s -> 7250.8s (5.2%)
  6. i686-msvc-2: 7001.4s -> 7326.4s (4.6%)
  7. x86_64-msvc-ext3: 7500.0s -> 7844.7s (4.6%)
  8. x86_64-gnu-stable: 6548.6s -> 6848.4s (4.6%)
  9. dist-powerpc64-linux: 5363.0s -> 5607.1s (4.6%)
  10. x86_64-gnu-llvm-19-2: 6228.1s -> 6498.1s (4.3%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (0b45675): comparison URL.

Overall result: ❌ regressions - no action needed

@rustbot label: -perf-regression

Instruction count

This is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.4% [0.4%, 0.4%] 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Max RSS (memory usage)

Results (primary -1.6%, secondary -0.3%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
2.8% [2.2%, 3.4%] 2
Improvements ✅
(primary)
-1.6% [-2.6%, -1.0%] 4
Improvements ✅
(secondary)
-3.5% [-3.5%, -3.4%] 2
All ❌✅ (primary) -1.6% [-2.6%, -1.0%] 4

Cycles

Results (secondary 6.1%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
6.1% [2.3%, 9.9%] 2
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 773.745s -> 773.955s (0.03%)
Artifact size: 365.95 MiB -> 365.96 MiB (0.00%)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) A-meta Area: Issues & PRs about the rust-lang/rust repository itself A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) merged-by-bors This PR was explicitly merged by bors. PG-exploit-mitigations Project group: Exploit mitigations rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants