@@ -19,6 +19,7 @@ use super::PredicateObligation;
19
19
use super :: SelectionContext ;
20
20
use super :: SelectionError ;
21
21
use super :: VtableClosureData ;
22
+ use super :: VtableFnPointerData ;
22
23
use super :: VtableImplData ;
23
24
use super :: util;
24
25
@@ -158,7 +159,7 @@ enum ProjectionTyCandidate<'tcx> {
158
159
Closure ( VtableClosureData < ' tcx , PredicateObligation < ' tcx > > ) ,
159
160
160
161
// fn pointer return type
161
- FnPointer ( Ty < ' tcx > ) ,
162
+ FnPointer ( VtableFnPointerData < ' tcx , PredicateObligation < ' tcx > > ) ,
162
163
}
163
164
164
165
struct ProjectionTyCandidateSet < ' tcx > {
@@ -218,10 +219,7 @@ fn project_and_unify_type<'cx, 'gcx, 'tcx>(
218
219
obligation. cause . clone ( ) ,
219
220
obligation. recursion_depth ) {
220
221
Some ( n) => n,
221
- None => {
222
- consider_unification_despite_ambiguity ( selcx, obligation) ;
223
- return Ok ( None ) ;
224
- }
222
+ None => return Ok ( None ) ,
225
223
} ;
226
224
227
225
debug ! ( "project_and_unify_type: normalized_ty={:?} obligations={:?}" ,
@@ -240,59 +238,6 @@ fn project_and_unify_type<'cx, 'gcx, 'tcx>(
240
238
}
241
239
}
242
240
243
- fn consider_unification_despite_ambiguity < ' cx , ' gcx , ' tcx > (
244
- selcx : & mut SelectionContext < ' cx , ' gcx , ' tcx > ,
245
- obligation : & ProjectionObligation < ' tcx > )
246
- {
247
- debug ! ( "consider_unification_despite_ambiguity(obligation={:?})" ,
248
- obligation) ;
249
-
250
- let def_id = obligation. predicate . projection_ty . trait_ref . def_id ;
251
- match selcx. tcx ( ) . lang_items . fn_trait_kind ( def_id) {
252
- Some ( _) => { }
253
- None => { return ; }
254
- }
255
-
256
- let infcx = selcx. infcx ( ) ;
257
- let self_ty = obligation. predicate . projection_ty . trait_ref . self_ty ( ) ;
258
- let self_ty = infcx. shallow_resolve ( self_ty) ;
259
- debug ! ( "consider_unification_despite_ambiguity: self_ty.sty={:?}" ,
260
- self_ty. sty) ;
261
- match self_ty. sty {
262
- ty:: TyClosure ( closure_def_id, substs) => {
263
- let closure_typer = selcx. closure_typer ( ) ;
264
- let closure_type = closure_typer. closure_type ( closure_def_id, substs) ;
265
- let ty:: Binder ( ( _, ret_type) ) =
266
- infcx. tcx . closure_trait_ref_and_return_type ( def_id,
267
- self_ty,
268
- & closure_type. sig ,
269
- util:: TupleArgumentsFlag :: No ) ;
270
- // We don't have to normalize the return type here - this is only
271
- // reached for TyClosure: Fn inputs where the closure kind is
272
- // still unknown, which should only occur in typeck where the
273
- // closure type is already normalized.
274
- let ( ret_type, _) =
275
- infcx. replace_late_bound_regions_with_fresh_var (
276
- obligation. cause . span ,
277
- infer:: AssocTypeProjection ( obligation. predicate . projection_ty . item_name ) ,
278
- & ty:: Binder ( ret_type) ) ;
279
-
280
- debug ! ( "consider_unification_despite_ambiguity: ret_type={:?}" ,
281
- ret_type) ;
282
- let origin = TypeOrigin :: RelateOutputImplTypes ( obligation. cause . span ) ;
283
- let obligation_ty = obligation. predicate . ty ;
284
- match infcx. eq_types ( true , origin, obligation_ty, ret_type) {
285
- Ok ( InferOk { obligations, .. } ) => {
286
- // FIXME(#32730) propagate obligations
287
- assert ! ( obligations. is_empty( ) ) ;
288
- }
289
- Err ( _) => { /* ignore errors */ }
290
- }
291
- }
292
- _ => { }
293
- }
294
- }
295
-
296
241
/// Normalizes any associated type projections in `value`, replacing
297
242
/// them with a fully resolved type where possible. The return value
298
243
/// combines the normalized result and any additional obligations that
@@ -929,9 +874,9 @@ fn assemble_candidates_from_impls<'cx, 'gcx, 'tcx>(
929
874
candidate_set. vec . push (
930
875
ProjectionTyCandidate :: Closure ( data) ) ;
931
876
}
932
- super :: VtableFnPointer ( fn_type ) => {
877
+ super :: VtableFnPointer ( data ) => {
933
878
candidate_set. vec . push (
934
- ProjectionTyCandidate :: FnPointer ( fn_type ) ) ;
879
+ ProjectionTyCandidate :: FnPointer ( data ) ) ;
935
880
}
936
881
super :: VtableParam ( ..) => {
937
882
// This case tell us nothing about the value of an
@@ -997,19 +942,22 @@ fn confirm_candidate<'cx, 'gcx, 'tcx>(
997
942
confirm_closure_candidate ( selcx, obligation, closure_vtable)
998
943
}
999
944
1000
- ProjectionTyCandidate :: FnPointer ( fn_type ) => {
1001
- confirm_fn_pointer_candidate ( selcx, obligation, fn_type )
945
+ ProjectionTyCandidate :: FnPointer ( fn_pointer_vtable ) => {
946
+ confirm_fn_pointer_candidate ( selcx, obligation, fn_pointer_vtable )
1002
947
}
1003
948
}
1004
949
}
1005
950
1006
951
fn confirm_fn_pointer_candidate < ' cx , ' gcx , ' tcx > (
1007
952
selcx : & mut SelectionContext < ' cx , ' gcx , ' tcx > ,
1008
953
obligation : & ProjectionTyObligation < ' tcx > ,
1009
- fn_type : Ty < ' tcx > )
954
+ fn_pointer_vtable : VtableFnPointerData < ' tcx , PredicateObligation < ' tcx > > )
1010
955
-> ( Ty < ' tcx > , Vec < PredicateObligation < ' tcx > > )
1011
956
{
1012
- let fn_type = selcx. infcx ( ) . shallow_resolve ( fn_type) ;
957
+ // FIXME(#32730) propagate obligations (fn pointer vtable nested obligations ONLY come from
958
+ // unification in inference)
959
+ assert ! ( fn_pointer_vtable. nested. is_empty( ) ) ;
960
+ let fn_type = selcx. infcx ( ) . shallow_resolve ( fn_pointer_vtable. fn_ty ) ;
1013
961
let sig = fn_type. fn_sig ( ) ;
1014
962
confirm_callable_candidate ( selcx, obligation, sig, util:: TupleArgumentsFlag :: Yes )
1015
963
}
0 commit comments