-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Discard region-related bounds from ParamEnv
when predicate is global
#92044
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit b0d99cc5170616b695c10baa68699749e5368e6a with merge 6d83257505f822f6661144e98f829b369a69241a... |
☀️ Try build successful - checks-actions |
Queued 6d83257505f822f6661144e98f829b369a69241a with parent 2595d03, future comparison URL. |
Finished benchmarking commit (6d83257505f822f6661144e98f829b369a69241a): comparison url. Summary: This change led to very large relevant mixed results 🤷 in compiler performance.
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR led to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never |
r? rust-lang/traits |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit b0d99cc5170616b695c10baa68699749e5368e6a with merge 80c545594ea7467b84473666e8fe544146524e26... |
r=me after perf |
☀️ Try build successful - checks-actions |
Queued 80c545594ea7467b84473666e8fe544146524e26 with parent 41c3017, future comparison URL. |
Finished benchmarking commit (80c545594ea7467b84473666e8fe544146524e26): comparison url. Summary: This change led to large relevant improvements 🎉 in compiler performance.
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR led to changes in compiler perf. @bors rollup=never |
I'd like to add some tests, and get some additional review, before we merge this. I'm fairly certain that my strategy is sound, but anything involving regions can get pretty tricky. |
b0d99cc
to
835fc8a
Compare
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 835fc8a with merge 9e2081f43f6c3aace69b3469c6ed56cafe0e02a5... |
☀️ Try build successful - checks-actions |
Queued 9e2081f43f6c3aace69b3469c6ed56cafe0e02a5 with parent 84f962a, future comparison URL. |
Finished benchmarking commit (9e2081f43f6c3aace69b3469c6ed56cafe0e02a5): comparison url. Summary: This change led to large relevant mixed results 🤷 in compiler performance.
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR led to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never |
@Aaron1011: just to clarify, is this still waiting on the additional tests? Thanks. |
After thinking about this more, I've become significantly less confident that this is actually sound. I'm going to do some additional investigation this week. |
@Aaron1011 if there's anything I can do to help, please let me know! ❤️ |
After thinking about this more, I think the root of the problem is the way that we canonicalize our obligation to create a This has the advantage of allowing us to re-use the same query invocation for (potentially) many different inputs - the Additionally, replacing non-region-variables (e.g. early-bound or late-bound regions) with region variables seems somewhat questionable. If we have two distinct I think the solution is to change how we handle canonicalizing of the |
I don't think that's true...you can always end up with
This isn't a bad idea. I could imagine that treating early bound lifetimes as a special case, like static, isn't the worst idea. |
If you had that to start off with, then yes. However, if I have |
Yes, but I don't think there's a way to avoid that; it's not as though we check if regions could be related before adding constraints. |
I thought the query returned region obligations that need to hold in order for its result to be valid. So you'd actually get equate-obligations for those regions and then reject them because at this point you know the real regions. maybe we need two kinds of canonicalized regions. Ones that are checked immediately via the ParamEnv, and ones that just generate obligations when compared without knowledge about their relation. |
Workaround until rust-lang/rust#92044 is merged
@Aaron1011 @rustbot label: +S-inactive |
This allows us to use global caches in more places, since we can drop
predicates containing inference variables.