@@ -15,8 +15,10 @@ mod from_mir;
15
15
pub ( super ) enum BcbMappingKind {
16
16
/// Associates an ordinary executable code span with its corresponding BCB.
17
17
Code ( BasicCoverageBlock ) ,
18
- /// Associates a branch span with BCBs for its true and false arms.
19
- Branch { true_bcb : BasicCoverageBlock , false_bcb : BasicCoverageBlock } ,
18
+
19
+ // Ordinary branch mappings are stored separately, so they don't have a
20
+ // variant in this enum.
21
+ //
20
22
/// Associates a mcdc branch span with condition info besides fields for normal branch.
21
23
MCDCBranch {
22
24
true_bcb : BasicCoverageBlock ,
@@ -35,9 +37,20 @@ pub(super) struct BcbMapping {
35
37
pub ( super ) span : Span ,
36
38
}
37
39
40
+ /// This is separate from [`BcbMappingKind`] to help prepare for larger changes
41
+ /// that will be needed for improved branch coverage in the future.
42
+ /// (See <https://github.com/rust-lang/rust/pull/124217>.)
43
+ #[ derive( Debug ) ]
44
+ pub ( super ) struct BcbBranchPair {
45
+ pub ( super ) span : Span ,
46
+ pub ( super ) true_bcb : BasicCoverageBlock ,
47
+ pub ( super ) false_bcb : BasicCoverageBlock ,
48
+ }
49
+
38
50
pub ( super ) struct CoverageSpans {
39
51
bcb_has_mappings : BitSet < BasicCoverageBlock > ,
40
- mappings : Vec < BcbMapping > ,
52
+ pub ( super ) mappings : Vec < BcbMapping > ,
53
+ pub ( super ) branch_pairs : Vec < BcbBranchPair > ,
41
54
test_vector_bitmap_bytes : u32 ,
42
55
}
43
56
@@ -46,10 +59,6 @@ impl CoverageSpans {
46
59
self . bcb_has_mappings . contains ( bcb)
47
60
}
48
61
49
- pub ( super ) fn all_bcb_mappings ( & self ) -> impl Iterator < Item = & BcbMapping > {
50
- self . mappings . iter ( )
51
- }
52
-
53
62
pub ( super ) fn test_vector_bitmap_bytes ( & self ) -> u32 {
54
63
self . test_vector_bitmap_bytes
55
64
}
@@ -65,6 +74,7 @@ pub(super) fn generate_coverage_spans(
65
74
basic_coverage_blocks : & CoverageGraph ,
66
75
) -> Option < CoverageSpans > {
67
76
let mut mappings = vec ! [ ] ;
77
+ let mut branch_pairs = vec ! [ ] ;
68
78
69
79
if hir_info. is_async_fn {
70
80
// An async function desugars into a function that returns a future,
@@ -86,7 +96,7 @@ pub(super) fn generate_coverage_spans(
86
96
BcbMapping { kind : BcbMappingKind :: Code ( bcb) , span }
87
97
} ) ) ;
88
98
89
- mappings . extend ( from_mir:: extract_branch_mappings (
99
+ branch_pairs . extend ( from_mir:: extract_branch_pairs (
90
100
mir_body,
91
101
hir_info. body_span ,
92
102
basic_coverage_blocks,
@@ -99,7 +109,7 @@ pub(super) fn generate_coverage_spans(
99
109
) ) ;
100
110
}
101
111
102
- if mappings. is_empty ( ) {
112
+ if mappings. is_empty ( ) && branch_pairs . is_empty ( ) {
103
113
return None ;
104
114
}
105
115
@@ -112,8 +122,7 @@ pub(super) fn generate_coverage_spans(
112
122
for BcbMapping { kind, span : _ } in & mappings {
113
123
match * kind {
114
124
BcbMappingKind :: Code ( bcb) => insert ( bcb) ,
115
- BcbMappingKind :: Branch { true_bcb, false_bcb }
116
- | BcbMappingKind :: MCDCBranch { true_bcb, false_bcb, .. } => {
125
+ BcbMappingKind :: MCDCBranch { true_bcb, false_bcb, .. } => {
117
126
insert ( true_bcb) ;
118
127
insert ( false_bcb) ;
119
128
}
@@ -126,8 +135,12 @@ pub(super) fn generate_coverage_spans(
126
135
}
127
136
}
128
137
}
138
+ for & BcbBranchPair { true_bcb, false_bcb, .. } in & branch_pairs {
139
+ insert ( true_bcb) ;
140
+ insert ( false_bcb) ;
141
+ }
129
142
130
- Some ( CoverageSpans { bcb_has_mappings, mappings, test_vector_bitmap_bytes } )
143
+ Some ( CoverageSpans { bcb_has_mappings, mappings, branch_pairs , test_vector_bitmap_bytes } )
131
144
}
132
145
133
146
#[ derive( Debug ) ]
0 commit comments