2
2
//!
3
3
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html#selection
4
4
5
- // FIXME: The `map` field in ProvisionalEvaluationCache should be changed to
6
- // a `FxIndexMap` to avoid query instability, but right now it causes a perf regression. This would be
7
- // fixed or at least lightened by the addition of the `drain_filter` method to `FxIndexMap`
8
- // Relevant: https://github.com/rust-lang/rust/pull/103723 and https://github.com/bluss/indexmap/issues/242
9
- #![ allow( rustc:: potential_query_instability) ]
10
-
11
5
use self :: EvaluationResult :: * ;
12
6
use self :: SelectionCandidate :: * ;
13
7
@@ -32,8 +26,7 @@ use crate::traits::project::ProjectAndUnifyResult;
32
26
use crate :: traits:: project:: ProjectionCacheKeyExt ;
33
27
use crate :: traits:: ProjectionCacheKey ;
34
28
use crate :: traits:: Unimplemented ;
35
- use rustc_data_structures:: fx:: FxHashMap ;
36
- use rustc_data_structures:: fx:: { FxHashSet , FxIndexSet } ;
29
+ use rustc_data_structures:: fx:: { FxHashSet , FxIndexMap , FxIndexSet } ;
37
30
use rustc_data_structures:: stack:: ensure_sufficient_stack;
38
31
use rustc_errors:: Diagnostic ;
39
32
use rustc_hir as hir;
@@ -2782,7 +2775,7 @@ struct ProvisionalEvaluationCache<'tcx> {
2782
2775
/// - then we determine that `E` is in error -- we will then clear
2783
2776
/// all cache values whose DFN is >= 4 -- in this case, that
2784
2777
/// means the cached value for `F`.
2785
- map : RefCell < FxHashMap < ty:: PolyTraitPredicate < ' tcx > , ProvisionalEvaluation > > ,
2778
+ map : RefCell < FxIndexMap < ty:: PolyTraitPredicate < ' tcx > , ProvisionalEvaluation > > ,
2786
2779
2787
2780
/// The stack of args that we assume to be true because a `WF(arg)` predicate
2788
2781
/// is on the stack above (and because of wellformedness is coinductive).
@@ -2930,12 +2923,13 @@ impl<'tcx> ProvisionalEvaluationCache<'tcx> {
2930
2923
/// have a performance impact in practice.
2931
2924
fn on_completion ( & self , dfn : usize ) {
2932
2925
debug ! ( ?dfn, "on_completion" ) ;
2933
-
2934
- for ( fresh_trait_pred, eval) in
2935
- self . map . borrow_mut ( ) . drain_filter ( |_k, eval| eval. from_dfn >= dfn)
2936
- {
2937
- debug ! ( ?fresh_trait_pred, ?eval, "on_completion" ) ;
2938
- }
2926
+ self . map . borrow_mut ( ) . retain ( |fresh_trait_pred, eval| {
2927
+ if eval. from_dfn >= dfn {
2928
+ debug ! ( ?fresh_trait_pred, ?eval, "on_completion" ) ;
2929
+ return false ;
2930
+ }
2931
+ true
2932
+ } ) ;
2939
2933
}
2940
2934
}
2941
2935
0 commit comments