Skip to content

Commit a1b67fa

Browse files
committed
SsoHashMap
1 parent 5631939 commit a1b67fa

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

compiler/rustc_infer/src/infer/relate/type_relating.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use rustc_data_structures::fx::FxHashSet;
1+
use rustc_data_structures::sso::SsoHashSet;
22
use rustc_middle::traits::solve::Goal;
33
use rustc_middle::ty::relate::{
44
Relate, RelateResult, TypeRelation, relate_args_invariantly, relate_args_with_variances,
@@ -17,7 +17,7 @@ pub struct TypeRelating<'combine, 'a, 'tcx> {
1717
fields: &'combine mut CombineFields<'a, 'tcx>,
1818
structurally_relate_aliases: StructurallyRelateAliases,
1919
ambient_variance: ty::Variance,
20-
cache: FxHashSet<(ty::Variance, Ty<'tcx>, Ty<'tcx>)>,
20+
cache: SsoHashSet<(ty::Variance, Ty<'tcx>, Ty<'tcx>)>,
2121
}
2222

2323
impl<'combine, 'infcx, 'tcx> TypeRelating<'combine, 'infcx, 'tcx> {

compiler/rustc_infer/src/infer/resolve.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use rustc_data_structures::fx::FxHashMap;
1+
use rustc_data_structures::sso::SsoHashMap;
22
use rustc_middle::bug;
33
use rustc_middle::ty::fold::{FallibleTypeFolder, TypeFolder, TypeSuperFoldable};
44
use rustc_middle::ty::visit::TypeVisitableExt;
@@ -16,7 +16,7 @@ use super::{FixupError, FixupResult, InferCtxt};
1616
/// points for correctness.
1717
pub struct OpportunisticVarResolver<'a, 'tcx> {
1818
infcx: &'a InferCtxt<'tcx>,
19-
cache: FxHashMap<Ty<'tcx>, Ty<'tcx>>,
19+
cache: SsoHashMap<Ty<'tcx>, Ty<'tcx>>,
2020
}
2121

2222
impl<'a, 'tcx> OpportunisticVarResolver<'a, 'tcx> {

compiler/rustc_middle/src/ty/fold.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use rustc_data_structures::fx::{FxHashMap, FxIndexMap};
1+
use rustc_data_structures::fx::FxIndexMap;
2+
use rustc_data_structures::sso::SsoHashMap;
23
use rustc_hir::def_id::DefId;
34
pub use rustc_type_ir::fold::{
45
FallibleTypeFolder, TypeFoldable, TypeFolder, TypeSuperFoldable, shift_region, shift_vars,
@@ -165,7 +166,7 @@ struct BoundVarReplacer<'tcx, D> {
165166

166167
delegate: D,
167168

168-
cache: FxHashMap<(ty::DebruijnIndex, Ty<'tcx>), Ty<'tcx>>,
169+
cache: SsoHashMap<(ty::DebruijnIndex, Ty<'tcx>), Ty<'tcx>>,
169170
}
170171

171172
impl<'tcx, D: BoundVarReplacerDelegate<'tcx>> BoundVarReplacer<'tcx, D> {

compiler/rustc_next_trait_solver/src/resolve.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use rustc_type_ir::data_structures::HashMap;
1+
use rustc_data_structures::sso::SsoHashMap;
22
use rustc_type_ir::fold::{TypeFoldable, TypeFolder, TypeSuperFoldable};
33
use rustc_type_ir::inherent::*;
44
use rustc_type_ir::visit::TypeVisitableExt;
@@ -16,7 +16,7 @@ where
1616
I: Interner,
1717
{
1818
delegate: &'a D,
19-
cache: HashMap<I::Ty, I::Ty>,
19+
cache: SsoHashMap<I::Ty, I::Ty>,
2020
}
2121

2222
impl<'a, D: SolverDelegate> EagerResolver<'a, D> {

0 commit comments

Comments
 (0)