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

Encode synthetic by-move coroutine body with a different DefPathData #139153

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

compiler-errors
Copy link
Member

@compiler-errors compiler-errors commented Mar 30, 2025

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 #139142

@rustbot
Copy link
Collaborator

rustbot commented Mar 30, 2025

r? @cjgillot

rustbot has assigned @cjgillot.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added 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. labels Mar 30, 2025
@rustbot
Copy link
Collaborator

rustbot commented Mar 30, 2025

Some changes occurred in compiler/rustc_sanitizers

cc @rust-lang/project-exploit-mitigations, @rcvalle

@compiler-errors
Copy link
Member Author

r? @oli-obk perhaps

@rustbot rustbot assigned oli-obk and unassigned cjgillot Mar 30, 2025
@compiler-errors compiler-errors changed the title Encode synthetic by-move coroutine body with a different DefPathData Encode synthetic by-move coroutine body with a different DefPathData Mar 30, 2025
@rust-log-analyzer

This comment has been minimized.

@rustbot
Copy link
Collaborator

rustbot commented Mar 30, 2025

Some changes occurred in coverage tests.

cc @Zalathar

@oli-obk
Copy link
Contributor

oli-obk commented Mar 31, 2025

Amazing

@bors r+ rollup

@bors
Copy link
Collaborator

bors commented Mar 31, 2025

📌 Commit 897acc3 has been approved by oli-obk

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 added a commit to rust-lang-ci/rust that referenced this pull request Mar 31, 2025
…iaskrgr

Rollup of 6 pull requests

Successful merges:

 - rust-lang#138176 (Prefer built-in sized impls (and only sized impls) for rigid types always)
 - rust-lang#138749 (Fix closure recovery for missing block when return type is specified)
 - rust-lang#138842 (Emit `unused_attributes` for `#[inline]` on exported functions)
 - rust-lang#139153 (Encode synthetic by-move coroutine body with a different `DefPathData`)
 - rust-lang#139157 (Remove mention of `exhaustive_patterns` from `never` docs)
 - rust-lang#139167 (Remove Amanieu from the libs review rotation)

r? `@ghost`
`@rustbot` modify labels: rollup
@bors bors merged commit b17948a into rust-lang:master Mar 31, 2025
6 checks passed
@rustbot rustbot added this to the 1.88.0 milestone Mar 31, 2025
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Mar 31, 2025
Rollup merge of rust-lang#139153 - compiler-errors:incr-comp-closure, 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
@Zalathar
Copy link
Contributor

Zalathar commented Apr 2, 2025

Bors thinks this is still in the queue:

@bors r-

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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-author Status: This is awaiting some action (such as code changes or more information) from the author. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Incremental compilation OOM
7 participants