Fix a performance regression in obligation deduplication.
Commit8378487
from #114611 changed the location of an obligation deduplication step in `opt_normalize_projection_type`. This meant that deduplication stopped happening on one path where it was still necessary, causing a couple of drastic performance regressions. This commit moves the deduplication back to the old location. The good news is that #114611 had four commits and8378487
was of minimal importance, so the perf benefits from that PR remain. Fixes #116780, #116797.
This commit is contained in:
parent
99592fdfa1
commit
91f2fbc867
@ -1233,7 +1233,7 @@ fn opt_normalize_projection_type<'a, 'b, 'tcx>(
|
|||||||
|
|
||||||
let projected_term = selcx.infcx.resolve_vars_if_possible(projected_term);
|
let projected_term = selcx.infcx.resolve_vars_if_possible(projected_term);
|
||||||
|
|
||||||
let result = if projected_term.has_projections() {
|
let mut result = if projected_term.has_projections() {
|
||||||
let mut normalizer = AssocTypeNormalizer::new(
|
let mut normalizer = AssocTypeNormalizer::new(
|
||||||
selcx,
|
selcx,
|
||||||
param_env,
|
param_env,
|
||||||
@ -1243,14 +1243,14 @@ fn opt_normalize_projection_type<'a, 'b, 'tcx>(
|
|||||||
);
|
);
|
||||||
let normalized_ty = normalizer.fold(projected_term);
|
let normalized_ty = normalizer.fold(projected_term);
|
||||||
|
|
||||||
let mut deduped = SsoHashSet::with_capacity(projected_obligations.len());
|
|
||||||
projected_obligations.retain(|obligation| deduped.insert(obligation.clone()));
|
|
||||||
|
|
||||||
Normalized { value: normalized_ty, obligations: projected_obligations }
|
Normalized { value: normalized_ty, obligations: projected_obligations }
|
||||||
} else {
|
} else {
|
||||||
Normalized { value: projected_term, obligations: projected_obligations }
|
Normalized { value: projected_term, obligations: projected_obligations }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let mut deduped = SsoHashSet::with_capacity(result.obligations.len());
|
||||||
|
result.obligations.retain(|obligation| deduped.insert(obligation.clone()));
|
||||||
|
|
||||||
if use_cache {
|
if use_cache {
|
||||||
infcx.inner.borrow_mut().projection_cache().insert_term(cache_key, result.clone());
|
infcx.inner.borrow_mut().projection_cache().insert_term(cache_key, result.clone());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user