@@ -28,7 +28,6 @@ use rustc_middle::ty::{self, SymbolName, Ty, TyCtxt};
28
28
use rustc_serialize:: { opaque, Encodable , Encoder } ;
29
29
use rustc_session:: config:: CrateType ;
30
30
use rustc_span:: hygiene:: { ExpnDataEncodeMode , HygieneEncodeContext } ;
31
- use rustc_span:: source_map:: Spanned ;
32
31
use rustc_span:: symbol:: { sym, Ident , Symbol } ;
33
32
use rustc_span:: { self , ExternalSource , FileName , SourceFile , Span , SyntaxContext } ;
34
33
use rustc_target:: abi:: VariantIdx ;
@@ -436,8 +435,7 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
436
435
437
436
fn encode_info_for_items ( & mut self ) {
438
437
let krate = self . tcx . hir ( ) . krate ( ) ;
439
- let vis = Spanned { span : rustc_span:: DUMMY_SP , node : hir:: VisibilityKind :: Public } ;
440
- self . encode_info_for_mod ( hir:: CRATE_HIR_ID , & krate. item . module , & krate. item . attrs , & vis) ;
438
+ self . encode_info_for_mod ( hir:: CRATE_HIR_ID , & krate. item . module , & krate. item . attrs ) ;
441
439
442
440
// Proc-macro crates only export proc-macro items, which are looked
443
441
// up using `proc_macro_data`
@@ -739,12 +737,8 @@ impl EncodeContext<'a, 'tcx> {
739
737
is_non_exhaustive : variant. is_field_list_non_exhaustive ( ) ,
740
738
} ;
741
739
742
- let enum_id = tcx. hir ( ) . local_def_id_to_hir_id ( def. did . expect_local ( ) ) ;
743
- let enum_vis = & tcx. hir ( ) . expect_item ( enum_id) . vis ;
744
-
745
740
record ! ( self . tables. kind[ def_id] <- EntryKind :: Variant ( self . lazy( data) ) ) ;
746
- record ! ( self . tables. visibility[ def_id] <-
747
- ty:: Visibility :: from_hir( enum_vis, enum_id, self . tcx) ) ;
741
+ record ! ( self . tables. visibility[ def_id] <- self . tcx. visibility( def_id) ) ;
748
742
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
749
743
record ! ( self . tables. attributes[ def_id] <- & self . tcx. get_attrs( def_id) [ ..] ) ;
750
744
record ! ( self . tables. expn_that_defined[ def_id] <- self . tcx. expansion_that_defined( def_id) ) ;
@@ -785,17 +779,8 @@ impl EncodeContext<'a, 'tcx> {
785
779
is_non_exhaustive : variant. is_field_list_non_exhaustive ( ) ,
786
780
} ;
787
781
788
- // Variant constructors have the same visibility as the parent enums, unless marked as
789
- // non-exhaustive, in which case they are lowered to `pub(crate)`.
790
- let enum_id = tcx. hir ( ) . local_def_id_to_hir_id ( def. did . expect_local ( ) ) ;
791
- let enum_vis = & tcx. hir ( ) . expect_item ( enum_id) . vis ;
792
- let mut ctor_vis = ty:: Visibility :: from_hir ( enum_vis, enum_id, tcx) ;
793
- if variant. is_field_list_non_exhaustive ( ) && ctor_vis == ty:: Visibility :: Public {
794
- ctor_vis = ty:: Visibility :: Restricted ( DefId :: local ( CRATE_DEF_INDEX ) ) ;
795
- }
796
-
797
782
record ! ( self . tables. kind[ def_id] <- EntryKind :: Variant ( self . lazy( data) ) ) ;
798
- record ! ( self . tables. visibility[ def_id] <- ctor_vis ) ;
783
+ record ! ( self . tables. visibility[ def_id] <- self . tcx . visibility ( def_id ) ) ;
799
784
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
800
785
self . encode_stability ( def_id) ;
801
786
self . encode_deprecation ( def_id) ;
@@ -811,13 +796,7 @@ impl EncodeContext<'a, 'tcx> {
811
796
self . encode_promoted_mir ( def_id. expect_local ( ) ) ;
812
797
}
813
798
814
- fn encode_info_for_mod (
815
- & mut self ,
816
- id : hir:: HirId ,
817
- md : & hir:: Mod < ' _ > ,
818
- attrs : & [ ast:: Attribute ] ,
819
- vis : & hir:: Visibility < ' _ > ,
820
- ) {
799
+ fn encode_info_for_mod ( & mut self , id : hir:: HirId , md : & hir:: Mod < ' _ > , attrs : & [ ast:: Attribute ] ) {
821
800
let tcx = self . tcx ;
822
801
let local_def_id = tcx. hir ( ) . local_def_id ( id) ;
823
802
let def_id = local_def_id. to_def_id ( ) ;
@@ -850,7 +829,7 @@ impl EncodeContext<'a, 'tcx> {
850
829
} ;
851
830
852
831
record ! ( self . tables. kind[ def_id] <- EntryKind :: Mod ( self . lazy( data) ) ) ;
853
- record ! ( self . tables. visibility[ def_id] <- ty :: Visibility :: from_hir ( vis , id , self . tcx) ) ;
832
+ record ! ( self . tables. visibility[ def_id] <- self . tcx. visibility ( def_id ) ) ;
854
833
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
855
834
record ! ( self . tables. attributes[ def_id] <- attrs) ;
856
835
if self . is_proc_macro {
@@ -881,7 +860,7 @@ impl EncodeContext<'a, 'tcx> {
881
860
let variant_data = tcx. hir ( ) . expect_variant_data ( variant_id) ;
882
861
883
862
record ! ( self . tables. kind[ def_id] <- EntryKind :: Field ) ;
884
- record ! ( self . tables. visibility[ def_id] <- field . vis ) ;
863
+ record ! ( self . tables. visibility[ def_id] <- self . tcx . visibility ( def_id ) ) ;
885
864
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
886
865
record ! ( self . tables. attributes[ def_id] <- variant_data. fields( ) [ field_index] . attrs) ;
887
866
record ! ( self . tables. expn_that_defined[ def_id] <- self . tcx. expansion_that_defined( def_id) ) ;
@@ -906,25 +885,8 @@ impl EncodeContext<'a, 'tcx> {
906
885
is_non_exhaustive : variant. is_field_list_non_exhaustive ( ) ,
907
886
} ;
908
887
909
- let struct_id = tcx. hir ( ) . local_def_id_to_hir_id ( adt_def. did . expect_local ( ) ) ;
910
- let struct_vis = & tcx. hir ( ) . expect_item ( struct_id) . vis ;
911
- let mut ctor_vis = ty:: Visibility :: from_hir ( struct_vis, struct_id, tcx) ;
912
- for field in & variant. fields {
913
- if ctor_vis. is_at_least ( field. vis , tcx) {
914
- ctor_vis = field. vis ;
915
- }
916
- }
917
-
918
- // If the structure is marked as non_exhaustive then lower the visibility
919
- // to within the crate.
920
- if adt_def. non_enum_variant ( ) . is_field_list_non_exhaustive ( )
921
- && ctor_vis == ty:: Visibility :: Public
922
- {
923
- ctor_vis = ty:: Visibility :: Restricted ( DefId :: local ( CRATE_DEF_INDEX ) ) ;
924
- }
925
-
926
888
record ! ( self . tables. kind[ def_id] <- EntryKind :: Struct ( self . lazy( data) , adt_def. repr) ) ;
927
- record ! ( self . tables. visibility[ def_id] <- ctor_vis ) ;
889
+ record ! ( self . tables. visibility[ def_id] <- self . tcx . visibility ( def_id ) ) ;
928
890
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
929
891
record ! ( self . tables. expn_that_defined[ def_id] <- self . tcx. expansion_that_defined( def_id) ) ;
930
892
self . encode_stability ( def_id) ;
@@ -1030,7 +992,7 @@ impl EncodeContext<'a, 'tcx> {
1030
992
EntryKind :: AssocType ( container)
1031
993
}
1032
994
} ) ;
1033
- record ! ( self . tables. visibility[ def_id] <- trait_item . vis ) ;
995
+ record ! ( self . tables. visibility[ def_id] <- self . tcx . visibility ( def_id ) ) ;
1034
996
record ! ( self . tables. span[ def_id] <- ast_item. span) ;
1035
997
record ! ( self . tables. attributes[ def_id] <- ast_item. attrs) ;
1036
998
self . encode_ident_span ( def_id, ast_item. ident ) ;
@@ -1112,7 +1074,7 @@ impl EncodeContext<'a, 'tcx> {
1112
1074
}
1113
1075
ty:: AssocKind :: Type => EntryKind :: AssocType ( container)
1114
1076
} ) ;
1115
- record ! ( self . tables. visibility[ def_id] <- impl_item . vis ) ;
1077
+ record ! ( self . tables. visibility[ def_id] <- self . tcx . visibility ( def_id ) ) ;
1116
1078
record ! ( self . tables. span[ def_id] <- ast_item. span) ;
1117
1079
record ! ( self . tables. attributes[ def_id] <- ast_item. attrs) ;
1118
1080
self . encode_ident_span ( def_id, impl_item. ident ) ;
@@ -1261,7 +1223,7 @@ impl EncodeContext<'a, 'tcx> {
1261
1223
EntryKind :: Fn ( self . lazy( data) )
1262
1224
}
1263
1225
hir:: ItemKind :: Mod ( ref m) => {
1264
- return self . encode_info_for_mod( item. hir_id, m, & item. attrs, & item . vis ) ;
1226
+ return self . encode_info_for_mod( item. hir_id, m, & item. attrs) ;
1265
1227
}
1266
1228
hir:: ItemKind :: ForeignMod ( _) => EntryKind :: ForeignMod ,
1267
1229
hir:: ItemKind :: GlobalAsm ( ..) => EntryKind :: GlobalAsm ,
@@ -1352,8 +1314,7 @@ impl EncodeContext<'a, 'tcx> {
1352
1314
hir:: ItemKind :: ExternCrate ( _) |
1353
1315
hir:: ItemKind :: Use ( ..) => bug!( "cannot encode info for item {:?}" , item) ,
1354
1316
} ) ;
1355
- record ! ( self . tables. visibility[ def_id] <-
1356
- ty:: Visibility :: from_hir( & item. vis, item. hir_id, tcx) ) ;
1317
+ record ! ( self . tables. visibility[ def_id] <- self . tcx. visibility( def_id) ) ;
1357
1318
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
1358
1319
record ! ( self . tables. attributes[ def_id] <- item. attrs) ;
1359
1320
record ! ( self . tables. expn_that_defined[ def_id] <- self . tcx. expansion_that_defined( def_id) ) ;
@@ -1470,7 +1431,7 @@ impl EncodeContext<'a, 'tcx> {
1470
1431
fn encode_info_for_macro_def ( & mut self , macro_def : & hir:: MacroDef < ' _ > ) {
1471
1432
let def_id = self . tcx . hir ( ) . local_def_id ( macro_def. hir_id ) . to_def_id ( ) ;
1472
1433
record ! ( self . tables. kind[ def_id] <- EntryKind :: MacroDef ( self . lazy( macro_def. ast. clone( ) ) ) ) ;
1473
- record ! ( self . tables. visibility[ def_id] <- ty :: Visibility :: Public ) ;
1434
+ record ! ( self . tables. visibility[ def_id] <- self . tcx . visibility ( def_id ) ) ;
1474
1435
record ! ( self . tables. span[ def_id] <- macro_def. span) ;
1475
1436
record ! ( self . tables. attributes[ def_id] <- macro_def. attrs) ;
1476
1437
self . encode_ident_span ( def_id, macro_def. ident ) ;
@@ -1480,7 +1441,6 @@ impl EncodeContext<'a, 'tcx> {
1480
1441
1481
1442
fn encode_info_for_generic_param ( & mut self , def_id : DefId , kind : EntryKind , encode_type : bool ) {
1482
1443
record ! ( self . tables. kind[ def_id] <- kind) ;
1483
- record ! ( self . tables. visibility[ def_id] <- ty:: Visibility :: Public ) ;
1484
1444
record ! ( self . tables. span[ def_id] <- self . tcx. def_span( def_id) ) ;
1485
1445
if encode_type {
1486
1446
self . encode_item_type ( def_id) ;
@@ -1505,7 +1465,6 @@ impl EncodeContext<'a, 'tcx> {
1505
1465
1506
1466
_ => bug!( "closure that is neither generator nor closure" ) ,
1507
1467
} ) ;
1508
- record ! ( self . tables. visibility[ def_id. to_def_id( ) ] <- ty:: Visibility :: Public ) ;
1509
1468
record ! ( self . tables. span[ def_id. to_def_id( ) ] <- self . tcx. def_span( def_id) ) ;
1510
1469
record ! ( self . tables. attributes[ def_id. to_def_id( ) ] <- & self . tcx. get_attrs( def_id. to_def_id( ) ) [ ..] ) ;
1511
1470
self . encode_item_type ( def_id. to_def_id ( ) ) ;
@@ -1525,7 +1484,6 @@ impl EncodeContext<'a, 'tcx> {
1525
1484
let qualifs = self . tcx . mir_const_qualif ( def_id) ;
1526
1485
1527
1486
record ! ( self . tables. kind[ def_id. to_def_id( ) ] <- EntryKind :: AnonConst ( qualifs, const_data) ) ;
1528
- record ! ( self . tables. visibility[ def_id. to_def_id( ) ] <- ty:: Visibility :: Public ) ;
1529
1487
record ! ( self . tables. span[ def_id. to_def_id( ) ] <- self . tcx. def_span( def_id) ) ;
1530
1488
self . encode_item_type ( def_id. to_def_id ( ) ) ;
1531
1489
self . encode_generics ( def_id. to_def_id ( ) ) ;
@@ -1762,8 +1720,7 @@ impl EncodeContext<'a, 'tcx> {
1762
1720
hir:: ForeignItemKind :: Static ( _, hir:: Mutability :: Not ) => EntryKind :: ForeignImmStatic ,
1763
1721
hir:: ForeignItemKind :: Type => EntryKind :: ForeignType ,
1764
1722
} ) ;
1765
- record ! ( self . tables. visibility[ def_id] <-
1766
- ty:: Visibility :: from_hir( & nitem. vis, nitem. hir_id, self . tcx) ) ;
1723
+ record ! ( self . tables. visibility[ def_id] <- self . tcx. visibility( def_id) ) ;
1767
1724
record ! ( self . tables. span[ def_id] <- nitem. span) ;
1768
1725
record ! ( self . tables. attributes[ def_id] <- nitem. attrs) ;
1769
1726
self . encode_ident_span ( def_id, nitem. ident ) ;
0 commit comments