]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/build_reduced_graph.rs
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[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::bug;
19 use rustc::hir::exports::Export;
20 use rustc::middle::cstore::CrateStore;
21 use rustc::ty;
22 use rustc_ast::ast::{self, Block, ForeignItem, ForeignItemKind, Item, ItemKind, NodeId};
23 use rustc_ast::ast::{AssocItem, AssocItemKind, MetaItemKind, StmtKind};
24 use rustc_ast::ast::{Ident, Name};
25 use rustc_ast::token::{self, Token};
26 use rustc_ast::visit::{self, AssocCtxt, Visitor};
27 use rustc_attr as attr;
28 use rustc_data_structures::sync::Lrc;
29 use rustc_errors::{struct_span_err, Applicability};
30 use rustc_expand::base::SyntaxExtension;
31 use rustc_expand::expand::AstFragment;
32 use rustc_hir::def::{self, *};
33 use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
34 use rustc_metadata::creader::LoadedMacro;
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                     let mut ctor_vis = vis;
754                     // If the structure is marked as non_exhaustive then lower the visibility
755                     // to within the crate.
756                     if vis == ty::Visibility::Public
757                         && attr::contains_name(&item.attrs, sym::non_exhaustive)
758                     {
759                         ctor_vis = ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX));
760                     }
761                     for field in vdata.fields() {
762                         // NOTE: The field may be an expansion placeholder, but expansion sets
763                         // correct visibilities for unnamed field placeholders specifically, so the
764                         // constructor visibility should still be determined correctly.
765                         if let Ok(field_vis) = self.resolve_visibility_speculative(&field.vis, true)
766                         {
767                             if ctor_vis.is_at_least(field_vis, &*self.r) {
768                                 ctor_vis = field_vis;
769                             }
770                         }
771                     }
772                     let ctor_res = Res::Def(
773                         DefKind::Ctor(CtorOf::Struct, CtorKind::from_ast(vdata)),
774                         self.r.definitions.local_def_id(ctor_node_id),
775                     );
776                     self.r.define(parent, ident, ValueNS, (ctor_res, ctor_vis, sp, expansion));
777                     self.r.struct_constructors.insert(def_id, (ctor_res, ctor_vis));
778                 }
779             }
780
781             ItemKind::Union(ref vdata, _) => {
782                 let def_id = self.r.definitions.local_def_id(item.id);
783                 let res = Res::Def(DefKind::Union, def_id);
784                 self.r.define(parent, ident, TypeNS, (res, vis, sp, expansion));
785
786                 // Record field names for error reporting.
787                 self.insert_field_names_local(def_id, vdata);
788             }
789
790             ItemKind::Trait(..) => {
791                 let def_id = self.r.definitions.local_def_id(item.id);
792
793                 // Add all the items within to a new module.
794                 let module_kind = ModuleKind::Def(DefKind::Trait, def_id, ident.name);
795                 let module = self.r.new_module(
796                     parent,
797                     module_kind,
798                     parent.normal_ancestor_id,
799                     expansion,
800                     item.span,
801                 );
802                 self.r.define(parent, ident, TypeNS, (module, vis, sp, expansion));
803                 self.parent_scope.module = module;
804             }
805
806             // These items do not add names to modules.
807             ItemKind::Impl { .. } | ItemKind::ForeignMod(..) | ItemKind::GlobalAsm(..) => {}
808
809             ItemKind::MacroDef(..) | ItemKind::MacCall(_) => unreachable!(),
810         }
811     }
812
813     /// Constructs the reduced graph for one foreign item.
814     fn build_reduced_graph_for_foreign_item(&mut self, item: &ForeignItem) {
815         let (res, ns) = match item.kind {
816             ForeignItemKind::Fn(..) => {
817                 (Res::Def(DefKind::Fn, self.r.definitions.local_def_id(item.id)), ValueNS)
818             }
819             ForeignItemKind::Static(..) => {
820                 (Res::Def(DefKind::Static, self.r.definitions.local_def_id(item.id)), ValueNS)
821             }
822             ForeignItemKind::TyAlias(..) => {
823                 (Res::Def(DefKind::ForeignTy, self.r.definitions.local_def_id(item.id)), TypeNS)
824             }
825             ForeignItemKind::MacCall(_) => unreachable!(),
826         };
827         let parent = self.parent_scope.module;
828         let expansion = self.parent_scope.expansion;
829         let vis = self.resolve_visibility(&item.vis);
830         self.r.define(parent, item.ident, ns, (res, vis, item.span, expansion));
831     }
832
833     fn build_reduced_graph_for_block(&mut self, block: &Block) {
834         let parent = self.parent_scope.module;
835         let expansion = self.parent_scope.expansion;
836         if self.block_needs_anonymous_module(block) {
837             let module = self.r.new_module(
838                 parent,
839                 ModuleKind::Block(block.id),
840                 parent.normal_ancestor_id,
841                 expansion,
842                 block.span,
843             );
844             self.r.block_map.insert(block.id, module);
845             self.parent_scope.module = module; // Descend into the block.
846         }
847     }
848
849     /// Builds the reduced graph for a single item in an external crate.
850     fn build_reduced_graph_for_external_crate_res(&mut self, child: Export<NodeId>) {
851         let parent = self.parent_scope.module;
852         let Export { ident, res, vis, span } = child;
853         let expansion = ExpnId::root(); // FIXME(jseyfried) intercrate hygiene
854         // Record primary definitions.
855         match res {
856             Res::Def(kind @ DefKind::Mod, def_id)
857             | Res::Def(kind @ DefKind::Enum, def_id)
858             | Res::Def(kind @ DefKind::Trait, def_id) => {
859                 let module = self.r.new_module(
860                     parent,
861                     ModuleKind::Def(kind, def_id, ident.name),
862                     def_id,
863                     expansion,
864                     span,
865                 );
866                 self.r.define(parent, ident, TypeNS, (module, vis, span, expansion));
867             }
868             Res::Def(DefKind::Struct, _)
869             | Res::Def(DefKind::Union, _)
870             | Res::Def(DefKind::Variant, _)
871             | Res::Def(DefKind::TyAlias, _)
872             | Res::Def(DefKind::ForeignTy, _)
873             | Res::Def(DefKind::OpaqueTy, _)
874             | Res::Def(DefKind::TraitAlias, _)
875             | Res::Def(DefKind::AssocTy, _)
876             | Res::Def(DefKind::AssocOpaqueTy, _)
877             | Res::PrimTy(..)
878             | Res::ToolMod => self.r.define(parent, ident, TypeNS, (res, vis, span, expansion)),
879             Res::Def(DefKind::Fn, _)
880             | Res::Def(DefKind::AssocFn, _)
881             | Res::Def(DefKind::Static, _)
882             | Res::Def(DefKind::Const, _)
883             | Res::Def(DefKind::AssocConst, _)
884             | Res::Def(DefKind::Ctor(..), _) => {
885                 self.r.define(parent, ident, ValueNS, (res, vis, span, expansion))
886             }
887             Res::Def(DefKind::Macro(..), _) | Res::NonMacroAttr(..) => {
888                 self.r.define(parent, ident, MacroNS, (res, vis, span, expansion))
889             }
890             Res::Def(DefKind::TyParam, _)
891             | Res::Def(DefKind::ConstParam, _)
892             | Res::Local(..)
893             | Res::SelfTy(..)
894             | Res::SelfCtor(..)
895             | Res::Err => bug!("unexpected resolution: {:?}", res),
896         }
897         // Record some extra data for better diagnostics.
898         let cstore = self.r.cstore();
899         match res {
900             Res::Def(DefKind::Struct, def_id) | Res::Def(DefKind::Union, def_id) => {
901                 let field_names = cstore.struct_field_names_untracked(def_id, self.r.session);
902                 self.insert_field_names(def_id, field_names);
903             }
904             Res::Def(DefKind::AssocFn, def_id) => {
905                 if cstore.associated_item_cloned_untracked(def_id).method_has_self_argument {
906                     self.r.has_self.insert(def_id);
907                 }
908             }
909             Res::Def(DefKind::Ctor(CtorOf::Struct, ..), def_id) => {
910                 let parent = cstore.def_key(def_id).parent;
911                 if let Some(struct_def_id) = parent.map(|index| DefId { index, ..def_id }) {
912                     self.r.struct_constructors.insert(struct_def_id, (res, vis));
913                 }
914             }
915             _ => {}
916         }
917     }
918
919     fn add_macro_use_binding(
920         &mut self,
921         name: ast::Name,
922         binding: &'a NameBinding<'a>,
923         span: Span,
924         allow_shadowing: bool,
925     ) {
926         if self.r.macro_use_prelude.insert(name, binding).is_some() && !allow_shadowing {
927             let msg = format!("`{}` is already in scope", name);
928             let note =
929                 "macro-expanded `#[macro_use]`s may not shadow existing macros (see RFC 1560)";
930             self.r.session.struct_span_err(span, &msg).note(note).emit();
931         }
932     }
933
934     /// Returns `true` if we should consider the underlying `extern crate` to be used.
935     fn process_macro_use_imports(&mut self, item: &Item, module: Module<'a>) -> bool {
936         let mut import_all = None;
937         let mut single_imports = Vec::new();
938         for attr in &item.attrs {
939             if attr.check_name(sym::macro_use) {
940                 if self.parent_scope.module.parent.is_some() {
941                     struct_span_err!(
942                         self.r.session,
943                         item.span,
944                         E0468,
945                         "an `extern crate` loading macros must be at the crate root"
946                     )
947                     .emit();
948                 }
949                 if let ItemKind::ExternCrate(Some(orig_name)) = item.kind {
950                     if orig_name == kw::SelfLower {
951                         self.r
952                             .session
953                             .struct_span_err(
954                                 attr.span,
955                                 "`#[macro_use]` is not supported on `extern crate self`",
956                             )
957                             .emit();
958                     }
959                 }
960                 let ill_formed =
961                     |span| struct_span_err!(self.r.session, span, E0466, "bad macro import").emit();
962                 match attr.meta() {
963                     Some(meta) => match meta.kind {
964                         MetaItemKind::Word => {
965                             import_all = Some(meta.span);
966                             break;
967                         }
968                         MetaItemKind::List(nested_metas) => {
969                             for nested_meta in nested_metas {
970                                 match nested_meta.ident() {
971                                     Some(ident) if nested_meta.is_word() => {
972                                         single_imports.push(ident)
973                                     }
974                                     _ => ill_formed(nested_meta.span()),
975                                 }
976                             }
977                         }
978                         MetaItemKind::NameValue(..) => ill_formed(meta.span),
979                     },
980                     None => ill_formed(attr.span),
981                 }
982             }
983         }
984
985         let macro_use_import = |this: &Self, span| {
986             this.r.arenas.alloc_import(Import {
987                 kind: ImportKind::MacroUse,
988                 root_id: item.id,
989                 id: item.id,
990                 parent_scope: this.parent_scope,
991                 imported_module: Cell::new(Some(ModuleOrUniformRoot::Module(module))),
992                 use_span_with_attributes: item.span_with_attributes(),
993                 has_attributes: !item.attrs.is_empty(),
994                 use_span: item.span,
995                 root_span: span,
996                 span,
997                 module_path: Vec::new(),
998                 vis: Cell::new(ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))),
999                 used: Cell::new(false),
1000             })
1001         };
1002
1003         let allow_shadowing = self.parent_scope.expansion == ExpnId::root();
1004         if let Some(span) = import_all {
1005             let import = macro_use_import(self, span);
1006             self.r.potentially_unused_imports.push(import);
1007             module.for_each_child(self, |this, ident, ns, binding| {
1008                 if ns == MacroNS {
1009                     let imported_binding = this.r.import(binding, import);
1010                     this.add_macro_use_binding(ident.name, imported_binding, span, allow_shadowing);
1011                 }
1012             });
1013         } else {
1014             for ident in single_imports.iter().cloned() {
1015                 let result = self.r.resolve_ident_in_module(
1016                     ModuleOrUniformRoot::Module(module),
1017                     ident,
1018                     MacroNS,
1019                     &self.parent_scope,
1020                     false,
1021                     ident.span,
1022                 );
1023                 if let Ok(binding) = result {
1024                     let import = macro_use_import(self, ident.span);
1025                     self.r.potentially_unused_imports.push(import);
1026                     let imported_binding = self.r.import(binding, import);
1027                     self.add_macro_use_binding(
1028                         ident.name,
1029                         imported_binding,
1030                         ident.span,
1031                         allow_shadowing,
1032                     );
1033                 } else {
1034                     struct_span_err!(self.r.session, ident.span, E0469, "imported macro not found")
1035                         .emit();
1036                 }
1037             }
1038         }
1039         import_all.is_some() || !single_imports.is_empty()
1040     }
1041
1042     /// Returns `true` if this attribute list contains `macro_use`.
1043     fn contains_macro_use(&mut self, attrs: &[ast::Attribute]) -> bool {
1044         for attr in attrs {
1045             if attr.check_name(sym::macro_escape) {
1046                 let msg = "`#[macro_escape]` is a deprecated synonym for `#[macro_use]`";
1047                 let mut err = self.r.session.struct_span_warn(attr.span, msg);
1048                 if let ast::AttrStyle::Inner = attr.style {
1049                     err.help("try an outer attribute: `#[macro_use]`").emit();
1050                 } else {
1051                     err.emit();
1052                 }
1053             } else if !attr.check_name(sym::macro_use) {
1054                 continue;
1055             }
1056
1057             if !attr.is_word() {
1058                 self.r.session.span_err(attr.span, "arguments to `macro_use` are not allowed here");
1059             }
1060             return true;
1061         }
1062
1063         false
1064     }
1065
1066     fn visit_invoc(&mut self, id: NodeId) -> MacroRulesScope<'a> {
1067         let invoc_id = id.placeholder_to_expn_id();
1068
1069         self.parent_scope.module.unexpanded_invocations.borrow_mut().insert(invoc_id);
1070
1071         let old_parent_scope = self.r.invocation_parent_scopes.insert(invoc_id, self.parent_scope);
1072         assert!(old_parent_scope.is_none(), "invocation data is reset for an invocation");
1073
1074         MacroRulesScope::Invocation(invoc_id)
1075     }
1076
1077     fn proc_macro_stub(item: &ast::Item) -> Option<(MacroKind, Ident, Span)> {
1078         if attr::contains_name(&item.attrs, sym::proc_macro) {
1079             return Some((MacroKind::Bang, item.ident, item.span));
1080         } else if attr::contains_name(&item.attrs, sym::proc_macro_attribute) {
1081             return Some((MacroKind::Attr, item.ident, item.span));
1082         } else if let Some(attr) = attr::find_by_name(&item.attrs, sym::proc_macro_derive) {
1083             if let Some(nested_meta) = attr.meta_item_list().and_then(|list| list.get(0).cloned()) {
1084                 if let Some(ident) = nested_meta.ident() {
1085                     return Some((MacroKind::Derive, ident, ident.span));
1086                 }
1087             }
1088         }
1089         None
1090     }
1091
1092     // Mark the given macro as unused unless its name starts with `_`.
1093     // Macro uses will remove items from this set, and the remaining
1094     // items will be reported as `unused_macros`.
1095     fn insert_unused_macro(&mut self, ident: Ident, node_id: NodeId, span: Span) {
1096         if !ident.as_str().starts_with('_') {
1097             self.r.unused_macros.insert(node_id, span);
1098         }
1099     }
1100
1101     fn define_macro(&mut self, item: &ast::Item) -> MacroRulesScope<'a> {
1102         let parent_scope = self.parent_scope;
1103         let expansion = parent_scope.expansion;
1104         let (ext, ident, span, macro_rules) = match &item.kind {
1105             ItemKind::MacroDef(def) => {
1106                 let ext = Lrc::new(self.r.compile_macro(item, self.r.session.edition()));
1107                 (ext, item.ident, item.span, def.macro_rules)
1108             }
1109             ItemKind::Fn(..) => match Self::proc_macro_stub(item) {
1110                 Some((macro_kind, ident, span)) => {
1111                     self.r.proc_macro_stubs.insert(item.id);
1112                     (self.r.dummy_ext(macro_kind), ident, span, false)
1113                 }
1114                 None => return parent_scope.macro_rules,
1115             },
1116             _ => unreachable!(),
1117         };
1118
1119         let def_id = self.r.definitions.local_def_id(item.id);
1120         let res = Res::Def(DefKind::Macro(ext.macro_kind()), def_id);
1121         self.r.macro_map.insert(def_id, ext);
1122         self.r.local_macro_def_scopes.insert(item.id, parent_scope.module);
1123
1124         if macro_rules {
1125             let ident = ident.normalize_to_macros_2_0();
1126             self.r.macro_names.insert(ident);
1127             let is_macro_export = attr::contains_name(&item.attrs, sym::macro_export);
1128             let vis = if is_macro_export {
1129                 ty::Visibility::Public
1130             } else {
1131                 ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
1132             };
1133             let binding = (res, vis, span, expansion).to_name_binding(self.r.arenas);
1134             self.r.set_binding_parent_module(binding, parent_scope.module);
1135             self.r.all_macros.insert(ident.name, res);
1136             if is_macro_export {
1137                 let module = self.r.graph_root;
1138                 self.r.define(module, ident, MacroNS, (res, vis, span, expansion, IsMacroExport));
1139             } else {
1140                 self.r.check_reserved_macro_name(ident, res);
1141                 self.insert_unused_macro(ident, item.id, span);
1142             }
1143             MacroRulesScope::Binding(self.r.arenas.alloc_macro_rules_binding(MacroRulesBinding {
1144                 parent_macro_rules_scope: parent_scope.macro_rules,
1145                 binding,
1146                 ident,
1147             }))
1148         } else {
1149             let module = parent_scope.module;
1150             let vis = self.resolve_visibility(&item.vis);
1151             if vis != ty::Visibility::Public {
1152                 self.insert_unused_macro(ident, item.id, span);
1153             }
1154             self.r.define(module, ident, MacroNS, (res, vis, span, expansion));
1155             self.parent_scope.macro_rules
1156         }
1157     }
1158 }
1159
1160 macro_rules! method {
1161     ($visit:ident: $ty:ty, $invoc:path, $walk:ident) => {
1162         fn $visit(&mut self, node: &'b $ty) {
1163             if let $invoc(..) = node.kind {
1164                 self.visit_invoc(node.id);
1165             } else {
1166                 visit::$walk(self, node);
1167             }
1168         }
1169     }
1170 }
1171
1172 impl<'a, 'b> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b> {
1173     method!(visit_expr: ast::Expr, ast::ExprKind::MacCall, walk_expr);
1174     method!(visit_pat: ast::Pat, ast::PatKind::MacCall, walk_pat);
1175     method!(visit_ty: ast::Ty, ast::TyKind::MacCall, walk_ty);
1176
1177     fn visit_item(&mut self, item: &'b Item) {
1178         let macro_use = match item.kind {
1179             ItemKind::MacroDef(..) => {
1180                 self.parent_scope.macro_rules = self.define_macro(item);
1181                 return;
1182             }
1183             ItemKind::MacCall(..) => {
1184                 self.parent_scope.macro_rules = self.visit_invoc(item.id);
1185                 return;
1186             }
1187             ItemKind::Mod(..) => self.contains_macro_use(&item.attrs),
1188             _ => false,
1189         };
1190         let orig_current_module = self.parent_scope.module;
1191         let orig_current_macro_rules_scope = self.parent_scope.macro_rules;
1192         self.build_reduced_graph_for_item(item);
1193         visit::walk_item(self, item);
1194         self.parent_scope.module = orig_current_module;
1195         if !macro_use {
1196             self.parent_scope.macro_rules = orig_current_macro_rules_scope;
1197         }
1198     }
1199
1200     fn visit_stmt(&mut self, stmt: &'b ast::Stmt) {
1201         if let ast::StmtKind::MacCall(..) = stmt.kind {
1202             self.parent_scope.macro_rules = self.visit_invoc(stmt.id);
1203         } else {
1204             visit::walk_stmt(self, stmt);
1205         }
1206     }
1207
1208     fn visit_foreign_item(&mut self, foreign_item: &'b ForeignItem) {
1209         if let ForeignItemKind::MacCall(_) = foreign_item.kind {
1210             self.visit_invoc(foreign_item.id);
1211             return;
1212         }
1213
1214         self.build_reduced_graph_for_foreign_item(foreign_item);
1215         visit::walk_foreign_item(self, foreign_item);
1216     }
1217
1218     fn visit_block(&mut self, block: &'b Block) {
1219         let orig_current_module = self.parent_scope.module;
1220         let orig_current_macro_rules_scope = self.parent_scope.macro_rules;
1221         self.build_reduced_graph_for_block(block);
1222         visit::walk_block(self, block);
1223         self.parent_scope.module = orig_current_module;
1224         self.parent_scope.macro_rules = orig_current_macro_rules_scope;
1225     }
1226
1227     fn visit_assoc_item(&mut self, item: &'b AssocItem, ctxt: AssocCtxt) {
1228         let parent = self.parent_scope.module;
1229
1230         if let AssocItemKind::MacCall(_) = item.kind {
1231             self.visit_invoc(item.id);
1232             return;
1233         }
1234
1235         if let AssocCtxt::Impl = ctxt {
1236             self.resolve_visibility(&item.vis);
1237             visit::walk_assoc_item(self, item, ctxt);
1238             return;
1239         }
1240
1241         // Add the item to the trait info.
1242         let item_def_id = self.r.definitions.local_def_id(item.id);
1243         let (res, ns) = match item.kind {
1244             AssocItemKind::Const(..) => (Res::Def(DefKind::AssocConst, item_def_id), ValueNS),
1245             AssocItemKind::Fn(_, ref sig, _, _) => {
1246                 if sig.decl.has_self() {
1247                     self.r.has_self.insert(item_def_id);
1248                 }
1249                 (Res::Def(DefKind::AssocFn, item_def_id), ValueNS)
1250             }
1251             AssocItemKind::TyAlias(..) => (Res::Def(DefKind::AssocTy, item_def_id), TypeNS),
1252             AssocItemKind::MacCall(_) => bug!(), // handled above
1253         };
1254
1255         let vis = ty::Visibility::Public;
1256         let expansion = self.parent_scope.expansion;
1257         self.r.define(parent, item.ident, ns, (res, vis, item.span, expansion));
1258
1259         visit::walk_assoc_item(self, item, ctxt);
1260     }
1261
1262     fn visit_token(&mut self, t: Token) {
1263         if let token::Interpolated(nt) = t.kind {
1264             if let token::NtExpr(ref expr) = *nt {
1265                 if let ast::ExprKind::MacCall(..) = expr.kind {
1266                     self.visit_invoc(expr.id);
1267                 }
1268             }
1269         }
1270     }
1271
1272     fn visit_attribute(&mut self, attr: &'b ast::Attribute) {
1273         if !attr.is_doc_comment() && attr::is_builtin_attr(attr) {
1274             self.r
1275                 .builtin_attrs
1276                 .push((attr.get_normal_item().path.segments[0].ident, self.parent_scope));
1277         }
1278         visit::walk_attribute(self, attr);
1279     }
1280
1281     fn visit_arm(&mut self, arm: &'b ast::Arm) {
1282         if arm.is_placeholder {
1283             self.visit_invoc(arm.id);
1284         } else {
1285             visit::walk_arm(self, arm);
1286         }
1287     }
1288
1289     fn visit_field(&mut self, f: &'b ast::Field) {
1290         if f.is_placeholder {
1291             self.visit_invoc(f.id);
1292         } else {
1293             visit::walk_field(self, f);
1294         }
1295     }
1296
1297     fn visit_field_pattern(&mut self, fp: &'b ast::FieldPat) {
1298         if fp.is_placeholder {
1299             self.visit_invoc(fp.id);
1300         } else {
1301             visit::walk_field_pattern(self, fp);
1302         }
1303     }
1304
1305     fn visit_generic_param(&mut self, param: &'b ast::GenericParam) {
1306         if param.is_placeholder {
1307             self.visit_invoc(param.id);
1308         } else {
1309             visit::walk_generic_param(self, param);
1310         }
1311     }
1312
1313     fn visit_param(&mut self, p: &'b ast::Param) {
1314         if p.is_placeholder {
1315             self.visit_invoc(p.id);
1316         } else {
1317             visit::walk_param(self, p);
1318         }
1319     }
1320
1321     fn visit_struct_field(&mut self, sf: &'b ast::StructField) {
1322         if sf.is_placeholder {
1323             self.visit_invoc(sf.id);
1324         } else {
1325             self.resolve_visibility(&sf.vis);
1326             visit::walk_struct_field(self, sf);
1327         }
1328     }
1329
1330     // Constructs the reduced graph for one variant. Variants exist in the
1331     // type and value namespaces.
1332     fn visit_variant(&mut self, variant: &'b ast::Variant) {
1333         if variant.is_placeholder {
1334             self.visit_invoc(variant.id);
1335             return;
1336         }
1337
1338         let parent = self.parent_scope.module;
1339         let vis = self.r.variant_vis[&parent.def_id().expect("enum without def-id")];
1340         let expn_id = self.parent_scope.expansion;
1341         let ident = variant.ident;
1342
1343         // Define a name in the type namespace.
1344         let def_id = self.r.definitions.local_def_id(variant.id);
1345         let res = Res::Def(DefKind::Variant, def_id);
1346         self.r.define(parent, ident, TypeNS, (res, vis, variant.span, expn_id));
1347
1348         // If the variant is marked as non_exhaustive then lower the visibility to within the
1349         // crate.
1350         let mut ctor_vis = vis;
1351         let has_non_exhaustive = attr::contains_name(&variant.attrs, sym::non_exhaustive);
1352         if has_non_exhaustive && vis == ty::Visibility::Public {
1353             ctor_vis = ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX));
1354         }
1355
1356         // Define a constructor name in the value namespace.
1357         // Braced variants, unlike structs, generate unusable names in
1358         // value namespace, they are reserved for possible future use.
1359         // It's ok to use the variant's id as a ctor id since an
1360         // error will be reported on any use of such resolution anyway.
1361         let ctor_node_id = variant.data.ctor_id().unwrap_or(variant.id);
1362         let ctor_def_id = self.r.definitions.local_def_id(ctor_node_id);
1363         let ctor_kind = CtorKind::from_ast(&variant.data);
1364         let ctor_res = Res::Def(DefKind::Ctor(CtorOf::Variant, ctor_kind), ctor_def_id);
1365         self.r.define(parent, ident, ValueNS, (ctor_res, ctor_vis, variant.span, expn_id));
1366
1367         visit::walk_variant(self, variant);
1368     }
1369 }