Avoid global trait caches while defining opaque types - #162036
Open
dominic-r wants to merge 2 commits into
Open
Conversation
Collaborator
|
Thanks for the pull request, and welcome! The Rust Project has assigned @mati865 (or someone else) to review your changes, you should hear from them (or someone else) within the next two weeks. Please see the contribution instructions and our LLM policy for more information. Why was this reviewer chosen?The reviewer was selected based on:
|
Member
|
Not familiar with this area. @rustbot reroll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #159932.
The old trait solver stores evaluated obligations in a global cache so they can be reused across inference contexts. While type checking a body that defines opaque types or coroutines, it avoided the global cache only when the current predicate mentioned one directly.
However, that check was insufficient. A predicate can depend on an opaque type through another obligation without mentioning the opaque type itself. A small source change could alter the order in which obligations were evaluated and therefore change the contents of the global cache. On the next incremental build, rustc could evaluate the same query key with different cache state and produce a different result. Incremental verification detected the changed fingerprint and raised the ICE.
So, this PR removes that exception. While a body defines opaque types or coroutines, the old trait solver now uses only the inference context's local caches. (These still avoid repeated work during the current type-checking run, but results are no longer shared between inference contexts where they may depend on an opaque type being defined.)
Do note that this may reduce global cache hits for async code and return-position
impl Trait. It also removes part of the caching compromise introduced in #132625 for the compile-time regression tracked in #132064.