Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 855ebdf

Browse files
committedDec 15, 2024
coverage: Track used functions in a set instead of a map
This patch dismantles what was left of `FunctionCoverage` in `map_data.rs`, replaces `function_coverage_map` with a set, and overhauls how we prepare covfun records for unused functions.
1 parent a611a40 commit 855ebdf

File tree

3 files changed

+33
-87
lines changed

3 files changed

+33
-87
lines changed
 

‎compiler/rustc_codegen_llvm/src/coverageinfo/map_data.rs

-24
This file was deleted.

‎compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs

+29-48
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ use tracing::debug;
1717

1818
use crate::common::CodegenCx;
1919
use crate::coverageinfo::llvm_cov;
20-
use crate::coverageinfo::map_data::FunctionCoverage;
2120
use crate::coverageinfo::mapgen::covfun::prepare_covfun_record;
2221
use crate::llvm;
2322

@@ -48,34 +47,28 @@ pub(crate) fn finalize(cx: &CodegenCx<'_, '_>) {
4847

4948
debug!("Generating coverage map for CodegenUnit: `{}`", cx.codegen_unit.name());
5049

51-
// In order to show that unused functions have coverage counts of zero (0), LLVM requires the
52-
// functions exist. Generate synthetic functions with a (required) single counter, and add the
53-
// MIR `Coverage` code regions to the `function_coverage_map`, before calling
54-
// `ctx.take_function_coverage_map()`.
55-
if cx.codegen_unit.is_code_coverage_dead_code_cgu() {
56-
add_unused_functions(cx);
57-
}
58-
5950
// FIXME(#132395): Can this be none even when coverage is enabled?
60-
let function_coverage_map = match cx.coverage_cx {
61-
Some(ref cx) => cx.take_function_coverage_map(),
51+
let instances_used = match cx.coverage_cx {
52+
Some(ref cx) => cx.instances_used.borrow(),
6253
None => return,
6354
};
64-
if function_coverage_map.is_empty() {
65-
// This CGU has no functions with coverage instrumentation.
66-
return;
67-
}
6855

6956
let mut global_file_table = GlobalFileTable::new();
7057

71-
let covfun_records = function_coverage_map
72-
.into_iter()
73-
.filter_map(|(instance, function_coverage)| {
74-
let is_used = function_coverage.is_used();
75-
prepare_covfun_record(tcx, &mut global_file_table, instance, is_used)
76-
})
58+
let mut covfun_records = instances_used
59+
.iter()
60+
.copied()
61+
.filter_map(|instance| prepare_covfun_record(tcx, &mut global_file_table, instance, true))
7762
.collect::<Vec<_>>();
7863

64+
// In a single designated CGU, also prepare covfun records for functions
65+
// in this crate that were instrumented for coverage, but are unused.
66+
if cx.codegen_unit.is_code_coverage_dead_code_cgu() {
67+
covfun_records.extend(gather_unused_functions(cx).into_iter().filter_map(|instance| {
68+
prepare_covfun_record(tcx, &mut global_file_table, instance, false)
69+
}));
70+
}
71+
7972
// If there are no covfun records for this CGU, don't generate a covmap record.
8073
// Emitting a covmap record without any covfun records causes `llvm-cov` to
8174
// fail when generating coverage reports, and if there are no covfun records
@@ -251,7 +244,7 @@ fn generate_covmap_record<'ll>(cx: &CodegenCx<'ll, '_>, version: u32, filenames_
251244
/// coverage map (in a single designated CGU) so that we still emit coverage mappings for them.
252245
/// We also end up adding their symbol names to a special global array that LLVM will include in
253246
/// its embedded coverage data.
254-
fn add_unused_functions(cx: &CodegenCx<'_, '_>) {
247+
fn gather_unused_functions<'tcx>(cx: &CodegenCx<'_, 'tcx>) -> Vec<ty::Instance<'tcx>> {
255248
assert!(cx.codegen_unit.is_code_coverage_dead_code_cgu());
256249

257250
let tcx = cx.tcx;
@@ -268,20 +261,17 @@ fn add_unused_functions(cx: &CodegenCx<'_, '_>) {
268261
&& !usage.used_via_inlining.contains(&def_id.to_def_id())
269262
};
270263

271-
// Scan for unused functions that were instrumented for coverage.
272-
for def_id in tcx.mir_keys(()).iter().copied().filter(|&def_id| is_unused_fn(def_id)) {
273-
// Get the coverage info from MIR, skipping functions that were never instrumented.
274-
let body = tcx.optimized_mir(def_id);
275-
let Some(function_coverage_info) = body.function_coverage_info.as_deref() else { continue };
264+
// FIXME(79651): Consider trying to filter out dummy instantiations of
265+
// unused generic functions from library crates, because they can produce
266+
// "unused instantiation" in coverage reports even when they are actually
267+
// used by some downstream crate in the same binary.
276268

277-
// FIXME(79651): Consider trying to filter out dummy instantiations of
278-
// unused generic functions from library crates, because they can produce
279-
// "unused instantiation" in coverage reports even when they are actually
280-
// used by some downstream crate in the same binary.
281-
282-
debug!("generating unused fn: {def_id:?}");
283-
add_unused_function_coverage(cx, def_id, function_coverage_info);
284-
}
269+
tcx.mir_keys(())
270+
.iter()
271+
.copied()
272+
.filter(|&def_id| is_unused_fn(def_id))
273+
.map(|def_id| make_dummy_instance(tcx, def_id))
274+
.collect::<Vec<_>>()
285275
}
286276

287277
struct UsageSets<'tcx> {
@@ -346,16 +336,11 @@ fn prepare_usage_sets<'tcx>(tcx: TyCtxt<'tcx>) -> UsageSets<'tcx> {
346336
UsageSets { all_mono_items, used_via_inlining, missing_own_coverage }
347337
}
348338

349-
fn add_unused_function_coverage<'tcx>(
350-
cx: &CodegenCx<'_, 'tcx>,
351-
def_id: LocalDefId,
352-
function_coverage_info: &'tcx mir::coverage::FunctionCoverageInfo,
353-
) {
354-
let tcx = cx.tcx;
355-
let def_id = def_id.to_def_id();
339+
fn make_dummy_instance<'tcx>(tcx: TyCtxt<'tcx>, local_def_id: LocalDefId) -> ty::Instance<'tcx> {
340+
let def_id = local_def_id.to_def_id();
356341

357342
// Make a dummy instance that fills in all generics with placeholders.
358-
let instance = ty::Instance::new(
343+
ty::Instance::new(
359344
def_id,
360345
ty::GenericArgs::for_item(tcx, def_id, |param, _| {
361346
if let ty::GenericParamDefKind::Lifetime = param.kind {
@@ -364,9 +349,5 @@ fn add_unused_function_coverage<'tcx>(
364349
tcx.mk_param_from_def(param)
365350
}
366351
}),
367-
);
368-
369-
// An unused function's mappings will all be rewritten to map to zero.
370-
let function_coverage = FunctionCoverage::new_unused(function_coverage_info);
371-
cx.coverage_cx().function_coverage_map.borrow_mut().insert(instance, function_coverage);
352+
)
372353
}

‎compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs

+4-15
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,24 @@ use rustc_abi::Size;
55
use rustc_codegen_ssa::traits::{
66
BuilderMethods, ConstCodegenMethods, CoverageInfoBuilderMethods, MiscCodegenMethods,
77
};
8-
use rustc_data_structures::fx::{FxHashMap, FxIndexMap};
8+
use rustc_data_structures::fx::{FxHashMap, FxIndexSet};
99
use rustc_middle::mir::coverage::CoverageKind;
1010
use rustc_middle::ty::Instance;
1111
use rustc_middle::ty::layout::HasTyCtxt;
1212
use tracing::{debug, instrument};
1313

1414
use crate::builder::Builder;
1515
use crate::common::CodegenCx;
16-
use crate::coverageinfo::map_data::FunctionCoverage;
1716
use crate::llvm;
1817

1918
pub(crate) mod ffi;
2019
mod llvm_cov;
21-
pub(crate) mod map_data;
2220
mod mapgen;
2321

2422
/// Extra per-CGU context/state needed for coverage instrumentation.
2523
pub(crate) struct CguCoverageContext<'ll, 'tcx> {
2624
/// Coverage data for each instrumented function identified by DefId.
27-
pub(crate) function_coverage_map: RefCell<FxIndexMap<Instance<'tcx>, FunctionCoverage<'tcx>>>,
25+
pub(crate) instances_used: RefCell<FxIndexSet<Instance<'tcx>>>,
2826
pub(crate) pgo_func_name_var_map: RefCell<FxHashMap<Instance<'tcx>, &'ll llvm::Value>>,
2927
pub(crate) mcdc_condition_bitmap_map: RefCell<FxHashMap<Instance<'tcx>, Vec<&'ll llvm::Value>>>,
3028

@@ -34,17 +32,13 @@ pub(crate) struct CguCoverageContext<'ll, 'tcx> {
3432
impl<'ll, 'tcx> CguCoverageContext<'ll, 'tcx> {
3533
pub(crate) fn new() -> Self {
3634
Self {
37-
function_coverage_map: Default::default(),
35+
instances_used: RefCell::<FxIndexSet<_>>::default(),
3836
pgo_func_name_var_map: Default::default(),
3937
mcdc_condition_bitmap_map: Default::default(),
4038
covfun_section_name: Default::default(),
4139
}
4240
}
4341

44-
fn take_function_coverage_map(&self) -> FxIndexMap<Instance<'tcx>, FunctionCoverage<'tcx>> {
45-
self.function_coverage_map.replace(FxIndexMap::default())
46-
}
47-
4842
/// LLVM use a temp value to record evaluated mcdc test vector of each decision, which is
4943
/// called condition bitmap. In order to handle nested decisions, several condition bitmaps can
5044
/// be allocated for a function body. These values are named `mcdc.addr.{i}` and are a 32-bit
@@ -157,12 +151,7 @@ impl<'tcx> CoverageInfoBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> {
157151
// Mark the instance as used in this CGU, for coverage purposes.
158152
// This includes functions that were not partitioned into this CGU,
159153
// but were MIR-inlined into one of this CGU's functions.
160-
coverage_cx.function_coverage_map.borrow_mut().entry(instance).or_insert_with(|| {
161-
FunctionCoverage::new_used(
162-
function_coverage_info,
163-
bx.tcx.coverage_ids_info(instance.def),
164-
)
165-
});
154+
coverage_cx.instances_used.borrow_mut().insert(instance);
166155

167156
match *kind {
168157
CoverageKind::SpanMarker | CoverageKind::BlockMarker { .. } => unreachable!(

0 commit comments

Comments
 (0)
Failed to load comments.