-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Replace some instances of FxHashMap/FxHashSet with stable alternatives (mostly in rustc_hir and rustc_ast_lowering) #119093
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
Conversation
…s (mostly in rustc_hir and rustc_ast_lowering) Part of rust-lang/compiler-team#533
(rustbot has picked a reviewer for you, use r? to override) |
There are some maps here that may be performance critical. |
This comment has been minimized.
This comment has been minimized.
r=me if the perf run doesn't show regressions. |
Replace some instances of FxHashMap/FxHashSet with stable alternatives (mostly in rustc_hir and rustc_ast_lowering) Part of rust-lang/compiler-team#533. We should be getting close to being able to remove the HashStable impl of HashMap.
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (91fa6d2): comparison URL. Overall result: no relevant changes - no action neededBenchmarking 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 Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 673.523s -> 671.262s (-0.34%) |
Perf run looks good. Thanks for the review, @petrochenkov! @bors r=petrochenkov |
☀️ Test successful - checks-actions |
Finished benchmarking commit (32f5db9): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 671.446s -> 672.427s (0.15%) |
The cycles regressions have got to be noise?! |
Part of rust-lang/compiler-team#533. We should be getting close to being able to remove the HashStable impl of HashMap.