Skip to content

Commit c9dd07d

Browse files
committed
coverage: Add branch coverage support for let-else
1 parent 47314eb commit c9dd07d

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

compiler/rustc_mir_build/src/build/coverageinfo.rs

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
mod mcdc;
21
use std::assert_matches::assert_matches;
32
use std::collections::hash_map::Entry;
43

54
use rustc_data_structures::fx::FxHashMap;
65
use rustc_middle::mir::coverage::{BlockMarkerId, BranchSpan, CoverageKind};
76
use rustc_middle::mir::{self, BasicBlock, SourceInfo, UnOp};
8-
use rustc_middle::thir::{ExprId, ExprKind, Thir};
7+
use rustc_middle::thir::{ExprId, ExprKind, Pat, Thir};
98
use rustc_middle::ty::TyCtxt;
109
use rustc_span::def_id::LocalDefId;
1110

1211
use crate::build::coverageinfo::mcdc::MCDCInfoBuilder;
1312
use crate::build::{Builder, CFG};
1413

14+
mod mcdc;
15+
1516
pub(crate) struct BranchInfoBuilder {
1617
/// Maps condition expressions to their enclosing `!`, for better instrumentation.
1718
nots: FxHashMap<ExprId, NotInfo>,
@@ -155,7 +156,7 @@ impl BranchInfoBuilder {
155156
}
156157
}
157158

158-
impl Builder<'_, '_> {
159+
impl<'tcx> Builder<'_, 'tcx> {
159160
/// If branch coverage is enabled, inject marker statements into `then_block`
160161
/// and `else_block`, and record their IDs in the table of branch spans.
161162
pub(crate) fn visit_coverage_branch_condition(
@@ -195,4 +196,23 @@ impl Builder<'_, '_> {
195196

196197
branch_info.add_two_way_branch(&mut self.cfg, source_info, then_block, else_block);
197198
}
199+
200+
/// If branch coverage is enabled, inject marker statements into `true_block`
201+
/// and `false_block`, and record their IDs in the table of branches.
202+
///
203+
/// Used to instrument let-else for branch coverage.
204+
pub(crate) fn visit_coverage_conditional_let(
205+
&mut self,
206+
pattern: &Pat<'tcx>, // Pattern that has been matched when the true path is taken
207+
true_block: BasicBlock,
208+
false_block: BasicBlock,
209+
) {
210+
// Bail out if branch coverage is not enabled for this function.
211+
let Some(branch_info) = self.coverage_branch_info.as_mut() else { return };
212+
213+
// FIXME(#124144) This may need special handling when MC/DC is enabled.
214+
215+
let source_info = SourceInfo { span: pattern.span, scope: self.source_scope };
216+
branch_info.add_two_way_branch(&mut self.cfg, source_info, true_block, false_block);
217+
}
198218
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2452,6 +2452,10 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
24522452
None,
24532453
true,
24542454
);
2455+
2456+
// If branch coverage is enabled, record this branch.
2457+
this.visit_coverage_conditional_let(pattern, matching, failure);
2458+
24552459
this.break_for_else(failure, this.source_info(initializer_span));
24562460
matching.unit()
24572461
});

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)