@@ -11,7 +11,8 @@ use rustc_codegen_ssa::traits::{
11
11
BaseTypeCodegenMethods , ConstCodegenMethods , StaticCodegenMethods ,
12
12
} ;
13
13
use rustc_middle:: mir:: coverage:: {
14
- CovTerm , CoverageIdsInfo , Expression , FunctionCoverageInfo , Mapping , MappingKind , Op ,
14
+ BasicCoverageBlock , CovTerm , CoverageIdsInfo , Expression , FunctionCoverageInfo , Mapping ,
15
+ MappingKind , Op ,
15
16
} ;
16
17
use rustc_middle:: ty:: { Instance , TyCtxt } ;
17
18
use rustc_span:: Span ;
@@ -53,7 +54,7 @@ pub(crate) fn prepare_covfun_record<'tcx>(
53
54
let fn_cov_info = tcx. instance_mir ( instance. def ) . function_coverage_info . as_deref ( ) ?;
54
55
let ids_info = tcx. coverage_ids_info ( instance. def ) ?;
55
56
56
- let expressions = prepare_expressions ( fn_cov_info , ids_info, is_used ) ;
57
+ let expressions = prepare_expressions ( ids_info) ;
57
58
58
59
let mut covfun = CovfunRecord {
59
60
mangled_function_name : tcx. symbol_name ( instance) . name ,
@@ -75,26 +76,14 @@ pub(crate) fn prepare_covfun_record<'tcx>(
75
76
}
76
77
77
78
/// Convert the function's coverage-counter expressions into a form suitable for FFI.
78
- fn prepare_expressions (
79
- fn_cov_info : & FunctionCoverageInfo ,
80
- ids_info : & CoverageIdsInfo ,
81
- is_used : bool ,
82
- ) -> Vec < ffi:: CounterExpression > {
83
- // If any counters or expressions were removed by MIR opts, replace their
84
- // terms with zero.
85
- let counter_for_term = |term| {
86
- if !is_used || ids_info. is_zero_term ( term) {
87
- ffi:: Counter :: ZERO
88
- } else {
89
- ffi:: Counter :: from_term ( term)
90
- }
91
- } ;
79
+ fn prepare_expressions ( ids_info : & CoverageIdsInfo ) -> Vec < ffi:: CounterExpression > {
80
+ let counter_for_term = ffi:: Counter :: from_term;
92
81
93
82
// We know that LLVM will optimize out any unused expressions before
94
83
// producing the final coverage map, so there's no need to do the same
95
84
// thing on the Rust side unless we're confident we can do much better.
96
85
// (See `CounterExpressionsMinimizer` in `CoverageMappingWriter.cpp`.)
97
- fn_cov_info
86
+ ids_info
98
87
. expressions
99
88
. iter ( )
100
89
. map ( move |& Expression { lhs, op, rhs } | ffi:: CounterExpression {
@@ -136,11 +125,16 @@ fn fill_region_tables<'tcx>(
136
125
137
126
// For each counter/region pair in this function+file, convert it to a
138
127
// form suitable for FFI.
139
- let is_zero_term = |term| !covfun. is_used || ids_info. is_zero_term ( term) ;
140
128
for & Mapping { ref kind, span } in & fn_cov_info. mappings {
141
- // If the mapping refers to counters/expressions that were removed by
142
- // MIR opts, replace those occurrences with zero.
143
- let kind = kind. map_terms ( |term| if is_zero_term ( term) { CovTerm :: Zero } else { term } ) ;
129
+ // If this function is unused, replace all counters with zero.
130
+ let counter_for_bcb = |bcb : BasicCoverageBlock | -> ffi:: Counter {
131
+ let term = if covfun. is_used {
132
+ ids_info. term_for_bcb [ bcb] . expect ( "every BCB in a mapping was given a term" )
133
+ } else {
134
+ CovTerm :: Zero
135
+ } ;
136
+ ffi:: Counter :: from_term ( term)
137
+ } ;
144
138
145
139
// Convert the `Span` into coordinates that we can pass to LLVM, or
146
140
// discard the span if conversion fails. In rare, cases _all_ of a
@@ -154,23 +148,22 @@ fn fill_region_tables<'tcx>(
154
148
continue ;
155
149
}
156
150
157
- match kind {
158
- MappingKind :: Code ( term) => {
159
- code_regions
160
- . push ( ffi:: CodeRegion { cov_span, counter : ffi:: Counter :: from_term ( term) } ) ;
151
+ match * kind {
152
+ MappingKind :: Code { bcb } => {
153
+ code_regions. push ( ffi:: CodeRegion { cov_span, counter : counter_for_bcb ( bcb) } ) ;
161
154
}
162
- MappingKind :: Branch { true_term , false_term } => {
155
+ MappingKind :: Branch { true_bcb , false_bcb } => {
163
156
branch_regions. push ( ffi:: BranchRegion {
164
157
cov_span,
165
- true_counter : ffi :: Counter :: from_term ( true_term ) ,
166
- false_counter : ffi :: Counter :: from_term ( false_term ) ,
158
+ true_counter : counter_for_bcb ( true_bcb ) ,
159
+ false_counter : counter_for_bcb ( false_bcb ) ,
167
160
} ) ;
168
161
}
169
- MappingKind :: MCDCBranch { true_term , false_term , mcdc_params } => {
162
+ MappingKind :: MCDCBranch { true_bcb , false_bcb , mcdc_params } => {
170
163
mcdc_branch_regions. push ( ffi:: MCDCBranchRegion {
171
164
cov_span,
172
- true_counter : ffi :: Counter :: from_term ( true_term ) ,
173
- false_counter : ffi :: Counter :: from_term ( false_term ) ,
165
+ true_counter : counter_for_bcb ( true_bcb ) ,
166
+ false_counter : counter_for_bcb ( false_bcb ) ,
174
167
mcdc_branch_params : ffi:: mcdc:: BranchParameters :: from ( mcdc_params) ,
175
168
} ) ;
176
169
}
0 commit comments