Enable -Zdrop-tracking-mir by default#107421
Conversation
|
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
|
⌛ Trying commit 61c4d7edcd87bc38863fd1b164fccfc462431557 with merge 9ee0b0d5c433ffd332c5848d0dac8048d297b6ab... |
This comment has been minimized.
This comment has been minimized.
|
💔 Test failed - checks-actions |
e71d2ed to
b4f64e4
Compare
|
@bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
|
⌛ Trying commit b4f64e4054cd1a31c28ac024f2473973ac94bfdf with merge 549dafd0516c8b08f912fb001d48e977d0a94c34... |
This comment has been minimized.
This comment has been minimized.
|
☀️ Try build successful - checks-actions |
1 similar comment
|
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Finished benchmarking commit (549dafd0516c8b08f912fb001d48e977d0a94c34): 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)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.
|
|
@craterbot check |
|
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
|
🚧 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
|
@bors r=oli-obk |
|
☀️ Test successful - checks-actions |
|
Finished benchmarking commit (13e6f24): comparison URL. Overall result: ❌✅ regressions and improvements - ACTION NEEDEDNext Steps: If you can justify the regressions found in this perf run, please indicate this with @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)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 sizeResultsThis 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.
Bootstrap: 634.731s -> 631.479s (-0.51%) |
|
edit: oh this is the relative change, not the absolute value. oops |
|
That's the second time in this week's triage that the "relativeness" of the graph tripped someone up. Would an absolute graph be more intuitive? |
|
No ^^ I know that, and I read it correctly most of the time. cachegrind: lots more small regressions that make up this 5 mil regression |
This PR enables the
drop-tracking-mirflag by default. This flag was initially implemented in #101692.This flag computes auto-traits on generators based on their analysis MIR, instead of trying to compute on the HIR body. This removes the need for HIR-based drop-tracking, as we can now reuse the same code to compute generator witness types and to compute generator interior fields.