2
2
3
3
pub ( super ) mod structural_traits;
4
4
5
+ use std:: ops:: ControlFlow ;
6
+
5
7
use derive_where:: derive_where;
6
8
use rustc_type_ir:: inherent:: * ;
7
9
use rustc_type_ir:: lang_items:: TraitSolverLangItem ;
8
10
use rustc_type_ir:: {
9
- self as ty, Interner , TypeFoldable , TypeVisitableExt as _, TypingMode , Upcast as _, elaborate,
11
+ self as ty, Interner , TypeFoldable , TypeSuperVisitable , TypeVisitable , TypeVisitableExt as _,
12
+ TypeVisitor , TypingMode , Upcast as _, elaborate,
10
13
} ;
11
14
use tracing:: { debug, instrument} ;
12
15
16
+ use super :: inspect;
13
17
use super :: trait_goals:: TraitGoalProvenVia ;
14
18
use crate :: delegate:: SolverDelegate ;
15
19
use crate :: solve:: inspect:: ProbeKind ;
48
52
49
53
fn trait_def_id ( self , cx : I ) -> I :: DefId ;
50
54
51
- /// Try equating an assumption predicate against a goal's predicate. If it
52
- /// holds, then execute the `then` callback, which should do any additional
53
- /// work, then produce a response (typically by executing
54
- /// [`EvalCtxt::evaluate_added_goals_and_make_canonical_response`]).
55
- fn probe_and_match_goal_against_assumption (
56
- ecx : & mut EvalCtxt < ' _ , D > ,
57
- source : CandidateSource < I > ,
58
- goal : Goal < I , Self > ,
59
- assumption : I :: Clause ,
60
- then : impl FnOnce ( & mut EvalCtxt < ' _ , D > ) -> QueryResult < I > ,
61
- ) -> Result < Candidate < I > , NoSolution > ;
62
-
63
55
/// Consider a clause, which consists of a "assumption" and some "requirements",
64
56
/// to satisfy a goal. If the requirements hold, then attempt to satisfy our
65
57
/// goal by equating it with the assumption.
@@ -118,6 +110,68 @@ where
118
110
alias_ty : ty:: AliasTy < I > ,
119
111
) -> Vec < Candidate < I > > ;
120
112
113
+ fn probe_and_consider_param_env_candidate (
114
+ ecx : & mut EvalCtxt < ' _ , D > ,
115
+ goal : Goal < I , Self > ,
116
+ assumption : I :: Clause ,
117
+ idx : usize ,
118
+ ) -> Result < Candidate < I > , NoSolution > {
119
+ Self :: fast_reject_assumption ( ecx, goal, assumption) ?;
120
+
121
+ ecx. probe ( |candidate : & Result < Candidate < I > , NoSolution > | match candidate {
122
+ Ok ( candidate) => inspect:: ProbeKind :: TraitCandidate {
123
+ source : candidate. source ,
124
+ result : Ok ( candidate. result ) ,
125
+ } ,
126
+ Err ( NoSolution ) => inspect:: ProbeKind :: TraitCandidate {
127
+ source : CandidateSource :: BuiltinImpl ( BuiltinImplSource :: Misc ) ,
128
+ result : Err ( NoSolution ) ,
129
+ } ,
130
+ } )
131
+ . enter ( |ecx| {
132
+ Self :: match_assumption ( ecx, goal, assumption) ?;
133
+ let source = ecx. characterize_param_env_assumption ( goal. param_env , assumption, idx) ?;
134
+ Ok ( Candidate {
135
+ source,
136
+ result : ecx. evaluate_added_goals_and_make_canonical_response ( Certainty :: Yes ) ?,
137
+ } )
138
+ } )
139
+ }
140
+
141
+ /// Try equating an assumption predicate against a goal's predicate. If it
142
+ /// holds, then execute the `then` callback, which should do any additional
143
+ /// work, then produce a response (typically by executing
144
+ /// [`EvalCtxt::evaluate_added_goals_and_make_canonical_response`]).
145
+ fn probe_and_match_goal_against_assumption (
146
+ ecx : & mut EvalCtxt < ' _ , D > ,
147
+ source : CandidateSource < I > ,
148
+ goal : Goal < I , Self > ,
149
+ assumption : I :: Clause ,
150
+ then : impl FnOnce ( & mut EvalCtxt < ' _ , D > ) -> QueryResult < I > ,
151
+ ) -> Result < Candidate < I > , NoSolution > {
152
+ Self :: fast_reject_assumption ( ecx, goal, assumption) ?;
153
+
154
+ ecx. probe_trait_candidate ( source) . enter ( |ecx| {
155
+ Self :: match_assumption ( ecx, goal, assumption) ?;
156
+ then ( ecx)
157
+ } )
158
+ }
159
+
160
+ /// Try to reject the assumption based off of simple heuristics, such as [`ty::ClauseKind`]
161
+ /// and [`I::DefId`].
162
+ fn fast_reject_assumption (
163
+ ecx : & mut EvalCtxt < ' _ , D > ,
164
+ goal : Goal < I , Self > ,
165
+ assumption : I :: Clause ,
166
+ ) -> Result < ( ) , NoSolution > ;
167
+
168
+ /// Relate the goal and assumption.
169
+ fn match_assumption (
170
+ ecx : & mut EvalCtxt < ' _ , D > ,
171
+ goal : Goal < I , Self > ,
172
+ assumption : I :: Clause ,
173
+ ) -> Result < ( ) , NoSolution > ;
174
+
121
175
fn consider_impl_candidate (
122
176
ecx : & mut EvalCtxt < ' _ , D > ,
123
177
goal : Goal < I , Self > ,
@@ -508,13 +562,7 @@ where
508
562
candidates : & mut Vec < Candidate < I > > ,
509
563
) {
510
564
for ( i, assumption) in goal. param_env . caller_bounds ( ) . iter ( ) . enumerate ( ) {
511
- candidates. extend ( G :: probe_and_consider_implied_clause (
512
- self ,
513
- CandidateSource :: ParamEnv ( i) ,
514
- goal,
515
- assumption,
516
- [ ] ,
517
- ) ) ;
565
+ candidates. extend ( G :: probe_and_consider_param_env_candidate ( self , goal, assumption, i) ) ;
518
566
}
519
567
}
520
568
@@ -831,11 +879,20 @@ where
831
879
// See `tests/ui/winnowing/norm-where-bound-gt-alias-bound.rs`.
832
880
let mut considered_candidates: Vec < _ > = if candidates_from_env_and_bounds
833
881
. iter ( )
834
- . any ( |c| matches ! ( c. source, CandidateSource :: ParamEnv ( _) ) )
835
- {
882
+ . any ( |c| {
883
+ matches ! (
884
+ c. source,
885
+ CandidateSource :: ParamEnv ( _) | CandidateSource :: GlobalParamEnv ( _)
886
+ )
887
+ } ) {
836
888
candidates_from_env_and_bounds
837
889
. into_iter ( )
838
- . filter ( |c| matches ! ( c. source, CandidateSource :: ParamEnv ( _) ) )
890
+ . filter ( |c| {
891
+ matches ! (
892
+ c. source,
893
+ CandidateSource :: ParamEnv ( _) | CandidateSource :: GlobalParamEnv ( _)
894
+ )
895
+ } )
839
896
. map ( |c| c. result )
840
897
. collect ( )
841
898
} else {
@@ -864,7 +921,12 @@ where
864
921
// (for example, and ideally only) when proving item bounds for an impl.
865
922
let candidates_from_env: Vec < _ > = candidates
866
923
. iter ( )
867
- . filter ( |c| matches ! ( c. source, CandidateSource :: ParamEnv ( _) ) )
924
+ . filter ( |c| {
925
+ matches ! (
926
+ c. source,
927
+ CandidateSource :: ParamEnv ( _) | CandidateSource :: GlobalParamEnv ( _)
928
+ )
929
+ } )
868
930
. map ( |c| c. result )
869
931
. collect ( ) ;
870
932
if let Some ( response) = self . try_merge_responses ( & candidates_from_env) {
@@ -880,4 +942,77 @@ where
880
942
}
881
943
}
882
944
}
945
+
946
+ fn characterize_param_env_assumption (
947
+ & mut self ,
948
+ param_env : I :: ParamEnv ,
949
+ assumption : I :: Clause ,
950
+ idx : usize ,
951
+ ) -> Result < CandidateSource < I > , NoSolution > {
952
+ // FIXME:
953
+ if assumption. has_bound_vars ( ) {
954
+ return Ok ( CandidateSource :: ParamEnv ( idx) ) ;
955
+ }
956
+
957
+ match assumption. visit_with ( & mut FindParamInClause { ecx : self , param_env } ) {
958
+ ControlFlow :: Break ( Err ( NoSolution ) ) => Err ( NoSolution ) ,
959
+ ControlFlow :: Break ( Ok ( ( ) ) ) => Ok ( CandidateSource :: ParamEnv ( idx) ) ,
960
+ ControlFlow :: Continue ( ( ) ) => Ok ( CandidateSource :: GlobalParamEnv ( idx) ) ,
961
+ }
962
+ }
963
+ }
964
+
965
+ struct FindParamInClause < ' a , ' b , D : SolverDelegate < Interner = I > , I : Interner > {
966
+ ecx : & ' a mut EvalCtxt < ' b , D > ,
967
+ param_env : I :: ParamEnv ,
968
+ }
969
+
970
+ impl < D , I > TypeVisitor < I > for FindParamInClause < ' _ , ' _ , D , I >
971
+ where
972
+ D : SolverDelegate < Interner = I > ,
973
+ I : Interner ,
974
+ {
975
+ type Result = ControlFlow < Result < ( ) , NoSolution > > ;
976
+
977
+ fn visit_binder < T : TypeFoldable < I > > ( & mut self , t : & ty:: Binder < I , T > ) -> Self :: Result {
978
+ self . ecx . enter_forall ( t. clone ( ) , |ecx, v| {
979
+ v. visit_with ( & mut FindParamInClause { ecx, param_env : self . param_env } )
980
+ } )
981
+ }
982
+
983
+ fn visit_ty ( & mut self , ty : I :: Ty ) -> Self :: Result {
984
+ let Ok ( ty) = self . ecx . structurally_normalize_ty ( self . param_env , ty) else {
985
+ return ControlFlow :: Break ( Err ( NoSolution ) ) ;
986
+ } ;
987
+ let ty = self . ecx . eager_resolve ( ty) ;
988
+
989
+ if let ty:: Placeholder ( _) = ty. kind ( ) {
990
+ ControlFlow :: Break ( Ok ( ( ) ) )
991
+ } else {
992
+ ty. super_visit_with ( self )
993
+ }
994
+ }
995
+
996
+ fn visit_const ( & mut self , ct : I :: Const ) -> Self :: Result {
997
+ let Ok ( ct) = self . ecx . structurally_normalize_const ( self . param_env , ct) else {
998
+ return ControlFlow :: Break ( Err ( NoSolution ) ) ;
999
+ } ;
1000
+ let ct = self . ecx . eager_resolve ( ct) ;
1001
+
1002
+ if let ty:: ConstKind :: Placeholder ( _) = ct. kind ( ) {
1003
+ ControlFlow :: Break ( Ok ( ( ) ) )
1004
+ } else {
1005
+ ct. super_visit_with ( self )
1006
+ }
1007
+ }
1008
+
1009
+ fn visit_region ( & mut self , r : I :: Region ) -> Self :: Result {
1010
+ match r. kind ( ) {
1011
+ ty:: ReStatic | ty:: ReError ( _) => ControlFlow :: Continue ( ( ) ) ,
1012
+ ty:: ReVar ( _) | ty:: RePlaceholder ( _) => ControlFlow :: Break ( Ok ( ( ) ) ) ,
1013
+ ty:: ReErased | ty:: ReEarlyParam ( _) | ty:: ReLateParam ( _) | ty:: ReBound ( ..) => {
1014
+ unreachable ! ( )
1015
+ }
1016
+ }
1017
+ }
883
1018
}
0 commit comments