Skip to content

Commit 7211acd

Browse files
authored
Unrolled build for rust-lang#119514
Rollup merge of rust-lang#119514 - Zalathar:query-stability, r=wesleywiser coverage: Avoid a query stability hazard in `function_coverage_map` When rust-lang#118865 started enforcing the `rustc::potential_query_instability` lint in `rustc_codegen_llvm`, it added an exemption for this site, arguing that the entries are only used to create a list of filenames that is later sorted. However, the list of entries also gets traversed when creating the function coverage records in LLVM IR, which may be sensitive to hash-based ordering. This patch therefore changes `function_coverage_map` to use `FxIndexMap`, which should avoid hash-based instability by iterating in insertion order. cc ``@Enselic``
2 parents 1a47f5b + 5e7c1b9 commit 7211acd

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs

-5
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,6 @@ pub fn finalize(cx: &CodegenCx<'_, '_>) {
5858
return;
5959
}
6060

61-
// The entries of the map are only used to get a list of all files with
62-
// coverage info. In the end the list of files is passed into
63-
// `GlobalFileTable::new()` which internally do `.sort_unstable_by()`, so
64-
// the iteration order here does not matter.
65-
#[allow(rustc::potential_query_instability)]
6661
let function_coverage_entries = function_coverage_map
6762
.into_iter()
6863
.map(|(instance, function_coverage)| (instance, function_coverage.into_finished()))

compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use rustc_codegen_ssa::traits::{
1010
BaseTypeMethods, BuilderMethods, ConstMethods, CoverageInfoBuilderMethods, MiscMethods,
1111
StaticMethods,
1212
};
13-
use rustc_data_structures::fx::FxHashMap;
13+
use rustc_data_structures::fx::{FxHashMap, FxIndexMap};
1414
use rustc_llvm::RustString;
1515
use rustc_middle::bug;
1616
use rustc_middle::mir::coverage::CoverageKind;
@@ -30,7 +30,7 @@ const VAR_ALIGN_BYTES: usize = 8;
3030
pub struct CrateCoverageContext<'ll, 'tcx> {
3131
/// Coverage data for each instrumented function identified by DefId.
3232
pub(crate) function_coverage_map:
33-
RefCell<FxHashMap<Instance<'tcx>, FunctionCoverageCollector<'tcx>>>,
33+
RefCell<FxIndexMap<Instance<'tcx>, FunctionCoverageCollector<'tcx>>>,
3434
pub(crate) pgo_func_name_var_map: RefCell<FxHashMap<Instance<'tcx>, &'ll llvm::Value>>,
3535
}
3636

@@ -44,8 +44,8 @@ impl<'ll, 'tcx> CrateCoverageContext<'ll, 'tcx> {
4444

4545
pub fn take_function_coverage_map(
4646
&self,
47-
) -> FxHashMap<Instance<'tcx>, FunctionCoverageCollector<'tcx>> {
48-
self.function_coverage_map.replace(FxHashMap::default())
47+
) -> FxIndexMap<Instance<'tcx>, FunctionCoverageCollector<'tcx>> {
48+
self.function_coverage_map.replace(FxIndexMap::default())
4949
}
5050
}
5151

0 commit comments

Comments
 (0)