-
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
resolve: Cache module loading for all foreign modules #89239
Conversation
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit 3540ab1b57946e30e9819a2ae728097f570ffa98 with merge 46cc8acbde83e77d3533062bd987267715fc05eb... |
This comment has been minimized.
This comment has been minimized.
☀️ Try build successful - checks-actions |
Queued 46cc8acbde83e77d3533062bd987267715fc05eb with parent 7342213, future comparison URL. |
Finished benchmarking commit (46cc8acbde83e77d3533062bd987267715fc05eb): 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 is a correctness fix (for macros 2.0, I'll try to add a test case, e.g. with a macro 2.0 using The largest regression ( |
3540ab1
to
bfc2b31
Compare
Updated. |
@bors try @rust-timer queue |
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
⌛ Trying commit bfc2b31a4ee5890829adfc7c260ee39cbd0c749f with merge 6e3cd17ee9b9b29b92ebe126cd606f7adb0e7307... |
This comment has been minimized.
This comment has been minimized.
☀️ Try build successful - checks-actions |
Queued 6e3cd17ee9b9b29b92ebe126cd606f7adb0e7307 with parent ac8dd1b, future comparison URL. |
📌 Commit a0d70bd224f0510cea6b0be6c2d0d276d17af5d9 has been approved by |
⌛ Testing commit a0d70bd224f0510cea6b0be6c2d0d276d17af5d9 with merge 59f8b8d94bffcbd19f5c39f823c9f970f823bfac... |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
It was previously cached for modules loaded from `fn get_module`, but not for modules loaded from `fn build_reduced_graph_for_external_crate_res`. This also makes all foreign modules use their real parent, span and expansion instead of possibly a parent/span/expansion of their reexport. An ICE happening on attempt to decode expansions for foreign enums and traits is avoided. Also local enums and traits are now added to the module map.
It makes all block modules identical during comparison
@bors r=cjgillot |
📌 Commit d7d0765 has been approved by |
☀️ Test successful - checks-actions |
Finished benchmarking commit (d14731c): comparison url. Summary: This benchmark run did not return any relevant changes. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression |
@rustbot label +perf-regression-triaged |
It was previously cached for modules loaded from
fn get_module
, but not for modules loaded fromfn build_reduced_graph_for_external_crate_res
.This also makes all foreign modules use their real parent, span and expansion instead of possibly a parent/span/expansion of their reexport.
Modules are also often compared using referential equality (
ptr::eq
), this change makes such comparisons correct in all cases.An ICE happening on attempt to decode expansions for foreign enums and traits is avoided.
Also local enums and traits are now added to the module map.
Follow up to #88872.
r? @cjgillot