]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/build_reduced_graph.rs
51089f73c28144ed6fa5e270c7307079191fdfb3
[rust.git] / src / librustc_resolve / build_reduced_graph.rs
1 //! After we obtain a fresh AST fragment from a macro, code in this module helps to integrate
2 //! that fragment into the module structures that are already partially built.
3 //!
4 //! Items from the fragment are placed into modules,
5 //! unexpanded macros in the fragment are visited and registered.
6 //! Imports are also considered items and placed into modules here, but not resolved yet.
7
8 use crate::def_collector::collect_definitions;
9 use crate::imports::{Import, ImportKind};
10 use crate::macros::{MacroRulesBinding, MacroRulesScope};
11 use crate::Namespace::{self, MacroNS, TypeNS, ValueNS};
12 use crate::{CrateLint, Determinacy, PathResult, ResolutionError, VisResolutionError};
13 use crate::{
14     ExternPreludeEntry, ModuleOrUniformRoot, ParentScope, PerNS, Resolver, ResolverArenas,
15 };
16 use crate::{Module, ModuleData, ModuleKind, NameBinding, NameBindingKind, Segment, ToNameBinding};
17
18 use rustc_ast::ast::{self, Block, ForeignItem, ForeignItemKind, Item, ItemKind, NodeId};
19 use rustc_ast::ast::{AssocItem, AssocItemKind, MetaItemKind, StmtKind};
20 use rustc_ast::ast::{Ident, Name};
21 use rustc_ast::token::{self, Token};
22 use rustc_ast::visit::{self, AssocCtxt, Visitor};
23 use rustc_attr as attr;
24 use rustc_data_structures::sync::Lrc;
25 use rustc_errors::{struct_span_err, Applicability};
26 use rustc_expand::base::SyntaxExtension;
27 use rustc_expand::expand::AstFragment;
28 use rustc_hir::def::{self, *};
29 use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
30 use rustc_metadata::creader::LoadedMacro;
31 use rustc_middle::bug;
32 use rustc_middle::hir::exports::Export;
33 use rustc_middle::middle::cstore::CrateStore;
34 use rustc_middle::ty;
35 use rustc_span::hygiene::{ExpnId, MacroKind};
36 use rustc_span::source_map::{respan, Spanned};
37 use rustc_span::symbol::{kw, sym};
38 use rustc_span::{Span, DUMMY_SP};
39
40 use log::debug;
41 use std::cell::Cell;
42 use std::ptr;
43
44 type Res = def::Res<NodeId>;
45
46 impl<'a> ToNameBinding<'a> for (Module<'a>, ty::Visibility, Span, ExpnId) {
47     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
48         arenas.alloc_name_binding(NameBinding {
49             kind: NameBindingKind::Module(self.0),
50             ambiguity: None,
51             vis: self.1,
52             span: self.2,
53             expansion: self.3,
54         })
55     }
56 }
57
58 impl<'a> ToNameBinding<'a> for (Res, ty::Visibility, Span, ExpnId) {
59     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
60         arenas.alloc_name_binding(NameBinding {
61             kind: NameBindingKind::Res(self.0, false),
62             ambiguity: None,
63             vis: self.1,
64             span: self.2,
65             expansion: self.3,
66         })
67     }
68 }
69
70 struct IsMacroExport;
71
72 impl<'a> ToNameBinding<'a> for (Res, ty::Visibility, Span, ExpnId, IsMacroExport) {
73     fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
74         arenas.alloc_name_binding(NameBinding {
75             kind: NameBindingKind::Res(self.0, true),
76             ambiguity: None,
77             vis: self.1,
78             span: self.2,
79             expansion: self.3,
80         })
81     }
82 }
83
84 impl<'a> Resolver<'a> {
85     /// Defines `name` in namespace `ns` of module `parent` to be `def` if it is not yet defined;
86     /// otherwise, reports an error.
87     crate fn define<T>(&mut self, parent: Module<'a>, ident: Ident, ns: Namespace, def: T)
88     where
89         T: ToNameBinding<'a>,
90     {
91         let binding = def.to_name_binding(self.arenas);
92         let key = self.new_key(ident, ns);
93         if let Err(old_binding) = self.try_define(parent, key, binding) {
94             self.report_conflict(parent, ident, ns, old_binding, &binding);
95         }
96     }
97
98     crate fn get_module(&mut self, def_id: DefId) -> Module<'a> {
99         if def_id.krate == LOCAL_CRATE {
100             return self.module_map[&def_id];
101         }
102
103         if let Some(&module) = self.extern_module_map.get(&def_id) {
104             return module;
105         }
106
107         let (name, parent) = if def_id.index == CRATE_DEF_INDEX {
108             (self.cstore().crate_name_untracked(def_id.krate), None)
109         } else {
110             let def_key = self.cstore().def_key(def_id);
111             (
112                 def_key.disambiguated_data.data.get_opt_name().unwrap(),
113                 Some(self.get_module(DefId { index: def_key.parent.unwrap(), ..def_id })),
114             )
115         };
116
117         let kind = ModuleKind::Def(DefKind::Mod, def_id, name);
118         let module = self.arenas.alloc_module(ModuleData::new(
119             parent,
120             kind,
121             def_id,
122             ExpnId::root(),
123             DUMMY_SP,
124         ));
125         self.extern_module_map.insert(def_id, module);
126         module
127     }
128
129     crate fn macro_def_scope(&mut self, expn_id: ExpnId) -> Module<'a> {
130         let def_id = match self.macro_defs.get(&expn_id) {
131             Some(def_id) => *def_id,
132             None => return self.ast_transform_scopes.get(&expn_id).unwrap_or(&self.graph_root),
133         };
134         if let Some(id) = self.definitions.as_local_node_id(def_id) {
135             self.local_macro_def_scopes[&id]
136         } else {
137             let module_def_id = ty::DefIdTree::parent(&*self, def_id).unwrap();
138             self.get_module(module_def_id)
139         }
140     }
141
142     crate fn get_macro(&mut self, res: Res) -> Option<Lrc<SyntaxExtension>> {
143         match res {
144             Res::Def(DefKind::Macro(..), def_id) => self.get_macro_by_def_id(def_id),
145             Res::NonMacroAttr(attr_kind) => Some(self.non_macro_attr(attr_kind.is_used())),
146             _ => None,
147         }
148     }
149
150     crate fn get_macro_by_def_id(&mut self, def_id: DefId) -> Option<Lrc<SyntaxExtension>> {
151         if let Some(ext) = self.macro_map.get(&def_id) {
152             return Some(ext.clone());
153         }
154
155         let ext = Lrc::new(match self.cstore().load_macro_untracked(def_id, &self.session) {
156             LoadedMacro::MacroDef(item, edition) => self.compile_macro(&item, edition),
157             LoadedMacro::ProcMacro(ext) => ext,
158         });
159
160         self.macro_map.insert(def_id, ext.clone());
161         Some(ext)
162     }
163
164     crate fn build_reduced_graph(
165         &mut self,
166         fragment: &AstFragment,
167         parent_scope: ParentScope<'a>,
168     ) -> MacroRulesScope<'a> {
169         collect_definitions(&mut self.definitions, fragment, parent_scope.expansion);
170         let mut visitor = BuildReducedGraphVisitor { r: self, parent_scope };
171         fragment.visit_with(&mut visitor);
172         visitor.parent_scope.macro_rules
173     }
174
175     crate fn build_reduced_graph_external(&mut self, module: Module<'a>) {
176         let def_id = module.def_id().expect("unpopulated module without a def-id");
177         for child in self.cstore().item_children_untracked(def_id, self.session) {
178             let child = child.map_id(|_| panic!("unexpected id"));
179             BuildReducedGraphVisitor { r: self, parent_scope: ParentScope::module(module) }
180                 .build_reduced_graph_for_external_crate_res(child);
181         }
182     }
183 }
184
185 struct BuildReducedGraphVisitor<'a, 'b> {
186     r: &'b mut Resolver<'a>,
187     parent_scope: ParentScope<'a>,
188 }
189
190 impl<'a> AsMut<Resolver<'a>> for BuildReducedGraphVisitor<'a, '_> {
191     fn as_mut(&mut self) -> &mut Resolver<'a> {
192         self.r
193     }
194 }
195
196 impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
197     fn resolve_visibility(&mut self, vis: &ast::Visibility) -> ty::Visibility {
198         self.resolve_visibility_speculative(vis, false).unwrap_or_else(|err| {
199             self.r.report_vis_error(err);
200             ty::Visibility::Public
201         })
202     }
203
204     fn resolve_visibility_speculative<'ast>(
205         &mut self,
206         vis: &'ast ast::Visibility,
207         speculative: bool,
208     ) -> Result<ty::Visibility, VisResolutionError<'ast>> {
209         let parent_scope = &self.parent_scope;
210         match vis.node {
211             ast::VisibilityKind::Public => Ok(ty::Visibility::Public),
212             ast::VisibilityKind::Crate(..) => {
213                 Ok(ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX)))
214             }
215             ast::VisibilityKind::Inherited => {
216                 Ok(ty::Visibility::Restricted(parent_scope.module.normal_ancestor_id))
217             }
218             ast::VisibilityKind::Restricted { ref path, id, .. } => {
219                 // For visibilities we are not ready to provide correct implementation of "uniform
220                 // paths" right now, so on 2018 edition we only allow module-relative paths for now.
221                 // On 2015 edition visibilities are resolved as crate-relative by default,
222                 // so we are prepending a root segment if necessary.
223                 let ident = path.segments.get(0).expect("empty path in visibility").ident;
224                 let crate_root = if ident.is_path_segment_keyword() {
225                     None
226                 } else if ident.span.rust_2015() {
227                     Some(Segment::from_ident(Ident::new(
228                         kw::PathRoot,
229                         path.span.shrink_to_lo().with_ctxt(ident.span.ctxt()),
230                     )))
231                 } else {
232                     return Err(VisResolutionError::Relative2018(ident.span, path));
233                 };
234
235                 let segments = crate_root
236                     .into_iter()
237                     .chain(path.segments.iter().map(|seg| seg.into()))
238                     .collect::<Vec<_>>();
239                 let expected_found_error = |res| {
240                     Err(VisResolutionError::ExpectedFound(
241                         path.span,
242                         Segment::names_to_string(&segments),
243                         res,
244                     ))
245                 };
246                 match self.r.resolve_path(
247                     &segments,
248                     Some(TypeNS),
249                     parent_scope,
250                     !speculative,
251                     path.span,
252                     CrateLint::SimplePath(id),
253                 ) {
254                     PathResult::Module(ModuleOrUniformRoot::Module(module)) => {
255                         let res = module.res().expect("visibility resolved to unnamed block");
256                         if !speculative {
257                             self.r.record_partial_res(id, PartialRes::new(res));
258                         }
259                         if module.is_normal() {
260                             if res == Res::Err {
261                                 Ok(ty::Visibility::Public)
262                             } else {
263                                 let vis = ty::Visibility::Restricted(res.def_id());
264                                 if self.r.is_accessible_from(vis, parent_scope.module) {
265                                     Ok(vis)
266                                 } else {
267                                     Err(VisResolutionError::AncestorOnly(path.span))
268                                 }
269                             }
270                         } else {
271                             expected_found_error(res)
272                         }
273                     }
274                     PathResult::Module(..) => Err(VisResolutionError::ModuleOnly(path.span)),
275                     PathResult::NonModule(partial_res) => {
276                         expected_found_error(partial_res.base_res())
277                     }
278                     PathResult::Failed { span, label, suggestion, .. } => {
279                         Err(VisResolutionError::FailedToResolve(span, label, suggestion))
280                     }
281                     PathResult::Indeterminate => Err(VisResolutionError::Indeterminate(path.span)),
282                 }
283             }
284         }
285     }
286
287     fn insert_field_names_local(&mut self, def_id: DefId, vdata: &ast::VariantData) {
288         let field_names = vdata
289             .fields()
290             .iter()
291             .map(|field| respan(field.span, field.ident.map_or(kw::Invalid, |ident| ident.name)))
292             .collect();
293         self.insert_field_names(def_id, field_names);
294     }
295
296     fn insert_field_names(&mut self, def_id: DefId, field_names: Vec<Spanned<Name>>) {
297         if !field_names.is_empty() {
298             self.r.field_names.insert(def_id, field_names);
299         }
300     }
301
302     fn block_needs_anonymous_module(&mut self, block: &Block) -> bool {
303         // If any statements are items, we need to create an anonymous module
304         block.stmts.iter().any(|statement| match statement.kind {
305             StmtKind::Item(_) | StmtKind::MacCall(_) => true,
306             _ => false,
307         })
308     }
309
310     // Add an import to the current module.
311     fn add_import(
312         &mut self,
313         module_path: Vec<Segment>,
314         kind: ImportKind<'a>,
315         span: Span,
316         id: NodeId,
317         item: &ast::Item,
318         root_span: Span,
319         root_id: NodeId,
320         vis: ty::Visibility,
321     ) {
322         let current_module = self.parent_scope.module;
323         let import = self.r.arenas.alloc_import(Import {
324             kind,
325             parent_scope: self.parent_scope,
326             module_path,
327             imported_module: Cell::new(None),
328             span,
329             id,
330             use_span: item.span,
331             use_span_with_attributes: item.span_with_attributes(),
332             has_attributes: !item.attrs.is_empty(),
333             root_span,
334             root_id,
335             vis: Cell::new(vis),
336             used: Cell::new(false),
337         });
338
339         debug!("add_import({:?})", import);
340
341         self.r.indeterminate_imports.push(import);
342         match import.kind {
343             // Don't add unresolved underscore imports to modules
344             ImportKind::Single { target: Ident { name: kw::Underscore, .. }, .. } => {}
345             ImportKind::Single { target, type_ns_only, .. } => {
346                 self.r.per_ns(|this, ns| {
347                     if !type_ns_only || ns == TypeNS {
348                         let key = this.new_key(target, ns);
349                         let mut resolution = this.resolution(current_module, key).borrow_mut();
350                         resolution.add_single_import(import);
351                     }
352                 });
353             }
354             // We don't add prelude imports to the globs since they only affect lexical scopes,
355             // which are not relevant to import resolution.
356             ImportKind::Glob { is_prelude: true, .. } => {}
357             ImportKind::Glob { .. } => current_module.globs.borrow_mut().push(import),
358             _ => unreachable!(),
359         }
360     }
361
362     fn build_reduced_graph_for_use_tree(
363         &mut self,
364         // This particular use tree
365         use_tree: &ast::UseTree,
366         id: NodeId,
367         parent_prefix: &[Segment],
368         nested: bool,
369         // The whole `use` item
370         item: &Item,
371         vis: ty::Visibility,
372         root_span: Span,
373     ) {
374         debug!(
375             "build_reduced_graph_for_use_tree(parent_prefix={:?}, use_tree={:?}, nested={})",
376             parent_prefix, use_tree, nested
377         );
378
379         let mut prefix_iter = parent_prefix
380             .iter()
381             .cloned()
382             .chain(use_tree.prefix.segments.iter().map(|seg| seg.into()))
383             .peekable();
384
385         // On 2015 edition imports are resolved as crate-relative by default,
386         // so prefixes are prepended with crate root segment if necessary.
387         // The root is prepended lazily, when the first non-empty prefix or terminating glob
388         // appears, so imports in braced groups can have roots prepended independently.
389         let is_glob = if let ast::UseTreeKind::Glob = use_tree.kind { true } else { false };
390         let crate_root = match prefix_iter.peek() {
391             Some(seg) if !seg.ident.is_path_segment_keyword() && seg.ident.span.rust_2015() => {
392                 Some(seg.ident.span.ctxt())
393             }
394             None if is_glob && use_tree.span.rust_2015() => Some(use_tree.span.ctxt()),
395             _ => None,
396         }
397         .map(|ctxt| {
398             Segment::from_ident(Ident::new(
399                 kw::PathRoot,
400                 use_tree.prefix.span.shrink_to_lo().with_ctxt(ctxt),
401             ))
402         });
403
404         let prefix = crate_root.into_iter().chain(prefix_iter).collect::<Vec<_>>();
405         debug!("build_reduced_graph_for_use_tree: prefix={:?}", prefix);
406
407         let empty_for_self = |prefix: &[Segment]| {
408             prefix.is_empty() || prefix.len() == 1 && prefix[0].ident.name == kw::PathRoot
409         };
410         match use_tree.kind {
411             ast::UseTreeKind::Simple(rename, ..) => {
412                 let mut ident = use_tree.ident();
413                 let mut module_path = prefix;
414                 let mut source = module_path.pop().unwrap();
415                 let mut type_ns_only = false;
416
417                 if nested {
418                     // Correctly handle `self`
419                     if source.ident.name == kw::SelfLower {
420                         type_ns_only = true;
421
422                         if empty_for_self(&module_path) {
423                             self.r.report_error(
424                                 use_tree.span,
425                                 ResolutionError::SelfImportOnlyInImportListWithNonEmptyPrefix,
426                             );
427                             return;
428                         }
429
430                         // Replace `use foo::self;` with `use foo;`
431                         source = module_path.pop().unwrap();
432                         if rename.is_none() {
433                             ident = source.ident;
434                         }
435                     }
436                 } else {
437                     // Disallow `self`
438                     if source.ident.name == kw::SelfLower {
439                         self.r.report_error(
440                             use_tree.span,
441                             ResolutionError::SelfImportsOnlyAllowedWithin,
442                         );
443                     }
444
445                     // Disallow `use $crate;`
446                     if source.ident.name == kw::DollarCrate && module_path.is_empty() {
447                         let crate_root = self.r.resolve_crate_root(source.ident);
448                         let crate_name = match crate_root.kind {
449                             ModuleKind::Def(.., name) => name,
450                             ModuleKind::Block(..) => unreachable!(),
451                         };
452                         // HACK(eddyb) unclear how good this is, but keeping `$crate`
453                         // in `source` breaks `src/test/compile-fail/import-crate-var.rs`,
454                         // while the current crate doesn't have a valid `crate_name`.
455                         if crate_name != kw::Invalid {
456                             // `crate_name` should not be interpreted as relative.
457                             module_path.push(Segment {
458                                 ident: Ident { name: kw::PathRoot, span: source.ident.span },
459                                 id: Some(self.r.next_node_id()),
460                             });
461                             source.ident.name = crate_name;
462                         }
463                         if rename.is_none() {
464                             ident.name = crate_name;
465                         }
466
467                         self.r
468                             .session
469                             .struct_span_err(item.span, "`$crate` may not be imported")
470                             .emit();
471                     }
472                 }
473
474                 if ident.name == kw::Crate {
475                     self.r.session.span_err(
476                         ident.span,
477                         "crate root imports need to be explicitly named: \
478                          `use crate as name;`",
479                     );
480                 }
481
482                 let kind = ImportKind::Single {
483                     source: source.ident,
484                     target: ident,
485                     source_bindings: PerNS {
486                         type_ns: Cell::new(Err(Determinacy::Undetermined)),
487                         value_ns: Cell::new(Err(Determinacy::Undetermined)),
488                         macro_ns: Cell::new(Err(Determinacy::Undetermined)),
489                     },
490                     target_bindings: PerNS {
491                         type_ns: Cell::new(None),
492                         value_ns: Cell::new(None),
493                         macro_ns: Cell::new(None),
494                     },
495                     type_ns_only,
496                     nested,
497                 };
498                 self.add_import(
499                     module_path,
500                     kind,
501                     use_tree.span,
502                     id,
503                     item,
504                     root_span,
505                     item.id,
506                     vis,
507                 );
508             }
509             ast::UseTreeKind::Glob => {
510                 let kind = ImportKind::Glob {
511                     is_prelude: attr::contains_name(&item.attrs, sym::prelude_import),
512                     max_vis: Cell::new(ty::Visibility::Invisible),
513                 };
514                 self.add_import(prefix, kind, use_tree.span, id, item, root_span, item.id, vis);
515             }
516             ast::UseTreeKind::Nested(ref items) => {
517                 // Ensure there is at most one `self` in the list
518                 let self_spans = items
519                     .iter()
520                     .filter_map(|&(ref use_tree, _)| {
521                         if let ast::UseTreeKind::Simple(..) = use_tree.kind {
522                             if use_tree.ident().name == kw::SelfLower {
523                                 return Some(use_tree.span);
524                             }
525                         }
526
527                         None
528                     })
529                     .collect::<Vec<_>>();
530                 if self_spans.len() > 1 {
531                     let mut e = self.r.into_struct_error(
532                         self_spans[0],
533                         ResolutionError::SelfImportCanOnlyAppearOnceInTheList,
534                     );
535
536                     for other_span in self_spans.iter().skip(1) {
537                         e.span_label(*other_span, "another `self` import appears here");
538                     }
539
540                     e.emit();
541                 }
542
543                 for &(ref tree, id) in items {
544                     self.build_reduced_graph_for_use_tree(
545                         // This particular use tree
546                         tree, id, &prefix, true, // The whole `use` item
547                         item, vis, root_span,
548                     );
549                 }
550
551                 // Empty groups `a::b::{}` are turned into synthetic `self` imports
552                 // `a::b::c::{self as _}`, so that their prefixes are correctly
553                 // resolved and checked for privacy/stability/etc.
554                 if items.is_empty() && !empty_for_self(&prefix) {
555                     let new_span = prefix[prefix.len() - 1].ident.span;
556                     let tree = ast::UseTree {
557                         prefix: ast::Path::from_ident(Ident::new(kw::SelfLower, new_span)),
558                         kind: ast::UseTreeKind::Simple(
559                             Some(Ident::new(kw::Underscore, new_span)),
560                             ast::DUMMY_NODE_ID,
561                             ast::DUMMY_NODE_ID,
562                         ),
563                         span: use_tree.span,
564                     };
565                     self.build_reduced_graph_for_use_tree(
566                         // This particular use tree
567                         &tree,
568                         id,
569                         &prefix,
570                         true,
571                         // The whole `use` item
572                         item,
573                         ty::Visibility::Invisible,
574                         root_span,
575                     );
576                 }
577             }
578         }
579     }
580
581     /// Constructs the reduced graph for one item.
582     fn build_reduced_graph_for_item(&mut self, item: &'b Item) {
583         let parent_scope = &self.parent_scope;
584         let parent = parent_scope.module;
585         let expansion = parent_scope.expansion;
586         let ident = item.ident;
587         let sp = item.span;
588         let vis = self.resolve_visibility(&item.vis);
589
590         match item.kind {
591             ItemKind::Use(ref use_tree) => {
592                 self.build_reduced_graph_for_use_tree(
593                     // This particular use tree
594                     use_tree,
595                     item.id,
596                     &[],
597                     false,
598                     // The whole `use` item
599                     item,
600                     vis,
601                     use_tree.span,
602                 );
603             }
604
605             ItemKind::ExternCrate(orig_name) => {
606                 let module = if orig_name.is_none() && ident.name == kw::SelfLower {
607                     self.r
608                         .session
609                         .struct_span_err(item.span, "`extern crate self;` requires renaming")
610                         .span_suggestion(
611                             item.span,
612                             "try",
613                             "extern crate self as name;".into(),
614                             Applicability::HasPlaceholders,
615                         )
616                         .emit();
617                     return;
618                 } else if orig_name == Some(kw::SelfLower) {
619                     self.r.graph_root
620                 } else {
621                     let crate_id =
622                         self.r.crate_loader.process_extern_crate(item, &self.r.definitions);
623                     self.r.extern_crate_map.insert(item.id, crate_id);
624                     self.r.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX })
625                 };
626
627                 let used = self.process_macro_use_imports(item, module);
628                 let binding =
629                     (module, ty::Visibility::Public, sp, expansion).to_name_binding(self.r.arenas);
630                 let import = self.r.arenas.alloc_import(Import {
631                     kind: ImportKind::ExternCrate { source: orig_name, target: ident },
632                     root_id: item.id,
633                     id: item.id,
634                     parent_scope: self.parent_scope,
635                     imported_module: Cell::new(Some(ModuleOrUniformRoot::Module(module))),
636                     has_attributes: !item.attrs.is_empty(),
637                     use_span_with_attributes: item.span_with_attributes(),
638                     use_span: item.span,
639                     root_span: item.span,
640                     span: item.span,
641                     module_path: Vec::new(),
642                     vis: Cell::new(vis),
643                     used: Cell::new(used),
644                 });
645                 self.r.potentially_unused_imports.push(import);
646                 let imported_binding = self.r.import(binding, import);
647                 if ptr::eq(parent, self.r.graph_root) {
648                     if let Some(entry) = self.r.extern_prelude.get(&ident.normalize_to_macros_2_0())
649                     {
650                         if expansion != ExpnId::root()
651                             && orig_name.is_some()
652                             && entry.extern_crate_item.is_none()
653                         {
654                             let msg = "macro-expanded `extern crate` items cannot \
655                                        shadow names passed with `--extern`";
656                             self.r.session.span_err(item.span, msg);
657                         }
658                     }
659                     let entry =
660                         self.r.extern_prelude.entry(ident.normalize_to_macros_2_0()).or_insert(
661                             ExternPreludeEntry {
662                                 extern_crate_item: None,
663                                 introduced_by_item: true,
664                             },
665                         );
666                     entry.extern_crate_item = Some(imported_binding);
667                     if orig_name.is_some() {
668                         entry.introduced_by_item = true;
669                     }
670                 }
671                 self.r.define(parent, ident, TypeNS, imported_binding);
672             }
673
674             ItemKind::Mod(..) if ident.name == kw::Invalid => {} // Crate root
675
676             ItemKind::Mod(..) => {
677                 let def_id = self.r.definitions.local_def_id(item.id);
678                 let module_kind = ModuleKind::Def(DefKind::Mod, def_id, ident.name);
679                 let module = self.r.arenas.alloc_module(ModuleData {
680                     no_implicit_prelude: parent.no_implicit_prelude || {
681                         attr::contains_name(&item.attrs, sym::no_implicit_prelude)
682                     },
683                     ..ModuleData::new(Some(parent), module_kind, def_id, expansion, item.span)
684                 });
685                 self.r.define(parent, ident, TypeNS, (module, vis, sp, expansion));
686                 self.r.module_map.insert(def_id, module);
687
688                 // Descend into the module.
689                 self.parent_scope.module = module;
690             }
691
692             // These items live in the value namespace.
693             ItemKind::Static(..) => {
694                 let res = Res::Def(DefKind::Static, self.r.definitions.local_def_id(item.id));
695                 self.r.define(parent, ident, ValueNS, (res, vis, sp, expansion));
696             }
697             ItemKind::Const(..) => {
698                 let res = Res::Def(DefKind::Const, self.r.definitions.local_def_id(item.id));
699                 self.r.define(parent, ident, ValueNS, (res, vis, sp, expansion));
700             }
701             ItemKind::Fn(..) => {
702                 let res = Res::Def(DefKind::Fn, self.r.definitions.local_def_id(item.id));
703                 self.r.define(parent, ident, ValueNS, (res, vis, sp, expansion));
704
705                 // Functions introducing procedural macros reserve a slot
706                 // in the macro namespace as well (see #52225).
707                 self.define_macro(item);
708             }
709
710             // These items live in the type namespace.
711             ItemKind::TyAlias(_, _, _, ref ty) => {
712                 let def_kind = match ty.as_deref().and_then(|ty| ty.kind.opaque_top_hack()) {
713                     None => DefKind::TyAlias,
714                     Some(_) => DefKind::OpaqueTy,
715                 };
716                 let res = Res::Def(def_kind, self.r.definitions.local_def_id(item.id));
717                 self.r.define(parent, ident, TypeNS, (res, vis, sp, expansion));
718             }
719
720             ItemKind::Enum(_, _) => {
721                 let def_id = self.r.definitions.local_def_id(item.id);
722                 self.r.variant_vis.insert(def_id, vis);
723                 let module_kind = ModuleKind::Def(DefKind::Enum, def_id, ident.name);
724                 let module = self.r.new_module(
725                     parent,
726                     module_kind,
727                     parent.normal_ancestor_id,
728                     expansion,
729                     item.span,
730                 );
731                 self.r.define(parent, ident, TypeNS, (module, vis, sp, expansion));
732                 self.parent_scope.module = module;
733             }
734
735             ItemKind::TraitAlias(..) => {
736                 let res = Res::Def(DefKind::TraitAlias, self.r.definitions.local_def_id(item.id));
737                 self.r.define(parent, ident, TypeNS, (res, vis, sp, expansion));
738             }
739
740             // These items live in both the type and value namespaces.
741             ItemKind::Struct(ref vdata, _) => {
742                 // Define a name in the type namespace.
743                 let def_id = self.r.definitions.local_def_id(item.id);
744                 let res = Res::Def(DefKind::Struct, def_id);
745                 self.r.define(parent, ident, TypeNS, (res, vis, sp, expansion));
746
747                 // Record field names for error reporting.
748                 self.insert_field_names_local(def_id, vdata);
749
750                 // If this is a tuple or unit struct, define a name
751                 // in the value namespace as well.
752                 if let Some(ctor_node_id) = vdata.ctor_id() {
753                     // If the structure is marked as non_exhaustive then lower the visibility
754                     // to within the crate.
755                     let mut ctor_vis = if vis == ty::Visibility::Public
756                         && attr::contains_name(&item.attrs, sym::non_exhaustive)
757                     {
758                         ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
759                     } else {
760                         vis
761                     };
762
763                     for field in vdata.fields() {
764                         // NOTE: The field may be an expansion placeholder, but expansion sets
765                         // correct visibilities for unnamed field placeholders specifically, so the
766                         // constructor visibility should still be determined correctly.
767                         if let Ok(field_vis) = self.resolve_visibility_speculative(&field.vis, true)
768                         {
769                             if ctor_vis.is_at_least(field_vis, &*self.r) {
770                                 ctor_vis = field_vis;
771                             }
772                         }
773                     }
774                     let ctor_res = Res::Def(
775                         DefKind::Ctor(CtorOf::Struct, CtorKind::from_ast(vdata)),
776                         self.r.definitions.local_def_id(ctor_node_id),
777                     );
778                     self.r.define(parent, ident, ValueNS, (ctor_res, ctor_vis, sp, expansion));
779                     self.r.struct_constructors.insert(def_id, (ctor_res, ctor_vis));
780                 }
781             }
782
783             ItemKind::Union(ref vdata, _) => {
784                 let def_id = self.r.definitions.local_def_id(item.id);
785                 let res = Res::Def(DefKind::Union, def_id);
786                 self.r.define(parent, ident, TypeNS, (res, vis, sp, expansion));
787
788                 // Record field names for error reporting.
789                 self.insert_field_names_local(def_id, vdata);
790             }
791
792             ItemKind::Trait(..) => {
793                 let def_id = self.r.definitions.local_def_id(item.id);
794
795                 // Add all the items within to a new module.
796                 let module_kind = ModuleKind::Def(DefKind::Trait, def_id, ident.name);
797                 let module = self.r.new_module(
798                     parent,
799                     module_kind,
800                     parent.normal_ancestor_id,
801                     expansion,
802                     item.span,
803                 );
804                 self.r.define(parent, ident, TypeNS, (module, vis, sp, expansion));
805                 self.parent_scope.module = module;
806             }
807
808             // These items do not add names to modules.
809             ItemKind::Impl { .. } | ItemKind::ForeignMod(..) | ItemKind::GlobalAsm(..) => {}
810
811             ItemKind::MacroDef(..) | ItemKind::MacCall(_) => unreachable!(),
812         }
813     }
814
815     /// Constructs the reduced graph for one foreign item.
816     fn build_reduced_graph_for_foreign_item(&mut self, item: &ForeignItem) {
817         let (res, ns) = match item.kind {
818             ForeignItemKind::Fn(..) => {
819                 (Res::Def(DefKind::Fn, self.r.definitions.local_def_id(item.id)), ValueNS)
820             }
821             ForeignItemKind::Static(..) => {
822                 (Res::Def(DefKind::Static, self.r.definitions.local_def_id(item.id)), ValueNS)
823             }
824             ForeignItemKind::TyAlias(..) => {
825                 (Res::Def(DefKind::ForeignTy, self.r.definitions.local_def_id(item.id)), TypeNS)
826             }
827             ForeignItemKind::MacCall(_) => unreachable!(),
828         };
829         let parent = self.parent_scope.module;
830         let expansion = self.parent_scope.expansion;
831         let vis = self.resolve_visibility(&item.vis);
832         self.r.define(parent, item.ident, ns, (res, vis, item.span, expansion));
833     }
834
835     fn build_reduced_graph_for_block(&mut self, block: &Block) {
836         let parent = self.parent_scope.module;
837         let expansion = self.parent_scope.expansion;
838         if self.block_needs_anonymous_module(block) {
839             let module = self.r.new_module(
840                 parent,
841                 ModuleKind::Block(block.id),
842                 parent.normal_ancestor_id,
843                 expansion,
844                 block.span,
845             );
846             self.r.block_map.insert(block.id, module);
847             self.parent_scope.module = module; // Descend into the block.
848         }
849     }
850
851     /// Builds the reduced graph for a single item in an external crate.
852     fn build_reduced_graph_for_external_crate_res(&mut self, child: Export<NodeId>) {
853         let parent = self.parent_scope.module;
854         let Export { ident, res, vis, span } = child;
855         let expansion = ExpnId::root(); // FIXME(jseyfried) intercrate hygiene
856         // Record primary definitions.
857         match res {
858             Res::Def(kind @ DefKind::Mod, def_id)
859             | Res::Def(kind @ DefKind::Enum, def_id)
860             | Res::Def(kind @ DefKind::Trait, def_id) => {
861                 let module = self.r.new_module(
862                     parent,
863                     ModuleKind::Def(kind, def_id, ident.name),
864                     def_id,
865                     expansion,
866                     span,
867                 );
868                 self.r.define(parent, ident, TypeNS, (module, vis, span, expansion));
869             }
870             Res::Def(DefKind::Struct, _)
871             | Res::Def(DefKind::Union, _)
872             | Res::Def(DefKind::Variant, _)
873             | Res::Def(DefKind::TyAlias, _)
874             | Res::Def(DefKind::ForeignTy, _)
875             | Res::Def(DefKind::OpaqueTy, _)
876             | Res::Def(DefKind::TraitAlias, _)
877             | Res::Def(DefKind::AssocTy, _)
878             | Res::Def(DefKind::AssocOpaqueTy, _)
879             | Res::PrimTy(..)
880             | Res::ToolMod => self.r.define(parent, ident, TypeNS, (res, vis, span, expansion)),
881             Res::Def(DefKind::Fn, _)
882             | Res::Def(DefKind::AssocFn, _)
883             | Res::Def(DefKind::Static, _)
884             | Res::Def(DefKind::Const, _)
885             | Res::Def(DefKind::AssocConst, _)
886             | Res::Def(DefKind::Ctor(..), _) => {
887                 self.r.define(parent, ident, ValueNS, (res, vis, span, expansion))
888             }
889             Res::Def(DefKind::Macro(..), _) | Res::NonMacroAttr(..) => {
890                 self.r.define(parent, ident, MacroNS, (res, vis, span, expansion))
891             }
892             Res::Def(DefKind::TyParam, _)
893             | Res::Def(DefKind::ConstParam, _)
894             | Res::Local(..)
895             | Res::SelfTy(..)
896             | Res::SelfCtor(..)
897             | Res::Err => bug!("unexpected resolution: {:?}", res),
898         }
899         // Record some extra data for better diagnostics.
900         let cstore = self.r.cstore();
901         match res {
902             Res::Def(DefKind::Struct, def_id) | Res::Def(DefKind::Union, def_id) => {
903                 let field_names = cstore.struct_field_names_untracked(def_id, self.r.session);
904                 self.insert_field_names(def_id, field_names);
905             }
906             Res::Def(DefKind::AssocFn, def_id) => {
907                 if cstore
908                     .associated_item_cloned_untracked(def_id, self.r.session)
909                     .method_has_self_argument
910                 {
911                     self.r.has_self.insert(def_id);
912                 }
913             }
914             Res::Def(DefKind::Ctor(CtorOf::Struct, ..), def_id) => {
915                 let parent = cstore.def_key(def_id).parent;
916                 if let Some(struct_def_id) = parent.map(|index| DefId { index, ..def_id }) {
917                     self.r.struct_constructors.insert(struct_def_id, (res, vis));
918                 }
919             }
920             _ => {}
921         }
922     }
923
924     fn add_macro_use_binding(
925         &mut self,
926         name: ast::Name,
927         binding: &'a NameBinding<'a>,
928         span: Span,
929         allow_shadowing: bool,
930     ) {
931         if self.r.macro_use_prelude.insert(name, binding).is_some() && !allow_shadowing {
932             let msg = format!("`{}` is already in scope", name);
933             let note =
934                 "macro-expanded `#[macro_use]`s may not shadow existing macros (see RFC 1560)";
935             self.r.session.struct_span_err(span, &msg).note(note).emit();
936         }
937     }
938
939     /// Returns `true` if we should consider the underlying `extern crate` to be used.
940     fn process_macro_use_imports(&mut self, item: &Item, module: Module<'a>) -> bool {
941         let mut import_all = None;
942         let mut single_imports = Vec::new();
943         for attr in &item.attrs {
944             if attr.check_name(sym::macro_use) {
945                 if self.parent_scope.module.parent.is_some() {
946                     struct_span_err!(
947                         self.r.session,
948                         item.span,
949                         E0468,
950                         "an `extern crate` loading macros must be at the crate root"
951                     )
952                     .emit();
953                 }
954                 if let ItemKind::ExternCrate(Some(orig_name)) = item.kind {
955                     if orig_name == kw::SelfLower {
956                         self.r
957                             .session
958                             .struct_span_err(
959                                 attr.span,
960                                 "`#[macro_use]` is not supported on `extern crate self`",
961                             )
962                             .emit();
963                     }
964                 }
965                 let ill_formed =
966                     |span| struct_span_err!(self.r.session, span, E0466, "bad macro import").emit();
967                 match attr.meta() {
968                     Some(meta) => match meta.kind {
969                         MetaItemKind::Word => {
970                             import_all = Some(meta.span);
971                             break;
972                         }
973                         MetaItemKind::List(nested_metas) => {
974                             for nested_meta in nested_metas {
975                                 match nested_meta.ident() {
976                                     Some(ident) if nested_meta.is_word() => {
977                                         single_imports.push(ident)
978                                     }
979                                     _ => ill_formed(nested_meta.span()),
980                                 }
981                             }
982                         }
983                         MetaItemKind::NameValue(..) => ill_formed(meta.span),
984                     },
985                     None => ill_formed(attr.span),
986                 }
987             }
988         }
989
990         let macro_use_import = |this: &Self, span| {
991             this.r.arenas.alloc_import(Import {
992                 kind: ImportKind::MacroUse,
993                 root_id: item.id,
994                 id: item.id,
995                 parent_scope: this.parent_scope,
996                 imported_module: Cell::new(Some(ModuleOrUniformRoot::Module(module))),
997                 use_span_with_attributes: item.span_with_attributes(),
998                 has_attributes: !item.attrs.is_empty(),
999                 use_span: item.span,
1000                 root_span: span,
1001                 span,
1002                 module_path: Vec::new(),
1003                 vis: Cell::new(ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))),
1004                 used: Cell::new(false),
1005             })
1006         };
1007
1008         let allow_shadowing = self.parent_scope.expansion == ExpnId::root();
1009         if let Some(span) = import_all {
1010             let import = macro_use_import(self, span);
1011             self.r.potentially_unused_imports.push(import);
1012             module.for_each_child(self, |this, ident, ns, binding| {
1013                 if ns == MacroNS {
1014                     let imported_binding = this.r.import(binding, import);
1015                     this.add_macro_use_binding(ident.name, imported_binding, span, allow_shadowing);
1016                 }
1017             });
1018         } else {
1019             for ident in single_imports.iter().cloned() {
1020                 let result = self.r.resolve_ident_in_module(
1021                     ModuleOrUniformRoot::Module(module),
1022                     ident,
1023                     MacroNS,
1024                     &self.parent_scope,
1025                     false,
1026                     ident.span,
1027                 );
1028                 if let Ok(binding) = result {
1029                     let import = macro_use_import(self, ident.span);
1030                     self.r.potentially_unused_imports.push(import);
1031                     let imported_binding = self.r.import(binding, import);
1032                     self.add_macro_use_binding(
1033                         ident.name,
1034                         imported_binding,
1035                         ident.span,
1036                         allow_shadowing,
1037                     );
1038                 } else {
1039                     struct_span_err!(self.r.session, ident.span, E0469, "imported macro not found")
1040                         .emit();
1041                 }
1042             }
1043         }
1044         import_all.is_some() || !single_imports.is_empty()
1045     }
1046
1047     /// Returns `true` if this attribute list contains `macro_use`.
1048     fn contains_macro_use(&mut self, attrs: &[ast::Attribute]) -> bool {
1049         for attr in attrs {
1050             if attr.check_name(sym::macro_escape) {
1051                 let msg = "`#[macro_escape]` is a deprecated synonym for `#[macro_use]`";
1052                 let mut err = self.r.session.struct_span_warn(attr.span, msg);
1053                 if let ast::AttrStyle::Inner = attr.style {
1054                     err.help("try an outer attribute: `#[macro_use]`").emit();
1055                 } else {
1056                     err.emit();
1057                 }
1058             } else if !attr.check_name(sym::macro_use) {
1059                 continue;
1060             }
1061
1062             if !attr.is_word() {
1063                 self.r.session.span_err(attr.span, "arguments to `macro_use` are not allowed here");
1064             }
1065             return true;
1066         }
1067
1068         false
1069     }
1070
1071     fn visit_invoc(&mut self, id: NodeId) -> MacroRulesScope<'a> {
1072         let invoc_id = id.placeholder_to_expn_id();
1073
1074         self.parent_scope.module.unexpanded_invocations.borrow_mut().insert(invoc_id);
1075
1076         let old_parent_scope = self.r.invocation_parent_scopes.insert(invoc_id, self.parent_scope);
1077         assert!(old_parent_scope.is_none(), "invocation data is reset for an invocation");
1078
1079         MacroRulesScope::Invocation(invoc_id)
1080     }
1081
1082     fn proc_macro_stub(item: &ast::Item) -> Option<(MacroKind, Ident, Span)> {
1083         if attr::contains_name(&item.attrs, sym::proc_macro) {
1084             return Some((MacroKind::Bang, item.ident, item.span));
1085         } else if attr::contains_name(&item.attrs, sym::proc_macro_attribute) {
1086             return Some((MacroKind::Attr, item.ident, item.span));
1087         } else if let Some(attr) = attr::find_by_name(&item.attrs, sym::proc_macro_derive) {
1088             if let Some(nested_meta) = attr.meta_item_list().and_then(|list| list.get(0).cloned()) {
1089                 if let Some(ident) = nested_meta.ident() {
1090                     return Some((MacroKind::Derive, ident, ident.span));
1091                 }
1092             }
1093         }
1094         None
1095     }
1096
1097     // Mark the given macro as unused unless its name starts with `_`.
1098     // Macro uses will remove items from this set, and the remaining
1099     // items will be reported as `unused_macros`.
1100     fn insert_unused_macro(&mut self, ident: Ident, node_id: NodeId, span: Span) {
1101         if !ident.as_str().starts_with('_') {
1102             self.r.unused_macros.insert(node_id, span);
1103         }
1104     }
1105
1106     fn define_macro(&mut self, item: &ast::Item) -> MacroRulesScope<'a> {
1107         let parent_scope = self.parent_scope;
1108         let expansion = parent_scope.expansion;
1109         let (ext, ident, span, macro_rules) = match &item.kind {
1110             ItemKind::MacroDef(def) => {
1111                 let ext = Lrc::new(self.r.compile_macro(item, self.r.session.edition()));
1112                 (ext, item.ident, item.span, def.macro_rules)
1113             }
1114             ItemKind::Fn(..) => match Self::proc_macro_stub(item) {
1115                 Some((macro_kind, ident, span)) => {
1116                     self.r.proc_macro_stubs.insert(item.id);
1117                     (self.r.dummy_ext(macro_kind), ident, span, false)
1118                 }
1119                 None => return parent_scope.macro_rules,
1120             },
1121             _ => unreachable!(),
1122         };
1123
1124         let def_id = self.r.definitions.local_def_id(item.id);
1125         let res = Res::Def(DefKind::Macro(ext.macro_kind()), def_id);
1126         self.r.macro_map.insert(def_id, ext);
1127         self.r.local_macro_def_scopes.insert(item.id, parent_scope.module);
1128
1129         if macro_rules {
1130             let ident = ident.normalize_to_macros_2_0();
1131             self.r.macro_names.insert(ident);
1132             let is_macro_export = attr::contains_name(&item.attrs, sym::macro_export);
1133             let vis = if is_macro_export {
1134                 ty::Visibility::Public
1135             } else {
1136                 ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
1137             };
1138             let binding = (res, vis, span, expansion).to_name_binding(self.r.arenas);
1139             self.r.set_binding_parent_module(binding, parent_scope.module);
1140             self.r.all_macros.insert(ident.name, res);
1141             if is_macro_export {
1142                 let module = self.r.graph_root;
1143                 self.r.define(module, ident, MacroNS, (res, vis, span, expansion, IsMacroExport));
1144             } else {
1145                 self.r.check_reserved_macro_name(ident, res);
1146                 self.insert_unused_macro(ident, item.id, span);
1147             }
1148             MacroRulesScope::Binding(self.r.arenas.alloc_macro_rules_binding(MacroRulesBinding {
1149                 parent_macro_rules_scope: parent_scope.macro_rules,
1150                 binding,
1151                 ident,
1152             }))
1153         } else {
1154             let module = parent_scope.module;
1155             let vis = match item.kind {
1156                 // Visibilities must not be resolved non-speculatively twice
1157                 // and we already resolved this one as a `fn` item visibility.
1158                 ItemKind::Fn(..) => self
1159                     .resolve_visibility_speculative(&item.vis, true)
1160                     .unwrap_or(ty::Visibility::Public),
1161                 _ => self.resolve_visibility(&item.vis),
1162             };
1163             if vis != ty::Visibility::Public {
1164                 self.insert_unused_macro(ident, item.id, span);
1165             }
1166             self.r.define(module, ident, MacroNS, (res, vis, span, expansion));
1167             self.parent_scope.macro_rules
1168         }
1169     }
1170 }
1171
1172 macro_rules! method {
1173     ($visit:ident: $ty:ty, $invoc:path, $walk:ident) => {
1174         fn $visit(&mut self, node: &'b $ty) {
1175             if let $invoc(..) = node.kind {
1176                 self.visit_invoc(node.id);
1177             } else {
1178                 visit::$walk(self, node);
1179             }
1180         }
1181     };
1182 }
1183
1184 impl<'a, 'b> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b> {
1185     method!(visit_expr: ast::Expr, ast::ExprKind::MacCall, walk_expr);
1186     method!(visit_pat: ast::Pat, ast::PatKind::MacCall, walk_pat);
1187     method!(visit_ty: ast::Ty, ast::TyKind::MacCall, walk_ty);
1188
1189     fn visit_item(&mut self, item: &'b Item) {
1190         let macro_use = match item.kind {
1191             ItemKind::MacroDef(..) => {
1192                 self.parent_scope.macro_rules = self.define_macro(item);
1193                 return;
1194             }
1195             ItemKind::MacCall(..) => {
1196                 self.parent_scope.macro_rules = self.visit_invoc(item.id);
1197                 return;
1198             }
1199             ItemKind::Mod(..) => self.contains_macro_use(&item.attrs),
1200             _ => false,
1201         };
1202         let orig_current_module = self.parent_scope.module;
1203         let orig_current_macro_rules_scope = self.parent_scope.macro_rules;
1204         self.build_reduced_graph_for_item(item);
1205         visit::walk_item(self, item);
1206         self.parent_scope.module = orig_current_module;
1207         if !macro_use {
1208             self.parent_scope.macro_rules = orig_current_macro_rules_scope;
1209         }
1210     }
1211
1212     fn visit_stmt(&mut self, stmt: &'b ast::Stmt) {
1213         if let ast::StmtKind::MacCall(..) = stmt.kind {
1214             self.parent_scope.macro_rules = self.visit_invoc(stmt.id);
1215         } else {
1216             visit::walk_stmt(self, stmt);
1217         }
1218     }
1219
1220     fn visit_foreign_item(&mut self, foreign_item: &'b ForeignItem) {
1221         if let ForeignItemKind::MacCall(_) = foreign_item.kind {
1222             self.visit_invoc(foreign_item.id);
1223             return;
1224         }
1225
1226         self.build_reduced_graph_for_foreign_item(foreign_item);
1227         visit::walk_foreign_item(self, foreign_item);
1228     }
1229
1230     fn visit_block(&mut self, block: &'b Block) {
1231         let orig_current_module = self.parent_scope.module;
1232         let orig_current_macro_rules_scope = self.parent_scope.macro_rules;
1233         self.build_reduced_graph_for_block(block);
1234         visit::walk_block(self, block);
1235         self.parent_scope.module = orig_current_module;
1236         self.parent_scope.macro_rules = orig_current_macro_rules_scope;
1237     }
1238
1239     fn visit_assoc_item(&mut self, item: &'b AssocItem, ctxt: AssocCtxt) {
1240         let parent = self.parent_scope.module;
1241
1242         if let AssocItemKind::MacCall(_) = item.kind {
1243             self.visit_invoc(item.id);
1244             return;
1245         }
1246
1247         if let AssocCtxt::Impl = ctxt {
1248             self.resolve_visibility(&item.vis);
1249             visit::walk_assoc_item(self, item, ctxt);
1250             return;
1251         }
1252
1253         // Add the item to the trait info.
1254         let item_def_id = self.r.definitions.local_def_id(item.id);
1255         let (res, ns) = match item.kind {
1256             AssocItemKind::Const(..) => (Res::Def(DefKind::AssocConst, item_def_id), ValueNS),
1257             AssocItemKind::Fn(_, ref sig, _, _) => {
1258                 if sig.decl.has_self() {
1259                     self.r.has_self.insert(item_def_id);
1260                 }
1261                 (Res::Def(DefKind::AssocFn, item_def_id), ValueNS)
1262             }
1263             AssocItemKind::TyAlias(..) => (Res::Def(DefKind::AssocTy, item_def_id), TypeNS),
1264             AssocItemKind::MacCall(_) => bug!(), // handled above
1265         };
1266
1267         let vis = ty::Visibility::Public;
1268         let expansion = self.parent_scope.expansion;
1269         self.r.define(parent, item.ident, ns, (res, vis, item.span, expansion));
1270
1271         visit::walk_assoc_item(self, item, ctxt);
1272     }
1273
1274     fn visit_token(&mut self, t: Token) {
1275         if let token::Interpolated(nt) = t.kind {
1276             if let token::NtExpr(ref expr) = *nt {
1277                 if let ast::ExprKind::MacCall(..) = expr.kind {
1278                     self.visit_invoc(expr.id);
1279                 }
1280             }
1281         }
1282     }
1283
1284     fn visit_attribute(&mut self, attr: &'b ast::Attribute) {
1285         if !attr.is_doc_comment() && attr::is_builtin_attr(attr) {
1286             self.r
1287                 .builtin_attrs
1288                 .push((attr.get_normal_item().path.segments[0].ident, self.parent_scope));
1289         }
1290         visit::walk_attribute(self, attr);
1291     }
1292
1293     fn visit_arm(&mut self, arm: &'b ast::Arm) {
1294         if arm.is_placeholder {
1295             self.visit_invoc(arm.id);
1296         } else {
1297             visit::walk_arm(self, arm);
1298         }
1299     }
1300
1301     fn visit_field(&mut self, f: &'b ast::Field) {
1302         if f.is_placeholder {
1303             self.visit_invoc(f.id);
1304         } else {
1305             visit::walk_field(self, f);
1306         }
1307     }
1308
1309     fn visit_field_pattern(&mut self, fp: &'b ast::FieldPat) {
1310         if fp.is_placeholder {
1311             self.visit_invoc(fp.id);
1312         } else {
1313             visit::walk_field_pattern(self, fp);
1314         }
1315     }
1316
1317     fn visit_generic_param(&mut self, param: &'b ast::GenericParam) {
1318         if param.is_placeholder {
1319             self.visit_invoc(param.id);
1320         } else {
1321             visit::walk_generic_param(self, param);
1322         }
1323     }
1324
1325     fn visit_param(&mut self, p: &'b ast::Param) {
1326         if p.is_placeholder {
1327             self.visit_invoc(p.id);
1328         } else {
1329             visit::walk_param(self, p);
1330         }
1331     }
1332
1333     fn visit_struct_field(&mut self, sf: &'b ast::StructField) {
1334         if sf.is_placeholder {
1335             self.visit_invoc(sf.id);
1336         } else {
1337             self.resolve_visibility(&sf.vis);
1338             visit::walk_struct_field(self, sf);
1339         }
1340     }
1341
1342     // Constructs the reduced graph for one variant. Variants exist in the
1343     // type and value namespaces.
1344     fn visit_variant(&mut self, variant: &'b ast::Variant) {
1345         if variant.is_placeholder {
1346             self.visit_invoc(variant.id);
1347             return;
1348         }
1349
1350         let parent = self.parent_scope.module;
1351         let vis = self.r.variant_vis[&parent.def_id().expect("enum without def-id")];
1352         let expn_id = self.parent_scope.expansion;
1353         let ident = variant.ident;
1354
1355         // Define a name in the type namespace.
1356         let def_id = self.r.definitions.local_def_id(variant.id);
1357         let res = Res::Def(DefKind::Variant, def_id);
1358         self.r.define(parent, ident, TypeNS, (res, vis, variant.span, expn_id));
1359
1360         // If the variant is marked as non_exhaustive then lower the visibility to within the
1361         // crate.
1362         let mut ctor_vis = vis;
1363         let has_non_exhaustive = attr::contains_name(&variant.attrs, sym::non_exhaustive);
1364         if has_non_exhaustive && vis == ty::Visibility::Public {
1365             ctor_vis = ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX));
1366         }
1367
1368         // Define a constructor name in the value namespace.
1369         // Braced variants, unlike structs, generate unusable names in
1370         // value namespace, they are reserved for possible future use.
1371         // It's ok to use the variant's id as a ctor id since an
1372         // error will be reported on any use of such resolution anyway.
1373         let ctor_node_id = variant.data.ctor_id().unwrap_or(variant.id);
1374         let ctor_def_id = self.r.definitions.local_def_id(ctor_node_id);
1375         let ctor_kind = CtorKind::from_ast(&variant.data);
1376         let ctor_res = Res::Def(DefKind::Ctor(CtorOf::Variant, ctor_kind), ctor_def_id);
1377         self.r.define(parent, ident, ValueNS, (ctor_res, ctor_vis, variant.span, expn_id));
1378
1379         visit::walk_variant(self, variant);
1380     }
1381 }