@@ -30,7 +30,7 @@ use rustc_middle::metadata::ModChild;
30
30
use rustc_middle:: ty:: { self , DefIdTree } ;
31
31
use rustc_session:: cstore:: CrateStore ;
32
32
use rustc_span:: hygiene:: { ExpnId , LocalExpnId , MacroKind } ;
33
- use rustc_span:: source_map:: { respan, Spanned } ;
33
+ use rustc_span:: source_map:: respan;
34
34
use rustc_span:: symbol:: { kw, sym, Ident , Symbol } ;
35
35
use rustc_span:: Span ;
36
36
@@ -329,10 +329,12 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
329
329
. iter ( )
330
330
. map ( |field| respan ( field. span , field. ident . map_or ( kw:: Empty , |ident| ident. name ) ) )
331
331
. collect ( ) ;
332
- self . insert_field_names ( def_id, field_names) ;
332
+ self . r . field_names . insert ( def_id, field_names) ;
333
333
}
334
334
335
- fn insert_field_names ( & mut self , def_id : DefId , field_names : Vec < Spanned < Symbol > > ) {
335
+ fn insert_field_names_extern ( & mut self , def_id : DefId ) {
336
+ let field_names =
337
+ self . r . cstore ( ) . struct_field_names_untracked ( def_id, self . r . session ) . collect ( ) ;
336
338
self . r . field_names . insert ( def_id, field_names) ;
337
339
}
338
340
@@ -995,8 +997,6 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
995
997
let cstore = self . r . cstore ( ) ;
996
998
match res {
997
999
Res :: Def ( DefKind :: Struct , def_id) => {
998
- let field_names =
999
- cstore. struct_field_names_untracked ( def_id, self . r . session ) . collect ( ) ;
1000
1000
if let Some ( ( ctor_kind, ctor_def_id) ) = cstore. ctor_untracked ( def_id) {
1001
1001
let ctor_res = Res :: Def ( DefKind :: Ctor ( CtorOf :: Struct , ctor_kind) , ctor_def_id) ;
1002
1002
let ctor_vis = cstore. visibility_untracked ( ctor_def_id) ;
@@ -1006,13 +1006,9 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
1006
1006
. struct_constructors
1007
1007
. insert ( def_id, ( ctor_res, ctor_vis, field_visibilities) ) ;
1008
1008
}
1009
- self . insert_field_names ( def_id, field_names) ;
1010
- }
1011
- Res :: Def ( DefKind :: Union , def_id) => {
1012
- let field_names =
1013
- cstore. struct_field_names_untracked ( def_id, self . r . session ) . collect ( ) ;
1014
- self . insert_field_names ( def_id, field_names) ;
1009
+ self . insert_field_names_extern ( def_id)
1015
1010
}
1011
+ Res :: Def ( DefKind :: Union , def_id) => self . insert_field_names_extern ( def_id) ,
1016
1012
Res :: Def ( DefKind :: AssocFn , def_id) => {
1017
1013
if cstore. fn_has_self_parameter_untracked ( def_id, self . r . session ) {
1018
1014
self . r . has_self . insert ( def_id) ;
@@ -1514,20 +1510,16 @@ impl<'a, 'b> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b> {
1514
1510
} ;
1515
1511
1516
1512
// Define a constructor name in the value namespace.
1517
- let fields_id = if let Some ( ( ctor_kind, ctor_node_id) ) = CtorKind :: from_ast ( & variant. data ) {
1513
+ if let Some ( ( ctor_kind, ctor_node_id) ) = CtorKind :: from_ast ( & variant. data ) {
1518
1514
let ctor_def_id = self . r . local_def_id ( ctor_node_id) ;
1519
1515
let ctor_res =
1520
1516
Res :: Def ( DefKind :: Ctor ( CtorOf :: Variant , ctor_kind) , ctor_def_id. to_def_id ( ) ) ;
1521
1517
self . r . define ( parent, ident, ValueNS , ( ctor_res, ctor_vis, variant. span , expn_id) ) ;
1522
1518
self . r . visibilities . insert ( ctor_def_id, ctor_vis) ;
1523
- ctor_def_id
1524
- } else {
1525
- def_id
1526
- } ;
1519
+ }
1527
1520
1528
1521
// Record field names for error reporting.
1529
- // FIXME: Always use non-ctor id as the key.
1530
- self . insert_field_names_local ( fields_id. to_def_id ( ) , & variant. data ) ;
1522
+ self . insert_field_names_local ( def_id. to_def_id ( ) , & variant. data ) ;
1531
1523
1532
1524
visit:: walk_variant ( self , variant) ;
1533
1525
}
0 commit comments