Skip to content

Commit 3c6f28a

Browse files
committed
Introduce -C instrument-coverage=branch to gate branch coverage
1 parent 959b2c7 commit 3c6f28a

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

compiler/rustc_session/src/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ pub enum MirSpanview {
168168
pub enum InstrumentCoverage {
169169
/// Default `-C instrument-coverage` or `-C instrument-coverage=statement`
170170
All,
171+
/// Additionally, instrument branches and output branch overage
172+
Branch,
171173
/// `-Zunstable-options -C instrument-coverage=except-unused-generics`
172174
ExceptUnusedGenerics,
173175
/// `-Zunstable-options -C instrument-coverage=except-unused-functions`

compiler/rustc_session/src/options.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ mod desc {
384384
pub const parse_mir_spanview: &str = "`statement` (default), `terminator`, or `block`";
385385
pub const parse_dump_mono_stats: &str = "`markdown` (default) or `json`";
386386
pub const parse_instrument_coverage: &str =
387-
"`all` (default), `except-unused-generics`, `except-unused-functions`, or `off`";
387+
"`all` (default), `branch`, `except-unused-generics`, `except-unused-functions`, or `off`";
388388
pub const parse_instrument_xray: &str = "either a boolean (`yes`, `no`, `on`, `off`, etc), or a comma separated list of settings: `always` or `never` (mutually exclusive), `ignore-loops`, `instruction-threshold=N`, `skip-entry`, `skip-exit`";
389389
pub const parse_unpretty: &str = "`string` or `string=string`";
390390
pub const parse_treat_err_as_bug: &str = "either no value or a non-negative number";
@@ -910,6 +910,7 @@ mod parse {
910910

911911
*slot = Some(match v {
912912
"all" => InstrumentCoverage::All,
913+
"branch" => InstrumentCoverage::Branch,
913914
"except-unused-generics" | "except_unused_generics" => {
914915
InstrumentCoverage::ExceptUnusedGenerics
915916
}
@@ -1320,6 +1321,7 @@ options! {
13201321
reports (note, the compiler build config must include `profiler = true`); \
13211322
implies `-C symbol-mangling-version=v0`. Optional values are:
13221323
`=all` (implicit value)
1324+
`=branch`
13231325
`=except-unused-generics`
13241326
`=except-unused-functions`
13251327
`=off` (default)"),
@@ -1566,6 +1568,7 @@ options! {
15661568
reports (note, the compiler build config must include `profiler = true`); \
15671569
implies `-C symbol-mangling-version=v0`. Optional values are:
15681570
`=all` (implicit value)
1571+
`=branch`
15691572
`=except-unused-generics`
15701573
`=except-unused-functions`
15711574
`=off` (default)"),

compiler/rustc_session/src/session.rs

+4
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,10 @@ impl Session {
701701
self.opts.cg.instrument_coverage() != InstrumentCoverage::Off
702702
}
703703

704+
pub fn instrument_coverage_branch(&self) -> bool {
705+
self.opts.cg.instrument_coverage() == InstrumentCoverage::Branch
706+
}
707+
704708
pub fn instrument_coverage_except_unused_generics(&self) -> bool {
705709
self.opts.cg.instrument_coverage() == InstrumentCoverage::ExceptUnusedGenerics
706710
}

0 commit comments

Comments
 (0)