@@ -25,6 +25,7 @@ use rustc_hir::def::{self, *};
25
25
use rustc_hir:: def_id:: { DefId , LocalDefId , CRATE_DEF_ID } ;
26
26
use rustc_metadata:: creader:: LoadedMacro ;
27
27
use rustc_middle:: metadata:: ModChild ;
28
+ use rustc_middle:: ty:: Feed ;
28
29
use rustc_middle:: { bug, ty} ;
29
30
use rustc_span:: hygiene:: { ExpnId , LocalExpnId , MacroKind } ;
30
31
use rustc_span:: symbol:: { kw, sym, Ident , Symbol } ;
@@ -407,7 +408,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
407
408
// Top level use tree reuses the item's id and list stems reuse their parent
408
409
// use tree's ids, so in both cases their visibilities are already filled.
409
410
if nested && !list_stem {
410
- self . r . feed_visibility ( self . r . local_def_id ( id) , vis) ;
411
+ self . r . feed_visibility ( self . r . feed ( id) , vis) ;
411
412
}
412
413
413
414
let mut prefix_iter = parent_prefix
@@ -632,7 +633,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
632
633
& mut self ,
633
634
fields : & [ ast:: FieldDef ] ,
634
635
ident : Ident ,
635
- def_id : LocalDefId ,
636
+ feed : Feed < ' tcx , LocalDefId > ,
636
637
adt_res : Res ,
637
638
adt_vis : ty:: Visibility ,
638
639
adt_span : Span ,
@@ -643,7 +644,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
643
644
644
645
// Define a name in the type namespace if it is not anonymous.
645
646
self . r . define ( parent, ident, TypeNS , ( adt_res, adt_vis, adt_span, expansion) ) ;
646
- self . r . feed_visibility ( def_id, adt_vis) ;
647
+ self . r . feed_visibility ( feed, adt_vis) ;
648
+ let def_id = feed. key ( ) ;
647
649
648
650
// Record field names for error reporting.
649
651
self . insert_field_def_ids ( def_id, fields) ;
@@ -653,14 +655,15 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
653
655
match & field. ty . kind {
654
656
ast:: TyKind :: AnonStruct ( id, nested_fields)
655
657
| ast:: TyKind :: AnonUnion ( id, nested_fields) => {
656
- let local_def_id = self . r . local_def_id ( * id) ;
658
+ let feed = self . r . feed ( * id) ;
659
+ let local_def_id = feed. key ( ) ;
657
660
let def_id = local_def_id. to_def_id ( ) ;
658
661
let def_kind = self . r . tcx . def_kind ( local_def_id) ;
659
662
let res = Res :: Def ( def_kind, def_id) ;
660
663
self . build_reduced_graph_for_struct_variant (
661
664
& nested_fields,
662
665
Ident :: empty ( ) ,
663
- local_def_id ,
666
+ feed ,
664
667
res,
665
668
// Anonymous adts inherit visibility from their parent adts.
666
669
adt_vis,
@@ -680,12 +683,13 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
680
683
let ident = item. ident ;
681
684
let sp = item. span ;
682
685
let vis = self . resolve_visibility ( & item. vis ) ;
683
- let local_def_id = self . r . local_def_id ( item. id ) ;
686
+ let feed = self . r . feed ( item. id ) ;
687
+ let local_def_id = feed. key ( ) ;
684
688
let def_id = local_def_id. to_def_id ( ) ;
685
689
let def_kind = self . r . tcx . def_kind ( def_id) ;
686
690
let res = Res :: Def ( def_kind, def_id) ;
687
691
688
- self . r . feed_visibility ( local_def_id , vis) ;
692
+ self . r . feed_visibility ( feed , vis) ;
689
693
690
694
match item. kind {
691
695
ItemKind :: Use ( ref use_tree) => {
@@ -762,7 +766,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
762
766
self . build_reduced_graph_for_struct_variant (
763
767
vdata. fields ( ) ,
764
768
ident,
765
- local_def_id ,
769
+ feed ,
766
770
res,
767
771
vis,
768
772
sp,
@@ -795,10 +799,11 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
795
799
}
796
800
ret_fields. push ( field_vis. to_def_id ( ) ) ;
797
801
}
798
- let ctor_def_id = self . r . local_def_id ( ctor_node_id) ;
802
+ let feed = self . r . feed ( ctor_node_id) ;
803
+ let ctor_def_id = feed. key ( ) ;
799
804
let ctor_res = self . res ( ctor_def_id) ;
800
805
self . r . define ( parent, ident, ValueNS , ( ctor_res, ctor_vis, sp, expansion) ) ;
801
- self . r . feed_visibility ( ctor_def_id , ctor_vis) ;
806
+ self . r . feed_visibility ( feed , ctor_vis) ;
802
807
// We need the field visibility spans also for the constructor for E0603.
803
808
self . insert_field_visibilities_local ( ctor_def_id. to_def_id ( ) , vdata. fields ( ) ) ;
804
809
@@ -812,7 +817,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
812
817
self . build_reduced_graph_for_struct_variant (
813
818
vdata. fields ( ) ,
814
819
ident,
815
- local_def_id ,
820
+ feed ,
816
821
res,
817
822
vis,
818
823
sp,
@@ -919,7 +924,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
919
924
920
925
/// Constructs the reduced graph for one foreign item.
921
926
fn build_reduced_graph_for_foreign_item ( & mut self , item : & ForeignItem ) {
922
- let local_def_id = self . r . local_def_id ( item. id ) ;
927
+ let feed = self . r . feed ( item. id ) ;
928
+ let local_def_id = feed. key ( ) ;
923
929
let def_id = local_def_id. to_def_id ( ) ;
924
930
let ns = match item. kind {
925
931
ForeignItemKind :: Fn ( ..) => ValueNS ,
@@ -931,7 +937,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
931
937
let expansion = self . parent_scope . expansion ;
932
938
let vis = self . resolve_visibility ( & item. vis ) ;
933
939
self . r . define ( parent, item. ident , ns, ( self . res ( def_id) , vis, item. span , expansion) ) ;
934
- self . r . feed_visibility ( local_def_id , vis) ;
940
+ self . r . feed_visibility ( feed , vis) ;
935
941
}
936
942
937
943
fn build_reduced_graph_for_block ( & mut self , block : & Block ) {
@@ -1218,7 +1224,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1218
1224
fn define_macro ( & mut self , item : & ast:: Item ) -> MacroRulesScopeRef < ' a > {
1219
1225
let parent_scope = self . parent_scope ;
1220
1226
let expansion = parent_scope. expansion ;
1221
- let def_id = self . r . local_def_id ( item. id ) ;
1227
+ let feed = self . r . feed ( item. id ) ;
1228
+ let def_id = feed. key ( ) ;
1222
1229
let ( res, ident, span, macro_rules) = match & item. kind {
1223
1230
ItemKind :: MacroDef ( def) => ( self . res ( def_id) , item. ident , item. span , def. macro_rules ) ,
1224
1231
ItemKind :: Fn ( ..) => match self . proc_macro_stub ( item) {
@@ -1269,7 +1276,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1269
1276
self . r . check_reserved_macro_name ( ident, res) ;
1270
1277
self . insert_unused_macro ( ident, def_id, item. id ) ;
1271
1278
}
1272
- self . r . feed_visibility ( def_id , vis) ;
1279
+ self . r . feed_visibility ( feed , vis) ;
1273
1280
let scope = self . r . arenas . alloc_macro_rules_scope ( MacroRulesScope :: Binding (
1274
1281
self . r . arenas . alloc_macro_rules_binding ( MacroRulesBinding {
1275
1282
parent_macro_rules_scope : parent_scope. macro_rules ,
@@ -1293,7 +1300,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1293
1300
self . insert_unused_macro ( ident, def_id, item. id ) ;
1294
1301
}
1295
1302
self . r . define ( module, ident, MacroNS , ( res, vis, span, expansion) ) ;
1296
- self . r . feed_visibility ( def_id , vis) ;
1303
+ self . r . feed_visibility ( feed , vis) ;
1297
1304
self . parent_scope . macro_rules
1298
1305
}
1299
1306
}
@@ -1385,7 +1392,8 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1385
1392
}
1386
1393
1387
1394
let vis = self . resolve_visibility ( & item. vis ) ;
1388
- let local_def_id = self . r . local_def_id ( item. id ) ;
1395
+ let feed = self . r . feed ( item. id ) ;
1396
+ let local_def_id = feed. key ( ) ;
1389
1397
let def_id = local_def_id. to_def_id ( ) ;
1390
1398
1391
1399
if !( ctxt == AssocCtxt :: Impl
@@ -1395,7 +1403,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1395
1403
// Trait impl item visibility is inherited from its trait when not specified
1396
1404
// explicitly. In that case we cannot determine it here in early resolve,
1397
1405
// so we leave a hole in the visibility table to be filled later.
1398
- self . r . feed_visibility ( local_def_id , vis) ;
1406
+ self . r . feed_visibility ( feed , vis) ;
1399
1407
}
1400
1408
1401
1409
if ctxt == AssocCtxt :: Trait {
@@ -1469,7 +1477,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1469
1477
self . visit_invoc ( sf. id ) ;
1470
1478
} else {
1471
1479
let vis = self . resolve_visibility ( & sf. vis ) ;
1472
- self . r . feed_visibility ( self . r . local_def_id ( sf. id ) , vis) ;
1480
+ self . r . feed_visibility ( self . r . feed ( sf. id ) , vis) ;
1473
1481
visit:: walk_field_def ( self , sf) ;
1474
1482
}
1475
1483
}
@@ -1487,10 +1495,11 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1487
1495
let ident = variant. ident ;
1488
1496
1489
1497
// Define a name in the type namespace.
1490
- let def_id = self . r . local_def_id ( variant. id ) ;
1498
+ let feed = self . r . feed ( variant. id ) ;
1499
+ let def_id = feed. key ( ) ;
1491
1500
let vis = self . resolve_visibility ( & variant. vis ) ;
1492
1501
self . r . define ( parent, ident, TypeNS , ( self . res ( def_id) , vis, variant. span , expn_id) ) ;
1493
- self . r . feed_visibility ( def_id , vis) ;
1502
+ self . r . feed_visibility ( feed , vis) ;
1494
1503
1495
1504
// If the variant is marked as non_exhaustive then lower the visibility to within the crate.
1496
1505
let ctor_vis =
@@ -1502,10 +1511,11 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1502
1511
1503
1512
// Define a constructor name in the value namespace.
1504
1513
if let Some ( ctor_node_id) = variant. data . ctor_node_id ( ) {
1505
- let ctor_def_id = self . r . local_def_id ( ctor_node_id) ;
1514
+ let feed = self . r . feed ( ctor_node_id) ;
1515
+ let ctor_def_id = feed. key ( ) ;
1506
1516
let ctor_res = self . res ( ctor_def_id) ;
1507
1517
self . r . define ( parent, ident, ValueNS , ( ctor_res, ctor_vis, variant. span , expn_id) ) ;
1508
- self . r . feed_visibility ( ctor_def_id , ctor_vis) ;
1518
+ self . r . feed_visibility ( feed , ctor_vis) ;
1509
1519
}
1510
1520
1511
1521
// Record field names for error reporting.
0 commit comments