-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Store a Symbol
instead of an Ident
in AssocItem
#93095
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 188ad3a5ae520f5b6fec872277182baa8fbc88cd with merge f5ca923de1932f0ada0485a181f0ce7484cf8fe6... |
This comment has been minimized.
This comment has been minimized.
This is the same idea as rust-lang#92533, but for `AssocItem` instead of `VariantDef`/`FieldDef`. With this change, we no longer have any uses of `#[stable_hasher(project(...))]`
188ad3a
to
c8941d3
Compare
The job Click to see the possible cause of the failure (guessed by this bot)
|
@bors try |
⌛ Trying commit c8941d3 with merge 44f1f9005d687620a5221003e5faf61ff125c2cb... |
☀️ Try build successful - checks-actions |
Queued 44f1f9005d687620a5221003e5faf61ff125c2cb with parent 5e57faa, future comparison URL. |
Finished benchmarking commit (44f1f9005d687620a5221003e5faf61ff125c2cb): comparison url. Summary: This change led to large relevant regressions 😿 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 |
This has slightly better performance than #92837 (which has regressions up to 2.7% compared to 2.2% for this PR) |
📌 Commit c8941d3 has been approved by |
⌛ Testing commit c8941d3 with merge 502e74f322e2563c8f9f843982445a66a7baf305... |
💥 Test timed out |
@bors retry |
☀️ Test successful - checks-actions |
Finished benchmarking commit (8cdb3cd): comparison url. Summary: This benchmark run shows 17 relevant regressions 😿 to instruction counts.
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Next Steps: If you can justify the regressions found in this perf run, please indicate this with @rustbot label: +perf-regression |
Store a `Symbol` instead of an `Ident` in `AssocItem` This is the same idea as rust-lang#92533, but for `AssocItem` instead of `VariantDef`/`FieldDef`. With this change, we no longer have any uses of `#[stable_hasher(project(...))]`
This is the same idea as #92533, but for
AssocItem
insteadof
VariantDef
/FieldDef
.With this change, we no longer have any uses of
#[stable_hasher(project(...))]