-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Only keep a single query for well-formed checking #98222
Conversation
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 8c9db2bd13646486dd4aa70df31f0a0456c935bb with merge f63048577aa48b759330fc42ece772164f7b0950... |
This comment has been minimized.
This comment has been minimized.
☀️ Try build successful - checks-actions |
Queued f63048577aa48b759330fc42ece772164f7b0950 with parent ff86b27, future comparison URL. |
Finished benchmarking commit (f63048577aa48b759330fc42ece772164f7b0950): comparison url. Instruction count
Max RSS (memory usage)Results
CyclesResults
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 may lead to changes in compiler perf. @bors rollup=never Footnotes |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
r? rust-lang/compiler |
📌 Commit f446bbc has been approved by |
☀️ Test successful - checks-actions |
Finished benchmarking commit (5ffa8f6): comparison url. Instruction count
Max RSS (memory usage)Results
CyclesResults
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression Footnotes |
There are currently 3 queries to perform wf checks on different item-likes. This complexity is not required.
This PR replaces the query by:
This allows to remove HIR
ParItemLikeVisitor
.