-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Add a new CoverageKind::Branch to MIR #115061
Closed
+3,035
−358
Closed
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f64372b
🍒 Add tool `src/tools/coverage-dump` for use by some new coverage tests
Zalathar 285c05f
🍒 Also print expressions in a resolved form
Zalathar f07dcc0
🍒 Add test suite `coverage-map` to test coverage mappings emitted by …
Zalathar b251d34
🍒 Copy a selection of `run-coverage` test files into `coverage-map`
Zalathar f4d73b5
coverage: Make the zero counter a constant
Zalathar d22bfb4
coverage: Explicitly simplify coverage expressions in codegen
Zalathar 91ff05c
coverage: Don't bother renumbering expressions on the Rust side
Zalathar bba6c6c
Inline functions called from `add_coverage`
Swatinem c9fb0d4
Avoid intermediate Vec allocations in coverage mapping creation
Swatinem 81b59a7
Add a new `CoverageKind::Branch` to MIR
Swatinem 4152c4d
Introduce `-C instrument-coverage=branch` to gate branch coverage
Swatinem ffafc9e
Output Branch Regions from Coverage Instrumentation
Swatinem 7f985c4
Bless coverage tests
Swatinem 5dd986b
revert manual Debug impl in coverag-dump
Swatinem 8d4ba90
simplify expressions of branches
Swatinem f342569
Generalize Coverage Expression simplification
Swatinem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To save anyone else the trouble of checking whether this is accidentally stable (it's not):
New values of
InstrumentCoverage
are automatically treated as nightly-only unless they are explicitly added to the check shown below on line 2674, soBranch
is correctly treated as a nightly-only value. 👍rust/compiler/rustc_session/src/config.rs
Lines 2665 to 2685 in c6f5495
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I haven’t yet hooked up the option, so it doesn’t do anything right now, yet.