Skip to content

Commit 1a04a31

Browse files
committed
review
1 parent a7b1144 commit 1a04a31

File tree

5 files changed

+31
-23
lines changed

5 files changed

+31
-23
lines changed

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

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ use crate::infer::{DefineOpaqueTypes, InferCtxt, SubregionOrigin};
1414

1515
/// Enforce that `a` is equal to or a subtype of `b`.
1616
pub struct TypeRelating<'combine, 'a, 'tcx> {
17-
// Partially mutable.
17+
// Immutable except for the `InferCtxt` and the
18+
// resulting nested `goals`.
1819
fields: &'combine mut CombineFields<'a, 'tcx>,
1920

20-
// Immutable fields.
21+
// Immutable field.
2122
structurally_relate_aliases: StructurallyRelateAliases,
23+
// Mutable field.
2224
ambient_variance: ty::Variance,
2325

24-
/// The cache has only tracks the `ambient_variance` as its the
26+
/// The cache only tracks the `ambient_variance` as it's the
2527
/// only field which is mutable and which meaningfully changes
2628
/// the result when relating types.
2729
///

compiler/rustc_middle/src/ty/fold.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -210,16 +210,17 @@ where
210210
debug_assert!(!ty.has_vars_bound_above(ty::INNERMOST));
211211
ty::fold::shift_vars(self.tcx, ty, self.current_index.as_u32())
212212
}
213-
_ if t.has_vars_bound_at_or_above(self.current_index) => {
214-
if let Some(&ty) = self.cache.get(&(self.current_index, t)) {
215-
return ty;
213+
_ => {
214+
if !t.has_vars_bound_at_or_above(self.current_index) {
215+
t
216+
} else if let Some(&t) = self.cache.get(&(self.current_index, t)) {
217+
t
218+
} else {
219+
let res = t.super_fold_with(self);
220+
assert!(self.cache.insert((self.current_index, t), res));
221+
res
216222
}
217-
218-
let res = t.super_fold_with(self);
219-
assert!(self.cache.insert((self.current_index, t), res));
220-
res
221223
}
222-
_ => t,
223224
}
224225
}
225226

compiler/rustc_next_trait_solver/src/canonicalizer.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,19 @@ pub enum CanonicalizeMode {
4242

4343
pub struct Canonicalizer<'a, D: SolverDelegate<Interner = I>, I: Interner> {
4444
delegate: &'a D,
45+
46+
// Immutable field.
4547
canonicalize_mode: CanonicalizeMode,
4648

49+
// Mutable fields.
4750
variables: &'a mut Vec<I::GenericArg>,
48-
variable_lookup_table: HashMap<I::GenericArg, usize>,
49-
5051
primitive_var_infos: Vec<CanonicalVarInfo<I>>,
52+
variable_lookup_table: HashMap<I::GenericArg, usize>,
5153
binder_index: ty::DebruijnIndex,
5254

53-
/// We only use the debruijn index during lookup as all other fields
54-
/// should not be impacted by whether a type is folded once or multiple
55-
/// times.
55+
/// We only use the debruijn index during lookup. We don't need to
56+
/// track the `variables` as each generic arg only results in a single
57+
/// bound variable regardless of how many times it is encountered.
5658
cache: HashMap<(ty::DebruijnIndex, I::Ty), I::Ty>,
5759
}
5860

compiler/rustc_next_trait_solver/src/resolve.rs

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ where
1616
I: Interner,
1717
{
1818
delegate: &'a D,
19+
/// We're able to use a cache here as the folder does not have any
20+
/// mutable state.
1921
cache: DelayedMap<I::Ty, I::Ty>,
2022
}
2123

compiler/rustc_next_trait_solver/src/solve/eval_ctxt/mod.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -1057,16 +1057,17 @@ where
10571057
);
10581058
infer_ty
10591059
}
1060-
_ if ty.has_aliases() => {
1061-
if let Some(&entry) = self.cache.get(&ty) {
1060+
_ => {
1061+
if !ty.has_aliases() {
1062+
ty
1063+
} else if let Some(&entry) = self.cache.get(&ty) {
10621064
return entry;
1065+
} else {
1066+
let res = ty.super_fold_with(self);
1067+
assert!(self.cache.insert(ty, res).is_none());
1068+
res
10631069
}
1064-
1065-
let res = ty.super_fold_with(self);
1066-
assert!(self.cache.insert(ty, res).is_none());
1067-
res
10681070
}
1069-
_ => ty,
10701071
}
10711072
}
10721073

0 commit comments

Comments
 (0)