@@ -36,11 +36,11 @@ where
36
36
{
37
37
fn self_ty ( self ) -> I :: Ty ;
38
38
39
- fn trait_ref ( self , tcx : I ) -> ty:: TraitRef < I > ;
39
+ fn trait_ref ( self , cx : I ) -> ty:: TraitRef < I > ;
40
40
41
- fn with_self_ty ( self , tcx : I , self_ty : I :: Ty ) -> Self ;
41
+ fn with_self_ty ( self , cx : I , self_ty : I :: Ty ) -> Self ;
42
42
43
- fn trait_def_id ( self , tcx : I ) -> I :: DefId ;
43
+ fn trait_def_id ( self , cx : I ) -> I :: DefId ;
44
44
45
45
/// Try equating an assumption predicate against a goal's predicate. If it
46
46
/// holds, then execute the `then` callback, which should do any additional
82
82
assumption : I :: Clause ,
83
83
) -> Result < Candidate < I > , NoSolution > {
84
84
Self :: probe_and_match_goal_against_assumption ( ecx, source, goal, assumption, |ecx| {
85
- let tcx = ecx. cx ( ) ;
85
+ let cx = ecx. cx ( ) ;
86
86
let ty:: Dynamic ( bounds, _, _) = goal. predicate . self_ty ( ) . kind ( ) else {
87
87
panic ! ( "expected object type in `probe_and_consider_object_bound_candidate`" ) ;
88
88
} ;
91
91
structural_traits:: predicates_for_object_candidate (
92
92
ecx,
93
93
goal. param_env ,
94
- goal. predicate . trait_ref ( tcx ) ,
94
+ goal. predicate . trait_ref ( cx ) ,
95
95
bounds,
96
96
) ,
97
97
) ;
@@ -340,15 +340,15 @@ where
340
340
goal : Goal < I , G > ,
341
341
candidates : & mut Vec < Candidate < I > > ,
342
342
) {
343
- let tcx = self . cx ( ) ;
344
- tcx . for_each_relevant_impl (
345
- goal. predicate . trait_def_id ( tcx ) ,
343
+ let cx = self . cx ( ) ;
344
+ cx . for_each_relevant_impl (
345
+ goal. predicate . trait_def_id ( cx ) ,
346
346
goal. predicate . self_ty ( ) ,
347
347
|impl_def_id| {
348
348
// For every `default impl`, there's always a non-default `impl`
349
349
// that will *also* apply. There's no reason to register a candidate
350
350
// for this impl, since it is *not* proof that the trait goal holds.
351
- if tcx . impl_is_default ( impl_def_id) {
351
+ if cx . impl_is_default ( impl_def_id) {
352
352
return ;
353
353
}
354
354
@@ -366,8 +366,8 @@ where
366
366
goal : Goal < I , G > ,
367
367
candidates : & mut Vec < Candidate < I > > ,
368
368
) {
369
- let tcx = self . cx ( ) ;
370
- let trait_def_id = goal. predicate . trait_def_id ( tcx ) ;
369
+ let cx = self . cx ( ) ;
370
+ let trait_def_id = goal. predicate . trait_def_id ( cx ) ;
371
371
372
372
// N.B. When assembling built-in candidates for lang items that are also
373
373
// `auto` traits, then the auto trait candidate that is assembled in
@@ -378,47 +378,47 @@ where
378
378
// `solve::trait_goals` instead.
379
379
let result = if let Err ( guar) = goal. predicate . error_reported ( ) {
380
380
G :: consider_error_guaranteed_candidate ( self , guar)
381
- } else if tcx . trait_is_auto ( trait_def_id) {
381
+ } else if cx . trait_is_auto ( trait_def_id) {
382
382
G :: consider_auto_trait_candidate ( self , goal)
383
- } else if tcx . trait_is_alias ( trait_def_id) {
383
+ } else if cx . trait_is_alias ( trait_def_id) {
384
384
G :: consider_trait_alias_candidate ( self , goal)
385
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Sized ) {
385
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Sized ) {
386
386
G :: consider_builtin_sized_candidate ( self , goal)
387
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Copy )
388
- || tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Clone )
387
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Copy )
388
+ || cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Clone )
389
389
{
390
390
G :: consider_builtin_copy_clone_candidate ( self , goal)
391
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: PointerLike ) {
391
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: PointerLike ) {
392
392
G :: consider_builtin_pointer_like_candidate ( self , goal)
393
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: FnPtrTrait ) {
393
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: FnPtrTrait ) {
394
394
G :: consider_builtin_fn_ptr_trait_candidate ( self , goal)
395
395
} else if let Some ( kind) = self . cx ( ) . fn_trait_kind_from_def_id ( trait_def_id) {
396
396
G :: consider_builtin_fn_trait_candidates ( self , goal, kind)
397
397
} else if let Some ( kind) = self . cx ( ) . async_fn_trait_kind_from_def_id ( trait_def_id) {
398
398
G :: consider_builtin_async_fn_trait_candidates ( self , goal, kind)
399
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: AsyncFnKindHelper ) {
399
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: AsyncFnKindHelper ) {
400
400
G :: consider_builtin_async_fn_kind_helper_candidate ( self , goal)
401
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Tuple ) {
401
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Tuple ) {
402
402
G :: consider_builtin_tuple_candidate ( self , goal)
403
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: PointeeTrait ) {
403
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: PointeeTrait ) {
404
404
G :: consider_builtin_pointee_candidate ( self , goal)
405
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Future ) {
405
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Future ) {
406
406
G :: consider_builtin_future_candidate ( self , goal)
407
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Iterator ) {
407
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Iterator ) {
408
408
G :: consider_builtin_iterator_candidate ( self , goal)
409
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: FusedIterator ) {
409
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: FusedIterator ) {
410
410
G :: consider_builtin_fused_iterator_candidate ( self , goal)
411
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: AsyncIterator ) {
411
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: AsyncIterator ) {
412
412
G :: consider_builtin_async_iterator_candidate ( self , goal)
413
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Coroutine ) {
413
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Coroutine ) {
414
414
G :: consider_builtin_coroutine_candidate ( self , goal)
415
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: DiscriminantKind ) {
415
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: DiscriminantKind ) {
416
416
G :: consider_builtin_discriminant_kind_candidate ( self , goal)
417
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: AsyncDestruct ) {
417
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: AsyncDestruct ) {
418
418
G :: consider_builtin_async_destruct_candidate ( self , goal)
419
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Destruct ) {
419
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Destruct ) {
420
420
G :: consider_builtin_destruct_candidate ( self , goal)
421
- } else if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: TransmuteTrait ) {
421
+ } else if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: TransmuteTrait ) {
422
422
G :: consider_builtin_transmute_candidate ( self , goal)
423
423
} else {
424
424
Err ( NoSolution )
@@ -428,7 +428,7 @@ where
428
428
429
429
// There may be multiple unsize candidates for a trait with several supertraits:
430
430
// `trait Foo: Bar<A> + Bar<B>` and `dyn Foo: Unsize<dyn Bar<_>>`
431
- if tcx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Unsize ) {
431
+ if cx . is_lang_item ( trait_def_id, TraitSolverLangItem :: Unsize ) {
432
432
candidates. extend ( G :: consider_structural_builtin_unsize_candidates ( self , goal) ) ;
433
433
}
434
434
}
@@ -557,8 +557,8 @@ where
557
557
goal : Goal < I , G > ,
558
558
candidates : & mut Vec < Candidate < I > > ,
559
559
) {
560
- let tcx = self . cx ( ) ;
561
- if !tcx . trait_may_be_implemented_via_object ( goal. predicate . trait_def_id ( tcx ) ) {
560
+ let cx = self . cx ( ) ;
561
+ if !cx . trait_may_be_implemented_via_object ( goal. predicate . trait_def_id ( cx ) ) {
562
562
return ;
563
563
}
564
564
@@ -596,7 +596,7 @@ where
596
596
} ;
597
597
598
598
// Do not consider built-in object impls for non-object-safe types.
599
- if bounds. principal_def_id ( ) . is_some_and ( |def_id| !tcx . trait_is_object_safe ( def_id) ) {
599
+ if bounds. principal_def_id ( ) . is_some_and ( |def_id| !cx . trait_is_object_safe ( def_id) ) {
600
600
return ;
601
601
}
602
602
@@ -614,7 +614,7 @@ where
614
614
self ,
615
615
CandidateSource :: BuiltinImpl ( BuiltinImplSource :: Misc ) ,
616
616
goal,
617
- bound. with_self_ty ( tcx , self_ty) ,
617
+ bound. with_self_ty ( cx , self_ty) ,
618
618
) ) ;
619
619
}
620
620
}
@@ -624,14 +624,13 @@ where
624
624
// since we don't need to look at any supertrait or anything if we are doing
625
625
// a projection goal.
626
626
if let Some ( principal) = bounds. principal ( ) {
627
- let principal_trait_ref = principal. with_self_ty ( tcx, self_ty) ;
628
- for ( idx, assumption) in D :: elaborate_supertraits ( tcx, principal_trait_ref) . enumerate ( )
629
- {
627
+ let principal_trait_ref = principal. with_self_ty ( cx, self_ty) ;
628
+ for ( idx, assumption) in D :: elaborate_supertraits ( cx, principal_trait_ref) . enumerate ( ) {
630
629
candidates. extend ( G :: probe_and_consider_object_bound_candidate (
631
630
self ,
632
631
CandidateSource :: BuiltinImpl ( BuiltinImplSource :: Object ( idx) ) ,
633
632
goal,
634
- assumption. upcast ( tcx ) ,
633
+ assumption. upcast ( cx ) ,
635
634
) ) ;
636
635
}
637
636
}
@@ -649,11 +648,11 @@ where
649
648
goal : Goal < I , G > ,
650
649
candidates : & mut Vec < Candidate < I > > ,
651
650
) {
652
- let tcx = self . cx ( ) ;
651
+ let cx = self . cx ( ) ;
653
652
654
653
candidates. extend ( self . probe_trait_candidate ( CandidateSource :: CoherenceUnknowable ) . enter (
655
654
|ecx| {
656
- let trait_ref = goal. predicate . trait_ref ( tcx ) ;
655
+ let trait_ref = goal. predicate . trait_ref ( cx ) ;
657
656
if ecx. trait_ref_is_knowable ( goal. param_env , trait_ref) ? {
658
657
Err ( NoSolution )
659
658
} else {
@@ -678,9 +677,9 @@ where
678
677
goal : Goal < I , G > ,
679
678
candidates : & mut Vec < Candidate < I > > ,
680
679
) {
681
- let tcx = self . cx ( ) ;
680
+ let cx = self . cx ( ) ;
682
681
let trait_goal: Goal < I , ty:: TraitPredicate < I > > =
683
- goal. with ( tcx , goal. predicate . trait_ref ( tcx ) ) ;
682
+ goal. with ( cx , goal. predicate . trait_ref ( cx ) ) ;
684
683
685
684
let mut trait_candidates_from_env = vec ! [ ] ;
686
685
self . probe ( |_| ProbeKind :: ShadowedEnvProbing ) . enter ( |ecx| {
0 commit comments