-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Consider errors in MIR as impossible predicates to empty the body. #146659
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
Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt This PR changes a file inside |
338ba26
to
3934fc9
Compare
This PR was rebased onto a different master commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
r? @oli-obk @bors try @rust-timer queue r=me (with rollup if perf is clean) |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Consider errors in MIR as impossible predicates to empty the body.
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (9a1f375): comparison URL. Overall result: no relevant changes - no action neededBenchmarking this pull request means it may be perf-sensitive – we'll automatically label it not fit for rolling up. You can override this, but we strongly advise not to, due to possible changes in compiler perf. @bors rollup=never Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResults (secondary -2.8%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeResults (secondary -0.0%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Bootstrap: 472.936s -> 471.976s (-0.20%) |
@bors r=oli-obk rollup |
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 6710835 (parent) -> 7e4b8d7 (this PR) Test differencesShow 18 test diffsStage 1
Stage 2
Additionally, 2 doctest diffs were found. These are ignored, as they are noisy. Job group index
Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 7e4b8d702fedccc9c7803773a22c2e053ac3b004 --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (7e4b8d7): 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)Results (primary 6.0%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary -4.8%, secondary 2.9%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 470.892s -> 471.863s (0.21%) |
Consider errors in MIR as impossible predicates to empty the body. The ICEs come from elaborating drops or performing state transform in MIR bodies that fail typeck or borrowck. If the body is tainted, replace it with `unreachable`. Fixes rust-lang#122630 Fixes rust-lang#122904 Fixes rust-lang#125185 Fixes rust-lang#139556
The ICEs come from elaborating drops or performing state transform in MIR bodies that fail typeck or borrowck.
If the body is tainted, replace it with
unreachable
.Fixes #122630
Fixes #122904
Fixes #125185
Fixes #139556