Skip to content

Commit d442854

Browse files
committed
coverage: Add branch coverage support for let-else
1 parent 5fe8b69 commit d442854

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

compiler/rustc_mir_build/src/build/coverageinfo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ impl BranchInfoBuilder {
134134
condition_info
135135
}
136136

137-
fn add_two_way_branch<'tcx>(
137+
pub(crate) fn add_two_way_branch<'tcx>(
138138
&mut self,
139139
cfg: &mut CFG<'tcx>,
140140
source_info: SourceInfo,

compiler/rustc_mir_build/src/build/matches/mod.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2446,6 +2446,13 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
24462446
None,
24472447
true,
24482448
);
2449+
2450+
// If branch coverage is enabled, record this branch.
2451+
if let Some(branch_info) = this.coverage_branch_info.as_mut() {
2452+
let source_info = SourceInfo { span: pattern.span, scope: this.source_scope };
2453+
branch_info.add_two_way_branch(&mut this.cfg, source_info, matching, failure);
2454+
}
2455+
24492456
this.break_for_else(failure, this.source_info(initializer_span));
24502457
matching.unit()
24512458
});

tests/coverage/branch/let-else.cov-map

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
Function name: let_else::let_else
2-
Raw bytes (38): 0x[01, 01, 02, 05, 09, 09, 02, 06, 01, 0c, 01, 01, 10, 02, 03, 0e, 00, 0f, 05, 00, 13, 00, 18, 09, 01, 09, 01, 0f, 02, 04, 05, 00, 0b, 07, 01, 01, 00, 02]
2+
Raw bytes (45): 0x[01, 01, 02, 05, 09, 09, 02, 07, 01, 0c, 01, 01, 10, 20, 02, 09, 03, 09, 00, 10, 02, 00, 0e, 00, 0f, 05, 00, 13, 00, 18, 09, 01, 09, 01, 0f, 02, 04, 05, 00, 0b, 07, 01, 01, 00, 02]
33
Number of files: 1
44
- file 0 => global file 1
55
Number of expressions: 2
66
- expression 0 operands: lhs = Counter(1), rhs = Counter(2)
77
- expression 1 operands: lhs = Counter(2), rhs = Expression(0, Sub)
8-
Number of file 0 mappings: 6
8+
Number of file 0 mappings: 7
99
- Code(Counter(0)) at (prev + 12, 1) to (start + 1, 16)
10-
- Code(Expression(0, Sub)) at (prev + 3, 14) to (start + 0, 15)
10+
- Branch { true: Expression(0, Sub), false: Counter(2) } at (prev + 3, 9) to (start + 0, 16)
11+
true = (c1 - c2)
12+
false = c2
13+
- Code(Expression(0, Sub)) at (prev + 0, 14) to (start + 0, 15)
1114
= (c1 - c2)
1215
- Code(Counter(1)) at (prev + 0, 19) to (start + 0, 24)
1316
- Code(Counter(2)) at (prev + 1, 9) to (start + 1, 15)

tests/coverage/branch/let-else.coverage

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
LL| |
1515
LL| 3| let Some(x) = value else {
1616
^2
17+
------------------
18+
| Branch (LL:9): [True: 2, False: 1]
19+
------------------
1720
LL| 1| say("none");
1821
LL| 1| return;
1922
LL| | };

0 commit comments

Comments
 (0)