Skip to content

Commit e66efdd

Browse files
committed
coverage: Add branch coverage support for let-else
1 parent 40284a3 commit e66efdd

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

compiler/rustc_mir_build/src/build/coverageinfo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ impl BranchInfoBuilder {
140140
condition_info
141141
}
142142

143-
fn add_two_way_branch<'tcx>(
143+
pub(crate) fn add_two_way_branch<'tcx>(
144144
&mut self,
145145
cfg: &mut CFG<'tcx>,
146146
source_info: SourceInfo,

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

+7
Original file line numberDiff line numberDiff line change
@@ -2466,6 +2466,13 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
24662466
None,
24672467
true,
24682468
);
2469+
2470+
// If branch coverage is enabled, record this branch.
2471+
if let Some(branch_info) = this.coverage_branch_info.as_mut() {
2472+
let source_info = SourceInfo { span: pattern.span, scope: this.source_scope };
2473+
branch_info.add_two_way_branch(&mut this.cfg, source_info, matching, failure);
2474+
}
2475+
24692476
this.break_for_else(failure, this.source_info(initializer_span));
24702477
matching.unit()
24712478
});

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

+6-3
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

+3
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)