-
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
rustc_span: Optimize span parent get/set methods #126544
Conversation
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
rustc_span: Optimize span parent get/set methods Like rust-lang#125017, but for span parents. r? `@cjgillot`
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (eab5a5b): comparison URL. Overall result: ❌✅ regressions and improvements - 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. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)Results (primary -2.6%)This 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.
CyclesResults (primary 2.0%)This 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: 672.776s -> 671.266s (-0.22%) |
Statistics (similar to #125017 (comment)).
|
The main conclusion from the statistics here and in #125017 (comment) is that we don't get much perf improvements from avoiding the interner ( We instead get the improvements from avoiding the So it's likely that we can optimize just |
[perf] More span update benchmarking rust-lang#126544 (comment)
[perf] More span update benchmarking rust-lang#126544 (comment)
[perf] More span update benchmarking rust-lang#126544 (comment)
Updated in accordance with #126544 (comment). |
c06b68d
to
a6c7958
Compare
[perf] More span update benchmarking rust-lang/rust#126544 (comment)
r=me with the points about tracking resolved. |
@bors r=cjgillot |
☀️ Test successful - checks-actions |
Finished benchmarking commit (a9c8887): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResults (secondary 0.3%)This 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: 700.231s -> 701.948s (0.25%) |
Like #125017, but for span parents.
r? @cjgillot