@@ -226,7 +226,7 @@ impl<'tcx> UniversalRegions<'tcx> {
226
226
/// known between those regions.
227
227
pub fn new (
228
228
infcx : & BorrowckInferCtxt < ' _ , ' tcx > ,
229
- mir_def : ty :: WithOptConstParam < LocalDefId > ,
229
+ mir_def : LocalDefId ,
230
230
param_env : ty:: ParamEnv < ' tcx > ,
231
231
) -> Self {
232
232
UniversalRegionsBuilder { infcx, mir_def, param_env } . build ( )
@@ -388,7 +388,7 @@ impl<'tcx> UniversalRegions<'tcx> {
388
388
389
389
struct UniversalRegionsBuilder < ' cx , ' tcx > {
390
390
infcx : & ' cx BorrowckInferCtxt < ' cx , ' tcx > ,
391
- mir_def : ty :: WithOptConstParam < LocalDefId > ,
391
+ mir_def : LocalDefId ,
392
392
param_env : ty:: ParamEnv < ' tcx > ,
393
393
}
394
394
@@ -417,12 +417,12 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
417
417
let mut indices = self . compute_indices ( fr_static, defining_ty) ;
418
418
debug ! ( "build: indices={:?}" , indices) ;
419
419
420
- let typeck_root_def_id = self . infcx . tcx . typeck_root_def_id ( self . mir_def . did . to_def_id ( ) ) ;
420
+ let typeck_root_def_id = self . infcx . tcx . typeck_root_def_id ( self . mir_def . to_def_id ( ) ) ;
421
421
422
422
// If this is a 'root' body (not a closure/generator/inline const), then
423
423
// there are no extern regions, so the local regions start at the same
424
424
// position as the (empty) sub-list of extern regions
425
- let first_local_index = if self . mir_def . did . to_def_id ( ) == typeck_root_def_id {
425
+ let first_local_index = if self . mir_def . to_def_id ( ) == typeck_root_def_id {
426
426
first_extern_index
427
427
} else {
428
428
// If this is a closure, generator, or inline-const, then the late-bound regions from the enclosing
@@ -433,7 +433,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
433
433
// }
434
434
for_each_late_bound_region_in_recursive_scope (
435
435
self . infcx . tcx ,
436
- self . infcx . tcx . local_parent ( self . mir_def . did ) ,
436
+ self . infcx . tcx . local_parent ( self . mir_def ) ,
437
437
|r| {
438
438
debug ! ( ?r) ;
439
439
if !indices. indices . contains_key ( & r) {
@@ -462,13 +462,13 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
462
462
463
463
let inputs_and_output = self . infcx . replace_bound_regions_with_nll_infer_vars (
464
464
FR ,
465
- self . mir_def . did ,
465
+ self . mir_def ,
466
466
bound_inputs_and_output,
467
467
& mut indices,
468
468
) ;
469
469
// Converse of above, if this is a function/closure then the late-bound regions declared on its
470
470
// signature are local.
471
- for_each_late_bound_region_in_item ( self . infcx . tcx , self . mir_def . did , |r| {
471
+ for_each_late_bound_region_in_item ( self . infcx . tcx , self . mir_def , |r| {
472
472
debug ! ( ?r) ;
473
473
if !indices. indices . contains_key ( & r) {
474
474
let region_vid = {
@@ -492,7 +492,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
492
492
if self . infcx . tcx . fn_sig ( def_id) . skip_binder ( ) . c_variadic ( ) {
493
493
let va_list_did = self . infcx . tcx . require_lang_item (
494
494
LangItem :: VaList ,
495
- Some ( self . infcx . tcx . def_span ( self . mir_def . did ) ) ,
495
+ Some ( self . infcx . tcx . def_span ( self . mir_def ) ) ,
496
496
) ;
497
497
498
498
let reg_vid = self
@@ -544,11 +544,11 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
544
544
/// see `DefiningTy` for details.
545
545
fn defining_ty ( & self ) -> DefiningTy < ' tcx > {
546
546
let tcx = self . infcx . tcx ;
547
- let typeck_root_def_id = tcx. typeck_root_def_id ( self . mir_def . did . to_def_id ( ) ) ;
547
+ let typeck_root_def_id = tcx. typeck_root_def_id ( self . mir_def . to_def_id ( ) ) ;
548
548
549
- match tcx. hir ( ) . body_owner_kind ( self . mir_def . did ) {
549
+ match tcx. hir ( ) . body_owner_kind ( self . mir_def ) {
550
550
BodyOwnerKind :: Closure | BodyOwnerKind :: Fn => {
551
- let defining_ty = tcx. type_of ( self . mir_def . def_id_for_type_of ( ) ) . subst_identity ( ) ;
551
+ let defining_ty = tcx. type_of ( self . mir_def ) . subst_identity ( ) ;
552
552
553
553
debug ! ( "defining_ty (pre-replacement): {:?}" , defining_ty) ;
554
554
@@ -562,20 +562,20 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
562
562
}
563
563
ty:: FnDef ( def_id, substs) => DefiningTy :: FnDef ( def_id, substs) ,
564
564
_ => span_bug ! (
565
- tcx. def_span( self . mir_def. did ) ,
565
+ tcx. def_span( self . mir_def) ,
566
566
"expected defining type for `{:?}`: `{:?}`" ,
567
- self . mir_def. did ,
567
+ self . mir_def,
568
568
defining_ty
569
569
) ,
570
570
}
571
571
}
572
572
573
573
BodyOwnerKind :: Const | BodyOwnerKind :: Static ( ..) => {
574
574
let identity_substs = InternalSubsts :: identity_for_item ( tcx, typeck_root_def_id) ;
575
- if self . mir_def . did . to_def_id ( ) == typeck_root_def_id {
575
+ if self . mir_def . to_def_id ( ) == typeck_root_def_id {
576
576
let substs =
577
577
self . infcx . replace_free_regions_with_nll_infer_vars ( FR , identity_substs) ;
578
- DefiningTy :: Const ( self . mir_def . did . to_def_id ( ) , substs)
578
+ DefiningTy :: Const ( self . mir_def . to_def_id ( ) , substs)
579
579
} else {
580
580
// FIXME this line creates a dependency between borrowck and typeck.
581
581
//
@@ -587,15 +587,15 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
587
587
// below), so that `type_of(inline_const_def_id).substs(substs)` uses the
588
588
// proper type with NLL infer vars.
589
589
let ty = tcx
590
- . typeck ( self . mir_def . did )
591
- . node_type ( tcx. local_def_id_to_hir_id ( self . mir_def . did ) ) ;
590
+ . typeck ( self . mir_def )
591
+ . node_type ( tcx. local_def_id_to_hir_id ( self . mir_def ) ) ;
592
592
let substs = InlineConstSubsts :: new (
593
593
tcx,
594
594
InlineConstSubstsParts { parent_substs : identity_substs, ty } ,
595
595
)
596
596
. substs ;
597
597
let substs = self . infcx . replace_free_regions_with_nll_infer_vars ( FR , substs) ;
598
- DefiningTy :: InlineConst ( self . mir_def . did . to_def_id ( ) , substs)
598
+ DefiningTy :: InlineConst ( self . mir_def . to_def_id ( ) , substs)
599
599
}
600
600
}
601
601
}
@@ -611,7 +611,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
611
611
defining_ty : DefiningTy < ' tcx > ,
612
612
) -> UniversalRegionIndices < ' tcx > {
613
613
let tcx = self . infcx . tcx ;
614
- let typeck_root_def_id = tcx. typeck_root_def_id ( self . mir_def . did . to_def_id ( ) ) ;
614
+ let typeck_root_def_id = tcx. typeck_root_def_id ( self . mir_def . to_def_id ( ) ) ;
615
615
let identity_substs = InternalSubsts :: identity_for_item ( tcx, typeck_root_def_id) ;
616
616
let fr_substs = match defining_ty {
617
617
DefiningTy :: Closure ( _, substs)
@@ -647,7 +647,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
647
647
let tcx = self . infcx . tcx ;
648
648
match defining_ty {
649
649
DefiningTy :: Closure ( def_id, substs) => {
650
- assert_eq ! ( self . mir_def. did . to_def_id( ) , def_id) ;
650
+ assert_eq ! ( self . mir_def. to_def_id( ) , def_id) ;
651
651
let closure_sig = substs. as_closure ( ) . sig ( ) ;
652
652
let inputs_and_output = closure_sig. inputs_and_output ( ) ;
653
653
let bound_vars = tcx. mk_bound_variable_kinds_from_iter (
@@ -682,7 +682,7 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
682
682
}
683
683
684
684
DefiningTy :: Generator ( def_id, substs, movability) => {
685
- assert_eq ! ( self . mir_def. did . to_def_id( ) , def_id) ;
685
+ assert_eq ! ( self . mir_def. to_def_id( ) , def_id) ;
686
686
let resume_ty = substs. as_generator ( ) . resume_ty ( ) ;
687
687
let output = substs. as_generator ( ) . return_ty ( ) ;
688
688
let generator_ty = tcx. mk_generator ( def_id, substs, movability) ;
@@ -700,14 +700,14 @@ impl<'cx, 'tcx> UniversalRegionsBuilder<'cx, 'tcx> {
700
700
DefiningTy :: Const ( def_id, _) => {
701
701
// For a constant body, there are no inputs, and one
702
702
// "output" (the type of the constant).
703
- assert_eq ! ( self . mir_def. did . to_def_id( ) , def_id) ;
704
- let ty = tcx. type_of ( self . mir_def . def_id_for_type_of ( ) ) . subst_identity ( ) ;
703
+ assert_eq ! ( self . mir_def. to_def_id( ) , def_id) ;
704
+ let ty = tcx. type_of ( self . mir_def ) . subst_identity ( ) ;
705
705
let ty = indices. fold_to_region_vids ( tcx, ty) ;
706
706
ty:: Binder :: dummy ( tcx. mk_type_list ( & [ ty] ) )
707
707
}
708
708
709
709
DefiningTy :: InlineConst ( def_id, substs) => {
710
- assert_eq ! ( self . mir_def. did . to_def_id( ) , def_id) ;
710
+ assert_eq ! ( self . mir_def. to_def_id( ) , def_id) ;
711
711
let ty = substs. as_inline_const ( ) . ty ( ) ;
712
712
ty:: Binder :: dummy ( tcx. mk_type_list ( & [ ty] ) )
713
713
}
0 commit comments